@wix/auto_sdk_categories_categories 1.0.101 → 1.0.102

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 (41) hide show
  1. package/build/cjs/{categories-v1-category-categories.universal-D-RMbvs6.d.ts → categories-v1-category-categories.universal-Ct2lgIM_.d.ts} +20 -4
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +14 -9
  4. package/build/cjs/index.js.map +1 -1
  5. package/build/cjs/index.typings.d.ts +2 -2
  6. package/build/cjs/index.typings.js +14 -9
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +16 -2
  9. package/build/cjs/meta.js +7 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{categories-v1-category-categories.universal-D-RMbvs6.d.mts → categories-v1-category-categories.universal-Ct2lgIM_.d.mts} +20 -4
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +11 -5
  14. package/build/es/index.mjs.map +1 -1
  15. package/build/es/index.typings.d.mts +2 -2
  16. package/build/es/index.typings.mjs +11 -5
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +16 -2
  19. package/build/es/meta.mjs +6 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{categories-v1-category-categories.universal-DmT8C1-o.d.ts → categories-v1-category-categories.universal-ecF5BGHX.d.ts} +20 -4
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +14 -9
  24. package/build/internal/cjs/index.js.map +1 -1
  25. package/build/internal/cjs/index.typings.d.ts +2 -2
  26. package/build/internal/cjs/index.typings.js +14 -9
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +16 -2
  29. package/build/internal/cjs/meta.js +7 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{categories-v1-category-categories.universal-DmT8C1-o.d.mts → categories-v1-category-categories.universal-ecF5BGHX.d.mts} +20 -4
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +11 -5
  34. package/build/internal/es/index.mjs.map +1 -1
  35. package/build/internal/es/index.typings.d.mts +2 -2
  36. package/build/internal/es/index.typings.mjs +11 -5
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +16 -2
  39. package/build/internal/es/meta.mjs +6 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -1996,6 +1996,8 @@ interface LayoutData {
1996
1996
  containerData?: PluginContainerData;
1997
1997
  /** Defines where selected design propertied applies to */
1998
1998
  designTarget?: DesignTargetWithLiterals;
1999
+ /** Banner configuration. When present, this layout is displayed as a banner. */
2000
+ banner?: Banner;
1999
2001
  }
