@@ -15,6 +15,7 @@ export interface Config {
15
15
posts : Post ;
16
16
users : User ;
17
17
'hidden-collection' : HiddenCollection ;
18
+ 'not-in-view-collection' : NotInViewCollection ;
18
19
'collection-no-api-view' : CollectionNoApiView ;
19
20
'custom-views-one' : CustomViewsOne ;
20
21
'custom-views-two' : CustomViewsTwo ;
@@ -24,8 +25,6 @@ export interface Config {
24
25
'group-two-collection-ones' : GroupTwoCollectionOne ;
25
26
'group-two-collection-twos' : GroupTwoCollectionTwo ;
26
27
geo : Geo ;
27
- customIdTab : CustomIdTab ;
28
- customIdRow : CustomIdRow ;
29
28
'disable-duplicate' : DisableDuplicate ;
30
29
'base-list-filters' : BaseListFilter ;
31
30
'payload-locked-documents' : PayloadLockedDocument ;
@@ -38,6 +37,7 @@ export interface Config {
38
37
posts : PostsSelect < false > | PostsSelect < true > ;
39
38
users : UsersSelect < false > | UsersSelect < true > ;
40
39
'hidden-collection' : HiddenCollectionSelect < false > | HiddenCollectionSelect < true > ;
40
+ 'not-in-view-collection' : NotInViewCollectionSelect < false > | NotInViewCollectionSelect < true > ;
41
41
'collection-no-api-view' : CollectionNoApiViewSelect < false > | CollectionNoApiViewSelect < true > ;
42
42
'custom-views-one' : CustomViewsOneSelect < false > | CustomViewsOneSelect < true > ;
43
43
'custom-views-two' : CustomViewsTwoSelect < false > | CustomViewsTwoSelect < true > ;
@@ -47,8 +47,6 @@ export interface Config {
47
47
'group-two-collection-ones' : GroupTwoCollectionOnesSelect < false > | GroupTwoCollectionOnesSelect < true > ;
48
48
'group-two-collection-twos' : GroupTwoCollectionTwosSelect < false > | GroupTwoCollectionTwosSelect < true > ;
49
49
geo : GeoSelect < false > | GeoSelect < true > ;
50
- customIdTab : CustomIdTabSelect < false > | CustomIdTabSelect < true > ;
51
- customIdRow : CustomIdRowSelect < false > | CustomIdRowSelect < true > ;
52
50
'disable-duplicate' : DisableDuplicateSelect < false > | DisableDuplicateSelect < true > ;
53
51
'base-list-filters' : BaseListFiltersSelect < false > | BaseListFiltersSelect < true > ;
54
52
'payload-locked-documents' : PayloadLockedDocumentsSelect < false > | PayloadLockedDocumentsSelect < true > ;
@@ -60,6 +58,7 @@ export interface Config {
60
58
} ;
61
59
globals : {
62
60
'hidden-global' : HiddenGlobal ;
61
+ 'not-in-view-global' : NotInViewGlobal ;
63
62
'global-no-api-view' : GlobalNoApiView ;
64
63
global : Global ;
65
64
'custom-global-views-one' : CustomGlobalViewsOne ;
@@ -70,6 +69,7 @@ export interface Config {
70
69
} ;
71
70
globalsSelect : {
72
71
'hidden-global' : HiddenGlobalSelect < false > | HiddenGlobalSelect < true > ;
72
+ 'not-in-view-global' : NotInViewGlobalSelect < false > | NotInViewGlobalSelect < true > ;
73
73
'global-no-api-view' : GlobalNoApiViewSelect < false > | GlobalNoApiViewSelect < true > ;
74
74
global : GlobalSelect < false > | GlobalSelect < true > ;
75
75
'custom-global-views-one' : CustomGlobalViewsOneSelect < false > | CustomGlobalViewsOneSelect < true > ;
@@ -199,6 +199,16 @@ export interface HiddenCollection {
199
199
updatedAt : string ;
200
200
createdAt : string ;
201
201
}
202
+ /**
203
+ * This interface was referenced by `Config`'s JSON-Schema
204
+ * via the `definition` "not-in-view-collection".
205
+ */
206
+ export interface NotInViewCollection {
207
+ id : string ;
208
+ title ?: string | null ;
209
+ updatedAt : string ;
210
+ createdAt : string ;
211
+ }
202
212
/**
203
213
* This interface was referenced by `Config`'s JSON-Schema
204
214
* via the `definition` "collection-no-api-view".
@@ -318,30 +328,6 @@ export interface Geo {
318
328
updatedAt : string ;
319
329
createdAt : string ;
320
330
}
321
- /**
322
- * This interface was referenced by `Config`'s JSON-Schema
323
- * via the `definition` "customIdTab".
324
- */
325
- export interface CustomIdTab {
326
- title ?: string | null ;
327
- id : string ;
328
- description ?: string | null ;
329
- number ?: number | null ;
330
- updatedAt : string ;
331
- createdAt : string ;
332
- }
333
- /**
334
- * This interface was referenced by `Config`'s JSON-Schema
335
- * via the `definition` "customIdRow".
336
- */
337
- export interface CustomIdRow {
338
- title ?: string | null ;
339
- id : string ;
340
- description ?: string | null ;
341
- number ?: number | null ;
342
- updatedAt : string ;
343
- createdAt : string ;
344
- }
345
331
/**
346
332
* This interface was referenced by `Config`'s JSON-Schema
347
333
* via the `definition` "disable-duplicate".
@@ -385,6 +371,10 @@ export interface PayloadLockedDocument {
385
371
relationTo : 'hidden-collection' ;
386
372
value : string | HiddenCollection ;
387
373
} | null )
374
+ | ( {
375
+ relationTo : 'not-in-view-collection' ;
376
+ value : string | NotInViewCollection ;
377
+ } | null )
388
378
| ( {
389
379
relationTo : 'collection-no-api-view' ;
390
380
value : string | CollectionNoApiView ;
@@ -421,14 +411,6 @@ export interface PayloadLockedDocument {
421
411
relationTo : 'geo' ;
422
412
value : string | Geo ;
423
413
} | null )
424
- | ( {
425
- relationTo : 'customIdTab' ;
426
- value : string | CustomIdTab ;
427
- } | null )
428
- | ( {
429
- relationTo : 'customIdRow' ;
430
- value : string | CustomIdRow ;
431
- } | null )
432
414
| ( {
433
415
relationTo : 'disable-duplicate' ;
434
416
value : string | DisableDuplicate ;
@@ -569,6 +551,15 @@ export interface HiddenCollectionSelect<T extends boolean = true> {
569
551
updatedAt ?: T ;
570
552
createdAt ?: T ;
571
553
}
554
+ /**
555
+ * This interface was referenced by `Config`'s JSON-Schema
556
+ * via the `definition` "not-in-view-collection_select".
557
+ */
558
+ export interface NotInViewCollectionSelect < T extends boolean = true > {
559
+ title ?: T ;
560
+ updatedAt ?: T ;
561
+ createdAt ?: T ;
562
+ }
572
563
/**
573
564
* This interface was referenced by `Config`'s JSON-Schema
574
565
* via the `definition` "collection-no-api-view_select".
@@ -680,30 +671,6 @@ export interface GeoSelect<T extends boolean = true> {
680
671
updatedAt ?: T ;
681
672
createdAt ?: T ;
682
673
}
683
- /**
684
- * This interface was referenced by `Config`'s JSON-Schema
685
- * via the `definition` "customIdTab_select".
686
- */
687
- export interface CustomIdTabSelect < T extends boolean = true > {
688
- title ?: T ;
689
- id ?: T ;
690
- description ?: T ;
691
- number ?: T ;
692
- updatedAt ?: T ;
693
- createdAt ?: T ;
694
- }
695
- /**
696
- * This interface was referenced by `Config`'s JSON-Schema
697
- * via the `definition` "customIdRow_select".
698
- */
699
- export interface CustomIdRowSelect < T extends boolean = true > {
700
- title ?: T ;
701
- id ?: T ;
702
- description ?: T ;
703
- number ?: T ;
704
- updatedAt ?: T ;
705
- createdAt ?: T ;
706
- }
707
674
/**
708
675
* This interface was referenced by `Config`'s JSON-Schema
709
676
* via the `definition` "disable-duplicate_select".
@@ -764,6 +731,16 @@ export interface HiddenGlobal {
764
731
updatedAt ?: string | null ;
765
732
createdAt ?: string | null ;
766
733
}
734
+ /**
735
+ * This interface was referenced by `Config`'s JSON-Schema
736
+ * via the `definition` "not-in-view-global".
737
+ */
738
+ export interface NotInViewGlobal {
739
+ id : string ;
740
+ title ?: string | null ;
741
+ updatedAt ?: string | null ;
742
+ createdAt ?: string | null ;
743
+ }
767
744
/**
768
745
* This interface was referenced by `Config`'s JSON-Schema
769
746
* via the `definition` "global-no-api-view".
@@ -845,6 +822,16 @@ export interface HiddenGlobalSelect<T extends boolean = true> {
845
822
createdAt ?: T ;
846
823
globalType ?: T ;
847
824
}
825
+ /**
826
+ * This interface was referenced by `Config`'s JSON-Schema
827
+ * via the `definition` "not-in-view-global_select".
828
+ */
829
+ export interface NotInViewGlobalSelect < T extends boolean = true > {
830
+ title ?: T ;
831
+ updatedAt ?: T ;
832
+ createdAt ?: T ;
833
+ globalType ?: T ;
834
+ }
848
835
/**
849
836
* This interface was referenced by `Config`'s JSON-Schema
850
837
* via the `definition` "global-no-api-view_select".
0 commit comments