@wix/auto_sdk_categories_categories 1.0.138 → 1.0.140

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 (37) hide show
  1. package/build/cjs/{categories-v1-category-categories.universal-CTgE3PnT.d.ts → categories-v1-category-categories.universal-DTKSVeR9.d.ts} +26 -0
  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 +27 -1
  7. package/build/cjs/meta.js.map +1 -1
  8. package/build/cjs/schemas.js +24 -24
  9. package/build/cjs/schemas.js.map +1 -1
  10. package/build/es/{categories-v1-category-categories.universal-CTgE3PnT.d.mts → categories-v1-category-categories.universal-DTKSVeR9.d.mts} +26 -0
  11. package/build/es/index.d.mts +2 -2
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +2 -2
  14. package/build/es/index.typings.mjs.map +1 -1
  15. package/build/es/meta.d.mts +27 -1
  16. package/build/es/meta.mjs.map +1 -1
  17. package/build/es/schemas.mjs +24 -24
  18. package/build/es/schemas.mjs.map +1 -1
  19. package/build/internal/cjs/{categories-v1-category-categories.universal-CewyKnE1.d.ts → categories-v1-category-categories.universal-8Mr7CZdw.d.ts} +26 -0
  20. package/build/internal/cjs/index.d.ts +2 -2
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +2 -2
  23. package/build/internal/cjs/index.typings.js.map +1 -1
  24. package/build/internal/cjs/meta.d.ts +27 -1
  25. package/build/internal/cjs/meta.js.map +1 -1
  26. package/build/internal/cjs/schemas.js +24 -24
  27. package/build/internal/cjs/schemas.js.map +1 -1
  28. package/build/internal/es/{categories-v1-category-categories.universal-CewyKnE1.d.mts → categories-v1-category-categories.universal-8Mr7CZdw.d.mts} +26 -0
  29. package/build/internal/es/index.d.mts +2 -2
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +2 -2
  32. package/build/internal/es/index.typings.mjs.map +1 -1
  33. package/build/internal/es/meta.d.mts +27 -1
  34. package/build/internal/es/meta.mjs.map +1 -1
  35. package/build/internal/es/schemas.mjs +24 -24
  36. package/build/internal/es/schemas.mjs.map +1 -1
  37. package/package.json +3 -3
