@01.software/sdk 0.5.5 → 0.5.6

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.
@@ -404,7 +404,7 @@ interface Tenant {
404
404
  interface FieldConfig {
405
405
  id: string;
406
406
  tenant?: (string | null) | Tenant;
407
- 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' | 'posts' | 'post-categories' | 'post-tags' | 'documents' | 'document-categories' | 'document-types' | 'playlists' | 'playlist-categories' | 'playlist-tags' | 'musics' | 'music-categories' | 'music-tags' | 'galleries' | 'gallery-categories' | 'gallery-tags' | 'flows' | 'flow-categories' | 'flow-tags' | 'flow-node-types' | 'flow-edge-types' | 'videos' | 'video-categories' | 'video-tags' | 'live-streams' | 'forms';
407
+ collectionSlug: 'products' | 'product-variants' | 'product-options' | 'product-collections' | 'product-categories' | 'product-tags' | 'brands' | 'discounts' | 'shipping-policies' | 'orders' | 'customers' | 'customer-groups' | 'carts' | 'transactions' | 'fulfillments' | 'returns' | 'exchanges' | 'post-authors' | 'posts' | 'post-categories' | 'post-tags' | 'documents' | 'document-categories' | 'document-types' | 'playlists' | 'playlist-categories' | 'playlist-tags' | 'musics' | 'music-categories' | 'music-tags' | 'galleries' | 'gallery-categories' | 'gallery-tags' | 'gallery-items' | 'flows' | 'flow-categories' | 'flow-tags' | 'flow-node-types' | 'flow-edge-types' | 'videos' | 'video-categories' | 'video-tags' | 'live-streams' | 'forms';
408
408
  isHidden?: boolean | null;
409
409
  hiddenFields?: {
410
410
  [k: string]: unknown;
@@ -1186,7 +1186,7 @@ interface Product {
1186
1186
  interface Video {
1187
1187
  id: string;
1188
1188
  tenant?: (string | null) | Tenant;
1189
- title?: string | null;
1189
+ title: string;
1190
1190
  filename?: string | null;
1191
1191
  description?: string | null;
1192
1192
  content?: {
@@ -1246,14 +1246,14 @@ interface Video {
1246
1246
  image?: (string | null) | Image;
1247
1247
  };
1248
1248
  };
1249
- thumbnail?: (string | null) | Image;
1250
1249
  /**
1251
1250
  * When enabled, the slug will auto-generate from the title field on save and autosave.
1252
1251
  */
1253
1252
  generateSlug?: boolean | null;
1254
1253
  slug?: string | null;
1255
- publishedAt?: string | null;
1254
+ thumbnail?: (string | null) | Image;
1256
1255
  isFeatured?: boolean | null;
1256
+ publishedAt?: string | null;
1257
1257
  categories?: (string | VideoCategory)[] | null;
1258
1258
  tags?: (string | VideoTag)[] | null;
1259
1259
  metadata?: {
@@ -1270,32 +1270,67 @@ interface Video {
1270
1270
  interface LiveStream {
1271
1271
  id: string;
1272
1272
  tenant?: (string | null) | Tenant;
1273
- title?: string | null;
1273
+ title: string;
1274
1274
  description?: string | null;
1275
- isFeatured?: boolean | null;
1276
1275
  /**
1277
1276
  * Scheduled start time
1278
1277
  */
1279
1278
  scheduledAt?: string | null;
1280
- thumbnail?: (string | null) | Image;
1281
- /**
1282
- * When enabled, the slug will auto-generate from the title field on save and autosave.
1283
- */
1284
- generateSlug?: boolean | null;
1285
- slug?: string | null;
1286
- muxLiveStreamId?: string | null;
1287
- muxPlaybackId?: string | null;
1288
- streamKey?: string | null;
1289
- status?: ('idle' | 'active' | 'disabled') | null;
1290
1279
  latencyMode?: ('standard' | 'reduced' | 'low') | null;
1291
1280
  /**
1292
1281
  * Reconnect window (seconds)
1293
1282
  */
1294
1283
  reconnectWindow?: number | null;
1284
+ status?: ('idle' | 'active' | 'disabled') | null;
1285
+ muxLiveStreamId?: string | null;
1286
+ muxPlaybackId?: string | null;
1287
+ streamKey?: string | null;
1295
1288
  activeAssetId?: string | null;
1296
1289
  recentAssetIds?: {
1297
1290
  [k: string]: unknown;
1298
1291
  } | unknown[] | string | number | boolean | null;
1292
+ seo?: {
1293
+ /**
1294
+ * Search result title (falls back to document title)
1295
+ */
1296
+ title?: string | null;
1297
+ /**
1298
+ * Search result description
1299
+ */
1300
+ description?: string | null;
1301
+ /**
1302
+ * Block search engine indexing
1303
+ */
1304
+ noIndex?: boolean | null;
1305
+ /**
1306
+ * Canonical URL (prevents duplicate content)
1307
+ */
1308
+ canonical?: string | null;
1309
+ openGraph?: {
1310
+ /**
1311
+ * OG title (falls back to seo.title)
1312
+ */
1313
+ title?: string | null;
1314
+ /**
1315
+ * OG description (falls back to seo.description)
1316
+ */
1317
+ description?: string | null;
1318
+ /**
1319
+ * OG / Twitter Card image (1200×630 recommended)
1320
+ */
1321
+ image?: (string | null) | Image;
1322
+ };
1323
+ };
1324
+ /**
1325
+ * When enabled, the slug will auto-generate from the title field on save and autosave.
1326
+ */
1327
+ generateSlug?: boolean | null;
1328
+ slug?: string | null;
1329
+ thumbnail?: (string | null) | Image;
1330
+ isFeatured?: boolean | null;
1331
+ metadata?: {
1332
+ [k: string]: unknown;
1333
+ } | unknown[] | string | number | boolean | null;
1299
1334
  updatedAt: string;
1300
1335
  createdAt: string;
1301
1336
  deletedAt?: string | null;
@@ -1361,6 +1396,10 @@ interface ProductVariant {
1361
1396
  tenant?: (string | null) | Tenant;
1362
1397
  product: string | Product;
1363
1398
  title: string;
1399
+ /**
1400
+ * Short summary for listing/cards
1401
+ */
1402
+ description?: string | null;
1364
1403
  /**
1365
1404
  * Variant-specific SKU
1366
1405
  */
@@ -1535,6 +1574,38 @@ interface Brand {
1535
1574
  * Brand official website URL
1536
1575
  */
1537
1576
  website?: string | null;
1577
+ seo?: {
1578
+ /**
1579
+ * Search result title (falls back to document title)
1580
+ */
1581
+ title?: string | null;
1582
+ /**
1583
+ * Search result description
1584
+ */
1585
+ description?: string | null;
1586
+ /**
1587
+ * Block search engine indexing
1588
+ */
1589
+ noIndex?: boolean | null;
1590
+ /**
1591
+ * Canonical URL (prevents duplicate content)
1592
+ */
1593
+ canonical?: string | null;
1594
+ openGraph?: {
1595
+ /**
1596
+ * OG title (falls back to seo.title)
1597
+ */
1598
+ title?: string | null;
1599
+ /**
1600
+ * OG description (falls back to seo.description)
1601
+ */
1602
+ description?: string | null;
1603
+ /**
1604
+ * OG / Twitter Card image (1200×630 recommended)
1605
+ */
1606
+ image?: (string | null) | BrandLogo;
1607
+ };
1608
+ };
1538
1609
  /**
1539
1610
  * When enabled, the slug will auto-generate from the title field on save and autosave.
1540
1611
  */
@@ -1542,6 +1613,7 @@ interface Brand {
1542
1613
  slug?: string | null;
1543
1614
  status?: ('draft' | 'published') | null;
1544
1615
  isFeatured?: boolean | null;
1616
+ publishedAt?: string | null;
1545
1617
  metadata?: {
1546
1618
  [k: string]: unknown;
1547
1619
  } | unknown[] | string | number | boolean | null;
@@ -1577,12 +1649,15 @@ interface ShippingPolicy {
1577
1649
  * Extra fee for remote islands
1578
1650
  */
1579
1651
  islandExtraFee?: number | null;
1652
+ /**
1653
+ * Short summary for listing/cards
1654
+ */
1655
+ description?: string | null;
1580
1656
  /**
1581
1657
  * When enabled, the slug will auto-generate from the title field on save and autosave.
1582
1658
  */
1583
1659
  generateSlug?: boolean | null;
1584
1660
  slug?: string | null;
1585
- description?: string | null;
1586
1661
  /**
1587
1662
  * Estimated delivery days
1588
1663
  */
@@ -1605,9 +1680,11 @@ interface ProductCollection {
1605
1680
  _order?: string | null;
1606
1681
  tenant?: (string | null) | Tenant;
1607
1682
  title: string;
1608
- thumbnail?: (string | null) | Image;
1609
- images?: (string | Image)[] | null;
1610
- description?: {
1683
+ /**
1684
+ * Short summary for listing/cards
1685
+ */
1686
+ description?: string | null;
1687
+ content?: {
1611
1688
  root: {
1612
1689
  type: string;
1613
1690
  children: {
@@ -1622,6 +1699,8 @@ interface ProductCollection {
1622
1699
  };
1623
1700
  [k: string]: unknown;
1624
1701
  } | null;
1702
+ thumbnail?: (string | null) | Image;
1703
+ images?: (string | Image)[] | null;
1625
1704
  products?: (string | Product)[] | null;
1626
1705
  seo?: {
1627
1706
  /**
@@ -1931,6 +2010,10 @@ interface Fulfillment {
1931
2010
  hasNextPage?: boolean;
1932
2011
  totalDocs?: number;
1933
2012
  };
2013
+ /**
2014
+ * Internal admin notes
2015
+ */
2016
+ adminNotes?: string | null;
1934
2017
  metadata?: {
1935
2018
  [k: string]: unknown;
1936
2019
  } | unknown[] | string | number | boolean | null;
@@ -1979,6 +2062,9 @@ interface Return {
1979
2062
  */
1980
2063
  refundReceiptUrl?: string | null;
1981
2064
  refundAmount: number;
2065
+ metadata?: {
2066
+ [k: string]: unknown;
2067
+ } | unknown[] | string | number | boolean | null;
1982
2068
  updatedAt: string;
1983
2069
  createdAt: string;
1984
2070
  }
@@ -2026,6 +2112,9 @@ interface Exchange {
2026
2112
  hasNextPage?: boolean;
2027
2113
  totalDocs?: number;
2028
2114
  };
2115
+ metadata?: {
2116
+ [k: string]: unknown;
2117
+ } | unknown[] | string | number | boolean | null;
2029
2118
  updatedAt: string;
2030
2119
  createdAt: string;
2031
2120
  }
@@ -2141,15 +2230,15 @@ interface Discount {
2141
2230
  _order?: string | null;
2142
2231
  tenant?: (string | null) | Tenant;
2143
2232
  type: 'percentage' | 'fixed_amount' | 'free_shipping' | 'tiered';
2144
- isActive?: boolean | null;
2145
- /**
2146
- * Unique discount code
2147
- */
2148
- code: string;
2149
2233
  /**
2150
2234
  * Internal name (e.g. New member 10% discount)
2151
2235
  */
2152
2236
  title: string;
2237
+ /**
2238
+ * Unique discount code
2239
+ */
2240
+ code: string;
2241
+ isActive?: boolean | null;
2153
2242
  /**
2154
2243
  * Internal description for admin reference
2155
2244
  */
@@ -2281,13 +2370,13 @@ interface Post {
2281
2370
  image?: (string | null) | Image;
2282
2371
  };
2283
2372
  };
2284
- thumbnail?: (string | null) | Image;
2285
- images?: (string | Image)[] | null;
2286
2373
  /**
2287
2374
  * When enabled, the slug will auto-generate from the title field on save and autosave.
2288
2375
  */
2289
2376
  generateSlug?: boolean | null;
2290
2377
  slug?: string | null;
2378
+ thumbnail?: (string | null) | Image;
2379
+ images?: (string | Image)[] | null;
2291
2380
  publishedAt?: string | null;
2292
2381
  isFeatured?: boolean | null;
2293
2382
  /**
@@ -2318,12 +2407,12 @@ interface PostAuthor {
2318
2407
  slug?: string | null;
2319
2408
  avatar?: (string | null) | Image;
2320
2409
  bio?: string | null;
2410
+ email?: string | null;
2321
2411
  posts?: {
2322
2412
  docs?: (string | Post)[];
2323
2413
  hasNextPage?: boolean;
2324
2414
  totalDocs?: number;
2325
2415
  };
2326
- email?: string | null;
2327
2416
  status?: ('active' | 'inactive') | null;
2328
2417
  metadata?: {
2329
2418
  [k: string]: unknown;
@@ -2676,14 +2765,6 @@ interface Music {
2676
2765
  * Auto-filled from YouTube
2677
2766
  */
2678
2767
  title: string;
2679
- /**
2680
- * Auto-filled from YouTube channel
2681
- */
2682
- artist?: string | null;
2683
- /**
2684
- * Duration in seconds (auto-filled)
2685
- */
2686
- duration?: number | null;
2687
2768
  /**
2688
2769
  * Short summary for listing/cards
2689
2770
  */
@@ -2703,14 +2784,31 @@ interface Music {
2703
2784
  };
2704
2785
  [k: string]: unknown;
2705
2786
  } | null;
2706
- categories?: (string | MusicCategory)[] | null;
2707
- tags?: (string | MusicTag)[] | null;
2787
+ /**
2788
+ * Auto-filled from YouTube channel
2789
+ */
2790
+ artist?: string | null;
2708
2791
  album?: string | null;
2709
2792
  releaseDate?: string | null;
2793
+ categories?: (string | MusicCategory)[] | null;
2794
+ tags?: (string | MusicTag)[] | null;
2795
+ /**
2796
+ * When enabled, the slug will auto-generate from the title field on save and autosave.
2797
+ */
2798
+ generateSlug?: boolean | null;
2799
+ slug?: string | null;
2800
+ thumbnail?: (string | null) | Image;
2801
+ status?: ('active' | 'inactive') | null;
2802
+ isFeatured?: boolean | null;
2803
+ publishedAt?: string | null;
2804
+ /**
2805
+ * Duration in seconds (auto-filled)
2806
+ */
2807
+ duration?: number | null;
2808
+ isValid?: boolean | null;
2710
2809
  metadata?: {
2711
2810
  [k: string]: unknown;
2712
2811
  } | unknown[] | string | number | boolean | null;
2713
- isValid?: boolean | null;
2714
2812
  updatedAt: string;
2715
2813
  createdAt: string;
2716
2814
  deletedAt?: string | null;
@@ -2818,13 +2916,13 @@ interface Gallery {
2818
2916
  image?: (string | null) | Image;
2819
2917
  };
2820
2918
  };
2821
- status: 'draft' | 'published' | 'archived';
2822
- thumbnail?: (string | null) | Image;
2823
2919
  /**
2824
2920
  * When enabled, the slug will auto-generate from the title field on save and autosave.
2825
2921
  */
2826
2922
  generateSlug?: boolean | null;
2827
2923
  slug?: string | null;
2924
+ thumbnail?: (string | null) | Image;
2925
+ status: 'draft' | 'published' | 'archived';
2828
2926
  isFeatured?: boolean | null;
2829
2927
  publishedAt?: string | null;
2830
2928
  metadata?: {
@@ -2890,10 +2988,15 @@ interface GalleryTag {
2890
2988
  */
2891
2989
  interface GalleryItem {
2892
2990
  id: string;
2991
+ _order?: string | null;
2893
2992
  '_gallery-items_items_order'?: string | null;
2894
2993
  tenant?: (string | null) | Tenant;
2895
2994
  gallery: string | Gallery;
2896
2995
  title?: string | null;
2996
+ /**
2997
+ * Short summary for listing/cards
2998
+ */
2999
+ description?: string | null;
2897
3000
  content?: {
2898
3001
  root: {
2899
3002
  type: string;
@@ -2910,6 +3013,9 @@ interface GalleryItem {
2910
3013
  [k: string]: unknown;
2911
3014
  } | null;
2912
3015
  image?: (string | null) | Image;
3016
+ metadata?: {
3017
+ [k: string]: unknown;
3018
+ } | unknown[] | string | number | boolean | null;
2913
3019
  updatedAt: string;
2914
3020
  createdAt: string;
2915
3021
  deletedAt?: string | null;
@@ -2968,10 +3074,10 @@ interface Flow {
2968
3074
  */
2969
3075
  generateSlug?: boolean | null;
2970
3076
  slug?: string | null;
3077
+ thumbnail?: (string | null) | Image;
2971
3078
  status?: ('draft' | 'published' | 'archived') | null;
2972
3079
  isFeatured?: boolean | null;
2973
3080
  publishedAt?: string | null;
2974
- thumbnail?: (string | null) | Image;
2975
3081
  tags?: (string | FlowTag)[] | null;
2976
3082
  metadata?: {
2977
3083
  [k: string]: unknown;
@@ -3045,6 +3151,10 @@ interface FlowNodeType {
3045
3151
  */
3046
3152
  generateSlug?: boolean | null;
3047
3153
  slug?: string | null;
3154
+ /**
3155
+ * Short summary for listing/cards
3156
+ */
3157
+ description?: string | null;
3048
3158
  color?: string | null;
3049
3159
  defaultSize?: {
3050
3160
  width?: number | null;
@@ -3106,6 +3216,10 @@ interface FlowEdgeType {
3106
3216
  */
3107
3217
  generateSlug?: boolean | null;
3108
3218
  slug?: string | null;
3219
+ /**
3220
+ * Short summary for listing/cards
3221
+ */
3222
+ description?: string | null;
3109
3223
  color?: string | null;
3110
3224
  strokeWidth?: number | null;
3111
3225
  animated?: boolean | null;
@@ -4069,6 +4183,7 @@ interface ProductVariantsSelect<T extends boolean = true> {
4069
4183
  tenant?: T;
4070
4184
  product?: T;
4071
4185
  title?: T;
4186
+ description?: T;
4072
4187
  sku?: T;
4073
4188
  price?: T;
4074
4189
  barcode?: T;
@@ -4151,9 +4266,10 @@ interface ProductCollectionsSelect<T extends boolean = true> {
4151
4266
  _order?: T;
4152
4267
  tenant?: T;
4153
4268
  title?: T;
4269
+ description?: T;
4270
+ content?: T;
4154
4271
  thumbnail?: T;
4155
4272
  images?: T;
4156
- description?: T;
4157
4273
  products?: T;
4158
4274
  seo?: T | {
4159
4275
  title?: T;
@@ -4191,10 +4307,22 @@ interface BrandsSelect<T extends boolean = true> {
4191
4307
  logoDark?: T;
4192
4308
  logomark?: T;
4193
4309
  website?: T;
4310
+ seo?: T | {
4311
+ title?: T;
4312
+ description?: T;
4313
+ noIndex?: T;
4314
+ canonical?: T;
4315
+ openGraph?: T | {
4316
+ title?: T;
4317
+ description?: T;
4318
+ image?: T;
4319
+ };
4320
+ };
4194
4321
  generateSlug?: T;
4195
4322
  slug?: T;
4196
4323
  status?: T;
4197
4324
  isFeatured?: T;
4325
+ publishedAt?: T;
4198
4326
  metadata?: T;
4199
4327
  updatedAt?: T;
4200
4328
  createdAt?: T;
@@ -4389,6 +4517,7 @@ interface FulfillmentsSelect<T extends boolean = true> {
4389
4517
  shippedAt?: T;
4390
4518
  deliveredAt?: T;
4391
4519
  items?: T;
4520
+ adminNotes?: T;
4392
4521
  metadata?: T;
4393
4522
  updatedAt?: T;
4394
4523
  createdAt?: T;
@@ -4420,6 +4549,7 @@ interface ReturnsSelect<T extends boolean = true> {
4420
4549
  completedAt?: T;
4421
4550
  refundReceiptUrl?: T;
4422
4551
  refundAmount?: T;
4552
+ metadata?: T;
4423
4553
  updatedAt?: T;
4424
4554
  createdAt?: T;
4425
4555
  }
@@ -4455,6 +4585,7 @@ interface ExchangesSelect<T extends boolean = true> {
4455
4585
  adminNotes?: T;
4456
4586
  completedAt?: T;
4457
4587
  exchangeProducts?: T;
4588
+ metadata?: T;
4458
4589
  updatedAt?: T;
4459
4590
  createdAt?: T;
4460
4591
  }
@@ -4489,9 +4620,9 @@ interface ShippingPoliciesSelect<T extends boolean = true> {
4489
4620
  freeShippingThreshold?: T;
4490
4621
  jejuExtraFee?: T;
4491
4622
  islandExtraFee?: T;
4623
+ description?: T;
4492
4624
  generateSlug?: T;
4493
4625
  slug?: T;
4494
- description?: T;
4495
4626
  estimatedDays?: T;
4496
4627
  status?: T;
4497
4628
  isDefault?: T;
@@ -4624,9 +4755,9 @@ interface DiscountsSelect<T extends boolean = true> {
4624
4755
  _order?: T;
4625
4756
  tenant?: T;
4626
4757
  type?: T;
4627
- isActive?: T;
4628
- code?: T;
4629
4758
  title?: T;
4759
+ code?: T;
4760
+ isActive?: T;
4630
4761
  description?: T;
4631
4762
  value?: T;
4632
4763
  tiers?: T | {
@@ -4678,10 +4809,10 @@ interface PostsSelect<T extends boolean = true> {
4678
4809
  image?: T;
4679
4810
  };
4680
4811
  };
4681
- thumbnail?: T;
4682
- images?: T;
4683
4812
  generateSlug?: T;
4684
4813
  slug?: T;
4814
+ thumbnail?: T;
4815
+ images?: T;
4685
4816
  publishedAt?: T;
4686
4817
  isFeatured?: T;
4687
4818
  readTime?: T;
@@ -4703,8 +4834,8 @@ interface PostAuthorsSelect<T extends boolean = true> {
4703
4834
  slug?: T;
4704
4835
  avatar?: T;
4705
4836
  bio?: T;
4706
- posts?: T;
4707
4837
  email?: T;
4838
+ posts?: T;
4708
4839
  status?: T;
4709
4840
  metadata?: T;
4710
4841
  updatedAt?: T;
@@ -4910,16 +5041,22 @@ interface MusicsSelect<T extends boolean = true> {
4910
5041
  playlist?: T;
4911
5042
  url?: T;
4912
5043
  title?: T;
4913
- artist?: T;
4914
- duration?: T;
4915
5044
  description?: T;
4916
5045
  content?: T;
4917
- categories?: T;
4918
- tags?: T;
5046
+ artist?: T;
4919
5047
  album?: T;
4920
5048
  releaseDate?: T;
4921
- metadata?: T;
5049
+ categories?: T;
5050
+ tags?: T;
5051
+ generateSlug?: T;
5052
+ slug?: T;
5053
+ thumbnail?: T;
5054
+ status?: T;
5055
+ isFeatured?: T;
5056
+ publishedAt?: T;
5057
+ duration?: T;
4922
5058
  isValid?: T;
5059
+ metadata?: T;
4923
5060
  updatedAt?: T;
4924
5061
  createdAt?: T;
4925
5062
  deletedAt?: T;
@@ -4984,10 +5121,10 @@ interface GalleriesSelect<T extends boolean = true> {
4984
5121
  image?: T;
4985
5122
  };
4986
5123
  };
4987
- status?: T;
4988
- thumbnail?: T;
4989
5124
  generateSlug?: T;
4990
5125
  slug?: T;
5126
+ thumbnail?: T;
5127
+ status?: T;
4991
5128
  isFeatured?: T;
4992
5129
  publishedAt?: T;
4993
5130
  metadata?: T;
@@ -5036,12 +5173,15 @@ interface GalleryTagsSelect<T extends boolean = true> {
5036
5173
  * via the `definition` "gallery-items_select".
5037
5174
  */
5038
5175
  interface GalleryItemsSelect<T extends boolean = true> {
5176
+ _order?: T;
5039
5177
  '_gallery-items_items_order'?: T;
5040
5178
  tenant?: T;
5041
5179
  gallery?: T;
5042
5180
  title?: T;
5181
+ description?: T;
5043
5182
  content?: T;
5044
5183
  image?: T;
5184
+ metadata?: T;
5045
5185
  updatedAt?: T;
5046
5186
  createdAt?: T;
5047
5187
  deletedAt?: T;
@@ -5070,10 +5210,10 @@ interface FlowsSelect<T extends boolean = true> {
5070
5210
  };
5071
5211
  generateSlug?: T;
5072
5212
  slug?: T;
5213
+ thumbnail?: T;
5073
5214
  status?: T;
5074
5215
  isFeatured?: T;
5075
5216
  publishedAt?: T;
5076
- thumbnail?: T;
5077
5217
  tags?: T;
5078
5218
  metadata?: T;
5079
5219
  updatedAt?: T;
@@ -5091,6 +5231,7 @@ interface FlowNodeTypesSelect<T extends boolean = true> {
5091
5231
  title?: T;
5092
5232
  generateSlug?: T;
5093
5233
  slug?: T;
5234
+ description?: T;
5094
5235
  color?: T;
5095
5236
  defaultSize?: T | {
5096
5237
  width?: T;
@@ -5127,6 +5268,7 @@ interface FlowEdgeTypesSelect<T extends boolean = true> {
5127
5268
  title?: T;
5128
5269
  generateSlug?: T;
5129
5270
  slug?: T;
5271
+ description?: T;
5130
5272
  color?: T;
5131
5273
  strokeWidth?: T;
5132
5274
  animated?: T;
@@ -5217,11 +5359,11 @@ interface VideosSelect<T extends boolean = true> {
5217
5359
  image?: T;
5218
5360
  };
5219
5361
  };
5220
- thumbnail?: T;
5221
5362
  generateSlug?: T;
5222
5363
  slug?: T;
5223
- publishedAt?: T;
5364
+ thumbnail?: T;
5224
5365
  isFeatured?: T;
5366
+ publishedAt?: T;
5225
5367
  categories?: T;
5226
5368
  tags?: T;
5227
5369
  metadata?: T;
@@ -5273,19 +5415,31 @@ interface LiveStreamsSelect<T extends boolean = true> {
5273
5415
  tenant?: T;
5274
5416
  title?: T;
5275
5417
  description?: T;
5276
- isFeatured?: T;
5277
5418
  scheduledAt?: T;
5278
- thumbnail?: T;
5279
- generateSlug?: T;
5280
- slug?: T;
5419
+ latencyMode?: T;
5420
+ reconnectWindow?: T;
5421
+ status?: T;
5281
5422
  muxLiveStreamId?: T;
5282
5423
  muxPlaybackId?: T;
5283
5424
  streamKey?: T;
5284
- status?: T;
5285
- latencyMode?: T;
5286
- reconnectWindow?: T;
5287
5425
  activeAssetId?: T;
5288
5426
  recentAssetIds?: T;
5427
+ seo?: T | {
5428
+ title?: T;
5429
+ description?: T;
5430
+ noIndex?: T;
5431
+ canonical?: T;
5432
+ openGraph?: T | {
5433
+ title?: T;
5434
+ description?: T;
5435
+ image?: T;
5436
+ };
5437
+ };
5438
+ generateSlug?: T;
5439
+ slug?: T;
5440
+ thumbnail?: T;
5441
+ isFeatured?: T;
5442
+ metadata?: T;
5289
5443
  updatedAt?: T;
5290
5444
  createdAt?: T;
5291
5445
  deletedAt?: T;
@@ -1,7 +1,7 @@
1
1
  import { R as RealtimeEvent } from './realtime-DupPIYx-.cjs';
2
2
  export { a as RealtimeConnection, b as RealtimeListener } from './realtime-DupPIYx-.cjs';
3
- import { P as PublicCollection } from './const-C9I6r5Wa.cjs';
4
- import './payload-types-D8fN_vZR.cjs';
3
+ import { P as PublicCollection } from './const-DbDP4kYA.cjs';
4
+ import './payload-types-B98DjTLi.cjs';
5
5
 
6
6
  interface UseRealtimeQueryOptions {
7
7
  /** Filter events to specific collections. Empty/undefined = all collections. */
@@ -1,7 +1,7 @@
1
1
  import { R as RealtimeEvent } from './realtime-DupPIYx-.js';
2
2
  export { a as RealtimeConnection, b as RealtimeListener } from './realtime-DupPIYx-.js';
3
- import { P as PublicCollection } from './const-JbuUTzeh.js';
4
- import './payload-types-D8fN_vZR.js';
3
+ import { P as PublicCollection } from './const-Blyfn0_b.js';
4
+ import './payload-types-B98DjTLi.js';
5
5
 
6
6
  interface UseRealtimeQueryOptions {
7
7
  /** Filter events to specific collections. Empty/undefined = all collections. */
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { F as Form } from '../payload-types-D8fN_vZR.cjs';
2
+ import { F as Form } from '../payload-types-B98DjTLi.cjs';
3
3
  import { RichTextData } from './rich-text.cjs';
4
4
  import '@payloadcms/richtext-lexical';
5
5
  import '@payloadcms/richtext-lexical/lexical';
package/dist/ui/form.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { F as Form } from '../payload-types-D8fN_vZR.js';
2
+ import { F as Form } from '../payload-types-B98DjTLi.js';
3
3
  import { RichTextData } from './rich-text.js';
4
4
  import '@payloadcms/richtext-lexical';
5
5
  import '@payloadcms/richtext-lexical/lexical';
@@ -1,7 +1,7 @@
1
1
  import React, { CSSProperties } from 'react';
2
2
  import { MuxPlayerProps, MuxPlayerRefAttributes } from '@mux/mux-player-react';
3
3
  export { MuxPlayerRefAttributes as VideoPlayerRef } from '@mux/mux-player-react';
4
- import { V as Video } from '../payload-types-D8fN_vZR.cjs';
4
+ import { V as Video } from '../payload-types-B98DjTLi.cjs';
5
5
  export { e as VideoGifOptions, V as VideoThumbnailOptions, a as getVideoGif, c as getVideoMp4Url, d as getVideoStoryboard, b as getVideoStreamUrl, g as getVideoThumbnail } from '../video-DbLL8yuc.cjs';
6
6
 
7
7
  interface VideoPlayerCSSProperties extends CSSProperties {