@@ -22,7 +22,7 @@ export interface Config {
22
22
'localized-required' : LocalizedRequired ;
23
23
'with-localized-relationship' : WithLocalizedRelationship ;
24
24
'relationship-localized' : RelationshipLocalized ;
25
- dummy : Dummy ;
25
+ 'cannot-create-default-locale' : CannotCreateDefaultLocale ;
26
26
nested : Nested ;
27
27
groups : Group ;
28
28
tabs : Tab ;
@@ -46,7 +46,7 @@ export interface Config {
46
46
'localized-required' : LocalizedRequiredSelect < false > | LocalizedRequiredSelect < true > ;
47
47
'with-localized-relationship' : WithLocalizedRelationshipSelect < false > | WithLocalizedRelationshipSelect < true > ;
48
48
'relationship-localized' : RelationshipLocalizedSelect < false > | RelationshipLocalizedSelect < true > ;
49
- dummy : DummySelect < false > | DummySelect < true > ;
49
+ 'cannot-create-default-locale' : CannotCreateDefaultLocaleSelect < false > | CannotCreateDefaultLocaleSelect < true > ;
50
50
nested : NestedSelect < false > | NestedSelect < true > ;
51
51
groups : GroupsSelect < false > | GroupsSelect < true > ;
52
52
tabs : TabsSelect < false > | TabsSelect < true > ;
@@ -378,8 +378,8 @@ export interface WithLocalizedRelationship {
378
378
value : string | LocalizedPost ;
379
379
} | null )
380
380
| ( {
381
- relationTo : 'dummy ' ;
382
- value : string | Dummy ;
381
+ relationTo : 'cannot-create-default-locale ' ;
382
+ value : string | CannotCreateDefaultLocale ;
383
383
} | null ) ;
384
384
localizedRelationMultiRelationToHasMany ?:
385
385
| (
@@ -388,8 +388,8 @@ export interface WithLocalizedRelationship {
388
388
value : string | LocalizedPost ;
389
389
}
390
390
| {
391
- relationTo : 'dummy ' ;
392
- value : string | Dummy ;
391
+ relationTo : 'cannot-create-default-locale ' ;
392
+ value : string | CannotCreateDefaultLocale ;
393
393
}
394
394
) [ ]
395
395
| null ;
@@ -398,9 +398,9 @@ export interface WithLocalizedRelationship {
398
398
}
399
399
/**
400
400
* This interface was referenced by `Config`'s JSON-Schema
401
- * via the `definition` "dummy ".
401
+ * via the `definition` "cannot-create-default-locale ".
402
402
*/
403
- export interface Dummy {
403
+ export interface CannotCreateDefaultLocale {
404
404
id : string ;
405
405
name ?: string | null ;
406
406
updatedAt : string ;
@@ -420,8 +420,8 @@ export interface RelationshipLocalized {
420
420
value : string | LocalizedPost ;
421
421
} | null )
422
422
| ( {
423
- relationTo : 'dummy ' ;
424
- value : string | Dummy ;
423
+ relationTo : 'cannot-create-default-locale ' ;
424
+ value : string | CannotCreateDefaultLocale ;
425
425
} | null ) ;
426
426
relationMultiRelationToHasMany ?:
427
427
| (
@@ -430,8 +430,8 @@ export interface RelationshipLocalized {
430
430
value : string | LocalizedPost ;
431
431
}
432
432
| {
433
- relationTo : 'dummy ' ;
434
- value : string | Dummy ;
433
+ relationTo : 'cannot-create-default-locale ' ;
434
+ value : string | CannotCreateDefaultLocale ;
435
435
}
436
436
) [ ]
437
437
| null ;
@@ -668,8 +668,8 @@ export interface PayloadLockedDocument {
668
668
value : string | RelationshipLocalized ;
669
669
} | null )
670
670
| ( {
671
- relationTo : 'dummy ' ;
672
- value : string | Dummy ;
671
+ relationTo : 'cannot-create-default-locale ' ;
672
+ value : string | CannotCreateDefaultLocale ;
673
673
} | null )
674
674
| ( {
675
675
relationTo : 'nested' ;
@@ -1027,9 +1027,9 @@ export interface RelationshipLocalizedSelect<T extends boolean = true> {
1027
1027
}
1028
1028
/**
1029
1029
* This interface was referenced by `Config`'s JSON-Schema
1030
- * via the `definition` "dummy_select ".
1030
+ * via the `definition` "cannot-create-default-locale_select ".
1031
1031
*/
1032
- export interface DummySelect < T extends boolean = true > {
1032
+ export interface CannotCreateDefaultLocaleSelect < T extends boolean = true > {
1033
1033
name ?: T ;
1034
1034
updatedAt ?: T ;
1035
1035
createdAt ?: T ;
0 commit comments