@wix/auto_sdk_categories_categories 1.0.102 → 1.0.103

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/build/cjs/{categories-v1-category-categories.universal-Ct2lgIM_.d.ts → categories-v1-category-categories.universal-CeusNKQS.d.ts} +43 -1
  2. package/build/cjs/index.d.ts +2 -2
  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 +44 -2
  7. package/build/cjs/meta.js.map +1 -1
  8. package/build/es/{categories-v1-category-categories.universal-Ct2lgIM_.d.mts → categories-v1-category-categories.universal-CeusNKQS.d.mts} +43 -1
  9. package/build/es/index.d.mts +2 -2
  10. package/build/es/index.mjs.map +1 -1
  11. package/build/es/index.typings.d.mts +2 -2
  12. package/build/es/index.typings.mjs.map +1 -1
  13. package/build/es/meta.d.mts +44 -2
  14. package/build/es/meta.mjs.map +1 -1
  15. package/build/internal/cjs/{categories-v1-category-categories.universal-ecF5BGHX.d.ts → categories-v1-category-categories.universal-DnJjSmaR.d.ts} +43 -1
  16. package/build/internal/cjs/index.d.ts +2 -2
  17. package/build/internal/cjs/index.js.map +1 -1
  18. package/build/internal/cjs/index.typings.d.ts +2 -2
  19. package/build/internal/cjs/index.typings.js.map +1 -1
  20. package/build/internal/cjs/meta.d.ts +44 -2
  21. package/build/internal/cjs/meta.js.map +1 -1
  22. package/build/internal/es/{categories-v1-category-categories.universal-ecF5BGHX.d.mts → categories-v1-category-categories.universal-DnJjSmaR.d.mts} +43 -1
  23. package/build/internal/es/index.d.mts +2 -2
  24. package/build/internal/es/index.mjs.map +1 -1
  25. package/build/internal/es/index.typings.d.mts +2 -2
  26. package/build/internal/es/index.typings.mjs.map +1 -1
  27. package/build/internal/es/meta.d.mts +44 -2
  28. package/build/internal/es/meta.mjs.map +1 -1
  29. package/package.json +4 -4
@@ -2195,6 +2195,10 @@ interface InvalidateCache extends InvalidateCacheGetByOneOf {
2195
2195
  file?: File;
2196
2196
  /** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */
2197
2197
  customTag?: CustomTag;
2198
+ /** Invalidate by multiple page ids */
2199
+ pages?: Pages;
2200
+ /** Invalidate by multiple URI paths */
2201
+ uris?: URIs;
2198
2202
  /**
2199
2203
  * tell us why you're invalidating the cache. You don't need to add your app name
2200
2204
  * @maxLength 256
@@ -2203,6 +2207,14 @@ interface InvalidateCache extends InvalidateCacheGetByOneOf {
2203
2207
  /** Is local DS */
2204
2208
  localDc?: boolean;
2205
2209
  hardPurge?: boolean;
2210
+ /**
2211
+ * Optional caller-provided ID for tracking this invalidation through the system.
2212
+ * When set, the corresponding CDN purge completion event will include this ID,
2213
+ * allowing you to confirm when the invalidation has fully propagated.
2214
+ * Example: generate a UUID, pass it here, and later match it in the CDN purge completion event.
2215
+ * @maxLength 256
2216
+ */
2217
+ correlationId?: string | null;
2206
2218
  }
2207
2219
  /** @oneof */
