@01.software/sdk 0.6.0 → 0.7.1

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.
Files changed (44) hide show
  1. package/README.md +2 -2
  2. package/dist/auth.d.cts +1 -1
  3. package/dist/auth.d.ts +1 -1
  4. package/dist/{const-DQZQAXex.d.cts → const-B8iE-mDN.d.cts} +2 -2
  5. package/dist/{const-Bk3-zigV.d.ts → const-Chw71pKS.d.ts} +2 -2
  6. package/dist/index.cjs +9 -9
  7. package/dist/index.cjs.map +1 -1
  8. package/dist/index.d.cts +8 -8
  9. package/dist/index.d.ts +8 -8
  10. package/dist/index.js +9 -9
  11. package/dist/index.js.map +1 -1
  12. package/dist/{payload-types-DCVm1syH.d.cts → payload-types-Cp10MoF6.d.cts} +53 -48
  13. package/dist/{payload-types-DCVm1syH.d.ts → payload-types-Cp10MoF6.d.ts} +53 -48
  14. package/dist/realtime.d.cts +2 -2
  15. package/dist/realtime.d.ts +2 -2
  16. package/dist/{server-StNHlSjW.d.cts → server-DxhuG-_s.d.cts} +34 -34
  17. package/dist/{server-StNHlSjW.d.ts → server-DxhuG-_s.d.ts} +34 -34
  18. package/dist/ui/{flow → canvas}/server.cjs +20 -20
  19. package/dist/ui/canvas/server.cjs.map +1 -0
  20. package/dist/ui/canvas/server.d.cts +3 -0
  21. package/dist/ui/canvas/server.d.ts +3 -0
  22. package/dist/ui/{flow → canvas}/server.js +19 -19
  23. package/dist/ui/canvas/server.js.map +1 -0
  24. package/dist/ui/{flow.cjs → canvas.cjs} +63 -63
  25. package/dist/ui/canvas.cjs.map +1 -0
  26. package/dist/ui/{flow.d.cts → canvas.d.cts} +35 -35
  27. package/dist/ui/{flow.d.ts → canvas.d.ts} +35 -35
  28. package/dist/ui/{flow.js → canvas.js} +59 -59
  29. package/dist/ui/canvas.js.map +1 -0
  30. package/dist/ui/form.d.cts +1 -1
  31. package/dist/ui/form.d.ts +1 -1
  32. package/dist/ui/video.d.cts +1 -1
  33. package/dist/ui/video.d.ts +1 -1
  34. package/dist/{webhook-BTtG_8f2.d.ts → webhook-BKhMTlFN.d.ts} +2 -2
  35. package/dist/{webhook-TDfT7aKA.d.cts → webhook-CiWsseVz.d.cts} +2 -2
  36. package/dist/webhook.d.cts +3 -3
  37. package/dist/webhook.d.ts +3 -3
  38. package/package.json +13 -13
  39. package/dist/ui/flow/server.cjs.map +0 -1
  40. package/dist/ui/flow/server.d.cts +0 -3
  41. package/dist/ui/flow/server.d.ts +0 -3
  42. package/dist/ui/flow/server.js.map +0 -1
  43. package/dist/ui/flow.cjs.map +0 -1
  44. package/dist/ui/flow.js.map +0 -1
