@01.software/sdk 0.5.5 → 0.5.7

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,8 +1186,11 @@ 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
+ /**
1192
+ * Short summary for listing/cards
1193
+ */
1191
1194
  description?: string | null;
1192
1195
  content?: {
1193
1196
  root: {
@@ -1246,14 +1249,14 @@ interface Video {
1246
1249
  image?: (string | null) | Image;
1247
1250
  };
1248
1251
  };
1249
- thumbnail?: (string | null) | Image;
1250
1252
  /**
1251
1253
  * When enabled, the slug will auto-generate from the title field on save and autosave.
1252
1254
  */
1253
1255
  generateSlug?: boolean | null;
1254
1256
  slug?: string | null;
1255
- publishedAt?: string | null;
1257
+ thumbnail?: (string | null) | Image;
1256
1258
  isFeatured?: boolean | null;
1259
+ publishedAt?: string | null;
1257
1260
  categories?: (string | VideoCategory)[] | null;
1258
1261
  tags?: (string | VideoTag)[] | null;
1259
1262
  metadata?: {
@@ -1270,32 +1273,70 @@ interface Video {
1270
1273
  interface LiveStream {
1271
1274
  id: string;
1272
1275
  tenant?: (string | null) | Tenant;
1273
- title?: string | null;
1276
+ title: string;
1277
+ /**
1278
+ * Short summary for listing/cards
1279
+ */
1274
1280
  description?: string | null;
1275
- isFeatured?: boolean | null;
1276
1281
  /**
1277
1282
  * Scheduled start time
1278
1283
  */
1279
1284
  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
1285
  latencyMode?: ('standard' | 'reduced' | 'low') | null;
1291
1286
  /**
1292
1287
  * Reconnect window (seconds)
1293
1288
  */
1294
1289
  reconnectWindow?: number | null;
1290
+ status?: ('idle' | 'active' | 'disabled') | null;
1291
+ muxLiveStreamId?: string | null;
1292
+ muxPlaybackId?: string | null;
1293
+ streamKey?: string | null;
1295
1294
  activeAssetId?: string | null;
1296
1295
  recentAssetIds?: {
1297
1296
  [k: string]: unknown;
1298
1297
  } | unknown[] | string | number | boolean | null;
1298
+ seo?: {
1299
+ /**
1300
+ * Search result title (falls back to document title)
1301
+ */
1302
+ title?: string | null;
1303
+ /**
1304
+ * Search result description
1305
+ */
1306
+ description?: string | null;
1307
+ /**
1308
+ * Block search engine indexing
1309
+ */
1310
+ noIndex?: boolean | null;
1311
+ /**
1312
+ * Canonical URL (prevents duplicate content)
1313
+ */
1314
+ canonical?: string | null;
1315
+ openGraph?: {
1316
+ /**
1317
+ * OG title (falls back to seo.title)
1318
+ */
1319
+ title?: string | null;
1320
+ /**
1321
+ * OG description (falls back to seo.description)
1322
+ */
1323
+ description?: string | null;
1324
+ /**
1325
+ * OG / Twitter Card image (1200×630 recommended)
1326
+ */
1327
+ image?: (string | null) | Image;
1328
+ };
1329
+ };
1330
+ /**
1331
+ * When enabled, the slug will auto-generate from the title field on save and autosave.
1332
+ */
1333
+ generateSlug?: boolean | null;
1334
+ slug?: string | null;
1335
+ thumbnail?: (string | null) | Image;
1336
+ isFeatured?: boolean | null;
1337
+ metadata?: {
1338
+ [k: string]: unknown;
1339
+ } | unknown[] | string | number | boolean | null;
1299
1340
  updatedAt: string;
1300
1341
  createdAt: string;
1301
1342
  deletedAt?: string | null;
@@ -1361,6 +1402,10 @@ interface ProductVariant {
1361
1402
  tenant?: (string | null) | Tenant;
1362
1403
  product: string | Product;
1363
1404
  title: string;
1405
+ /**
1406
+ * Short summary for listing/cards
1407
+ */
1408
+ description?: string | null;
1364
1409
  /**
1365
1410
  * Variant-specific SKU
1366
1411
  */
@@ -1535,6 +1580,38 @@ interface Brand {
1535
1580
  * Brand official website URL
1536
1581
  */
1537
1582
  website?: string | null;
1583
+ seo?: {
1584
+ /**
1585
+ * Search result title (falls back to document title)
1586
+ */
1587
+ title?: string | null;
1588
+ /**
1589
+ * Search result description
1590
+ */
1591
+ description?: string | null;
1592
+ /**
1593
+ * Block search engine indexing
1594
+ */
1595
+ noIndex?: boolean | null;
1596
+ /**
1597
+ * Canonical URL (prevents duplicate content)
1598
+ */
1599
+ canonical?: string | null;
1600
+ openGraph?: {
1601
+ /**
1602
+ * OG title (falls back to seo.title)
1603
+ */
1604
+ title?: string | null;
1605
+ /**
1606
+ * OG description (falls back to seo.description)
1607
+ */
1608
+ description?: string | null;
1609
+ /**
1610
+ * OG / Twitter Card image (1200×630 recommended)
1611
+ */
1612
+ image?: (string | null) | BrandLogo;
1613
+ };
1614
+ };
1538
1615
  /**
1539
1616
  * When enabled, the slug will auto-generate from the title field on save and autosave.
1540
1617
  */
@@ -1542,6 +1619,7 @@ interface Brand {
1542
1619
  slug?: string | null;
1543
1620
  status?: ('draft' | 'published') | null;
1544
1621
  isFeatured?: boolean | null;
1622
+ publishedAt?: string | null;
1545
1623
  metadata?: {
1546
1624
  [k: string]: unknown;
1547
1625
  } | unknown[] | string | number | boolean | null;
@@ -1577,12 +1655,15 @@ interface ShippingPolicy {
1577
1655
  * Extra fee for remote islands
1578
1656
  */
1579
1657
  islandExtraFee?: number | null;
1658
+ /**
1659
+ * Short summary for listing/cards
1660
+ */
1661
+ description?: string | null;
1580
1662
  /**
1581
1663
  * When enabled, the slug will auto-generate from the title field on save and autosave.
1582
1664
  */
1583
1665
  generateSlug?: boolean | null;
1584
1666
  slug?: string | null;
1585
- description?: string | null;
1586
1667
  /**
1587
1668
  * Estimated delivery days
1588
1669
  */
@@ -1605,9 +1686,11 @@ interface ProductCollection {
1605
1686
  _order?: string | null;
1606
1687
  tenant?: (string | null) | Tenant;
1607
1688
  title: string;
1608
- thumbnail?: (string | null) | Image;
1609
- images?: (string | Image)[] | null;
1610
- description?: {
1689
+ /**
1690
+ * Short summary for listing/cards
1691
+ */
1692
+ description?: string | null;
1693
+ content?: {
1611
1694
  root: {
1612
1695
  type: string;
1613
1696
  children: {
@@ -1622,6 +1705,8 @@ interface ProductCollection {
1622
1705
  };
1623
1706
  [k: string]: unknown;
1624
1707
  } | null;
1708
+ thumbnail?: (string | null) | Image;
1709
+ images?: (string | Image)[] | null;
1625
1710
  products?: (string | Product)[] | null;
1626
1711
  seo?: {
1627
1712
  /**
@@ -1931,6 +2016,10 @@ interface Fulfillment {
1931
2016
  hasNextPage?: boolean;
1932
2017
  totalDocs?: number;
1933
2018
  };
2019
+ /**
2020
+ * Internal admin notes
2021
+ */
2022
+ adminNotes?: string | null;
1934
2023
  metadata?: {
1935
2024
  [k: string]: unknown;
1936
2025
  } | unknown[] | string | number | boolean | null;
@@ -1979,6 +2068,9 @@ interface Return {
1979
2068
  */
1980
2069
  refundReceiptUrl?: string | null;
1981
2070
  refundAmount: number;
2071
+ metadata?: {
2072
+ [k: string]: unknown;
2073
+ } | unknown[] | string | number | boolean | null;
1982
2074
  updatedAt: string;
1983
2075
  createdAt: string;
1984
2076
  }
@@ -2026,6 +2118,9 @@ interface Exchange {
2026
2118
  hasNextPage?: boolean;
2027
2119
  totalDocs?: number;
2028
2120
  };
2121
+ metadata?: {
2122
+ [k: string]: unknown;
2123
+ } | unknown[] | string | number | boolean | null;
2029
2124
  updatedAt: string;
2030
2125
  createdAt: string;
2031
2126
  }
@@ -2141,15 +2236,15 @@ interface Discount {
2141
2236
  _order?: string | null;
2142
2237
  tenant?: (string | null) | Tenant;
2143
2238
  type: 'percentage' | 'fixed_amount' | 'free_shipping' | 'tiered';
2144
- isActive?: boolean | null;
2145
- /**
2146
- * Unique discount code
2147
- */
2148
- code: string;
2149
2239
  /**
2150
2240
  * Internal name (e.g. New member 10% discount)
2151
2241
  */
2152
2242
  title: string;
2243
+ /**
2244
+ * Unique discount code
2245
+ */
2246
+ code: string;
2247
+ isActive?: boolean | null;
2153
2248
  /**
2154
2249
  * Internal description for admin reference
2155
2250
  */
@@ -2281,13 +2376,13 @@ interface Post {
2281
2376
  image?: (string | null) | Image;
2282
2377
  };
2283
2378
  };
2284
- thumbnail?: (string | null) | Image;
2285
- images?: (string | Image)[] | null;
2286
2379
  /**
2287
2380
  * When enabled, the slug will auto-generate from the title field on save and autosave.
2288
2381
  */
2289
2382
  generateSlug?: boolean | null;
2290
2383
  slug?: string | null;
2384
+ thumbnail?: (string | null) | Image;
2385
+ images?: (string | Image)[] | null;
2291
2386
  publishedAt?: string | null;
2292
2387
  isFeatured?: boolean | null;
2293
2388
  /**
@@ -2318,12 +2413,12 @@ interface PostAuthor {
2318
2413
  slug?: string | null;
2319
2414
  avatar?: (string | null) | Image;
2320
2415
  bio?: string | null;
2416
+ email?: string | null;
2321
2417
  posts?: {
2322
2418
  docs?: (string | Post)[];
2323
2419
  hasNextPage?: boolean;
2324
2420
  totalDocs?: number;
2325
2421
  };
2326
- email?: string | null;
2327
2422
  status?: ('active' | 'inactive') | null;
2328
2423
  metadata?: {
2329
2424
  [k: string]: unknown;
@@ -2676,14 +2771,6 @@ interface Music {
2676
2771
  * Auto-filled from YouTube
2677
2772
  */
2678
2773
  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
2774
  /**
2688
2775
  * Short summary for listing/cards
2689
2776
  */
@@ -2703,14 +2790,31 @@ interface Music {
2703
2790
  };
2704
2791
  [k: string]: unknown;
2705
2792
  } | null;
2706
- categories?: (string | MusicCategory)[] | null;
2707
- tags?: (string | MusicTag)[] | null;
2793
+ /**
2794
+ * Auto-filled from YouTube channel
2795
+ */
2796
+ artist?: string | null;
2708
2797
  album?: string | null;
2709
2798
  releaseDate?: string | null;
2799
+ categories?: (string | MusicCategory)[] | null;
2800
+ tags?: (string | MusicTag)[] | null;
2801
+ /**
2802
+ * When enabled, the slug will auto-generate from the title field on save and autosave.
2803
+ */
2804
+ generateSlug?: boolean | null;
2805
+ slug?: string | null;
2806
+ thumbnail?: (string | null) | Image;
2807
+ status?: ('active' | 'inactive') | null;
2808
+ isFeatured?: boolean | null;
2809
+ publishedAt?: string | null;
2810
+ /**
2811
+ * Duration in seconds (auto-filled)
2812
+ */
2813
+ duration?: number | null;
2814
+ isValid?: boolean | null;
2710
2815
  metadata?: {
2711
2816
  [k: string]: unknown;
2712
2817
  } | unknown[] | string | number | boolean | null;
2713
- isValid?: boolean | null;
2714
2818
  updatedAt: string;
2715
2819
  createdAt: string;
2716
2820
  deletedAt?: string | null;
@@ -2818,13 +2922,13 @@ interface Gallery {
2818
2922
  image?: (string | null) | Image;
2819
2923
  };
2820
2924
  };
2821
- status: 'draft' | 'published' | 'archived';
2822
- thumbnail?: (string | null) | Image;
2823
2925
  /**
2824
2926
  * When enabled, the slug will auto-generate from the title field on save and autosave.
2825
2927
  */
2826
2928
  generateSlug?: boolean | null;
2827
2929
  slug?: string | null;
2930
+ thumbnail?: (string | null) | Image;
2931
+ status: 'draft' | 'published' | 'archived';
2828
2932
  isFeatured?: boolean | null;
2829
2933
  publishedAt?: string | null;
2830
2934
  metadata?: {
@@ -2890,10 +2994,15 @@ interface GalleryTag {
2890
2994
  */
2891
2995
  interface GalleryItem {
2892
2996
  id: string;
2997
+ _order?: string | null;
2893
2998
  '_gallery-items_items_order'?: string | null;
2894
2999
  tenant?: (string | null) | Tenant;
2895
3000
  gallery: string | Gallery;
2896
3001
  title?: string | null;
3002
+ /**
3003
+ * Short summary for listing/cards
3004
+ */
3005
+ description?: string | null;
2897
3006
  content?: {
2898
3007
  root: {
2899
3008
  type: string;
@@ -2910,6 +3019,9 @@ interface GalleryItem {
2910
3019
  [k: string]: unknown;
2911
3020
  } | null;
2912
3021
  image?: (string | null) | Image;
3022
+ metadata?: {
3023
+ [k: string]: unknown;
3024
+ } | unknown[] | string | number | boolean | null;
2913
3025
  updatedAt: string;
2914
3026
  createdAt: string;
2915
3027
  deletedAt?: string | null;
@@ -2968,10 +3080,10 @@ interface Flow {
2968
3080
  */
2969
3081
  generateSlug?: boolean | null;
2970
3082
  slug?: string | null;
3083
+ thumbnail?: (string | null) | Image;
2971
3084
  status?: ('draft' | 'published' | 'archived') | null;
2972
3085
  isFeatured?: boolean | null;
2973
3086
  publishedAt?: string | null;
2974
- thumbnail?: (string | null) | Image;
2975
3087
  tags?: (string | FlowTag)[] | null;
2976
3088
  metadata?: {
2977
3089
  [k: string]: unknown;
@@ -3045,6 +3157,10 @@ interface FlowNodeType {
3045
3157
  */
3046
3158
  generateSlug?: boolean | null;
3047
3159
  slug?: string | null;
3160
+ /**
3161
+ * Short summary for listing/cards
3162
+ */
3163
+ description?: string | null;
3048
3164
  color?: string | null;
3049
3165
  defaultSize?: {
3050
3166
  width?: number | null;
@@ -3106,6 +3222,10 @@ interface FlowEdgeType {
3106
3222
  */
3107
3223
  generateSlug?: boolean | null;
3108
3224
  slug?: string | null;
3225
+ /**
3226
+ * Short summary for listing/cards
3227
+ */
3228
+ description?: string | null;
3109
3229
  color?: string | null;
3110
3230
  strokeWidth?: number | null;
3111
3231
  animated?: boolean | null;
@@ -4069,6 +4189,7 @@ interface ProductVariantsSelect<T extends boolean = true> {
4069
4189
  tenant?: T;
4070
4190
  product?: T;
4071
4191
  title?: T;
4192
+ description?: T;
4072
4193
  sku?: T;
4073
4194
  price?: T;
4074
4195
  barcode?: T;
@@ -4151,9 +4272,10 @@ interface ProductCollectionsSelect<T extends boolean = true> {
4151
4272
  _order?: T;
4152
4273
  tenant?: T;
4153
4274
  title?: T;
4275
+ description?: T;
4276
+ content?: T;
4154
4277
  thumbnail?: T;
4155
4278
  images?: T;
4156
- description?: T;
4157
4279
  products?: T;
4158
4280
  seo?: T | {
4159
4281
  title?: T;
@@ -4191,10 +4313,22 @@ interface BrandsSelect<T extends boolean = true> {
4191
4313
  logoDark?: T;
4192
4314
  logomark?: T;
4193
4315
  website?: T;
4316
+ seo?: T | {
4317
+ title?: T;
4318
+ description?: T;
4319
+ noIndex?: T;
4320
+ canonical?: T;
4321
+ openGraph?: T | {
4322
+ title?: T;
4323
+ description?: T;
4324
+ image?: T;
4325
+ };
4326
+ };
4194
4327
  generateSlug?: T;
4195
4328
  slug?: T;
4196
4329
  status?: T;
4197
4330
  isFeatured?: T;
4331
+ publishedAt?: T;
4198
4332
  metadata?: T;
4199
4333
  updatedAt?: T;
4200
4334
  createdAt?: T;
@@ -4389,6 +4523,7 @@ interface FulfillmentsSelect<T extends boolean = true> {
4389
4523
  shippedAt?: T;
4390
4524
  deliveredAt?: T;
4391
4525
  items?: T;
4526
+ adminNotes?: T;
4392
4527
  metadata?: T;
4393
4528
  updatedAt?: T;
4394
4529
  createdAt?: T;
@@ -4420,6 +4555,7 @@ interface ReturnsSelect<T extends boolean = true> {
4420
4555
  completedAt?: T;
4421
4556
  refundReceiptUrl?: T;
4422
4557
  refundAmount?: T;
4558
+ metadata?: T;
4423
4559
  updatedAt?: T;
4424
4560
  createdAt?: T;
4425
4561
  }
@@ -4455,6 +4591,7 @@ interface ExchangesSelect<T extends boolean = true> {
4455
4591
  adminNotes?: T;
4456
4592
  completedAt?: T;
4457
4593
  exchangeProducts?: T;
4594
+ metadata?: T;
4458
4595
  updatedAt?: T;
4459
4596
  createdAt?: T;
4460
4597
  }
@@ -4489,9 +4626,9 @@ interface ShippingPoliciesSelect<T extends boolean = true> {
4489
4626
  freeShippingThreshold?: T;
4490
4627
  jejuExtraFee?: T;
4491
4628
  islandExtraFee?: T;
4629
+ description?: T;
4492
4630
  generateSlug?: T;
4493
4631
  slug?: T;
4494
- description?: T;
4495
4632
  estimatedDays?: T;
4496
4633
  status?: T;
4497
4634
  isDefault?: T;
@@ -4624,9 +4761,9 @@ interface DiscountsSelect<T extends boolean = true> {
4624
4761
  _order?: T;
4625
4762
  tenant?: T;
4626
4763
  type?: T;
4627
- isActive?: T;
4628
- code?: T;
4629
4764
  title?: T;
4765
+ code?: T;
4766
+ isActive?: T;
4630
4767
  description?: T;
4631
4768
  value?: T;
4632
4769
  tiers?: T | {
@@ -4678,10 +4815,10 @@ interface PostsSelect<T extends boolean = true> {
4678
4815
  image?: T;
4679
4816
  };
4680
4817
  };
4681
- thumbnail?: T;
4682
- images?: T;
4683
4818
  generateSlug?: T;
4684
4819
  slug?: T;
4820
+ thumbnail?: T;
4821
+ images?: T;
4685
4822
  publishedAt?: T;
4686
4823
  isFeatured?: T;
4687
4824
  readTime?: T;
@@ -4703,8 +4840,8 @@ interface PostAuthorsSelect<T extends boolean = true> {
4703
4840
  slug?: T;
4704
4841
  avatar?: T;
4705
4842
  bio?: T;
4706
- posts?: T;
4707
4843
  email?: T;
4844
+ posts?: T;
4708
4845
  status?: T;
4709
4846
  metadata?: T;
4710
4847
  updatedAt?: T;
@@ -4910,16 +5047,22 @@ interface MusicsSelect<T extends boolean = true> {
4910
5047
  playlist?: T;
4911
5048
  url?: T;
4912
5049
  title?: T;
4913
- artist?: T;
4914
- duration?: T;
4915
5050
  description?: T;
4916
5051
  content?: T;
4917
- categories?: T;
4918
- tags?: T;
5052
+ artist?: T;
4919
5053
  album?: T;
4920
5054
  releaseDate?: T;
4921
- metadata?: T;
5055
+ categories?: T;
5056
+ tags?: T;
5057
+ generateSlug?: T;
5058
+ slug?: T;
5059
+ thumbnail?: T;
5060
+ status?: T;
5061
+ isFeatured?: T;
5062
+ publishedAt?: T;
5063
+ duration?: T;
4922
5064
  isValid?: T;
5065
+ metadata?: T;
4923
5066
  updatedAt?: T;
4924
5067
  createdAt?: T;
4925
5068
  deletedAt?: T;
@@ -4984,10 +5127,10 @@ interface GalleriesSelect<T extends boolean = true> {
4984
5127
  image?: T;
4985
5128
  };
4986
5129
  };
4987
- status?: T;
4988
- thumbnail?: T;
4989
5130
  generateSlug?: T;
4990
5131
  slug?: T;
5132
+ thumbnail?: T;
5133
+ status?: T;
4991
5134
  isFeatured?: T;
4992
5135
  publishedAt?: T;
4993
5136
  metadata?: T;
@@ -5036,12 +5179,15 @@ interface GalleryTagsSelect<T extends boolean = true> {
5036
5179
  * via the `definition` "gallery-items_select".
5037
5180
  */
5038
5181
  interface GalleryItemsSelect<T extends boolean = true> {
5182
+ _order?: T;
5039
5183
  '_gallery-items_items_order'?: T;
5040
5184
  tenant?: T;
5041
5185
  gallery?: T;
5042
5186
  title?: T;
5187
+ description?: T;
5043
5188
  content?: T;
5044
5189
  image?: T;
5190
+ metadata?: T;
5045
5191
  updatedAt?: T;
5046
5192
  createdAt?: T;
5047
5193
  deletedAt?: T;
@@ -5070,10 +5216,10 @@ interface FlowsSelect<T extends boolean = true> {
5070
5216
  };
5071
5217
  generateSlug?: T;
5072
5218
  slug?: T;
5219
+ thumbnail?: T;
5073
5220
  status?: T;
5074
5221
  isFeatured?: T;
5075
5222
  publishedAt?: T;
5076
- thumbnail?: T;
5077
5223
  tags?: T;
5078
5224
  metadata?: T;
5079
5225
  updatedAt?: T;
@@ -5091,6 +5237,7 @@ interface FlowNodeTypesSelect<T extends boolean = true> {
5091
5237
  title?: T;
5092
5238
  generateSlug?: T;
5093
5239
  slug?: T;
5240
+ description?: T;
5094
5241
  color?: T;
5095
5242
  defaultSize?: T | {
5096
5243
  width?: T;
@@ -5127,6 +5274,7 @@ interface FlowEdgeTypesSelect<T extends boolean = true> {
5127
5274
  title?: T;
5128
5275
  generateSlug?: T;
5129
5276
  slug?: T;
5277
+ description?: T;
5130
5278
  color?: T;
5131
5279
  strokeWidth?: T;
5132
5280
  animated?: T;
@@ -5217,11 +5365,11 @@ interface VideosSelect<T extends boolean = true> {
5217
5365
  image?: T;
5218
5366
  };
5219
5367
  };
5220
- thumbnail?: T;
5221
5368
  generateSlug?: T;
5222
5369
  slug?: T;
5223
- publishedAt?: T;
5370
+ thumbnail?: T;
5224
5371
  isFeatured?: T;
5372
+ publishedAt?: T;
5225
5373
  categories?: T;
5226
5374
  tags?: T;
5227
5375
  metadata?: T;
@@ -5273,19 +5421,31 @@ interface LiveStreamsSelect<T extends boolean = true> {
5273
5421
  tenant?: T;
5274
5422
  title?: T;
5275
5423
  description?: T;
5276
- isFeatured?: T;
5277
5424
  scheduledAt?: T;
5278
- thumbnail?: T;
5279
- generateSlug?: T;
5280
- slug?: T;
5425
+ latencyMode?: T;
5426
+ reconnectWindow?: T;
5427
+ status?: T;
5281
5428
  muxLiveStreamId?: T;
5282
5429
  muxPlaybackId?: T;
5283
5430
  streamKey?: T;
5284
- status?: T;
5285
- latencyMode?: T;
5286
- reconnectWindow?: T;
5287
5431
  activeAssetId?: T;
5288
5432
  recentAssetIds?: T;
5433
+ seo?: T | {
5434
+ title?: T;
5435
+ description?: T;
5436
+ noIndex?: T;
5437
+ canonical?: T;
5438
+ openGraph?: T | {
5439
+ title?: T;
5440
+ description?: T;
5441
+ image?: T;
5442
+ };
5443
+ };
5444
+ generateSlug?: T;
5445
+ slug?: T;
5446
+ thumbnail?: T;
5447
+ isFeatured?: T;
5448
+ metadata?: T;
5289
5449
  updatedAt?: T;
5290
5450
  createdAt?: T;
5291
5451
  deletedAt?: T;