@@ -111,6 +111,8 @@ export interface Config {
111
111
'list-view-preview' : ListViewPreview ;
112
112
'three-dimensional' : ThreeDimensional ;
113
113
'constructor-options' : ConstructorOption ;
114
+ 'bulk-uploads' : BulkUpload ;
115
+ 'simple-relationship' : SimpleRelationship ;
114
116
users : User ;
115
117
'payload-locked-documents' : PayloadLockedDocument ;
116
118
'payload-preferences' : PayloadPreference ;
@@ -162,6 +164,8 @@ export interface Config {
162
164
'list-view-preview' : ListViewPreviewSelect < false > | ListViewPreviewSelect < true > ;
163
165
'three-dimensional' : ThreeDimensionalSelect < false > | ThreeDimensionalSelect < true > ;
164
166
'constructor-options' : ConstructorOptionsSelect < false > | ConstructorOptionsSelect < true > ;
167
+ 'bulk-uploads' : BulkUploadsSelect < false > | BulkUploadsSelect < true > ;
168
+ 'simple-relationship' : SimpleRelationshipSelect < false > | SimpleRelationshipSelect < true > ;
165
169
users : UsersSelect < false > | UsersSelect < true > ;
166
170
'payload-locked-documents' : PayloadLockedDocumentsSelect < false > | PayloadLockedDocumentsSelect < true > ;
167
171
'payload-preferences' : PayloadPreferencesSelect < false > | PayloadPreferencesSelect < true > ;
@@ -1465,6 +1469,39 @@ export interface ConstructorOption {
1465
1469
focalX ?: number | null ;
1466
1470
focalY ?: number | null ;
1467
1471
}
1472
+ /**
1473
+ * This interface was referenced by `Config`'s JSON-Schema
1474
+ * via the `definition` "bulk-uploads".
1475
+ */
1476
+ export interface BulkUpload {
1477
+ id : string ;
1478
+ title : string ;
1479
+ relationship ?: {
1480
+ relationTo : 'simple-relationship' ;
1481
+ value : string | SimpleRelationship ;
1482
+ } | null ;
1483
+ updatedAt : string ;
1484
+ createdAt : string ;
1485
+ url ?: string | null ;
1486
+ thumbnailURL ?: string | null ;
1487
+ filename ?: string | null ;
1488
+ mimeType ?: string | null ;
1489
+ filesize ?: number | null ;
1490
+ width ?: number | null ;
1491
+ height ?: number | null ;
1492
+ focalX ?: number | null ;
1493
+ focalY ?: number | null ;
1494
+ }
1495
+ /**
1496
+ * This interface was referenced by `Config`'s JSON-Schema
1497
+ * via the `definition` "simple-relationship".
1498
+ */
1499
+ export interface SimpleRelationship {
1500
+ id : string ;
1501
+ title ?: string | null ;
1502
+ updatedAt : string ;
1503
+ createdAt : string ;
1504
+ }
1468
1505
/**
1469
1506
* This interface was referenced by `Config`'s JSON-Schema
1470
1507
* via the `definition` "users".
@@ -1672,6 +1709,14 @@ export interface PayloadLockedDocument {
1672
1709
relationTo : 'constructor-options' ;
1673
1710
value : string | ConstructorOption ;
1674
1711
} | null )
1712
+ | ( {
1713
+ relationTo : 'bulk-uploads' ;
1714
+ value : string | BulkUpload ;
1715
+ } | null )
1716
+ | ( {
1717
+ relationTo : 'simple-relationship' ;
1718
+ value : string | SimpleRelationship ;
1719
+ } | null )
1675
1720
| ( {
1676
1721
relationTo : 'users' ;
1677
1722
value : string | User ;
@@ -3065,6 +3110,34 @@ export interface ConstructorOptionsSelect<T extends boolean = true> {
3065
3110
focalX ?: T ;
3066
3111
focalY ?: T ;
3067
3112
}
3113
+ /**
3114
+ * This interface was referenced by `Config`'s JSON-Schema
3115
+ * via the `definition` "bulk-uploads_select".
3116
+ */
3117
+ export interface BulkUploadsSelect < T extends boolean = true > {
3118
+ title ?: T ;
3119
+ relationship ?: T ;
3120
+ updatedAt ?: T ;
3121
+ createdAt ?: T ;
3122
+ url ?: T ;
3123
+ thumbnailURL ?: T ;
3124
+ filename ?: T ;
3125
+ mimeType ?: T ;
3126
+ filesize ?: T ;
3127
+ width ?: T ;
3128
+ height ?: T ;
3129
+ focalX ?: T ;
3130
+ focalY ?: T ;
3131
+ }
3132
+ /**
3133
+ * This interface was referenced by `Config`'s JSON-Schema
3134
+ * via the `definition` "simple-relationship_select".
3135
+ */
3136
+ export interface SimpleRelationshipSelect < T extends boolean = true > {
3137
+ title ?: T ;
3138
+ updatedAt ?: T ;
3139
+ createdAt ?: T ;
3140
+ }
3068
3141
/**
3069
3142
* This interface was referenced by `Config`'s JSON-Schema
3070
3143
* via the `definition` "users_select".
0 commit comments