@01.software/sdk 0.2.9-dev.260309.c56872d → 0.2.9-dev.260310.cf511cb

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.
@@ -22,6 +22,7 @@ interface Config {
22
22
  };
23
23
  collections: {
24
24
  users: User;
25
+ 'field-configs': FieldConfig;
25
26
  media: Media;
26
27
  audiences: Audience;
27
28
  'email-logs': EmailLog;
@@ -69,16 +70,22 @@ interface Config {
69
70
  'document-types': DocumentType;
70
71
  'document-images': DocumentImage;
71
72
  playlists: Playlist;
73
+ 'playlist-categories': PlaylistCategory;
72
74
  musics: Music;
73
75
  'playlist-images': PlaylistImage;
74
76
  galleries: Gallery;
75
77
  'gallery-images': GalleryImage;
76
78
  'gallery-categories': GalleryCategory;
79
+ 'gallery-tags': GalleryTag;
77
80
  flows: Flow;
78
81
  'flow-node-types': FlowNodeType;
79
82
  'flow-edge-types': FlowEdgeType;
80
83
  'flow-images': FlowImage;
84
+ 'flow-tags': FlowTag;
81
85
  videos: Video;
86
+ 'video-categories': VideoCategory;
87
+ 'video-tags': VideoTag;
88
+ 'video-images': VideoImage;
82
89
  'live-streams': LiveStream;
83
90
  'live-stream-images': LiveStreamImage;
84
91
  forms: Form;
@@ -135,6 +142,7 @@ interface Config {
135
142
  };
136
143
  collectionsSelect: {
137
144
  users: UsersSelect<false> | UsersSelect<true>;
145
+ 'field-configs': FieldConfigsSelect<false> | FieldConfigsSelect<true>;
138
146
  media: MediaSelect<false> | MediaSelect<true>;
139
147
  audiences: AudiencesSelect<false> | AudiencesSelect<true>;
140
148
  'email-logs': EmailLogsSelect<false> | EmailLogsSelect<true>;
@@ -182,16 +190,22 @@ interface Config {
182
190
  'document-types': DocumentTypesSelect<false> | DocumentTypesSelect<true>;
183
191
  'document-images': DocumentImagesSelect<false> | DocumentImagesSelect<true>;
184
192
  playlists: PlaylistsSelect<false> | PlaylistsSelect<true>;
193
+ 'playlist-categories': PlaylistCategoriesSelect<false> | PlaylistCategoriesSelect<true>;
185
194
  musics: MusicsSelect<false> | MusicsSelect<true>;
186
195
  'playlist-images': PlaylistImagesSelect<false> | PlaylistImagesSelect<true>;
187
196
  galleries: GalleriesSelect<false> | GalleriesSelect<true>;
188
197
  'gallery-images': GalleryImagesSelect<false> | GalleryImagesSelect<true>;
189
198
  'gallery-categories': GalleryCategoriesSelect<false> | GalleryCategoriesSelect<true>;
199
+ 'gallery-tags': GalleryTagsSelect<false> | GalleryTagsSelect<true>;
190
200
  flows: FlowsSelect<false> | FlowsSelect<true>;
191
201
  'flow-node-types': FlowNodeTypesSelect<false> | FlowNodeTypesSelect<true>;
192
202
  'flow-edge-types': FlowEdgeTypesSelect<false> | FlowEdgeTypesSelect<true>;
193
203
  'flow-images': FlowImagesSelect<false> | FlowImagesSelect<true>;
204
+ 'flow-tags': FlowTagsSelect<false> | FlowTagsSelect<true>;
194
205
  videos: VideosSelect<false> | VideosSelect<true>;
206
+ 'video-categories': VideoCategoriesSelect<false> | VideoCategoriesSelect<true>;
207
+ 'video-tags': VideoTagsSelect<false> | VideoTagsSelect<true>;
208
+ 'video-images': VideoImagesSelect<false> | VideoImagesSelect<true>;
195
209
  'live-streams': LiveStreamsSelect<false> | LiveStreamsSelect<true>;
196
210
  'live-stream-images': LiveStreamImagesSelect<false> | LiveStreamImagesSelect<true>;
197
211
  forms: FormsSelect<false> | FormsSelect<true>;
@@ -303,6 +317,9 @@ interface User {
303
317
  emailPreferences?: {
304
318
  usageAlerts?: boolean | null;
305
319
  };
320
+ fieldConfigs?: {
321
+ [k: string]: unknown;
322
+ } | unknown[] | string | number | boolean | null;
306
323
  updatedAt: string;
307
324
  createdAt: string;
308
325
  email: string;
@@ -370,6 +387,21 @@ interface Tenant {
370
387
  updatedAt: string;
371
388
  createdAt: string;
372
389
  }
390
+ /**
391
+ * This interface was referenced by `Config`'s JSON-Schema
392
+ * via the `definition` "field-configs".
393
+ */
394
+ interface FieldConfig {
395
+ id: string;
396
+ tenant?: (string | null) | Tenant;
397
+ collectionSlug: 'products' | 'product-variants' | 'product-options' | 'product-collections' | 'product-categories' | 'product-tags' | 'brands' | 'discounts' | 'shipping-policies' | 'orders' | 'customers' | 'customer-groups' | 'carts' | 'transactions' | 'returns' | 'exchanges' | 'post-authors' | 'documents' | 'posts' | 'post-categories' | 'post-tags' | 'playlists' | 'playlist-categories' | 'galleries' | 'gallery-categories' | 'gallery-tags' | 'document-categories' | 'document-types' | 'flows' | 'flow-tags' | 'flow-node-types' | 'flow-edge-types' | 'forms' | 'musics' | 'videos' | 'video-categories' | 'video-tags' | 'live-streams';
398
+ isHidden?: boolean | null;
399
+ hiddenFields?: {
400
+ [k: string]: unknown;
401
+ } | unknown[] | string | number | boolean | null;
402
+ updatedAt: string;
403
+ createdAt: string;
404
+ }
373
405
  /**
374
406
  * This interface was referenced by `Config`'s JSON-Schema
375
407
  * via the `definition` "media".
@@ -754,6 +786,10 @@ interface ApiUsage {
754
786
  * Weighted video minutes used (duration × quality multiplier)
755
787
  */
756
788
  videoMinutesUsed?: number | null;
789
+ /**
790
+ * Monthly viewer watch time from Mux Data
791
+ */
792
+ deliveryMinutesUsed?: number | null;
757
793
  updatedAt: string;
758
794
  createdAt: string;
759
795
  }
@@ -1027,6 +1063,69 @@ interface Product {
1027
1063
  };
1028
1064
  brand?: (string | null) | Brand;
1029
1065
  shippingPolicy?: (string | null) | ShippingPolicy;
1066
+ /**
1067
+ * Product weight (g)
1068
+ */
1069
+ weight?: number | null;
1070
+ dimensions?: {
1071
+ width?: number | null;
1072
+ height?: number | null;
1073
+ depth?: number | null;
1074
+ };
1075
+ /**
1076
+ * Digital product (no shipping required)
1077
+ */
1078
+ isDigital?: boolean | null;
1079
+ isFeatured?: boolean | null;
1080
+ publishedAt?: string | null;
1081
+ seo?: {
1082
+ /**
1083
+ * Search result title (falls back to document title)
1084
+ */
1085
+ title?: string | null;
1086
+ /**
1087
+ * Search result description
1088
+ */
1089
+ description?: string | null;
1090
+ /**
1091
+ * Block search engine indexing
1092
+ */
1093
+ noIndex?: boolean | null;
1094
+ /**
1095
+ * Canonical URL (prevents duplicate content)
1096
+ */
1097
+ canonical?: string | null;
1098
+ openGraph?: {
1099
+ /**
1100
+ * OG title (falls back to seo.title)
1101
+ */
1102
+ title?: string | null;
1103
+ /**
1104
+ * OG description (falls back to seo.description)
1105
+ */
1106
+ description?: string | null;
1107
+ /**
1108
+ * OG / Twitter Card image (1200×630 recommended)
1109
+ */
1110
+ image?: (string | null) | ProductImage;
1111
+ };
1112
+ };
1113
+ /**
1114
+ * External system ID (ERP, POS)
1115
+ */
1116
+ externalId?: string | null;
1117
+ /**
1118
+ * UPC/EAN barcode
1119
+ */
1120
+ barcode?: string | null;
1121
+ /**
1122
+ * Minimum order quantity
1123
+ */
1124
+ minOrderQuantity?: number | null;
1125
+ /**
1126
+ * Maximum order quantity
1127
+ */
1128
+ maxOrderQuantity?: number | null;
1030
1129
  metadata?: {
1031
1130
  [k: string]: unknown;
1032
1131
  } | unknown[] | string | number | boolean | null;
@@ -1127,6 +1226,20 @@ interface ProductVariant {
1127
1226
  weight?: number | null;
1128
1227
  isSoldOut?: boolean | null;
1129
1228
  images?: (string | ProductImage)[] | null;
1229
+ dimensions?: {
1230
+ width?: number | null;
1231
+ height?: number | null;
1232
+ depth?: number | null;
1233
+ };
1234
+ /**
1235
+ * External system ID
1236
+ */
1237
+ externalId?: string | null;
1238
+ status?: ('active' | 'inactive') | null;
1239
+ /**
1240
+ * Sort order
1241
+ */
1242
+ position?: number | null;
1130
1243
  metadata?: {
1131
1244
  [k: string]: unknown;
1132
1245
  } | unknown[] | string | number | boolean | null;
@@ -1165,6 +1278,22 @@ interface ProductOption {
1165
1278
  * Price adjustment (add/subtract from base price)
1166
1279
  */
1167
1280
  priceAdjustment?: number | null;
1281
+ /**
1282
+ * Option-specific barcode
1283
+ */
1284
+ barcode?: string | null;
1285
+ /**
1286
+ * Option-specific weight (g)
1287
+ */
1288
+ weight?: number | null;
1289
+ /**
1290
+ * Low stock alert threshold
1291
+ */
1292
+ lowStockThreshold?: number | null;
1293
+ /**
1294
+ * External system ID
1295
+ */
1296
+ externalId?: string | null;
1168
1297
  metadata?: {
1169
1298
  [k: string]: unknown;
1170
1299
  } | unknown[] | string | number | boolean | null;
@@ -1250,6 +1379,40 @@ interface ProductCollection {
1250
1379
  slug?: string | null;
1251
1380
  status?: ('draft' | 'published' | 'archived') | null;
1252
1381
  sortOrder?: ('manual' | 'alphabetical' | 'price-asc' | 'price-desc' | 'newest') | null;
1382
+ isFeatured?: boolean | null;
1383
+ publishedAt?: string | null;
1384
+ seo?: {
1385
+ /**
1386
+ * Search result title (falls back to document title)
1387
+ */
1388
+ title?: string | null;
1389
+ /**
1390
+ * Search result description
1391
+ */
1392
+ description?: string | null;
1393
+ /**
1394
+ * Block search engine indexing
1395
+ */
1396
+ noIndex?: boolean | null;
1397
+ /**
1398
+ * Canonical URL (prevents duplicate content)
1399
+ */
1400
+ canonical?: string | null;
1401
+ openGraph?: {
1402
+ /**
1403
+ * OG title (falls back to seo.title)
1404
+ */
1405
+ title?: string | null;
1406
+ /**
1407
+ * OG description (falls back to seo.description)
1408
+ */
1409
+ description?: string | null;
1410
+ /**
1411
+ * OG / Twitter Card image (1200×630 recommended)
1412
+ */
1413
+ image?: (string | null) | ProductImage;
1414
+ };
1415
+ };
1253
1416
  metadata?: {
1254
1417
  [k: string]: unknown;
1255
1418
  } | unknown[] | string | number | boolean | null;
@@ -1302,6 +1465,8 @@ interface Brand {
1302
1465
  * Brand official website URL
1303
1466
  */
1304
1467
  website?: string | null;
1468
+ isFeatured?: boolean | null;
1469
+ status?: ('draft' | 'published') | null;
1305
1470
  metadata?: {
1306
1471
  [k: string]: unknown;
1307
1472
  } | unknown[] | string | number | boolean | null;
@@ -1342,6 +1507,12 @@ interface ShippingPolicy {
1342
1507
  */
1343
1508
  generateSlug?: boolean | null;
1344
1509
  slug?: string | null;
1510
+ description?: string | null;
1511
+ /**
1512
+ * Estimated delivery days
1513
+ */
1514
+ estimatedDays?: number | null;
1515
+ status?: ('active' | 'inactive') | null;
1345
1516
  isDefault?: boolean | null;
1346
1517
  metadata?: {
1347
1518
  [k: string]: unknown;
@@ -1367,9 +1538,18 @@ interface Order {
1367
1538
  */
1368
1539
  refundedAmount?: number | null;
1369
1540
  /**
1370
- * Internal notes (not visible to customers)
1541
+ * Shipping fee at time of order
1542
+ */
1543
+ shippingFee?: number | null;
1544
+ source?: ('web' | 'app' | 'manual') | null;
1545
+ /**
1546
+ * Internal admin notes (not visible to customers)
1371
1547
  */
1372
- notes?: string | null;
1548
+ adminNotes?: string | null;
1549
+ /**
1550
+ * Notes left by customer at checkout
1551
+ */
1552
+ customerNotes?: string | null;
1373
1553
  customer?: (string | null) | Customer;
1374
1554
  /**
1375
1555
  * Customer info at the time of order
@@ -1439,6 +1619,8 @@ interface Customer {
1439
1619
  * Internal notes (not visible to customers)
1440
1620
  */
1441
1621
  note?: string | null;
1622
+ birthDate?: string | null;
1623
+ gender?: ('male' | 'female' | 'other' | 'prefer_not_to_say') | null;
1442
1624
  orders?: {
1443
1625
  docs?: (string | Order)[];
1444
1626
  hasNextPage?: boolean;
@@ -1467,6 +1649,7 @@ interface Customer {
1467
1649
  * Date marketing consent was given
1468
1650
  */
1469
1651
  consentedAt?: string | null;
1652
+ lastLoginAt?: string | null;
1470
1653
  metadata?: {
1471
1654
  [k: string]: unknown;
1472
1655
  } | unknown[] | string | number | boolean | null;
@@ -1491,6 +1674,7 @@ interface CustomerGroup {
1491
1674
  description?: string | null;
1492
1675
  color?: string | null;
1493
1676
  image?: (string | null) | CustomerGroupImage;
1677
+ status?: ('active' | 'inactive') | null;
1494
1678
  metadata?: {
1495
1679
  [k: string]: unknown;
1496
1680
  } | unknown[] | string | number | boolean | null;
@@ -1627,6 +1811,13 @@ interface Transaction {
1627
1811
  paymentMethod?: string | null;
1628
1812
  receiptUrl?: string | null;
1629
1813
  totalAmount?: number | null;
1814
+ /**
1815
+ * Payment gateway provider (e.g. toss, stripe)
1816
+ */
1817
+ pgProvider?: string | null;
1818
+ metadata?: {
1819
+ [k: string]: unknown;
1820
+ } | unknown[] | string | number | boolean | null;
1630
1821
  updatedAt: string;
1631
1822
  createdAt: string;
1632
1823
  }
@@ -1689,6 +1880,15 @@ interface Return {
1689
1880
  hasNextPage?: boolean;
1690
1881
  totalDocs?: number;
1691
1882
  };
1883
+ /**
1884
+ * Internal notes
1885
+ */
1886
+ adminNotes?: string | null;
1887
+ completedAt?: string | null;
1888
+ /**
1889
+ * Refund receipt URL
1890
+ */
1891
+ refundReceiptUrl?: string | null;
1692
1892
  refundAmount: number;
1693
1893
  updatedAt: string;
1694
1894
  createdAt: string;
@@ -1727,6 +1927,11 @@ interface Exchange {
1727
1927
  */
1728
1928
  reasonDetail?: string | null;
1729
1929
  shippingFee?: number | null;
1930
+ /**
1931
+ * Internal notes
1932
+ */
1933
+ adminNotes?: string | null;
1934
+ completedAt?: string | null;
1730
1935
  exchangeProducts?: {
1731
1936
  docs?: (string | ExchangeProduct)[];
1732
1937
  hasNextPage?: boolean;
@@ -1874,7 +2079,7 @@ interface Discount {
1874
2079
  /**
1875
2080
  * Discount rate (%) or fixed amount
1876
2081
  */
1877
- value: number;
2082
+ value?: number | null;
1878
2083
  id?: string | null;
1879
2084
  }[] | null;
1880
2085
  /**
@@ -1906,6 +2111,15 @@ interface Discount {
1906
2111
  * Usage limit per customer (empty = unlimited)
1907
2112
  */
1908
2113
  perCustomerLimit?: number | null;
2114
+ customerGroups?: (string | CustomerGroup)[] | null;
2115
+ /**
2116
+ * Auto-apply discount
2117
+ */
2118
+ isAutoApply?: boolean | null;
2119
+ /**
2120
+ * Discount priority (higher = first)
2121
+ */
2122
+ priority?: number | null;
1909
2123
  metadata?: {
1910
2124
  [k: string]: unknown;
1911
2125
  } | unknown[] | string | number | boolean | null;
@@ -1953,6 +2167,43 @@ interface Post {
1953
2167
  publishedAt?: string | null;
1954
2168
  categories?: (string | PostCategory)[] | null;
1955
2169
  tags?: (string | PostTag)[] | null;
2170
+ isFeatured?: boolean | null;
2171
+ /**
2172
+ * Read time (minutes)
2173
+ */
2174
+ readTime?: number | null;
2175
+ seo?: {
2176
+ /**
2177
+ * Search result title (falls back to document title)
2178
+ */
2179
+ title?: string | null;
2180
+ /**
2181
+ * Search result description
2182
+ */
2183
+ description?: string | null;
2184
+ /**
2185
+ * Block search engine indexing
2186
+ */
2187
+ noIndex?: boolean | null;
2188
+ /**
2189
+ * Canonical URL (prevents duplicate content)
2190
+ */
2191
+ canonical?: string | null;
2192
+ openGraph?: {
2193
+ /**
2194
+ * OG title (falls back to seo.title)
2195
+ */
2196
+ title?: string | null;
2197
+ /**
2198
+ * OG description (falls back to seo.description)
2199
+ */
2200
+ description?: string | null;
2201
+ /**
2202
+ * OG / Twitter Card image (1200×630 recommended)
2203
+ */
2204
+ image?: (string | null) | PostImage;
2205
+ };
2206
+ };
1956
2207
  metadata?: {
1957
2208
  [k: string]: unknown;
1958
2209
  } | unknown[] | string | number | boolean | null;
@@ -2046,6 +2297,8 @@ interface PostAuthor {
2046
2297
  hasNextPage?: boolean;
2047
2298
  totalDocs?: number;
2048
2299
  };
2300
+ email?: string | null;
2301
+ status?: ('active' | 'inactive') | null;
2049
2302
  metadata?: {
2050
2303
  [k: string]: unknown;
2051
2304
  } | unknown[] | string | number | boolean | null;
@@ -2142,7 +2395,7 @@ interface Document {
2142
2395
  /**
2143
2396
  * Document version (e.g. 1.0, 1.1, 2.0)
2144
2397
  */
2145
- version: string;
2398
+ version?: string | null;
2146
2399
  /**
2147
2400
  * Effective date
2148
2401
  */
@@ -2156,6 +2409,40 @@ interface Document {
2156
2409
  * Document that requires user agreement
2157
2410
  */
2158
2411
  isRequired?: boolean | null;
2412
+ thumbnail?: (string | null) | DocumentImage;
2413
+ images?: (string | DocumentImage)[] | null;
2414
+ seo?: {
2415
+ /**
2416
+ * Search result title (falls back to document title)
2417
+ */
2418
+ title?: string | null;
2419
+ /**
2420
+ * Search result description
2421
+ */
2422
+ description?: string | null;
2423
+ /**
2424
+ * Block search engine indexing
2425
+ */
2426
+ noIndex?: boolean | null;
2427
+ /**
2428
+ * Canonical URL (prevents duplicate content)
2429
+ */
2430
+ canonical?: string | null;
2431
+ openGraph?: {
2432
+ /**
2433
+ * OG title (falls back to seo.title)
2434
+ */
2435
+ title?: string | null;
2436
+ /**
2437
+ * OG description (falls back to seo.description)
2438
+ */
2439
+ description?: string | null;
2440
+ /**
2441
+ * OG / Twitter Card image (1200×630 recommended)
2442
+ */
2443
+ image?: (string | null) | DocumentImage;
2444
+ };
2445
+ };
2159
2446
  metadata?: {
2160
2447
  [k: string]: unknown;
2161
2448
  } | unknown[] | string | number | boolean | null;
@@ -2286,12 +2573,19 @@ interface Playlist {
2286
2573
  hasNextPage?: boolean;
2287
2574
  totalDocs?: number;
2288
2575
  };
2576
+ categories?: (string | PlaylistCategory)[] | null;
2289
2577
  image?: (string | null) | PlaylistImage;
2290
2578
  /**
2291
2579
  * When enabled, the slug will auto-generate from the title field on save and autosave.
2292
2580
  */
2293
2581
  generateSlug?: boolean | null;
2294
2582
  slug?: string | null;
2583
+ status?: ('draft' | 'published') | null;
2584
+ isFeatured?: boolean | null;
2585
+ /**
2586
+ * Total duration (seconds)
2587
+ */
2588
+ totalDuration?: number | null;
2295
2589
  metadata?: {
2296
2590
  [k: string]: unknown;
2297
2591
  } | unknown[] | string | number | boolean | null;
@@ -2322,6 +2616,9 @@ interface Music {
2322
2616
  * Duration in seconds (auto-filled from YouTube)
2323
2617
  */
2324
2618
  duration?: number | null;
2619
+ album?: string | null;
2620
+ genre?: string | null;
2621
+ releaseDate?: string | null;
2325
2622
  metadata?: {
2326
2623
  [k: string]: unknown;
2327
2624
  } | unknown[] | string | number | boolean | null;
@@ -2330,6 +2627,28 @@ interface Music {
2330
2627
  createdAt: string;
2331
2628
  deletedAt?: string | null;
2332
2629
  }
2630
+ /**
2631
+ * This interface was referenced by `Config`'s JSON-Schema
2632
+ * via the `definition` "playlist-categories".
2633
+ */
2634
+ interface PlaylistCategory {
2635
+ id: string;
2636
+ _order?: string | null;
2637
+ tenant?: (string | null) | Tenant;
2638
+ title: string;
2639
+ /**
2640
+ * When enabled, the slug will auto-generate from the title field on save and autosave.
2641
+ */
2642
+ generateSlug?: boolean | null;
2643
+ slug?: string | null;
2644
+ description?: string | null;
2645
+ image?: (string | null) | PlaylistImage;
2646
+ parent?: (string | null) | PlaylistCategory;
2647
+ color?: string | null;
2648
+ updatedAt: string;
2649
+ createdAt: string;
2650
+ deletedAt?: string | null;
2651
+ }
2333
2652
  /**
2334
2653
  * This interface was referenced by `Config`'s JSON-Schema
2335
2654
  * via the `definition` "playlist-images".
@@ -2410,6 +2729,7 @@ interface Gallery {
2410
2729
  totalDocs?: number;
2411
2730
  };
2412
2731
  categories?: (string | GalleryCategory)[] | null;
2732
+ tags?: (string | GalleryTag)[] | null;
2413
2733
  status: 'draft' | 'published';
2414
2734
  thumbnail?: (string | null) | GalleryImage;
2415
2735
  /**
@@ -2417,6 +2737,40 @@ interface Gallery {
2417
2737
  */
2418
2738
  generateSlug?: boolean | null;
2419
2739
  slug?: string | null;
2740
+ isFeatured?: boolean | null;
2741
+ publishedAt?: string | null;
2742
+ seo?: {
2743
+ /**
2744
+ * Search result title (falls back to document title)
2745
+ */
2746
+ title?: string | null;
2747
+ /**
2748
+ * Search result description
2749
+ */
2750
+ description?: string | null;
2751
+ /**
2752
+ * Block search engine indexing
2753
+ */
2754
+ noIndex?: boolean | null;
2755
+ /**
2756
+ * Canonical URL (prevents duplicate content)
2757
+ */
2758
+ canonical?: string | null;
2759
+ openGraph?: {
2760
+ /**
2761
+ * OG title (falls back to seo.title)
2762
+ */
2763
+ title?: string | null;
2764
+ /**
2765
+ * OG description (falls back to seo.description)
2766
+ */
2767
+ description?: string | null;
2768
+ /**
2769
+ * OG / Twitter Card image (1200×630 recommended)
2770
+ */
2771
+ image?: (string | null) | GalleryImage;
2772
+ };
2773
+ };
2420
2774
  metadata?: {
2421
2775
  [k: string]: unknown;
2422
2776
  } | unknown[] | string | number | boolean | null;
@@ -2528,6 +2882,28 @@ interface GalleryCategory {
2528
2882
  createdAt: string;
2529
2883
  deletedAt?: string | null;
2530
2884
  }
2885
+ /**
2886
+ * This interface was referenced by `Config`'s JSON-Schema
2887
+ * via the `definition` "gallery-tags".
2888
+ */
2889
+ interface GalleryTag {
2890
+ id: string;
2891
+ _order?: string | null;
2892
+ tenant?: (string | null) | Tenant;
2893
+ title: string;
2894
+ /**
2895
+ * When enabled, the slug will auto-generate from the title field on save and autosave.
2896
+ */
2897
+ generateSlug?: boolean | null;
2898
+ slug?: string | null;
2899
+ description?: string | null;
2900
+ image?: (string | null) | GalleryImage;
2901
+ parent?: (string | null) | GalleryTag;
2902
+ color?: string | null;
2903
+ updatedAt: string;
2904
+ createdAt: string;
2905
+ deletedAt?: string | null;
2906
+ }
2531
2907
  /**
2532
2908
  * This interface was referenced by `Config`'s JSON-Schema
2533
2909
  * via the `definition` "flows".
@@ -2546,6 +2922,9 @@ interface Flow {
2546
2922
  [k: string]: unknown;
2547
2923
  } | unknown[] | string | number | boolean | null;
2548
2924
  status?: ('draft' | 'published') | null;
2925
+ isFeatured?: boolean | null;
2926
+ thumbnail?: (string | null) | FlowImage;
2927
+ tags?: (string | FlowTag)[] | null;
2549
2928
  metadata?: {
2550
2929
  [k: string]: unknown;
2551
2930
  } | unknown[] | string | number | boolean | null;
@@ -2556,9 +2935,73 @@ interface Flow {
2556
2935
  }
2557
2936
  /**
2558
2937
  * This interface was referenced by `Config`'s JSON-Schema
2559
- * via the `definition` "flow-node-types".
2938
+ * via the `definition` "flow-images".
2560
2939
  */
2561
- interface FlowNodeType {
2940
+ interface FlowImage {
2941
+ id: string;
2942
+ tenant?: (string | null) | Tenant;
2943
+ alt?: string | null;
2944
+ lqip?: string | null;
2945
+ palette?: {
2946
+ vibrant?: string | null;
2947
+ muted?: string | null;
2948
+ darkVibrant?: string | null;
2949
+ darkMuted?: string | null;
2950
+ lightVibrant?: string | null;
2951
+ lightMuted?: string | null;
2952
+ };
2953
+ prefix?: string | null;
2954
+ updatedAt: string;
2955
+ createdAt: string;
2956
+ url?: string | null;
2957
+ thumbnailURL?: string | null;
2958
+ filename?: string | null;
2959
+ mimeType?: string | null;
2960
+ filesize?: number | null;
2961
+ width?: number | null;
2962
+ height?: number | null;
2963
+ focalX?: number | null;
2964
+ focalY?: number | null;
2965
+ sizes?: {
2966
+ '200'?: {
2967
+ url?: string | null;
2968
+ width?: number | null;
2969
+ height?: number | null;
2970
+ mimeType?: string | null;
2971
+ filesize?: number | null;
2972
+ filename?: string | null;
2973
+ };
2974
+ '400'?: {
2975
+ url?: string | null;
2976
+ width?: number | null;
2977
+ height?: number | null;
2978
+ mimeType?: string | null;
2979
+ filesize?: number | null;
2980
+ filename?: string | null;
2981
+ };
2982
+ '800'?: {
2983
+ url?: string | null;
2984
+ width?: number | null;
2985
+ height?: number | null;
2986
+ mimeType?: string | null;
2987
+ filesize?: number | null;
2988
+ filename?: string | null;
2989
+ };
2990
+ '1600'?: {
2991
+ url?: string | null;
2992
+ width?: number | null;
2993
+ height?: number | null;
2994
+ mimeType?: string | null;
2995
+ filesize?: number | null;
2996
+ filename?: string | null;
2997
+ };
2998
+ };
2999
+ }
3000
+ /**
3001
+ * This interface was referenced by `Config`'s JSON-Schema
3002
+ * via the `definition` "flow-tags".
3003
+ */
3004
+ interface FlowTag {
2562
3005
  id: string;
2563
3006
  _order?: string | null;
2564
3007
  tenant?: (string | null) | Tenant;
@@ -2568,11 +3011,33 @@ interface FlowNodeType {
2568
3011
  */
2569
3012
  generateSlug?: boolean | null;
2570
3013
  slug?: string | null;
3014
+ description?: string | null;
3015
+ image?: (string | null) | FlowImage;
3016
+ parent?: (string | null) | FlowTag;
2571
3017
  color?: string | null;
2572
- defaultSize?: {
2573
- width?: number | null;
2574
- height?: number | null;
2575
- };
3018
+ updatedAt: string;
3019
+ createdAt: string;
3020
+ deletedAt?: string | null;
3021
+ }
3022
+ /**
3023
+ * This interface was referenced by `Config`'s JSON-Schema
3024
+ * via the `definition` "flow-node-types".
3025
+ */
3026
+ interface FlowNodeType {
3027
+ id: string;
3028
+ _order?: string | null;
3029
+ tenant?: (string | null) | Tenant;
3030
+ title: string;
3031
+ /**
3032
+ * When enabled, the slug will auto-generate from the title field on save and autosave.
3033
+ */
3034
+ generateSlug?: boolean | null;
3035
+ slug?: string | null;
3036
+ color?: string | null;
3037
+ defaultSize?: {
3038
+ width?: number | null;
3039
+ height?: number | null;
3040
+ };
2576
3041
  /**
2577
3042
  * Display node with transparent background
2578
3043
  */
@@ -2618,6 +3083,8 @@ interface FlowEdgeType {
2618
3083
  strokeWidth?: number | null;
2619
3084
  animated?: boolean | null;
2620
3085
  lineStyle?: ('default' | 'step' | 'smoothstep' | 'bezier') | null;
3086
+ markerStart?: ('none' | 'arrow' | 'arrowclosed') | null;
3087
+ markerEnd?: ('none' | 'arrow' | 'arrowclosed') | null;
2621
3088
  /**
2622
3089
  * Define custom fields to display on edge
2623
3090
  */
@@ -2643,9 +3110,114 @@ interface FlowEdgeType {
2643
3110
  }
2644
3111
  /**
2645
3112
  * This interface was referenced by `Config`'s JSON-Schema
2646
- * via the `definition` "flow-images".
3113
+ * via the `definition` "videos".
2647
3114
  */
2648
- interface FlowImage {
3115
+ interface Video {
3116
+ id: string;
3117
+ tenant?: (string | null) | Tenant;
3118
+ title?: string | null;
3119
+ filename?: string | null;
3120
+ description?: string | null;
3121
+ sourceLiveStream?: (string | null) | LiveStream;
3122
+ status?: ('waiting' | 'preparing' | 'ready' | 'errored') | null;
3123
+ duration?: number | null;
3124
+ aspectRatio?: string | null;
3125
+ maxResolution?: string | null;
3126
+ videoQuality?: ('basic' | 'plus' | 'premium') | null;
3127
+ mp4Support?: ('none' | 'standard' | 'capped-1080p') | null;
3128
+ muxAssetId?: string | null;
3129
+ muxPlaybackId?: string | null;
3130
+ muxUploadId?: string | null;
3131
+ thumbnail?: (string | null) | VideoImage;
3132
+ /**
3133
+ * When enabled, the slug will auto-generate from the title field on save and autosave.
3134
+ */
3135
+ generateSlug?: boolean | null;
3136
+ slug?: string | null;
3137
+ publishedAt?: string | null;
3138
+ isFeatured?: boolean | null;
3139
+ categories?: (string | VideoCategory)[] | null;
3140
+ tags?: (string | VideoTag)[] | null;
3141
+ seo?: {
3142
+ /**
3143
+ * Search result title (falls back to document title)
3144
+ */
3145
+ title?: string | null;
3146
+ /**
3147
+ * Search result description
3148
+ */
3149
+ description?: string | null;
3150
+ /**
3151
+ * Block search engine indexing
3152
+ */
3153
+ noIndex?: boolean | null;
3154
+ /**
3155
+ * Canonical URL (prevents duplicate content)
3156
+ */
3157
+ canonical?: string | null;
3158
+ openGraph?: {
3159
+ /**
3160
+ * OG title (falls back to seo.title)
3161
+ */
3162
+ title?: string | null;
3163
+ /**
3164
+ * OG description (falls back to seo.description)
3165
+ */
3166
+ description?: string | null;
3167
+ /**
3168
+ * OG / Twitter Card image (1200×630 recommended)
3169
+ */
3170
+ image?: (string | null) | VideoImage;
3171
+ };
3172
+ };
3173
+ metadata?: {
3174
+ [k: string]: unknown;
3175
+ } | unknown[] | string | number | boolean | null;
3176
+ updatedAt: string;
3177
+ createdAt: string;
3178
+ deletedAt?: string | null;
3179
+ }
3180
+ /**
3181
+ * This interface was referenced by `Config`'s JSON-Schema
3182
+ * via the `definition` "live-streams".
3183
+ */
3184
+ interface LiveStream {
3185
+ id: string;
3186
+ tenant?: (string | null) | Tenant;
3187
+ title?: string | null;
3188
+ description?: string | null;
3189
+ /**
3190
+ * Scheduled start time
3191
+ */
3192
+ scheduledAt?: string | null;
3193
+ thumbnail?: (string | null) | LiveStreamImage;
3194
+ /**
3195
+ * When enabled, the slug will auto-generate from the title field on save and autosave.
3196
+ */
3197
+ generateSlug?: boolean | null;
3198
+ slug?: string | null;
3199
+ muxLiveStreamId?: string | null;
3200
+ muxPlaybackId?: string | null;
3201
+ streamKey?: string | null;
3202
+ status?: ('idle' | 'active' | 'disabled') | null;
3203
+ latencyMode?: ('standard' | 'reduced' | 'low') | null;
3204
+ /**
3205
+ * Reconnect window (seconds)
3206
+ */
3207
+ reconnectWindow?: number | null;
3208
+ activeAssetId?: string | null;
3209
+ recentAssetIds?: {
3210
+ [k: string]: unknown;
3211
+ } | unknown[] | string | number | boolean | null;
3212
+ updatedAt: string;
3213
+ createdAt: string;
3214
+ deletedAt?: string | null;
3215
+ }
3216
+ /**
3217
+ * This interface was referenced by `Config`'s JSON-Schema
3218
+ * via the `definition` "live-stream-images".
3219
+ */
3220
+ interface LiveStreamImage {
2649
3221
  id: string;
2650
3222
  tenant?: (string | null) | Tenant;
2651
3223
  alt?: string | null;
@@ -2707,62 +3279,9 @@ interface FlowImage {
2707
3279
  }
2708
3280
  /**
2709
3281
  * This interface was referenced by `Config`'s JSON-Schema
2710
- * via the `definition` "videos".
3282
+ * via the `definition` "video-images".
2711
3283
  */
2712
- interface Video {
2713
- id: string;
2714
- tenant?: (string | null) | Tenant;
2715
- title?: string | null;
2716
- filename?: string | null;
2717
- description?: string | null;
2718
- sourceLiveStream?: (string | null) | LiveStream;
2719
- status?: ('waiting' | 'preparing' | 'ready' | 'errored') | null;
2720
- duration?: number | null;
2721
- aspectRatio?: string | null;
2722
- maxResolution?: string | null;
2723
- videoQuality?: ('basic' | 'plus' | 'premium') | null;
2724
- mp4Support?: ('none' | 'standard' | 'capped-1080p') | null;
2725
- muxAssetId?: string | null;
2726
- muxPlaybackId?: string | null;
2727
- muxUploadId?: string | null;
2728
- metadata?: {
2729
- [k: string]: unknown;
2730
- } | unknown[] | string | number | boolean | null;
2731
- updatedAt: string;
2732
- createdAt: string;
2733
- deletedAt?: string | null;
2734
- }
2735
- /**
2736
- * This interface was referenced by `Config`'s JSON-Schema
2737
- * via the `definition` "live-streams".
2738
- */
2739
- interface LiveStream {
2740
- id: string;
2741
- tenant?: (string | null) | Tenant;
2742
- title?: string | null;
2743
- description?: string | null;
2744
- muxLiveStreamId?: string | null;
2745
- muxPlaybackId?: string | null;
2746
- streamKey?: string | null;
2747
- status?: ('idle' | 'active' | 'disabled') | null;
2748
- latencyMode?: ('standard' | 'reduced' | 'low') | null;
2749
- /**
2750
- * Reconnect window (seconds)
2751
- */
2752
- reconnectWindow?: number | null;
2753
- activeAssetId?: string | null;
2754
- recentAssetIds?: {
2755
- [k: string]: unknown;
2756
- } | unknown[] | string | number | boolean | null;
2757
- updatedAt: string;
2758
- createdAt: string;
2759
- deletedAt?: string | null;
2760
- }
2761
- /**
2762
- * This interface was referenced by `Config`'s JSON-Schema
2763
- * via the `definition` "live-stream-images".
2764
- */
2765
- interface LiveStreamImage {
3284
+ interface VideoImage {
2766
3285
  id: string;
2767
3286
  tenant?: (string | null) | Tenant;
2768
3287
  alt?: string | null;
@@ -2822,6 +3341,50 @@ interface LiveStreamImage {
2822
3341
  };
2823
3342
  };
2824
3343
  }
3344
+ /**
3345
+ * This interface was referenced by `Config`'s JSON-Schema
3346
+ * via the `definition` "video-categories".
3347
+ */
3348
+ interface VideoCategory {
3349
+ id: string;
3350
+ _order?: string | null;
3351
+ tenant?: (string | null) | Tenant;
3352
+ title: string;
3353
+ /**
3354
+ * When enabled, the slug will auto-generate from the title field on save and autosave.
3355
+ */
3356
+ generateSlug?: boolean | null;
3357
+ slug?: string | null;
3358
+ description?: string | null;
3359
+ image?: (string | null) | VideoImage;
3360
+ parent?: (string | null) | VideoCategory;
3361
+ color?: string | null;
3362
+ updatedAt: string;
3363
+ createdAt: string;
3364
+ deletedAt?: string | null;
3365
+ }
3366
+ /**
3367
+ * This interface was referenced by `Config`'s JSON-Schema
3368
+ * via the `definition` "video-tags".
3369
+ */
3370
+ interface VideoTag {
3371
+ id: string;
3372
+ _order?: string | null;
3373
+ tenant?: (string | null) | Tenant;
3374
+ title: string;
3375
+ /**
3376
+ * When enabled, the slug will auto-generate from the title field on save and autosave.
3377
+ */
3378
+ generateSlug?: boolean | null;
3379
+ slug?: string | null;
3380
+ description?: string | null;
3381
+ image?: (string | null) | VideoImage;
3382
+ parent?: (string | null) | VideoTag;
3383
+ color?: string | null;
3384
+ updatedAt: string;
3385
+ createdAt: string;
3386
+ deletedAt?: string | null;
3387
+ }
2825
3388
  /**
2826
3389
  * This interface was referenced by `Config`'s JSON-Schema
2827
3390
  * via the `definition` "forms".
@@ -3028,6 +3591,9 @@ interface PayloadLockedDocument {
3028
3591
  document?: ({
3029
3592
  relationTo: 'users';
3030
3593
  value: string | User;
3594
+ } | null) | ({
3595
+ relationTo: 'field-configs';
3596
+ value: string | FieldConfig;
3031
3597
  } | null) | ({
3032
3598
  relationTo: 'media';
3033
3599
  value: string | Media;
@@ -3169,6 +3735,9 @@ interface PayloadLockedDocument {
3169
3735
  } | null) | ({
3170
3736
  relationTo: 'playlists';
3171
3737
  value: string | Playlist;
3738
+ } | null) | ({
3739
+ relationTo: 'playlist-categories';
3740
+ value: string | PlaylistCategory;
3172
3741
  } | null) | ({
3173
3742
  relationTo: 'musics';
3174
3743
  value: string | Music;
@@ -3184,6 +3753,9 @@ interface PayloadLockedDocument {
3184
3753
  } | null) | ({
3185
3754
  relationTo: 'gallery-categories';
3186
3755
  value: string | GalleryCategory;
3756
+ } | null) | ({
3757
+ relationTo: 'gallery-tags';
3758
+ value: string | GalleryTag;
3187
3759
  } | null) | ({
3188
3760
  relationTo: 'flows';
3189
3761
  value: string | Flow;
@@ -3196,9 +3768,21 @@ interface PayloadLockedDocument {
3196
3768
  } | null) | ({
3197
3769
  relationTo: 'flow-images';
3198
3770
  value: string | FlowImage;
3771
+ } | null) | ({
3772
+ relationTo: 'flow-tags';
3773
+ value: string | FlowTag;
3199
3774
  } | null) | ({
3200
3775
  relationTo: 'videos';
3201
3776
  value: string | Video;
3777
+ } | null) | ({
3778
+ relationTo: 'video-categories';
3779
+ value: string | VideoCategory;
3780
+ } | null) | ({
3781
+ relationTo: 'video-tags';
3782
+ value: string | VideoTag;
3783
+ } | null) | ({
3784
+ relationTo: 'video-images';
3785
+ value: string | VideoImage;
3202
3786
  } | null) | ({
3203
3787
  relationTo: 'live-streams';
3204
3788
  value: string | LiveStream;
@@ -3268,6 +3852,7 @@ interface UsersSelect<T extends boolean = true> {
3268
3852
  emailPreferences?: T | {
3269
3853
  usageAlerts?: T;
3270
3854
  };
3855
+ fieldConfigs?: T;
3271
3856
  updatedAt?: T;
3272
3857
  createdAt?: T;
3273
3858
  email?: T;
@@ -3285,6 +3870,18 @@ interface UsersSelect<T extends boolean = true> {
3285
3870
  expiresAt?: T;
3286
3871
  };
3287
3872
  }
3873
+ /**
3874
+ * This interface was referenced by `Config`'s JSON-Schema
3875
+ * via the `definition` "field-configs_select".
3876
+ */
3877
+ interface FieldConfigsSelect<T extends boolean = true> {
3878
+ tenant?: T;
3879
+ collectionSlug?: T;
3880
+ isHidden?: T;
3881
+ hiddenFields?: T;
3882
+ updatedAt?: T;
3883
+ createdAt?: T;
3884
+ }
3288
3885
  /**
3289
3886
  * This interface was referenced by `Config`'s JSON-Schema
3290
3887
  * via the `definition` "media_select".
@@ -3439,6 +4036,7 @@ interface ApiUsageSelect<T extends boolean = true> {
3439
4036
  totalDocuments?: T;
3440
4037
  videoCount?: T;
3441
4038
  videoMinutesUsed?: T;
4039
+ deliveryMinutesUsed?: T;
3442
4040
  updatedAt?: T;
3443
4041
  createdAt?: T;
3444
4042
  }
@@ -3660,6 +4258,30 @@ interface ProductsSelect<T extends boolean = true> {
3660
4258
  collections?: T;
3661
4259
  brand?: T;
3662
4260
  shippingPolicy?: T;
4261
+ weight?: T;
4262
+ dimensions?: T | {
4263
+ width?: T;
4264
+ height?: T;
4265
+ depth?: T;
4266
+ };
4267
+ isDigital?: T;
4268
+ isFeatured?: T;
4269
+ publishedAt?: T;
4270
+ seo?: T | {
4271
+ title?: T;
4272
+ description?: T;
4273
+ noIndex?: T;
4274
+ canonical?: T;
4275
+ openGraph?: T | {
4276
+ title?: T;
4277
+ description?: T;
4278
+ image?: T;
4279
+ };
4280
+ };
4281
+ externalId?: T;
4282
+ barcode?: T;
4283
+ minOrderQuantity?: T;
4284
+ maxOrderQuantity?: T;
3663
4285
  metadata?: T;
3664
4286
  updatedAt?: T;
3665
4287
  createdAt?: T;
@@ -3681,6 +4303,14 @@ interface ProductVariantsSelect<T extends boolean = true> {
3681
4303
  weight?: T;
3682
4304
  isSoldOut?: T;
3683
4305
  images?: T;
4306
+ dimensions?: T | {
4307
+ width?: T;
4308
+ height?: T;
4309
+ depth?: T;
4310
+ };
4311
+ externalId?: T;
4312
+ status?: T;
4313
+ position?: T;
3684
4314
  metadata?: T;
3685
4315
  productOptions?: T;
3686
4316
  updatedAt?: T;
@@ -3703,6 +4333,10 @@ interface ProductOptionsSelect<T extends boolean = true> {
3703
4333
  stock?: T;
3704
4334
  reservedStock?: T;
3705
4335
  priceAdjustment?: T;
4336
+ barcode?: T;
4337
+ weight?: T;
4338
+ lowStockThreshold?: T;
4339
+ externalId?: T;
3706
4340
  metadata?: T;
3707
4341
  updatedAt?: T;
3708
4342
  createdAt?: T;
@@ -3760,6 +4394,19 @@ interface ProductCollectionsSelect<T extends boolean = true> {
3760
4394
  slug?: T;
3761
4395
  status?: T;
3762
4396
  sortOrder?: T;
4397
+ isFeatured?: T;
4398
+ publishedAt?: T;
4399
+ seo?: T | {
4400
+ title?: T;
4401
+ description?: T;
4402
+ noIndex?: T;
4403
+ canonical?: T;
4404
+ openGraph?: T | {
4405
+ title?: T;
4406
+ description?: T;
4407
+ image?: T;
4408
+ };
4409
+ };
3763
4410
  metadata?: T;
3764
4411
  updatedAt?: T;
3765
4412
  createdAt?: T;
@@ -3780,6 +4427,8 @@ interface BrandsSelect<T extends boolean = true> {
3780
4427
  logomark?: T;
3781
4428
  description?: T;
3782
4429
  website?: T;
4430
+ isFeatured?: T;
4431
+ status?: T;
3783
4432
  metadata?: T;
3784
4433
  updatedAt?: T;
3785
4434
  createdAt?: T;
@@ -3947,7 +4596,10 @@ interface OrdersSelect<T extends boolean = true> {
3947
4596
  discountCode?: T;
3948
4597
  discountAmount?: T;
3949
4598
  refundedAmount?: T;
3950
- notes?: T;
4599
+ shippingFee?: T;
4600
+ source?: T;
4601
+ adminNotes?: T;
4602
+ customerNotes?: T;
3951
4603
  customer?: T;
3952
4604
  customerSnapshot?: T | {
3953
4605
  name?: T;
@@ -4001,6 +4653,8 @@ interface TransactionsSelect<T extends boolean = true> {
4001
4653
  paymentMethod?: T;
4002
4654
  receiptUrl?: T;
4003
4655
  totalAmount?: T;
4656
+ pgProvider?: T;
4657
+ metadata?: T;
4004
4658
  updatedAt?: T;
4005
4659
  createdAt?: T;
4006
4660
  }
@@ -4059,6 +4713,9 @@ interface ReturnsSelect<T extends boolean = true> {
4059
4713
  reason?: T;
4060
4714
  reasonDetail?: T;
4061
4715
  returnProducts?: T;
4716
+ adminNotes?: T;
4717
+ completedAt?: T;
4718
+ refundReceiptUrl?: T;
4062
4719
  refundAmount?: T;
4063
4720
  updatedAt?: T;
4064
4721
  createdAt?: T;
@@ -4092,6 +4749,8 @@ interface ExchangesSelect<T extends boolean = true> {
4092
4749
  reason?: T;
4093
4750
  reasonDetail?: T;
4094
4751
  shippingFee?: T;
4752
+ adminNotes?: T;
4753
+ completedAt?: T;
4095
4754
  exchangeProducts?: T;
4096
4755
  updatedAt?: T;
4097
4756
  createdAt?: T;
@@ -4129,6 +4788,9 @@ interface ShippingPoliciesSelect<T extends boolean = true> {
4129
4788
  islandExtraFee?: T;
4130
4789
  generateSlug?: T;
4131
4790
  slug?: T;
4791
+ description?: T;
4792
+ estimatedDays?: T;
4793
+ status?: T;
4132
4794
  isDefault?: T;
4133
4795
  metadata?: T;
4134
4796
  updatedAt?: T;
@@ -4149,6 +4811,8 @@ interface CustomersSelect<T extends boolean = true> {
4149
4811
  groups?: T;
4150
4812
  socialId?: T;
4151
4813
  note?: T;
4814
+ birthDate?: T;
4815
+ gender?: T;
4152
4816
  orders?: T;
4153
4817
  addresses?: T;
4154
4818
  hashedPassword?: T;
@@ -4163,6 +4827,7 @@ interface CustomersSelect<T extends boolean = true> {
4163
4827
  isVerified?: T;
4164
4828
  marketingConsent?: T;
4165
4829
  consentedAt?: T;
4830
+ lastLoginAt?: T;
4166
4831
  metadata?: T;
4167
4832
  updatedAt?: T;
4168
4833
  createdAt?: T;
@@ -4198,6 +4863,7 @@ interface CustomerGroupsSelect<T extends boolean = true> {
4198
4863
  description?: T;
4199
4864
  color?: T;
4200
4865
  image?: T;
4866
+ status?: T;
4201
4867
  metadata?: T;
4202
4868
  customers?: T;
4203
4869
  updatedAt?: T;
@@ -4338,6 +5004,9 @@ interface DiscountsSelect<T extends boolean = true> {
4338
5004
  usageLimit?: T;
4339
5005
  usageCount?: T;
4340
5006
  perCustomerLimit?: T;
5007
+ customerGroups?: T;
5008
+ isAutoApply?: T;
5009
+ priority?: T;
4341
5010
  metadata?: T;
4342
5011
  updatedAt?: T;
4343
5012
  createdAt?: T;
@@ -4362,6 +5031,19 @@ interface PostsSelect<T extends boolean = true> {
4362
5031
  publishedAt?: T;
4363
5032
  categories?: T;
4364
5033
  tags?: T;
5034
+ isFeatured?: T;
5035
+ readTime?: T;
5036
+ seo?: T | {
5037
+ title?: T;
5038
+ description?: T;
5039
+ noIndex?: T;
5040
+ canonical?: T;
5041
+ openGraph?: T | {
5042
+ title?: T;
5043
+ description?: T;
5044
+ image?: T;
5045
+ };
5046
+ };
4365
5047
  metadata?: T;
4366
5048
  updatedAt?: T;
4367
5049
  createdAt?: T;
@@ -4381,6 +5063,8 @@ interface PostAuthorsSelect<T extends boolean = true> {
4381
5063
  avatar?: T;
4382
5064
  bio?: T;
4383
5065
  posts?: T;
5066
+ email?: T;
5067
+ status?: T;
4384
5068
  metadata?: T;
4385
5069
  updatedAt?: T;
4386
5070
  createdAt?: T;
@@ -4508,6 +5192,19 @@ interface DocumentsSelect<T extends boolean = true> {
4508
5192
  expiryDate?: T;
4509
5193
  category?: T;
4510
5194
  isRequired?: T;
5195
+ thumbnail?: T;
5196
+ images?: T;
5197
+ seo?: T | {
5198
+ title?: T;
5199
+ description?: T;
5200
+ noIndex?: T;
5201
+ canonical?: T;
5202
+ openGraph?: T | {
5203
+ title?: T;
5204
+ description?: T;
5205
+ image?: T;
5206
+ };
5207
+ };
4511
5208
  metadata?: T;
4512
5209
  updatedAt?: T;
4513
5210
  createdAt?: T;
@@ -4622,14 +5319,36 @@ interface PlaylistsSelect<T extends boolean = true> {
4622
5319
  title?: T;
4623
5320
  description?: T;
4624
5321
  musics?: T;
5322
+ categories?: T;
4625
5323
  image?: T;
4626
5324
  generateSlug?: T;
4627
5325
  slug?: T;
5326
+ status?: T;
5327
+ isFeatured?: T;
5328
+ totalDuration?: T;
4628
5329
  metadata?: T;
4629
5330
  updatedAt?: T;
4630
5331
  createdAt?: T;
4631
5332
  deletedAt?: T;
4632
5333
  }
5334
+ /**
5335
+ * This interface was referenced by `Config`'s JSON-Schema
5336
+ * via the `definition` "playlist-categories_select".
5337
+ */
5338
+ interface PlaylistCategoriesSelect<T extends boolean = true> {
5339
+ _order?: T;
5340
+ tenant?: T;
5341
+ title?: T;
5342
+ generateSlug?: T;
5343
+ slug?: T;
5344
+ description?: T;
5345
+ image?: T;
5346
+ parent?: T;
5347
+ color?: T;
5348
+ updatedAt?: T;
5349
+ createdAt?: T;
5350
+ deletedAt?: T;
5351
+ }
4633
5352
  /**
4634
5353
  * This interface was referenced by `Config`'s JSON-Schema
4635
5354
  * via the `definition` "musics_select".
@@ -4643,6 +5362,9 @@ interface MusicsSelect<T extends boolean = true> {
4643
5362
  title?: T;
4644
5363
  artist?: T;
4645
5364
  duration?: T;
5365
+ album?: T;
5366
+ genre?: T;
5367
+ releaseDate?: T;
4646
5368
  metadata?: T;
4647
5369
  isValid?: T;
4648
5370
  updatedAt?: T;
@@ -4723,10 +5445,24 @@ interface GalleriesSelect<T extends boolean = true> {
4723
5445
  description?: T;
4724
5446
  images?: T;
4725
5447
  categories?: T;
5448
+ tags?: T;
4726
5449
  status?: T;
4727
5450
  thumbnail?: T;
4728
5451
  generateSlug?: T;
4729
5452
  slug?: T;
5453
+ isFeatured?: T;
5454
+ publishedAt?: T;
5455
+ seo?: T | {
5456
+ title?: T;
5457
+ description?: T;
5458
+ noIndex?: T;
5459
+ canonical?: T;
5460
+ openGraph?: T | {
5461
+ title?: T;
5462
+ description?: T;
5463
+ image?: T;
5464
+ };
5465
+ };
4730
5466
  metadata?: T;
4731
5467
  updatedAt?: T;
4732
5468
  createdAt?: T;
@@ -4817,6 +5553,24 @@ interface GalleryCategoriesSelect<T extends boolean = true> {
4817
5553
  createdAt?: T;
4818
5554
  deletedAt?: T;
4819
5555
  }
5556
+ /**
5557
+ * This interface was referenced by `Config`'s JSON-Schema
5558
+ * via the `definition` "gallery-tags_select".
5559
+ */
5560
+ interface GalleryTagsSelect<T extends boolean = true> {
5561
+ _order?: T;
5562
+ tenant?: T;
5563
+ title?: T;
5564
+ generateSlug?: T;
5565
+ slug?: T;
5566
+ description?: T;
5567
+ image?: T;
5568
+ parent?: T;
5569
+ color?: T;
5570
+ updatedAt?: T;
5571
+ createdAt?: T;
5572
+ deletedAt?: T;
5573
+ }
4820
5574
  /**
4821
5575
  * This interface was referenced by `Config`'s JSON-Schema
4822
5576
  * via the `definition` "flows_select".
@@ -4829,6 +5583,9 @@ interface FlowsSelect<T extends boolean = true> {
4829
5583
  description?: T;
4830
5584
  canvas?: T;
4831
5585
  status?: T;
5586
+ isFeatured?: T;
5587
+ thumbnail?: T;
5588
+ tags?: T;
4832
5589
  metadata?: T;
4833
5590
  updatedAt?: T;
4834
5591
  createdAt?: T;
@@ -4882,6 +5639,8 @@ interface FlowEdgeTypesSelect<T extends boolean = true> {
4882
5639
  strokeWidth?: T;
4883
5640
  animated?: T;
4884
5641
  lineStyle?: T;
5642
+ markerStart?: T;
5643
+ markerEnd?: T;
4885
5644
  fields?: T | {
4886
5645
  name?: T;
4887
5646
  label?: T;
@@ -4962,6 +5721,24 @@ interface FlowImagesSelect<T extends boolean = true> {
4962
5721
  };
4963
5722
  };
4964
5723
  }
5724
+ /**
5725
+ * This interface was referenced by `Config`'s JSON-Schema
5726
+ * via the `definition` "flow-tags_select".
5727
+ */
5728
+ interface FlowTagsSelect<T extends boolean = true> {
5729
+ _order?: T;
5730
+ tenant?: T;
5731
+ title?: T;
5732
+ generateSlug?: T;
5733
+ slug?: T;
5734
+ description?: T;
5735
+ image?: T;
5736
+ parent?: T;
5737
+ color?: T;
5738
+ updatedAt?: T;
5739
+ createdAt?: T;
5740
+ deletedAt?: T;
5741
+ }
4965
5742
  /**
4966
5743
  * This interface was referenced by `Config`'s JSON-Schema
4967
5744
  * via the `definition` "videos_select".
@@ -4981,11 +5758,128 @@ interface VideosSelect<T extends boolean = true> {
4981
5758
  muxAssetId?: T;
4982
5759
  muxPlaybackId?: T;
4983
5760
  muxUploadId?: T;
5761
+ thumbnail?: T;
5762
+ generateSlug?: T;
5763
+ slug?: T;
5764
+ publishedAt?: T;
5765
+ isFeatured?: T;
5766
+ categories?: T;
5767
+ tags?: T;
5768
+ seo?: T | {
5769
+ title?: T;
5770
+ description?: T;
5771
+ noIndex?: T;
5772
+ canonical?: T;
5773
+ openGraph?: T | {
5774
+ title?: T;
5775
+ description?: T;
5776
+ image?: T;
5777
+ };
5778
+ };
4984
5779
  metadata?: T;
4985
5780
  updatedAt?: T;
4986
5781
  createdAt?: T;
4987
5782
  deletedAt?: T;
4988
5783
  }
5784
+ /**
5785
+ * This interface was referenced by `Config`'s JSON-Schema
5786
+ * via the `definition` "video-categories_select".
5787
+ */
5788
+ interface VideoCategoriesSelect<T extends boolean = true> {
5789
+ _order?: T;
5790
+ tenant?: T;
5791
+ title?: T;
5792
+ generateSlug?: T;
5793
+ slug?: T;
5794
+ description?: T;
5795
+ image?: T;
5796
+ parent?: T;
5797
+ color?: T;
5798
+ updatedAt?: T;
5799
+ createdAt?: T;
5800
+ deletedAt?: T;
5801
+ }
5802
+ /**
5803
+ * This interface was referenced by `Config`'s JSON-Schema
5804
+ * via the `definition` "video-tags_select".
5805
+ */
5806
+ interface VideoTagsSelect<T extends boolean = true> {
5807
+ _order?: T;
5808
+ tenant?: T;
5809
+ title?: T;
5810
+ generateSlug?: T;
5811
+ slug?: T;
5812
+ description?: T;
5813
+ image?: T;
5814
+ parent?: T;
5815
+ color?: T;
5816
+ updatedAt?: T;
5817
+ createdAt?: T;
5818
+ deletedAt?: T;
5819
+ }
5820
+ /**
5821
+ * This interface was referenced by `Config`'s JSON-Schema
5822
+ * via the `definition` "video-images_select".
5823
+ */
5824
+ interface VideoImagesSelect<T extends boolean = true> {
5825
+ tenant?: T;
5826
+ alt?: T;
5827
+ lqip?: T;
5828
+ palette?: T | {
5829
+ vibrant?: T;
5830
+ muted?: T;
5831
+ darkVibrant?: T;
5832
+ darkMuted?: T;
5833
+ lightVibrant?: T;
5834
+ lightMuted?: T;
5835
+ };
5836
+ prefix?: T;
5837
+ updatedAt?: T;
5838
+ createdAt?: T;
5839
+ url?: T;
5840
+ thumbnailURL?: T;
5841
+ filename?: T;
5842
+ mimeType?: T;
5843
+ filesize?: T;
5844
+ width?: T;
5845
+ height?: T;
5846
+ focalX?: T;
5847
+ focalY?: T;
5848
+ sizes?: T | {
5849
+ '200'?: T | {
5850
+ url?: T;
5851
+ width?: T;
5852
+ height?: T;
5853
+ mimeType?: T;
5854
+ filesize?: T;
5855
+ filename?: T;
5856
+ };
5857
+ '400'?: T | {
5858
+ url?: T;
5859
+ width?: T;
5860
+ height?: T;
5861
+ mimeType?: T;
5862
+ filesize?: T;
5863
+ filename?: T;
5864
+ };
5865
+ '800'?: T | {
5866
+ url?: T;
5867
+ width?: T;
5868
+ height?: T;
5869
+ mimeType?: T;
5870
+ filesize?: T;
5871
+ filename?: T;
5872
+ };
5873
+ '1600'?: T | {
5874
+ url?: T;
5875
+ width?: T;
5876
+ height?: T;
5877
+ mimeType?: T;
5878
+ filesize?: T;
5879
+ filename?: T;
5880
+ };
5881
+ };
5882
+ }
4989
5883
  /**
4990
5884
  * This interface was referenced by `Config`'s JSON-Schema
4991
5885
  * via the `definition` "live-streams_select".
@@ -4994,6 +5888,10 @@ interface LiveStreamsSelect<T extends boolean = true> {
4994
5888
  tenant?: T;
4995
5889
  title?: T;
4996
5890
  description?: T;
5891
+ scheduledAt?: T;
5892
+ thumbnail?: T;
5893
+ generateSlug?: T;
5894
+ slug?: T;
4997
5895
  muxLiveStreamId?: T;
4998
5896
  muxPlaybackId?: T;
4999
5897
  streamKey?: T;
@@ -5262,4 +6160,4 @@ declare module 'payload' {
5262
6160
  }
5263
6161
  }
5264
6162
 
5265
- export type { DocumentImage as $, Audience as A, BrandLogo as B, Cart as C, CustomerGroupImage as D, Exchange as E, Form as F, CustomerAddress as G, FulfillmentItem as H, IframeBlock as I, ReturnProduct as J, ExchangeProduct as K, OrderStatusLog as L, Media as M, Discount as N, Order as O, Product as P, Post as Q, Return as R, SupportedTimezones as S, Transaction as T, UserAuthOperations as U, PostImage as V, PostAuthor as W, PostCategory as X, PostTag as Y, Document as Z, DocumentType as _, OrderProduct as a, DocumentCategoriesSelect as a$, DocumentCategory as a0, Playlist as a1, Music as a2, PlaylistImage as a3, Gallery as a4, GalleryImage as a5, GalleryCategory as a6, Flow as a7, FlowNodeType as a8, FlowEdgeType as a9, BrandsSelect as aA, BrandLogosSelect as aB, ProductImagesSelect as aC, OrdersSelect as aD, OrderProductsSelect as aE, TransactionsSelect as aF, OrderStatusLogsSelect as aG, FulfillmentsSelect as aH, FulfillmentItemsSelect as aI, ReturnsSelect as aJ, ReturnProductsSelect as aK, ExchangesSelect as aL, ExchangeProductsSelect as aM, ShippingPoliciesSelect as aN, CustomersSelect as aO, CustomerAddressesSelect as aP, CustomerGroupsSelect as aQ, CustomerGroupImagesSelect as aR, CartsSelect as aS, CartItemsSelect as aT, DiscountsSelect as aU, PostsSelect as aV, PostAuthorsSelect as aW, PostCategoriesSelect as aX, PostTagsSelect as aY, PostImagesSelect as aZ, DocumentsSelect as a_, FlowImage as aa, Video as ab, LiveStream as ac, LiveStreamImage as ad, FormSubmission as ae, PayloadKv as af, PayloadLockedDocument as ag, PayloadPreference as ah, PayloadMigration as ai, UsersSelect as aj, MediaSelect as ak, AudiencesSelect as al, EmailLogsSelect as am, TenantsSelect as an, TenantMetadataSelect as ao, ApiUsageSelect as ap, SubscriptionsSelect as aq, BillingHistorySelect as ar, TenantLogosSelect as as, TenantOgImagesSelect as at, ProductsSelect as au, ProductVariantsSelect as av, ProductOptionsSelect as aw, ProductCategoriesSelect as ax, ProductTagsSelect as ay, ProductCollectionsSelect as az, Fulfillment as b, DocumentTypesSelect as b0, DocumentImagesSelect as b1, PlaylistsSelect as b2, MusicsSelect as b3, PlaylistImagesSelect as b4, GalleriesSelect as b5, GalleryImagesSelect as b6, GalleryCategoriesSelect as b7, FlowsSelect as b8, FlowNodeTypesSelect as b9, FlowEdgeTypesSelect as ba, FlowImagesSelect as bb, VideosSelect as bc, LiveStreamsSelect as bd, LiveStreamImagesSelect as be, FormsSelect as bf, FormSubmissionsSelect as bg, PayloadKvSelect as bh, PayloadLockedDocumentsSelect as bi, PayloadPreferencesSelect as bj, PayloadMigrationsSelect as bk, CollectionsWidget as bl, Auth as bm, CartItem as c, Config as d, CustomerAuthOperations as e, PlayerBlock as f, CodeBlock as g, User as h, Tenant as i, EmailLog as j, TenantMetadatum as k, TenantOgImage as l, ApiUsage as m, Subscription as n, BillingHistory as o, TenantLogo as p, ProductImage as q, ProductVariant as r, ProductOption as s, ProductCategory as t, ProductTag as u, ProductCollection as v, Brand as w, ShippingPolicy as x, Customer as y, CustomerGroup as z };
6163
+ export type { DocumentType as $, Audience as A, BrandLogo as B, Cart as C, CustomerGroup as D, Exchange as E, Form as F, CustomerGroupImage as G, CustomerAddress as H, IframeBlock as I, FulfillmentItem as J, ReturnProduct as K, ExchangeProduct as L, Media as M, OrderStatusLog as N, Order as O, Product as P, Discount as Q, Return as R, SupportedTimezones as S, Transaction as T, UserAuthOperations as U, Post as V, PostImage as W, PostAuthor as X, PostCategory as Y, PostTag as Z, Document as _, OrderProduct as a, CartItemsSelect as a$, DocumentImage as a0, DocumentCategory as a1, Playlist as a2, Music as a3, PlaylistCategory as a4, PlaylistImage as a5, Gallery as a6, GalleryImage as a7, GalleryCategory as a8, GalleryTag as a9, TenantLogosSelect as aA, TenantOgImagesSelect as aB, ProductsSelect as aC, ProductVariantsSelect as aD, ProductOptionsSelect as aE, ProductCategoriesSelect as aF, ProductTagsSelect as aG, ProductCollectionsSelect as aH, BrandsSelect as aI, BrandLogosSelect as aJ, ProductImagesSelect as aK, OrdersSelect as aL, OrderProductsSelect as aM, TransactionsSelect as aN, OrderStatusLogsSelect as aO, FulfillmentsSelect as aP, FulfillmentItemsSelect as aQ, ReturnsSelect as aR, ReturnProductsSelect as aS, ExchangesSelect as aT, ExchangeProductsSelect as aU, ShippingPoliciesSelect as aV, CustomersSelect as aW, CustomerAddressesSelect as aX, CustomerGroupsSelect as aY, CustomerGroupImagesSelect as aZ, CartsSelect as a_, Flow as aa, FlowImage as ab, FlowTag as ac, FlowNodeType as ad, FlowEdgeType as ae, Video as af, LiveStream as ag, LiveStreamImage as ah, VideoImage as ai, VideoCategory as aj, VideoTag as ak, FormSubmission as al, PayloadKv as am, PayloadLockedDocument as an, PayloadPreference as ao, PayloadMigration as ap, UsersSelect as aq, FieldConfigsSelect as ar, MediaSelect as as, AudiencesSelect as at, EmailLogsSelect as au, TenantsSelect as av, TenantMetadataSelect as aw, ApiUsageSelect as ax, SubscriptionsSelect as ay, BillingHistorySelect as az, Fulfillment as b, DiscountsSelect as b0, PostsSelect as b1, PostAuthorsSelect as b2, PostCategoriesSelect as b3, PostTagsSelect as b4, PostImagesSelect as b5, DocumentsSelect as b6, DocumentCategoriesSelect as b7, DocumentTypesSelect as b8, DocumentImagesSelect as b9, Auth as bA, PlaylistsSelect as ba, PlaylistCategoriesSelect as bb, MusicsSelect as bc, PlaylistImagesSelect as bd, GalleriesSelect as be, GalleryImagesSelect as bf, GalleryCategoriesSelect as bg, GalleryTagsSelect as bh, FlowsSelect as bi, FlowNodeTypesSelect as bj, FlowEdgeTypesSelect as bk, FlowImagesSelect as bl, FlowTagsSelect as bm, VideosSelect as bn, VideoCategoriesSelect as bo, VideoTagsSelect as bp, VideoImagesSelect as bq, LiveStreamsSelect as br, LiveStreamImagesSelect as bs, FormsSelect as bt, FormSubmissionsSelect as bu, PayloadKvSelect as bv, PayloadLockedDocumentsSelect as bw, PayloadPreferencesSelect as bx, PayloadMigrationsSelect as by, CollectionsWidget 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, ProductVariant as s, ProductOption as t, ProductCategory as u, ProductTag as v, ProductCollection as w, Brand as x, ShippingPolicy as y, Customer as z };