@wix/auto_sdk_categories_categories 1.0.90 → 1.0.92

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 (29) hide show
  1. package/build/cjs/{categories-v1-category-categories.universal-D6LO11T_.d.ts → categories-v1-category-categories.universal-DnNky4wI.d.ts} +52 -13
  2. package/build/cjs/index.d.ts +4 -3
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +2 -2
  5. package/build/cjs/index.typings.js.map +1 -1
  6. package/build/cjs/meta.d.ts +17 -2
  7. package/build/cjs/meta.js.map +1 -1
  8. package/build/es/{categories-v1-category-categories.universal-D6LO11T_.d.mts → categories-v1-category-categories.universal-DnNky4wI.d.mts} +52 -13
  9. package/build/es/index.d.mts +4 -3
  10. package/build/es/index.mjs.map +1 -1
  11. package/build/es/index.typings.d.mts +2 -2
  12. package/build/es/index.typings.mjs.map +1 -1
  13. package/build/es/meta.d.mts +17 -2
  14. package/build/es/meta.mjs.map +1 -1
  15. package/build/internal/cjs/{categories-v1-category-categories.universal-DTJ8R-cl.d.ts → categories-v1-category-categories.universal-D899aF2E.d.ts} +52 -13
  16. package/build/internal/cjs/index.d.ts +4 -3
  17. package/build/internal/cjs/index.js.map +1 -1
  18. package/build/internal/cjs/index.typings.d.ts +2 -2
  19. package/build/internal/cjs/index.typings.js.map +1 -1
  20. package/build/internal/cjs/meta.d.ts +17 -2
  21. package/build/internal/cjs/meta.js.map +1 -1
  22. package/build/internal/es/{categories-v1-category-categories.universal-DTJ8R-cl.d.mts → categories-v1-category-categories.universal-D899aF2E.d.mts} +52 -13
  23. package/build/internal/es/index.d.mts +4 -3
  24. package/build/internal/es/index.mjs.map +1 -1
  25. package/build/internal/es/index.typings.d.mts +2 -2
  26. package/build/internal/es/index.typings.mjs.map +1 -1
  27. package/build/internal/es/meta.d.mts +17 -2
  28. package/build/internal/es/meta.mjs.map +1 -1
  29. package/package.json +2 -2
@@ -2364,6 +2364,13 @@ interface CreateCategoryResponse {
2364
2364
  /** Created category. */
2365
2365
  category?: Category;
2366
2366
  }
2367
+ interface DuplicateHandleErrorData {
2368
+ /**
2369
+ * existing category id with provided handle
2370
+ * @format GUID
2371
+ */
2372
+ existingCategoryId?: string;
2373
+ }
2367
2374
  interface GetCategoryRequest {
2368
2375
  /**
2369
2376
  * Category ID.
@@ -3896,6 +3903,10 @@ type CreateCategoryApplicationErrors = {
3896
3903
  code?: 'DUPLICATE_SLUG';
3897
3904
  description?: string;
3898
3905
  data?: Record<string, any>;
3906
+ } | {
3907
+ code?: 'DUPLICATE_HANDLE';
3908
+ description?: string;
3909
+ data?: DuplicateHandleErrorData;
3899
3910
  } | {
3900
3911
  code?: 'CATEGORIES_LIMIT_PER_TREE_EXCEEDED';
3901
3912
  description?: string;
@@ -3918,6 +3929,10 @@ type CreateCategoryApplicationErrors = {
3918
3929
  data?: Record<string, any>;
3919
3930
  };
3920
3931
  /** @docsIgnore */
3932
+ type CreateCategoryValidationErrors = {
3933
+ ruleName?: 'ID_NOT_ALLOWED_IN_REQUEST';
3934
+ };
3935
+ /** @docsIgnore */
3921
3936
  type UpdateCategoryApplicationErrors = {
3922
3937
  code?: 'DUPLICATE_SLUG';
3923
3938
  description?: string;
@@ -4046,6 +4061,15 @@ interface EventMetadata extends BaseEventMetadata {
4046
4061
  * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
4047
4062
  */
4048
4063
  entityEventSequence?: string | null;
4064
+ accountInfo?: AccountInfoMetadata;
4065
+ }
4066
+ interface AccountInfoMetadata {
4067
+ /** ID of the Wix account associated with the event */
4068
+ accountId: string;
4069
+ /** ID of the Wix site associated with the event. Only included when the event is tied to a specific site. */
4070
+ siteId?: string;
4071
+ /** ID of the parent Wix account. Only included when 'accountId' belongs to a child account. */
4072
+ parentAccountId?: string;
4049
4073
  }
4050
4074
  interface CategoryMovedEnvelope {
4051
4075
  data: CategoryMoved;
@@ -4302,6 +4326,7 @@ declare function onCategoryUpdated(handler: (event: CategoryUpdatedEnvelope) =>
4302
4326
  */
4303
4327
  declare function createCategory(category: NonNullablePaths<Category, `name` | `parentCategory._id`, 3>, options?: NonNullablePaths<CreateCategoryOptions, `treeReference` | `treeReference.appNamespace`, 3>): Promise<NonNullablePaths<Category, `itemCounter` | `breadcrumbsInfo.breadcrumbs` | `breadcrumbsInfo.breadcrumbs.${number}.categoryId` | `breadcrumbsInfo.breadcrumbs.${number}.categoryName` | `breadcrumbsInfo.breadcrumbs.${number}.categorySlug` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `treeReference.appNamespace`, 6> & {
4304
4328
  __applicationErrorsType?: CreateCategoryApplicationErrors;
4329
+ __validationErrorsType?: CreateCategoryValidationErrors;
4305
4330
  }>;
4306
4331
  interface CreateCategoryOptions {
4307
4332
  /** Category tree reference details. */
@@ -4547,37 +4572,37 @@ interface CategoriesQueryBuilder {
4547
4572
  /** @param propertyName - Property whose value is compared with `value`.
4548
4573
  * @param value - Value to compare against.
4549
4574
  */
4550
- eq: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'description' | 'visible' | 'parentCategory.id' | 'parentCategory.index' | 'slug' | 'managingAppId', value: any) => CategoriesQueryBuilder;
4575
+ eq: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'visible' | 'parentCategory.id' | 'parentCategory.index' | 'slug' | 'treeReference.appNamespace' | 'treeReference.treeKey' | 'managingAppId', value: any) => CategoriesQueryBuilder;
4551
4576
  /** @param propertyName - Property whose value is compared with `value`.
4552
4577
  * @param value - Value to compare against.
4553
4578
  */
4554
- ne: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'description' | 'visible' | 'parentCategory.id' | 'parentCategory.index' | 'slug' | 'managingAppId', value: any) => CategoriesQueryBuilder;
4579
+ ne: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'visible' | 'parentCategory.id' | 'parentCategory.index' | 'slug' | 'treeReference.appNamespace' | 'treeReference.treeKey' | 'managingAppId', value: any) => CategoriesQueryBuilder;
4555
4580
  /** @param propertyName - Property whose value is compared with `value`.
4556
4581
  * @param value - Value to compare against.
4557
4582
  */
4558
- ge: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'description' | 'parentCategory.id' | 'parentCategory.index' | 'slug' | 'managingAppId', value: any) => CategoriesQueryBuilder;
4583
+ ge: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'parentCategory.id' | 'parentCategory.index' | 'slug' | 'treeReference.appNamespace' | 'treeReference.treeKey' | 'managingAppId', value: any) => CategoriesQueryBuilder;
4559
4584
  /** @param propertyName - Property whose value is compared with `value`.
4560
4585
  * @param value - Value to compare against.
4561
4586
  */
4562
- gt: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'description' | 'parentCategory.id' | 'parentCategory.index' | 'slug' | 'managingAppId', value: any) => CategoriesQueryBuilder;
4587
+ gt: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'parentCategory.id' | 'parentCategory.index' | 'slug' | 'treeReference.appNamespace' | 'treeReference.treeKey' | 'managingAppId', value: any) => CategoriesQueryBuilder;
4563
4588
  /** @param propertyName - Property whose value is compared with `value`.
4564
4589
  * @param value - Value to compare against.
4565
4590
  */
4566
- le: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'description' | 'parentCategory.id' | 'parentCategory.index' | 'slug' | 'managingAppId', value: any) => CategoriesQueryBuilder;
4591
+ le: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'parentCategory.id' | 'parentCategory.index' | 'slug' | 'treeReference.appNamespace' | 'treeReference.treeKey' | 'managingAppId', value: any) => CategoriesQueryBuilder;
4567
4592
  /** @param propertyName - Property whose value is compared with `value`.
4568
4593
  * @param value - Value to compare against.
4569
4594
  */
4570
- lt: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'description' | 'parentCategory.id' | 'parentCategory.index' | 'slug' | 'managingAppId', value: any) => CategoriesQueryBuilder;
4595
+ lt: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'parentCategory.id' | 'parentCategory.index' | 'slug' | 'treeReference.appNamespace' | 'treeReference.treeKey' | 'managingAppId', value: any) => CategoriesQueryBuilder;
4571
4596
  /** @param propertyName - Property whose value is compared with `string`.
4572
4597
  * @param string - String to compare against. Case-insensitive.
4573
4598
  */
4574
- startsWith: (propertyName: '_id' | 'name' | 'description' | 'parentCategory.id' | 'slug' | 'managingAppId', value: string) => CategoriesQueryBuilder;
4599
+ startsWith: (propertyName: '_id' | 'name' | 'parentCategory.id' | 'slug' | 'treeReference.appNamespace' | 'treeReference.treeKey' | 'managingAppId', value: string) => CategoriesQueryBuilder;
4575
4600
  /** @param propertyName - Property whose value is compared with `values`.
4576
4601
  * @param values - List of values to compare against.
4577
4602
  */
