@01.software/sdk 0.2.9-dev.260311.bb95a4e → 0.2.9-dev.260314.f493447

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -23,7 +23,8 @@ interface Config {
23
23
  collections: {
24
24
  users: User;
25
25
  'field-configs': FieldConfig;
26
- media: Media;
26
+ images: Image;
27
+ 'system-media': SystemMedia;
27
28
  audiences: Audience;
28
29
  'email-logs': EmailLog;
29
30
  tenants: Tenant;
@@ -32,7 +33,6 @@ interface Config {
32
33
  subscriptions: Subscription;
33
34
  'billing-history': BillingHistory;
34
35
  'tenant-logos': TenantLogo;
35
- 'tenant-og-images': TenantOgImage;
36
36
  products: Product;
37
37
  'product-variants': ProductVariant;
38
38
  'product-options': ProductOption;
@@ -41,7 +41,6 @@ interface Config {
41
41
  'product-collections': ProductCollection;
42
42
  brands: Brand;
43
43
  'brand-logos': BrandLogo;
44
- 'product-images': ProductImage;
45
44
  orders: Order;
46
45
  'order-products': OrderProduct;
47
46
  transactions: Transaction;
@@ -56,7 +55,6 @@ interface Config {
56
55
  customers: Customer;
57
56
  'customer-addresses': CustomerAddress;
58
57
  'customer-groups': CustomerGroup;
59
- 'customer-group-images': CustomerGroupImage;
60
58
  carts: Cart;
61
59
  'cart-items': CartItem;
62
60
  discounts: Discount;
@@ -64,32 +62,26 @@ interface Config {
64
62
  'post-authors': PostAuthor;
65
63
  'post-categories': PostCategory;
66
64
  'post-tags': PostTag;
67
- 'post-images': PostImage;
68
65
  documents: Document;
69
66
  'document-categories': DocumentCategory;
70
67
  'document-types': DocumentType;
71
- 'document-images': DocumentImage;
72
68
  playlists: Playlist;
73
69
  'playlist-categories': PlaylistCategory;
74
70
  'playlist-tags': PlaylistTag;
75
71
  musics: Music;
76
- 'playlist-images': PlaylistImage;
77
72
  galleries: Gallery;
78
- 'gallery-images': GalleryImage;
79
73
  'gallery-categories': GalleryCategory;
80
74
  'gallery-tags': GalleryTag;
75
+ 'gallery-items': GalleryItem;
81
76
  flows: Flow;
82
77
  'flow-node-types': FlowNodeType;
83
78
  'flow-edge-types': FlowEdgeType;
84
79
  'flow-categories': FlowCategory;
85
- 'flow-images': FlowImage;
86
80
  'flow-tags': FlowTag;
87
81
  videos: Video;
88
82
  'video-categories': VideoCategory;
89
83
  'video-tags': VideoTag;
90
- 'video-images': VideoImage;
91
84
  'live-streams': LiveStream;
92
- 'live-stream-images': LiveStreamImage;
93
85
  forms: Form;
94
86
  'form-submissions': FormSubmission;
95
87
  'payload-kv': PayloadKv;
@@ -139,13 +131,14 @@ interface Config {
139
131
  musics: 'musics';
140
132
  };
141
133
  galleries: {
142
- images: 'gallery-images';
134
+ items: 'gallery-items';
143
135
  };
144
136
  };
145
137
  collectionsSelect: {
146
138
  users: UsersSelect<false> | UsersSelect<true>;
147
139
  'field-configs': FieldConfigsSelect<false> | FieldConfigsSelect<true>;
148
- media: MediaSelect<false> | MediaSelect<true>;
140
+ images: ImagesSelect<false> | ImagesSelect<true>;
141
+ 'system-media': SystemMediaSelect<false> | SystemMediaSelect<true>;
149
142
  audiences: AudiencesSelect<false> | AudiencesSelect<true>;
150
143
  'email-logs': EmailLogsSelect<false> | EmailLogsSelect<true>;
151
144
  tenants: TenantsSelect<false> | TenantsSelect<true>;
@@ -154,7 +147,6 @@ interface Config {
154
147
  subscriptions: SubscriptionsSelect<false> | SubscriptionsSelect<true>;
155
148
  'billing-history': BillingHistorySelect<false> | BillingHistorySelect<true>;
156
149
  'tenant-logos': TenantLogosSelect<false> | TenantLogosSelect<true>;
157
- 'tenant-og-images': TenantOgImagesSelect<false> | TenantOgImagesSelect<true>;
158
150
  products: ProductsSelect<false> | ProductsSelect<true>;
159
151
  'product-variants': ProductVariantsSelect<false> | ProductVariantsSelect<true>;
160
152
  'product-options': ProductOptionsSelect<false> | ProductOptionsSelect<true>;
@@ -163,7 +155,6 @@ interface Config {
163
155
  'product-collections': ProductCollectionsSelect<false> | ProductCollectionsSelect<true>;
164
156
  brands: BrandsSelect<false> | BrandsSelect<true>;
165
157
  'brand-logos': BrandLogosSelect<false> | BrandLogosSelect<true>;
166
- 'product-images': ProductImagesSelect<false> | ProductImagesSelect<true>;
167
158
  orders: OrdersSelect<false> | OrdersSelect<true>;
168
159
  'order-products': OrderProductsSelect<false> | OrderProductsSelect<true>;
169
160
  transactions: TransactionsSelect<false> | TransactionsSelect<true>;
@@ -178,7 +169,6 @@ interface Config {
178
169
  customers: CustomersSelect<false> | CustomersSelect<true>;
179
170
  'customer-addresses': CustomerAddressesSelect<false> | CustomerAddressesSelect<true>;
180
171
  'customer-groups': CustomerGroupsSelect<false> | CustomerGroupsSelect<true>;
181
- 'customer-group-images': CustomerGroupImagesSelect<false> | CustomerGroupImagesSelect<true>;
182
172
  carts: CartsSelect<false> | CartsSelect<true>;
183
173
  'cart-items': CartItemsSelect<false> | CartItemsSelect<true>;
184
174
  discounts: DiscountsSelect<false> | DiscountsSelect<true>;
@@ -186,32 +176,26 @@ interface Config {
186
176
  'post-authors': PostAuthorsSelect<false> | PostAuthorsSelect<true>;
187
177
  'post-categories': PostCategoriesSelect<false> | PostCategoriesSelect<true>;
188
178
  'post-tags': PostTagsSelect<false> | PostTagsSelect<true>;
189
- 'post-images': PostImagesSelect<false> | PostImagesSelect<true>;
190
179
  documents: DocumentsSelect<false> | DocumentsSelect<true>;
191
180
  'document-categories': DocumentCategoriesSelect<false> | DocumentCategoriesSelect<true>;
192
181
  'document-types': DocumentTypesSelect<false> | DocumentTypesSelect<true>;
193
- 'document-images': DocumentImagesSelect<false> | DocumentImagesSelect<true>;
194
182
  playlists: PlaylistsSelect<false> | PlaylistsSelect<true>;
195
183
  'playlist-categories': PlaylistCategoriesSelect<false> | PlaylistCategoriesSelect<true>;
196
184
  'playlist-tags': PlaylistTagsSelect<false> | PlaylistTagsSelect<true>;
197
185
  musics: MusicsSelect<false> | MusicsSelect<true>;
198
- 'playlist-images': PlaylistImagesSelect<false> | PlaylistImagesSelect<true>;
199
186
  galleries: GalleriesSelect<false> | GalleriesSelect<true>;
200
- 'gallery-images': GalleryImagesSelect<false> | GalleryImagesSelect<true>;
201
187
  'gallery-categories': GalleryCategoriesSelect<false> | GalleryCategoriesSelect<true>;
202
188
  'gallery-tags': GalleryTagsSelect<false> | GalleryTagsSelect<true>;
189
+ 'gallery-items': GalleryItemsSelect<false> | GalleryItemsSelect<true>;
203
190
  flows: FlowsSelect<false> | FlowsSelect<true>;
204
191
  'flow-node-types': FlowNodeTypesSelect<false> | FlowNodeTypesSelect<true>;
205
192
  'flow-edge-types': FlowEdgeTypesSelect<false> | FlowEdgeTypesSelect<true>;
206
193
  'flow-categories': FlowCategoriesSelect<false> | FlowCategoriesSelect<true>;
207
- 'flow-images': FlowImagesSelect<false> | FlowImagesSelect<true>;
208
194
  'flow-tags': FlowTagsSelect<false> | FlowTagsSelect<true>;
209
195
  videos: VideosSelect<false> | VideosSelect<true>;
210
196
  'video-categories': VideoCategoriesSelect<false> | VideoCategoriesSelect<true>;
211
197
  'video-tags': VideoTagsSelect<false> | VideoTagsSelect<true>;
212
- 'video-images': VideoImagesSelect<false> | VideoImagesSelect<true>;
213
198
  'live-streams': LiveStreamsSelect<false> | LiveStreamsSelect<true>;
214
- 'live-stream-images': LiveStreamImagesSelect<false> | LiveStreamImagesSelect<true>;
215
199
  forms: FormsSelect<false> | FormsSelect<true>;
216
200
  'form-submissions': FormSubmissionsSelect<false> | FormSubmissionsSelect<true>;
217
201
  'payload-kv': PayloadKvSelect<false> | PayloadKvSelect<true>;
@@ -408,12 +392,86 @@ interface FieldConfig {
408
392
  }
409
393
  /**
410
394
  * This interface was referenced by `Config`'s JSON-Schema
411
- * via the `definition` "media".
395
+ * via the `definition` "images".
412
396
  */
413
- interface Media {
397
+ interface Image {
414
398
  id: string;
415
399
  tenant?: (string | null) | Tenant;
416
400
  alt?: string | null;
401
+ /**
402
+ * Low quality image placeholder
403
+ */
404
+ lqip?: string | null;
405
+ palette?: {
406
+ vibrant?: string | null;
407
+ muted?: string | null;
408
+ darkVibrant?: string | null;
409
+ darkMuted?: string | null;
410
+ lightVibrant?: string | null;
411
+ lightMuted?: string | null;
412
+ };
413
+ prefix?: string | null;
414
+ updatedAt: string;
415
+ createdAt: string;
416
+ url?: string | null;
417
+ thumbnailURL?: string | null;
418
+ filename?: string | null;
419
+ mimeType?: string | null;
420
+ filesize?: number | null;
421
+ width?: number | null;
422
+ height?: number | null;
423
+ focalX?: number | null;
424
+ focalY?: number | null;
425
+ sizes?: {
426
+ '200'?: {
427
+ url?: string | null;
428
+ width?: number | null;
429
+ height?: number | null;
430
+ mimeType?: string | null;
431
+ filesize?: number | null;
432
+ filename?: string | null;
433
+ };
434
+ '400'?: {
435
+ url?: string | null;
436
+ width?: number | null;
437
+ height?: number | null;
438
+ mimeType?: string | null;
439
+ filesize?: number | null;
440
+ filename?: string | null;
441
+ };
442
+ '800'?: {
443
+ url?: string | null;
444
+ width?: number | null;
445
+ height?: number | null;
446
+ mimeType?: string | null;
447
+ filesize?: number | null;
448
+ filename?: string | null;
449
+ };
450
+ '1200'?: {
451
+ url?: string | null;
452
+ width?: number | null;
453
+ height?: number | null;
454
+ mimeType?: string | null;
455
+ filesize?: number | null;
456
+ filename?: string | null;
457
+ };
458
+ '1600'?: {
459
+ url?: string | null;
460
+ width?: number | null;
461
+ height?: number | null;
462
+ mimeType?: string | null;
463
+ filesize?: number | null;
464
+ filename?: string | null;
465
+ };
466
+ };
467
+ }
468
+ /**
469
+ * This interface was referenced by `Config`'s JSON-Schema
470
+ * via the `definition` "system-media".
471
+ */
472
+ interface SystemMedia {
473
+ id: string;
474
+ alt?: string | null;
417
475
  caption?: string | null;
418
476
  /**
419
477
  * Photographer or source attribution
@@ -572,7 +630,7 @@ interface TenantMetadatum {
572
630
  /**
573
631
  * Open Graph image (1200x630 recommended)
574
632
  */
575
- ogImage?: (string | null) | TenantOgImage;
633
+ ogImage?: (string | null) | Image;
576
634
  /**
577
635
  * Open Graph type
578
636
  */
@@ -606,7 +664,7 @@ interface TenantMetadatum {
606
664
  /**
607
665
  * Twitter card image (falls back to OG image)
608
666
  */
609
- twitterImage?: (string | null) | TenantOgImage;
667
+ twitterImage?: (string | null) | Image;
610
668
  };
611
669
  pwa?: {
612
670
  /**
@@ -633,6 +691,9 @@ interface BrandLogo {
633
691
  id: string;
634
692
  tenant?: (string | null) | Tenant;
635
693
  alt?: string | null;
694
+ /**
695
+ * Low quality image placeholder
696
+ */
636
697
  lqip?: string | null;
637
698
  palette?: {
638
699
  vibrant?: string | null;
@@ -713,46 +774,6 @@ interface BrandLogo {
713
774
  };
714
775
  };
715
776
  }
716
- /**
717
- * This interface was referenced by `Config`'s JSON-Schema
718
- * via the `definition` "tenant-og-images".
719
- */
720
- interface TenantOgImage {
721
- id: string;
722
- tenant?: (string | null) | Tenant;
723
- alt?: string | null;
724
- lqip?: string | null;
725
- palette?: {
726
- vibrant?: string | null;
727
- muted?: string | null;
728
- darkVibrant?: string | null;
729
- darkMuted?: string | null;
730
- lightVibrant?: string | null;
731
- lightMuted?: string | null;
732
- };
733
- prefix?: string | null;
734
- updatedAt: string;
735
- createdAt: string;
736
- url?: string | null;
737
- thumbnailURL?: string | null;
738
- filename?: string | null;
739
- mimeType?: string | null;
740
- filesize?: number | null;
741
- width?: number | null;
742
- height?: number | null;
743
- focalX?: number | null;
744
- focalY?: number | null;
745
- sizes?: {
746
- '1200'?: {
747
- url?: string | null;
748
- width?: number | null;
749
- height?: number | null;
750
- mimeType?: string | null;
751
- filesize?: number | null;
752
- filename?: string | null;
753
- };
754
- };
755
- }
756
777
  /**
757
778
  * This interface was referenced by `Config`'s JSON-Schema
758
779
  * via the `definition` "api-usage".
@@ -925,6 +946,9 @@ interface TenantLogo {
925
946
  id: string;
926
947
  tenant?: (string | null) | Tenant;
927
948
  alt?: string | null;
949
+ /**
950
+ * Low quality image placeholder
951
+ */
928
952
  lqip?: string | null;
929
953
  palette?: {
930
954
  vibrant?: string | null;
@@ -1019,8 +1043,8 @@ interface Product {
1019
1043
  * Short summary for listing/cards
1020
1044
  */
1021
1045
  description?: string | null;
1022
- thumbnail?: (string | null) | ProductImage;
1023
- images?: (string | ProductImage)[] | null;
1046
+ thumbnail?: (string | null) | Image;
1047
+ images?: (string | Image)[] | null;
1024
1048
  videos?: (string | Video)[] | null;
1025
1049
  price: number;
1026
1050
  /**
@@ -1126,7 +1150,7 @@ interface Product {
1126
1150
  /**
1127
1151
  * OG / Twitter Card image (1200×630 recommended)
1128
1152
  */
1129
- image?: (string | null) | ProductImage;
1153
+ image?: (string | null) | Image;
1130
1154
  };
1131
1155
  };
1132
1156
  /**
@@ -1142,70 +1166,6 @@ interface Product {
1142
1166
  createdAt: string;
1143
1167
  deletedAt?: string | null;
1144
1168
  }
1145
- /**
1146
- * This interface was referenced by `Config`'s JSON-Schema
1147
- * via the `definition` "product-images".
1148
- */
1149
- interface ProductImage {
1150
- id: string;
1151
- tenant?: (string | null) | Tenant;
1152
- alt?: string | null;
1153
- lqip?: string | null;
1154
- palette?: {
1155
- vibrant?: string | null;
1156
- muted?: string | null;
1157
- darkVibrant?: string | null;
1158
- darkMuted?: string | null;
1159
- lightVibrant?: string | null;
1160
- lightMuted?: string | null;
1161
- };
1162
- prefix?: string | null;
1163
- updatedAt: string;
1164
- createdAt: string;
1165
- url?: string | null;
1166
- thumbnailURL?: string | null;
1167
- filename?: string | null;
1168
- mimeType?: string | null;
1169
- filesize?: number | null;
1170
- width?: number | null;
1171
- height?: number | null;
1172
- focalX?: number | null;
1173
- focalY?: number | null;
1174
- sizes?: {
1175
- '200'?: {
1176
- url?: string | null;
1177
- width?: number | null;
1178
- height?: number | null;
1179
- mimeType?: string | null;
1180
- filesize?: number | null;
1181
- filename?: string | null;
1182
- };
1183
- '400'?: {
1184
- url?: string | null;
1185
- width?: number | null;
1186
- height?: number | null;
1187
- mimeType?: string | null;
1188
- filesize?: number | null;
1189
- filename?: string | null;
1190
- };
1191
- '800'?: {
1192
- url?: string | null;
1193
- width?: number | null;
1194
- height?: number | null;
1195
- mimeType?: string | null;
1196
- filesize?: number | null;
1197
- filename?: string | null;
1198
- };
1199
- '1600'?: {
1200
- url?: string | null;
1201
- width?: number | null;
1202
- height?: number | null;
1203
- mimeType?: string | null;
1204
- filesize?: number | null;
1205
- filename?: string | null;
1206
- };
1207
- };
1208
- }
1209
1169
  /**
1210
1170
  * This interface was referenced by `Config`'s JSON-Schema
1211
1171
  * via the `definition` "videos".
@@ -1270,10 +1230,10 @@ interface Video {
1270
1230
  /**
1271
1231
  * OG / Twitter Card image (1200×630 recommended)
1272
1232
  */
1273
- image?: (string | null) | VideoImage;
1233
+ image?: (string | null) | Image;
1274
1234
  };
1275
1235
  };
1276
- thumbnail?: (string | null) | VideoImage;
1236
+ thumbnail?: (string | null) | Image;
1277
1237
  /**
1278
1238
  * When enabled, the slug will auto-generate from the title field on save and autosave.
1279
1239
  */
@@ -1304,7 +1264,7 @@ interface LiveStream {
1304
1264
  * Scheduled start time
1305
1265
  */
1306
1266
  scheduledAt?: string | null;
1307
- thumbnail?: (string | null) | LiveStreamImage;
1267
+ thumbnail?: (string | null) | Image;
1308
1268
  /**
1309
1269
  * When enabled, the slug will auto-generate from the title field on save and autosave.
1310
1270
  */
@@ -1329,161 +1289,33 @@ interface LiveStream {
1329
1289
  }
1330
1290
  /**
1331
1291
  * This interface was referenced by `Config`'s JSON-Schema
1332
- * via the `definition` "live-stream-images".
1292
+ * via the `definition` "video-categories".
1333
1293
  */
1334
- interface LiveStreamImage {
1294
+ interface VideoCategory {
1335
1295
  id: string;
1296
+ _order?: string | null;
1336
1297
  tenant?: (string | null) | Tenant;
1337
- alt?: string | null;
1338
- lqip?: string | null;
1339
- palette?: {
1340
- vibrant?: string | null;
1341
- muted?: string | null;
1342
- darkVibrant?: string | null;
1343
- darkMuted?: string | null;
1344
- lightVibrant?: string | null;
1345
- lightMuted?: string | null;
1346
- };
1347
- prefix?: string | null;
1298
+ title: string;
1299
+ /**
1300
+ * When enabled, the slug will auto-generate from the title field on save and autosave.
1301
+ */
1302
+ generateSlug?: boolean | null;
1303
+ slug?: string | null;
1304
+ description?: string | null;
1305
+ image?: (string | null) | Image;
1306
+ parent?: (string | null) | VideoCategory;
1307
+ color?: string | null;
1348
1308
  updatedAt: string;
1349
1309
  createdAt: string;
1350
- url?: string | null;
1351
- thumbnailURL?: string | null;
1352
- filename?: string | null;
1353
- mimeType?: string | null;
1354
- filesize?: number | null;
1355
- width?: number | null;
1356
- height?: number | null;
1357
- focalX?: number | null;
1358
- focalY?: number | null;
1359
- sizes?: {
1360
- '200'?: {
1361
- url?: string | null;
1362
- width?: number | null;
1363
- height?: number | null;
1364
- mimeType?: string | null;
1365
- filesize?: number | null;
1366
- filename?: string | null;
1367
- };
1368
- '400'?: {
1369
- url?: string | null;
1370
- width?: number | null;
1371
- height?: number | null;
1372
- mimeType?: string | null;
1373
- filesize?: number | null;
1374
- filename?: string | null;
1375
- };
1376
- '800'?: {
1377
- url?: string | null;
1378
- width?: number | null;
1379
- height?: number | null;
1380
- mimeType?: string | null;
1381
- filesize?: number | null;
1382
- filename?: string | null;
1383
- };
1384
- '1600'?: {
1385
- url?: string | null;
1386
- width?: number | null;
1387
- height?: number | null;
1388
- mimeType?: string | null;
1389
- filesize?: number | null;
1390
- filename?: string | null;
1391
- };
1392
- };
1310
+ deletedAt?: string | null;
1393
1311
  }
1394
1312
  /**
1395
1313
  * This interface was referenced by `Config`'s JSON-Schema
1396
- * via the `definition` "video-images".
1314
+ * via the `definition` "video-tags".
1397
1315
  */
1398
- interface VideoImage {
1316
+ interface VideoTag {
1399
1317
  id: string;
1400
- tenant?: (string | null) | Tenant;
1401
- alt?: string | null;
1402
- lqip?: string | null;
1403
- palette?: {
1404
- vibrant?: string | null;
1405
- muted?: string | null;
1406
- darkVibrant?: string | null;
1407
- darkMuted?: string | null;
1408
- lightVibrant?: string | null;
1409
- lightMuted?: string | null;
1410
- };
1411
- prefix?: string | null;
1412
- updatedAt: string;
1413
- createdAt: string;
1414
- url?: string | null;
1415
- thumbnailURL?: string | null;
1416
- filename?: string | null;
1417
- mimeType?: string | null;
1418
- filesize?: number | null;
1419
- width?: number | null;
1420
- height?: number | null;
1421
- focalX?: number | null;
1422
- focalY?: number | null;
1423
- sizes?: {
1424
- '200'?: {
1425
- url?: string | null;
1426
- width?: number | null;
1427
- height?: number | null;
1428
- mimeType?: string | null;
1429
- filesize?: number | null;
1430
- filename?: string | null;
1431
- };
1432
- '400'?: {
1433
- url?: string | null;
1434
- width?: number | null;
1435
- height?: number | null;
1436
- mimeType?: string | null;
1437
- filesize?: number | null;
1438
- filename?: string | null;
1439
- };
1440
- '800'?: {
1441
- url?: string | null;
1442
- width?: number | null;
1443
- height?: number | null;
1444
- mimeType?: string | null;
1445
- filesize?: number | null;
1446
- filename?: string | null;
1447
- };
1448
- '1600'?: {
1449
- url?: string | null;
1450
- width?: number | null;
1451
- height?: number | null;
1452
- mimeType?: string | null;
1453
- filesize?: number | null;
1454
- filename?: string | null;
1455
- };
1456
- };
1457
- }
1458
- /**
1459
- * This interface was referenced by `Config`'s JSON-Schema
1460
- * via the `definition` "video-categories".
1461
- */
1462
- interface VideoCategory {
1463
- id: string;
1464
- _order?: string | null;
1465
- tenant?: (string | null) | Tenant;
1466
- title: string;
1467
- /**
1468
- * When enabled, the slug will auto-generate from the title field on save and autosave.
1469
- */
1470
- generateSlug?: boolean | null;
1471
- slug?: string | null;
1472
- description?: string | null;
1473
- image?: (string | null) | VideoImage;
1474
- parent?: (string | null) | VideoCategory;
1475
- color?: string | null;
1476
- updatedAt: string;
1477
- createdAt: string;
1478
- deletedAt?: string | null;
1479
- }
1480
- /**
1481
- * This interface was referenced by `Config`'s JSON-Schema
1482
- * via the `definition` "video-tags".
1483
- */
1484
- interface VideoTag {
1485
- id: string;
1486
- _order?: string | null;
1318
+ _order?: string | null;
1487
1319
  tenant?: (string | null) | Tenant;
1488
1320
  title: string;
1489
1321
  /**
@@ -1492,7 +1324,7 @@ interface VideoTag {
1492
1324
  generateSlug?: boolean | null;
1493
1325
  slug?: string | null;
1494
1326
  description?: string | null;
1495
- image?: (string | null) | VideoImage;
1327
+ image?: (string | null) | Image;
1496
1328
  parent?: (string | null) | VideoTag;
1497
1329
  color?: string | null;
1498
1330
  updatedAt: string;
@@ -1527,7 +1359,7 @@ interface ProductVariant {
1527
1359
  */
1528
1360
  weight?: number | null;
1529
1361
  isSoldOut?: boolean | null;
1530
- images?: (string | ProductImage)[] | null;
1362
+ images?: (string | Image)[] | null;
1531
1363
  dimensions?: {
1532
1364
  width?: number | null;
1533
1365
  height?: number | null;
@@ -1618,7 +1450,7 @@ interface ProductCategory {
1618
1450
  generateSlug?: boolean | null;
1619
1451
  slug?: string | null;
1620
1452
  description?: string | null;
1621
- image?: (string | null) | ProductImage;
1453
+ image?: (string | null) | Image;
1622
1454
  parent?: (string | null) | ProductCategory;
1623
1455
  color?: string | null;
1624
1456
  updatedAt: string;
@@ -1640,7 +1472,7 @@ interface ProductTag {
1640
1472
  generateSlug?: boolean | null;
1641
1473
  slug?: string | null;
1642
1474
  description?: string | null;
1643
- image?: (string | null) | ProductImage;
1475
+ image?: (string | null) | Image;
1644
1476
  parent?: (string | null) | ProductTag;
1645
1477
  color?: string | null;
1646
1478
  updatedAt: string;
@@ -1761,8 +1593,8 @@ interface ProductCollection {
1761
1593
  _order?: string | null;
1762
1594
  tenant?: (string | null) | Tenant;
1763
1595
  title: string;
1764
- thumbnail?: (string | null) | ProductImage;
1765
- images?: (string | ProductImage)[] | null;
1596
+ thumbnail?: (string | null) | Image;
1597
+ images?: (string | Image)[] | null;
1766
1598
  description?: {
1767
1599
  root: {
1768
1600
  type: string;
@@ -1808,7 +1640,7 @@ interface ProductCollection {
1808
1640
  /**
1809
1641
  * OG / Twitter Card image (1200×630 recommended)
1810
1642
  */
1811
- image?: (string | null) | ProductImage;
1643
+ image?: (string | null) | Image;
1812
1644
  };
1813
1645
  };
1814
1646
  /**
@@ -1979,7 +1811,7 @@ interface CustomerGroup {
1979
1811
  slug?: string | null;
1980
1812
  description?: string | null;
1981
1813
  color?: string | null;
1982
- image?: (string | null) | CustomerGroupImage;
1814
+ image?: (string | null) | Image;
1983
1815
  status?: ('active' | 'inactive') | null;
1984
1816
  metadata?: {
1985
1817
  [k: string]: unknown;
@@ -1993,70 +1825,6 @@ interface CustomerGroup {
1993
1825
  createdAt: string;
1994
1826
  deletedAt?: string | null;
1995
1827
  }
1996
- /**
1997
- * This interface was referenced by `Config`'s JSON-Schema
1998
- * via the `definition` "customer-group-images".
1999
- */
2000
- interface CustomerGroupImage {
2001
- id: string;
2002
- tenant?: (string | null) | Tenant;
2003
- alt?: string | null;
2004
- lqip?: string | null;
2005
- palette?: {
2006
- vibrant?: string | null;
2007
- muted?: string | null;
2008
- darkVibrant?: string | null;
2009
- darkMuted?: string | null;
2010
- lightVibrant?: string | null;
2011
- lightMuted?: string | null;
2012
- };
2013
- prefix?: string | null;
2014
- updatedAt: string;
2015
- createdAt: string;
2016
- url?: string | null;
2017
- thumbnailURL?: string | null;
2018
- filename?: string | null;
2019
- mimeType?: string | null;
2020
- filesize?: number | null;
2021
- width?: number | null;
2022
- height?: number | null;
2023
- focalX?: number | null;
2024
- focalY?: number | null;
2025
- sizes?: {
2026
- '200'?: {
2027
- url?: string | null;
2028
- width?: number | null;
2029
- height?: number | null;
2030
- mimeType?: string | null;
2031
- filesize?: number | null;
2032
- filename?: string | null;
2033
- };
2034
- '400'?: {
2035
- url?: string | null;
2036
- width?: number | null;
2037
- height?: number | null;
2038
- mimeType?: string | null;
2039
- filesize?: number | null;
2040
- filename?: string | null;
2041
- };
2042
- '800'?: {
2043
- url?: string | null;
2044
- width?: number | null;
2045
- height?: number | null;
2046
- mimeType?: string | null;
2047
- filesize?: number | null;
2048
- filename?: string | null;
2049
- };
2050
- '1600'?: {
2051
- url?: string | null;
2052
- width?: number | null;
2053
- height?: number | null;
2054
- mimeType?: string | null;
2055
- filesize?: number | null;
2056
- filename?: string | null;
2057
- };
2058
- };
2059
- }
2060
1828
  /**
2061
1829
  * This interface was referenced by `Config`'s JSON-Schema
2062
1830
  * via the `definition` "customer-addresses".
@@ -2495,11 +2263,11 @@ interface Post {
2495
2263
  /**
2496
2264
  * OG / Twitter Card image (1200×630 recommended)
2497
2265
  */
2498
- image?: (string | null) | PostImage;
2266
+ image?: (string | null) | Image;
2499
2267
  };
2500
2268
  };
2501
- thumbnail?: (string | null) | PostImage;
2502
- images?: (string | PostImage)[] | null;
2269
+ thumbnail?: (string | null) | Image;
2270
+ images?: (string | Image)[] | null;
2503
2271
  /**
2504
2272
  * When enabled, the slug will auto-generate from the title field on save and autosave.
2505
2273
  */
@@ -2533,7 +2301,7 @@ interface PostAuthor {
2533
2301
  */
2534
2302
  generateSlug?: boolean | null;
2535
2303
  slug?: string | null;
2536
- avatar?: (string | null) | PostImage;
2304
+ avatar?: (string | null) | Image;
2537
2305
  bio?: string | null;
2538
2306
  posts?: {
2539
2307
  docs?: (string | Post)[];
@@ -2549,70 +2317,6 @@ interface PostAuthor {
2549
2317
  createdAt: string;
2550
2318
  deletedAt?: string | null;
2551
2319
  }
2552
- /**
2553
- * This interface was referenced by `Config`'s JSON-Schema
2554
- * via the `definition` "post-images".
2555
- */
2556
- interface PostImage {
2557
- id: string;
2558
- tenant?: (string | null) | Tenant;
2559
- alt?: string | null;
2560
- lqip?: string | null;
2561
- palette?: {
2562
- vibrant?: string | null;
2563
- muted?: string | null;
2564
- darkVibrant?: string | null;
2565
- darkMuted?: string | null;
2566
- lightVibrant?: string | null;
2567
- lightMuted?: string | null;
2568
- };
2569
- prefix?: string | null;
2570
- updatedAt: string;
2571
- createdAt: string;
2572
- url?: string | null;
2573
- thumbnailURL?: string | null;
2574
- filename?: string | null;
2575
- mimeType?: string | null;
2576
- filesize?: number | null;
2577
- width?: number | null;
2578
- height?: number | null;
2579
- focalX?: number | null;
2580
- focalY?: number | null;
2581
- sizes?: {
2582
- '200'?: {
2583
- url?: string | null;
2584
- width?: number | null;
2585
- height?: number | null;
2586
- mimeType?: string | null;
2587
- filesize?: number | null;
2588
- filename?: string | null;
2589
- };
2590
- '400'?: {
2591
- url?: string | null;
2592
- width?: number | null;
2593
- height?: number | null;
2594
- mimeType?: string | null;
2595
- filesize?: number | null;
2596
- filename?: string | null;
2597
- };
2598
- '800'?: {
2599
- url?: string | null;
2600
- width?: number | null;
2601
- height?: number | null;
2602
- mimeType?: string | null;
2603
- filesize?: number | null;
2604
- filename?: string | null;
2605
- };
2606
- '1600'?: {
2607
- url?: string | null;
2608
- width?: number | null;
2609
- height?: number | null;
2610
- mimeType?: string | null;
2611
- filesize?: number | null;
2612
- filename?: string | null;
2613
- };
2614
- };
2615
- }
2616
2320
  /**
2617
2321
  * This interface was referenced by `Config`'s JSON-Schema
2618
2322
  * via the `definition` "post-categories".
@@ -2628,7 +2332,7 @@ interface PostCategory {
2628
2332
  generateSlug?: boolean | null;
2629
2333
  slug?: string | null;
2630
2334
  description?: string | null;
2631
- image?: (string | null) | PostImage;
2335
+ image?: (string | null) | Image;
2632
2336
  parent?: (string | null) | PostCategory;
2633
2337
  color?: string | null;
2634
2338
  updatedAt: string;
@@ -2650,7 +2354,7 @@ interface PostTag {
2650
2354
  generateSlug?: boolean | null;
2651
2355
  slug?: string | null;
2652
2356
  description?: string | null;
2653
- image?: (string | null) | PostImage;
2357
+ image?: (string | null) | Image;
2654
2358
  parent?: (string | null) | PostTag;
2655
2359
  color?: string | null;
2656
2360
  updatedAt: string;
@@ -2739,7 +2443,7 @@ interface Document {
2739
2443
  /**
2740
2444
  * OG / Twitter Card image (1200×630 recommended)
2741
2445
  */
2742
- image?: (string | null) | DocumentImage;
2446
+ image?: (string | null) | Image;
2743
2447
  };
2744
2448
  };
2745
2449
  /**
@@ -2749,8 +2453,8 @@ interface Document {
2749
2453
  slug?: string | null;
2750
2454
  type?: (string | null) | DocumentType;
2751
2455
  category?: (string | null) | DocumentCategory;
2752
- thumbnail?: (string | null) | DocumentImage;
2753
- images?: (string | DocumentImage)[] | null;
2456
+ thumbnail?: (string | null) | Image;
2457
+ images?: (string | Image)[] | null;
2754
2458
  publishedAt?: string | null;
2755
2459
  isFeatured?: boolean | null;
2756
2460
  metadata?: {
@@ -2763,85 +2467,21 @@ interface Document {
2763
2467
  }
2764
2468
  /**
2765
2469
  * This interface was referenced by `Config`'s JSON-Schema
2766
- * via the `definition` "document-images".
2470
+ * via the `definition` "document-types".
2767
2471
  */
2768
- interface DocumentImage {
2472
+ interface DocumentType {
2769
2473
  id: string;
2474
+ _order?: string | null;
2770
2475
  tenant?: (string | null) | Tenant;
2771
- alt?: string | null;
2772
- lqip?: string | null;
2773
- palette?: {
2774
- vibrant?: string | null;
2775
- muted?: string | null;
2776
- darkVibrant?: string | null;
2777
- darkMuted?: string | null;
2778
- lightVibrant?: string | null;
2779
- lightMuted?: string | null;
2780
- };
2781
- prefix?: string | null;
2782
- updatedAt: string;
2783
- createdAt: string;
2784
- url?: string | null;
2785
- thumbnailURL?: string | null;
2786
- filename?: string | null;
2787
- mimeType?: string | null;
2788
- filesize?: number | null;
2789
- width?: number | null;
2790
- height?: number | null;
2791
- focalX?: number | null;
2792
- focalY?: number | null;
2793
- sizes?: {
2794
- '200'?: {
2795
- url?: string | null;
2796
- width?: number | null;
2797
- height?: number | null;
2798
- mimeType?: string | null;
2799
- filesize?: number | null;
2800
- filename?: string | null;
2801
- };
2802
- '400'?: {
2803
- url?: string | null;
2804
- width?: number | null;
2805
- height?: number | null;
2806
- mimeType?: string | null;
2807
- filesize?: number | null;
2808
- filename?: string | null;
2809
- };
2810
- '800'?: {
2811
- url?: string | null;
2812
- width?: number | null;
2813
- height?: number | null;
2814
- mimeType?: string | null;
2815
- filesize?: number | null;
2816
- filename?: string | null;
2817
- };
2818
- '1600'?: {
2819
- url?: string | null;
2820
- width?: number | null;
2821
- height?: number | null;
2822
- mimeType?: string | null;
2823
- filesize?: number | null;
2824
- filename?: string | null;
2825
- };
2826
- };
2827
- }
2828
- /**
2829
- * This interface was referenced by `Config`'s JSON-Schema
2830
- * via the `definition` "document-types".
2831
- */
2832
- interface DocumentType {
2833
- id: string;
2834
- _order?: string | null;
2835
- tenant?: (string | null) | Tenant;
2836
- title: string;
2837
- /**
2838
- * When enabled, the slug will auto-generate from the title field on save and autosave.
2839
- */
2840
- generateSlug?: boolean | null;
2841
- slug?: string | null;
2842
- description?: string | null;
2843
- image?: (string | null) | DocumentImage;
2844
- color?: string | null;
2476
+ title: string;
2477
+ /**
2478
+ * When enabled, the slug will auto-generate from the title field on save and autosave.
2479
+ */
2480
+ generateSlug?: boolean | null;
2481
+ slug?: string | null;
2482
+ description?: string | null;
2483
+ image?: (string | null) | Image;
2484
+ color?: string | null;
2845
2485
  updatedAt: string;
2846
2486
  createdAt: string;
2847
2487
  deletedAt?: string | null;
@@ -2861,7 +2501,7 @@ interface DocumentCategory {
2861
2501
  generateSlug?: boolean | null;
2862
2502
  slug?: string | null;
2863
2503
  description?: string | null;
2864
- image?: (string | null) | DocumentImage;
2504
+ image?: (string | null) | Image;
2865
2505
  parent?: (string | null) | DocumentCategory;
2866
2506
  color?: string | null;
2867
2507
  updatedAt: string;
@@ -2915,10 +2555,10 @@ interface Playlist {
2915
2555
  /**
2916
2556
  * OG / Twitter Card image (1200×630 recommended)
2917
2557
  */
2918
- image?: (string | null) | PlaylistImage;
2558
+ image?: (string | null) | Image;
2919
2559
  };
2920
2560
  };
2921
- thumbnail?: (string | null) | PlaylistImage;
2561
+ thumbnail?: (string | null) | Image;
2922
2562
  /**
2923
2563
  * When enabled, the slug will auto-generate from the title field on save and autosave.
2924
2564
  */
@@ -2953,77 +2593,13 @@ interface PlaylistCategory {
2953
2593
  generateSlug?: boolean | null;
2954
2594
  slug?: string | null;
2955
2595
  description?: string | null;
2956
- image?: (string | null) | PlaylistImage;
2596
+ image?: (string | null) | Image;
2957
2597
  parent?: (string | null) | PlaylistCategory;
2958
2598
  color?: string | null;
2959
2599
  updatedAt: string;
2960
2600
  createdAt: string;
2961
2601
  deletedAt?: string | null;
2962
2602
  }
2963
- /**
2964
- * This interface was referenced by `Config`'s JSON-Schema
2965
- * via the `definition` "playlist-images".
2966
- */
2967
- interface PlaylistImage {
2968
- id: string;
2969
- tenant?: (string | null) | Tenant;
2970
- alt?: string | null;
2971
- lqip?: string | null;
2972
- palette?: {
2973
- vibrant?: string | null;
2974
- muted?: string | null;
2975
- darkVibrant?: string | null;
2976
- darkMuted?: string | null;
2977
- lightVibrant?: string | null;
2978
- lightMuted?: string | null;
2979
- };
2980
- prefix?: string | null;
2981
- updatedAt: string;
2982
- createdAt: string;
2983
- url?: string | null;
2984
- thumbnailURL?: string | null;
2985
- filename?: string | null;
2986
- mimeType?: string | null;
2987
- filesize?: number | null;
2988
- width?: number | null;
2989
- height?: number | null;
2990
- focalX?: number | null;
2991
- focalY?: number | null;
2992
- sizes?: {
2993
- '200'?: {
2994
- url?: string | null;
2995
- width?: number | null;
2996
- height?: number | null;
2997
- mimeType?: string | null;
2998
- filesize?: number | null;
2999
- filename?: string | null;
3000
- };
3001
- '400'?: {
3002
- url?: string | null;
3003
- width?: number | null;
3004
- height?: number | null;
3005
- mimeType?: string | null;
3006
- filesize?: number | null;
3007
- filename?: string | null;
3008
- };
3009
- '800'?: {
3010
- url?: string | null;
3011
- width?: number | null;
3012
- height?: number | null;
3013
- mimeType?: string | null;
3014
- filesize?: number | null;
3015
- filename?: string | null;
3016
- };
3017
- '1600'?: {
3018
- url?: string | null;
3019
- width?: number | null;
3020
- height?: number | null;
3021
- mimeType?: string | null;
3022
- filesize?: number | null;
3023
- filename?: string | null;
3024
- };
3025
- };
3026
- }
3027
2603
  /**
3028
2604
  * This interface was referenced by `Config`'s JSON-Schema
3029
2605
  * via the `definition` "playlist-tags".
@@ -3039,7 +2615,7 @@ interface PlaylistTag {
3039
2615
  generateSlug?: boolean | null;
3040
2616
  slug?: string | null;
3041
2617
  description?: string | null;
3042
- image?: (string | null) | PlaylistImage;
2618
+ image?: (string | null) | Image;
3043
2619
  parent?: (string | null) | PlaylistTag;
3044
2620
  color?: string | null;
3045
2621
  updatedAt: string;
@@ -3093,8 +2669,8 @@ interface Gallery {
3093
2669
  videos?: (string | Video)[] | null;
3094
2670
  categories?: (string | GalleryCategory)[] | null;
3095
2671
  tags?: (string | GalleryTag)[] | null;
3096
- images?: {
3097
- docs?: (string | GalleryImage)[];
2672
+ items?: {
2673
+ docs?: (string | GalleryItem)[];
3098
2674
  hasNextPage?: boolean;
3099
2675
  totalDocs?: number;
3100
2676
  };
@@ -3127,11 +2703,11 @@ interface Gallery {
3127
2703
  /**
3128
2704
  * OG / Twitter Card image (1200×630 recommended)
3129
2705
  */
3130
- image?: (string | null) | GalleryImage;
2706
+ image?: (string | null) | Image;
3131
2707
  };
3132
2708
  };
3133
2709
  status: 'draft' | 'published' | 'archived';
3134
- thumbnail?: (string | null) | GalleryImage;
2710
+ thumbnail?: (string | null) | Image;
3135
2711
  /**
3136
2712
  * When enabled, the slug will auto-generate from the title field on save and autosave.
3137
2713
  */
@@ -3161,7 +2737,7 @@ interface GalleryCategory {
3161
2737
  generateSlug?: boolean | null;
3162
2738
  slug?: string | null;
3163
2739
  description?: string | null;
3164
- image?: (string | null) | GalleryImage;
2740
+ image?: (string | null) | Image;
3165
2741
  parent?: (string | null) | GalleryCategory;
3166
2742
  color?: string | null;
3167
2743
  updatedAt: string;
@@ -3170,11 +2746,33 @@ interface GalleryCategory {
3170
2746
  }
3171
2747
  /**
3172
2748
  * This interface was referenced by `Config`'s JSON-Schema
3173
- * via the `definition` "gallery-images".
2749
+ * via the `definition` "gallery-tags".
2750
+ */
2751
+ interface GalleryTag {
2752
+ id: string;
2753
+ _order?: string | null;
2754
+ tenant?: (string | null) | Tenant;
2755
+ title: string;
2756
+ /**
2757
+ * When enabled, the slug will auto-generate from the title field on save and autosave.
2758
+ */
2759
+ generateSlug?: boolean | null;
2760
+ slug?: string | null;
2761
+ description?: string | null;
2762
+ image?: (string | null) | Image;
2763
+ parent?: (string | null) | GalleryTag;
2764
+ color?: string | null;
2765
+ updatedAt: string;
2766
+ createdAt: string;
2767
+ deletedAt?: string | null;
2768
+ }
2769
+ /**
2770
+ * This interface was referenced by `Config`'s JSON-Schema
2771
+ * via the `definition` "gallery-items".
3174
2772
  */
3175
- interface GalleryImage {
2773
+ interface GalleryItem {
3176
2774
  id: string;
3177
- '_gallery-images_images_order'?: string | null;
2775
+ '_gallery-items_items_order'?: string | null;
3178
2776
  tenant?: (string | null) | Tenant;
3179
2777
  gallery: string | Gallery;
3180
2778
  title?: string | null;
@@ -3193,81 +2791,7 @@ interface GalleryImage {
3193
2791
  };
3194
2792
  [k: string]: unknown;
3195
2793
  } | null;
3196
- alt?: string | null;
3197
- lqip?: string | null;
3198
- palette?: {
3199
- vibrant?: string | null;
3200
- muted?: string | null;
3201
- darkVibrant?: string | null;
3202
- darkMuted?: string | null;
3203
- lightVibrant?: string | null;
3204
- lightMuted?: string | null;
3205
- };
3206
- prefix?: string | null;
3207
- updatedAt: string;
3208
- createdAt: string;
3209
- url?: string | null;
3210
- thumbnailURL?: string | null;
3211
- filename?: string | null;
3212
- mimeType?: string | null;
3213
- filesize?: number | null;
3214
- width?: number | null;
3215
- height?: number | null;
3216
- focalX?: number | null;
3217
- focalY?: number | null;
3218
- sizes?: {
3219
- '200'?: {
3220
- url?: string | null;
3221
- width?: number | null;
3222
- height?: number | null;
3223
- mimeType?: string | null;
3224
- filesize?: number | null;
3225
- filename?: string | null;
3226
- };
3227
- '400'?: {
3228
- url?: string | null;
3229
- width?: number | null;
3230
- height?: number | null;
3231
- mimeType?: string | null;
3232
- filesize?: number | null;
3233
- filename?: string | null;
3234
- };
3235
- '800'?: {
3236
- url?: string | null;
3237
- width?: number | null;
3238
- height?: number | null;
3239
- mimeType?: string | null;
3240
- filesize?: number | null;
3241
- filename?: string | null;
3242
- };
3243
- '1600'?: {
3244
- url?: string | null;
3245
- width?: number | null;
3246
- height?: number | null;
3247
- mimeType?: string | null;
3248
- filesize?: number | null;
3249
- filename?: string | null;
3250
- };
3251
- };
3252
- }
3253
- /**
3254
- * This interface was referenced by `Config`'s JSON-Schema
3255
- * via the `definition` "gallery-tags".
3256
- */
3257
- interface GalleryTag {
3258
- id: string;
3259
- _order?: string | null;
3260
- tenant?: (string | null) | Tenant;
3261
- title: string;
3262
- /**
3263
- * When enabled, the slug will auto-generate from the title field on save and autosave.
3264
- */
3265
- generateSlug?: boolean | null;
3266
- slug?: string | null;
3267
- description?: string | null;
3268
- image?: (string | null) | GalleryImage;
3269
- parent?: (string | null) | GalleryTag;
3270
- color?: string | null;
2794
+ image?: (string | null) | Image;
3271
2795
  updatedAt: string;
3272
2796
  createdAt: string;
3273
2797
  deletedAt?: string | null;
@@ -3315,7 +2839,7 @@ interface Flow {
3315
2839
  /**
3316
2840
  * OG / Twitter Card image (1200×630 recommended)
3317
2841
  */
3318
- image?: (string | null) | FlowImage;
2842
+ image?: (string | null) | Image;
3319
2843
  };
3320
2844
  };
3321
2845
  /**
@@ -3326,7 +2850,7 @@ interface Flow {
3326
2850
  status?: ('draft' | 'published' | 'archived') | null;
3327
2851
  isFeatured?: boolean | null;
3328
2852
  publishedAt?: string | null;
3329
- thumbnail?: (string | null) | FlowImage;
2853
+ thumbnail?: (string | null) | Image;
3330
2854
  tags?: (string | FlowTag)[] | null;
3331
2855
  metadata?: {
3332
2856
  [k: string]: unknown;
@@ -3351,77 +2875,13 @@ interface FlowCategory {
3351
2875
  generateSlug?: boolean | null;
3352
2876
  slug?: string | null;
3353
2877
  description?: string | null;
3354
- image?: (string | null) | FlowImage;
2878
+ image?: (string | null) | Image;
3355
2879
  parent?: (string | null) | FlowCategory;
3356
2880
  color?: string | null;
3357
2881
  updatedAt: string;
3358
2882
  createdAt: string;
3359
2883
  deletedAt?: string | null;
3360
2884
  }
3361
- /**
3362
- * This interface was referenced by `Config`'s JSON-Schema
3363
- * via the `definition` "flow-images".
3364
- */
3365
- interface FlowImage {
3366
- id: string;
3367
- tenant?: (string | null) | Tenant;
3368
- alt?: string | null;
3369
- lqip?: string | null;
3370
- palette?: {
3371
- vibrant?: string | null;
3372
- muted?: string | null;
3373
- darkVibrant?: string | null;
3374
- darkMuted?: string | null;
3375
- lightVibrant?: string | null;
3376
- lightMuted?: string | null;
3377
- };
3378
- prefix?: string | null;
3379
- updatedAt: string;
3380
- createdAt: string;
3381
- url?: string | null;
3382
- thumbnailURL?: string | null;
3383
- filename?: string | null;
3384
- mimeType?: string | null;
3385
- filesize?: number | null;
3386
- width?: number | null;
3387
- height?: number | null;
3388
- focalX?: number | null;
3389
- focalY?: number | null;
3390
- sizes?: {
3391
- '200'?: {
3392
- url?: string | null;
3393
- width?: number | null;
3394
- height?: number | null;
3395
- mimeType?: string | null;
3396
- filesize?: number | null;
3397
- filename?: string | null;
3398
- };
3399
- '400'?: {
3400
- url?: string | null;
3401
- width?: number | null;
3402
- height?: number | null;
3403
- mimeType?: string | null;
3404
- filesize?: number | null;
3405
- filename?: string | null;
3406
- };
3407
- '800'?: {
3408
- url?: string | null;
3409
- width?: number | null;
3410
- height?: number | null;
3411
- mimeType?: string | null;
3412
- filesize?: number | null;
3413
- filename?: string | null;
3414
- };
3415
- '1600'?: {
3416
- url?: string | null;
3417
- width?: number | null;
3418
- height?: number | null;
3419
- mimeType?: string | null;
3420
- filesize?: number | null;
3421
- filename?: string | null;
3422
- };
3423
- };
3424
- }
3425
2885
  /**
3426
2886
  * This interface was referenced by `Config`'s JSON-Schema
3427
2887
  * via the `definition` "flow-tags".
@@ -3437,7 +2897,7 @@ interface FlowTag {
3437
2897
  generateSlug?: boolean | null;
3438
2898
  slug?: string | null;
3439
2899
  description?: string | null;
3440
- image?: (string | null) | FlowImage;
2900
+ image?: (string | null) | Image;
3441
2901
  parent?: (string | null) | FlowTag;
3442
2902
  color?: string | null;
3443
2903
  updatedAt: string;
@@ -3486,6 +2946,14 @@ interface FlowNodeType {
3486
2946
  required?: boolean | null;
3487
2947
  id?: string | null;
3488
2948
  }[] | null;
2949
+ /**
2950
+ * React component code. Props: { fields, label, color, nodeTypeSlug, width, height }
2951
+ */
2952
+ template?: string | null;
2953
+ /**
2954
+ * CSS for node. Selector: .flow-node--{slug}
2955
+ */
2956
+ customCSS?: string | null;
3489
2957
  updatedAt: string;
3490
2958
  createdAt: string;
3491
2959
  deletedAt?: string | null;
@@ -3743,8 +3211,11 @@ interface PayloadLockedDocument {
3743
3211
  relationTo: 'field-configs';
3744
3212
  value: string | FieldConfig;
3745
3213
  } | null) | ({
3746
- relationTo: 'media';
3747
- value: string | Media;
3214
+ relationTo: 'images';
3215
+ value: string | Image;
3216
+ } | null) | ({
3217
+ relationTo: 'system-media';
3218
+ value: string | SystemMedia;
3748
3219
  } | null) | ({
3749
3220
  relationTo: 'audiences';
3750
3221
  value: string | Audience;
@@ -3769,9 +3240,6 @@ interface PayloadLockedDocument {
3769
3240
  } | null) | ({
3770
3241
  relationTo: 'tenant-logos';
3771
3242
  value: string | TenantLogo;
3772
- } | null) | ({
3773
- relationTo: 'tenant-og-images';
3774
- value: string | TenantOgImage;
3775
3243
  } | null) | ({
3776
3244
  relationTo: 'products';
3777
3245
  value: string | Product;
@@ -3796,9 +3264,6 @@ interface PayloadLockedDocument {
3796
3264
  } | null) | ({
3797
3265
  relationTo: 'brand-logos';
3798
3266
  value: string | BrandLogo;
3799
- } | null) | ({
3800
- relationTo: 'product-images';
3801
- value: string | ProductImage;
3802
3267
  } | null) | ({
3803
3268
  relationTo: 'orders';
3804
3269
  value: string | Order;
@@ -3841,9 +3306,6 @@ interface PayloadLockedDocument {
3841
3306
  } | null) | ({
3842
3307
  relationTo: 'customer-groups';
3843
3308
  value: string | CustomerGroup;
3844
- } | null) | ({
3845
- relationTo: 'customer-group-images';
3846
- value: string | CustomerGroupImage;
3847
3309
  } | null) | ({
3848
3310
  relationTo: 'carts';
3849
3311
  value: string | Cart;
@@ -3865,9 +3327,6 @@ interface PayloadLockedDocument {
3865
3327
  } | null) | ({
3866
3328
  relationTo: 'post-tags';
3867
3329
  value: string | PostTag;
3868
- } | null) | ({
3869
- relationTo: 'post-images';
3870
- value: string | PostImage;
3871
3330
  } | null) | ({
3872
3331
  relationTo: 'documents';
3873
3332
  value: string | Document;
@@ -3877,9 +3336,6 @@ interface PayloadLockedDocument {
3877
3336
  } | null) | ({
3878
3337
  relationTo: 'document-types';
3879
3338
  value: string | DocumentType;
3880
- } | null) | ({
3881
- relationTo: 'document-images';
3882
- value: string | DocumentImage;
3883
3339
  } | null) | ({
3884
3340
  relationTo: 'playlists';
3885
3341
  value: string | Playlist;
@@ -3892,21 +3348,18 @@ interface PayloadLockedDocument {
3892
3348
  } | null) | ({
3893
3349
  relationTo: 'musics';
3894
3350
  value: string | Music;
3895
- } | null) | ({
3896
- relationTo: 'playlist-images';
3897
- value: string | PlaylistImage;
3898
3351
  } | null) | ({
3899
3352
  relationTo: 'galleries';
3900
3353
  value: string | Gallery;
3901
- } | null) | ({
3902
- relationTo: 'gallery-images';
3903
- value: string | GalleryImage;
3904
3354
  } | null) | ({
3905
3355
  relationTo: 'gallery-categories';
3906
3356
  value: string | GalleryCategory;
3907
3357
  } | null) | ({
3908
3358
  relationTo: 'gallery-tags';
3909
3359
  value: string | GalleryTag;
3360
+ } | null) | ({
3361
+ relationTo: 'gallery-items';
3362
+ value: string | GalleryItem;
3910
3363
  } | null) | ({
3911
3364
  relationTo: 'flows';
3912
3365
  value: string | Flow;
@@ -3919,9 +3372,6 @@ interface PayloadLockedDocument {
3919
3372
  } | null) | ({
3920
3373
  relationTo: 'flow-categories';
3921
3374
  value: string | FlowCategory;
3922
- } | null) | ({
3923
- relationTo: 'flow-images';
3924
- value: string | FlowImage;
3925
3375
  } | null) | ({
3926
3376
  relationTo: 'flow-tags';
3927
3377
  value: string | FlowTag;
@@ -3934,15 +3384,9 @@ interface PayloadLockedDocument {
3934
3384
  } | null) | ({
3935
3385
  relationTo: 'video-tags';
3936
3386
  value: string | VideoTag;
3937
- } | null) | ({
3938
- relationTo: 'video-images';
3939
- value: string | VideoImage;
3940
3387
  } | null) | ({
3941
3388
  relationTo: 'live-streams';
3942
3389
  value: string | LiveStream;
3943
- } | null) | ({
3944
- relationTo: 'live-stream-images';
3945
- value: string | LiveStreamImage;
3946
3390
  } | null) | ({
3947
3391
  relationTo: 'forms';
3948
3392
  value: string | Form;
@@ -4038,10 +3482,80 @@ interface FieldConfigsSelect<T extends boolean = true> {
4038
3482
  }
4039
3483
  /**
4040
3484
  * This interface was referenced by `Config`'s JSON-Schema
4041
- * via the `definition` "media_select".
3485
+ * via the `definition` "images_select".
4042
3486
  */
4043
- interface MediaSelect<T extends boolean = true> {
3487
+ interface ImagesSelect<T extends boolean = true> {
4044
3488
  tenant?: T;
3489
+ alt?: T;
3490
+ lqip?: T;
3491
+ palette?: T | {
3492
+ vibrant?: T;
3493
+ muted?: T;
3494
+ darkVibrant?: T;
3495
+ darkMuted?: T;
3496
+ lightVibrant?: T;
3497
+ lightMuted?: T;
3498
+ };
3499
+ prefix?: T;
3500
+ updatedAt?: T;
3501
+ createdAt?: T;
3502
+ url?: T;
3503
+ thumbnailURL?: T;
3504
+ filename?: T;
3505
+ mimeType?: T;
3506
+ filesize?: T;
3507
+ width?: T;
3508
+ height?: T;
3509
+ focalX?: T;
3510
+ focalY?: T;
3511
+ sizes?: T | {
3512
+ '200'?: T | {
3513
+ url?: T;
3514
+ width?: T;
3515
+ height?: T;
3516
+ mimeType?: T;
3517
+ filesize?: T;
3518
+ filename?: T;
3519
+ };
3520
+ '400'?: T | {
3521
+ url?: T;
3522
+ width?: T;
3523
+ height?: T;
3524
+ mimeType?: T;
3525
+ filesize?: T;
3526
+ filename?: T;
3527
+ };
3528
+ '800'?: T | {
3529
+ url?: T;
3530
+ width?: T;
3531
+ height?: T;
3532
+ mimeType?: T;
3533
+ filesize?: T;
3534
+ filename?: T;
3535
+ };
3536
+ '1200'?: T | {
3537
+ url?: T;
3538
+ width?: T;
3539
+ height?: T;
3540
+ mimeType?: T;
3541
+ filesize?: T;
3542
+ filename?: T;
3543
+ };
3544
+ '1600'?: T | {
3545
+ url?: T;
3546
+ width?: T;
3547
+ height?: T;
3548
+ mimeType?: T;
3549
+ filesize?: T;
3550
+ filename?: T;
3551
+ };
3552
+ };
3553
+ }
3554
+ /**
3555
+ * This interface was referenced by `Config`'s JSON-Schema
3556
+ * via the `definition` "system-media_select".
3557
+ */
3558
+ interface SystemMediaSelect<T extends boolean = true> {
4045
3559
  alt?: T;
4046
3560
  caption?: T;
4047
3561
  credit?: T;
@@ -4347,45 +3861,6 @@ interface TenantLogosSelect<T extends boolean = true> {
4347
3861
  };
4348
3862
  };
4349
3863
  }
4350
- /**
4351
- * This interface was referenced by `Config`'s JSON-Schema
4352
- * via the `definition` "tenant-og-images_select".
4353
- */
4354
- interface TenantOgImagesSelect<T extends boolean = true> {
4355
- tenant?: T;
4356
- alt?: T;
4357
- lqip?: T;
4358
- palette?: T | {
4359
- vibrant?: T;
4360
- muted?: T;
4361
- darkVibrant?: T;
4362
- darkMuted?: T;
4363
- lightVibrant?: T;
4364
- lightMuted?: T;
4365
- };
4366
- prefix?: T;
4367
- updatedAt?: T;
4368
- createdAt?: T;
4369
- url?: T;
4370
- thumbnailURL?: T;
4371
- filename?: T;
4372
- mimeType?: T;
4373
- filesize?: T;
4374
- width?: T;
4375
- height?: T;
4376
- focalX?: T;
4377
- focalY?: T;
4378
- sizes?: T | {
4379
- '1200'?: T | {
4380
- url?: T;
4381
- width?: T;
4382
- height?: T;
4383
- mimeType?: T;
4384
- filesize?: T;
4385
- filename?: T;
4386
- };
4387
- };
4388
- }
4389
3864
  /**
4390
3865
  * This interface was referenced by `Config`'s JSON-Schema
4391
3866
  * via the `definition` "products_select".
@@ -4678,69 +4153,6 @@ interface BrandLogosSelect<T extends boolean = true> {
4678
4153
  };
4679
4154
  };
4680
4155
  }
4681
- /**
4682
- * This interface was referenced by `Config`'s JSON-Schema
4683
- * via the `definition` "product-images_select".
4684
- */
4685
- interface ProductImagesSelect<T extends boolean = true> {
4686
- tenant?: T;
4687
- alt?: T;
4688
- lqip?: T;
4689
- palette?: T | {
4690
- vibrant?: T;
4691
- muted?: T;
4692
- darkVibrant?: T;
4693
- darkMuted?: T;
4694
- lightVibrant?: T;
4695
- lightMuted?: T;
4696
- };
4697
- prefix?: T;
4698
- updatedAt?: T;
4699
- createdAt?: T;
4700
- url?: T;
4701
- thumbnailURL?: T;
4702
- filename?: T;
4703
- mimeType?: T;
4704
- filesize?: T;
4705
- width?: T;
4706
- height?: T;
4707
- focalX?: T;
4708
- focalY?: T;
4709
- sizes?: T | {
4710
- '200'?: T | {
4711
- url?: T;
4712
- width?: T;
4713
- height?: T;
4714
- mimeType?: T;
4715
- filesize?: T;
4716
- filename?: T;
4717
- };
4718
- '400'?: T | {
4719
- url?: T;
4720
- width?: T;
4721
- height?: T;
4722
- mimeType?: T;
4723
- filesize?: T;
4724
- filename?: T;
4725
- };
4726
- '800'?: T | {
4727
- url?: T;
4728
- width?: T;
4729
- height?: T;
4730
- mimeType?: T;
4731
- filesize?: T;
4732
- filename?: T;
4733
- };
4734
- '1600'?: T | {
4735
- url?: T;
4736
- width?: T;
4737
- height?: T;
4738
- mimeType?: T;
4739
- filesize?: T;
4740
- filename?: T;
4741
- };
4742
- };
4743
- }
4744
4156
  /**
4745
4157
  * This interface was referenced by `Config`'s JSON-Schema
4746
4158
  * via the `definition` "orders_select".
@@ -5027,69 +4439,6 @@ interface CustomerGroupsSelect<T extends boolean = true> {
5027
4439
  createdAt?: T;
5028
4440
  deletedAt?: T;
5029
4441
  }
5030
- /**
5031
- * This interface was referenced by `Config`'s JSON-Schema
5032
- * via the `definition` "customer-group-images_select".
5033
- */
5034
- interface CustomerGroupImagesSelect<T extends boolean = true> {
5035
- tenant?: T;
5036
- alt?: T;
5037
- lqip?: T;
5038
- palette?: T | {
5039
- vibrant?: T;
5040
- muted?: T;
5041
- darkVibrant?: T;
5042
- darkMuted?: T;
5043
- lightVibrant?: T;
5044
- lightMuted?: T;
5045
- };
5046
- prefix?: T;
5047
- updatedAt?: T;
5048
- createdAt?: T;
5049
- url?: T;
5050
- thumbnailURL?: T;
5051
- filename?: T;
5052
- mimeType?: T;
5053
- filesize?: T;
5054
- width?: T;
5055
- height?: T;
5056
- focalX?: T;
5057
- focalY?: T;
5058
- sizes?: T | {
5059
- '200'?: T | {
5060
- url?: T;
5061
- width?: T;
5062
- height?: T;
5063
- mimeType?: T;
5064
- filesize?: T;
5065
- filename?: T;
5066
- };
5067
- '400'?: T | {
5068
- url?: T;
5069
- width?: T;
5070
- height?: T;
5071
- mimeType?: T;
5072
- filesize?: T;
5073
- filename?: T;
5074
- };
5075
- '800'?: T | {
5076
- url?: T;
5077
- width?: T;
5078
- height?: T;
5079
- mimeType?: T;
5080
- filesize?: T;
5081
- filename?: T;
5082
- };
5083
- '1600'?: T | {
5084
- url?: T;
5085
- width?: T;
5086
- height?: T;
5087
- mimeType?: T;
5088
- filesize?: T;
5089
- filename?: T;
5090
- };
5091
- };
5092
- }
5093
4442
  /**
5094
4443
  * This interface was referenced by `Config`'s JSON-Schema
5095
4444
  * via the `definition` "carts_select".
@@ -5266,73 +4615,10 @@ interface PostTagsSelect<T extends boolean = true> {
5266
4615
  }
5267
4616
  /**
5268
4617
  * This interface was referenced by `Config`'s JSON-Schema
5269
- * via the `definition` "post-images_select".
4618
+ * via the `definition` "documents_select".
5270
4619
  */
5271
- interface PostImagesSelect<T extends boolean = true> {
5272
- tenant?: T;
5273
- alt?: T;
5274
- lqip?: T;
5275
- palette?: T | {
5276
- vibrant?: T;
5277
- muted?: T;
5278
- darkVibrant?: T;
5279
- darkMuted?: T;
5280
- lightVibrant?: T;
5281
- lightMuted?: T;
5282
- };
5283
- prefix?: T;
5284
- updatedAt?: T;
5285
- createdAt?: T;
5286
- url?: T;
5287
- thumbnailURL?: T;
5288
- filename?: T;
5289
- mimeType?: T;
5290
- filesize?: T;
5291
- width?: T;
5292
- height?: T;
5293
- focalX?: T;
5294
- focalY?: T;
5295
- sizes?: T | {
5296
- '200'?: T | {
5297
- url?: T;
5298
- width?: T;
5299
- height?: T;
5300
- mimeType?: T;
5301
- filesize?: T;
5302
- filename?: T;
5303
- };
5304
- '400'?: T | {
5305
- url?: T;
5306
- width?: T;
5307
- height?: T;
5308
- mimeType?: T;
5309
- filesize?: T;
5310
- filename?: T;
5311
- };
5312
- '800'?: T | {
5313
- url?: T;
5314
- width?: T;
5315
- height?: T;
5316
- mimeType?: T;
5317
- filesize?: T;
5318
- filename?: T;
5319
- };
5320
- '1600'?: T | {
5321
- url?: T;
5322
- width?: T;
5323
- height?: T;
5324
- mimeType?: T;
5325
- filesize?: T;
5326
- filename?: T;
5327
- };
5328
- };
5329
- }
5330
- /**
5331
- * This interface was referenced by `Config`'s JSON-Schema
5332
- * via the `definition` "documents_select".
5333
- */
5334
- interface DocumentsSelect<T extends boolean = true> {
5335
- _order?: T;
4620
+ interface DocumentsSelect<T extends boolean = true> {
4621
+ _order?: T;
5336
4622
  tenant?: T;
5337
4623
  title?: T;
5338
4624
  description?: T;
@@ -5407,69 +4693,6 @@ interface DocumentTypesSelect<T extends boolean = true> {
5407
4693
  createdAt?: T;
5408
4694
  deletedAt?: T;
5409
4695
  }
5410
- /**
5411
- * This interface was referenced by `Config`'s JSON-Schema
5412
- * via the `definition` "document-images_select".
5413
- */
5414
- interface DocumentImagesSelect<T extends boolean = true> {
5415
- tenant?: T;
5416
- alt?: T;
5417
- lqip?: T;
5418
- palette?: T | {
5419
- vibrant?: T;
5420
- muted?: T;
5421
- darkVibrant?: T;
5422
- darkMuted?: T;
5423
- lightVibrant?: T;
5424
- lightMuted?: T;
5425
- };
5426
- prefix?: T;
5427
- updatedAt?: T;
5428
- createdAt?: T;
5429
- url?: T;
5430
- thumbnailURL?: T;
5431
- filename?: T;
5432
- mimeType?: T;
5433
- filesize?: T;
5434
- width?: T;
5435
- height?: T;
5436
- focalX?: T;
5437
- focalY?: T;
5438
- sizes?: T | {
5439
- '200'?: T | {
5440
- url?: T;
5441
- width?: T;
5442
- height?: T;
5443
- mimeType?: T;
5444
- filesize?: T;
5445
- filename?: T;
5446
- };
5447
- '400'?: T | {
5448
- url?: T;
5449
- width?: T;
5450
- height?: T;
5451
- mimeType?: T;
5452
- filesize?: T;
5453
- filename?: T;
5454
- };
5455
- '800'?: T | {
5456
- url?: T;
5457
- width?: T;
5458
- height?: T;
5459
- mimeType?: T;
5460
- filesize?: T;
5461
- filename?: T;
5462
- };
5463
- '1600'?: T | {
5464
- url?: T;
5465
- width?: T;
5466
- height?: T;
5467
- mimeType?: T;
5468
- filesize?: T;
5469
- filename?: T;
5470
- };
5471
- };
5472
- }
5473
4696
  /**
5474
4697
  * This interface was referenced by `Config`'s JSON-Schema
5475
4698
  * via the `definition` "playlists_select".
@@ -5564,69 +4787,6 @@ interface MusicsSelect<T extends boolean = true> {
5564
4787
  createdAt?: T;
5565
4788
  deletedAt?: T;
5566
4789
  }
5567
- /**
5568
- * This interface was referenced by `Config`'s JSON-Schema
5569
- * via the `definition` "playlist-images_select".
5570
- */
5571
- interface PlaylistImagesSelect<T extends boolean = true> {
5572
- tenant?: T;
5573
- alt?: T;
5574
- lqip?: T;
5575
- palette?: T | {
5576
- vibrant?: T;
5577
- muted?: T;
5578
- darkVibrant?: T;
5579
- darkMuted?: T;
5580
- lightVibrant?: T;
5581
- lightMuted?: T;
5582
- };
5583
- prefix?: T;
5584
- updatedAt?: T;
5585
- createdAt?: T;
5586
- url?: T;
5587
- thumbnailURL?: T;
5588
- filename?: T;
5589
- mimeType?: T;
5590
- filesize?: T;
5591
- width?: T;
5592
- height?: T;
5593
- focalX?: T;
5594
- focalY?: T;
5595
- sizes?: T | {
5596
- '200'?: T | {
5597
- url?: T;
5598
- width?: T;
5599
- height?: T;
5600
- mimeType?: T;
5601
- filesize?: T;
5602
- filename?: T;
5603
- };
5604
- '400'?: T | {
5605
- url?: T;
5606
- width?: T;
5607
- height?: T;
5608
- mimeType?: T;
5609
- filesize?: T;
5610
- filename?: T;
5611
- };
5612
- '800'?: T | {
5613
- url?: T;
5614
- width?: T;
5615
- height?: T;
5616
- mimeType?: T;
5617
- filesize?: T;
5618
- filename?: T;
5619
- };
5620
- '1600'?: T | {
5621
- url?: T;
5622
- width?: T;
5623
- height?: T;
5624
- mimeType?: T;
5625
- filesize?: T;
5626
- filename?: T;
5627
- };
5628
- };
5629
- }
5630
4790
  /**
5631
4791
  * This interface was referenced by `Config`'s JSON-Schema
5632
4792
  * via the `definition` "galleries_select".
@@ -5639,7 +4799,7 @@ interface GalleriesSelect<T extends boolean = true> {
5639
4799
  videos?: T;
5640
4800
  categories?: T;
5641
4801
  tags?: T;
5642
- images?: T;
4802
+ items?: T;
5643
4803
  seo?: T | {
5644
4804
  title?: T;
5645
4805
  description?: T;
@@ -5662,73 +4822,6 @@ interface GalleriesSelect<T extends boolean = true> {
5662
4822
  createdAt?: T;
5663
4823
  deletedAt?: T;
5664
4824
  }
5665
- /**
5666
- * This interface was referenced by `Config`'s JSON-Schema
5667
- * via the `definition` "gallery-images_select".
5668
- */
5669
- interface GalleryImagesSelect<T extends boolean = true> {
5670
- '_gallery-images_images_order'?: T;
5671
- tenant?: T;
5672
- gallery?: T;
5673
- title?: T;
5674
- content?: T;
5675
- alt?: T;
5676
- lqip?: T;
5677
- palette?: T | {
5678
- vibrant?: T;
5679
- muted?: T;
5680
- darkVibrant?: T;
5681
- darkMuted?: T;
5682
- lightVibrant?: T;
5683
- lightMuted?: T;
5684
- };
5685
- prefix?: T;
5686
- updatedAt?: T;
5687
- createdAt?: T;
5688
- url?: T;
5689
- thumbnailURL?: T;
5690
- filename?: T;
5691
- mimeType?: T;
5692
- filesize?: T;
5693
- width?: T;
5694
- height?: T;
5695
- focalX?: T;
5696
- focalY?: T;
5697
- sizes?: T | {
5698
- '200'?: T | {
5699
- url?: T;
5700
- width?: T;
5701
- height?: T;
5702
- mimeType?: T;
5703
- filesize?: T;
5704
- filename?: T;
5705
- };
5706
- '400'?: T | {
5707
- url?: T;
5708
- width?: T;
5709
- height?: T;
5710
- mimeType?: T;
5711
- filesize?: T;
5712
- filename?: T;
5713
- };
5714
- '800'?: T | {
5715
- url?: T;
5716
- width?: T;
5717
- height?: T;
5718
- mimeType?: T;
5719
- filesize?: T;
5720
- filename?: T;
5721
- };
5722
- '1600'?: T | {
5723
- url?: T;
5724
- width?: T;
5725
- height?: T;
5726
- mimeType?: T;
5727
- filesize?: T;
5728
- filename?: T;
5729
- };
5730
- };
5731
- }
5732
4825
  /**
5733
4826
  * This interface was referenced by `Config`'s JSON-Schema
5734
4827
  * via the `definition` "gallery-categories_select".
@@ -5765,6 +4858,21 @@ interface GalleryTagsSelect<T extends boolean = true> {
5765
4858
  createdAt?: T;
5766
4859
  deletedAt?: T;
5767
4860
  }
4861
+ /**
4862
+ * This interface was referenced by `Config`'s JSON-Schema
4863
+ * via the `definition` "gallery-items_select".
4864
+ */
4865
+ interface GalleryItemsSelect<T extends boolean = true> {
4866
+ '_gallery-items_items_order'?: T;
4867
+ tenant?: T;
4868
+ gallery?: T;
4869
+ title?: T;
4870
+ content?: T;
4871
+ image?: T;
4872
+ updatedAt?: T;
4873
+ createdAt?: T;
4874
+ deletedAt?: T;
4875
+ }
5768
4876
  /**
5769
4877
  * This interface was referenced by `Config`'s JSON-Schema
5770
4878
  * via the `definition` "flows_select".
@@ -5829,6 +4937,8 @@ interface FlowNodeTypesSelect<T extends boolean = true> {
5829
4937
  required?: T;
5830
4938
  id?: T;
5831
4939
  };
4940
+ template?: T;
4941
+ customCSS?: T;
5832
4942
  updatedAt?: T;
5833
4943
  createdAt?: T;
5834
4944
  deletedAt?: T;
@@ -5884,69 +4994,6 @@ interface FlowCategoriesSelect<T extends boolean = true> {
5884
4994
  createdAt?: T;
5885
4995
  deletedAt?: T;
5886
4996
  }
5887
- /**
5888
- * This interface was referenced by `Config`'s JSON-Schema
5889
- * via the `definition` "flow-images_select".
5890
- */
5891
- interface FlowImagesSelect<T extends boolean = true> {
5892
- tenant?: T;
5893
- alt?: T;
5894
- lqip?: T;
5895
- palette?: T | {
5896
- vibrant?: T;
5897
- muted?: T;
5898
- darkVibrant?: T;
5899
- darkMuted?: T;
5900
- lightVibrant?: T;
5901
- lightMuted?: T;
5902
- };
5903
- prefix?: T;
5904
- updatedAt?: T;
5905
- createdAt?: T;
5906
- url?: T;
5907
- thumbnailURL?: T;
5908
- filename?: T;
5909
- mimeType?: T;
5910
- filesize?: T;
5911
- width?: T;
5912
- height?: T;
5913
- focalX?: T;
5914
- focalY?: T;
5915
- sizes?: T | {
5916
- '200'?: T | {
5917
- url?: T;
5918
- width?: T;
5919
- height?: T;
5920
- mimeType?: T;
5921
- filesize?: T;
5922
- filename?: T;
5923
- };
5924
- '400'?: T | {
5925
- url?: T;
5926
- width?: T;
5927
- height?: T;
5928
- mimeType?: T;
5929
- filesize?: T;
5930
- filename?: T;
5931
- };
5932
- '800'?: T | {
5933
- url?: T;
5934
- width?: T;
5935
- height?: T;
5936
- mimeType?: T;
5937
- filesize?: T;
5938
- filename?: T;
5939
- };
5940
- '1600'?: T | {
5941
- url?: T;
5942
- width?: T;
5943
- height?: T;
5944
- mimeType?: T;
5945
- filesize?: T;
5946
- filename?: T;
5947
- };
5948
- };
5949
- }
5950
4997
  /**
5951
4998
  * This interface was referenced by `Config`'s JSON-Schema
5952
4999
  * via the `definition` "flow-tags_select".
@@ -6044,69 +5091,6 @@ interface VideoTagsSelect<T extends boolean = true> {
6044
5091
  createdAt?: T;
6045
5092
  deletedAt?: T;
6046
5093
  }
6047
- /**
6048
- * This interface was referenced by `Config`'s JSON-Schema
6049
- * via the `definition` "video-images_select".
6050
- */
6051
- interface VideoImagesSelect<T extends boolean = true> {
6052
- tenant?: T;
6053
- alt?: T;
6054
- lqip?: T;
6055
- palette?: T | {
6056
- vibrant?: T;
6057
- muted?: T;
6058
- darkVibrant?: T;
6059
- darkMuted?: T;
6060
- lightVibrant?: T;
6061
- lightMuted?: T;
6062
- };
6063
- prefix?: T;
6064
- updatedAt?: T;
6065
- createdAt?: T;
6066
- url?: T;
6067
- thumbnailURL?: T;
6068
- filename?: T;
6069
- mimeType?: T;
6070
- filesize?: T;
6071
- width?: T;
6072
- height?: T;
6073
- focalX?: T;
6074
- focalY?: T;
6075
- sizes?: T | {
6076
- '200'?: T | {
6077
- url?: T;
6078
- width?: T;
6079
- height?: T;
6080
- mimeType?: T;
6081
- filesize?: T;
6082
- filename?: T;
6083
- };
6084
- '400'?: T | {
6085
- url?: T;
6086
- width?: T;
6087
- height?: T;
6088
- mimeType?: T;
6089
- filesize?: T;
6090
- filename?: T;
6091
- };
6092
- '800'?: T | {
6093
- url?: T;
6094
- width?: T;
6095
- height?: T;
6096
- mimeType?: T;
6097
- filesize?: T;
6098
- filename?: T;
6099
- };
6100
- '1600'?: T | {
6101
- url?: T;
6102
- width?: T;
6103
- height?: T;
6104
- mimeType?: T;
6105
- filesize?: T;
6106
- filename?: T;
6107
- };
6108
- };
6109
- }
6110
5094
  /**
6111
5095
  * This interface was referenced by `Config`'s JSON-Schema
6112
5096
  * via the `definition` "live-streams_select".
@@ -6132,69 +5116,6 @@ interface LiveStreamsSelect<T extends boolean = true> {
6132
5116
  createdAt?: T;
6133
5117
  deletedAt?: T;
6134
5118
  }
6135
- /**
6136
- * This interface was referenced by `Config`'s JSON-Schema
6137
- * via the `definition` "live-stream-images_select".
6138
- */
6139
- interface LiveStreamImagesSelect<T extends boolean = true> {
6140
- tenant?: T;
6141
- alt?: T;
6142
- lqip?: T;
6143
- palette?: T | {
6144
- vibrant?: T;
6145
- muted?: T;
6146
- darkVibrant?: T;
6147
- darkMuted?: T;
6148
- lightVibrant?: T;
6149
- lightMuted?: T;
6150
- };
6151
- prefix?: T;
6152
- updatedAt?: T;
6153
- createdAt?: T;
6154
- url?: T;
6155
- thumbnailURL?: T;
6156
- filename?: T;
6157
- mimeType?: T;
6158
- filesize?: T;
6159
- width?: T;
6160
- height?: T;
6161
- focalX?: T;
6162
- focalY?: T;
6163
- sizes?: T | {
6164
- '200'?: T | {
6165
- url?: T;
6166
- width?: T;
6167
- height?: T;
6168
- mimeType?: T;
6169
- filesize?: T;
6170
- filename?: T;
6171
- };
6172
- '400'?: T | {
6173
- url?: T;
6174
- width?: T;
6175
- height?: T;
6176
- mimeType?: T;
6177
- filesize?: T;
6178
- filename?: T;
6179
- };
6180
- '800'?: T | {
6181
- url?: T;
6182
- width?: T;
6183
- height?: T;
6184
- mimeType?: T;
6185
- filesize?: T;
6186
- filename?: T;
6187
- };
6188
- '1600'?: T | {
6189
- url?: T;
6190
- width?: T;
6191
- height?: T;
6192
- mimeType?: T;
6193
- filesize?: T;
6194
- filename?: T;
6195
- };
6196
- };
6197
- }
6198
5119
  /**
6199
5120
  * This interface was referenced by `Config`'s JSON-Schema
6200
5121
  * via the `definition` "forms_select".
@@ -6388,4 +5309,4 @@ declare module 'payload' {
6388
5309
  }
6389
5310
  }
6390
5311
 
6391
- export type { Post as $, Audience as A, BrandLogo as B, Cart as C, Brand as D, Exchange as E, Form as F, ShippingPolicy as G, ProductCollection as H, IframeBlock as I, Customer as J, CustomerGroup as K, LiveStream as L, Media as M, CustomerGroupImage as N, Order as O, Product as P, CustomerAddress as Q, Return as R, SupportedTimezones as S, Transaction as T, UserAuthOperations as U, Video as V, FulfillmentItem as W, ReturnProduct as X, ExchangeProduct as Y, OrderStatusLog as Z, Discount as _, OrderProduct as a, CustomerGroupImagesSelect as a$, PostAuthor as a0, PostImage as a1, PostCategory as a2, PostTag as a3, Document as a4, DocumentImage as a5, DocumentType as a6, DocumentCategory as a7, Playlist as a8, PlaylistCategory as a9, SubscriptionsSelect as aA, BillingHistorySelect as aB, TenantLogosSelect as aC, TenantOgImagesSelect as aD, ProductsSelect as aE, ProductVariantsSelect as aF, ProductOptionsSelect as aG, ProductCategoriesSelect as aH, ProductTagsSelect as aI, ProductCollectionsSelect as aJ, BrandsSelect as aK, BrandLogosSelect as aL, ProductImagesSelect as aM, OrdersSelect as aN, OrderProductsSelect as aO, TransactionsSelect as aP, OrderStatusLogsSelect as aQ, FulfillmentsSelect as aR, FulfillmentItemsSelect as aS, ReturnsSelect as aT, ReturnProductsSelect as aU, ExchangesSelect as aV, ExchangeProductsSelect as aW, ShippingPoliciesSelect as aX, CustomersSelect as aY, CustomerAddressesSelect as aZ, CustomerGroupsSelect as a_, PlaylistImage as aa, PlaylistTag as ab, Music as ac, Gallery as ad, GalleryCategory as ae, GalleryImage as af, GalleryTag as ag, Flow as ah, FlowCategory as ai, FlowImage as aj, FlowTag as ak, FlowNodeType as al, FlowEdgeType as am, FormSubmission as an, PayloadKv as ao, PayloadLockedDocument as ap, PayloadPreference as aq, PayloadMigration as ar, UsersSelect as as, FieldConfigsSelect as at, MediaSelect as au, AudiencesSelect as av, EmailLogsSelect as aw, TenantsSelect as ax, TenantMetadataSelect as ay, ApiUsageSelect as az, Fulfillment as b, CartsSelect as b0, CartItemsSelect as b1, DiscountsSelect as b2, PostsSelect as b3, PostAuthorsSelect as b4, PostCategoriesSelect as b5, PostTagsSelect as b6, PostImagesSelect as b7, DocumentsSelect as b8, DocumentCategoriesSelect as b9, PayloadLockedDocumentsSelect as bA, PayloadPreferencesSelect as bB, PayloadMigrationsSelect as bC, CollectionsWidget as bD, Auth as bE, DocumentTypesSelect as ba, DocumentImagesSelect as bb, PlaylistsSelect as bc, PlaylistCategoriesSelect as bd, PlaylistTagsSelect as be, MusicsSelect as bf, PlaylistImagesSelect as bg, GalleriesSelect as bh, GalleryImagesSelect as bi, GalleryCategoriesSelect as bj, GalleryTagsSelect as bk, FlowsSelect as bl, FlowNodeTypesSelect as bm, FlowEdgeTypesSelect as bn, FlowCategoriesSelect as bo, FlowImagesSelect as bp, FlowTagsSelect as bq, VideosSelect as br, VideoCategoriesSelect as bs, VideoTagsSelect as bt, VideoImagesSelect as bu, LiveStreamsSelect as bv, LiveStreamImagesSelect as bw, FormsSelect as bx, FormSubmissionsSelect as by, PayloadKvSelect as bz, CartItem as c, Config as d, CustomerAuthOperations as e, PlayerBlock as f, CodeBlock as g, User as h, Tenant as i, FieldConfig as j, EmailLog as k, TenantMetadatum as l, TenantOgImage as m, ApiUsage as n, Subscription as o, BillingHistory as p, TenantLogo as q, ProductImage as r, LiveStreamImage as s, VideoImage as t, VideoCategory as u, VideoTag as v, ProductVariant as w, ProductOption as x, ProductCategory as y, ProductTag as z };
5312
+ export type { Document as $, Audience as A, BrandLogo as B, Cart as C, ProductCollection as D, Exchange as E, Form as F, Customer as G, CustomerGroup as H, IframeBlock as I, CustomerAddress as J, FulfillmentItem as K, LiveStream as L, ReturnProduct as M, ExchangeProduct as N, Order as O, Product as P, OrderStatusLog as Q, Return as R, SupportedTimezones as S, Transaction as T, UserAuthOperations as U, Video as V, Discount as W, Post as X, PostAuthor as Y, PostCategory as Z, PostTag as _, OrderProduct as a, DocumentTypesSelect as a$, DocumentType as a0, DocumentCategory as a1, Playlist as a2, PlaylistCategory as a3, PlaylistTag as a4, Music as a5, Gallery as a6, GalleryCategory as a7, GalleryTag as a8, GalleryItem as a9, ProductTagsSelect as aA, ProductCollectionsSelect as aB, BrandsSelect as aC, BrandLogosSelect as aD, OrdersSelect as aE, OrderProductsSelect as aF, TransactionsSelect as aG, OrderStatusLogsSelect as aH, FulfillmentsSelect as aI, FulfillmentItemsSelect as aJ, ReturnsSelect as aK, ReturnProductsSelect as aL, ExchangesSelect as aM, ExchangeProductsSelect as aN, ShippingPoliciesSelect as aO, CustomersSelect as aP, CustomerAddressesSelect as aQ, CustomerGroupsSelect as aR, CartsSelect as aS, CartItemsSelect as aT, DiscountsSelect as aU, PostsSelect as aV, PostAuthorsSelect as aW, PostCategoriesSelect as aX, PostTagsSelect as aY, DocumentsSelect as aZ, DocumentCategoriesSelect as a_, Flow as aa, FlowCategory as ab, FlowTag as ac, FlowNodeType as ad, FlowEdgeType as ae, FormSubmission as af, PayloadKv as ag, PayloadLockedDocument as ah, PayloadPreference as ai, PayloadMigration as aj, UsersSelect as ak, FieldConfigsSelect as al, ImagesSelect as am, SystemMediaSelect as an, AudiencesSelect as ao, EmailLogsSelect as ap, TenantsSelect as aq, TenantMetadataSelect as ar, ApiUsageSelect as as, SubscriptionsSelect as at, BillingHistorySelect as au, TenantLogosSelect as av, ProductsSelect as aw, ProductVariantsSelect as ax, ProductOptionsSelect as ay, ProductCategoriesSelect as az, Fulfillment as b, PlaylistsSelect as b0, PlaylistCategoriesSelect as b1, PlaylistTagsSelect as b2, MusicsSelect as b3, GalleriesSelect as b4, GalleryCategoriesSelect as b5, GalleryTagsSelect as b6, GalleryItemsSelect as b7, FlowsSelect as b8, FlowNodeTypesSelect as b9, FlowEdgeTypesSelect as ba, FlowCategoriesSelect as bb, FlowTagsSelect as bc, VideosSelect as bd, VideoCategoriesSelect as be, VideoTagsSelect as bf, LiveStreamsSelect as bg, FormsSelect as bh, FormSubmissionsSelect as bi, PayloadKvSelect as bj, PayloadLockedDocumentsSelect as bk, PayloadPreferencesSelect as bl, PayloadMigrationsSelect as bm, CollectionsWidget as bn, Auth as bo, CartItem as c, Config as d, CustomerAuthOperations as e, PlayerBlock as f, CodeBlock as g, User as h, Tenant as i, FieldConfig as j, Image as k, SystemMedia as l, EmailLog as m, TenantMetadatum as n, ApiUsage as o, Subscription as p, BillingHistory as q, TenantLogo as r, VideoCategory as s, VideoTag as t, ProductVariant as u, ProductOption as v, ProductCategory as w, ProductTag as x, Brand as y, ShippingPolicy as z };