2208
2220
  interface InvalidateCacheGetByOneOf {
@@ -2226,6 +2238,10 @@ interface InvalidateCacheGetByOneOf {
2226
2238
  file?: File;
2227
2239
  /** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */
2228
2240
  customTag?: CustomTag;
2241
+ /** Invalidate by multiple page ids */
2242
+ pages?: Pages;
2243
+ /** Invalidate by multiple URI paths */
2244
+ uris?: URIs;
2229
2245
  }
2230
2246
  interface App {
2231
2247
  /**
@@ -2289,6 +2305,32 @@ interface CustomTag {
2289
2305
  */
2290
2306
  tag?: string;
2291
2307
  }
2308
+ interface Pages {
2309
+ /**
2310
+ * the msid the pages are on
2311
+ * @format GUID
2312
+ */
2313
+ metaSiteId?: string;
2314
+ /**
2315
+ * Invalidate by multiple Page IDs in a single message
2316
+ * @maxSize 100
2317
+ * @minLength 1
2318
+ */
2319
+ pageIds?: string[];
2320
+ }
2321
+ interface URIs {
2322
+ /**
2323
+ * the msid the URIs are on
2324
+ * @format GUID
2325
+ */
2326
+ metaSiteId?: string;
2327
+ /**
2328
+ * URI paths to invalidate (e.g. page/my/path) - without leading/trailing slashes
2329
+ * @maxSize 100
2330
+ * @minLength 1
2331
+ */
2332
+ uriPaths?: string[];
2333
+ }
2292
2334
  interface CategoryMoved {
2293
2335
  /**
2294
2336
  * Category ID.
@@ -5403,4 +5445,4 @@ interface BulkSetItemCategoriesOptions {
5403
5445
  treeReference: TreeReference;
5404
5446
  }
5405
5447
 
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 };
5448
+ 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 ItemsRemovedFromCategory 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 Pages as cV, type URIs as cW, type CategoryMoved as cX, type ItemAddedToCategory as cY, type ItemsAddedToCategory as cZ, type ItemRemovedFromCategory 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 DeprecatedSearchCategoriesWithOffsetResponse as d$, type ItemsArrangedInCategory as d0, type CreateCategoryRequest as d1, type CreateCategoryResponse as d2, type DuplicateHandleErrorData as d3, type GetCategoryRequest as d4, type GetCategoryResponse as d5, type UpdateCategoryRequest as d6, type UpdateCategoryResponse as d7, type DeleteCategoryRequest as d8, type DeleteCategoryResponse as d9, type NestedAggregation as dA, type SearchDetails as dB, type AggregationData as dC, type ValueAggregationResult as dD, type RangeAggregationResult as dE, type NestedAggregationResults as dF, type NestedAggregationResultsResultOneOf as dG, type ValueResults as dH, type RangeResults as dI, type AggregationResultsScalarResult as dJ, type NestedValueAggregationResult as dK, type ValueResult as dL, type RangeResult as dM, type ScalarResult as dN, type NestedResultValue as dO, type NestedResultValueResultOneOf as dP, type Results as dQ, type DateHistogramResult as dR, type GroupByValueResults as dS, type DateHistogramResults as dT, type NestedResults as dU, type AggregationResults as dV, type AggregationResultsResultOneOf as dW, type DeprecatedSearchCategoriesWithOffsetRequest as dX, type OffsetSearch as dY, type OffsetSearchPagingMethodOneOf as dZ, type Paging as d_, type QueryCategoriesRequest as da, type CursorQuery as db, type CursorQueryPagingMethodOneOf as dc, type Sorting as dd, type CursorPaging as de, type QueryCategoriesResponse as df, type CursorPagingMetadata as dg, type Cursors as dh, type ListCompactCategoriesByIdsRequest as di, type ListCompactCategoriesByIdsResponse as dj, type CompactCategory as dk, type SearchCategoriesRequest as dl, type CursorSearch as dm, type CursorSearchPagingMethodOneOf as dn, type Aggregation as dp, type AggregationKindOneOf as dq, type RangeBucket as dr, type IncludeMissingValuesOptions as ds, type ValueAggregation as dt, type ValueAggregationOptionsOneOf as du, type RangeAggregation as dv, type ScalarAggregation as dw, type DateHistogramAggregation as dx, type NestedAggregationItem as dy, type NestedAggregationItemKindOneOf as dz, type UpdateCategoryApplicationErrors as e, type PluginContainerDataAlignmentWithLiterals as e$, type PagingMetadata as e0, type CountCategoriesRequest as e1, type MoveCategoryRequest as e2, type BulkUpdateCategoriesRequest as e3, type BulkCategoriesResult as e4, type ItemMetadata as e5, type ApplicationError as e6, type BulkActionMetadata as e7, type UpdateCategoryVisibilityRequest as e8, type BulkShowCategoriesRequest as e9, type DomainEvent as eA, type DomainEventBodyOneOf as eB, type EntityCreatedEvent as eC, type RestoreInfo as eD, type EntityUpdatedEvent as eE, type EntityDeletedEvent as eF, type ActionEvent as eG, type Empty as eH, type BulkCreateCategoriesForMigrationRequest as eI, type BulkCreateCategoriesForMigrationResponse as eJ, type BulkAddItemsToCategoryForMigrationRequest as eK, type BulkAddItemsToCategoryForMigrationResponse as eL, type MessageEnvelope as eM, type IdentificationData as eN, type IdentificationDataIdOneOf as eO, type AccountInfo as eP, type BaseEventMetadata as eQ, type EventMetadata as eR, type AccountInfoMetadata as eS, type CategoriesQueryResult as eT, type CategoryQuerySpec as eU, type CategorySearchSpec as eV, type ListItemsInCategoryOptionsPagingMethodOneOf as eW, type BulkSetItemCategoriesOptions as eX, utils as eY, type NodeTypeWithLiterals as eZ, type WidthTypeWithLiterals as e_, type BulkDeleteCategoriesRequest as ea, type BulkDeleteCategoriesResponse as eb, type BulkDeleteCategoriesResponseBulkCategoriesResult as ec, type BulkAddItemsToCategoryRequest as ed, type BulkItemsToCategoryResult as ee, type ItemReferenceMetadata as ef, type BulkAddItemToCategoriesRequest as eg, type BulkItemToCategoriesResult as eh, type BulkRemoveItemsFromCategoryRequest as ei, type BulkRemoveItemFromCategoriesRequest as ej, type ListItemsInCategoryRequest as ek, type ListItemsInCategoryRequestPagingMethodOneOf as el, type PagingMetadataV2 as em, type ListCategoriesForItemRequest as en, type ListCategoriesForItemsRequest as eo, type MapItemToCategories as ep, type ListTreesRequest as eq, type MoveItemInCategoryRequest as er, type MoveItemInCategoryResponse as es, type SetArrangedItemsRequest as et, type GetArrangedItemsRequest as eu, type BulkSetItemCategoriesRequest as ev, type BulkSetItemCategoriesResponse as ew, type GetCategoriesTreeRequest as ex, type GetCategoriesTreeResponse as ey, type CategoryTreeNode as ez, type CategorySearch as f, onCategoryUpdated as f$, type ButtonDataTypeWithLiterals as f0, type TargetWithLiterals as f1, type TextAlignmentWithLiterals as f2, type LineStyleWithLiterals as f3, type WidthWithLiterals as f4, type DividerDataAlignmentWithLiterals as f5, type ViewModeWithLiterals as f6, type LayoutTypeWithLiterals as f7, type OrientationWithLiterals as f8, type CropWithLiterals as f9, type OriginWithLiterals as fA, type VerticalAlignmentAlignmentWithLiterals as fB, type ResponsivenessBehaviourWithLiterals as fC, type DesignTargetWithLiterals as fD, type SingleEntityOpsRequestedFieldsWithLiterals as fE, type SortOrderWithLiterals as fF, type RequestedFieldsWithLiterals as fG, type SortTypeWithLiterals as fH, type SortDirectionWithLiterals as fI, type MissingValuesWithLiterals as fJ, type ScalarTypeWithLiterals as fK, type NestedAggregationTypeWithLiterals as fL, type IntervalWithLiterals as fM, type AggregationTypeWithLiterals as fN, type ModeWithLiterals as fO, type PositionWithLiterals as fP, type MoveItemInCategoryRequestPositionWithLiterals as fQ, type WebhookIdentityTypeWithLiterals as fR, type BulkSetItemCategoriesApplicationErrors as fS, type CommonQueryWithEntityContext as fT, type CommonSearchWithEntityContext as fU, onCategoryMoved as fV, onCategoryCreated as fW, onCategoryDeleted as fX, onCategoryItemAddedToCategory as fY, onCategoryItemRemovedFromCategory as fZ, onCategoryItemsArrangedInCategory as f_, type ThumbnailsAlignmentWithLiterals as fa, type GIFTypeWithLiterals as fb, type SourceWithLiterals as fc, type StylesPositionWithLiterals as fd, type MapTypeWithLiterals as fe, type ViewRoleWithLiterals as ff, type VoteRoleWithLiterals as fg, type PollLayoutTypeWithLiterals as fh, type PollLayoutDirectionWithLiterals as fi, type BackgroundTypeWithLiterals as fj, type DecorationTypeWithLiterals as fk, type FontTypeWithLiterals as fl, type ImageStylesPositionWithLiterals as fm, type AspectRatioWithLiterals as fn, type ResizingWithLiterals as fo, type PlacementWithLiterals as fp, type TypeWithLiterals as fq, type AlignmentWithLiterals as fr, type LayoutWithLiterals as fs, type AppTypeWithLiterals as ft, type InitialExpandedItemsWithLiterals as fu, type DirectionWithLiterals as fv, type VerticalAlignmentWithLiterals as fw, type NullValueWithLiterals as fx, type ScalingWithLiterals as fy, type ImagePositionWithLiterals as fz, type SearchCategoriesResponse as g, createCategory as g0, getCategory as g1, updateCategory as g2, deleteCategory as g3, queryCategories as g4, countCategories as g5, moveCategory as g6, bulkUpdateCategories as g7, updateCategoryVisibility as g8, bulkShowCategories as g9, bulkAddItemsToCategory as ga, bulkAddItemToCategories as gb, bulkRemoveItemsFromCategory as gc, bulkRemoveItemFromCategories as gd, listItemsInCategory as ge, listCategoriesForItem as gf, listCategoriesForItems as gg, listTrees as gh, setArrangedItems as gi, getArrangedItems as gj, 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-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';
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-CeusNKQS.js';
3
+ export { eP as AccountInfo, eS as AccountInfoMetadata, eG as ActionEvent, dp as Aggregation, dC as AggregationData, dq as AggregationKindOneOf, dV as AggregationResults, dW as AggregationResultsResultOneOf, dJ as AggregationResultsScalarResult, aY as AggregationType, fN as AggregationTypeWithLiterals, aC as Alignment, fr as AlignmentWithLiterals, c7 as AnchorData, cQ as App, ce as AppEmbedData, cf as AppEmbedDataAppDataOneOf, aE as AppType, ft as AppTypeWithLiterals, e6 as ApplicationError, ay as AspectRatio, fn as AspectRatioWithLiterals, cz as AudioData, bZ as Background, b_ as BackgroundBackgroundOneOf, cF as BackgroundImage, au as BackgroundType, fj as BackgroundTypeWithLiterals, cG as Banner, eQ as BaseEventMetadata, cC as BlockquoteData, cg as BookingData, bd as Border, cw as BorderColors, cx as BorderWidths, b2 as Breadcrumb, b1 as BreadcrumbsInfo, e7 as BulkActionMetadata, eg as BulkAddItemToCategoriesRequest, eK as BulkAddItemsToCategoryForMigrationRequest, eL as BulkAddItemsToCategoryForMigrationResponse, ed as BulkAddItemsToCategoryRequest, e4 as BulkCategoriesResult, eI as BulkCreateCategoriesForMigrationRequest, eJ as BulkCreateCategoriesForMigrationResponse, ea as BulkDeleteCategoriesRequest, eb as BulkDeleteCategoriesResponse, ec as BulkDeleteCategoriesResponseBulkCategoriesResult, eh as BulkItemToCategoriesResult, ee as BulkItemsToCategoryResult, ej as BulkRemoveItemFromCategoriesRequest, ei as BulkRemoveItemsFromCategoryRequest, fS as BulkSetItemCategoriesApplicationErrors, eX as BulkSetItemCategoriesOptions, ev as BulkSetItemCategoriesRequest, ew as BulkSetItemCategoriesResponse, e9 as BulkShowCategoriesRequest, e3 as BulkUpdateCategoriesRequest, cB as BulletedListData, bc as ButtonData, ab as ButtonDataType, f0 as ButtonDataTypeWithLiterals, ci as ButtonStyles, cD as CaptionData, cl as CardStyles, eT as CategoriesQueryResult, cX as CategoryMoved, eU as CategoryQuerySpec, eV as CategorySearchSpec, ez as CategoryTreeNode, cv as CellStyle, bo as CodeBlockData, cr as CollapsibleListData, c8 as ColorData, be as Colors, fT as CommonQueryWithEntityContext, fU as CommonSearchWithEntityContext, dk as CompactCategory, e1 as CountCategoriesRequest, d1 as CreateCategoryRequest, d2 as CreateCategoryResponse, ak as Crop, f9 as CropWithLiterals, de as CursorPaging, dg as CursorPagingMetadata, db as CursorQuery, dc as CursorQueryPagingMethodOneOf, dm as CursorSearch, dn as CursorSearchPagingMethodOneOf, dh as Cursors, cU as CustomTag, dx as DateHistogramAggregation, dR as DateHistogramResult, dT as DateHistogramResults, c5 as Decoration, c6 as DecorationDataOneOf, av as DecorationType, fk as DecorationTypeWithLiterals, d8 as DeleteCategoryRequest, d9 as DeleteCategoryResponse, dX as DeprecatedSearchCategoriesWithOffsetRequest, d$ as DeprecatedSearchCategoriesWithOffsetResponse, c3 as Design, aO as DesignTarget, fD as DesignTargetWithLiterals, ct as Dimensions, aG as Direction, fv as DirectionWithLiterals, bq as DividerData, ag as DividerDataAlignment, f5 as DividerDataAlignmentWithLiterals, cL as DocumentStyle, eA as DomainEvent, eB as DomainEventBodyOneOf, d3 as DuplicateHandleErrorData, cp as EmbedData, eH as Empty, eC as EntityCreatedEvent, eF as EntityDeletedEvent, eE as EntityUpdatedEvent, ch as EventData, eR 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, fl as FontTypeWithLiterals, bG as GIF, bF as GIFData, am as GIFType, fb as GIFTypeWithLiterals, bv as GalleryData, bB as GalleryOptions, bC as GalleryOptionsLayout, eu as GetArrangedItemsRequest, ex as GetCategoriesTreeRequest, ey as GetCategoriesTreeResponse, d4 as GetCategoryRequest, d5 as GetCategoryResponse, bY as Gradient, dS as GroupByValueResults, bI as HTMLData, bJ as HTMLDataDataOneOf, bH as HeadingData, bj as Height, eN as IdentificationData, eO as IdentificationDataIdOneOf, bx as Image, bK as ImageData, bM as ImageDataStyles, aK as ImagePosition, fz as ImagePositionWithLiterals, cj as ImageStyles, ax as ImageStylesPosition, fm as ImageStylesPositionWithLiterals, ds as IncludeMissingValuesOptions, aF as InitialExpandedItems, fu as InitialExpandedItemsWithLiterals, aX as Interval, fM as IntervalWithLiterals, cO as InvalidateCache, cP as InvalidateCacheGetByOneOf, bz as Item, cY as ItemAddedToCategory, bA as ItemDataOneOf, e5 as ItemMetadata, ef as ItemReferenceMetadata, c_ as ItemRemovedFromCategory, bD as ItemStyle, cZ as ItemsAddedToCategory, d0 as ItemsArrangedInCategory, c$ as ItemsRemovedFromCategory, b5 as Keyword, aD as Layout, cH as LayoutCellData, cE as LayoutData, ai as LayoutType, f7 as LayoutTypeWithLiterals, fs as LayoutWithLiterals, ae as LineStyle, f3 as LineStyleWithLiterals, bl as Link, c9 as LinkData, bm as LinkDataOneOf, bN as LinkPreviewData, bO as LinkPreviewDataStyles, en as ListCategoriesForItemRequest, eo as ListCategoriesForItemsRequest, di as ListCompactCategoriesByIdsRequest, dj as ListCompactCategoriesByIdsResponse, eW as ListItemsInCategoryOptionsPagingMethodOneOf, ek as ListItemsInCategoryRequest, el as ListItemsInCategoryRequestPagingMethodOneOf, eq as ListTreesRequest, cy as ListValue, bP as MapData, ep as MapItemToCategories, bQ as MapSettings, ap as MapType, fe as MapTypeWithLiterals, bw as Media, ca as MentionData, eM as MessageEnvelope, cK as Metadata, aU as MissingValues, fJ as MissingValuesWithLiterals, aZ as Mode, fO as ModeWithLiterals, e2 as MoveCategoryRequest, er as MoveItemInCategoryRequest, a$ as MoveItemInCategoryRequestPosition, fQ as MoveItemInCategoryRequestPositionWithLiterals, es as MoveItemInCategoryResponse, dA as NestedAggregation, dy as NestedAggregationItem, dz as NestedAggregationItemKindOneOf, dF as NestedAggregationResults, dG as NestedAggregationResultsResultOneOf, aW as NestedAggregationType, fL as NestedAggregationTypeWithLiterals, dO as NestedResultValue, dP as NestedResultValueResultOneOf, dU as NestedResults, dK as NestedValueAggregationResult, b9 as Node, ba as NodeDataOneOf, bb as NodeStyle, a8 as NodeType, eZ as NodeTypeWithLiterals, aI as NullValue, fx as NullValueWithLiterals, cq as Oembed, dY as OffsetSearch, dZ as OffsetSearchPagingMethodOneOf, bU as Option, c0 as OptionDesign, bX as OptionLayout, cA as OrderedListData, aj as Orientation, f8 as OrientationWithLiterals, aL as Origin, fA as OriginWithLiterals, bu as PDFSettings, cR as Page, cV as Pages, d_ as Paging, e0 as PagingMetadata, em as PagingMetadataV2, bR as ParagraphData, b3 as ParentCategory, bT as Permissions, aA as Placement, fp as PlacementWithLiterals, co as PlaybackOptions, bf as PluginContainerData, aa as PluginContainerDataAlignment, e$ 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, fi as PollLayoutDirectionWithLiterals, as as PollLayoutType, fh as PollLayoutTypeWithLiterals, bV as PollSettings, a_ as Position, fP as PositionWithLiterals, cm as PricingData, da as QueryCategoriesRequest, df as QueryCategoriesResponse, dv as RangeAggregation, dE as RangeAggregationResult, dr as RangeBucket, dM as RangeResult, dI as RangeResults, bn as Rel, aR as RequestedFields, fG as RequestedFieldsWithLiterals, az as Resizing, fo as ResizingWithLiterals, aN as ResponsivenessBehaviour, fC as ResponsivenessBehaviourWithLiterals, eD as RestoreInfo, dQ as Results, ck as RibbonStyles, b8 as RichContent, dw as ScalarAggregation, dN as ScalarResult, aV as ScalarType, fK as ScalarTypeWithLiterals, aJ as Scaling, fy as ScalingWithLiterals, dl as SearchCategoriesRequest, dB as SearchDetails, b4 as SeoSchema, et as SetArrangedItemsRequest, b7 as Settings, cI as ShapeData, cJ as ShapeDataStyles, aP as SingleEntityOpsRequestedFields, fE as SingleEntityOpsRequestedFieldsWithLiterals, aT as SortDirection, fI as SortDirectionWithLiterals, aQ as SortOrder, fF as SortOrderWithLiterals, aS as SortType, fH as SortTypeWithLiterals, dd as Sorting, an as Source, fc as SourceWithLiterals, bi as Spoiler, cc as SpoilerData, bk as Styles, bL as StylesBorder, ao as StylesPosition, fd as StylesPositionWithLiterals, cu as TableCellData, cs as TableData, b6 as Tag, ac as Target, f1 as TargetWithLiterals, ad as TextAlignment, f2 as TextAlignmentWithLiterals, c4 as TextData, cM as TextNodeStyle, bp as TextStyle, bE as Thumbnails, al as ThumbnailsAlignment, fa as ThumbnailsAlignmentWithLiterals, aB as Type, fq as TypeWithLiterals, cS as URI, cW as URIs, d6 as UpdateCategoryRequest, d7 as UpdateCategoryResponse, e8 as UpdateCategoryVisibilityRequest, dt as ValueAggregation, du as ValueAggregationOptionsOneOf, dD as ValueAggregationResult, dL as ValueResult, dH as ValueResults, aH as VerticalAlignment, aM as VerticalAlignmentAlignment, fB as VerticalAlignmentAlignmentWithLiterals, fw as VerticalAlignmentWithLiterals, by as Video, cn as VideoData, ah as ViewMode, f6 as ViewModeWithLiterals, aq as ViewRole, ff as ViewRoleWithLiterals, ar as VoteRole, fg as VoteRoleWithLiterals, b0 as WebhookIdentityType, fR as WebhookIdentityTypeWithLiterals, af as Width, a9 as WidthType, e_ as WidthTypeWithLiterals, f4 as WidthWithLiterals, eY as utils } from './categories-v1-category-categories.universal-CeusNKQS.js';
4
4
 
5
5
  declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
6
6
  interface CreateCategorySignature {