4578
- hasSome: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'description' | 'visible' | 'parentCategory.id' | 'parentCategory.index' | 'slug' | 'managingAppId', value: any[]) => CategoriesQueryBuilder;
4579
- in: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'description' | 'visible' | 'parentCategory.id' | 'parentCategory.index' | 'slug' | 'managingAppId', value: any) => CategoriesQueryBuilder;
4580
- exists: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'description' | 'visible' | 'parentCategory.id' | 'parentCategory.index' | 'slug' | 'managingAppId', value: boolean) => CategoriesQueryBuilder;
4603
+ hasSome: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'visible' | 'parentCategory.id' | 'parentCategory.index' | 'slug' | 'treeReference.appNamespace' | 'treeReference.treeKey' | 'managingAppId', value: any[]) => CategoriesQueryBuilder;
4604
+ in: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'visible' | 'parentCategory.id' | 'parentCategory.index' | 'slug' | 'treeReference.appNamespace' | 'treeReference.treeKey' | 'managingAppId', value: any) => CategoriesQueryBuilder;
4605
+ exists: (propertyName: '_id' | '_createdDate' | '_updatedDate' | 'name' | 'visible' | 'parentCategory.id' | 'parentCategory.index' | 'slug' | 'treeReference.appNamespace' | 'treeReference.treeKey' | 'managingAppId', value: boolean) => CategoriesQueryBuilder;
4581
4606
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
4582
4607
  ascending: (...propertyNames: Array<'_createdDate' | '_updatedDate' | 'name' | 'parentCategory.id' | 'parentCategory.index' | 'managingAppId'>) => CategoriesQueryBuilder;
