@wix/auto_sdk_categories_categories 1.0.120 → 1.0.122

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-Bz2lY2xQ.d.ts → categories-v1-category-categories.universal-B8K4dTVY.d.ts} +17 -3
  2. package/build/cjs/index.d.ts +13 -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 +2 -2
  7. package/build/cjs/meta.js.map +1 -1
  8. package/build/cjs/schemas.d.ts +67 -1
  9. package/build/cjs/schemas.js +146 -0
  10. package/build/cjs/schemas.js.map +1 -1
  11. package/build/es/{categories-v1-category-categories.universal-Bz2lY2xQ.d.mts → categories-v1-category-categories.universal-B8K4dTVY.d.mts} +17 -3
  12. package/build/es/index.d.mts +13 -3
  13. package/build/es/index.mjs.map +1 -1
  14. package/build/es/index.typings.d.mts +2 -2
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +2 -2
  17. package/build/es/meta.mjs.map +1 -1
  18. package/build/es/schemas.d.mts +67 -1
  19. package/build/es/schemas.mjs +144 -0
  20. package/build/es/schemas.mjs.map +1 -1
  21. package/build/internal/cjs/{categories-v1-category-categories.universal-CLa_zr_w.d.ts → categories-v1-category-categories.universal-DpGXPwLu.d.ts} +3 -3
  22. package/build/internal/cjs/index.d.ts +2 -4
  23. package/build/internal/cjs/index.js.map +1 -1
  24. package/build/internal/cjs/index.typings.d.ts +2 -2
  25. package/build/internal/cjs/index.typings.js.map +1 -1
  26. package/build/internal/cjs/meta.d.ts +2 -2
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/cjs/schemas.d.ts +67 -1
  29. package/build/internal/cjs/schemas.js +146 -0
  30. package/build/internal/cjs/schemas.js.map +1 -1
  31. package/build/internal/es/{categories-v1-category-categories.universal-CLa_zr_w.d.mts → categories-v1-category-categories.universal-DpGXPwLu.d.mts} +3 -3
  32. package/build/internal/es/index.d.mts +2 -4
  33. package/build/internal/es/index.mjs.map +1 -1
  34. package/build/internal/es/index.typings.d.mts +2 -2
  35. package/build/internal/es/index.typings.mjs.map +1 -1
  36. package/build/internal/es/meta.d.mts +2 -2
  37. package/build/internal/es/meta.mjs.map +1 -1
  38. package/build/internal/es/schemas.d.mts +67 -1
  39. package/build/internal/es/schemas.mjs +144 -0
  40. package/build/internal/es/schemas.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -4286,7 +4286,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
4286
4286
  /** If present, indicates the action that triggered the event. */
4287
4287
  originatedFrom?: string | null;
4288
4288
  /**
4289
- * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
4289
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at `16:00` and then again at `16:01`, the second update will always have a higher sequence number.
4290
4290
  * 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.
4291
4291
  */
4292
4292
  entityEventSequence?: string | null;