@@ -78,11 +78,11 @@ interface Config {
78
78
  links: Link;
79
79
  'link-categories': LinkCategory;
80
80
  'link-tags': LinkTag;
81
- flows: Flow;
82
- 'flow-node-types': FlowNodeType;
83
- 'flow-edge-types': FlowEdgeType;
84
- 'flow-categories': FlowCategory;
85
- 'flow-tags': FlowTag;
81
+ canvases: Canvase;
82
+ 'canvas-node-types': CanvasNodeType;
83
+ 'canvas-edge-types': CanvasEdgeType;
84
+ 'canvas-categories': CanvasCategory;
85
+ 'canvas-tags': CanvasTag;
86
86
  videos: Video;
87
87
  'video-categories': VideoCategory;
88
88
  'video-tags': VideoTag;
@@ -211,11 +211,11 @@ interface Config {
211
211
  links: LinksSelect<false> | LinksSelect<true>;
212
212
  'link-categories': LinkCategoriesSelect<false> | LinkCategoriesSelect<true>;
213
213
  'link-tags': LinkTagsSelect<false> | LinkTagsSelect<true>;
214
- flows: FlowsSelect<false> | FlowsSelect<true>;
215
- 'flow-node-types': FlowNodeTypesSelect<false> | FlowNodeTypesSelect<true>;
216
- 'flow-edge-types': FlowEdgeTypesSelect<false> | FlowEdgeTypesSelect<true>;
217
- 'flow-categories': FlowCategoriesSelect<false> | FlowCategoriesSelect<true>;
218
- 'flow-tags': FlowTagsSelect<false> | FlowTagsSelect<true>;
214
+ canvases: CanvasesSelect<false> | CanvasesSelect<true>;
215
+ 'canvas-node-types': CanvasNodeTypesSelect<false> | CanvasNodeTypesSelect<true>;
216
+ 'canvas-edge-types': CanvasEdgeTypesSelect<false> | CanvasEdgeTypesSelect<true>;
217
+ 'canvas-categories': CanvasCategoriesSelect<false> | CanvasCategoriesSelect<true>;
218
+ 'canvas-tags': CanvasTagsSelect<false> | CanvasTagsSelect<true>;
219
219
  videos: VideosSelect<false> | VideosSelect<true>;
220
220
  'video-categories': VideoCategoriesSelect<false> | VideoCategoriesSelect<true>;
221
221
  'video-tags': VideoTagsSelect<false> | VideoTagsSelect<true>;
@@ -370,7 +370,7 @@ interface Tenant {
370
370
  */
371
371
  owner: string | User;
372
372
  plan: 'free' | 'starter' | 'basic' | 'pro' | 'enterprise';
373
- features?: ('ecommerce' | 'customers' | 'playlists' | 'galleries' | 'links' | 'forms' | 'posts' | 'documents' | 'flows' | 'videos' | 'live-streaming' | 'community')[] | null;
373
+ features?: ('ecommerce' | 'customers' | 'playlists' | 'galleries' | 'links' | 'forms' | 'posts' | 'documents' | 'canvas' | 'videos' | 'live-streaming' | 'community')[] | null;
374
374
  /**
375
375
  * Require email verification on customer registration. Verification token is delivered via webhook (operation: verification). You must configure a webhook URL first.
376
376
  */
@@ -433,7 +433,7 @@ interface Tenant {
433
433
  interface FieldConfig {
434
434
  id: string;
435
435
  tenant?: (string | null) | Tenant;
436
- collectionSlug: 'products' | 'product-variants' | 'product-options' | 'product-collections' | 'product-categories' | 'product-tags' | 'brands' | 'discounts' | 'shipping-policies' | 'orders' | 'carts' | 'transactions' | 'fulfillments' | 'returns' | 'exchanges' | 'customers' | 'customer-groups' | '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' | 'links' | 'link-categories' | 'link-tags' | 'flows' | 'flow-categories' | 'flow-tags' | 'flow-node-types' | 'flow-edge-types' | 'videos' | 'video-categories' | 'video-tags' | 'live-streams' | 'forms' | 'threads' | 'comments' | 'reactions' | 'reaction-types' | 'bookmarks' | 'thread-categories';
436
+ collectionSlug: 'products' | 'product-variants' | 'product-options' | 'product-collections' | 'product-categories' | 'product-tags' | 'brands' | 'discounts' | 'shipping-policies' | 'orders' | 'carts' | 'transactions' | 'fulfillments' | 'returns' | 'exchanges' | 'customers' | 'customer-groups' | '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' | 'links' | 'link-categories' | 'link-tags' | 'canvases' | 'canvas-categories' | 'canvas-tags' | 'canvas-node-types' | 'canvas-edge-types' | 'videos' | 'video-categories' | 'video-tags' | 'live-streams' | 'forms' | 'threads' | 'comments' | 'reactions' | 'reaction-types' | 'bookmarks' | 'thread-categories';
437
437
  isHidden?: boolean | null;
438
438
  hiddenFields?: {
439
439
  [k: string]: unknown;
@@ -1487,7 +1487,11 @@ interface ProductOption {
1487
1487
  * Option-specific SKU
1488
1488
  */
1489
1489
  sku?: string | null;
1490
- stock: number;
1490
+ /**
1491
+ * Sell without tracking inventory
1492
+ */
1493
+ isUnlimited?: boolean | null;
1494
+ stock?: number | null;
1491
1495
  /**
1492
1496
  * Paid orders in transit (informational — stock alone gates new purchases)
1493
1497
  */
@@ -3143,9 +3147,9 @@ interface LinkTag {
3143
3147
  }
3144
3148
  /**
3145
3149
  * This interface was referenced by `Config`'s JSON-Schema
3146
- * via the `definition` "flows".
3150
+ * via the `definition` "canvases".
3147
3151
  */
3148
- interface Flow {
3152
+ interface Canvase {
3149
3153
  id: string;
3150
3154
  tenant?: (string | null) | Tenant;
3151
3155
  title: string;
@@ -3157,7 +3161,7 @@ interface Flow {
3157
3161
  canvas: {
3158
3162
  [k: string]: unknown;
3159
3163
  } | unknown[] | string | number | boolean | null;
3160
- categories?: (string | FlowCategory)[] | null;
3164
+ categories?: (string | CanvasCategory)[] | null;
3161
3165
  seo?: {
3162
3166
  /**
3163
3167
  * Search result title (falls back to document title)
@@ -3199,7 +3203,7 @@ interface Flow {
3199
3203
  status?: ('draft' | 'published' | 'archived') | null;
3200
3204
  isFeatured?: boolean | null;
3201
3205
  publishedAt?: string | null;
3202
- tags?: (string | FlowTag)[] | null;
3206
+ tags?: (string | CanvasTag)[] | null;
3203
3207
  metadata?: {
3204
3208
  [k: string]: unknown;
3205
3209
  } | unknown[] | string | number | boolean | null;
@@ -3210,9 +3214,9 @@ interface Flow {
3210
3214
  }
3211
3215
  /**
3212
3216
  * This interface was referenced by `Config`'s JSON-Schema
3213
- * via the `definition` "flow-categories".
3217
+ * via the `definition` "canvas-categories".
3214
3218
  */
3215
- interface FlowCategory {
3219
+ interface CanvasCategory {
3216
3220
  id: string;
3217
3221
  _order?: string | null;
3218
3222
  tenant?: (string | null) | Tenant;
@@ -3227,7 +3231,7 @@ interface FlowCategory {
3227
3231
  */
3228
3232
  description?: string | null;
3229
3233
  image?: (string | null) | Image;
3230
- parent?: (string | null) | FlowCategory;
3234
+ parent?: (string | null) | CanvasCategory;
3231
3235
  color?: string | null;
3232
3236
  updatedAt: string;
3233
3237
  createdAt: string;
@@ -3235,9 +3239,9 @@ interface FlowCategory {
3235
3239
  }
3236
3240
  /**
3237
3241
  * This interface was referenced by `Config`'s JSON-Schema
3238
- * via the `definition` "flow-tags".
3242
+ * via the `definition` "canvas-tags".
3239
3243
  */
3240
- interface FlowTag {
3244
+ interface CanvasTag {
3241
3245
  id: string;
3242
3246
  _order?: string | null;
3243
3247
  tenant?: (string | null) | Tenant;
@@ -3252,7 +3256,7 @@ interface FlowTag {
3252
3256
  */
3253
3257
  description?: string | null;
3254
3258
  image?: (string | null) | Image;
3255
- parent?: (string | null) | FlowTag;
3259
+ parent?: (string | null) | CanvasTag;
3256
3260
  color?: string | null;
3257
3261
  updatedAt: string;
3258
3262
  createdAt: string;
@@ -3260,9 +3264,9 @@ interface FlowTag {
3260
3264
  }
3261
3265
  /**
3262
3266
  * This interface was referenced by `Config`'s JSON-Schema
3263
- * via the `definition` "flow-node-types".
3267
+ * via the `definition` "canvas-node-types".
3264
3268
  */
3265
- interface FlowNodeType {
3269
+ interface CanvasNodeType {
3266
3270
  id: string;
3267
3271
  _order?: string | null;
3268
3272
  tenant?: (string | null) | Tenant;
@@ -3325,9 +3329,9 @@ interface FlowNodeType {
3325
3329
  }
3326
3330
  /**
3327
3331
  * This interface was referenced by `Config`'s JSON-Schema
3328
- * via the `definition` "flow-edge-types".
3332
+ * via the `definition` "canvas-edge-types".
3329
3333
  */
3330
- interface FlowEdgeType {
3334
+ interface CanvasEdgeType {
3331
3335
  id: string;
3332
3336
  _order?: string | null;
3333
3337
  tenant?: (string | null) | Tenant;
@@ -3946,20 +3950,20 @@ interface PayloadLockedDocument {
3946
3950
  relationTo: 'link-tags';
3947
3951
  value: string | LinkTag;
3948
3952
  } | null) | ({
3949
- relationTo: 'flows';
3950
- value: string | Flow;
3953
+ relationTo: 'canvases';
3954
+ value: string | Canvase;
3951
3955
  } | null) | ({
3952
- relationTo: 'flow-node-types';
3953
- value: string | FlowNodeType;
3956
+ relationTo: 'canvas-node-types';
3957
+ value: string | CanvasNodeType;
3954
3958
  } | null) | ({
3955
- relationTo: 'flow-edge-types';
3956
- value: string | FlowEdgeType;
3959
+ relationTo: 'canvas-edge-types';
3960
+ value: string | CanvasEdgeType;
3957
3961
  } | null) | ({
3958
- relationTo: 'flow-categories';
3959
- value: string | FlowCategory;
3962
+ relationTo: 'canvas-categories';
3963
+ value: string | CanvasCategory;
3960
3964
  } | null) | ({
3961
- relationTo: 'flow-tags';
3962
- value: string | FlowTag;
3965
+ relationTo: 'canvas-tags';
3966
+ value: string | CanvasTag;
3963
3967
  } | null) | ({
3964
3968
  relationTo: 'videos';
3965
3969
  value: string | Video;
@@ -4564,6 +4568,7 @@ interface ProductOptionsSelect<T extends boolean = true> {
4564
4568
  variant?: T;
4565
4569
  title?: T;
4566
4570
  sku?: T;
4571
+ isUnlimited?: T;
4567
4572
  stock?: T;
4568
4573
  reservedStock?: T;
4569
4574
  priceAdjustment?: T;
@@ -5601,9 +5606,9 @@ interface LinkTagsSelect<T extends boolean = true> {
5601
5606
  }
5602
5607
  /**
5603
5608
  * This interface was referenced by `Config`'s JSON-Schema
5604
- * via the `definition` "flows_select".
5609
+ * via the `definition` "canvases_select".
5605
5610
  */
5606
- interface FlowsSelect<T extends boolean = true> {
5611
+ interface CanvasesSelect<T extends boolean = true> {
5607
5612
  tenant?: T;
5608
5613
  title?: T;
5609
5614
  description?: T;
@@ -5636,9 +5641,9 @@ interface FlowsSelect<T extends boolean = true> {
5636
5641
  }
5637
5642
  /**
5638
5643
  * This interface was referenced by `Config`'s JSON-Schema
5639
- * via the `definition` "flow-node-types_select".
5644
+ * via the `definition` "canvas-node-types_select".
5640
5645
  */
5641
- interface FlowNodeTypesSelect<T extends boolean = true> {
5646
+ interface CanvasNodeTypesSelect<T extends boolean = true> {
5642
5647
  _order?: T;
5643
5648
  tenant?: T;
5644
5649
  title?: T;
@@ -5673,9 +5678,9 @@ interface FlowNodeTypesSelect<T extends boolean = true> {
5673
5678
  }
5674
5679
  /**
5675
5680
  * This interface was referenced by `Config`'s JSON-Schema
5676
- * via the `definition` "flow-edge-types_select".
5681
+ * via the `definition` "canvas-edge-types_select".
5677
5682
  */
5678
- interface FlowEdgeTypesSelect<T extends boolean = true> {
5683
+ interface CanvasEdgeTypesSelect<T extends boolean = true> {
5679
5684
  _order?: T;
5680
5685
  tenant?: T;
5681
5686
  title?: T;
@@ -5707,9 +5712,9 @@ interface FlowEdgeTypesSelect<T extends boolean = true> {
5707
5712
  }
5708
5713
  /**
5709
5714
  * This interface was referenced by `Config`'s JSON-Schema
5710
- * via the `definition` "flow-categories_select".
5715
+ * via the `definition` "canvas-categories_select".
5711
5716
  */
5712
- interface FlowCategoriesSelect<T extends boolean = true> {
5717
+ interface CanvasCategoriesSelect<T extends boolean = true> {
5713
5718
  _order?: T;
5714
5719
  tenant?: T;
5715
5720
  title?: T;
@@ -5725,9 +5730,9 @@ interface FlowCategoriesSelect<T extends boolean = true> {
5725
5730
  }
5726
5731
  /**
5727
5732
  * This interface was referenced by `Config`'s JSON-Schema
5728
- * via the `definition` "flow-tags_select".
5733
+ * via the `definition` "canvas-tags_select".
5729
5734
  */
5730
- interface FlowTagsSelect<T extends boolean = true> {
5735
+ interface CanvasTagsSelect<T extends boolean = true> {
5731
5736
  _order?: T;
5732
5737
  tenant?: T;
5733
5738
  title?: T;
@@ -6188,4 +6193,4 @@ declare module 'payload' {
6188
6193
  }
6189
6194
  }
6190
6195
 
6191
- export type { Document as $, Audience as A, BrandLogo as B, Config as C, ProductCollection as D, Exchange as E, Form as F, Customer as G, CustomerGroup as H, IframeBlock as I, CustomerAddress as J, FulfillmentItem as K, LiveStream as L, ReturnProduct as M, ExchangeProduct as N, Order as O, Product as P, OrderStatusLog as Q, Return as R, SupportedTimezones as S, Transaction as T, UserAuthOperations as U, Video as V, Discount as W, Post as X, PostAuthor as Y, PostCategory as Z, PostTag as _, OrderProduct as a, ShippingPoliciesSelect as a$, DocumentType as a0, DocumentCategory as a1, Playlist as a2, PlaylistCategory as a3, PlaylistTag as a4, Music as a5, MusicCategory as a6, MusicTag as a7, Gallery as a8, GalleryCategory as a9, SystemMediaSelect as aA, AudiencesSelect as aB, EmailLogsSelect as aC, TenantsSelect as aD, TenantMetadataSelect as aE, ApiUsageSelect as aF, SubscriptionsSelect as aG, BillingHistorySelect as aH, TenantLogosSelect as aI, ProductsSelect as aJ, ProductVariantsSelect as aK, ProductOptionsSelect as aL, ProductCategoriesSelect as aM, ProductTagsSelect as aN, ProductCollectionsSelect as aO, BrandsSelect as aP, BrandLogosSelect as aQ, OrdersSelect as aR, OrderProductsSelect as aS, TransactionsSelect as aT, OrderStatusLogsSelect as aU, FulfillmentsSelect as aV, FulfillmentItemsSelect as aW, ReturnsSelect as aX, ReturnProductsSelect as aY, ExchangesSelect as aZ, ExchangeProductsSelect as a_, GalleryTag as aa, GalleryItem as ab, Link as ac, LinkCategory as ad, LinkTag as ae, Flow as af, FlowCategory as ag, FlowTag as ah, FlowNodeType as ai, FlowEdgeType as aj, Thread as ak, ThreadCategory as al, Comment as am, Reaction as an, ReactionType as ao, Bookmark as ap, Report as aq, CommunityBan as ar, FormSubmission as as, PayloadKv as at, PayloadLockedDocument as au, PayloadPreference as av, PayloadMigration as aw, UsersSelect as ax, FieldConfigsSelect as ay, ImagesSelect as az, Fulfillment as b, CustomersSelect as b0, CustomerAddressesSelect as b1, CustomerGroupsSelect as b2, CartsSelect as b3, CartItemsSelect as b4, DiscountsSelect as b5, PostsSelect as b6, PostAuthorsSelect as b7, PostCategoriesSelect as b8, PostTagsSelect as b9, CommentsSelect as bA, ReactionsSelect as bB, ReactionTypesSelect as bC, BookmarksSelect as bD, ThreadCategoriesSelect as bE, ReportsSelect as bF, CommunityBansSelect as bG, FormsSelect as bH, FormSubmissionsSelect as bI, PayloadKvSelect as bJ, PayloadLockedDocumentsSelect as bK, PayloadPreferencesSelect as bL, PayloadMigrationsSelect as bM, CollectionsWidget as bN, Auth as bO, DocumentsSelect as ba, DocumentCategoriesSelect as bb, DocumentTypesSelect as bc, PlaylistsSelect as bd, PlaylistCategoriesSelect as be, PlaylistTagsSelect as bf, MusicsSelect as bg, MusicCategoriesSelect as bh, MusicTagsSelect as bi, GalleriesSelect as bj, GalleryCategoriesSelect as bk, GalleryTagsSelect as bl, GalleryItemsSelect as bm, LinksSelect as bn, LinkCategoriesSelect as bo, LinkTagsSelect as bp, FlowsSelect as bq, FlowNodeTypesSelect as br, FlowEdgeTypesSelect as bs, FlowCategoriesSelect as bt, FlowTagsSelect as bu, VideosSelect as bv, VideoCategoriesSelect as bw, VideoTagsSelect as bx, LiveStreamsSelect as by, ThreadsSelect as bz, Cart as c, CartItem as d, CustomerAuthOperations as e, PlayerBlock as f, CodeBlock as g, User as h, Tenant as i, FieldConfig as j, Image as k, SystemMedia as l, EmailLog as m, TenantMetadatum as n, ApiUsage as o, Subscription as p, BillingHistory as q, TenantLogo as r, VideoCategory as s, VideoTag as t, ProductVariant as u, ProductOption as v, ProductCategory as w, ProductTag as x, Brand as y, ShippingPolicy as z };
6196
+ export type { Document as $, Audience as A, BrandLogo as B, Config as C, ProductCollection as D, Exchange as E, Form as F, Customer as G, CustomerGroup as H, IframeBlock as I, CustomerAddress as J, FulfillmentItem as K, LiveStream as L, ReturnProduct as M, ExchangeProduct as N, Order as O, Product as P, OrderStatusLog as Q, Return as R, SupportedTimezones as S, Transaction as T, UserAuthOperations as U, Video as V, Discount as W, Post as X, PostAuthor as Y, PostCategory as Z, PostTag as _, OrderProduct as a, ShippingPoliciesSelect as a$, DocumentType as a0, DocumentCategory as a1, Playlist as a2, PlaylistCategory as a3, PlaylistTag as a4, Music as a5, MusicCategory as a6, MusicTag as a7, Gallery as a8, GalleryCategory as a9, SystemMediaSelect as aA, AudiencesSelect as aB, EmailLogsSelect as aC, TenantsSelect as aD, TenantMetadataSelect as aE, ApiUsageSelect as aF, SubscriptionsSelect as aG, BillingHistorySelect as aH, TenantLogosSelect as aI, ProductsSelect as aJ, ProductVariantsSelect as aK, ProductOptionsSelect as aL, ProductCategoriesSelect as aM, ProductTagsSelect as aN, ProductCollectionsSelect as aO, BrandsSelect as aP, BrandLogosSelect as aQ, OrdersSelect as aR, OrderProductsSelect as aS, TransactionsSelect as aT, OrderStatusLogsSelect as aU, FulfillmentsSelect as aV, FulfillmentItemsSelect as aW, ReturnsSelect as aX, ReturnProductsSelect as aY, ExchangesSelect as aZ, ExchangeProductsSelect as a_, GalleryTag as aa, GalleryItem as ab, Link as ac, LinkCategory as ad, LinkTag as ae, Canvase as af, CanvasCategory as ag, CanvasTag as ah, CanvasNodeType as ai, CanvasEdgeType as aj, Thread as ak, ThreadCategory as al, Comment as am, Reaction as an, ReactionType as ao, Bookmark as ap, Report as aq, CommunityBan as ar, FormSubmission as as, PayloadKv as at, PayloadLockedDocument as au, PayloadPreference as av, PayloadMigration as aw, UsersSelect as ax, FieldConfigsSelect as ay, ImagesSelect as az, Fulfillment as b, CustomersSelect as b0, CustomerAddressesSelect as b1, CustomerGroupsSelect as b2, CartsSelect as b3, CartItemsSelect as b4, DiscountsSelect as b5, PostsSelect as b6, PostAuthorsSelect as b7, PostCategoriesSelect as b8, PostTagsSelect as b9, CommentsSelect as bA, ReactionsSelect as bB, ReactionTypesSelect as bC, BookmarksSelect as bD, ThreadCategoriesSelect as bE, ReportsSelect as bF, CommunityBansSelect as bG, FormsSelect as bH, FormSubmissionsSelect as bI, PayloadKvSelect as bJ, PayloadLockedDocumentsSelect as bK, PayloadPreferencesSelect as bL, PayloadMigrationsSelect as bM, CollectionsWidget as bN, Auth as bO, DocumentsSelect as ba, DocumentCategoriesSelect as bb, DocumentTypesSelect as bc, PlaylistsSelect as bd, PlaylistCategoriesSelect as be, PlaylistTagsSelect as bf, MusicsSelect as bg, MusicCategoriesSelect as bh, MusicTagsSelect as bi, GalleriesSelect as bj, GalleryCategoriesSelect as bk, GalleryTagsSelect as bl, GalleryItemsSelect as bm, LinksSelect as bn, LinkCategoriesSelect as bo, LinkTagsSelect as bp, CanvasesSelect as bq, CanvasNodeTypesSelect as br, CanvasEdgeTypesSelect as bs, CanvasCategoriesSelect as bt, CanvasTagsSelect as bu, VideosSelect as bv, VideoCategoriesSelect as bw, VideoTagsSelect as bx, LiveStreamsSelect as by, ThreadsSelect as bz, Cart as c, CartItem as d, CustomerAuthOperations as e, PlayerBlock as f, CodeBlock as g, User as h, Tenant as i, FieldConfig as j, Image as k, SystemMedia as l, EmailLog as m, TenantMetadatum as n, ApiUsage as o, Subscription as p, BillingHistory as q, TenantLogo as r, VideoCategory as s, VideoTag as t, ProductVariant as u, ProductOption as v, ProductCategory as w, ProductTag as x, Brand as y, ShippingPolicy as z };
@@ -78,11 +78,11 @@ interface Config {
78
78
  links: Link;
79
79
  'link-categories': LinkCategory;
80
80
  'link-tags': LinkTag;
81
- flows: Flow;
82
- 'flow-node-types': FlowNodeType;
83
- 'flow-edge-types': FlowEdgeType;
84
- 'flow-categories': FlowCategory;
85
- 'flow-tags': FlowTag;
81
+ canvases: Canvase;
82
+ 'canvas-node-types': CanvasNodeType;
83
+ 'canvas-edge-types': CanvasEdgeType;
84
+ 'canvas-categories': CanvasCategory;
85
+ 'canvas-tags': CanvasTag;
86
86
  videos: Video;
87
87
  'video-categories': VideoCategory;
88
88
  'video-tags': VideoTag;
@@ -211,11 +211,11 @@ interface Config {
211
211
  links: LinksSelect<false> | LinksSelect<true>;
212
212
  'link-categories': LinkCategoriesSelect<false> | LinkCategoriesSelect<true>;
213
213
  'link-tags': LinkTagsSelect<false> | LinkTagsSelect<true>;
214
- flows: FlowsSelect<false> | FlowsSelect<true>;
215
- 'flow-node-types': FlowNodeTypesSelect<false> | FlowNodeTypesSelect<true>;
216
- 'flow-edge-types': FlowEdgeTypesSelect<false> | FlowEdgeTypesSelect<true>;
217
- 'flow-categories': FlowCategoriesSelect<false> | FlowCategoriesSelect<true>;
218
- 'flow-tags': FlowTagsSelect<false> | FlowTagsSelect<true>;
214
+ canvases: CanvasesSelect<false> | CanvasesSelect<true>;
215
+ 'canvas-node-types': CanvasNodeTypesSelect<false> | CanvasNodeTypesSelect<true>;
216
+ 'canvas-edge-types': CanvasEdgeTypesSelect<false> | CanvasEdgeTypesSelect<true>;
217
+ 'canvas-categories': CanvasCategoriesSelect<false> | CanvasCategoriesSelect<true>;
218
+ 'canvas-tags': CanvasTagsSelect<false> | CanvasTagsSelect<true>;
219
219
  videos: VideosSelect<false> | VideosSelect<true>;
220
220
  'video-categories': VideoCategoriesSelect<false> | VideoCategoriesSelect<true>;
221
221
  'video-tags': VideoTagsSelect<false> | VideoTagsSelect<true>;
@@ -370,7 +370,7 @@ interface Tenant {
370
370
  */
371
371
  owner: string | User;
372
372
  plan: 'free' | 'starter' | 'basic' | 'pro' | 'enterprise';
373
- features?: ('ecommerce' | 'customers' | 'playlists' | 'galleries' | 'links' | 'forms' | 'posts' | 'documents' | 'flows' | 'videos' | 'live-streaming' | 'community')[] | null;
373
+ features?: ('ecommerce' | 'customers' | 'playlists' | 'galleries' | 'links' | 'forms' | 'posts' | 'documents' | 'canvas' | 'videos' | 'live-streaming' | 'community')[] | null;
374
374
  /**
375
375
  * Require email verification on customer registration. Verification token is delivered via webhook (operation: verification). You must configure a webhook URL first.
376
376
  */
@@ -433,7 +433,7 @@ interface Tenant {
433
433
  interface FieldConfig {
434
434
  id: string;
435
435
  tenant?: (string | null) | Tenant;
436
- collectionSlug: 'products' | 'product-variants' | 'product-options' | 'product-collections' | 'product-categories' | 'product-tags' | 'brands' | 'discounts' | 'shipping-policies' | 'orders' | 'carts' | 'transactions' | 'fulfillments' | 'returns' | 'exchanges' | 'customers' | 'customer-groups' | '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' | 'links' | 'link-categories' | 'link-tags' | 'flows' | 'flow-categories' | 'flow-tags' | 'flow-node-types' | 'flow-edge-types' | 'videos' | 'video-categories' | 'video-tags' | 'live-streams' | 'forms' | 'threads' | 'comments' | 'reactions' | 'reaction-types' | 'bookmarks' | 'thread-categories';
436
+ collectionSlug: 'products' | 'product-variants' | 'product-options' | 'product-collections' | 'product-categories' | 'product-tags' | 'brands' | 'discounts' | 'shipping-policies' | 'orders' | 'carts' | 'transactions' | 'fulfillments' | 'returns' | 'exchanges' | 'customers' | 'customer-groups' | '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' | 'links' | 'link-categories' | 'link-tags' | 'canvases' | 'canvas-categories' | 'canvas-tags' | 'canvas-node-types' | 'canvas-edge-types' | 'videos' | 'video-categories' | 'video-tags' | 'live-streams' | 'forms' | 'threads' | 'comments' | 'reactions' | 'reaction-types' | 'bookmarks' | 'thread-categories';
437
437
  isHidden?: boolean | null;
438
438
  hiddenFields?: {
439
439
  [k: string]: unknown;
@@ -1487,7 +1487,11 @@ interface ProductOption {
1487
1487
  * Option-specific SKU
1488
1488
  */
1489
1489
  sku?: string | null;
1490
- stock: number;
1490
+ /**
1491
+ * Sell without tracking inventory
1492
+ */
1493
+ isUnlimited?: boolean | null;
1494
+ stock?: number | null;
1491
1495
  /**
1492
1496
  * Paid orders in transit (informational — stock alone gates new purchases)
1493
1497
  */
@@ -3143,9 +3147,9 @@ interface LinkTag {
3143
3147
  }
3144
3148
  /**
3145
3149
  * This interface was referenced by `Config`'s JSON-Schema
3146
- * via the `definition` "flows".
3150
+ * via the `definition` "canvases".
3147
3151
  */
3148
- interface Flow {
3152
+ interface Canvase {
3149
3153
  id: string;
3150
3154
  tenant?: (string | null) | Tenant;
3151
3155
  title: string;
@@ -3157,7 +3161,7 @@ interface Flow {
3157
3161
  canvas: {
3158
3162
  [k: string]: unknown;
3159
3163
  } | unknown[] | string | number | boolean | null;
3160
- categories?: (string | FlowCategory)[] | null;
3164
+ categories?: (string | CanvasCategory)[] | null;
3161
3165
  seo?: {
3162
3166
  /**
3163
3167
  * Search result title (falls back to document title)
@@ -3199,7 +3203,7 @@ interface Flow {
3199
3203
  status?: ('draft' | 'published' | 'archived') | null;
3200
3204
  isFeatured?: boolean | null;
3201
3205
  publishedAt?: string | null;
3202
- tags?: (string | FlowTag)[] | null;
3206
+ tags?: (string | CanvasTag)[] | null;
3203
3207
  metadata?: {
3204
3208
  [k: string]: unknown;
3205
3209
  } | unknown[] | string | number | boolean | null;
@@ -3210,9 +3214,9 @@ interface Flow {
3210
3214
  }
3211
3215
  /**
3212
3216
  * This interface was referenced by `Config`'s JSON-Schema
3213
- * via the `definition` "flow-categories".
3217
+ * via the `definition` "canvas-categories".
3214
3218
  */
3215
- interface FlowCategory {
3219
+ interface CanvasCategory {
3216
3220
  id: string;
3217
3221
  _order?: string | null;
3218
3222
  tenant?: (string | null) | Tenant;
@@ -3227,7 +3231,7 @@ interface FlowCategory {
3227
3231
  */
3228
3232
  description?: string | null;
3229
3233
  image?: (string | null) | Image;
3230
- parent?: (string | null) | FlowCategory;
3234
+ parent?: (string | null) | CanvasCategory;
3231
3235
  color?: string | null;
3232
3236
  updatedAt: string;
3233
3237
  createdAt: string;
@@ -3235,9 +3239,9 @@ interface FlowCategory {
3235
3239
  }
3236
3240
  /**
3237
3241
  * This interface was referenced by `Config`'s JSON-Schema
3238
- * via the `definition` "flow-tags".
3242
+ * via the `definition` "canvas-tags".
3239
3243
  */
3240
- interface FlowTag {
3244
+ interface CanvasTag {
3241
3245
  id: string;
3242
3246
  _order?: string | null;
3243
3247
  tenant?: (string | null) | Tenant;
@@ -3252,7 +3256,7 @@ interface FlowTag {
3252
3256
  */
3253
3257
  description?: string | null;
3254
3258
  image?: (string | null) | Image;
3255
- parent?: (string | null) | FlowTag;
3259
+ parent?: (string | null) | CanvasTag;
3256
3260
  color?: string | null;
3257
3261
  updatedAt: string;
3258
3262
  createdAt: string;
@@ -3260,9 +3264,9 @@ interface FlowTag {
3260
3264
  }
3261
3265
  /**
3262
3266
  * This interface was referenced by `Config`'s JSON-Schema
3263
- * via the `definition` "flow-node-types".
3267
+ * via the `definition` "canvas-node-types".
3264
3268
  */
3265
- interface FlowNodeType {
3269
+ interface CanvasNodeType {
3266
3270
  id: string;
3267
3271
  _order?: string | null;
3268
3272
  tenant?: (string | null) | Tenant;
@@ -3325,9 +3329,9 @@ interface FlowNodeType {
3325
3329
  }
3326
3330
  /**
3327
3331
  * This interface was referenced by `Config`'s JSON-Schema
3328
- * via the `definition` "flow-edge-types".
3332
+ * via the `definition` "canvas-edge-types".
3329
3333
  */
3330
- interface FlowEdgeType {
3334
+ interface CanvasEdgeType {
3331
3335
  id: string;
3332
3336
  _order?: string | null;
3333
3337
  tenant?: (string | null) | Tenant;
@@ -3946,20 +3950,20 @@ interface PayloadLockedDocument {
3946
3950
  relationTo: 'link-tags';
3947
3951
  value: string | LinkTag;
3948
3952
  } | null) | ({
3949
- relationTo: 'flows';
3950
- value: string | Flow;
3953
+ relationTo: 'canvases';
3954
+ value: string | Canvase;
3951
3955
  } | null) | ({
3952
- relationTo: 'flow-node-types';
3953
- value: string | FlowNodeType;
3956
+ relationTo: 'canvas-node-types';
3957
+ value: string | CanvasNodeType;
3954
3958
  } | null) | ({
3955
- relationTo: 'flow-edge-types';
3956
- value: string | FlowEdgeType;
3959
+ relationTo: 'canvas-edge-types';
3960
+ value: string | CanvasEdgeType;
3957
3961
  } | null) | ({
3958
- relationTo: 'flow-categories';
3959
- value: string | FlowCategory;
3962
+ relationTo: 'canvas-categories';
3963
+ value: string | CanvasCategory;
3960
3964
  } | null) | ({
3961
- relationTo: 'flow-tags';
3962
- value: string | FlowTag;
3965
+ relationTo: 'canvas-tags';
3966
+ value: string | CanvasTag;
3963
3967
  } | null) | ({
3964
3968
  relationTo: 'videos';
3965
3969
  value: string | Video;
@@ -4564,6 +4568,7 @@ interface ProductOptionsSelect<T extends boolean = true> {
4564
4568
  variant?: T;
4565
4569
  title?: T;
4566
4570
  sku?: T;
4571
+ isUnlimited?: T;
4567
4572
  stock?: T;
4568
4573
  reservedStock?: T;
4569
4574
  priceAdjustment?: T;
@@ -5601,9 +5606,9 @@ interface LinkTagsSelect<T extends boolean = true> {
5601
5606
  }
5602
5607
  /**
5603
5608
  * This interface was referenced by `Config`'s JSON-Schema
5604
- * via the `definition` "flows_select".
5609
+ * via the `definition` "canvases_select".
5605
5610
  */
5606
- interface FlowsSelect<T extends boolean = true> {
5611
+ interface CanvasesSelect<T extends boolean = true> {
5607
5612
  tenant?: T;
5608
5613
  title?: T;
5609
5614
  description?: T;
@@ -5636,9 +5641,9 @@ interface FlowsSelect<T extends boolean = true> {
5636
5641
  }
5637
5642
  /**
5638
5643
  * This interface was referenced by `Config`'s JSON-Schema
5639
- * via the `definition` "flow-node-types_select".
5644
+ * via the `definition` "canvas-node-types_select".
5640
5645
  */
5641
- interface FlowNodeTypesSelect<T extends boolean = true> {
5646
+ interface CanvasNodeTypesSelect<T extends boolean = true> {
5642
5647
  _order?: T;
5643
5648
  tenant?: T;
5644
5649
  title?: T;
@@ -5673,9 +5678,9 @@ interface FlowNodeTypesSelect<T extends boolean = true> {
5673
5678
  }
5674
5679
  /**
5675
5680
  * This interface was referenced by `Config`'s JSON-Schema
5676
- * via the `definition` "flow-edge-types_select".
5681
+ * via the `definition` "canvas-edge-types_select".
5677
5682
  */
5678
- interface FlowEdgeTypesSelect<T extends boolean = true> {
5683
+ interface CanvasEdgeTypesSelect<T extends boolean = true> {
5679
5684
  _order?: T;
5680
5685
  tenant?: T;
5681
5686
  title?: T;
@@ -5707,9 +5712,9 @@ interface FlowEdgeTypesSelect<T extends boolean = true> {
5707
5712
  }
5708
5713
  /**
5709
5714
  * This interface was referenced by `Config`'s JSON-Schema
5710
- * via the `definition` "flow-categories_select".
5715
+ * via the `definition` "canvas-categories_select".
5711
5716
  */
5712
- interface FlowCategoriesSelect<T extends boolean = true> {
5717
+ interface CanvasCategoriesSelect<T extends boolean = true> {
5713
5718
  _order?: T;
5714
5719
  tenant?: T;
5715
5720
  title?: T;
@@ -5725,9 +5730,9 @@ interface FlowCategoriesSelect<T extends boolean = true> {
5725
5730
  }
5726
5731
  /**
5727
5732
  * This interface was referenced by `Config`'s JSON-Schema
5728
- * via the `definition` "flow-tags_select".
5733
+ * via the `definition` "canvas-tags_select".
5729
5734
  */
5730
- interface FlowTagsSelect<T extends boolean = true> {
5735
+ interface CanvasTagsSelect<T extends boolean = true> {
5731
5736
  _order?: T;
5732
5737
  tenant?: T;
5733
5738
  title?: T;
@@ -6188,4 +6193,4 @@ declare module 'payload' {
6188
6193
  }
6189
6194
  }
6190
6195
 
6191
- export type { Document as $, Audience as A, BrandLogo as B, Config as C, ProductCollection as D, Exchange as E, Form as F, Customer as G, CustomerGroup as H, IframeBlock as I, CustomerAddress as J, FulfillmentItem as K, LiveStream as L, ReturnProduct as M, ExchangeProduct as N, Order as O, Product as P, OrderStatusLog as Q, Return as R, SupportedTimezones as S, Transaction as T, UserAuthOperations as U, Video as V, Discount as W, Post as X, PostAuthor as Y, PostCategory as Z, PostTag as _, OrderProduct as a, ShippingPoliciesSelect as a$, DocumentType as a0, DocumentCategory as a1, Playlist as a2, PlaylistCategory as a3, PlaylistTag as a4, Music as a5, MusicCategory as a6, MusicTag as a7, Gallery as a8, GalleryCategory as a9, SystemMediaSelect as aA, AudiencesSelect as aB, EmailLogsSelect as aC, TenantsSelect as aD, TenantMetadataSelect as aE, ApiUsageSelect as aF, SubscriptionsSelect as aG, BillingHistorySelect as aH, TenantLogosSelect as aI, ProductsSelect as aJ, ProductVariantsSelect as aK, ProductOptionsSelect as aL, ProductCategoriesSelect as aM, ProductTagsSelect as aN, ProductCollectionsSelect as aO, BrandsSelect as aP, BrandLogosSelect as aQ, OrdersSelect as aR, OrderProductsSelect as aS, TransactionsSelect as aT, OrderStatusLogsSelect as aU, FulfillmentsSelect as aV, FulfillmentItemsSelect as aW, ReturnsSelect as aX, ReturnProductsSelect as aY, ExchangesSelect as aZ, ExchangeProductsSelect as a_, GalleryTag as aa, GalleryItem as ab, Link as ac, LinkCategory as ad, LinkTag as ae, Flow as af, FlowCategory as ag, FlowTag as ah, FlowNodeType as ai, FlowEdgeType as aj, Thread as ak, ThreadCategory as al, Comment as am, Reaction as an, ReactionType as ao, Bookmark as ap, Report as aq, CommunityBan as ar, FormSubmission as as, PayloadKv as at, PayloadLockedDocument as au, PayloadPreference as av, PayloadMigration as aw, UsersSelect as ax, FieldConfigsSelect as ay, ImagesSelect as az, Fulfillment as b, CustomersSelect as b0, CustomerAddressesSelect as b1, CustomerGroupsSelect as b2, CartsSelect as b3, CartItemsSelect as b4, DiscountsSelect as b5, PostsSelect as b6, PostAuthorsSelect as b7, PostCategoriesSelect as b8, PostTagsSelect as b9, CommentsSelect as bA, ReactionsSelect as bB, ReactionTypesSelect as bC, BookmarksSelect as bD, ThreadCategoriesSelect as bE, ReportsSelect as bF, CommunityBansSelect as bG, FormsSelect as bH, FormSubmissionsSelect as bI, PayloadKvSelect as bJ, PayloadLockedDocumentsSelect as bK, PayloadPreferencesSelect as bL, PayloadMigrationsSelect as bM, CollectionsWidget as bN, Auth as bO, DocumentsSelect as ba, DocumentCategoriesSelect as bb, DocumentTypesSelect as bc, PlaylistsSelect as bd, PlaylistCategoriesSelect as be, PlaylistTagsSelect as bf, MusicsSelect as bg, MusicCategoriesSelect as bh, MusicTagsSelect as bi, GalleriesSelect as bj, GalleryCategoriesSelect as bk, GalleryTagsSelect as bl, GalleryItemsSelect as bm, LinksSelect as bn, LinkCategoriesSelect as bo, LinkTagsSelect as bp, FlowsSelect as bq, FlowNodeTypesSelect as br, FlowEdgeTypesSelect as bs, FlowCategoriesSelect as bt, FlowTagsSelect as bu, VideosSelect as bv, VideoCategoriesSelect as bw, VideoTagsSelect as bx, LiveStreamsSelect as by, ThreadsSelect as bz, Cart as c, CartItem as d, CustomerAuthOperations as e, PlayerBlock as f, CodeBlock as g, User as h, Tenant as i, FieldConfig as j, Image as k, SystemMedia as l, EmailLog as m, TenantMetadatum as n, ApiUsage as o, Subscription as p, BillingHistory as q, TenantLogo as r, VideoCategory as s, VideoTag as t, ProductVariant as u, ProductOption as v, ProductCategory as w, ProductTag as x, Brand as y, ShippingPolicy as z };
6196
+ export type { Document as $, Audience as A, BrandLogo as B, Config as C, ProductCollection as D, Exchange as E, Form as F, Customer as G, CustomerGroup as H, IframeBlock as I, CustomerAddress as J, FulfillmentItem as K, LiveStream as L, ReturnProduct as M, ExchangeProduct as N, Order as O, Product as P, OrderStatusLog as Q, Return as R, SupportedTimezones as S, Transaction as T, UserAuthOperations as U, Video as V, Discount as W, Post as X, PostAuthor as Y, PostCategory as Z, PostTag as _, OrderProduct as a, ShippingPoliciesSelect as a$, DocumentType as a0, DocumentCategory as a1, Playlist as a2, PlaylistCategory as a3, PlaylistTag as a4, Music as a5, MusicCategory as a6, MusicTag as a7, Gallery as a8, GalleryCategory as a9, SystemMediaSelect as aA, AudiencesSelect as aB, EmailLogsSelect as aC, TenantsSelect as aD, TenantMetadataSelect as aE, ApiUsageSelect as aF, SubscriptionsSelect as aG, BillingHistorySelect as aH, TenantLogosSelect as aI, ProductsSelect as aJ, ProductVariantsSelect as aK, ProductOptionsSelect as aL, ProductCategoriesSelect as aM, ProductTagsSelect as aN, ProductCollectionsSelect as aO, BrandsSelect as aP, BrandLogosSelect as aQ, OrdersSelect as aR, OrderProductsSelect as aS, TransactionsSelect as aT, OrderStatusLogsSelect as aU, FulfillmentsSelect as aV, FulfillmentItemsSelect as aW, ReturnsSelect as aX, ReturnProductsSelect as aY, ExchangesSelect as aZ, ExchangeProductsSelect as a_, GalleryTag as aa, GalleryItem as ab, Link as ac, LinkCategory as ad, LinkTag as ae, Canvase as af, CanvasCategory as ag, CanvasTag as ah, CanvasNodeType as ai, CanvasEdgeType as aj, Thread as ak, ThreadCategory as al, Comment as am, Reaction as an, ReactionType as ao, Bookmark as ap, Report as aq, CommunityBan as ar, FormSubmission as as, PayloadKv as at, PayloadLockedDocument as au, PayloadPreference as av, PayloadMigration as aw, UsersSelect as ax, FieldConfigsSelect as ay, ImagesSelect as az, Fulfillment as b, CustomersSelect as b0, CustomerAddressesSelect as b1, CustomerGroupsSelect as b2, CartsSelect as b3, CartItemsSelect as b4, DiscountsSelect as b5, PostsSelect as b6, PostAuthorsSelect as b7, PostCategoriesSelect as b8, PostTagsSelect as b9, CommentsSelect as bA, ReactionsSelect as bB, ReactionTypesSelect as bC, BookmarksSelect as bD, ThreadCategoriesSelect as bE, ReportsSelect as bF, CommunityBansSelect as bG, FormsSelect as bH, FormSubmissionsSelect as bI, PayloadKvSelect as bJ, PayloadLockedDocumentsSelect as bK, PayloadPreferencesSelect as bL, PayloadMigrationsSelect as bM, CollectionsWidget as bN, Auth as bO, DocumentsSelect as ba, DocumentCategoriesSelect as bb, DocumentTypesSelect as bc, PlaylistsSelect as bd, PlaylistCategoriesSelect as be, PlaylistTagsSelect as bf, MusicsSelect as bg, MusicCategoriesSelect as bh, MusicTagsSelect as bi, GalleriesSelect as bj, GalleryCategoriesSelect as bk, GalleryTagsSelect as bl, GalleryItemsSelect as bm, LinksSelect as bn, LinkCategoriesSelect as bo, LinkTagsSelect as bp, CanvasesSelect as bq, CanvasNodeTypesSelect as br, CanvasEdgeTypesSelect as bs, CanvasCategoriesSelect as bt, CanvasTagsSelect as bu, VideosSelect as bv, VideoCategoriesSelect as bw, VideoTagsSelect as bx, LiveStreamsSelect as by, ThreadsSelect as bz, Cart as c, CartItem as d, CustomerAuthOperations as e, PlayerBlock as f, CodeBlock as g, User as h, Tenant as i, FieldConfig as j, Image as k, SystemMedia as l, EmailLog as m, TenantMetadatum as n, ApiUsage as o, Subscription as p, BillingHistory as q, TenantLogo as r, VideoCategory as s, VideoTag as t, ProductVariant as u, ProductOption as v, ProductCategory as w, ProductTag as x, Brand as y, ShippingPolicy as z };
@@ -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-DQZQAXex.cjs';
4
- import './payload-types-DCVm1syH.cjs';
3
+ import { P as PublicCollection } from './const-B8iE-mDN.cjs';
4
+ import './payload-types-Cp10MoF6.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-Bk3-zigV.js';
4
- import './payload-types-DCVm1syH.js';
3
+ import { P as PublicCollection } from './const-Chw71pKS.js';
4
+ import './payload-types-Cp10MoF6.js';
5
5
 
6
6
  interface UseRealtimeQueryOptions {
7
7
  /** Filter events to specific collections. Empty/undefined = all collections. */