4583
4608
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
@@ -4599,7 +4624,13 @@ interface CategoryQuerySpec extends QuerySpec {
4599
4624
  paging: 'cursor';
4600
4625
  wql: [
4601
4626
  {
4602
- fields: ['_id', 'description', 'slug', 'visible'];
4627
+ fields: [
4628
+ '_id',
4629
+ 'slug',
4630
+ 'treeReference.appNamespace',
4631
+ 'treeReference.treeKey',
4632
+ 'visible'
4633
+ ];
4603
4634
  operators: '*';
4604
4635
  sort: 'NONE';
4605
4636
  },
@@ -4692,13 +4723,21 @@ interface CategorySearchSpec extends SearchSpec {
4692
4723
  'parentCategory._id',
4693
4724
  'parentCategory.index',
4694
4725
  'slug',
4726
+ 'treeReference.appNamespace',
4727
+ 'treeReference.treeKey',
4695
4728
  'visible'
4696
4729
  ];
4697
4730
  paging: 'cursor';
4698
4731
  wql: [
4699
4732
  {
4700
4733
  operators: '*';
4701
- fields: ['_id', 'slug', 'visible'];
4734
+ fields: [
4735
+ '_id',
4736
+ 'slug',
4737
+ 'treeReference.appNamespace',
4738
+ 'treeReference.treeKey',
4739
+ 'visible'
4740
+ ];
4702
4741
  sort: 'NONE';
4703
4742
  },
4704
4743
  {
@@ -5251,4 +5290,4 @@ interface BulkSetItemCategoriesOptions {
5251
5290
  treeReference: TreeReference;
5252
5291
  }
5253
5292
 
5254
- export { type CategoryItemAddedToCategoryEnvelope as $, type BulkRemoveItemsFromCategoryApplicationErrors as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkRemoveItemFromCategoriesOptions as E, type BulkRemoveItemFromCategoriesResponse as F, type GetCategoryOptions as G, type BulkRemoveItemFromCategoriesApplicationErrors as H, type ItemReference as I, type ListItemsInCategoryResponse as J, type ListCategoriesForItemOptions as K, type ListItemsInCategoryOptions as L, type MoveCategoryOptions as M, type ListCategoriesForItemResponse as N, type ListCategoriesForItemsOptions as O, type ListCategoriesForItemsResponse as P, type ListTreesResponse as Q, type SetArrangedItemsOptions as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type SetArrangedItemsResponse as V, type SetArrangedItemsApplicationErrors as W, type GetArrangedItemsResponse as X, type CategoryMovedEnvelope as Y, type CategoryCreatedEnvelope as Z, type CategoryDeletedEnvelope as _, type CreateCategoryOptions as a, type BreadcrumbsInfo as a$, type CategoryItemRemovedFromCategoryEnvelope as a0, type CategoryItemsArrangedInCategoryEnvelope as a1, type CategoryUpdatedEnvelope as a2, type CategoryQuery as a3, type QueryCategoriesOptions as a4, typedQueryCategories as a5, type CategoriesQueryBuilder as a6, NodeType as a7, WidthType as a8, PluginContainerDataAlignment as a9, Type as aA, Alignment as aB, Layout as aC, AppType as aD, InitialExpandedItems as aE, Direction as aF, VerticalAlignment as aG, NullValue as aH, Scaling as aI, ImagePosition as aJ, VerticalAlignmentAlignment as aK, ResponsivenessBehaviour as aL, DesignTarget as aM, SingleEntityOpsRequestedFields as aN, SortOrder as aO, RequestedFields as aP, SortType as aQ, SortDirection as aR, MissingValues as aS, ScalarType as aT, NestedAggregationType as aU, Interval as aV, AggregationType as aW, Mode as aX, Position as aY, MoveItemInCategoryRequestPosition as aZ, WebhookIdentityType as a_, ButtonDataType as aa, Target as ab, TextAlignment as ac, LineStyle as ad, Width as ae, DividerDataAlignment as af, ViewMode as ag, LayoutType as ah, Orientation as ai, Crop as aj, ThumbnailsAlignment as ak, GIFType as al, Source as am, StylesPosition as an, MapType as ao, ViewRole as ap, VoteRole as aq, PollLayoutType as ar, PollLayoutDirection as as, BackgroundType as at, DecorationType as au, FontType as av, ImageStylesPosition as aw, AspectRatio as ax, Resizing as ay, Placement as az, type CreateCategoryApplicationErrors as b, type Poll as b$, type Breadcrumb as b0, type ParentCategory as b1, type SeoSchema as b2, type Keyword as b3, type Tag as b4, type Settings as b5, type RichContent as b6, type Node as b7, type NodeDataOneOf as b8, type NodeStyle as b9, type GalleryOptionsLayout as bA, type ItemStyle as bB, type Thumbnails as bC, type GIFData as bD, type GIF as bE, type HeadingData as bF, type HTMLData as bG, type HTMLDataDataOneOf as bH, type ImageData as bI, type StylesBorder as bJ, type ImageDataStyles as bK, type LinkPreviewData as bL, type LinkPreviewDataStyles as bM, type MapData as bN, type MapSettings as bO, type ParagraphData as bP, type PollData as bQ, type Permissions as bR, type Option as bS, type PollSettings as bT, type PollLayout as bU, type OptionLayout as bV, type Gradient as bW, type Background as bX, type BackgroundBackgroundOneOf as bY, type PollDesign as bZ, type OptionDesign as b_, type ButtonData as ba, type Border as bb, type Colors as bc, type PluginContainerData as bd, type PluginContainerDataWidth as be, type PluginContainerDataWidthDataOneOf as bf, type Spoiler as bg, type Height as bh, type Styles as bi, type Link as bj, type LinkDataOneOf as bk, type Rel as bl, type CodeBlockData as bm, type TextStyle as bn, type DividerData as bo, type FileData as bp, type FileSource as bq, type FileSourceDataOneOf as br, type PDFSettings as bs, type GalleryData as bt, type Media as bu, type Image as bv, type Video as bw, type Item as bx, type ItemDataOneOf as by, type GalleryOptions as bz, type UpdateCategoryOptions as c, type UpdateCategoryResponse as c$, type PollDataLayout as c0, type Design as c1, type TextData as c2, type Decoration as c3, type DecorationDataOneOf as c4, type AnchorData as c5, type ColorData as c6, type LinkData as c7, type MentionData as c8, type FontSizeData as c9, type BlockquoteData as cA, type CaptionData as cB, type LayoutData as cC, type BackgroundImage as cD, type LayoutCellData as cE, type Metadata as cF, type DocumentStyle as cG, type TextNodeStyle as cH, type ExtendedFields as cI, type InvalidateCache as cJ, type InvalidateCacheGetByOneOf as cK, type App as cL, type Page as cM, type URI as cN, type File as cO, type CustomTag as cP, type CategoryMoved as cQ, type ItemAddedToCategory as cR, type ItemsAddedToCategory as cS, type ItemRemovedFromCategory as cT, type ItemsRemovedFromCategory as cU, type ItemsArrangedInCategory as cV, type CreateCategoryRequest as cW, type CreateCategoryResponse as cX, type GetCategoryRequest as cY, type GetCategoryResponse as cZ, type UpdateCategoryRequest as c_, type SpoilerData as ca, type FontFamilyData as cb, type AppEmbedData as cc, type AppEmbedDataAppDataOneOf as cd, type BookingData as ce, type EventData as cf, type ButtonStyles as cg, type ImageStyles as ch, type RibbonStyles as ci, type CardStyles as cj, type PricingData as ck, type VideoData as cl, type PlaybackOptions as cm, type EmbedData as cn, type Oembed as co, type CollapsibleListData as cp, type TableData as cq, type Dimensions as cr, type TableCellData as cs, type CellStyle as ct, type BorderColors as cu, type BorderWidths as cv, type ListValue as cw, type AudioData as cx, type OrderedListData as cy, type BulletedListData as cz, type UpdateCategoryApplicationErrors as d, type BulkActionMetadata as d$, type DeleteCategoryRequest as d0, type DeleteCategoryResponse as d1, type QueryCategoriesRequest as d2, type CursorQuery as d3, type CursorQueryPagingMethodOneOf as d4, type Sorting as d5, type CursorPaging as d6, type QueryCategoriesResponse as d7, type CursorPagingMetadata as d8, type Cursors as d9, type RangeResults as dA, type AggregationResultsScalarResult as dB, type NestedValueAggregationResult as dC, type ValueResult as dD, type RangeResult as dE, type ScalarResult as dF, type NestedResultValue as dG, type NestedResultValueResultOneOf as dH, type Results as dI, type DateHistogramResult as dJ, type GroupByValueResults as dK, type DateHistogramResults as dL, type NestedResults as dM, type AggregationResults as dN, type AggregationResultsResultOneOf as dO, type DeprecatedSearchCategoriesWithOffsetRequest as dP, type OffsetSearch as dQ, type OffsetSearchPagingMethodOneOf as dR, type Paging as dS, type DeprecatedSearchCategoriesWithOffsetResponse as dT, type PagingMetadata as dU, type CountCategoriesRequest as dV, type MoveCategoryRequest as dW, type BulkUpdateCategoriesRequest as dX, type BulkCategoriesResult as dY, type ItemMetadata as dZ, type ApplicationError as d_, type ListCompactCategoriesByIdsRequest as da, type ListCompactCategoriesByIdsResponse as db, type CompactCategory as dc, type SearchCategoriesRequest as dd, type CursorSearch as de, type CursorSearchPagingMethodOneOf as df, type Aggregation as dg, type AggregationKindOneOf as dh, type RangeBucket as di, type IncludeMissingValuesOptions as dj, type ValueAggregation as dk, type ValueAggregationOptionsOneOf as dl, type RangeAggregation as dm, type ScalarAggregation as dn, type DateHistogramAggregation as dp, type NestedAggregationItem as dq, type NestedAggregationItemKindOneOf as dr, type NestedAggregation as ds, type SearchDetails as dt, type AggregationData as du, type ValueAggregationResult as dv, type RangeAggregationResult as dw, type NestedAggregationResults as dx, type NestedAggregationResultsResultOneOf as dy, type ValueResults as dz, type CategorySearch as e, type StylesPositionWithLiterals as e$, type UpdateCategoryVisibilityRequest as e0, type BulkShowCategoriesRequest as e1, type BulkDeleteCategoriesRequest as e2, type BulkDeleteCategoriesResponse as e3, type BulkDeleteCategoriesResponseBulkCategoriesResult as e4, type BulkAddItemsToCategoryRequest as e5, type BulkItemsToCategoryResult as e6, type ItemReferenceMetadata as e7, type BulkAddItemToCategoriesRequest as e8, type BulkItemToCategoriesResult as e9, type MessageEnvelope as eA, type IdentificationData as eB, type IdentificationDataIdOneOf as eC, type AccountInfo as eD, type BaseEventMetadata as eE, type EventMetadata as eF, type CategoriesQueryResult as eG, type CategoryQuerySpec as eH, type CategorySearchSpec as eI, type ListItemsInCategoryOptionsPagingMethodOneOf as eJ, type BulkSetItemCategoriesOptions as eK, type NodeTypeWithLiterals as eL, type WidthTypeWithLiterals as eM, type PluginContainerDataAlignmentWithLiterals as eN, type ButtonDataTypeWithLiterals as eO, type TargetWithLiterals as eP, type TextAlignmentWithLiterals as eQ, type LineStyleWithLiterals as eR, type WidthWithLiterals as eS, type DividerDataAlignmentWithLiterals as eT, type ViewModeWithLiterals as eU, type LayoutTypeWithLiterals as eV, type OrientationWithLiterals as eW, type CropWithLiterals as eX, type ThumbnailsAlignmentWithLiterals as eY, type GIFTypeWithLiterals as eZ, type SourceWithLiterals as e_, type BulkRemoveItemsFromCategoryRequest as ea, type BulkRemoveItemFromCategoriesRequest as eb, type ListItemsInCategoryRequest as ec, type ListItemsInCategoryRequestPagingMethodOneOf as ed, type PagingMetadataV2 as ee, type ListCategoriesForItemRequest as ef, type ListCategoriesForItemsRequest as eg, type MapItemToCategories as eh, type ListTreesRequest as ei, type MoveItemInCategoryRequest as ej, type MoveItemInCategoryResponse as ek, type SetArrangedItemsRequest as el, type GetArrangedItemsRequest as em, type BulkSetItemCategoriesRequest as en, type BulkSetItemCategoriesResponse as eo, type GetCategoriesTreeRequest as ep, type GetCategoriesTreeResponse as eq, type CategoryTreeNode as er, type DomainEvent as es, type DomainEventBodyOneOf as et, type EntityCreatedEvent as eu, type RestoreInfo as ev, type EntityUpdatedEvent as ew, type EntityDeletedEvent as ex, type ActionEvent as ey, type Empty as ez, type SearchCategoriesResponse as f, listItemsInCategory as f$, type MapTypeWithLiterals as f0, type ViewRoleWithLiterals as f1, type VoteRoleWithLiterals as f2, type PollLayoutTypeWithLiterals as f3, type PollLayoutDirectionWithLiterals as f4, type BackgroundTypeWithLiterals as f5, type DecorationTypeWithLiterals as f6, type FontTypeWithLiterals as f7, type ImageStylesPositionWithLiterals as f8, type AspectRatioWithLiterals as f9, type PositionWithLiterals as fA, type MoveItemInCategoryRequestPositionWithLiterals as fB, type WebhookIdentityTypeWithLiterals as fC, type BulkSetItemCategoriesApplicationErrors as fD, type CommonQueryWithEntityContext as fE, type CommonSearchWithEntityContext as fF, onCategoryMoved as fG, onCategoryCreated as fH, onCategoryDeleted as fI, onCategoryItemAddedToCategory as fJ, onCategoryItemRemovedFromCategory as fK, onCategoryItemsArrangedInCategory as fL, onCategoryUpdated as fM, createCategory as fN, getCategory as fO, updateCategory as fP, deleteCategory as fQ, queryCategories as fR, countCategories as fS, moveCategory as fT, bulkUpdateCategories as fU, updateCategoryVisibility as fV, bulkShowCategories as fW, bulkAddItemsToCategory as fX, bulkAddItemToCategories as fY, bulkRemoveItemsFromCategory as fZ, bulkRemoveItemFromCategories as f_, type ResizingWithLiterals as fa, type PlacementWithLiterals as fb, type TypeWithLiterals as fc, type AlignmentWithLiterals as fd, type LayoutWithLiterals as fe, type AppTypeWithLiterals as ff, type InitialExpandedItemsWithLiterals as fg, type DirectionWithLiterals as fh, type VerticalAlignmentWithLiterals as fi, type NullValueWithLiterals as fj, type ScalingWithLiterals as fk, type ImagePositionWithLiterals as fl, type VerticalAlignmentAlignmentWithLiterals as fm, type ResponsivenessBehaviourWithLiterals as fn, type DesignTargetWithLiterals as fo, type SingleEntityOpsRequestedFieldsWithLiterals as fp, type SortOrderWithLiterals as fq, type RequestedFieldsWithLiterals as fr, type SortTypeWithLiterals as fs, type SortDirectionWithLiterals as ft, type MissingValuesWithLiterals as fu, type ScalarTypeWithLiterals as fv, type NestedAggregationTypeWithLiterals as fw, type IntervalWithLiterals as fx, type AggregationTypeWithLiterals as fy, type ModeWithLiterals as fz, type CountCategoriesOptions as g, listCategoriesForItem as g0, listCategoriesForItems as g1, listTrees as g2, setArrangedItems as g3, getArrangedItems as g4, type CountCategoriesResponse as h, type MoveCategoryResponse as i, type MoveCategoryApplicationErrors as j, type MaskedCategory as k, type BulkUpdateCategoriesResponse as l, type BulkUpdateCategoriesApplicationErrors as m, type UpdateCategoryVisibilityOptions as n, type UpdateCategoryVisibilityResponse as o, type UpdateCategoryVisibilityApplicationErrors as p, type BulkShowCategoriesOptions as q, type BulkShowCategoriesResponse as r, type BulkAddItemsToCategoryOptions as s, type BulkAddItemsToCategoryResponse as t, type BulkAddItemsToCategoryApplicationErrors as u, type BulkAddItemToCategoriesOptions as v, type BulkAddItemToCategoriesResponse as w, type BulkAddItemToCategoriesApplicationErrors as x, type BulkRemoveItemsFromCategoryOptions as y, type BulkRemoveItemsFromCategoryResponse as z };
5293
+ export { type CategoryDeletedEnvelope as $, type BulkRemoveItemsFromCategoryResponse as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkRemoveItemsFromCategoryApplicationErrors as E, type BulkRemoveItemFromCategoriesOptions as F, type GetCategoryOptions as G, type BulkRemoveItemFromCategoriesResponse as H, type ItemReference as I, type BulkRemoveItemFromCategoriesApplicationErrors as J, type ListItemsInCategoryResponse as K, type ListItemsInCategoryOptions as L, type MoveCategoryOptions as M, type ListCategoriesForItemOptions as N, type ListCategoriesForItemResponse as O, type ListCategoriesForItemsOptions as P, type ListCategoriesForItemsResponse as Q, type ListTreesResponse as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type SetArrangedItemsOptions as V, type SetArrangedItemsResponse as W, type SetArrangedItemsApplicationErrors as X, type GetArrangedItemsResponse as Y, type CategoryMovedEnvelope as Z, type CategoryCreatedEnvelope as _, type CreateCategoryOptions as a, WebhookIdentityType as a$, type CategoryItemAddedToCategoryEnvelope as a0, type CategoryItemRemovedFromCategoryEnvelope as a1, type CategoryItemsArrangedInCategoryEnvelope as a2, type CategoryUpdatedEnvelope as a3, type CategoryQuery as a4, type QueryCategoriesOptions as a5, typedQueryCategories as a6, type CategoriesQueryBuilder as a7, NodeType as a8, WidthType as a9, Placement as aA, Type as aB, Alignment as aC, Layout as aD, AppType as aE, InitialExpandedItems as aF, Direction as aG, VerticalAlignment as aH, NullValue as aI, Scaling as aJ, ImagePosition as aK, VerticalAlignmentAlignment as aL, ResponsivenessBehaviour as aM, DesignTarget as aN, SingleEntityOpsRequestedFields as aO, SortOrder as aP, RequestedFields as aQ, SortType as aR, SortDirection as aS, MissingValues as aT, ScalarType as aU, NestedAggregationType as aV, Interval as aW, AggregationType as aX, Mode as aY, Position as aZ, MoveItemInCategoryRequestPosition as a_, PluginContainerDataAlignment as aa, ButtonDataType as ab, Target as ac, TextAlignment as ad, LineStyle as ae, Width as af, DividerDataAlignment as ag, ViewMode as ah, LayoutType as ai, Orientation as aj, Crop as ak, ThumbnailsAlignment as al, GIFType as am, Source as an, StylesPosition as ao, MapType as ap, ViewRole as aq, VoteRole as ar, PollLayoutType as as, PollLayoutDirection as at, BackgroundType as au, DecorationType as av, FontType as aw, ImageStylesPosition as ax, AspectRatio as ay, Resizing as az, type CreateCategoryApplicationErrors as b, type OptionDesign as b$, type BreadcrumbsInfo as b0, type Breadcrumb as b1, type ParentCategory as b2, type SeoSchema as b3, type Keyword as b4, type Tag as b5, type Settings as b6, type RichContent as b7, type Node as b8, type NodeDataOneOf as b9, type GalleryOptions as bA, type GalleryOptionsLayout as bB, type ItemStyle as bC, type Thumbnails as bD, type GIFData as bE, type GIF as bF, type HeadingData as bG, type HTMLData as bH, type HTMLDataDataOneOf as bI, type ImageData as bJ, type StylesBorder as bK, type ImageDataStyles as bL, type LinkPreviewData as bM, type LinkPreviewDataStyles as bN, type MapData as bO, type MapSettings as bP, type ParagraphData as bQ, type PollData as bR, type Permissions as bS, type Option as bT, type PollSettings as bU, type PollLayout as bV, type OptionLayout as bW, type Gradient as bX, type Background as bY, type BackgroundBackgroundOneOf as bZ, type PollDesign as b_, type NodeStyle as ba, type ButtonData as bb, type Border as bc, type Colors as bd, type PluginContainerData as be, type PluginContainerDataWidth as bf, type PluginContainerDataWidthDataOneOf as bg, type Spoiler as bh, type Height as bi, type Styles as bj, type Link as bk, type LinkDataOneOf as bl, type Rel as bm, type CodeBlockData as bn, type TextStyle as bo, type DividerData as bp, type FileData as bq, type FileSource as br, type FileSourceDataOneOf as bs, type PDFSettings as bt, type GalleryData as bu, type Media as bv, type Image as bw, type Video as bx, type Item as by, type ItemDataOneOf as bz, type CreateCategoryValidationErrors as c, type GetCategoryResponse as c$, type Poll as c0, type PollDataLayout as c1, type Design as c2, type TextData as c3, type Decoration as c4, type DecorationDataOneOf as c5, type AnchorData as c6, type ColorData as c7, type LinkData as c8, type MentionData as c9, type BulletedListData as cA, type BlockquoteData as cB, type CaptionData as cC, type LayoutData as cD, type BackgroundImage as cE, type LayoutCellData as cF, type Metadata as cG, type DocumentStyle as cH, type TextNodeStyle as cI, type ExtendedFields as cJ, type InvalidateCache as cK, type InvalidateCacheGetByOneOf as cL, type App as cM, type Page as cN, type URI as cO, type File as cP, type CustomTag as cQ, type CategoryMoved as cR, type ItemAddedToCategory as cS, type ItemsAddedToCategory as cT, type ItemRemovedFromCategory as cU, type ItemsRemovedFromCategory as cV, type ItemsArrangedInCategory as cW, type CreateCategoryRequest as cX, type CreateCategoryResponse as cY, type DuplicateHandleErrorData as cZ, type GetCategoryRequest as c_, type FontSizeData as ca, type SpoilerData as cb, type FontFamilyData as cc, type AppEmbedData as cd, type AppEmbedDataAppDataOneOf as ce, type BookingData as cf, type EventData as cg, type ButtonStyles as ch, type ImageStyles as ci, type RibbonStyles as cj, type CardStyles as ck, type PricingData as cl, type VideoData as cm, type PlaybackOptions as cn, type EmbedData as co, type Oembed as cp, type CollapsibleListData as cq, type TableData as cr, type Dimensions as cs, type TableCellData as ct, type CellStyle as cu, type BorderColors as cv, type BorderWidths as cw, type ListValue as cx, type AudioData as cy, type OrderedListData as cz, type UpdateCategoryOptions as d, type ItemMetadata as d$, type UpdateCategoryRequest as d0, type UpdateCategoryResponse as d1, type DeleteCategoryRequest as d2, type DeleteCategoryResponse as d3, type QueryCategoriesRequest as d4, type CursorQuery as d5, type CursorQueryPagingMethodOneOf as d6, type Sorting as d7, type CursorPaging as d8, type QueryCategoriesResponse as d9, type NestedAggregationResultsResultOneOf as dA, type ValueResults as dB, type RangeResults as dC, type AggregationResultsScalarResult as dD, type NestedValueAggregationResult as dE, type ValueResult as dF, type RangeResult as dG, type ScalarResult as dH, type NestedResultValue as dI, type NestedResultValueResultOneOf as dJ, type Results as dK, type DateHistogramResult as dL, type GroupByValueResults as dM, type DateHistogramResults as dN, type NestedResults as dO, type AggregationResults as dP, type AggregationResultsResultOneOf as dQ, type DeprecatedSearchCategoriesWithOffsetRequest as dR, type OffsetSearch as dS, type OffsetSearchPagingMethodOneOf as dT, type Paging as dU, type DeprecatedSearchCategoriesWithOffsetResponse as dV, type PagingMetadata as dW, type CountCategoriesRequest as dX, type MoveCategoryRequest as dY, type BulkUpdateCategoriesRequest as dZ, type BulkCategoriesResult as d_, type CursorPagingMetadata as da, type Cursors as db, type ListCompactCategoriesByIdsRequest as dc, type ListCompactCategoriesByIdsResponse as dd, type CompactCategory as de, type SearchCategoriesRequest as df, type CursorSearch as dg, type CursorSearchPagingMethodOneOf as dh, type Aggregation as di, type AggregationKindOneOf as dj, type RangeBucket as dk, type IncludeMissingValuesOptions as dl, type ValueAggregation as dm, type ValueAggregationOptionsOneOf as dn, type RangeAggregation as dp, type ScalarAggregation as dq, type DateHistogramAggregation as dr, type NestedAggregationItem as ds, type NestedAggregationItemKindOneOf as dt, type NestedAggregation as du, type SearchDetails as dv, type AggregationData as dw, type ValueAggregationResult as dx, type RangeAggregationResult as dy, type NestedAggregationResults as dz, type UpdateCategoryApplicationErrors as e, type GIFTypeWithLiterals as e$, type ApplicationError as e0, type BulkActionMetadata as e1, type UpdateCategoryVisibilityRequest as e2, type BulkShowCategoriesRequest as e3, type BulkDeleteCategoriesRequest as e4, type BulkDeleteCategoriesResponse as e5, type BulkDeleteCategoriesResponseBulkCategoriesResult as e6, type BulkAddItemsToCategoryRequest as e7, type BulkItemsToCategoryResult as e8, type ItemReferenceMetadata as e9, type ActionEvent as eA, type Empty as eB, type MessageEnvelope as eC, type IdentificationData as eD, type IdentificationDataIdOneOf as eE, type AccountInfo as eF, type BaseEventMetadata as eG, type EventMetadata as eH, type CategoriesQueryResult as eI, type CategoryQuerySpec as eJ, type CategorySearchSpec as eK, type ListItemsInCategoryOptionsPagingMethodOneOf as eL, type BulkSetItemCategoriesOptions as eM, type NodeTypeWithLiterals as eN, type WidthTypeWithLiterals as eO, type PluginContainerDataAlignmentWithLiterals as eP, type ButtonDataTypeWithLiterals as eQ, type TargetWithLiterals as eR, type TextAlignmentWithLiterals as eS, type LineStyleWithLiterals as eT, type WidthWithLiterals as eU, type DividerDataAlignmentWithLiterals as eV, type ViewModeWithLiterals as eW, type LayoutTypeWithLiterals as eX, type OrientationWithLiterals as eY, type CropWithLiterals as eZ, type ThumbnailsAlignmentWithLiterals as e_, type BulkAddItemToCategoriesRequest as ea, type BulkItemToCategoriesResult as eb, type BulkRemoveItemsFromCategoryRequest as ec, type BulkRemoveItemFromCategoriesRequest as ed, type ListItemsInCategoryRequest as ee, type ListItemsInCategoryRequestPagingMethodOneOf as ef, type PagingMetadataV2 as eg, type ListCategoriesForItemRequest as eh, type ListCategoriesForItemsRequest as ei, type MapItemToCategories as ej, type ListTreesRequest as ek, type MoveItemInCategoryRequest as el, type MoveItemInCategoryResponse as em, type SetArrangedItemsRequest as en, type GetArrangedItemsRequest as eo, type BulkSetItemCategoriesRequest as ep, type BulkSetItemCategoriesResponse as eq, type GetCategoriesTreeRequest as er, type GetCategoriesTreeResponse as es, type CategoryTreeNode as et, type DomainEvent as eu, type DomainEventBodyOneOf as ev, type EntityCreatedEvent as ew, type RestoreInfo as ex, type EntityUpdatedEvent as ey, type EntityDeletedEvent as ez, type CategorySearch as f, bulkRemoveItemsFromCategory as f$, type SourceWithLiterals as f0, type StylesPositionWithLiterals as f1, type MapTypeWithLiterals as f2, type ViewRoleWithLiterals as f3, type VoteRoleWithLiterals as f4, type PollLayoutTypeWithLiterals as f5, type PollLayoutDirectionWithLiterals as f6, type BackgroundTypeWithLiterals as f7, type DecorationTypeWithLiterals as f8, type FontTypeWithLiterals as f9, type AggregationTypeWithLiterals as fA, type ModeWithLiterals as fB, type PositionWithLiterals as fC, type MoveItemInCategoryRequestPositionWithLiterals as fD, type WebhookIdentityTypeWithLiterals as fE, type BulkSetItemCategoriesApplicationErrors as fF, type CommonQueryWithEntityContext as fG, type CommonSearchWithEntityContext as fH, onCategoryMoved as fI, onCategoryCreated as fJ, onCategoryDeleted as fK, onCategoryItemAddedToCategory as fL, onCategoryItemRemovedFromCategory as fM, onCategoryItemsArrangedInCategory as fN, onCategoryUpdated as fO, createCategory as fP, getCategory as fQ, updateCategory as fR, deleteCategory as fS, queryCategories as fT, countCategories as fU, moveCategory as fV, bulkUpdateCategories as fW, updateCategoryVisibility as fX, bulkShowCategories as fY, bulkAddItemsToCategory as fZ, bulkAddItemToCategories as f_, type ImageStylesPositionWithLiterals as fa, type AspectRatioWithLiterals as fb, type ResizingWithLiterals as fc, type PlacementWithLiterals as fd, type TypeWithLiterals as fe, type AlignmentWithLiterals as ff, type LayoutWithLiterals as fg, type AppTypeWithLiterals as fh, type InitialExpandedItemsWithLiterals as fi, type DirectionWithLiterals as fj, type VerticalAlignmentWithLiterals as fk, type NullValueWithLiterals as fl, type ScalingWithLiterals as fm, type ImagePositionWithLiterals as fn, type VerticalAlignmentAlignmentWithLiterals as fo, type ResponsivenessBehaviourWithLiterals as fp, type DesignTargetWithLiterals as fq, type SingleEntityOpsRequestedFieldsWithLiterals as fr, type SortOrderWithLiterals as fs, type RequestedFieldsWithLiterals as ft, type SortTypeWithLiterals as fu, type SortDirectionWithLiterals as fv, type MissingValuesWithLiterals as fw, type ScalarTypeWithLiterals as fx, type NestedAggregationTypeWithLiterals as fy, type IntervalWithLiterals as fz, type SearchCategoriesResponse as g, bulkRemoveItemFromCategories as g0, listItemsInCategory as g1, listCategoriesForItem as g2, listCategoriesForItems as g3, listTrees as g4, setArrangedItems as g5, getArrangedItems as g6, type CountCategoriesOptions as h, type CountCategoriesResponse as i, type MoveCategoryResponse as j, type MoveCategoryApplicationErrors as k, type MaskedCategory as l, type BulkUpdateCategoriesResponse as m, type BulkUpdateCategoriesApplicationErrors as n, type UpdateCategoryVisibilityOptions as o, type UpdateCategoryVisibilityResponse as p, type UpdateCategoryVisibilityApplicationErrors as q, type BulkShowCategoriesOptions as r, type BulkShowCategoriesResponse as s, type BulkAddItemsToCategoryOptions as t, type BulkAddItemsToCategoryResponse as u, type BulkAddItemsToCategoryApplicationErrors as v, type BulkAddItemToCategoriesOptions as w, type BulkAddItemToCategoriesResponse as x, type BulkAddItemToCategoriesApplicationErrors as y, type BulkRemoveItemsFromCategoryOptions as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { C as Category, a as CreateCategoryOptions, b as CreateCategoryApplicationErrors, T as TreeReference, G as GetCategoryOptions, U as UpdateCategory, c as UpdateCategoryOptions, d as UpdateCategoryApplicationErrors, D as DeleteCategoryApplicationErrors, e as CategorySearch, S as SearchCategoriesOptions, f as SearchCategoriesResponse, g as CountCategoriesOptions, h as CountCategoriesResponse, M as MoveCategoryOptions, i as MoveCategoryResponse, j as MoveCategoryApplicationErrors, k as MaskedCategory, B as BulkUpdateCategoriesOptions, l as BulkUpdateCategoriesResponse, m as BulkUpdateCategoriesApplicationErrors, n as UpdateCategoryVisibilityOptions, o as UpdateCategoryVisibilityResponse, p as UpdateCategoryVisibilityApplicationErrors, q as BulkShowCategoriesOptions, r as BulkShowCategoriesResponse, I as ItemReference, s as BulkAddItemsToCategoryOptions, t as BulkAddItemsToCategoryResponse, u as BulkAddItemsToCategoryApplicationErrors, v as BulkAddItemToCategoriesOptions, w as BulkAddItemToCategoriesResponse, x as BulkAddItemToCategoriesApplicationErrors, y as BulkRemoveItemsFromCategoryOptions, z as BulkRemoveItemsFromCategoryResponse, A as BulkRemoveItemsFromCategoryApplicationErrors, E as BulkRemoveItemFromCategoriesOptions, F as BulkRemoveItemFromCategoriesResponse, H as BulkRemoveItemFromCategoriesApplicationErrors, L as ListItemsInCategoryOptions, J as ListItemsInCategoryResponse, K as ListCategoriesForItemOptions, N as ListCategoriesForItemResponse, O as ListCategoriesForItemsOptions, P as ListCategoriesForItemsResponse, Q as ListTreesResponse, R as SetArrangedItemsOptions, V as SetArrangedItemsResponse, W as SetArrangedItemsApplicationErrors, X as GetArrangedItemsResponse, Y as CategoryMovedEnvelope, Z as CategoryCreatedEnvelope, _ as CategoryDeletedEnvelope, $ as CategoryItemAddedToCategoryEnvelope, a0 as CategoryItemRemovedFromCategoryEnvelope, a1 as CategoryItemsArrangedInCategoryEnvelope, a2 as CategoryUpdatedEnvelope, a3 as CategoryQuery, a4 as QueryCategoriesOptions, a5 as typedQueryCategories, a6 as CategoriesQueryBuilder } from './categories-v1-category-categories.universal-D6LO11T_.js';
3
- export { eD as AccountInfo, ey as ActionEvent, dg as Aggregation, du as AggregationData, dh as AggregationKindOneOf, dN as AggregationResults, dO as AggregationResultsResultOneOf, dB as AggregationResultsScalarResult, aW as AggregationType, fy as AggregationTypeWithLiterals, aB as Alignment, fd as AlignmentWithLiterals, c5 as AnchorData, cL as App, cc as AppEmbedData, cd as AppEmbedDataAppDataOneOf, aD as AppType, ff as AppTypeWithLiterals, d_ as ApplicationError, ax as AspectRatio, f9 as AspectRatioWithLiterals, cx as AudioData, bX as Background, bY as BackgroundBackgroundOneOf, cD as BackgroundImage, at as BackgroundType, f5 as BackgroundTypeWithLiterals, eE as BaseEventMetadata, cA as BlockquoteData, ce as BookingData, bb as Border, cu as BorderColors, cv as BorderWidths, b0 as Breadcrumb, a$ as BreadcrumbsInfo, d$ as BulkActionMetadata, e8 as BulkAddItemToCategoriesRequest, e5 as BulkAddItemsToCategoryRequest, dY as BulkCategoriesResult, e2 as BulkDeleteCategoriesRequest, e3 as BulkDeleteCategoriesResponse, e4 as BulkDeleteCategoriesResponseBulkCategoriesResult, e9 as BulkItemToCategoriesResult, e6 as BulkItemsToCategoryResult, eb as BulkRemoveItemFromCategoriesRequest, ea as BulkRemoveItemsFromCategoryRequest, fD as BulkSetItemCategoriesApplicationErrors, eK as BulkSetItemCategoriesOptions, en as BulkSetItemCategoriesRequest, eo as BulkSetItemCategoriesResponse, e1 as BulkShowCategoriesRequest, dX as BulkUpdateCategoriesRequest, cz as BulletedListData, ba as ButtonData, aa as ButtonDataType, eO as ButtonDataTypeWithLiterals, cg as ButtonStyles, cB as CaptionData, cj as CardStyles, eG as CategoriesQueryResult, cQ as CategoryMoved, eH as CategoryQuerySpec, eI as CategorySearchSpec, er as CategoryTreeNode, ct as CellStyle, bm as CodeBlockData, cp as CollapsibleListData, c6 as ColorData, bc as Colors, fE as CommonQueryWithEntityContext, fF as CommonSearchWithEntityContext, dc as CompactCategory, dV as CountCategoriesRequest, cW as CreateCategoryRequest, cX as CreateCategoryResponse, aj as Crop, eX as CropWithLiterals, d6 as CursorPaging, d8 as CursorPagingMetadata, d3 as CursorQuery, d4 as CursorQueryPagingMethodOneOf, de as CursorSearch, df as CursorSearchPagingMethodOneOf, d9 as Cursors, cP as CustomTag, dp as DateHistogramAggregation, dJ as DateHistogramResult, dL as DateHistogramResults, c3 as Decoration, c4 as DecorationDataOneOf, au as DecorationType, f6 as DecorationTypeWithLiterals, d0 as DeleteCategoryRequest, d1 as DeleteCategoryResponse, dP as DeprecatedSearchCategoriesWithOffsetRequest, dT as DeprecatedSearchCategoriesWithOffsetResponse, c1 as Design, aM as DesignTarget, fo as DesignTargetWithLiterals, cr as Dimensions, aF as Direction, fh as DirectionWithLiterals, bo as DividerData, af as DividerDataAlignment, eT as DividerDataAlignmentWithLiterals, cG as DocumentStyle, es as DomainEvent, et as DomainEventBodyOneOf, cn as EmbedData, ez as Empty, eu as EntityCreatedEvent, ex as EntityDeletedEvent, ew as EntityUpdatedEvent, cf as EventData, eF as EventMetadata, cI as ExtendedFields, cO as File, bp as FileData, bq as FileSource, br as FileSourceDataOneOf, cb as FontFamilyData, c9 as FontSizeData, av as FontType, f7 as FontTypeWithLiterals, bE as GIF, bD as GIFData, al as GIFType, eZ as GIFTypeWithLiterals, bt as GalleryData, bz as GalleryOptions, bA as GalleryOptionsLayout, em as GetArrangedItemsRequest, ep as GetCategoriesTreeRequest, eq as GetCategoriesTreeResponse, cY as GetCategoryRequest, cZ as GetCategoryResponse, bW as Gradient, dK as GroupByValueResults, bG as HTMLData, bH as HTMLDataDataOneOf, bF as HeadingData, bh as Height, eB as IdentificationData, eC as IdentificationDataIdOneOf, bv as Image, bI as ImageData, bK as ImageDataStyles, aJ as ImagePosition, fl as ImagePositionWithLiterals, ch as ImageStyles, aw as ImageStylesPosition, f8 as ImageStylesPositionWithLiterals, dj as IncludeMissingValuesOptions, aE as InitialExpandedItems, fg as InitialExpandedItemsWithLiterals, aV as Interval, fx as IntervalWithLiterals, cJ as InvalidateCache, cK as InvalidateCacheGetByOneOf, bx as Item, cR as ItemAddedToCategory, by as ItemDataOneOf, dZ as ItemMetadata, e7 as ItemReferenceMetadata, cT as ItemRemovedFromCategory, bB as ItemStyle, cS as ItemsAddedToCategory, cV as ItemsArrangedInCategory, cU as ItemsRemovedFromCategory, b3 as Keyword, aC as Layout, cE as LayoutCellData, cC as LayoutData, ah as LayoutType, eV as LayoutTypeWithLiterals, fe as LayoutWithLiterals, ad as LineStyle, eR as LineStyleWithLiterals, bj as Link, c7 as LinkData, bk as LinkDataOneOf, bL as LinkPreviewData, bM as LinkPreviewDataStyles, ef as ListCategoriesForItemRequest, eg as ListCategoriesForItemsRequest, da as ListCompactCategoriesByIdsRequest, db as ListCompactCategoriesByIdsResponse, eJ as ListItemsInCategoryOptionsPagingMethodOneOf, ec as ListItemsInCategoryRequest, ed as ListItemsInCategoryRequestPagingMethodOneOf, ei as ListTreesRequest, cw as ListValue, bN as MapData, eh as MapItemToCategories, bO as MapSettings, ao as MapType, f0 as MapTypeWithLiterals, bu as Media, c8 as MentionData, eA as MessageEnvelope, cF as Metadata, aS as MissingValues, fu as MissingValuesWithLiterals, aX as Mode, fz as ModeWithLiterals, dW as MoveCategoryRequest, ej as MoveItemInCategoryRequest, aZ as MoveItemInCategoryRequestPosition, fB as MoveItemInCategoryRequestPositionWithLiterals, ek as MoveItemInCategoryResponse, ds as NestedAggregation, dq as NestedAggregationItem, dr as NestedAggregationItemKindOneOf, dx as NestedAggregationResults, dy as NestedAggregationResultsResultOneOf, aU as NestedAggregationType, fw as NestedAggregationTypeWithLiterals, dG as NestedResultValue, dH as NestedResultValueResultOneOf, dM as NestedResults, dC as NestedValueAggregationResult, b7 as Node, b8 as NodeDataOneOf, b9 as NodeStyle, a7 as NodeType, eL as NodeTypeWithLiterals, aH as NullValue, fj as NullValueWithLiterals, co as Oembed, dQ as OffsetSearch, dR as OffsetSearchPagingMethodOneOf, bS as Option, b_ as OptionDesign, bV as OptionLayout, cy as OrderedListData, ai as Orientation, eW as OrientationWithLiterals, bs as PDFSettings, cM as Page, dS as Paging, dU as PagingMetadata, ee as PagingMetadataV2, bP as ParagraphData, b1 as ParentCategory, bR as Permissions, az as Placement, fb as PlacementWithLiterals, cm as PlaybackOptions, bd as PluginContainerData, a9 as PluginContainerDataAlignment, eN as PluginContainerDataAlignmentWithLiterals, be as PluginContainerDataWidth, bf as PluginContainerDataWidthDataOneOf, b$ as Poll, bQ as PollData, c0 as PollDataLayout, bZ as PollDesign, bU as PollLayout, as as PollLayoutDirection, f4 as PollLayoutDirectionWithLiterals, ar as PollLayoutType, f3 as PollLayoutTypeWithLiterals, bT as PollSettings, aY as Position, fA as PositionWithLiterals, ck as PricingData, d2 as QueryCategoriesRequest, d7 as QueryCategoriesResponse, dm as RangeAggregation, dw as RangeAggregationResult, di as RangeBucket, dE as RangeResult, dA as RangeResults, bl as Rel, aP as RequestedFields, fr as RequestedFieldsWithLiterals, ay as Resizing, fa as ResizingWithLiterals, aL as ResponsivenessBehaviour, fn as ResponsivenessBehaviourWithLiterals, ev as RestoreInfo, dI as Results, ci as RibbonStyles, b6 as RichContent, dn as ScalarAggregation, dF as ScalarResult, aT as ScalarType, fv as ScalarTypeWithLiterals, aI as Scaling, fk as ScalingWithLiterals, dd as SearchCategoriesRequest, dt as SearchDetails, b2 as SeoSchema, el as SetArrangedItemsRequest, b5 as Settings, aN as SingleEntityOpsRequestedFields, fp as SingleEntityOpsRequestedFieldsWithLiterals, aR as SortDirection, ft as SortDirectionWithLiterals, aO as SortOrder, fq as SortOrderWithLiterals, aQ as SortType, fs as SortTypeWithLiterals, d5 as Sorting, am as Source, e_ as SourceWithLiterals, bg as Spoiler, ca as SpoilerData, bi as Styles, bJ as StylesBorder, an as StylesPosition, e$ as StylesPositionWithLiterals, cs as TableCellData, cq as TableData, b4 as Tag, ab as Target, eP as TargetWithLiterals, ac as TextAlignment, eQ as TextAlignmentWithLiterals, c2 as TextData, cH as TextNodeStyle, bn as TextStyle, bC as Thumbnails, ak as ThumbnailsAlignment, eY as ThumbnailsAlignmentWithLiterals, aA as Type, fc as TypeWithLiterals, cN as URI, c_ as UpdateCategoryRequest, c$ as UpdateCategoryResponse, e0 as UpdateCategoryVisibilityRequest, dk as ValueAggregation, dl as ValueAggregationOptionsOneOf, dv as ValueAggregationResult, dD as ValueResult, dz as ValueResults, aG as VerticalAlignment, aK as VerticalAlignmentAlignment, fm as VerticalAlignmentAlignmentWithLiterals, fi as VerticalAlignmentWithLiterals, bw as Video, cl as VideoData, ag as ViewMode, eU as ViewModeWithLiterals, ap as ViewRole, f1 as ViewRoleWithLiterals, aq as VoteRole, f2 as VoteRoleWithLiterals, a_ as WebhookIdentityType, fC as WebhookIdentityTypeWithLiterals, ae as Width, a8 as WidthType, eM as WidthTypeWithLiterals, eS as WidthWithLiterals } from './categories-v1-category-categories.universal-D6LO11T_.js';
2
+ import { C as Category, a as CreateCategoryOptions, b as CreateCategoryApplicationErrors, c as CreateCategoryValidationErrors, T as TreeReference, G as GetCategoryOptions, U as UpdateCategory, d as UpdateCategoryOptions, e as UpdateCategoryApplicationErrors, D as DeleteCategoryApplicationErrors, f as CategorySearch, S as SearchCategoriesOptions, g as SearchCategoriesResponse, h as CountCategoriesOptions, i as CountCategoriesResponse, M as MoveCategoryOptions, j as MoveCategoryResponse, k as MoveCategoryApplicationErrors, l as MaskedCategory, B as BulkUpdateCategoriesOptions, m as BulkUpdateCategoriesResponse, n as BulkUpdateCategoriesApplicationErrors, o as UpdateCategoryVisibilityOptions, p as UpdateCategoryVisibilityResponse, q as UpdateCategoryVisibilityApplicationErrors, r as BulkShowCategoriesOptions, s as BulkShowCategoriesResponse, I as ItemReference, t as BulkAddItemsToCategoryOptions, u as BulkAddItemsToCategoryResponse, v as BulkAddItemsToCategoryApplicationErrors, w as BulkAddItemToCategoriesOptions, x as BulkAddItemToCategoriesResponse, y as BulkAddItemToCategoriesApplicationErrors, z as BulkRemoveItemsFromCategoryOptions, A as BulkRemoveItemsFromCategoryResponse, E as BulkRemoveItemsFromCategoryApplicationErrors, F as BulkRemoveItemFromCategoriesOptions, H as BulkRemoveItemFromCategoriesResponse, J as BulkRemoveItemFromCategoriesApplicationErrors, L as ListItemsInCategoryOptions, K as ListItemsInCategoryResponse, N as ListCategoriesForItemOptions, O as ListCategoriesForItemResponse, P as ListCategoriesForItemsOptions, Q as ListCategoriesForItemsResponse, R as ListTreesResponse, V as SetArrangedItemsOptions, W as SetArrangedItemsResponse, X as SetArrangedItemsApplicationErrors, Y as GetArrangedItemsResponse, Z as CategoryMovedEnvelope, _ as CategoryCreatedEnvelope, $ as CategoryDeletedEnvelope, a0 as CategoryItemAddedToCategoryEnvelope, a1 as CategoryItemRemovedFromCategoryEnvelope, a2 as CategoryItemsArrangedInCategoryEnvelope, a3 as CategoryUpdatedEnvelope, a4 as CategoryQuery, a5 as QueryCategoriesOptions, a6 as typedQueryCategories, a7 as CategoriesQueryBuilder } from './categories-v1-category-categories.universal-DnNky4wI.js';
3
+ export { eF as AccountInfo, eA as ActionEvent, di as Aggregation, dw as AggregationData, dj as AggregationKindOneOf, dP as AggregationResults, dQ as AggregationResultsResultOneOf, dD as AggregationResultsScalarResult, aX as AggregationType, fA as AggregationTypeWithLiterals, aC as Alignment, ff as AlignmentWithLiterals, c6 as AnchorData, cM as App, cd as AppEmbedData, ce as AppEmbedDataAppDataOneOf, aE as AppType, fh as AppTypeWithLiterals, e0 as ApplicationError, ay as AspectRatio, fb as AspectRatioWithLiterals, cy as AudioData, bY as Background, bZ as BackgroundBackgroundOneOf, cE as BackgroundImage, au as BackgroundType, f7 as BackgroundTypeWithLiterals, eG as BaseEventMetadata, cB as BlockquoteData, cf as BookingData, bc as Border, cv as BorderColors, cw as BorderWidths, b1 as Breadcrumb, b0 as BreadcrumbsInfo, e1 as BulkActionMetadata, ea as BulkAddItemToCategoriesRequest, e7 as BulkAddItemsToCategoryRequest, d_ as BulkCategoriesResult, e4 as BulkDeleteCategoriesRequest, e5 as BulkDeleteCategoriesResponse, e6 as BulkDeleteCategoriesResponseBulkCategoriesResult, eb as BulkItemToCategoriesResult, e8 as BulkItemsToCategoryResult, ed as BulkRemoveItemFromCategoriesRequest, ec as BulkRemoveItemsFromCategoryRequest, fF as BulkSetItemCategoriesApplicationErrors, eM as BulkSetItemCategoriesOptions, ep as BulkSetItemCategoriesRequest, eq as BulkSetItemCategoriesResponse, e3 as BulkShowCategoriesRequest, dZ as BulkUpdateCategoriesRequest, cA as BulletedListData, bb as ButtonData, ab as ButtonDataType, eQ as ButtonDataTypeWithLiterals, ch as ButtonStyles, cC as CaptionData, ck as CardStyles, eI as CategoriesQueryResult, cR as CategoryMoved, eJ as CategoryQuerySpec, eK as CategorySearchSpec, et as CategoryTreeNode, cu as CellStyle, bn as CodeBlockData, cq as CollapsibleListData, c7 as ColorData, bd as Colors, fG as CommonQueryWithEntityContext, fH as CommonSearchWithEntityContext, de as CompactCategory, dX as CountCategoriesRequest, cX as CreateCategoryRequest, cY as CreateCategoryResponse, ak as Crop, eZ as CropWithLiterals, d8 as CursorPaging, da as CursorPagingMetadata, d5 as CursorQuery, d6 as CursorQueryPagingMethodOneOf, dg as CursorSearch, dh as CursorSearchPagingMethodOneOf, db as Cursors, cQ as CustomTag, dr as DateHistogramAggregation, dL as DateHistogramResult, dN as DateHistogramResults, c4 as Decoration, c5 as DecorationDataOneOf, av as DecorationType, f8 as DecorationTypeWithLiterals, d2 as DeleteCategoryRequest, d3 as DeleteCategoryResponse, dR as DeprecatedSearchCategoriesWithOffsetRequest, dV as DeprecatedSearchCategoriesWithOffsetResponse, c2 as Design, aN as DesignTarget, fq as DesignTargetWithLiterals, cs as Dimensions, aG as Direction, fj as DirectionWithLiterals, bp as DividerData, ag as DividerDataAlignment, eV as DividerDataAlignmentWithLiterals, cH as DocumentStyle, eu as DomainEvent, ev as DomainEventBodyOneOf, cZ as DuplicateHandleErrorData, co as EmbedData, eB as Empty, ew as EntityCreatedEvent, ez as EntityDeletedEvent, ey as EntityUpdatedEvent, cg as EventData, eH as EventMetadata, cJ as ExtendedFields, cP as File, bq as FileData, br as FileSource, bs as FileSourceDataOneOf, cc as FontFamilyData, ca as FontSizeData, aw as FontType, f9 as FontTypeWithLiterals, bF as GIF, bE as GIFData, am as GIFType, e$ as GIFTypeWithLiterals, bu as GalleryData, bA as GalleryOptions, bB as GalleryOptionsLayout, eo as GetArrangedItemsRequest, er as GetCategoriesTreeRequest, es as GetCategoriesTreeResponse, c_ as GetCategoryRequest, c$ as GetCategoryResponse, bX as Gradient, dM as GroupByValueResults, bH as HTMLData, bI as HTMLDataDataOneOf, bG as HeadingData, bi as Height, eD as IdentificationData, eE as IdentificationDataIdOneOf, bw as Image, bJ as ImageData, bL as ImageDataStyles, aK as ImagePosition, fn as ImagePositionWithLiterals, ci as ImageStyles, ax as ImageStylesPosition, fa as ImageStylesPositionWithLiterals, dl as IncludeMissingValuesOptions, aF as InitialExpandedItems, fi as InitialExpandedItemsWithLiterals, aW as Interval, fz as IntervalWithLiterals, cK as InvalidateCache, cL as InvalidateCacheGetByOneOf, by as Item, cS as ItemAddedToCategory, bz as ItemDataOneOf, d$ as ItemMetadata, e9 as ItemReferenceMetadata, cU as ItemRemovedFromCategory, bC as ItemStyle, cT as ItemsAddedToCategory, cW as ItemsArrangedInCategory, cV as ItemsRemovedFromCategory, b4 as Keyword, aD as Layout, cF as LayoutCellData, cD as LayoutData, ai as LayoutType, eX as LayoutTypeWithLiterals, fg as LayoutWithLiterals, ae as LineStyle, eT as LineStyleWithLiterals, bk as Link, c8 as LinkData, bl as LinkDataOneOf, bM as LinkPreviewData, bN as LinkPreviewDataStyles, eh as ListCategoriesForItemRequest, ei as ListCategoriesForItemsRequest, dc as ListCompactCategoriesByIdsRequest, dd as ListCompactCategoriesByIdsResponse, eL as ListItemsInCategoryOptionsPagingMethodOneOf, ee as ListItemsInCategoryRequest, ef as ListItemsInCategoryRequestPagingMethodOneOf, ek as ListTreesRequest, cx as ListValue, bO as MapData, ej as MapItemToCategories, bP as MapSettings, ap as MapType, f2 as MapTypeWithLiterals, bv as Media, c9 as MentionData, eC as MessageEnvelope, cG as Metadata, aT as MissingValues, fw as MissingValuesWithLiterals, aY as Mode, fB as ModeWithLiterals, dY as MoveCategoryRequest, el as MoveItemInCategoryRequest, a_ as MoveItemInCategoryRequestPosition, fD as MoveItemInCategoryRequestPositionWithLiterals, em as MoveItemInCategoryResponse, du as NestedAggregation, ds as NestedAggregationItem, dt as NestedAggregationItemKindOneOf, dz as NestedAggregationResults, dA as NestedAggregationResultsResultOneOf, aV as NestedAggregationType, fy as NestedAggregationTypeWithLiterals, dI as NestedResultValue, dJ as NestedResultValueResultOneOf, dO as NestedResults, dE as NestedValueAggregationResult, b8 as Node, b9 as NodeDataOneOf, ba as NodeStyle, a8 as NodeType, eN as NodeTypeWithLiterals, aI as NullValue, fl as NullValueWithLiterals, cp as Oembed, dS as OffsetSearch, dT as OffsetSearchPagingMethodOneOf, bT as Option, b$ as OptionDesign, bW as OptionLayout, cz as OrderedListData, aj as Orientation, eY as OrientationWithLiterals, bt as PDFSettings, cN as Page, dU as Paging, dW as PagingMetadata, eg as PagingMetadataV2, bQ as ParagraphData, b2 as ParentCategory, bS as Permissions, aA as Placement, fd as PlacementWithLiterals, cn as PlaybackOptions, be as PluginContainerData, aa as PluginContainerDataAlignment, eP as PluginContainerDataAlignmentWithLiterals, bf as PluginContainerDataWidth, bg as PluginContainerDataWidthDataOneOf, c0 as Poll, bR as PollData, c1 as PollDataLayout, b_ as PollDesign, bV as PollLayout, at as PollLayoutDirection, f6 as PollLayoutDirectionWithLiterals, as as PollLayoutType, f5 as PollLayoutTypeWithLiterals, bU as PollSettings, aZ as Position, fC as PositionWithLiterals, cl as PricingData, d4 as QueryCategoriesRequest, d9 as QueryCategoriesResponse, dp as RangeAggregation, dy as RangeAggregationResult, dk as RangeBucket, dG as RangeResult, dC as RangeResults, bm as Rel, aQ as RequestedFields, ft as RequestedFieldsWithLiterals, az as Resizing, fc as ResizingWithLiterals, aM as ResponsivenessBehaviour, fp as ResponsivenessBehaviourWithLiterals, ex as RestoreInfo, dK as Results, cj as RibbonStyles, b7 as RichContent, dq as ScalarAggregation, dH as ScalarResult, aU as ScalarType, fx as ScalarTypeWithLiterals, aJ as Scaling, fm as ScalingWithLiterals, df as SearchCategoriesRequest, dv as SearchDetails, b3 as SeoSchema, en as SetArrangedItemsRequest, b6 as Settings, aO as SingleEntityOpsRequestedFields, fr as SingleEntityOpsRequestedFieldsWithLiterals, aS as SortDirection, fv as SortDirectionWithLiterals, aP as SortOrder, fs as SortOrderWithLiterals, aR as SortType, fu as SortTypeWithLiterals, d7 as Sorting, an as Source, f0 as SourceWithLiterals, bh as Spoiler, cb as SpoilerData, bj as Styles, bK as StylesBorder, ao as StylesPosition, f1 as StylesPositionWithLiterals, ct as TableCellData, cr as TableData, b5 as Tag, ac as Target, eR as TargetWithLiterals, ad as TextAlignment, eS as TextAlignmentWithLiterals, c3 as TextData, cI as TextNodeStyle, bo as TextStyle, bD as Thumbnails, al as ThumbnailsAlignment, e_ as ThumbnailsAlignmentWithLiterals, aB as Type, fe as TypeWithLiterals, cO as URI, d0 as UpdateCategoryRequest, d1 as UpdateCategoryResponse, e2 as UpdateCategoryVisibilityRequest, dm as ValueAggregation, dn as ValueAggregationOptionsOneOf, dx as ValueAggregationResult, dF as ValueResult, dB as ValueResults, aH as VerticalAlignment, aL as VerticalAlignmentAlignment, fo as VerticalAlignmentAlignmentWithLiterals, fk as VerticalAlignmentWithLiterals, bx as Video, cm as VideoData, ah as ViewMode, eW as ViewModeWithLiterals, aq as ViewRole, f3 as ViewRoleWithLiterals, ar as VoteRole, f4 as VoteRoleWithLiterals, a$ as WebhookIdentityType, fE as WebhookIdentityTypeWithLiterals, af as Width, a9 as WidthType, eO as WidthTypeWithLiterals, eU as WidthWithLiterals } from './categories-v1-category-categories.universal-DnNky4wI.js';
4
4
 
5
5
  declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
6
6
  interface CreateCategorySignature {
@@ -11,6 +11,7 @@ interface CreateCategorySignature {
11
11
  */
12
12
  (category: NonNullablePaths<Category, `name` | `parentCategory._id`, 3>, options?: NonNullablePaths<CreateCategoryOptions, `treeReference` | `treeReference.appNamespace`, 3>): Promise<NonNullablePaths<Category, `itemCounter` | `breadcrumbsInfo.breadcrumbs` | `breadcrumbsInfo.breadcrumbs.${number}.categoryId` | `breadcrumbsInfo.breadcrumbs.${number}.categoryName` | `breadcrumbsInfo.breadcrumbs.${number}.categorySlug` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `treeReference.appNamespace`, 6> & {
13
13
  __applicationErrorsType?: CreateCategoryApplicationErrors;
14
+ __validationErrorsType?: CreateCategoryValidationErrors;
14
15
  }>;
15
16
  }
16
17
  declare function getCategory$1(httpClient: HttpClient): GetCategorySignature;
@@ -298,4 +299,4 @@ declare const onCategoryItemsArrangedInCategory: BuildEventDefinition<typeof onC
298
299
  */
299
300
  declare const onCategoryUpdated: BuildEventDefinition<typeof onCategoryUpdated$1> & typeof onCategoryUpdated$1;
300
301
 
301
- export { BulkAddItemToCategoriesApplicationErrors, BulkAddItemToCategoriesOptions, BulkAddItemToCategoriesResponse, BulkAddItemsToCategoryApplicationErrors, BulkAddItemsToCategoryOptions, BulkAddItemsToCategoryResponse, BulkRemoveItemFromCategoriesApplicationErrors, BulkRemoveItemFromCategoriesOptions, BulkRemoveItemFromCategoriesResponse, BulkRemoveItemsFromCategoryApplicationErrors, BulkRemoveItemsFromCategoryOptions, BulkRemoveItemsFromCategoryResponse, BulkShowCategoriesOptions, BulkShowCategoriesResponse, BulkUpdateCategoriesApplicationErrors, BulkUpdateCategoriesOptions, BulkUpdateCategoriesResponse, CategoriesQueryBuilder, Category, CategoryCreatedEnvelope, CategoryDeletedEnvelope, CategoryItemAddedToCategoryEnvelope, CategoryItemRemovedFromCategoryEnvelope, CategoryItemsArrangedInCategoryEnvelope, CategoryMovedEnvelope, CategoryQuery, CategorySearch, CategoryUpdatedEnvelope, CountCategoriesOptions, CountCategoriesResponse, CreateCategoryApplicationErrors, CreateCategoryOptions, DeleteCategoryApplicationErrors, GetArrangedItemsResponse, GetCategoryOptions, ItemReference, ListCategoriesForItemOptions, ListCategoriesForItemResponse, ListCategoriesForItemsOptions, ListCategoriesForItemsResponse, ListItemsInCategoryOptions, ListItemsInCategoryResponse, ListTreesResponse, MaskedCategory, MoveCategoryApplicationErrors, MoveCategoryOptions, MoveCategoryResponse, QueryCategoriesOptions, SearchCategoriesOptions, SearchCategoriesResponse, SetArrangedItemsApplicationErrors, SetArrangedItemsOptions, SetArrangedItemsResponse, TreeReference, UpdateCategory, UpdateCategoryApplicationErrors, UpdateCategoryOptions, UpdateCategoryVisibilityApplicationErrors, UpdateCategoryVisibilityOptions, UpdateCategoryVisibilityResponse, bulkAddItemToCategories, bulkAddItemsToCategory, bulkRemoveItemFromCategories, bulkRemoveItemsFromCategory, bulkShowCategories, bulkUpdateCategories, countCategories, createCategory, deleteCategory, getArrangedItems, getCategory, listCategoriesForItem, listCategoriesForItems, listItemsInCategory, listTrees, moveCategory, onCategoryCreated, onCategoryDeleted, onCategoryItemAddedToCategory, onCategoryItemRemovedFromCategory, onCategoryItemsArrangedInCategory, onCategoryMoved, onCategoryUpdated, queryCategories, searchCategories, setArrangedItems, updateCategory, updateCategoryVisibility };
302
+ export { BulkAddItemToCategoriesApplicationErrors, BulkAddItemToCategoriesOptions, BulkAddItemToCategoriesResponse, BulkAddItemsToCategoryApplicationErrors, BulkAddItemsToCategoryOptions, BulkAddItemsToCategoryResponse, BulkRemoveItemFromCategoriesApplicationErrors, BulkRemoveItemFromCategoriesOptions, BulkRemoveItemFromCategoriesResponse, BulkRemoveItemsFromCategoryApplicationErrors, BulkRemoveItemsFromCategoryOptions, BulkRemoveItemsFromCategoryResponse, BulkShowCategoriesOptions, BulkShowCategoriesResponse, BulkUpdateCategoriesApplicationErrors, BulkUpdateCategoriesOptions, BulkUpdateCategoriesResponse, CategoriesQueryBuilder, Category, CategoryCreatedEnvelope, CategoryDeletedEnvelope, CategoryItemAddedToCategoryEnvelope, CategoryItemRemovedFromCategoryEnvelope, CategoryItemsArrangedInCategoryEnvelope, CategoryMovedEnvelope, CategoryQuery, CategorySearch, CategoryUpdatedEnvelope, CountCategoriesOptions, CountCategoriesResponse, CreateCategoryApplicationErrors, CreateCategoryOptions, CreateCategoryValidationErrors, DeleteCategoryApplicationErrors, GetArrangedItemsResponse, GetCategoryOptions, ItemReference, ListCategoriesForItemOptions, ListCategoriesForItemResponse, ListCategoriesForItemsOptions, ListCategoriesForItemsResponse, ListItemsInCategoryOptions, ListItemsInCategoryResponse, ListTreesResponse, MaskedCategory, MoveCategoryApplicationErrors, MoveCategoryOptions, MoveCategoryResponse, QueryCategoriesOptions, SearchCategoriesOptions, SearchCategoriesResponse, SetArrangedItemsApplicationErrors, SetArrangedItemsOptions, SetArrangedItemsResponse, TreeReference, UpdateCategory, UpdateCategoryApplicationErrors, UpdateCategoryOptions, UpdateCategoryVisibilityApplicationErrors, UpdateCategoryVisibilityOptions, UpdateCategoryVisibilityResponse, bulkAddItemToCategories, bulkAddItemsToCategory, bulkRemoveItemFromCategories, bulkRemoveItemsFromCategory, bulkShowCategories, bulkUpdateCategories, countCategories, createCategory, deleteCategory, getArrangedItems, getCategory, listCategoriesForItem, listCategoriesForItems, listItemsInCategory, listTrees, moveCategory, onCategoryCreated, onCategoryDeleted, onCategoryItemAddedToCategory, onCategoryItemRemovedFromCategory, onCategoryItemsArrangedInCategory, onCategoryMoved, onCategoryUpdated, queryCategories, searchCategories, setArrangedItems, updateCategory, updateCategoryVisibility };