@@ -4655,7 +4655,7 @@ interface EventMetadata extends BaseEventMetadata {
4655
4655
  /** If present, indicates the action that triggered the event. */
4656
4656
  originatedFrom?: string | null;
4657
4657
  /**
4658
- * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
4658
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at `16:00` and then again at `16:01`, the second update will always have a higher sequence number.
4659
4659
  * 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.
4660
4660
  */
4661
4661
  entityEventSequence?: string | null;
@@ -4998,6 +4998,20 @@ interface GetCategoryOptions {
4998
4998
  */
4999
4999
  fields?: SingleEntityOpsRequestedFieldsWithLiterals[];
5000
5000
  }
5001
+ /**
5002
+ * Retrieves a category by its slug.
5003
+ * @param slug - Category slug.
5004
+ * @param treeReference - Category tree reference details.
5005
+ * @public
5006
+ * @documentationMaturity preview
5007
+ * @requiredField slug
5008
+ * @requiredField treeReference
5009
+ * @requiredField treeReference.appNamespace
5010
+ * @permissionId CATEGORIES.CATEGORY_READ
5011
+ * @applicableIdentity APP
5012
+ * @fqn com.wix.categories.api.v1.CategoriesService.GetCategoryBySlug
5013
+ */
5014
+ declare function getCategoryBySlug(slug: string, treeReference: NonNullablePaths<TreeReference, `appNamespace`, 2>, options?: GetCategoryBySlugOptions): Promise<NonNullablePaths<GetCategoryBySlugResponse, `category.itemCounter` | `category.breadcrumbsInfo.breadcrumbs` | `category.breadcrumbsInfo.breadcrumbs.${number}.categoryId` | `category.breadcrumbsInfo.breadcrumbs.${number}.categoryName` | `category.breadcrumbsInfo.breadcrumbs.${number}.categorySlug` | `category.seoData.tags` | `category.seoData.tags.${number}.type` | `category.seoData.tags.${number}.children` | `category.seoData.tags.${number}.custom` | `category.seoData.tags.${number}.disabled` | `category.seoData.settings.preventAutoRedirect` | `category.seoData.settings.keywords` | `category.seoData.settings.keywords.${number}.term` | `category.seoData.settings.keywords.${number}.isMain` | `category.treeReference.appNamespace`, 7>>;
5001
5015
  interface GetCategoryBySlugOptions {
5002
5016
  /**
5003
5017
  * Fields to include in the response.
@@ -5951,4 +5965,4 @@ interface BulkSetItemCategoriesOptions {
5951
5965
  treeReference: TreeReference;
5952
5966
  }
5953
5967
 
5954
- 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, ColumnSize 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, BackgroundType as a9, ImageStylesPosition as aA, AspectRatio as aB, Resizing as aC, Placement as aD, Type as aE, Alignment as aF, Layout as aG, AppType as aH, InitialExpandedItems as aI, Direction as aJ, VerticalAlignment as aK, NullValue as aL, ImageScalingScaling as aM, ImagePosition as aN, Origin as aO, BannerPosition as aP, LayoutDataBackgroundType as aQ, BackdropType as aR, VerticalAlignmentAlignment as aS, ResponsivenessBehaviour as aT, DesignTarget as aU, Scaling as aV, ImagePositionPosition as aW, CardDataBackgroundType as aX, ListStyle as aY, Indentation as aZ, SmartBlockDataType as a_, GradientType as aa, WidthType as ab, PluginContainerDataAlignment as ac, ButtonDataType as ad, Target as ae, TextAlignment as af, LineStyle as ag, Width as ah, DividerDataAlignment as ai, ViewMode as aj, LayoutType as ak, Orientation as al, Crop as am, ThumbnailsAlignment as an, GIFType as ao, Source as ap, StylesPosition as aq, MapType as ar, ViewRole as as, VoteRole as at, PollLayoutType as au, PollLayoutDirection as av, PollDesignBackgroundType as aw, DecorationType as ax, FontType as ay, Variant as az, type CreateCategoryApplicationErrors as b, type StylesBorder as b$, SingleEntityOpsRequestedFields as b0, SortOrder as b1, RequestedFields as b2, SortType as b3, SortDirection as b4, MissingValues as b5, ScalarType as b6, NestedAggregationType as b7, Interval as b8, AggregationType as b9, type Styles as bA, type Link as bB, type LinkDataOneOf as bC, type Rel as bD, type CodeBlockData as bE, type TextStyle as bF, type DividerData as bG, type FileData as bH, type FileSource as bI, type FileSourceDataOneOf as bJ, type PDFSettings as bK, type GalleryData as bL, type Media as bM, type Image as bN, type Video as bO, type Item as bP, type ItemDataOneOf as bQ, type GalleryOptions as bR, type GalleryOptionsLayout as bS, type ItemStyle as bT, type Thumbnails as bU, type GIFData as bV, type GIF as bW, type HeadingData as bX, type HTMLData as bY, type HTMLDataDataOneOf as bZ, type ImageData as b_, Mode as ba, Position as bb, MoveItemInCategoryRequestPosition as bc, WebhookIdentityType as bd, type BreadcrumbsInfo as be, type Breadcrumb as bf, type ParentCategory as bg, type SeoSchema as bh, type Keyword as bi, type Tag as bj, type Settings as bk, type RichContent as bl, type Node as bm, type NodeDataOneOf as bn, type NodeStyle as bo, type ButtonData as bp, type Gradient as bq, type Stop as br, type Border as bs, type Colors as bt, type Background as bu, type PluginContainerData as bv, type PluginContainerDataWidth as bw, type PluginContainerDataWidthDataOneOf as bx, type Spoiler as by, type Height as bz, type CreateCategoryValidationErrors as c, type ShapeData as c$, type ImageDataStyles as c0, type LinkPreviewData as c1, type LinkPreviewDataStyles as c2, type MapData as c3, type MapSettings as c4, type ParagraphData as c5, type PollData as c6, type Permissions as c7, type Option as c8, type PollSettings as c9, type ImageStyles as cA, type RibbonStyles as cB, type CardStyles as cC, type PricingData as cD, type VideoData as cE, type PlaybackOptions as cF, type EmbedData as cG, type Oembed as cH, type CollapsibleListData as cI, type TableData as cJ, type Dimensions as cK, type TableCellData as cL, type CellStyle as cM, type BorderColors as cN, type BorderWidths as cO, type ListValue as cP, type AudioData as cQ, type OrderedListData as cR, type BulletedListData as cS, type BlockquoteData as cT, type CaptionData as cU, type LayoutData as cV, type LayoutDataBackgroundImage as cW, type Banner as cX, type LayoutDataBackground as cY, type Backdrop as cZ, type LayoutCellData as c_, type PollLayout as ca, type OptionLayout as cb, type BackgroundGradient as cc, type PollDesignBackground as cd, type PollDesignBackgroundBackgroundOneOf as ce, type PollDesign as cf, type OptionDesign as cg, type Poll as ch, type PollDataLayout as ci, type Design as cj, type TextData as ck, type Decoration as cl, type DecorationDataOneOf as cm, type AnchorData as cn, type ColorData as co, type LinkData as cp, type MentionData as cq, type FontSizeData as cr, type SpoilerData as cs, type FontFamilyData as ct, type SketchData as cu, type AppEmbedData as cv, type AppEmbedDataAppDataOneOf as cw, type BookingData as cx, type EventData as cy, type ButtonStyles as cz, type UpdateCategoryOptions as d, type NestedAggregationItem as d$, type ShapeDataStyles as d0, type CardData as d1, type CardDataBackground as d2, type BackgroundImage as d3, type TocData as d4, type SmartBlockData as d5, type SmartBlockCellData as d6, type CheckboxListData as d7, type ListItemNodeData as d8, type Metadata as d9, type UpdateCategoryRequest as dA, type UpdateCategoryResponse as dB, type DeleteCategoryRequest as dC, type DeleteCategoryResponse as dD, type QueryCategoriesRequest as dE, type CursorQuery as dF, type CursorQueryPagingMethodOneOf as dG, type Sorting as dH, type CursorPaging as dI, type QueryCategoriesResponse as dJ, type CursorPagingMetadata as dK, type Cursors as dL, type ListCompactCategoriesByIdsRequest as dM, type ListCompactCategoriesByIdsResponse as dN, type CompactCategory as dO, type SearchCategoriesRequest as dP, type CursorSearch as dQ, type CursorSearchPagingMethodOneOf as dR, type Aggregation as dS, type AggregationKindOneOf as dT, type RangeBucket as dU, type IncludeMissingValuesOptions as dV, type ValueAggregation as dW, type ValueAggregationOptionsOneOf as dX, type RangeAggregation as dY, type ScalarAggregation as dZ, type DateHistogramAggregation as d_, type DocumentStyle as da, type TextNodeStyle as db, type ExtendedFields as dc, type InvalidateCache as dd, type InvalidateCacheGetByOneOf as de, type App as df, type Page as dg, type URI as dh, type File as di, type CustomTag as dj, type Pages as dk, type URIs as dl, type CategoryMoved as dm, type ItemAddedToCategory as dn, type ItemsAddedToCategory as dp, type ItemRemovedFromCategory as dq, type ItemsRemovedFromCategory as dr, type ItemsArrangedInCategory as ds, type CreateCategoryRequest as dt, type CreateCategoryResponse as du, type DuplicateHandleErrorData as dv, type GetCategoryRequest as dw, type GetCategoryResponse as dx, type GetCategoryBySlugRequest as dy, type GetCategoryBySlugResponse as dz, type UpdateCategoryApplicationErrors as e, type GetCategoriesTreeResponse as e$, type NestedAggregationItemKindOneOf as e0, type NestedAggregation as e1, type SearchDetails as e2, type AggregationData as e3, type ValueAggregationResult as e4, type RangeAggregationResult as e5, type NestedAggregationResults as e6, type NestedAggregationResultsResultOneOf as e7, type ValueResults as e8, type RangeResults as e9, type BulkActionMetadata as eA, type UpdateCategoryVisibilityRequest as eB, type BulkShowCategoriesRequest as eC, type BulkDeleteCategoriesRequest as eD, type BulkDeleteCategoriesResponse as eE, type BulkDeleteCategoriesResponseBulkCategoriesResult as eF, type BulkAddItemsToCategoryRequest as eG, type BulkItemsToCategoryResult as eH, type ItemReferenceMetadata as eI, type BulkAddItemToCategoriesRequest as eJ, type BulkItemToCategoriesResult as eK, type BulkRemoveItemsFromCategoryRequest as eL, type BulkRemoveItemFromCategoriesRequest as eM, type ListItemsInCategoryRequest as eN, type ListItemsInCategoryRequestPagingMethodOneOf as eO, type PagingMetadataV2 as eP, type ListCategoriesForItemRequest as eQ, type ListCategoriesForItemsRequest as eR, type MapItemToCategories as eS, type ListTreesRequest as eT, type MoveItemInCategoryRequest as eU, type MoveItemInCategoryResponse as eV, type SetArrangedItemsRequest as eW, type GetArrangedItemsRequest as eX, type BulkSetItemCategoriesRequest as eY, type BulkSetItemCategoriesResponse as eZ, type GetCategoriesTreeRequest as e_, type AggregationResultsScalarResult as ea, type NestedValueAggregationResult as eb, type ValueResult as ec, type RangeResult as ed, type ScalarResult as ee, type NestedResultValue as ef, type NestedResultValueResultOneOf as eg, type Results as eh, type DateHistogramResult as ei, type GroupByValueResults as ej, type DateHistogramResults as ek, type NestedResults as el, type AggregationResults as em, type AggregationResultsResultOneOf as en, type DeprecatedSearchCategoriesWithOffsetRequest as eo, type OffsetSearch as ep, type OffsetSearchPagingMethodOneOf as eq, type Paging as er, type DeprecatedSearchCategoriesWithOffsetResponse as es, type PagingMetadata as et, type CountCategoriesRequest as eu, type MoveCategoryRequest as ev, type BulkUpdateCategoriesRequest as ew, type BulkCategoriesResult as ex, type ItemMetadata as ey, type ApplicationError as ez, type CategorySearch as f, type AlignmentWithLiterals as f$, type CategoryTreeNode as f0, type DomainEvent as f1, type DomainEventBodyOneOf as f2, type EntityCreatedEvent as f3, type RestoreInfo as f4, type EntityUpdatedEvent as f5, type EntityDeletedEvent as f6, type ActionEvent as f7, type Empty as f8, type BulkCreateCategoriesForMigrationRequest as f9, type TargetWithLiterals as fA, type TextAlignmentWithLiterals as fB, type LineStyleWithLiterals as fC, type WidthWithLiterals as fD, type DividerDataAlignmentWithLiterals as fE, type ViewModeWithLiterals as fF, type LayoutTypeWithLiterals as fG, type OrientationWithLiterals as fH, type CropWithLiterals as fI, type ThumbnailsAlignmentWithLiterals as fJ, type GIFTypeWithLiterals as fK, type SourceWithLiterals as fL, type StylesPositionWithLiterals as fM, type MapTypeWithLiterals as fN, type ViewRoleWithLiterals as fO, type VoteRoleWithLiterals as fP, type PollLayoutTypeWithLiterals as fQ, type PollLayoutDirectionWithLiterals as fR, type PollDesignBackgroundTypeWithLiterals as fS, type DecorationTypeWithLiterals as fT, type FontTypeWithLiterals as fU, type VariantWithLiterals as fV, type ImageStylesPositionWithLiterals as fW, type AspectRatioWithLiterals as fX, type ResizingWithLiterals as fY, type PlacementWithLiterals as fZ, type TypeWithLiterals as f_, type BulkCreateCategoriesForMigrationResponse as fa, type BulkAddItemsToCategoryForMigrationRequest as fb, type BulkAddItemsToCategoryForMigrationResponse as fc, type SetArrangedItemsForMigrationRequest as fd, type SetArrangedItemsForMigrationResponse as fe, type CatalogRollbackRequested as ff, type MessageEnvelope as fg, type IdentificationData as fh, type IdentificationDataIdOneOf as fi, type AccountInfo as fj, type BaseEventMetadata as fk, type EventMetadata as fl, type AccountInfoMetadata as fm, type GetCategoryBySlugOptions as fn, type CategoriesQueryResult as fo, type CategoryQuerySpec as fp, type CategorySearchSpec as fq, type ListItemsInCategoryOptionsPagingMethodOneOf as fr, type BulkSetItemCategoriesOptions as fs, utils as ft, type NodeTypeWithLiterals as fu, type BackgroundTypeWithLiterals as fv, type GradientTypeWithLiterals as fw, type WidthTypeWithLiterals as fx, type PluginContainerDataAlignmentWithLiterals as fy, type ButtonDataTypeWithLiterals as fz, type SearchCategoriesResponse as g, listTrees as g$, type LayoutWithLiterals as g0, type AppTypeWithLiterals as g1, type InitialExpandedItemsWithLiterals as g2, type DirectionWithLiterals as g3, type VerticalAlignmentWithLiterals as g4, type NullValueWithLiterals as g5, type ImageScalingScalingWithLiterals as g6, type ImagePositionWithLiterals as g7, type OriginWithLiterals as g8, type BannerPositionWithLiterals as g9, type BulkSetItemCategoriesApplicationErrors as gA, type CommonQueryWithEntityContext as gB, type CommonSearchWithEntityContext as gC, onCategoryMoved as gD, onCategoryCreated as gE, onCategoryDeleted as gF, onCategoryItemAddedToCategory as gG, onCategoryItemRemovedFromCategory as gH, onCategoryItemsArrangedInCategory as gI, onCategoryUpdated as gJ, createCategory as gK, getCategory as gL, updateCategory as gM, deleteCategory as gN, queryCategories as gO, countCategories as gP, moveCategory as gQ, bulkUpdateCategories as gR, updateCategoryVisibility as gS, bulkShowCategories as gT, bulkAddItemsToCategory as gU, bulkAddItemToCategories as gV, bulkRemoveItemsFromCategory as gW, bulkRemoveItemFromCategories as gX, listItemsInCategory as gY, listCategoriesForItem as gZ, listCategoriesForItems as g_, type LayoutDataBackgroundTypeWithLiterals as ga, type BackdropTypeWithLiterals as gb, type VerticalAlignmentAlignmentWithLiterals as gc, type ResponsivenessBehaviourWithLiterals as gd, type DesignTargetWithLiterals as ge, type ScalingWithLiterals as gf, type ImagePositionPositionWithLiterals as gg, type CardDataBackgroundTypeWithLiterals as gh, type ListStyleWithLiterals as gi, type IndentationWithLiterals as gj, type SmartBlockDataTypeWithLiterals as gk, type ColumnSizeWithLiterals as gl, type SingleEntityOpsRequestedFieldsWithLiterals as gm, type SortOrderWithLiterals as gn, type RequestedFieldsWithLiterals as go, type SortTypeWithLiterals as gp, type SortDirectionWithLiterals as gq, type MissingValuesWithLiterals as gr, type ScalarTypeWithLiterals as gs, type NestedAggregationTypeWithLiterals as gt, type IntervalWithLiterals as gu, type AggregationTypeWithLiterals as gv, type ModeWithLiterals as gw, type PositionWithLiterals as gx, type MoveItemInCategoryRequestPositionWithLiterals as gy, type WebhookIdentityTypeWithLiterals as gz, type CountCategoriesOptions as h, setArrangedItems as h0, getArrangedItems as h1, 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 };
5968
+ export { type CategoryMovedEnvelope as $, type BulkAddItemToCategoriesApplicationErrors as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkRemoveItemsFromCategoryOptions as E, type BulkRemoveItemsFromCategoryResponse as F, type GetCategoryOptions as G, type BulkRemoveItemsFromCategoryApplicationErrors as H, type ItemReference as I, type BulkRemoveItemFromCategoriesOptions as J, type BulkRemoveItemFromCategoriesResponse as K, type BulkRemoveItemFromCategoriesApplicationErrors as L, type MoveCategoryOptions as M, type ListItemsInCategoryOptions as N, type ListItemsInCategoryResponse as O, type ListCategoriesForItemOptions as P, type ListCategoriesForItemResponse as Q, type ListCategoriesForItemsOptions as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type ListCategoriesForItemsResponse as V, type ListTreesResponse as W, type SetArrangedItemsOptions as X, type SetArrangedItemsResponse as Y, type SetArrangedItemsApplicationErrors as Z, type GetArrangedItemsResponse as _, type CreateCategoryOptions as a, Indentation as a$, type CategoryCreatedEnvelope as a0, type CategoryDeletedEnvelope as a1, type CategoryItemAddedToCategoryEnvelope as a2, type CategoryItemRemovedFromCategoryEnvelope as a3, type CategoryItemsArrangedInCategoryEnvelope as a4, type CategoryUpdatedEnvelope as a5, type CategoryQuery as a6, type QueryCategoriesOptions as a7, typedQueryCategories as a8, type CategoriesQueryBuilder as a9, FontType as aA, Variant as aB, ImageStylesPosition as aC, AspectRatio as aD, Resizing as aE, Placement as aF, Type as aG, Alignment as aH, Layout as aI, AppType as aJ, InitialExpandedItems as aK, Direction as aL, VerticalAlignment as aM, NullValue as aN, ImageScalingScaling as aO, ImagePosition as aP, Origin as aQ, BannerPosition as aR, LayoutDataBackgroundType as aS, BackdropType as aT, VerticalAlignmentAlignment as aU, ResponsivenessBehaviour as aV, DesignTarget as aW, Scaling as aX, ImagePositionPosition as aY, CardDataBackgroundType as aZ, ListStyle as a_, NodeType as aa, BackgroundType as ab, GradientType as ac, WidthType as ad, PluginContainerDataAlignment as ae, ButtonDataType as af, Target as ag, TextAlignment as ah, LineStyle as ai, Width as aj, DividerDataAlignment as ak, ViewMode as al, LayoutType as am, Orientation as an, Crop as ao, ThumbnailsAlignment as ap, GIFType as aq, Source as ar, StylesPosition as as, MapType as at, ViewRole as au, VoteRole as av, PollLayoutType as aw, PollLayoutDirection as ax, PollDesignBackgroundType as ay, DecorationType as az, type CreateCategoryApplicationErrors as b, type HTMLDataDataOneOf as b$, SmartBlockDataType as b0, ColumnSize as b1, SingleEntityOpsRequestedFields as b2, SortOrder as b3, RequestedFields as b4, SortType as b5, SortDirection as b6, MissingValues as b7, ScalarType as b8, NestedAggregationType as b9, type Spoiler as bA, type Height as bB, type Styles as bC, type Link as bD, type LinkDataOneOf as bE, type Rel as bF, type CodeBlockData as bG, type TextStyle as bH, type DividerData as bI, type FileData as bJ, type FileSource as bK, type FileSourceDataOneOf as bL, type PDFSettings as bM, type GalleryData as bN, type Media as bO, type Image as bP, type Video as bQ, type Item as bR, type ItemDataOneOf as bS, type GalleryOptions as bT, type GalleryOptionsLayout as bU, type ItemStyle as bV, type Thumbnails as bW, type GIFData as bX, type GIF as bY, type HeadingData as bZ, type HTMLData as b_, Interval as ba, AggregationType as bb, Mode as bc, Position as bd, MoveItemInCategoryRequestPosition as be, WebhookIdentityType as bf, type BreadcrumbsInfo as bg, type Breadcrumb as bh, type ParentCategory as bi, type SeoSchema as bj, type Keyword as bk, type Tag as bl, type Settings as bm, type RichContent as bn, type Node as bo, type NodeDataOneOf as bp, type NodeStyle as bq, type ButtonData as br, type Gradient as bs, type Stop as bt, type Border as bu, type Colors as bv, type Background as bw, type PluginContainerData as bx, type PluginContainerDataWidth as by, type PluginContainerDataWidthDataOneOf as bz, type CreateCategoryValidationErrors as c, type Backdrop as c$, type ImageData as c0, type StylesBorder as c1, type ImageDataStyles as c2, type LinkPreviewData as c3, type LinkPreviewDataStyles as c4, type MapData as c5, type MapSettings as c6, type ParagraphData as c7, type PollData as c8, type Permissions as c9, type EventData as cA, type ButtonStyles as cB, type ImageStyles as cC, type RibbonStyles as cD, type CardStyles as cE, type PricingData as cF, type VideoData as cG, type PlaybackOptions as cH, type EmbedData as cI, type Oembed as cJ, type CollapsibleListData as cK, type TableData as cL, type Dimensions as cM, type TableCellData as cN, type CellStyle as cO, type BorderColors as cP, type BorderWidths as cQ, type ListValue as cR, type AudioData as cS, type OrderedListData as cT, type BulletedListData as cU, type BlockquoteData as cV, type CaptionData as cW, type LayoutData as cX, type LayoutDataBackgroundImage as cY, type Banner as cZ, type LayoutDataBackground as c_, type Option as ca, type PollSettings as cb, type PollLayout as cc, type OptionLayout as cd, type BackgroundGradient as ce, type PollDesignBackground as cf, type PollDesignBackgroundBackgroundOneOf as cg, type PollDesign as ch, type OptionDesign as ci, type Poll as cj, type PollDataLayout as ck, type Design as cl, type TextData as cm, type Decoration as cn, type DecorationDataOneOf as co, type AnchorData as cp, type ColorData as cq, type LinkData as cr, type MentionData as cs, type FontSizeData as ct, type SpoilerData as cu, type FontFamilyData as cv, type SketchData as cw, type AppEmbedData as cx, type AppEmbedDataAppDataOneOf as cy, type BookingData as cz, type GetCategoryBySlugOptions as d, type DateHistogramAggregation as d$, type LayoutCellData as d0, type ShapeData as d1, type ShapeDataStyles as d2, type CardData as d3, type CardDataBackground as d4, type BackgroundImage as d5, type TocData as d6, type SmartBlockData as d7, type SmartBlockCellData as d8, type CheckboxListData as d9, type GetCategoryBySlugRequest as dA, type UpdateCategoryRequest as dB, type UpdateCategoryResponse as dC, type DeleteCategoryRequest as dD, type DeleteCategoryResponse as dE, type QueryCategoriesRequest as dF, type CursorQuery as dG, type CursorQueryPagingMethodOneOf as dH, type Sorting as dI, type CursorPaging as dJ, type QueryCategoriesResponse as dK, type CursorPagingMetadata as dL, type Cursors as dM, type ListCompactCategoriesByIdsRequest as dN, type ListCompactCategoriesByIdsResponse as dO, type CompactCategory as dP, type SearchCategoriesRequest as dQ, type CursorSearch as dR, type CursorSearchPagingMethodOneOf as dS, type Aggregation as dT, type AggregationKindOneOf as dU, type RangeBucket as dV, type IncludeMissingValuesOptions as dW, type ValueAggregation as dX, type ValueAggregationOptionsOneOf as dY, type RangeAggregation as dZ, type ScalarAggregation as d_, type ListItemNodeData as da, type Metadata as db, type DocumentStyle as dc, type TextNodeStyle as dd, type ExtendedFields as de, type InvalidateCache as df, type InvalidateCacheGetByOneOf as dg, type App as dh, type Page as di, type URI as dj, type File as dk, type CustomTag as dl, type Pages as dm, type URIs as dn, type CategoryMoved as dp, type ItemAddedToCategory as dq, type ItemsAddedToCategory as dr, type ItemRemovedFromCategory as ds, type ItemsRemovedFromCategory as dt, type ItemsArrangedInCategory as du, type CreateCategoryRequest as dv, type CreateCategoryResponse as dw, type DuplicateHandleErrorData as dx, type GetCategoryRequest as dy, type GetCategoryResponse as dz, type GetCategoryBySlugResponse as e, type GetCategoriesTreeRequest as e$, type NestedAggregationItem as e0, type NestedAggregationItemKindOneOf as e1, type NestedAggregation as e2, type SearchDetails as e3, type AggregationData as e4, type ValueAggregationResult as e5, type RangeAggregationResult as e6, type NestedAggregationResults as e7, type NestedAggregationResultsResultOneOf as e8, type ValueResults as e9, type ApplicationError as eA, type BulkActionMetadata as eB, type UpdateCategoryVisibilityRequest as eC, type BulkShowCategoriesRequest as eD, type BulkDeleteCategoriesRequest as eE, type BulkDeleteCategoriesResponse as eF, type BulkDeleteCategoriesResponseBulkCategoriesResult as eG, type BulkAddItemsToCategoryRequest as eH, type BulkItemsToCategoryResult as eI, type ItemReferenceMetadata as eJ, type BulkAddItemToCategoriesRequest as eK, type BulkItemToCategoriesResult as eL, type BulkRemoveItemsFromCategoryRequest as eM, type BulkRemoveItemFromCategoriesRequest as eN, type ListItemsInCategoryRequest as eO, type ListItemsInCategoryRequestPagingMethodOneOf as eP, type PagingMetadataV2 as eQ, type ListCategoriesForItemRequest as eR, type ListCategoriesForItemsRequest as eS, type MapItemToCategories as eT, type ListTreesRequest as eU, type MoveItemInCategoryRequest as eV, type MoveItemInCategoryResponse as eW, type SetArrangedItemsRequest as eX, type GetArrangedItemsRequest as eY, type BulkSetItemCategoriesRequest as eZ, type BulkSetItemCategoriesResponse as e_, type RangeResults as ea, type AggregationResultsScalarResult as eb, type NestedValueAggregationResult as ec, type ValueResult as ed, type RangeResult as ee, type ScalarResult as ef, type NestedResultValue as eg, type NestedResultValueResultOneOf as eh, type Results as ei, type DateHistogramResult as ej, type GroupByValueResults as ek, type DateHistogramResults as el, type NestedResults as em, type AggregationResults as en, type AggregationResultsResultOneOf as eo, type DeprecatedSearchCategoriesWithOffsetRequest as ep, type OffsetSearch as eq, type OffsetSearchPagingMethodOneOf as er, type Paging as es, type DeprecatedSearchCategoriesWithOffsetResponse as et, type PagingMetadata as eu, type CountCategoriesRequest as ev, type MoveCategoryRequest as ew, type BulkUpdateCategoriesRequest as ex, type BulkCategoriesResult as ey, type ItemMetadata as ez, type UpdateCategoryOptions as f, type AlignmentWithLiterals as f$, type GetCategoriesTreeResponse as f0, type CategoryTreeNode as f1, type DomainEvent as f2, type DomainEventBodyOneOf as f3, type EntityCreatedEvent as f4, type RestoreInfo as f5, type EntityUpdatedEvent as f6, type EntityDeletedEvent as f7, type ActionEvent as f8, type Empty as f9, type TargetWithLiterals as fA, type TextAlignmentWithLiterals as fB, type LineStyleWithLiterals as fC, type WidthWithLiterals as fD, type DividerDataAlignmentWithLiterals as fE, type ViewModeWithLiterals as fF, type LayoutTypeWithLiterals as fG, type OrientationWithLiterals as fH, type CropWithLiterals as fI, type ThumbnailsAlignmentWithLiterals as fJ, type GIFTypeWithLiterals as fK, type SourceWithLiterals as fL, type StylesPositionWithLiterals as fM, type MapTypeWithLiterals as fN, type ViewRoleWithLiterals as fO, type VoteRoleWithLiterals as fP, type PollLayoutTypeWithLiterals as fQ, type PollLayoutDirectionWithLiterals as fR, type PollDesignBackgroundTypeWithLiterals as fS, type DecorationTypeWithLiterals as fT, type FontTypeWithLiterals as fU, type VariantWithLiterals as fV, type ImageStylesPositionWithLiterals as fW, type AspectRatioWithLiterals as fX, type ResizingWithLiterals as fY, type PlacementWithLiterals as fZ, type TypeWithLiterals as f_, type BulkCreateCategoriesForMigrationRequest as fa, type BulkCreateCategoriesForMigrationResponse as fb, type BulkAddItemsToCategoryForMigrationRequest as fc, type BulkAddItemsToCategoryForMigrationResponse as fd, type SetArrangedItemsForMigrationRequest as fe, type SetArrangedItemsForMigrationResponse as ff, type CatalogRollbackRequested as fg, type MessageEnvelope as fh, type IdentificationData as fi, type IdentificationDataIdOneOf as fj, type AccountInfo as fk, type BaseEventMetadata as fl, type EventMetadata as fm, type AccountInfoMetadata as fn, type CategoriesQueryResult as fo, type CategoryQuerySpec as fp, type CategorySearchSpec as fq, type ListItemsInCategoryOptionsPagingMethodOneOf as fr, type BulkSetItemCategoriesOptions as fs, utils as ft, type NodeTypeWithLiterals as fu, type BackgroundTypeWithLiterals as fv, type GradientTypeWithLiterals as fw, type WidthTypeWithLiterals as fx, type PluginContainerDataAlignmentWithLiterals as fy, type ButtonDataTypeWithLiterals as fz, type UpdateCategoryApplicationErrors as g, listCategoriesForItems as g$, type LayoutWithLiterals as g0, type AppTypeWithLiterals as g1, type InitialExpandedItemsWithLiterals as g2, type DirectionWithLiterals as g3, type VerticalAlignmentWithLiterals as g4, type NullValueWithLiterals as g5, type ImageScalingScalingWithLiterals as g6, type ImagePositionWithLiterals as g7, type OriginWithLiterals as g8, type BannerPositionWithLiterals as g9, type BulkSetItemCategoriesApplicationErrors as gA, type CommonQueryWithEntityContext as gB, type CommonSearchWithEntityContext as gC, onCategoryMoved as gD, onCategoryCreated as gE, onCategoryDeleted as gF, onCategoryItemAddedToCategory as gG, onCategoryItemRemovedFromCategory as gH, onCategoryItemsArrangedInCategory as gI, onCategoryUpdated as gJ, createCategory as gK, getCategory as gL, getCategoryBySlug as gM, updateCategory as gN, deleteCategory as gO, queryCategories as gP, countCategories as gQ, moveCategory as gR, bulkUpdateCategories as gS, updateCategoryVisibility as gT, bulkShowCategories as gU, bulkAddItemsToCategory as gV, bulkAddItemToCategories as gW, bulkRemoveItemsFromCategory as gX, bulkRemoveItemFromCategories as gY, listItemsInCategory as gZ, listCategoriesForItem as g_, type LayoutDataBackgroundTypeWithLiterals as ga, type BackdropTypeWithLiterals as gb, type VerticalAlignmentAlignmentWithLiterals as gc, type ResponsivenessBehaviourWithLiterals as gd, type DesignTargetWithLiterals as ge, type ScalingWithLiterals as gf, type ImagePositionPositionWithLiterals as gg, type CardDataBackgroundTypeWithLiterals as gh, type ListStyleWithLiterals as gi, type IndentationWithLiterals as gj, type SmartBlockDataTypeWithLiterals as gk, type ColumnSizeWithLiterals as gl, type SingleEntityOpsRequestedFieldsWithLiterals as gm, type SortOrderWithLiterals as gn, type RequestedFieldsWithLiterals as go, type SortTypeWithLiterals as gp, type SortDirectionWithLiterals as gq, type MissingValuesWithLiterals as gr, type ScalarTypeWithLiterals as gs, type NestedAggregationTypeWithLiterals as gt, type IntervalWithLiterals as gu, type AggregationTypeWithLiterals as gv, type ModeWithLiterals as gw, type PositionWithLiterals as gx, type MoveItemInCategoryRequestPositionWithLiterals as gy, type WebhookIdentityTypeWithLiterals as gz, type CategorySearch as h, listTrees as h0, setArrangedItems as h1, getArrangedItems as h2, type SearchCategoriesResponse as i, type CountCategoriesOptions as j, type CountCategoriesResponse as k, type MoveCategoryResponse as l, type MoveCategoryApplicationErrors as m, type MaskedCategory as n, type BulkUpdateCategoriesResponse as o, type BulkUpdateCategoriesApplicationErrors as p, type UpdateCategoryVisibilityOptions as q, type UpdateCategoryVisibilityResponse as r, type UpdateCategoryVisibilityApplicationErrors as s, type BulkShowCategoriesOptions as t, type BulkShowCategoriesResponse as u, type BulkAddItemsToCategoryOptions as v, type BulkAddItemsToCategoryResponse as w, type BulkAddItemsToCategoryApplicationErrors as x, type BulkAddItemToCategoriesOptions as y, type BulkAddItemToCategoriesResponse 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-Bz2lY2xQ.js';
3
- export { fj as AccountInfo, fm as AccountInfoMetadata, f7 as ActionEvent, dS as Aggregation, e3 as AggregationData, dT as AggregationKindOneOf, em as AggregationResults, en as AggregationResultsResultOneOf, ea as AggregationResultsScalarResult, b9 as AggregationType, gv as AggregationTypeWithLiterals, aF as Alignment, f$ as AlignmentWithLiterals, cn as AnchorData, df as App, cv as AppEmbedData, cw as AppEmbedDataAppDataOneOf, aH as AppType, g1 as AppTypeWithLiterals, ez as ApplicationError, aB as AspectRatio, fX as AspectRatioWithLiterals, cQ as AudioData, cZ as Backdrop, aR as BackdropType, gb as BackdropTypeWithLiterals, bu as Background, cc as BackgroundGradient, d3 as BackgroundImage, a9 as BackgroundType, fv as BackgroundTypeWithLiterals, cX as Banner, aP as BannerPosition, g9 as BannerPositionWithLiterals, fk as BaseEventMetadata, cT as BlockquoteData, cx as BookingData, bs as Border, cN as BorderColors, cO as BorderWidths, bf as Breadcrumb, be as BreadcrumbsInfo, eA as BulkActionMetadata, eJ as BulkAddItemToCategoriesRequest, fb as BulkAddItemsToCategoryForMigrationRequest, fc as BulkAddItemsToCategoryForMigrationResponse, eG as BulkAddItemsToCategoryRequest, ex as BulkCategoriesResult, f9 as BulkCreateCategoriesForMigrationRequest, fa as BulkCreateCategoriesForMigrationResponse, eD as BulkDeleteCategoriesRequest, eE as BulkDeleteCategoriesResponse, eF as BulkDeleteCategoriesResponseBulkCategoriesResult, eK as BulkItemToCategoriesResult, eH as BulkItemsToCategoryResult, eM as BulkRemoveItemFromCategoriesRequest, eL as BulkRemoveItemsFromCategoryRequest, gA as BulkSetItemCategoriesApplicationErrors, fs as BulkSetItemCategoriesOptions, eY as BulkSetItemCategoriesRequest, eZ as BulkSetItemCategoriesResponse, eC as BulkShowCategoriesRequest, ew as BulkUpdateCategoriesRequest, cS as BulletedListData, bp as ButtonData, ad as ButtonDataType, fz as ButtonDataTypeWithLiterals, cz as ButtonStyles, cU as CaptionData, d1 as CardData, d2 as CardDataBackground, aX as CardDataBackgroundType, gh as CardDataBackgroundTypeWithLiterals, cC as CardStyles, ff as CatalogRollbackRequested, fo as CategoriesQueryResult, dm as CategoryMoved, fp as CategoryQuerySpec, fq as CategorySearchSpec, f0 as CategoryTreeNode, cM as CellStyle, d7 as CheckboxListData, bE as CodeBlockData, cI as CollapsibleListData, co as ColorData, bt as Colors, a$ as ColumnSize, gl as ColumnSizeWithLiterals, gB as CommonQueryWithEntityContext, gC as CommonSearchWithEntityContext, dO as CompactCategory, eu as CountCategoriesRequest, dt as CreateCategoryRequest, du as CreateCategoryResponse, am as Crop, fI as CropWithLiterals, dI as CursorPaging, dK as CursorPagingMetadata, dF as CursorQuery, dG as CursorQueryPagingMethodOneOf, dQ as CursorSearch, dR as CursorSearchPagingMethodOneOf, dL as Cursors, dj as CustomTag, d_ as DateHistogramAggregation, ei as DateHistogramResult, ek as DateHistogramResults, cl as Decoration, cm as DecorationDataOneOf, ax as DecorationType, fT as DecorationTypeWithLiterals, dC as DeleteCategoryRequest, dD as DeleteCategoryResponse, eo as DeprecatedSearchCategoriesWithOffsetRequest, es as DeprecatedSearchCategoriesWithOffsetResponse, cj as Design, aU as DesignTarget, ge as DesignTargetWithLiterals, cK as Dimensions, aJ as Direction, g3 as DirectionWithLiterals, bG as DividerData, ai as DividerDataAlignment, fE as DividerDataAlignmentWithLiterals, da as DocumentStyle, f1 as DomainEvent, f2 as DomainEventBodyOneOf, dv as DuplicateHandleErrorData, cG as EmbedData, f8 as Empty, f3 as EntityCreatedEvent, f6 as EntityDeletedEvent, f5 as EntityUpdatedEvent, cy as EventData, fl as EventMetadata, dc as ExtendedFields, di as File, bH as FileData, bI as FileSource, bJ as FileSourceDataOneOf, ct as FontFamilyData, cr as FontSizeData, ay as FontType, fU as FontTypeWithLiterals, bW as GIF, bV as GIFData, ao as GIFType, fK as GIFTypeWithLiterals, bL as GalleryData, bR as GalleryOptions, bS as GalleryOptionsLayout, eX as GetArrangedItemsRequest, e_ as GetCategoriesTreeRequest, e$ as GetCategoriesTreeResponse, fn as GetCategoryBySlugOptions, dy as GetCategoryBySlugRequest, dz as GetCategoryBySlugResponse, dw as GetCategoryRequest, dx as GetCategoryResponse, bq as Gradient, aa as GradientType, fw as GradientTypeWithLiterals, ej as GroupByValueResults, bY as HTMLData, bZ as HTMLDataDataOneOf, bX as HeadingData, bz as Height, fh as IdentificationData, fi as IdentificationDataIdOneOf, bN as Image, b_ as ImageData, c0 as ImageDataStyles, aN as ImagePosition, aW as ImagePositionPosition, gg as ImagePositionPositionWithLiterals, g7 as ImagePositionWithLiterals, aM as ImageScalingScaling, g6 as ImageScalingScalingWithLiterals, cA as ImageStyles, aA as ImageStylesPosition, fW as ImageStylesPositionWithLiterals, dV as IncludeMissingValuesOptions, aZ as Indentation, gj as IndentationWithLiterals, aI as InitialExpandedItems, g2 as InitialExpandedItemsWithLiterals, b8 as Interval, gu as IntervalWithLiterals, dd as InvalidateCache, de as InvalidateCacheGetByOneOf, bP as Item, dn as ItemAddedToCategory, bQ as ItemDataOneOf, ey as ItemMetadata, eI as ItemReferenceMetadata, dq as ItemRemovedFromCategory, bT as ItemStyle, dp as ItemsAddedToCategory, ds as ItemsArrangedInCategory, dr as ItemsRemovedFromCategory, bi as Keyword, aG as Layout, c_ as LayoutCellData, cV as LayoutData, cY as LayoutDataBackground, cW as LayoutDataBackgroundImage, aQ as LayoutDataBackgroundType, ga as LayoutDataBackgroundTypeWithLiterals, ak as LayoutType, fG as LayoutTypeWithLiterals, g0 as LayoutWithLiterals, ag as LineStyle, fC as LineStyleWithLiterals, bB as Link, cp as LinkData, bC as LinkDataOneOf, c1 as LinkPreviewData, c2 as LinkPreviewDataStyles, eQ as ListCategoriesForItemRequest, eR as ListCategoriesForItemsRequest, dM as ListCompactCategoriesByIdsRequest, dN as ListCompactCategoriesByIdsResponse, d8 as ListItemNodeData, fr as ListItemsInCategoryOptionsPagingMethodOneOf, eN as ListItemsInCategoryRequest, eO as ListItemsInCategoryRequestPagingMethodOneOf, aY as ListStyle, gi as ListStyleWithLiterals, eT as ListTreesRequest, cP as ListValue, c3 as MapData, eS as MapItemToCategories, c4 as MapSettings, ar as MapType, fN as MapTypeWithLiterals, bM as Media, cq as MentionData, fg as MessageEnvelope, d9 as Metadata, b5 as MissingValues, gr as MissingValuesWithLiterals, ba as Mode, gw as ModeWithLiterals, ev as MoveCategoryRequest, eU as MoveItemInCategoryRequest, bc as MoveItemInCategoryRequestPosition, gy as MoveItemInCategoryRequestPositionWithLiterals, eV as MoveItemInCategoryResponse, e1 as NestedAggregation, d$ as NestedAggregationItem, e0 as NestedAggregationItemKindOneOf, e6 as NestedAggregationResults, e7 as NestedAggregationResultsResultOneOf, b7 as NestedAggregationType, gt as NestedAggregationTypeWithLiterals, ef as NestedResultValue, eg as NestedResultValueResultOneOf, el as NestedResults, eb as NestedValueAggregationResult, bm as Node, bn as NodeDataOneOf, bo as NodeStyle, a8 as NodeType, fu as NodeTypeWithLiterals, aL as NullValue, g5 as NullValueWithLiterals, cH as Oembed, ep as OffsetSearch, eq as OffsetSearchPagingMethodOneOf, c8 as Option, cg as OptionDesign, cb as OptionLayout, cR as OrderedListData, al as Orientation, fH as OrientationWithLiterals, aO as Origin, g8 as OriginWithLiterals, bK as PDFSettings, dg as Page, dk as Pages, er as Paging, et as PagingMetadata, eP as PagingMetadataV2, c5 as ParagraphData, bg as ParentCategory, c7 as Permissions, aD as Placement, fZ as PlacementWithLiterals, cF as PlaybackOptions, bv as PluginContainerData, ac as PluginContainerDataAlignment, fy as PluginContainerDataAlignmentWithLiterals, bw as PluginContainerDataWidth, bx as PluginContainerDataWidthDataOneOf, ch as Poll, c6 as PollData, ci as PollDataLayout, cf as PollDesign, cd as PollDesignBackground, ce as PollDesignBackgroundBackgroundOneOf, aw as PollDesignBackgroundType, fS as PollDesignBackgroundTypeWithLiterals, ca as PollLayout, av as PollLayoutDirection, fR as PollLayoutDirectionWithLiterals, au as PollLayoutType, fQ as PollLayoutTypeWithLiterals, c9 as PollSettings, bb as Position, gx as PositionWithLiterals, cD as PricingData, dE as QueryCategoriesRequest, dJ as QueryCategoriesResponse, dY as RangeAggregation, e5 as RangeAggregationResult, dU as RangeBucket, ed as RangeResult, e9 as RangeResults, bD as Rel, b2 as RequestedFields, go as RequestedFieldsWithLiterals, aC as Resizing, fY as ResizingWithLiterals, aT as ResponsivenessBehaviour, gd as ResponsivenessBehaviourWithLiterals, f4 as RestoreInfo, eh as Results, cB as RibbonStyles, bl as RichContent, dZ as ScalarAggregation, ee as ScalarResult, b6 as ScalarType, gs as ScalarTypeWithLiterals, aV as Scaling, gf as ScalingWithLiterals, dP as SearchCategoriesRequest, e2 as SearchDetails, bh as SeoSchema, fd as SetArrangedItemsForMigrationRequest, fe as SetArrangedItemsForMigrationResponse, eW as SetArrangedItemsRequest, bk as Settings, c$ as ShapeData, d0 as ShapeDataStyles, b0 as SingleEntityOpsRequestedFields, gm as SingleEntityOpsRequestedFieldsWithLiterals, cu as SketchData, d6 as SmartBlockCellData, d5 as SmartBlockData, a_ as SmartBlockDataType, gk as SmartBlockDataTypeWithLiterals, b4 as SortDirection, gq as SortDirectionWithLiterals, b1 as SortOrder, gn as SortOrderWithLiterals, b3 as SortType, gp as SortTypeWithLiterals, dH as Sorting, ap as Source, fL as SourceWithLiterals, by as Spoiler, cs as SpoilerData, br as Stop, bA as Styles, b$ as StylesBorder, aq as StylesPosition, fM as StylesPositionWithLiterals, cL as TableCellData, cJ as TableData, bj as Tag, ae as Target, fA as TargetWithLiterals, af as TextAlignment, fB as TextAlignmentWithLiterals, ck as TextData, db as TextNodeStyle, bF as TextStyle, bU as Thumbnails, an as ThumbnailsAlignment, fJ as ThumbnailsAlignmentWithLiterals, d4 as TocData, aE as Type, f_ as TypeWithLiterals, dh as URI, dl as URIs, dA as UpdateCategoryRequest, dB as UpdateCategoryResponse, eB as UpdateCategoryVisibilityRequest, dW as ValueAggregation, dX as ValueAggregationOptionsOneOf, e4 as ValueAggregationResult, ec as ValueResult, e8 as ValueResults, az as Variant, fV as VariantWithLiterals, aK as VerticalAlignment, aS as VerticalAlignmentAlignment, gc as VerticalAlignmentAlignmentWithLiterals, g4 as VerticalAlignmentWithLiterals, bO as Video, cE as VideoData, aj as ViewMode, fF as ViewModeWithLiterals, as as ViewRole, fO as ViewRoleWithLiterals, at as VoteRole, fP as VoteRoleWithLiterals, bd as WebhookIdentityType, gz as WebhookIdentityTypeWithLiterals, ah as Width, ab as WidthType, fx as WidthTypeWithLiterals, fD as WidthWithLiterals, ft as utils } from './categories-v1-category-categories.universal-Bz2lY2xQ.js';
2
+ import { C as Category, a as CreateCategoryOptions, b as CreateCategoryApplicationErrors, c as CreateCategoryValidationErrors, T as TreeReference, G as GetCategoryOptions, d as GetCategoryBySlugOptions, e as GetCategoryBySlugResponse, U as UpdateCategory, f as UpdateCategoryOptions, g as UpdateCategoryApplicationErrors, D as DeleteCategoryApplicationErrors, h as CategorySearch, S as SearchCategoriesOptions, i as SearchCategoriesResponse, j as CountCategoriesOptions, k as CountCategoriesResponse, M as MoveCategoryOptions, l as MoveCategoryResponse, m as MoveCategoryApplicationErrors, n as MaskedCategory, B as BulkUpdateCategoriesOptions, o as BulkUpdateCategoriesResponse, p as BulkUpdateCategoriesApplicationErrors, q as UpdateCategoryVisibilityOptions, r as UpdateCategoryVisibilityResponse, s as UpdateCategoryVisibilityApplicationErrors, t as BulkShowCategoriesOptions, u as BulkShowCategoriesResponse, I as ItemReference, v as BulkAddItemsToCategoryOptions, w as BulkAddItemsToCategoryResponse, x as BulkAddItemsToCategoryApplicationErrors, y as BulkAddItemToCategoriesOptions, z as BulkAddItemToCategoriesResponse, A as BulkAddItemToCategoriesApplicationErrors, E as BulkRemoveItemsFromCategoryOptions, F as BulkRemoveItemsFromCategoryResponse, H as BulkRemoveItemsFromCategoryApplicationErrors, J as BulkRemoveItemFromCategoriesOptions, K as BulkRemoveItemFromCategoriesResponse, L as BulkRemoveItemFromCategoriesApplicationErrors, N as ListItemsInCategoryOptions, O as ListItemsInCategoryResponse, P as ListCategoriesForItemOptions, Q as ListCategoriesForItemResponse, R as ListCategoriesForItemsOptions, V as ListCategoriesForItemsResponse, W as ListTreesResponse, X as SetArrangedItemsOptions, Y as SetArrangedItemsResponse, Z as SetArrangedItemsApplicationErrors, _ as GetArrangedItemsResponse, $ as CategoryMovedEnvelope, a0 as CategoryCreatedEnvelope, a1 as CategoryDeletedEnvelope, a2 as CategoryItemAddedToCategoryEnvelope, a3 as CategoryItemRemovedFromCategoryEnvelope, a4 as CategoryItemsArrangedInCategoryEnvelope, a5 as CategoryUpdatedEnvelope, a6 as CategoryQuery, a7 as QueryCategoriesOptions, a8 as typedQueryCategories, a9 as CategoriesQueryBuilder } from './categories-v1-category-categories.universal-B8K4dTVY.js';
3
+ export { fk as AccountInfo, fn as AccountInfoMetadata, f8 as ActionEvent, dT as Aggregation, e4 as AggregationData, dU as AggregationKindOneOf, en as AggregationResults, eo as AggregationResultsResultOneOf, eb as AggregationResultsScalarResult, bb as AggregationType, gv as AggregationTypeWithLiterals, aH as Alignment, f$ as AlignmentWithLiterals, cp as AnchorData, dh as App, cx as AppEmbedData, cy as AppEmbedDataAppDataOneOf, aJ as AppType, g1 as AppTypeWithLiterals, eA as ApplicationError, aD as AspectRatio, fX as AspectRatioWithLiterals, cS as AudioData, c$ as Backdrop, aT as BackdropType, gb as BackdropTypeWithLiterals, bw as Background, ce as BackgroundGradient, d5 as BackgroundImage, ab as BackgroundType, fv as BackgroundTypeWithLiterals, cZ as Banner, aR as BannerPosition, g9 as BannerPositionWithLiterals, fl as BaseEventMetadata, cV as BlockquoteData, cz as BookingData, bu as Border, cP as BorderColors, cQ as BorderWidths, bh as Breadcrumb, bg as BreadcrumbsInfo, eB as BulkActionMetadata, eK as BulkAddItemToCategoriesRequest, fc as BulkAddItemsToCategoryForMigrationRequest, fd as BulkAddItemsToCategoryForMigrationResponse, eH as BulkAddItemsToCategoryRequest, ey as BulkCategoriesResult, fa as BulkCreateCategoriesForMigrationRequest, fb as BulkCreateCategoriesForMigrationResponse, eE as BulkDeleteCategoriesRequest, eF as BulkDeleteCategoriesResponse, eG as BulkDeleteCategoriesResponseBulkCategoriesResult, eL as BulkItemToCategoriesResult, eI as BulkItemsToCategoryResult, eN as BulkRemoveItemFromCategoriesRequest, eM as BulkRemoveItemsFromCategoryRequest, gA as BulkSetItemCategoriesApplicationErrors, fs as BulkSetItemCategoriesOptions, eZ as BulkSetItemCategoriesRequest, e_ as BulkSetItemCategoriesResponse, eD as BulkShowCategoriesRequest, ex as BulkUpdateCategoriesRequest, cU as BulletedListData, br as ButtonData, af as ButtonDataType, fz as ButtonDataTypeWithLiterals, cB as ButtonStyles, cW as CaptionData, d3 as CardData, d4 as CardDataBackground, aZ as CardDataBackgroundType, gh as CardDataBackgroundTypeWithLiterals, cE as CardStyles, fg as CatalogRollbackRequested, fo as CategoriesQueryResult, dp as CategoryMoved, fp as CategoryQuerySpec, fq as CategorySearchSpec, f1 as CategoryTreeNode, cO as CellStyle, d9 as CheckboxListData, bG as CodeBlockData, cK as CollapsibleListData, cq as ColorData, bv as Colors, b1 as ColumnSize, gl as ColumnSizeWithLiterals, gB as CommonQueryWithEntityContext, gC as CommonSearchWithEntityContext, dP as CompactCategory, ev as CountCategoriesRequest, dv as CreateCategoryRequest, dw as CreateCategoryResponse, ao as Crop, fI as CropWithLiterals, dJ as CursorPaging, dL as CursorPagingMetadata, dG as CursorQuery, dH as CursorQueryPagingMethodOneOf, dR as CursorSearch, dS as CursorSearchPagingMethodOneOf, dM as Cursors, dl as CustomTag, d$ as DateHistogramAggregation, ej as DateHistogramResult, el as DateHistogramResults, cn as Decoration, co as DecorationDataOneOf, az as DecorationType, fT as DecorationTypeWithLiterals, dD as DeleteCategoryRequest, dE as DeleteCategoryResponse, ep as DeprecatedSearchCategoriesWithOffsetRequest, et as DeprecatedSearchCategoriesWithOffsetResponse, cl as Design, aW as DesignTarget, ge as DesignTargetWithLiterals, cM as Dimensions, aL as Direction, g3 as DirectionWithLiterals, bI as DividerData, ak as DividerDataAlignment, fE as DividerDataAlignmentWithLiterals, dc as DocumentStyle, f2 as DomainEvent, f3 as DomainEventBodyOneOf, dx as DuplicateHandleErrorData, cI as EmbedData, f9 as Empty, f4 as EntityCreatedEvent, f7 as EntityDeletedEvent, f6 as EntityUpdatedEvent, cA as EventData, fm as EventMetadata, de as ExtendedFields, dk as File, bJ as FileData, bK as FileSource, bL as FileSourceDataOneOf, cv as FontFamilyData, ct as FontSizeData, aA as FontType, fU as FontTypeWithLiterals, bY as GIF, bX as GIFData, aq as GIFType, fK as GIFTypeWithLiterals, bN as GalleryData, bT as GalleryOptions, bU as GalleryOptionsLayout, eY as GetArrangedItemsRequest, e$ as GetCategoriesTreeRequest, f0 as GetCategoriesTreeResponse, dA as GetCategoryBySlugRequest, dy as GetCategoryRequest, dz as GetCategoryResponse, bs as Gradient, ac as GradientType, fw as GradientTypeWithLiterals, ek as GroupByValueResults, b_ as HTMLData, b$ as HTMLDataDataOneOf, bZ as HeadingData, bB as Height, fi as IdentificationData, fj as IdentificationDataIdOneOf, bP as Image, c0 as ImageData, c2 as ImageDataStyles, aP as ImagePosition, aY as ImagePositionPosition, gg as ImagePositionPositionWithLiterals, g7 as ImagePositionWithLiterals, aO as ImageScalingScaling, g6 as ImageScalingScalingWithLiterals, cC as ImageStyles, aC as ImageStylesPosition, fW as ImageStylesPositionWithLiterals, dW as IncludeMissingValuesOptions, a$ as Indentation, gj as IndentationWithLiterals, aK as InitialExpandedItems, g2 as InitialExpandedItemsWithLiterals, ba as Interval, gu as IntervalWithLiterals, df as InvalidateCache, dg as InvalidateCacheGetByOneOf, bR as Item, dq as ItemAddedToCategory, bS as ItemDataOneOf, ez as ItemMetadata, eJ as ItemReferenceMetadata, ds as ItemRemovedFromCategory, bV as ItemStyle, dr as ItemsAddedToCategory, du as ItemsArrangedInCategory, dt as ItemsRemovedFromCategory, bk as Keyword, aI as Layout, d0 as LayoutCellData, cX as LayoutData, c_ as LayoutDataBackground, cY as LayoutDataBackgroundImage, aS as LayoutDataBackgroundType, ga as LayoutDataBackgroundTypeWithLiterals, am as LayoutType, fG as LayoutTypeWithLiterals, g0 as LayoutWithLiterals, ai as LineStyle, fC as LineStyleWithLiterals, bD as Link, cr as LinkData, bE as LinkDataOneOf, c3 as LinkPreviewData, c4 as LinkPreviewDataStyles, eR as ListCategoriesForItemRequest, eS as ListCategoriesForItemsRequest, dN as ListCompactCategoriesByIdsRequest, dO as ListCompactCategoriesByIdsResponse, da as ListItemNodeData, fr as ListItemsInCategoryOptionsPagingMethodOneOf, eO as ListItemsInCategoryRequest, eP as ListItemsInCategoryRequestPagingMethodOneOf, a_ as ListStyle, gi as ListStyleWithLiterals, eU as ListTreesRequest, cR as ListValue, c5 as MapData, eT as MapItemToCategories, c6 as MapSettings, at as MapType, fN as MapTypeWithLiterals, bO as Media, cs as MentionData, fh as MessageEnvelope, db as Metadata, b7 as MissingValues, gr as MissingValuesWithLiterals, bc as Mode, gw as ModeWithLiterals, ew as MoveCategoryRequest, eV as MoveItemInCategoryRequest, be as MoveItemInCategoryRequestPosition, gy as MoveItemInCategoryRequestPositionWithLiterals, eW as MoveItemInCategoryResponse, e2 as NestedAggregation, e0 as NestedAggregationItem, e1 as NestedAggregationItemKindOneOf, e7 as NestedAggregationResults, e8 as NestedAggregationResultsResultOneOf, b9 as NestedAggregationType, gt as NestedAggregationTypeWithLiterals, eg as NestedResultValue, eh as NestedResultValueResultOneOf, em as NestedResults, ec as NestedValueAggregationResult, bo as Node, bp as NodeDataOneOf, bq as NodeStyle, aa as NodeType, fu as NodeTypeWithLiterals, aN as NullValue, g5 as NullValueWithLiterals, cJ as Oembed, eq as OffsetSearch, er as OffsetSearchPagingMethodOneOf, ca as Option, ci as OptionDesign, cd as OptionLayout, cT as OrderedListData, an as Orientation, fH as OrientationWithLiterals, aQ as Origin, g8 as OriginWithLiterals, bM as PDFSettings, di as Page, dm as Pages, es as Paging, eu as PagingMetadata, eQ as PagingMetadataV2, c7 as ParagraphData, bi as ParentCategory, c9 as Permissions, aF as Placement, fZ as PlacementWithLiterals, cH as PlaybackOptions, bx as PluginContainerData, ae as PluginContainerDataAlignment, fy as PluginContainerDataAlignmentWithLiterals, by as PluginContainerDataWidth, bz as PluginContainerDataWidthDataOneOf, cj as Poll, c8 as PollData, ck as PollDataLayout, ch as PollDesign, cf as PollDesignBackground, cg as PollDesignBackgroundBackgroundOneOf, ay as PollDesignBackgroundType, fS as PollDesignBackgroundTypeWithLiterals, cc as PollLayout, ax as PollLayoutDirection, fR as PollLayoutDirectionWithLiterals, aw as PollLayoutType, fQ as PollLayoutTypeWithLiterals, cb as PollSettings, bd as Position, gx as PositionWithLiterals, cF as PricingData, dF as QueryCategoriesRequest, dK as QueryCategoriesResponse, dZ as RangeAggregation, e6 as RangeAggregationResult, dV as RangeBucket, ee as RangeResult, ea as RangeResults, bF as Rel, b4 as RequestedFields, go as RequestedFieldsWithLiterals, aE as Resizing, fY as ResizingWithLiterals, aV as ResponsivenessBehaviour, gd as ResponsivenessBehaviourWithLiterals, f5 as RestoreInfo, ei as Results, cD as RibbonStyles, bn as RichContent, d_ as ScalarAggregation, ef as ScalarResult, b8 as ScalarType, gs as ScalarTypeWithLiterals, aX as Scaling, gf as ScalingWithLiterals, dQ as SearchCategoriesRequest, e3 as SearchDetails, bj as SeoSchema, fe as SetArrangedItemsForMigrationRequest, ff as SetArrangedItemsForMigrationResponse, eX as SetArrangedItemsRequest, bm as Settings, d1 as ShapeData, d2 as ShapeDataStyles, b2 as SingleEntityOpsRequestedFields, gm as SingleEntityOpsRequestedFieldsWithLiterals, cw as SketchData, d8 as SmartBlockCellData, d7 as SmartBlockData, b0 as SmartBlockDataType, gk as SmartBlockDataTypeWithLiterals, b6 as SortDirection, gq as SortDirectionWithLiterals, b3 as SortOrder, gn as SortOrderWithLiterals, b5 as SortType, gp as SortTypeWithLiterals, dI as Sorting, ar as Source, fL as SourceWithLiterals, bA as Spoiler, cu as SpoilerData, bt as Stop, bC as Styles, c1 as StylesBorder, as as StylesPosition, fM as StylesPositionWithLiterals, cN as TableCellData, cL as TableData, bl as Tag, ag as Target, fA as TargetWithLiterals, ah as TextAlignment, fB as TextAlignmentWithLiterals, cm as TextData, dd as TextNodeStyle, bH as TextStyle, bW as Thumbnails, ap as ThumbnailsAlignment, fJ as ThumbnailsAlignmentWithLiterals, d6 as TocData, aG as Type, f_ as TypeWithLiterals, dj as URI, dn as URIs, dB as UpdateCategoryRequest, dC as UpdateCategoryResponse, eC as UpdateCategoryVisibilityRequest, dX as ValueAggregation, dY as ValueAggregationOptionsOneOf, e5 as ValueAggregationResult, ed as ValueResult, e9 as ValueResults, aB as Variant, fV as VariantWithLiterals, aM as VerticalAlignment, aU as VerticalAlignmentAlignment, gc as VerticalAlignmentAlignmentWithLiterals, g4 as VerticalAlignmentWithLiterals, bQ as Video, cG as VideoData, al as ViewMode, fF as ViewModeWithLiterals, au as ViewRole, fO as ViewRoleWithLiterals, av as VoteRole, fP as VoteRoleWithLiterals, bf as WebhookIdentityType, gz as WebhookIdentityTypeWithLiterals, aj as Width, ad as WidthType, fx as WidthTypeWithLiterals, fD as WidthWithLiterals, ft as utils } from './categories-v1-category-categories.universal-B8K4dTVY.js';
4
4
 
5
5
  declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
6
6
  interface CreateCategorySignature {
@@ -24,6 +24,15 @@ interface GetCategorySignature {
24
24
  */
25
25
  (categoryId: string, treeReference: NonNullablePaths<TreeReference, `appNamespace`, 2>, options?: GetCategoryOptions): 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>>;
26
26
  }
27
+ declare function getCategoryBySlug$1(httpClient: HttpClient): GetCategoryBySlugSignature;
28
+ interface GetCategoryBySlugSignature {
29
+ /**
30
+ * Retrieves a category by its slug.
31
+ * @param - Category slug.
32
+ * @param - Category tree reference details.
33
+ */
34
+ (slug: string, treeReference: NonNullablePaths<TreeReference, `appNamespace`, 2>, options?: GetCategoryBySlugOptions): Promise<NonNullablePaths<GetCategoryBySlugResponse, `category.itemCounter` | `category.breadcrumbsInfo.breadcrumbs` | `category.breadcrumbsInfo.breadcrumbs.${number}.categoryId` | `category.breadcrumbsInfo.breadcrumbs.${number}.categoryName` | `category.breadcrumbsInfo.breadcrumbs.${number}.categorySlug` | `category.seoData.tags` | `category.seoData.tags.${number}.type` | `category.seoData.tags.${number}.children` | `category.seoData.tags.${number}.custom` | `category.seoData.tags.${number}.disabled` | `category.seoData.settings.preventAutoRedirect` | `category.seoData.settings.keywords` | `category.seoData.settings.keywords.${number}.term` | `category.seoData.settings.keywords.${number}.isMain` | `category.treeReference.appNamespace`, 7>>;
35
+ }
27
36
  declare function updateCategory$1(httpClient: HttpClient): UpdateCategorySignature;
28
37
  interface UpdateCategorySignature {
29
38
  /**
@@ -251,6 +260,7 @@ declare function customQueryCategories(httpClient: HttpClient): {
251
260
  };
252
261
  declare const createCategory: MaybeContext<BuildRESTFunction<typeof createCategory$1> & typeof createCategory$1>;
253
262
  declare const getCategory: MaybeContext<BuildRESTFunction<typeof getCategory$1> & typeof getCategory$1>;
263
+ declare const getCategoryBySlug: MaybeContext<BuildRESTFunction<typeof getCategoryBySlug$1> & typeof getCategoryBySlug$1>;
254
264
  declare const updateCategory: MaybeContext<BuildRESTFunction<typeof updateCategory$1> & typeof updateCategory$1>;
255
265
  declare const deleteCategory: MaybeContext<BuildRESTFunction<typeof deleteCategory$1> & typeof deleteCategory$1>;
256
266
  declare const searchCategories: MaybeContext<BuildRESTFunction<typeof searchCategories$1> & typeof searchCategories$1>;
@@ -299,4 +309,4 @@ declare const onCategoryItemsArrangedInCategory: BuildEventDefinition<typeof onC
299
309
  */
300
310
  declare const onCategoryUpdated: BuildEventDefinition<typeof onCategoryUpdated$1> & typeof onCategoryUpdated$1;
301
311
 
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 };
312
+ 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, GetCategoryBySlugOptions, GetCategoryBySlugResponse, 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, getCategoryBySlug, listCategoriesForItem, listCategoriesForItems, listItemsInCategory, listTrees, moveCategory, onCategoryCreated, onCategoryDeleted, onCategoryItemAddedToCategory, onCategoryItemRemovedFromCategory, onCategoryItemsArrangedInCategory, onCategoryMoved, onCategoryUpdated, queryCategories, searchCategories, setArrangedItems, updateCategory, updateCategoryVisibility };