2000
2002
  declare enum Scaling {
2001
2003
  /** Auto image scaling */
@@ -2029,6 +2031,14 @@ declare enum ImagePosition {
2029
2031
  }
2030
2032
  /** @enumType */
2031
2033
  type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
2034
+ declare enum Origin {
2035
+ /** Banner originated from an image */
2036
+ IMAGE = "IMAGE",
2037
+ /** Banner originated from a layout */
2038
+ LAYOUT = "LAYOUT"
2039
+ }
2040
+ /** @enumType */
2041
+ type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
2032
2042
  interface BackgroundImage {
2033
2043
  /** Background image. */
2034
2044
  media?: Media;
@@ -2065,6 +2075,10 @@ declare enum DesignTarget {
2065
2075
  }
2066
2076
  /** @enumType */
2067
2077
  type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
2078
+ interface Banner {
2079
+ /** Origin of the banner */
2080
+ origin?: OriginWithLiterals;
2081
+ }
2068
2082
  interface LayoutCellData {
2069
2083
  /** Size of the cell in 12 columns grid. */
2070
2084
  colSpan?: number | null;
@@ -4788,9 +4802,11 @@ type CategoryQuery = {
4788
4802
  order?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['order'];
4789
4803
  }[];
4790
4804
  };
4791
- declare const QueryBuilder: () => _wix_sdk_types.QueryBuilder<Category, CategoryQuerySpec, CategoryQuery>;
4792
- declare const Filter: _wix_sdk_types.FilterFactory<Category, CategoryQuerySpec>;
4793
- declare const Sort: _wix_sdk_types.SortFactory<CategoryQuerySpec>;
4805
+ declare const utils: {
4806
+ QueryBuilder: () => _wix_sdk_types.QueryBuilder<Category, CategoryQuerySpec, CategoryQuery>;
4807
+ Filter: _wix_sdk_types.FilterFactory<Category, CategoryQuerySpec>;
4808
+ Sort: _wix_sdk_types.SortFactory<CategoryQuerySpec>;
4809
+ };
4794
4810
  interface SearchCategoriesOptions {
4795
4811
  /**
4796
4812
  * Category tree reference details.
@@ -5387,4 +5403,4 @@ interface BulkSetItemCategoriesOptions {
5387
5403
  treeReference: TreeReference;
5388
5404
  }
5389
5405
 
5390
- 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 DuplicateHandleErrorData 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 ShapeData as cG, type ShapeDataStyles as cH, type Metadata as cI, type DocumentStyle as cJ, type TextNodeStyle as cK, type ExtendedFields as cL, type InvalidateCache as cM, type InvalidateCacheGetByOneOf as cN, type App as cO, type Page as cP, type URI as cQ, type File as cR, type CustomTag as cS, type CategoryMoved as cT, type ItemAddedToCategory as cU, type ItemsAddedToCategory as cV, type ItemRemovedFromCategory as cW, type ItemsRemovedFromCategory as cX, type ItemsArrangedInCategory as cY, type CreateCategoryRequest as cZ, type CreateCategoryResponse 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 BulkUpdateCategoriesRequest as d$, type GetCategoryRequest as d0, type GetCategoryResponse as d1, type UpdateCategoryRequest as d2, type UpdateCategoryResponse as d3, type DeleteCategoryRequest as d4, type DeleteCategoryResponse as d5, type QueryCategoriesRequest as d6, type CursorQuery as d7, type CursorQueryPagingMethodOneOf as d8, type Sorting as d9, type RangeAggregationResult as dA, type NestedAggregationResults as dB, type NestedAggregationResultsResultOneOf as dC, type ValueResults as dD, type RangeResults as dE, type AggregationResultsScalarResult as dF, type NestedValueAggregationResult as dG, type ValueResult as dH, type RangeResult as dI, type ScalarResult as dJ, type NestedResultValue as dK, type NestedResultValueResultOneOf as dL, type Results as dM, type DateHistogramResult as dN, type GroupByValueResults as dO, type DateHistogramResults as dP, type NestedResults as dQ, type AggregationResults as dR, type AggregationResultsResultOneOf as dS, type DeprecatedSearchCategoriesWithOffsetRequest as dT, type OffsetSearch as dU, type OffsetSearchPagingMethodOneOf as dV, type Paging as dW, type DeprecatedSearchCategoriesWithOffsetResponse as dX, type PagingMetadata as dY, type CountCategoriesRequest as dZ, type MoveCategoryRequest as d_, type CursorPaging as da, type QueryCategoriesResponse as db, type CursorPagingMetadata as dc, type Cursors as dd, type ListCompactCategoriesByIdsRequest as de, type ListCompactCategoriesByIdsResponse as df, type CompactCategory as dg, type SearchCategoriesRequest as dh, type CursorSearch as di, type CursorSearchPagingMethodOneOf as dj, type Aggregation as dk, type AggregationKindOneOf as dl, type RangeBucket as dm, type IncludeMissingValuesOptions as dn, type ValueAggregation as dp, type ValueAggregationOptionsOneOf as dq, type RangeAggregation as dr, type ScalarAggregation as ds, type DateHistogramAggregation as dt, type NestedAggregationItem as du, type NestedAggregationItemKindOneOf as dv, type NestedAggregation as dw, type SearchDetails as dx, type AggregationData as dy, type ValueAggregationResult as dz, type UpdateCategoryApplicationErrors as e, type TargetWithLiterals as e$, type BulkCategoriesResult as e0, type ItemMetadata as e1, type ApplicationError as e2, type BulkActionMetadata as e3, type UpdateCategoryVisibilityRequest as e4, type BulkShowCategoriesRequest as e5, type BulkDeleteCategoriesRequest as e6, type BulkDeleteCategoriesResponse as e7, type BulkDeleteCategoriesResponseBulkCategoriesResult as e8, type BulkAddItemsToCategoryRequest as e9, type EntityUpdatedEvent as eA, type EntityDeletedEvent as eB, type ActionEvent as eC, type Empty as eD, type BulkCreateCategoriesForMigrationRequest as eE, type BulkCreateCategoriesForMigrationResponse as eF, type BulkAddItemsToCategoryForMigrationRequest as eG, type BulkAddItemsToCategoryForMigrationResponse as eH, type MessageEnvelope as eI, type IdentificationData as eJ, type IdentificationDataIdOneOf as eK, type AccountInfo as eL, type BaseEventMetadata as eM, type EventMetadata as eN, type AccountInfoMetadata as eO, type CategoriesQueryResult as eP, type CategoryQuerySpec as eQ, type CategorySearchSpec as eR, type ListItemsInCategoryOptionsPagingMethodOneOf as eS, type BulkSetItemCategoriesOptions as eT, QueryBuilder as eU, Filter as eV, Sort as eW, type NodeTypeWithLiterals as eX, type WidthTypeWithLiterals as eY, type PluginContainerDataAlignmentWithLiterals as eZ, type ButtonDataTypeWithLiterals as e_, type BulkItemsToCategoryResult as ea, type ItemReferenceMetadata as eb, type BulkAddItemToCategoriesRequest as ec, type BulkItemToCategoriesResult as ed, type BulkRemoveItemsFromCategoryRequest as ee, type BulkRemoveItemFromCategoriesRequest as ef, type ListItemsInCategoryRequest as eg, type ListItemsInCategoryRequestPagingMethodOneOf as eh, type PagingMetadataV2 as ei, type ListCategoriesForItemRequest as ej, type ListCategoriesForItemsRequest as ek, type MapItemToCategories as el, type ListTreesRequest as em, type MoveItemInCategoryRequest as en, type MoveItemInCategoryResponse as eo, type SetArrangedItemsRequest as ep, type GetArrangedItemsRequest as eq, type BulkSetItemCategoriesRequest as er, type BulkSetItemCategoriesResponse as es, type GetCategoriesTreeRequest as et, type GetCategoriesTreeResponse as eu, type CategoryTreeNode as ev, type DomainEvent as ew, type DomainEventBodyOneOf as ex, type EntityCreatedEvent as ey, type RestoreInfo as ez, type CategorySearch as f, updateCategory as f$, type TextAlignmentWithLiterals as f0, type LineStyleWithLiterals as f1, type WidthWithLiterals as f2, type DividerDataAlignmentWithLiterals as f3, type ViewModeWithLiterals as f4, type LayoutTypeWithLiterals as f5, type OrientationWithLiterals as f6, type CropWithLiterals as f7, type ThumbnailsAlignmentWithLiterals as f8, type GIFTypeWithLiterals as f9, type DesignTargetWithLiterals as fA, type SingleEntityOpsRequestedFieldsWithLiterals as fB, type SortOrderWithLiterals as fC, type RequestedFieldsWithLiterals as fD, type SortTypeWithLiterals as fE, type SortDirectionWithLiterals as fF, type MissingValuesWithLiterals as fG, type ScalarTypeWithLiterals as fH, type NestedAggregationTypeWithLiterals as fI, type IntervalWithLiterals as fJ, type AggregationTypeWithLiterals as fK, type ModeWithLiterals as fL, type PositionWithLiterals as fM, type MoveItemInCategoryRequestPositionWithLiterals as fN, type WebhookIdentityTypeWithLiterals as fO, type BulkSetItemCategoriesApplicationErrors as fP, type CommonQueryWithEntityContext as fQ, type CommonSearchWithEntityContext as fR, onCategoryMoved as fS, onCategoryCreated as fT, onCategoryDeleted as fU, onCategoryItemAddedToCategory as fV, onCategoryItemRemovedFromCategory as fW, onCategoryItemsArrangedInCategory as fX, onCategoryUpdated as fY, createCategory as fZ, getCategory as f_, type SourceWithLiterals as fa, type StylesPositionWithLiterals as fb, type MapTypeWithLiterals as fc, type ViewRoleWithLiterals as fd, type VoteRoleWithLiterals as fe, type PollLayoutTypeWithLiterals as ff, type PollLayoutDirectionWithLiterals as fg, type BackgroundTypeWithLiterals as fh, type DecorationTypeWithLiterals as fi, type FontTypeWithLiterals as fj, type ImageStylesPositionWithLiterals as fk, type AspectRatioWithLiterals as fl, type ResizingWithLiterals as fm, type PlacementWithLiterals as fn, type TypeWithLiterals as fo, type AlignmentWithLiterals as fp, type LayoutWithLiterals as fq, type AppTypeWithLiterals as fr, type InitialExpandedItemsWithLiterals as fs, type DirectionWithLiterals as ft, type VerticalAlignmentWithLiterals as fu, type NullValueWithLiterals as fv, type ScalingWithLiterals as fw, type ImagePositionWithLiterals as fx, type VerticalAlignmentAlignmentWithLiterals as fy, type ResponsivenessBehaviourWithLiterals as fz, type SearchCategoriesResponse as g, deleteCategory as g0, queryCategories as g1, countCategories as g2, moveCategory as g3, bulkUpdateCategories as g4, updateCategoryVisibility as g5, bulkShowCategories as g6, bulkAddItemsToCategory as g7, bulkAddItemToCategories as g8, bulkRemoveItemsFromCategory as g9, bulkRemoveItemFromCategories as ga, listItemsInCategory as gb, listCategoriesForItem as gc, listCategoriesForItems as gd, listTrees as ge, setArrangedItems as gf, getArrangedItems as gg, 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 };
5406
+ 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, MoveItemInCategoryRequestPosition 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, Origin as aL, VerticalAlignmentAlignment as aM, ResponsivenessBehaviour as aN, DesignTarget as aO, SingleEntityOpsRequestedFields as aP, SortOrder as aQ, RequestedFields as aR, SortType as aS, SortDirection as aT, MissingValues as aU, ScalarType as aV, NestedAggregationType as aW, Interval as aX, AggregationType as aY, Mode as aZ, Position 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 PollDesign as b$, WebhookIdentityType as b0, type BreadcrumbsInfo as b1, type Breadcrumb as b2, type ParentCategory as b3, type SeoSchema as b4, type Keyword as b5, type Tag as b6, type Settings as b7, type RichContent as b8, type Node as b9, type ItemDataOneOf as bA, type GalleryOptions as bB, type GalleryOptionsLayout as bC, type ItemStyle as bD, type Thumbnails as bE, type GIFData as bF, type GIF as bG, type HeadingData as bH, type HTMLData as bI, type HTMLDataDataOneOf as bJ, type ImageData as bK, type StylesBorder as bL, type ImageDataStyles as bM, type LinkPreviewData as bN, type LinkPreviewDataStyles as bO, type MapData as bP, type MapSettings as bQ, type ParagraphData as bR, type PollData as bS, type Permissions as bT, type Option as bU, type PollSettings as bV, type PollLayout as bW, type OptionLayout as bX, type Gradient as bY, type Background as bZ, type BackgroundBackgroundOneOf as b_, type NodeDataOneOf as ba, type NodeStyle as bb, type ButtonData as bc, type Border as bd, type Colors as be, type PluginContainerData as bf, type PluginContainerDataWidth as bg, type PluginContainerDataWidthDataOneOf as bh, type Spoiler as bi, type Height as bj, type Styles as bk, type Link as bl, type LinkDataOneOf as bm, type Rel as bn, type CodeBlockData as bo, type TextStyle as bp, type DividerData as bq, type FileData as br, type FileSource as bs, type FileSourceDataOneOf as bt, type PDFSettings as bu, type GalleryData as bv, type Media as bw, type Image as bx, type Video as by, type Item as bz, type CreateCategoryValidationErrors as c, type CreateCategoryRequest as c$, type OptionDesign as c0, type Poll as c1, type PollDataLayout as c2, type Design as c3, type TextData as c4, type Decoration as c5, type DecorationDataOneOf as c6, type AnchorData as c7, type ColorData as c8, type LinkData as c9, type OrderedListData as cA, type BulletedListData as cB, type BlockquoteData as cC, type CaptionData as cD, type LayoutData as cE, type BackgroundImage as cF, type Banner as cG, type LayoutCellData as cH, type ShapeData as cI, type ShapeDataStyles as cJ, type Metadata as cK, type DocumentStyle as cL, type TextNodeStyle as cM, type ExtendedFields as cN, type InvalidateCache as cO, type InvalidateCacheGetByOneOf as cP, type App as cQ, type Page as cR, type URI as cS, type File as cT, type CustomTag as cU, type CategoryMoved as cV, type ItemAddedToCategory as cW, type ItemsAddedToCategory as cX, type ItemRemovedFromCategory as cY, type ItemsRemovedFromCategory as cZ, type ItemsArrangedInCategory as c_, type MentionData as ca, type FontSizeData as cb, type SpoilerData as cc, type FontFamilyData as cd, type AppEmbedData as ce, type AppEmbedDataAppDataOneOf as cf, type BookingData as cg, type EventData as ch, type ButtonStyles as ci, type ImageStyles as cj, type RibbonStyles as ck, type CardStyles as cl, type PricingData as cm, type VideoData as cn, type PlaybackOptions as co, type EmbedData as cp, type Oembed as cq, type CollapsibleListData as cr, type TableData as cs, type Dimensions as ct, type TableCellData as cu, type CellStyle as cv, type BorderColors as cw, type BorderWidths as cx, type ListValue as cy, type AudioData as cz, type UpdateCategoryOptions as d, type CountCategoriesRequest as d$, type CreateCategoryResponse as d0, type DuplicateHandleErrorData as d1, type GetCategoryRequest as d2, type GetCategoryResponse as d3, type UpdateCategoryRequest as d4, type UpdateCategoryResponse as d5, type DeleteCategoryRequest as d6, type DeleteCategoryResponse as d7, type QueryCategoriesRequest as d8, type CursorQuery as d9, type AggregationData as dA, type ValueAggregationResult as dB, type RangeAggregationResult as dC, type NestedAggregationResults as dD, type NestedAggregationResultsResultOneOf as dE, type ValueResults as dF, type RangeResults as dG, type AggregationResultsScalarResult as dH, type NestedValueAggregationResult as dI, type ValueResult as dJ, type RangeResult as dK, type ScalarResult as dL, type NestedResultValue as dM, type NestedResultValueResultOneOf as dN, type Results as dO, type DateHistogramResult as dP, type GroupByValueResults as dQ, type DateHistogramResults as dR, type NestedResults as dS, type AggregationResults as dT, type AggregationResultsResultOneOf as dU, type DeprecatedSearchCategoriesWithOffsetRequest as dV, type OffsetSearch as dW, type OffsetSearchPagingMethodOneOf as dX, type Paging as dY, type DeprecatedSearchCategoriesWithOffsetResponse as dZ, type PagingMetadata as d_, type CursorQueryPagingMethodOneOf as da, type Sorting as db, type CursorPaging as dc, type QueryCategoriesResponse as dd, type CursorPagingMetadata as de, type Cursors as df, type ListCompactCategoriesByIdsRequest as dg, type ListCompactCategoriesByIdsResponse as dh, type CompactCategory as di, type SearchCategoriesRequest as dj, type CursorSearch as dk, type CursorSearchPagingMethodOneOf as dl, type Aggregation as dm, type AggregationKindOneOf as dn, type RangeBucket as dp, type IncludeMissingValuesOptions as dq, type ValueAggregation as dr, type ValueAggregationOptionsOneOf as ds, type RangeAggregation as dt, type ScalarAggregation as du, type DateHistogramAggregation as dv, type NestedAggregationItem as dw, type NestedAggregationItemKindOneOf as dx, type NestedAggregation as dy, type SearchDetails as dz, type UpdateCategoryApplicationErrors as e, type TargetWithLiterals as e$, type MoveCategoryRequest as e0, type BulkUpdateCategoriesRequest as e1, type BulkCategoriesResult as e2, type ItemMetadata as e3, type ApplicationError as e4, type BulkActionMetadata as e5, type UpdateCategoryVisibilityRequest as e6, type BulkShowCategoriesRequest as e7, type BulkDeleteCategoriesRequest as e8, type BulkDeleteCategoriesResponse as e9, type EntityCreatedEvent as eA, type RestoreInfo as eB, type EntityUpdatedEvent as eC, type EntityDeletedEvent as eD, type ActionEvent as eE, type Empty as eF, type BulkCreateCategoriesForMigrationRequest as eG, type BulkCreateCategoriesForMigrationResponse as eH, type BulkAddItemsToCategoryForMigrationRequest as eI, type BulkAddItemsToCategoryForMigrationResponse as eJ, type MessageEnvelope as eK, type IdentificationData as eL, type IdentificationDataIdOneOf as eM, type AccountInfo as eN, type BaseEventMetadata as eO, type EventMetadata as eP, type AccountInfoMetadata as eQ, type CategoriesQueryResult as eR, type CategoryQuerySpec as eS, type CategorySearchSpec as eT, type ListItemsInCategoryOptionsPagingMethodOneOf as eU, type BulkSetItemCategoriesOptions as eV, utils as eW, type NodeTypeWithLiterals as eX, type WidthTypeWithLiterals as eY, type PluginContainerDataAlignmentWithLiterals as eZ, type ButtonDataTypeWithLiterals as e_, type BulkDeleteCategoriesResponseBulkCategoriesResult as ea, type BulkAddItemsToCategoryRequest as eb, type BulkItemsToCategoryResult as ec, type ItemReferenceMetadata as ed, type BulkAddItemToCategoriesRequest as ee, type BulkItemToCategoriesResult as ef, type BulkRemoveItemsFromCategoryRequest as eg, type BulkRemoveItemFromCategoriesRequest as eh, type ListItemsInCategoryRequest as ei, type ListItemsInCategoryRequestPagingMethodOneOf as ej, type PagingMetadataV2 as ek, type ListCategoriesForItemRequest as el, type ListCategoriesForItemsRequest as em, type MapItemToCategories as en, type ListTreesRequest as eo, type MoveItemInCategoryRequest as ep, type MoveItemInCategoryResponse as eq, type SetArrangedItemsRequest as er, type GetArrangedItemsRequest as es, type BulkSetItemCategoriesRequest as et, type BulkSetItemCategoriesResponse as eu, type GetCategoriesTreeRequest as ev, type GetCategoriesTreeResponse as ew, type CategoryTreeNode as ex, type DomainEvent as ey, type DomainEventBodyOneOf as ez, type CategorySearch as f, getCategory as f$, type TextAlignmentWithLiterals as f0, type LineStyleWithLiterals as f1, type WidthWithLiterals as f2, type DividerDataAlignmentWithLiterals as f3, type ViewModeWithLiterals as f4, type LayoutTypeWithLiterals as f5, type OrientationWithLiterals as f6, type CropWithLiterals as f7, type ThumbnailsAlignmentWithLiterals as f8, type GIFTypeWithLiterals as f9, type ResponsivenessBehaviourWithLiterals as fA, type DesignTargetWithLiterals as fB, type SingleEntityOpsRequestedFieldsWithLiterals as fC, type SortOrderWithLiterals as fD, type RequestedFieldsWithLiterals as fE, type SortTypeWithLiterals as fF, type SortDirectionWithLiterals as fG, type MissingValuesWithLiterals as fH, type ScalarTypeWithLiterals as fI, type NestedAggregationTypeWithLiterals as fJ, type IntervalWithLiterals as fK, type AggregationTypeWithLiterals as fL, type ModeWithLiterals as fM, type PositionWithLiterals as fN, type MoveItemInCategoryRequestPositionWithLiterals as fO, type WebhookIdentityTypeWithLiterals as fP, type BulkSetItemCategoriesApplicationErrors as fQ, type CommonQueryWithEntityContext as fR, type CommonSearchWithEntityContext as fS, onCategoryMoved as fT, onCategoryCreated as fU, onCategoryDeleted as fV, onCategoryItemAddedToCategory as fW, onCategoryItemRemovedFromCategory as fX, onCategoryItemsArrangedInCategory as fY, onCategoryUpdated as fZ, createCategory as f_, type SourceWithLiterals as fa, type StylesPositionWithLiterals as fb, type MapTypeWithLiterals as fc, type ViewRoleWithLiterals as fd, type VoteRoleWithLiterals as fe, type PollLayoutTypeWithLiterals as ff, type PollLayoutDirectionWithLiterals as fg, type BackgroundTypeWithLiterals as fh, type DecorationTypeWithLiterals as fi, type FontTypeWithLiterals as fj, type ImageStylesPositionWithLiterals as fk, type AspectRatioWithLiterals as fl, type ResizingWithLiterals as fm, type PlacementWithLiterals as fn, type TypeWithLiterals as fo, type AlignmentWithLiterals as fp, type LayoutWithLiterals as fq, type AppTypeWithLiterals as fr, type InitialExpandedItemsWithLiterals as fs, type DirectionWithLiterals as ft, type VerticalAlignmentWithLiterals as fu, type NullValueWithLiterals as fv, type ScalingWithLiterals as fw, type ImagePositionWithLiterals as fx, type OriginWithLiterals as fy, type VerticalAlignmentAlignmentWithLiterals as fz, type SearchCategoriesResponse as g, updateCategory as g0, deleteCategory as g1, queryCategories as g2, countCategories as g3, moveCategory as g4, bulkUpdateCategories as g5, updateCategoryVisibility as g6, bulkShowCategories as g7, bulkAddItemsToCategory as g8, bulkAddItemToCategories as g9, bulkRemoveItemsFromCategory as ga, bulkRemoveItemFromCategories as gb, listItemsInCategory as gc, listCategoriesForItem as gd, listCategoriesForItems as ge, listTrees as gf, setArrangedItems as gg, getArrangedItems as gh, 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, 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-D-RMbvs6.js';
3
- export { eL as AccountInfo, eO as AccountInfoMetadata, eC as ActionEvent, dk as Aggregation, dy as AggregationData, dl as AggregationKindOneOf, dR as AggregationResults, dS as AggregationResultsResultOneOf, dF as AggregationResultsScalarResult, aX as AggregationType, fK as AggregationTypeWithLiterals, aC as Alignment, fp as AlignmentWithLiterals, c6 as AnchorData, cO as App, cd as AppEmbedData, ce as AppEmbedDataAppDataOneOf, aE as AppType, fr as AppTypeWithLiterals, e2 as ApplicationError, ay as AspectRatio, fl as AspectRatioWithLiterals, cy as AudioData, bY as Background, bZ as BackgroundBackgroundOneOf, cE as BackgroundImage, au as BackgroundType, fh as BackgroundTypeWithLiterals, eM as BaseEventMetadata, cB as BlockquoteData, cf as BookingData, bc as Border, cv as BorderColors, cw as BorderWidths, b1 as Breadcrumb, b0 as BreadcrumbsInfo, e3 as BulkActionMetadata, ec as BulkAddItemToCategoriesRequest, eG as BulkAddItemsToCategoryForMigrationRequest, eH as BulkAddItemsToCategoryForMigrationResponse, e9 as BulkAddItemsToCategoryRequest, e0 as BulkCategoriesResult, eE as BulkCreateCategoriesForMigrationRequest, eF as BulkCreateCategoriesForMigrationResponse, e6 as BulkDeleteCategoriesRequest, e7 as BulkDeleteCategoriesResponse, e8 as BulkDeleteCategoriesResponseBulkCategoriesResult, ed as BulkItemToCategoriesResult, ea as BulkItemsToCategoryResult, ef as BulkRemoveItemFromCategoriesRequest, ee as BulkRemoveItemsFromCategoryRequest, fP as BulkSetItemCategoriesApplicationErrors, eT as BulkSetItemCategoriesOptions, er as BulkSetItemCategoriesRequest, es as BulkSetItemCategoriesResponse, e5 as BulkShowCategoriesRequest, d$ as BulkUpdateCategoriesRequest, cA as BulletedListData, bb as ButtonData, ab as ButtonDataType, e_ as ButtonDataTypeWithLiterals, ch as ButtonStyles, cC as CaptionData, ck as CardStyles, eP as CategoriesQueryResult, cT as CategoryMoved, eQ as CategoryQuerySpec, eR as CategorySearchSpec, ev as CategoryTreeNode, cu as CellStyle, bn as CodeBlockData, cq as CollapsibleListData, c7 as ColorData, bd as Colors, fQ as CommonQueryWithEntityContext, fR as CommonSearchWithEntityContext, dg as CompactCategory, dZ as CountCategoriesRequest, cZ as CreateCategoryRequest, c_ as CreateCategoryResponse, ak as Crop, f7 as CropWithLiterals, da as CursorPaging, dc as CursorPagingMetadata, d7 as CursorQuery, d8 as CursorQueryPagingMethodOneOf, di as CursorSearch, dj as CursorSearchPagingMethodOneOf, dd as Cursors, cS as CustomTag, dt as DateHistogramAggregation, dN as DateHistogramResult, dP as DateHistogramResults, c4 as Decoration, c5 as DecorationDataOneOf, av as DecorationType, fi as DecorationTypeWithLiterals, d4 as DeleteCategoryRequest, d5 as DeleteCategoryResponse, dT as DeprecatedSearchCategoriesWithOffsetRequest, dX as DeprecatedSearchCategoriesWithOffsetResponse, c2 as Design, aN as DesignTarget, fA as DesignTargetWithLiterals, cs as Dimensions, aG as Direction, ft as DirectionWithLiterals, bp as DividerData, ag as DividerDataAlignment, f3 as DividerDataAlignmentWithLiterals, cJ as DocumentStyle, ew as DomainEvent, ex as DomainEventBodyOneOf, c$ as DuplicateHandleErrorData, co as EmbedData, eD as Empty, ey as EntityCreatedEvent, eB as EntityDeletedEvent, eA as EntityUpdatedEvent, cg as EventData, eN as EventMetadata, cL as ExtendedFields, cR as File, bq as FileData, br as FileSource, bs as FileSourceDataOneOf, eV as Filter, cc as FontFamilyData, ca as FontSizeData, aw as FontType, fj as FontTypeWithLiterals, bF as GIF, bE as GIFData, am as GIFType, f9 as GIFTypeWithLiterals, bu as GalleryData, bA as GalleryOptions, bB as GalleryOptionsLayout, eq as GetArrangedItemsRequest, et as GetCategoriesTreeRequest, eu as GetCategoriesTreeResponse, d0 as GetCategoryRequest, d1 as GetCategoryResponse, bX as Gradient, dO as GroupByValueResults, bH as HTMLData, bI as HTMLDataDataOneOf, bG as HeadingData, bi as Height, eJ as IdentificationData, eK as IdentificationDataIdOneOf, bw as Image, bJ as ImageData, bL as ImageDataStyles, aK as ImagePosition, fx as ImagePositionWithLiterals, ci as ImageStyles, ax as ImageStylesPosition, fk as ImageStylesPositionWithLiterals, dn as IncludeMissingValuesOptions, aF as InitialExpandedItems, fs as InitialExpandedItemsWithLiterals, aW as Interval, fJ as IntervalWithLiterals, cM as InvalidateCache, cN as InvalidateCacheGetByOneOf, by as Item, cU as ItemAddedToCategory, bz as ItemDataOneOf, e1 as ItemMetadata, eb as ItemReferenceMetadata, cW as ItemRemovedFromCategory, bC as ItemStyle, cV as ItemsAddedToCategory, cY as ItemsArrangedInCategory, cX as ItemsRemovedFromCategory, b4 as Keyword, aD as Layout, cF as LayoutCellData, cD as LayoutData, ai as LayoutType, f5 as LayoutTypeWithLiterals, fq as LayoutWithLiterals, ae as LineStyle, f1 as LineStyleWithLiterals, bk as Link, c8 as LinkData, bl as LinkDataOneOf, bM as LinkPreviewData, bN as LinkPreviewDataStyles, ej as ListCategoriesForItemRequest, ek as ListCategoriesForItemsRequest, de as ListCompactCategoriesByIdsRequest, df as ListCompactCategoriesByIdsResponse, eS as ListItemsInCategoryOptionsPagingMethodOneOf, eg as ListItemsInCategoryRequest, eh as ListItemsInCategoryRequestPagingMethodOneOf, em as ListTreesRequest, cx as ListValue, bO as MapData, el as MapItemToCategories, bP as MapSettings, ap as MapType, fc as MapTypeWithLiterals, bv as Media, c9 as MentionData, eI as MessageEnvelope, cI as Metadata, aT as MissingValues, fG as MissingValuesWithLiterals, aY as Mode, fL as ModeWithLiterals, d_ as MoveCategoryRequest, en as MoveItemInCategoryRequest, a_ as MoveItemInCategoryRequestPosition, fN as MoveItemInCategoryRequestPositionWithLiterals, eo as MoveItemInCategoryResponse, dw as NestedAggregation, du as NestedAggregationItem, dv as NestedAggregationItemKindOneOf, dB as NestedAggregationResults, dC as NestedAggregationResultsResultOneOf, aV as NestedAggregationType, fI as NestedAggregationTypeWithLiterals, dK as NestedResultValue, dL as NestedResultValueResultOneOf, dQ as NestedResults, dG as NestedValueAggregationResult, b8 as Node, b9 as NodeDataOneOf, ba as NodeStyle, a8 as NodeType, eX as NodeTypeWithLiterals, aI as NullValue, fv as NullValueWithLiterals, cp as Oembed, dU as OffsetSearch, dV as OffsetSearchPagingMethodOneOf, bT as Option, b$ as OptionDesign, bW as OptionLayout, cz as OrderedListData, aj as Orientation, f6 as OrientationWithLiterals, bt as PDFSettings, cP as Page, dW as Paging, dY as PagingMetadata, ei as PagingMetadataV2, bQ as ParagraphData, b2 as ParentCategory, bS as Permissions, aA as Placement, fn as PlacementWithLiterals, cn as PlaybackOptions, be as PluginContainerData, aa as PluginContainerDataAlignment, eZ 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, fg as PollLayoutDirectionWithLiterals, as as PollLayoutType, ff as PollLayoutTypeWithLiterals, bU as PollSettings, aZ as Position, fM as PositionWithLiterals, cl as PricingData, eU as QueryBuilder, d6 as QueryCategoriesRequest, db as QueryCategoriesResponse, dr as RangeAggregation, dA as RangeAggregationResult, dm as RangeBucket, dI as RangeResult, dE as RangeResults, bm as Rel, aQ as RequestedFields, fD as RequestedFieldsWithLiterals, az as Resizing, fm as ResizingWithLiterals, aM as ResponsivenessBehaviour, fz as ResponsivenessBehaviourWithLiterals, ez as RestoreInfo, dM as Results, cj as RibbonStyles, b7 as RichContent, ds as ScalarAggregation, dJ as ScalarResult, aU as ScalarType, fH as ScalarTypeWithLiterals, aJ as Scaling, fw as ScalingWithLiterals, dh as SearchCategoriesRequest, dx as SearchDetails, b3 as SeoSchema, ep as SetArrangedItemsRequest, b6 as Settings, cG as ShapeData, cH as ShapeDataStyles, aO as SingleEntityOpsRequestedFields, fB as SingleEntityOpsRequestedFieldsWithLiterals, eW as Sort, aS as SortDirection, fF as SortDirectionWithLiterals, aP as SortOrder, fC as SortOrderWithLiterals, aR as SortType, fE as SortTypeWithLiterals, d9 as Sorting, an as Source, fa as SourceWithLiterals, bh as Spoiler, cb as SpoilerData, bj as Styles, bK as StylesBorder, ao as StylesPosition, fb as StylesPositionWithLiterals, ct as TableCellData, cr as TableData, b5 as Tag, ac as Target, e$ as TargetWithLiterals, ad as TextAlignment, f0 as TextAlignmentWithLiterals, c3 as TextData, cK as TextNodeStyle, bo as TextStyle, bD as Thumbnails, al as ThumbnailsAlignment, f8 as ThumbnailsAlignmentWithLiterals, aB as Type, fo as TypeWithLiterals, cQ as URI, d2 as UpdateCategoryRequest, d3 as UpdateCategoryResponse, e4 as UpdateCategoryVisibilityRequest, dp as ValueAggregation, dq as ValueAggregationOptionsOneOf, dz as ValueAggregationResult, dH as ValueResult, dD as ValueResults, aH as VerticalAlignment, aL as VerticalAlignmentAlignment, fy as VerticalAlignmentAlignmentWithLiterals, fu as VerticalAlignmentWithLiterals, bx as Video, cm as VideoData, ah as ViewMode, f4 as ViewModeWithLiterals, aq as ViewRole, fd as ViewRoleWithLiterals, ar as VoteRole, fe as VoteRoleWithLiterals, a$ as WebhookIdentityType, fO as WebhookIdentityTypeWithLiterals, af as Width, a9 as WidthType, eY as WidthTypeWithLiterals, f2 as WidthWithLiterals } from './categories-v1-category-categories.universal-D-RMbvs6.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-Ct2lgIM_.js';
3
+ export { eN as AccountInfo, eQ as AccountInfoMetadata, eE as ActionEvent, dm as Aggregation, dA as AggregationData, dn as AggregationKindOneOf, dT as AggregationResults, dU as AggregationResultsResultOneOf, dH as AggregationResultsScalarResult, aY as AggregationType, fL as AggregationTypeWithLiterals, aC as Alignment, fp as AlignmentWithLiterals, c7 as AnchorData, cQ as App, ce as AppEmbedData, cf as AppEmbedDataAppDataOneOf, aE as AppType, fr as AppTypeWithLiterals, e4 as ApplicationError, ay as AspectRatio, fl as AspectRatioWithLiterals, cz as AudioData, bZ as Background, b_ as BackgroundBackgroundOneOf, cF as BackgroundImage, au as BackgroundType, fh as BackgroundTypeWithLiterals, cG as Banner, eO as BaseEventMetadata, cC as BlockquoteData, cg as BookingData, bd as Border, cw as BorderColors, cx as BorderWidths, b2 as Breadcrumb, b1 as BreadcrumbsInfo, e5 as BulkActionMetadata, ee as BulkAddItemToCategoriesRequest, eI as BulkAddItemsToCategoryForMigrationRequest, eJ as BulkAddItemsToCategoryForMigrationResponse, eb as BulkAddItemsToCategoryRequest, e2 as BulkCategoriesResult, eG as BulkCreateCategoriesForMigrationRequest, eH as BulkCreateCategoriesForMigrationResponse, e8 as BulkDeleteCategoriesRequest, e9 as BulkDeleteCategoriesResponse, ea as BulkDeleteCategoriesResponseBulkCategoriesResult, ef as BulkItemToCategoriesResult, ec as BulkItemsToCategoryResult, eh as BulkRemoveItemFromCategoriesRequest, eg as BulkRemoveItemsFromCategoryRequest, fQ as BulkSetItemCategoriesApplicationErrors, eV as BulkSetItemCategoriesOptions, et as BulkSetItemCategoriesRequest, eu as BulkSetItemCategoriesResponse, e7 as BulkShowCategoriesRequest, e1 as BulkUpdateCategoriesRequest, cB as BulletedListData, bc as ButtonData, ab as ButtonDataType, e_ as ButtonDataTypeWithLiterals, ci as ButtonStyles, cD as CaptionData, cl as CardStyles, eR as CategoriesQueryResult, cV as CategoryMoved, eS as CategoryQuerySpec, eT as CategorySearchSpec, ex as CategoryTreeNode, cv as CellStyle, bo as CodeBlockData, cr as CollapsibleListData, c8 as ColorData, be as Colors, fR as CommonQueryWithEntityContext, fS as CommonSearchWithEntityContext, di as CompactCategory, d$ as CountCategoriesRequest, c$ as CreateCategoryRequest, d0 as CreateCategoryResponse, ak as Crop, f7 as CropWithLiterals, dc as CursorPaging, de as CursorPagingMetadata, d9 as CursorQuery, da as CursorQueryPagingMethodOneOf, dk as CursorSearch, dl as CursorSearchPagingMethodOneOf, df as Cursors, cU as CustomTag, dv as DateHistogramAggregation, dP as DateHistogramResult, dR as DateHistogramResults, c5 as Decoration, c6 as DecorationDataOneOf, av as DecorationType, fi as DecorationTypeWithLiterals, d6 as DeleteCategoryRequest, d7 as DeleteCategoryResponse, dV as DeprecatedSearchCategoriesWithOffsetRequest, dZ as DeprecatedSearchCategoriesWithOffsetResponse, c3 as Design, aO as DesignTarget, fB as DesignTargetWithLiterals, ct as Dimensions, aG as Direction, ft as DirectionWithLiterals, bq as DividerData, ag as DividerDataAlignment, f3 as DividerDataAlignmentWithLiterals, cL as DocumentStyle, ey as DomainEvent, ez as DomainEventBodyOneOf, d1 as DuplicateHandleErrorData, cp as EmbedData, eF as Empty, eA as EntityCreatedEvent, eD as EntityDeletedEvent, eC as EntityUpdatedEvent, ch as EventData, eP as EventMetadata, cN as ExtendedFields, cT as File, br as FileData, bs as FileSource, bt as FileSourceDataOneOf, cd as FontFamilyData, cb as FontSizeData, aw as FontType, fj as FontTypeWithLiterals, bG as GIF, bF as GIFData, am as GIFType, f9 as GIFTypeWithLiterals, bv as GalleryData, bB as GalleryOptions, bC as GalleryOptionsLayout, es as GetArrangedItemsRequest, ev as GetCategoriesTreeRequest, ew as GetCategoriesTreeResponse, d2 as GetCategoryRequest, d3 as GetCategoryResponse, bY as Gradient, dQ as GroupByValueResults, bI as HTMLData, bJ as HTMLDataDataOneOf, bH as HeadingData, bj as Height, eL as IdentificationData, eM as IdentificationDataIdOneOf, bx as Image, bK as ImageData, bM as ImageDataStyles, aK as ImagePosition, fx as ImagePositionWithLiterals, cj as ImageStyles, ax as ImageStylesPosition, fk as ImageStylesPositionWithLiterals, dq as IncludeMissingValuesOptions, aF as InitialExpandedItems, fs as InitialExpandedItemsWithLiterals, aX as Interval, fK as IntervalWithLiterals, cO as InvalidateCache, cP as InvalidateCacheGetByOneOf, bz as Item, cW as ItemAddedToCategory, bA as ItemDataOneOf, e3 as ItemMetadata, ed as ItemReferenceMetadata, cY as ItemRemovedFromCategory, bD as ItemStyle, cX as ItemsAddedToCategory, c_ as ItemsArrangedInCategory, cZ as ItemsRemovedFromCategory, b5 as Keyword, aD as Layout, cH as LayoutCellData, cE as LayoutData, ai as LayoutType, f5 as LayoutTypeWithLiterals, fq as LayoutWithLiterals, ae as LineStyle, f1 as LineStyleWithLiterals, bl as Link, c9 as LinkData, bm as LinkDataOneOf, bN as LinkPreviewData, bO as LinkPreviewDataStyles, el as ListCategoriesForItemRequest, em as ListCategoriesForItemsRequest, dg as ListCompactCategoriesByIdsRequest, dh as ListCompactCategoriesByIdsResponse, eU as ListItemsInCategoryOptionsPagingMethodOneOf, ei as ListItemsInCategoryRequest, ej as ListItemsInCategoryRequestPagingMethodOneOf, eo as ListTreesRequest, cy as ListValue, bP as MapData, en as MapItemToCategories, bQ as MapSettings, ap as MapType, fc as MapTypeWithLiterals, bw as Media, ca as MentionData, eK as MessageEnvelope, cK as Metadata, aU as MissingValues, fH as MissingValuesWithLiterals, aZ as Mode, fM as ModeWithLiterals, e0 as MoveCategoryRequest, ep as MoveItemInCategoryRequest, a$ as MoveItemInCategoryRequestPosition, fO as MoveItemInCategoryRequestPositionWithLiterals, eq as MoveItemInCategoryResponse, dy as NestedAggregation, dw as NestedAggregationItem, dx as NestedAggregationItemKindOneOf, dD as NestedAggregationResults, dE as NestedAggregationResultsResultOneOf, aW as NestedAggregationType, fJ as NestedAggregationTypeWithLiterals, dM as NestedResultValue, dN as NestedResultValueResultOneOf, dS as NestedResults, dI as NestedValueAggregationResult, b9 as Node, ba as NodeDataOneOf, bb as NodeStyle, a8 as NodeType, eX as NodeTypeWithLiterals, aI as NullValue, fv as NullValueWithLiterals, cq as Oembed, dW as OffsetSearch, dX as OffsetSearchPagingMethodOneOf, bU as Option, c0 as OptionDesign, bX as OptionLayout, cA as OrderedListData, aj as Orientation, f6 as OrientationWithLiterals, aL as Origin, fy as OriginWithLiterals, bu as PDFSettings, cR as Page, dY as Paging, d_ as PagingMetadata, ek as PagingMetadataV2, bR as ParagraphData, b3 as ParentCategory, bT as Permissions, aA as Placement, fn as PlacementWithLiterals, co as PlaybackOptions, bf as PluginContainerData, aa as PluginContainerDataAlignment, eZ as PluginContainerDataAlignmentWithLiterals, bg as PluginContainerDataWidth, bh as PluginContainerDataWidthDataOneOf, c1 as Poll, bS as PollData, c2 as PollDataLayout, b$ as PollDesign, bW as PollLayout, at as PollLayoutDirection, fg as PollLayoutDirectionWithLiterals, as as PollLayoutType, ff as PollLayoutTypeWithLiterals, bV as PollSettings, a_ as Position, fN as PositionWithLiterals, cm as PricingData, d8 as QueryCategoriesRequest, dd as QueryCategoriesResponse, dt as RangeAggregation, dC as RangeAggregationResult, dp as RangeBucket, dK as RangeResult, dG as RangeResults, bn as Rel, aR as RequestedFields, fE as RequestedFieldsWithLiterals, az as Resizing, fm as ResizingWithLiterals, aN as ResponsivenessBehaviour, fA as ResponsivenessBehaviourWithLiterals, eB as RestoreInfo, dO as Results, ck as RibbonStyles, b8 as RichContent, du as ScalarAggregation, dL as ScalarResult, aV as ScalarType, fI as ScalarTypeWithLiterals, aJ as Scaling, fw as ScalingWithLiterals, dj as SearchCategoriesRequest, dz as SearchDetails, b4 as SeoSchema, er as SetArrangedItemsRequest, b7 as Settings, cI as ShapeData, cJ as ShapeDataStyles, aP as SingleEntityOpsRequestedFields, fC as SingleEntityOpsRequestedFieldsWithLiterals, aT as SortDirection, fG as SortDirectionWithLiterals, aQ as SortOrder, fD as SortOrderWithLiterals, aS as SortType, fF as SortTypeWithLiterals, db as Sorting, an as Source, fa as SourceWithLiterals, bi as Spoiler, cc as SpoilerData, bk as Styles, bL as StylesBorder, ao as StylesPosition, fb as StylesPositionWithLiterals, cu as TableCellData, cs as TableData, b6 as Tag, ac as Target, e$ as TargetWithLiterals, ad as TextAlignment, f0 as TextAlignmentWithLiterals, c4 as TextData, cM as TextNodeStyle, bp as TextStyle, bE as Thumbnails, al as ThumbnailsAlignment, f8 as ThumbnailsAlignmentWithLiterals, aB as Type, fo as TypeWithLiterals, cS as URI, d4 as UpdateCategoryRequest, d5 as UpdateCategoryResponse, e6 as UpdateCategoryVisibilityRequest, dr as ValueAggregation, ds as ValueAggregationOptionsOneOf, dB as ValueAggregationResult, dJ as ValueResult, dF as ValueResults, aH as VerticalAlignment, aM as VerticalAlignmentAlignment, fz as VerticalAlignmentAlignmentWithLiterals, fu as VerticalAlignmentWithLiterals, by as Video, cn as VideoData, ah as ViewMode, f4 as ViewModeWithLiterals, aq as ViewRole, fd as ViewRoleWithLiterals, ar as VoteRole, fe as VoteRoleWithLiterals, b0 as WebhookIdentityType, fP as WebhookIdentityTypeWithLiterals, af as Width, a9 as WidthType, eY as WidthTypeWithLiterals, f2 as WidthWithLiterals, eW as utils } from './categories-v1-category-categories.universal-Ct2lgIM_.js';
4
4
 
5
5
  declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
6
6
  interface CreateCategorySignature {
@@ -31,7 +31,6 @@ __export(index_exports, {
31
31
  DesignTarget: () => DesignTarget,
32
32
  Direction: () => Direction,
33
33
  DividerDataAlignment: () => DividerDataAlignment,
34
- Filter: () => Filter,
35
34
  FontType: () => FontType,
36
35
  GIFType: () => GIFType,
37
36
  ImagePosition: () => ImagePosition,
@@ -49,19 +48,18 @@ __export(index_exports, {
49
48
  NodeType: () => NodeType,
50
49
  NullValue: () => NullValue,
51
50
  Orientation: () => Orientation,
51
+ Origin: () => Origin,
52
52
  Placement: () => Placement,
53
53
  PluginContainerDataAlignment: () => PluginContainerDataAlignment,
54
54
  PollLayoutDirection: () => PollLayoutDirection,
55
55
  PollLayoutType: () => PollLayoutType,
56
56
  Position: () => Position,
57
- QueryBuilder: () => QueryBuilder,
58
57
  RequestedFields: () => RequestedFields,
59
58
  Resizing: () => Resizing,
60
59
  ResponsivenessBehaviour: () => ResponsivenessBehaviour,
61
60
  ScalarType: () => ScalarType,
62
61
  Scaling: () => Scaling,
63
62
  SingleEntityOpsRequestedFields: () => SingleEntityOpsRequestedFields,
64
- Sort: () => Sort,
65
63
  SortDirection: () => SortDirection,
66
64
  SortOrder: () => SortOrder,
67
65
  SortType: () => SortType,
@@ -107,7 +105,8 @@ __export(index_exports, {
107
105
  searchCategories: () => searchCategories4,
108
106
  setArrangedItems: () => setArrangedItems4,
109
107
  updateCategory: () => updateCategory4,
110
- updateCategoryVisibility: () => updateCategoryVisibility4
108
+ updateCategoryVisibility: () => updateCategoryVisibility4,
109
+ utils: () => utils
111
110
  });
112
111
  module.exports = __toCommonJS(index_exports);
113
112
 
@@ -1833,6 +1832,11 @@ var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
1833
1832
  ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
1834
1833
  return ImagePosition2;
1835
1834
  })(ImagePosition || {});
1835
+ var Origin = /* @__PURE__ */ ((Origin2) => {
1836
+ Origin2["IMAGE"] = "IMAGE";
1837
+ Origin2["LAYOUT"] = "LAYOUT";
1838
+ return Origin2;
1839
+ })(Origin || {});
1836
1840
  var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
1837
1841
  VerticalAlignmentAlignment2["TOP"] = "TOP";
1838
1842
  VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
@@ -2198,7 +2202,9 @@ async function typedQueryCategories(query, options) {
2198
2202
  throw transformedError;
2199
2203
  }
2200
2204
  }
2201
- var { QueryBuilder, Filter, Sort } = (0, import_query_builder_utils.createQueryUtils)();
2205
+ var utils = {
2206
+ ...(0, import_query_builder_utils.createQueryUtils)()
2207
+ };
2202
2208
  async function searchCategories2(search, options) {
2203
2209
  const { httpClient, sideEffects } = arguments[2];
2204
2210
  const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)(
@@ -3418,7 +3424,6 @@ var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(
3418
3424
  DesignTarget,
3419
3425
  Direction,
3420
3426
  DividerDataAlignment,
3421
- Filter,
3422
3427
  FontType,
3423
3428
  GIFType,
3424
3429
  ImagePosition,
@@ -3436,19 +3441,18 @@ var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(
3436
3441
  NodeType,
3437
3442
  NullValue,
3438
3443
  Orientation,
3444
+ Origin,
3439
3445
  Placement,
3440
3446
  PluginContainerDataAlignment,
3441
3447
  PollLayoutDirection,
3442
3448
  PollLayoutType,
3443
3449
  Position,
3444
- QueryBuilder,
3445
3450
  RequestedFields,
3446
3451
  Resizing,
3447
3452
  ResponsivenessBehaviour,
3448
3453
  ScalarType,
3449
3454
  Scaling,
3450
3455
  SingleEntityOpsRequestedFields,
3451
- Sort,
3452
3456
  SortDirection,
3453
3457
  SortOrder,
3454
3458
  SortType,
@@ -3494,6 +3498,7 @@ var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(
3494
3498
  searchCategories,
3495
3499
  setArrangedItems,
3496
3500
  updateCategory,
3497
- updateCategoryVisibility
3501
+ updateCategoryVisibility,
3502
+ utils
3498
3503
  });
3499
3504
  //# sourceMappingURL=index.js.map