@@ -198,6 +198,20 @@ interface Tag {
198
198
  *
199
199
  *
200
200
  * Supported values: `title`, `meta`, `script`, `link`.
201
+ *
202
+ * Which of these an API actually accepts depends on where the tag is being set: this
203
+ * list is not a blanket guarantee across every API that reuses this message. Site SEO
204
+ * Tags in particular accepts only `meta` (see `SiteSeoTags.tags`) and rejects
205
+ * `title`/`script`/`link` with a validation error even though they appear here —
206
+ * check the field description of the specific `tags`-typed field you're writing to
207
+ * for the types it actually supports and the error it returns.
208
+ *
209
+ * Limitation: `title` and `script` (e.g. a `script` tag with `props.type`
210
+ * `"application/ld+json"` carrying structured data) are supported only when
211
+ * `custom` is unset or `false`. Setting `custom: true` on a `title` or `script`
212
+ * tag is rejected with `TAG_TYPE_NOT_ALLOWED`, because `custom: true` routes the
213
+ * write through the site's Advanced/Custom Tags list. To write structured data,
214
+ * omit `custom` (or set it to `false`).
201
215
  */
202
216
  type?: string;
203
217
  /**
@@ -213,6 +227,18 @@ interface Tag {
213
227
  * Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) —
214
228
  * i.e. an entry from the site's Advanced/Custom Tags list.
215
229
  *
230
+ * Setting this to `true` on a write restricts which `type` values are accepted
231
+ * — the same restriction the Advanced/Custom Tags UI enforces. `title` and
232
+ * `script` tags (including JSON-LD structured data) must be sent with `custom`
233
+ * omitted or `false`; sending them with `custom: true` is rejected with
234
+ * `TAG_TYPE_NOT_ALLOWED`.
235
+ *
236
+ * Note this is a separate restriction from Site SEO Tags' own type restriction on
237
+ * `SiteSeoTags.tags`: even with `custom` unset, Site SEO Tags rejects `script` (e.g.
238
+ * for site-wide structured data) unconditionally. There is currently no way to set
239
+ * site-wide, every-page structured data through any of these APIs — write a per-page
240
+ * `script` tag through the Item SEO Tags API instead.
241
+ *
216
242
  * This flag is scoped to that feature only. It is NOT an indicator of whether a standard tag
217
243
  * (`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed
218
244
  * default/pattern — standard tags always resolve with `custom: false`, even when their content comes
@@ -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, d as GetCategoryBySlugOptions, e as GetCategoryBySlugResponse, U as UpdateCategory, f as UpdateCategoryOptions, g as UpdateCategoryApplicationErrors, h as UpdateCategoryValidationErrors, D as DeleteCategoryApplicationErrors, i as CategorySearch, S as SearchCategoriesOptions, j as SearchCategoriesResponse, k as CountCategoriesOptions, l as CountCategoriesResponse, M as MoveCategoryOptions, m as MoveCategoryResponse, n as MoveCategoryApplicationErrors, o as MaskedCategory, B as BulkUpdateCategoriesOptions, p as BulkUpdateCategoriesResponse, q as BulkUpdateCategoriesApplicationErrors, r as BulkUpdateCategoriesValidationErrors, s as UpdateCategoryVisibilityOptions, t as UpdateCategoryVisibilityResponse, u as UpdateCategoryVisibilityApplicationErrors, v as BulkShowCategoriesOptions, w as BulkShowCategoriesResponse, I as ItemReference, x as BulkAddItemsToCategoryOptions, y as BulkAddItemsToCategoryResponse, z as BulkAddItemsToCategoryApplicationErrors, A as BulkAddItemToCategoriesOptions, E as BulkAddItemToCategoriesResponse, F as BulkAddItemToCategoriesApplicationErrors, H as BulkRemoveItemsFromCategoryOptions, J as BulkRemoveItemsFromCategoryResponse, K as BulkRemoveItemsFromCategoryApplicationErrors, L as BulkRemoveItemFromCategoriesOptions, N as BulkRemoveItemFromCategoriesResponse, O as BulkRemoveItemFromCategoriesApplicationErrors, P as ListItemsInCategoryOptions, Q as ListItemsInCategoryResponse, R as ListCategoriesForItemOptions, V as ListCategoriesForItemResponse, W as ListCategoriesForItemsOptions, X as ListCategoriesForItemsResponse, Y as ListTreesResponse, Z as SetArrangedItemsOptions, _ as SetArrangedItemsResponse, $ as SetArrangedItemsApplicationErrors, a0 as GetArrangedItemsResponse, a1 as CategoryMovedEnvelope, a2 as CategoryCreatedEnvelope, a3 as CategoryDeletedEnvelope, a4 as CategoryItemAddedToCategoryEnvelope, a5 as CategoryItemRemovedFromCategoryEnvelope, a6 as CategoryItemsArrangedInCategoryEnvelope, a7 as CategoryUpdatedEnvelope, a8 as CategoryQuery, a9 as QueryCategoriesOptions, aa as typedQueryCategories, ab as CategoriesQueryBuilder } from './categories-v1-category-categories.universal-CTgE3PnT.js';
3
- export { fA as AccountInfo, fD as AccountInfoMetadata, fo as ActionEvent, ea as Aggregation, en as AggregationData, eb as AggregationKindOneOf, eG as AggregationResults, eH as AggregationResultsResultOneOf, eu as AggregationResultsScalarResult, bk as AggregationType, gS as AggregationTypeWithLiterals, aO as Alignment, gk as AlignmentWithLiterals, cG as AnchorData, bP as Animation, dB as App, cO as AppEmbedData, cP as AppEmbedDataAppDataOneOf, aQ as AppType, gm as AppTypeWithLiterals, eT as ApplicationError, aK as AspectRatio, gg as AspectRatioWithLiterals, d7 as AudioData, dh as Backdrop, b0 as BackdropType, gy as BackdropTypeWithLiterals, bF as Background, cv as BackgroundGradient, dp as BackgroundImage, ad as BackgroundType, fL as BackgroundTypeWithLiterals, dg as Banner, aZ as BannerPosition, gv as BannerPositionWithLiterals, fB as BaseEventMetadata, da as BlockquoteData, cQ as BookingData, bD as Border, d4 as BorderColors, d5 as BorderWidths, bq as Breadcrumb, bp as BreadcrumbsInfo, eU as BulkActionMetadata, e_ as BulkAddItemToCategoriesRequest, fs as BulkAddItemsToCategoryForMigrationRequest, ft as BulkAddItemsToCategoryForMigrationResponse, eX as BulkAddItemsToCategoryRequest, eR as BulkCategoriesResult, fq as BulkCreateCategoriesForMigrationRequest, fr as BulkCreateCategoriesForMigrationResponse, e$ as BulkItemToCategoriesResult, eY as BulkItemsToCategoryResult, f1 as BulkRemoveItemFromCategoriesRequest, f0 as BulkRemoveItemsFromCategoryRequest, gX as BulkSetItemCategoriesApplicationErrors, fI as BulkSetItemCategoriesOptions, fd as BulkSetItemCategoriesRequest, fe as BulkSetItemCategoriesResponse, eW as BulkShowCategoriesRequest, eQ as BulkUpdateCategoriesRequest, d9 as BulletedListData, bA as ButtonData, ah as ButtonDataType, fP as ButtonDataTypeWithLiterals, cS as ButtonStyles, db as CaptionData, dm as CardData, dn as CardDataBackground, b6 as CardDataBackgroundType, gE as CardDataBackgroundTypeWithLiterals, cV as CardStyles, aN as CardStylesType, gj as CardStylesTypeWithLiterals, fw as CatalogRollbackRequested, fE as CategoriesQueryResult, dI as CategoryMoved, fF as CategoryQuerySpec, fG as CategorySearchSpec, fh as CategoryTreeNode, d3 as CellStyle, dt as CheckboxListData, bV as CodeBlockData, c$ as CollapsibleListData, cH as ColorData, bE as Colors, ba as ColumnSize, gI as ColumnSizeWithLiterals, gY as CommonQueryWithEntityContext, gZ as CommonSearchWithEntityContext, e6 as CompactCategory, eO as CountCategoriesRequest, dO as CreateCategoryRequest, dP as CreateCategoryResponse, av as Crop, g1 as CropWithLiterals, e0 as CursorPaging, e2 as CursorPagingMetadata, dZ as CursorQuery, d_ as CursorQueryPagingMethodOneOf, e8 as CursorSearch, e9 as CursorSearchPagingMethodOneOf, e3 as Cursors, dF as CustomTag, ei as DateHistogramAggregation, eC as DateHistogramResult, eE as DateHistogramResults, cE as Decoration, cF as DecorationDataOneOf, aG as DecorationType, gc as DecorationTypeWithLiterals, dW as DeleteCategoryRequest, dX as DeleteCategoryResponse, eI as DeprecatedSearchCategoriesWithOffsetRequest, eM as DeprecatedSearchCategoriesWithOffsetResponse, cC as Design, b3 as DesignTarget, gB as DesignTargetWithLiterals, d1 as Dimensions, aS as Direction, go as DirectionWithLiterals, bX as DividerData, ar as DividerDataAlignment, fZ as DividerDataAlignmentWithLiterals, bY as DividerDataStyles, dw as DocumentStyle, fi as DomainEvent, fj as DomainEventBodyOneOf, dQ as DuplicateHandleErrorData, cZ as EmbedData, fp as Empty, fk as EntityCreatedEvent, fn as EntityDeletedEvent, fm as EntityUpdatedEvent, bQ as EntranceAnimation, bR as EntranceEffect, ak as EntranceEffectType, fS as EntranceEffectTypeWithLiterals, cR as EventData, fC as EventMetadata, dy as ExtendedFields, dE as File, bZ as FileData, b_ as FileSource, b$ as FileSourceDataOneOf, cM as FontFamilyData, cK as FontSizeData, aH as FontType, gd as FontTypeWithLiterals, cc as GIF, cb as GIFData, ax as GIFType, g3 as GIFTypeWithLiterals, c1 as GalleryData, c7 as GalleryOptions, c8 as GalleryOptionsLayout, fc as GetArrangedItemsRequest, ff as GetCategoriesTreeRequest, fg as GetCategoriesTreeResponse, dT as GetCategoryBySlugRequest, dR as GetCategoryRequest, dS as GetCategoryResponse, bB as Gradient, ae as GradientType, fM as GradientTypeWithLiterals, eD as GroupByValueResults, ce as HTMLData, cf as HTMLDataDataOneOf, cd as HeadingData, bK as Height, fy as IdentificationData, fz as IdentificationDataIdOneOf, c3 as Image, cg as ImageData, cj as ImageDataCrop, ci as ImageDataStyles, aW as ImagePosition, b5 as ImagePositionPosition, gD as ImagePositionPositionWithLiterals, gs as ImagePositionWithLiterals, aV as ImageScalingScaling, gr as ImageScalingScalingWithLiterals, cT as ImageStyles, aJ as ImageStylesPosition, gf as ImageStylesPositionWithLiterals, ed as IncludeMissingValuesOptions, b8 as Indentation, gG as IndentationWithLiterals, aR as InitialExpandedItems, gn as InitialExpandedItemsWithLiterals, bj as Interval, gR as IntervalWithLiterals, dz as InvalidateCache, dA as InvalidateCacheGetByOneOf, c5 as Item, dJ as ItemAddedToCategory, c6 as ItemDataOneOf, eS as ItemMetadata, eZ as ItemReferenceMetadata, dL as ItemRemovedFromCategory, c9 as ItemStyle, dK as ItemsAddedToCategory, dN as ItemsArrangedInCategory, dM as ItemsRemovedFromCategory, bt as Keyword, a_ as LayerEffect, gw as LayerEffectWithLiterals, de as Layers, aP as Layout, dj as LayoutCellData, dc as LayoutData, dd as LayoutDataBackground, df as LayoutDataBackgroundImage, aX as LayoutDataBackgroundType, gt as LayoutDataBackgroundTypeWithLiterals, at as LayoutType, f$ as LayoutTypeWithLiterals, gl as LayoutWithLiterals, ao as LineCap, fW as LineCapWithLiterals, ap as LineStyle, fX as LineStyleWithLiterals, bM as Link, cI as LinkData, bN as LinkDataOneOf, ck as LinkPreviewData, cl as LinkPreviewDataStyles, f5 as ListCategoriesForItemRequest, f6 as ListCategoriesForItemsRequest, e4 as ListCompactCategoriesByIdsRequest, e5 as ListCompactCategoriesByIdsResponse, du as ListItemNodeData, fH as ListItemsInCategoryOptionsPagingMethodOneOf, f2 as ListItemsInCategoryRequest, f3 as ListItemsInCategoryRequestPagingMethodOneOf, b7 as ListStyle, gF as ListStyleWithLiterals, f8 as ListTreesRequest, d6 as ListValue, bS as LoopAnimation, bT as LoopEffect, al as LoopEffectType, fT as LoopEffectTypeWithLiterals, cm as MapData, f7 as MapItemToCategories, cn as MapSettings, aA as MapType, g6 as MapTypeWithLiterals, c2 as Media, cJ as MentionData, fx as MessageEnvelope, dv as Metadata, bg as MissingValues, gO as MissingValuesWithLiterals, bl as Mode, gT as ModeWithLiterals, eP as MoveCategoryRequest, f9 as MoveItemInCategoryRequest, bn as MoveItemInCategoryRequestPosition, gV as MoveItemInCategoryRequestPositionWithLiterals, fa as MoveItemInCategoryResponse, el as NestedAggregation, ej as NestedAggregationItem, ek as NestedAggregationItemKindOneOf, eq as NestedAggregationResults, er as NestedAggregationResultsResultOneOf, bi as NestedAggregationType, gQ as NestedAggregationTypeWithLiterals, ez as NestedResultValue, eA as NestedResultValueResultOneOf, eF as NestedResults, ev as NestedValueAggregationResult, bx as Node, by as NodeDataOneOf, bz as NodeStyle, ac as NodeType, fK as NodeTypeWithLiterals, aU as NullValue, gq as NullValueWithLiterals, c_ as Oembed, eJ as OffsetSearch, eK as OffsetSearchPagingMethodOneOf, cr as Option, cz as OptionDesign, cu as OptionLayout, d8 as OrderedListData, au as Orientation, g0 as OrientationWithLiterals, aY as Origin, gu as OriginWithLiterals, c0 as PDFSettings, dC as Page, dG as Pages, eL as Paging, eN as PagingMetadata, f4 as PagingMetadataV2, co as ParagraphData, br as ParentCategory, cq as Permissions, aM as Placement, gi as PlacementWithLiterals, cY as PlaybackOptions, bG as PluginContainerData, ag as PluginContainerDataAlignment, fO as PluginContainerDataAlignmentWithLiterals, bH as PluginContainerDataWidth, bI as PluginContainerDataWidthDataOneOf, bU as PointerEffect, am as PointerEffectType, fU as PointerEffectTypeWithLiterals, cA as Poll, cp as PollData, cB as PollDataLayout, cy as PollDesign, cw as PollDesignBackground, cx as PollDesignBackgroundBackgroundOneOf, aF as PollDesignBackgroundType, gb as PollDesignBackgroundTypeWithLiterals, ct as PollLayout, aE as PollLayoutDirection, ga as PollLayoutDirectionWithLiterals, aD as PollLayoutType, g9 as PollLayoutTypeWithLiterals, cs as PollSettings, bm as Position, gU as PositionWithLiterals, cW as PricingData, dY as QueryCategoriesRequest, e1 as QueryCategoriesResponse, eg as RangeAggregation, ep as RangeAggregationResult, ec as RangeBucket, ex as RangeResult, et as RangeResults, bO as Rel, bd as RequestedFields, gL as RequestedFieldsWithLiterals, aL as Resizing, gh as ResizingWithLiterals, b2 as ResponsivenessBehaviour, gA as ResponsivenessBehaviourWithLiterals, fl as RestoreInfo, eB as Results, cU as RibbonStyles, bw as RichContent, eh as ScalarAggregation, ey as ScalarResult, bh as ScalarType, gP as ScalarTypeWithLiterals, b4 as Scaling, gC as ScalingWithLiterals, e7 as SearchCategoriesRequest, em as SearchDetails, di as SectionDivider, bs as SeoSchema, fu as SetArrangedItemsForMigrationRequest, fv as SetArrangedItemsForMigrationResponse, fb as SetArrangedItemsRequest, bv as Settings, a$ as Shape, dk as ShapeData, dl as ShapeDataStyles, gx as ShapeWithLiterals, bb as SingleEntityOpsRequestedFields, gJ as SingleEntityOpsRequestedFieldsWithLiterals, cN as SketchData, ds as SmartBlockCellData, dr as SmartBlockData, b9 as SmartBlockDataType, gH as SmartBlockDataTypeWithLiterals, bf as SortDirection, gN as SortDirectionWithLiterals, bc as SortOrder, gK as SortOrderWithLiterals, be as SortType, gM as SortTypeWithLiterals, d$ as Sorting, ay as Source, g4 as SourceWithLiterals, bJ as Spoiler, cL as SpoilerData, bC as Stop, bL as Styles, ch as StylesBorder, az as StylesPosition, g5 as StylesPositionWithLiterals, d2 as TableCellData, d0 as TableData, bu as Tag, ai as Target, fQ as TargetWithLiterals, an as TextAlignment, fV as TextAlignmentWithLiterals, cD as TextData, dx as TextNodeStyle, bW as TextStyle, ca as Thumbnails, aw as ThumbnailsAlignment, g2 as ThumbnailsAlignmentWithLiterals, dq as TocData, aj as Type, fR as TypeWithLiterals, dD as URI, dH as URIs, dU as UpdateCategoryRequest, dV as UpdateCategoryResponse, eV as UpdateCategoryVisibilityRequest, ee as ValueAggregation, ef as ValueAggregationOptionsOneOf, eo as ValueAggregationResult, ew as ValueResult, es as ValueResults, aI as Variant, ge as VariantWithLiterals, aT as VerticalAlignment, b1 as VerticalAlignmentAlignment, gz as VerticalAlignmentAlignmentWithLiterals, gp as VerticalAlignmentWithLiterals, c4 as Video, cX as VideoData, as as ViewMode, f_ as ViewModeWithLiterals, aB as ViewRole, g7 as ViewRoleWithLiterals, aC as VoteRole, g8 as VoteRoleWithLiterals, bo as WebhookIdentityType, gW as WebhookIdentityTypeWithLiterals, aq as Width, af as WidthType, fN as WidthTypeWithLiterals, fY as WidthWithLiterals, fJ as utils } from './categories-v1-category-categories.universal-CTgE3PnT.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, h as UpdateCategoryValidationErrors, D as DeleteCategoryApplicationErrors, i as CategorySearch, S as SearchCategoriesOptions, j as SearchCategoriesResponse, k as CountCategoriesOptions, l as CountCategoriesResponse, M as MoveCategoryOptions, m as MoveCategoryResponse, n as MoveCategoryApplicationErrors, o as MaskedCategory, B as BulkUpdateCategoriesOptions, p as BulkUpdateCategoriesResponse, q as BulkUpdateCategoriesApplicationErrors, r as BulkUpdateCategoriesValidationErrors, s as UpdateCategoryVisibilityOptions, t as UpdateCategoryVisibilityResponse, u as UpdateCategoryVisibilityApplicationErrors, v as BulkShowCategoriesOptions, w as BulkShowCategoriesResponse, I as ItemReference, x as BulkAddItemsToCategoryOptions, y as BulkAddItemsToCategoryResponse, z as BulkAddItemsToCategoryApplicationErrors, A as BulkAddItemToCategoriesOptions, E as BulkAddItemToCategoriesResponse, F as BulkAddItemToCategoriesApplicationErrors, H as BulkRemoveItemsFromCategoryOptions, J as BulkRemoveItemsFromCategoryResponse, K as BulkRemoveItemsFromCategoryApplicationErrors, L as BulkRemoveItemFromCategoriesOptions, N as BulkRemoveItemFromCategoriesResponse, O as BulkRemoveItemFromCategoriesApplicationErrors, P as ListItemsInCategoryOptions, Q as ListItemsInCategoryResponse, R as ListCategoriesForItemOptions, V as ListCategoriesForItemResponse, W as ListCategoriesForItemsOptions, X as ListCategoriesForItemsResponse, Y as ListTreesResponse, Z as SetArrangedItemsOptions, _ as SetArrangedItemsResponse, $ as SetArrangedItemsApplicationErrors, a0 as GetArrangedItemsResponse, a1 as CategoryMovedEnvelope, a2 as CategoryCreatedEnvelope, a3 as CategoryDeletedEnvelope, a4 as CategoryItemAddedToCategoryEnvelope, a5 as CategoryItemRemovedFromCategoryEnvelope, a6 as CategoryItemsArrangedInCategoryEnvelope, a7 as CategoryUpdatedEnvelope, a8 as CategoryQuery, a9 as QueryCategoriesOptions, aa as typedQueryCategories, ab as CategoriesQueryBuilder } from './categories-v1-category-categories.universal-DTKSVeR9.js';
3
+ export { fA as AccountInfo, fD as AccountInfoMetadata, fo as ActionEvent, ea as Aggregation, en as AggregationData, eb as AggregationKindOneOf, eG as AggregationResults, eH as AggregationResultsResultOneOf, eu as AggregationResultsScalarResult, bk as AggregationType, gS as AggregationTypeWithLiterals, aO as Alignment, gk as AlignmentWithLiterals, cG as AnchorData, bP as Animation, dB as App, cO as AppEmbedData, cP as AppEmbedDataAppDataOneOf, aQ as AppType, gm as AppTypeWithLiterals, eT as ApplicationError, aK as AspectRatio, gg as AspectRatioWithLiterals, d7 as AudioData, dh as Backdrop, b0 as BackdropType, gy as BackdropTypeWithLiterals, bF as Background, cv as BackgroundGradient, dp as BackgroundImage, ad as BackgroundType, fL as BackgroundTypeWithLiterals, dg as Banner, aZ as BannerPosition, gv as BannerPositionWithLiterals, fB as BaseEventMetadata, da as BlockquoteData, cQ as BookingData, bD as Border, d4 as BorderColors, d5 as BorderWidths, bq as Breadcrumb, bp as BreadcrumbsInfo, eU as BulkActionMetadata, e_ as BulkAddItemToCategoriesRequest, fs as BulkAddItemsToCategoryForMigrationRequest, ft as BulkAddItemsToCategoryForMigrationResponse, eX as BulkAddItemsToCategoryRequest, eR as BulkCategoriesResult, fq as BulkCreateCategoriesForMigrationRequest, fr as BulkCreateCategoriesForMigrationResponse, e$ as BulkItemToCategoriesResult, eY as BulkItemsToCategoryResult, f1 as BulkRemoveItemFromCategoriesRequest, f0 as BulkRemoveItemsFromCategoryRequest, gX as BulkSetItemCategoriesApplicationErrors, fI as BulkSetItemCategoriesOptions, fd as BulkSetItemCategoriesRequest, fe as BulkSetItemCategoriesResponse, eW as BulkShowCategoriesRequest, eQ as BulkUpdateCategoriesRequest, d9 as BulletedListData, bA as ButtonData, ah as ButtonDataType, fP as ButtonDataTypeWithLiterals, cS as ButtonStyles, db as CaptionData, dm as CardData, dn as CardDataBackground, b6 as CardDataBackgroundType, gE as CardDataBackgroundTypeWithLiterals, cV as CardStyles, aN as CardStylesType, gj as CardStylesTypeWithLiterals, fw as CatalogRollbackRequested, fE as CategoriesQueryResult, dI as CategoryMoved, fF as CategoryQuerySpec, fG as CategorySearchSpec, fh as CategoryTreeNode, d3 as CellStyle, dt as CheckboxListData, bV as CodeBlockData, c$ as CollapsibleListData, cH as ColorData, bE as Colors, ba as ColumnSize, gI as ColumnSizeWithLiterals, gY as CommonQueryWithEntityContext, gZ as CommonSearchWithEntityContext, e6 as CompactCategory, eO as CountCategoriesRequest, dO as CreateCategoryRequest, dP as CreateCategoryResponse, av as Crop, g1 as CropWithLiterals, e0 as CursorPaging, e2 as CursorPagingMetadata, dZ as CursorQuery, d_ as CursorQueryPagingMethodOneOf, e8 as CursorSearch, e9 as CursorSearchPagingMethodOneOf, e3 as Cursors, dF as CustomTag, ei as DateHistogramAggregation, eC as DateHistogramResult, eE as DateHistogramResults, cE as Decoration, cF as DecorationDataOneOf, aG as DecorationType, gc as DecorationTypeWithLiterals, dW as DeleteCategoryRequest, dX as DeleteCategoryResponse, eI as DeprecatedSearchCategoriesWithOffsetRequest, eM as DeprecatedSearchCategoriesWithOffsetResponse, cC as Design, b3 as DesignTarget, gB as DesignTargetWithLiterals, d1 as Dimensions, aS as Direction, go as DirectionWithLiterals, bX as DividerData, ar as DividerDataAlignment, fZ as DividerDataAlignmentWithLiterals, bY as DividerDataStyles, dw as DocumentStyle, fi as DomainEvent, fj as DomainEventBodyOneOf, dQ as DuplicateHandleErrorData, cZ as EmbedData, fp as Empty, fk as EntityCreatedEvent, fn as EntityDeletedEvent, fm as EntityUpdatedEvent, bQ as EntranceAnimation, bR as EntranceEffect, ak as EntranceEffectType, fS as EntranceEffectTypeWithLiterals, cR as EventData, fC as EventMetadata, dy as ExtendedFields, dE as File, bZ as FileData, b_ as FileSource, b$ as FileSourceDataOneOf, cM as FontFamilyData, cK as FontSizeData, aH as FontType, gd as FontTypeWithLiterals, cc as GIF, cb as GIFData, ax as GIFType, g3 as GIFTypeWithLiterals, c1 as GalleryData, c7 as GalleryOptions, c8 as GalleryOptionsLayout, fc as GetArrangedItemsRequest, ff as GetCategoriesTreeRequest, fg as GetCategoriesTreeResponse, dT as GetCategoryBySlugRequest, dR as GetCategoryRequest, dS as GetCategoryResponse, bB as Gradient, ae as GradientType, fM as GradientTypeWithLiterals, eD as GroupByValueResults, ce as HTMLData, cf as HTMLDataDataOneOf, cd as HeadingData, bK as Height, fy as IdentificationData, fz as IdentificationDataIdOneOf, c3 as Image, cg as ImageData, cj as ImageDataCrop, ci as ImageDataStyles, aW as ImagePosition, b5 as ImagePositionPosition, gD as ImagePositionPositionWithLiterals, gs as ImagePositionWithLiterals, aV as ImageScalingScaling, gr as ImageScalingScalingWithLiterals, cT as ImageStyles, aJ as ImageStylesPosition, gf as ImageStylesPositionWithLiterals, ed as IncludeMissingValuesOptions, b8 as Indentation, gG as IndentationWithLiterals, aR as InitialExpandedItems, gn as InitialExpandedItemsWithLiterals, bj as Interval, gR as IntervalWithLiterals, dz as InvalidateCache, dA as InvalidateCacheGetByOneOf, c5 as Item, dJ as ItemAddedToCategory, c6 as ItemDataOneOf, eS as ItemMetadata, eZ as ItemReferenceMetadata, dL as ItemRemovedFromCategory, c9 as ItemStyle, dK as ItemsAddedToCategory, dN as ItemsArrangedInCategory, dM as ItemsRemovedFromCategory, bt as Keyword, a_ as LayerEffect, gw as LayerEffectWithLiterals, de as Layers, aP as Layout, dj as LayoutCellData, dc as LayoutData, dd as LayoutDataBackground, df as LayoutDataBackgroundImage, aX as LayoutDataBackgroundType, gt as LayoutDataBackgroundTypeWithLiterals, at as LayoutType, f$ as LayoutTypeWithLiterals, gl as LayoutWithLiterals, ao as LineCap, fW as LineCapWithLiterals, ap as LineStyle, fX as LineStyleWithLiterals, bM as Link, cI as LinkData, bN as LinkDataOneOf, ck as LinkPreviewData, cl as LinkPreviewDataStyles, f5 as ListCategoriesForItemRequest, f6 as ListCategoriesForItemsRequest, e4 as ListCompactCategoriesByIdsRequest, e5 as ListCompactCategoriesByIdsResponse, du as ListItemNodeData, fH as ListItemsInCategoryOptionsPagingMethodOneOf, f2 as ListItemsInCategoryRequest, f3 as ListItemsInCategoryRequestPagingMethodOneOf, b7 as ListStyle, gF as ListStyleWithLiterals, f8 as ListTreesRequest, d6 as ListValue, bS as LoopAnimation, bT as LoopEffect, al as LoopEffectType, fT as LoopEffectTypeWithLiterals, cm as MapData, f7 as MapItemToCategories, cn as MapSettings, aA as MapType, g6 as MapTypeWithLiterals, c2 as Media, cJ as MentionData, fx as MessageEnvelope, dv as Metadata, bg as MissingValues, gO as MissingValuesWithLiterals, bl as Mode, gT as ModeWithLiterals, eP as MoveCategoryRequest, f9 as MoveItemInCategoryRequest, bn as MoveItemInCategoryRequestPosition, gV as MoveItemInCategoryRequestPositionWithLiterals, fa as MoveItemInCategoryResponse, el as NestedAggregation, ej as NestedAggregationItem, ek as NestedAggregationItemKindOneOf, eq as NestedAggregationResults, er as NestedAggregationResultsResultOneOf, bi as NestedAggregationType, gQ as NestedAggregationTypeWithLiterals, ez as NestedResultValue, eA as NestedResultValueResultOneOf, eF as NestedResults, ev as NestedValueAggregationResult, bx as Node, by as NodeDataOneOf, bz as NodeStyle, ac as NodeType, fK as NodeTypeWithLiterals, aU as NullValue, gq as NullValueWithLiterals, c_ as Oembed, eJ as OffsetSearch, eK as OffsetSearchPagingMethodOneOf, cr as Option, cz as OptionDesign, cu as OptionLayout, d8 as OrderedListData, au as Orientation, g0 as OrientationWithLiterals, aY as Origin, gu as OriginWithLiterals, c0 as PDFSettings, dC as Page, dG as Pages, eL as Paging, eN as PagingMetadata, f4 as PagingMetadataV2, co as ParagraphData, br as ParentCategory, cq as Permissions, aM as Placement, gi as PlacementWithLiterals, cY as PlaybackOptions, bG as PluginContainerData, ag as PluginContainerDataAlignment, fO as PluginContainerDataAlignmentWithLiterals, bH as PluginContainerDataWidth, bI as PluginContainerDataWidthDataOneOf, bU as PointerEffect, am as PointerEffectType, fU as PointerEffectTypeWithLiterals, cA as Poll, cp as PollData, cB as PollDataLayout, cy as PollDesign, cw as PollDesignBackground, cx as PollDesignBackgroundBackgroundOneOf, aF as PollDesignBackgroundType, gb as PollDesignBackgroundTypeWithLiterals, ct as PollLayout, aE as PollLayoutDirection, ga as PollLayoutDirectionWithLiterals, aD as PollLayoutType, g9 as PollLayoutTypeWithLiterals, cs as PollSettings, bm as Position, gU as PositionWithLiterals, cW as PricingData, dY as QueryCategoriesRequest, e1 as QueryCategoriesResponse, eg as RangeAggregation, ep as RangeAggregationResult, ec as RangeBucket, ex as RangeResult, et as RangeResults, bO as Rel, bd as RequestedFields, gL as RequestedFieldsWithLiterals, aL as Resizing, gh as ResizingWithLiterals, b2 as ResponsivenessBehaviour, gA as ResponsivenessBehaviourWithLiterals, fl as RestoreInfo, eB as Results, cU as RibbonStyles, bw as RichContent, eh as ScalarAggregation, ey as ScalarResult, bh as ScalarType, gP as ScalarTypeWithLiterals, b4 as Scaling, gC as ScalingWithLiterals, e7 as SearchCategoriesRequest, em as SearchDetails, di as SectionDivider, bs as SeoSchema, fu as SetArrangedItemsForMigrationRequest, fv as SetArrangedItemsForMigrationResponse, fb as SetArrangedItemsRequest, bv as Settings, a$ as Shape, dk as ShapeData, dl as ShapeDataStyles, gx as ShapeWithLiterals, bb as SingleEntityOpsRequestedFields, gJ as SingleEntityOpsRequestedFieldsWithLiterals, cN as SketchData, ds as SmartBlockCellData, dr as SmartBlockData, b9 as SmartBlockDataType, gH as SmartBlockDataTypeWithLiterals, bf as SortDirection, gN as SortDirectionWithLiterals, bc as SortOrder, gK as SortOrderWithLiterals, be as SortType, gM as SortTypeWithLiterals, d$ as Sorting, ay as Source, g4 as SourceWithLiterals, bJ as Spoiler, cL as SpoilerData, bC as Stop, bL as Styles, ch as StylesBorder, az as StylesPosition, g5 as StylesPositionWithLiterals, d2 as TableCellData, d0 as TableData, bu as Tag, ai as Target, fQ as TargetWithLiterals, an as TextAlignment, fV as TextAlignmentWithLiterals, cD as TextData, dx as TextNodeStyle, bW as TextStyle, ca as Thumbnails, aw as ThumbnailsAlignment, g2 as ThumbnailsAlignmentWithLiterals, dq as TocData, aj as Type, fR as TypeWithLiterals, dD as URI, dH as URIs, dU as UpdateCategoryRequest, dV as UpdateCategoryResponse, eV as UpdateCategoryVisibilityRequest, ee as ValueAggregation, ef as ValueAggregationOptionsOneOf, eo as ValueAggregationResult, ew as ValueResult, es as ValueResults, aI as Variant, ge as VariantWithLiterals, aT as VerticalAlignment, b1 as VerticalAlignmentAlignment, gz as VerticalAlignmentAlignmentWithLiterals, gp as VerticalAlignmentWithLiterals, c4 as Video, cX as VideoData, as as ViewMode, f_ as ViewModeWithLiterals, aB as ViewRole, g7 as ViewRoleWithLiterals, aC as VoteRole, g8 as VoteRoleWithLiterals, bo as WebhookIdentityType, gW as WebhookIdentityTypeWithLiterals, aq as Width, af as WidthType, fN as WidthTypeWithLiterals, fY as WidthWithLiterals, fJ as utils } from './categories-v1-category-categories.universal-DTKSVeR9.js';
4
4
 
5
5
  declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
6
6
  interface CreateCategorySignature {