@wix/auto_sdk_categories_categories 1.0.118 → 1.0.119

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-qBO935iu.d.ts → categories-v1-category-categories.universal-BqSfFA2o.d.ts} +29 -3
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +12 -0
  4. package/build/cjs/index.js.map +1 -1
  5. package/build/cjs/index.typings.d.ts +2 -2
  6. package/build/cjs/index.typings.js +12 -0
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +30 -4
  9. package/build/cjs/meta.js +12 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{categories-v1-category-categories.universal-qBO935iu.d.mts → categories-v1-category-categories.universal-BqSfFA2o.d.mts} +29 -3
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +11 -0
  14. package/build/es/index.mjs.map +1 -1
  15. package/build/es/index.typings.d.mts +2 -2
  16. package/build/es/index.typings.mjs +11 -0
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +30 -4
  19. package/build/es/meta.mjs +11 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{categories-v1-category-categories.universal-DLDT6XAD.d.ts → categories-v1-category-categories.universal-Bs8oRyXK.d.ts} +29 -3
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +12 -0
  24. package/build/internal/cjs/index.js.map +1 -1
  25. package/build/internal/cjs/index.typings.d.ts +2 -2
  26. package/build/internal/cjs/index.typings.js +12 -0
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +30 -4
  29. package/build/internal/cjs/meta.js +12 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{categories-v1-category-categories.universal-DLDT6XAD.d.mts → categories-v1-category-categories.universal-Bs8oRyXK.d.mts} +29 -3
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +11 -0
  34. package/build/internal/es/index.mjs.map +1 -1
  35. package/build/internal/es/index.typings.d.mts +2 -2
  36. package/build/internal/es/index.typings.mjs +11 -0
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +30 -4
  39. package/build/internal/es/meta.mjs +11 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -1441,6 +1441,8 @@ interface Decoration extends DecorationDataOneOf {
1441
1441
  subscriptData?: boolean | null;
1442
1442
  /** Data for a font family decoration. */
1443
1443
  fontFamilyData?: FontFamilyData;
1444
+ /** Data for a hand-drawn sketch annotation decoration. */
1445
+ sketchData?: SketchData;
1444
1446
  /** The type of decoration to apply. */
1445
1447
  type?: DecorationTypeWithLiterals;
1446
1448
  }
@@ -1472,6 +1474,8 @@ interface DecorationDataOneOf {
1472
1474
  subscriptData?: boolean | null;
1473
1475
  /** Data for a font family decoration. */
1474
1476
  fontFamilyData?: FontFamilyData;
1477
+ /** Data for a hand-drawn sketch annotation decoration. */
1478
+ sketchData?: SketchData;
1475
1479
  }
1476
1480
  declare enum DecorationType {
1477
1481
  BOLD = "BOLD",
@@ -1487,10 +1491,11 @@ declare enum DecorationType {
1487
1491
  STRIKETHROUGH = "STRIKETHROUGH",
1488
1492
  SUPERSCRIPT = "SUPERSCRIPT",
1489
1493
  SUBSCRIPT = "SUBSCRIPT",
1490
- FONT_FAMILY = "FONT_FAMILY"
1494
+ FONT_FAMILY = "FONT_FAMILY",
1495
+ SKETCH = "SKETCH"
1491
1496
  }
1492
1497
  /** @enumType */
1493
- type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY';
1498
+ type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY' | 'SKETCH';
1494
1499
  interface AnchorData {
1495
1500
  /** The target node's ID. */
1496
1501
  anchor?: string;
@@ -1533,6 +1538,27 @@ interface FontFamilyData {
1533
1538
  /** @maxLength 1000 */
1534
1539
  value?: string | null;
1535
1540
  }
1541
+ interface SketchData {
1542
+ /** The sketch annotation variant to draw over the text. */
1543
+ variant?: VariantWithLiterals;
1544
+ /**
1545
+ * Annotation color. Defaults to the theme action color.
1546
+ * @maxLength 19
1547
+ */
1548
+ color?: string | null;
1549
+ /** Whether the annotation animates on first paint. Defaults to `true`. */
1550
+ animate?: boolean | null;
1551
+ }
1552
+ declare enum Variant {
1553
+ UNDERLINE = "UNDERLINE",
1554
+ BOX = "BOX",
1555
+ CIRCLE = "CIRCLE",
1556
+ HIGHLIGHT = "HIGHLIGHT",
1557
+ STRIKETHROUGH = "STRIKETHROUGH",
1558
+ CROSSED_OFF = "CROSSED_OFF"
1559
+ }
1560
+ /** @enumType */
1561
+ type VariantWithLiterals = Variant | 'UNDERLINE' | 'BOX' | 'CIRCLE' | 'HIGHLIGHT' | 'STRIKETHROUGH' | 'CROSSED_OFF';
1536
1562
  interface AppEmbedData extends AppEmbedDataAppDataOneOf {
1537
1563
  /** Data for embedded Wix Bookings content. */
1538
1564
  bookingData?: BookingData;
@@ -5924,4 +5950,4 @@ interface BulkSetItemCategoriesOptions {
5924
5950
  treeReference: TreeReference;
5925
5951
  }
5926
5952
 
5927
- 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, SingleEntityOpsRequestedFields 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, AspectRatio as aA, Resizing as aB, Placement as aC, Type as aD, Alignment as aE, Layout as aF, AppType as aG, InitialExpandedItems as aH, Direction as aI, VerticalAlignment as aJ, NullValue as aK, ImageScalingScaling as aL, ImagePosition as aM, Origin as aN, BannerPosition as aO, LayoutDataBackgroundType as aP, BackdropType as aQ, VerticalAlignmentAlignment as aR, ResponsivenessBehaviour as aS, DesignTarget as aT, Scaling as aU, ImagePositionPosition as aV, CardDataBackgroundType as aW, ListStyle as aX, Indentation as aY, SmartBlockDataType as aZ, ColumnSize 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, ImageStylesPosition as az, type CreateCategoryApplicationErrors as b, type ImageDataStyles as b$, SortOrder as b0, RequestedFields as b1, SortType as b2, SortDirection as b3, MissingValues as b4, ScalarType as b5, NestedAggregationType as b6, Interval as b7, AggregationType as b8, Mode as b9, type Link as bA, type LinkDataOneOf as bB, type Rel as bC, type CodeBlockData as bD, type TextStyle as bE, type DividerData as bF, type FileData as bG, type FileSource as bH, type FileSourceDataOneOf as bI, type PDFSettings as bJ, type GalleryData as bK, type Media as bL, type Image as bM, type Video as bN, type Item as bO, type ItemDataOneOf as bP, type GalleryOptions as bQ, type GalleryOptionsLayout as bR, type ItemStyle as bS, type Thumbnails as bT, type GIFData as bU, type GIF as bV, type HeadingData as bW, type HTMLData as bX, type HTMLDataDataOneOf as bY, type ImageData as bZ, type StylesBorder as b_, Position as ba, MoveItemInCategoryRequestPosition as bb, WebhookIdentityType as bc, type BreadcrumbsInfo as bd, type Breadcrumb as be, type ParentCategory as bf, type SeoSchema as bg, type Keyword as bh, type Tag as bi, type Settings as bj, type RichContent as bk, type Node as bl, type NodeDataOneOf as bm, type NodeStyle as bn, type ButtonData as bo, type Gradient as bp, type Stop as bq, type Border as br, type Colors as bs, type Background as bt, type PluginContainerData as bu, type PluginContainerDataWidth as bv, type PluginContainerDataWidthDataOneOf as bw, type Spoiler as bx, type Height as by, type Styles as bz, type CreateCategoryValidationErrors as c, type CardData as c$, type LinkPreviewData as c0, type LinkPreviewDataStyles as c1, type MapData as c2, type MapSettings as c3, type ParagraphData as c4, type PollData as c5, type Permissions as c6, type Option as c7, type PollSettings as c8, type PollLayout as c9, type CardStyles as cA, type PricingData as cB, type VideoData as cC, type PlaybackOptions as cD, type EmbedData as cE, type Oembed as cF, type CollapsibleListData as cG, type TableData as cH, type Dimensions as cI, type TableCellData as cJ, type CellStyle as cK, type BorderColors as cL, type BorderWidths as cM, type ListValue as cN, type AudioData as cO, type OrderedListData as cP, type BulletedListData as cQ, type BlockquoteData as cR, type CaptionData as cS, type LayoutData as cT, type LayoutDataBackgroundImage as cU, type Banner as cV, type LayoutDataBackground as cW, type Backdrop as cX, type LayoutCellData as cY, type ShapeData as cZ, type ShapeDataStyles as c_, type OptionLayout as ca, type BackgroundGradient as cb, type PollDesignBackground as cc, type PollDesignBackgroundBackgroundOneOf as cd, type PollDesign as ce, type OptionDesign as cf, type Poll as cg, type PollDataLayout as ch, type Design as ci, type TextData as cj, type Decoration as ck, type DecorationDataOneOf as cl, type AnchorData as cm, type ColorData as cn, type LinkData as co, type MentionData as cp, type FontSizeData as cq, type SpoilerData as cr, type FontFamilyData as cs, type AppEmbedData as ct, type AppEmbedDataAppDataOneOf as cu, type BookingData as cv, type EventData as cw, type ButtonStyles as cx, type ImageStyles as cy, type RibbonStyles as cz, type UpdateCategoryOptions as d, type NestedAggregation as d$, type CardDataBackground as d0, type BackgroundImage as d1, type TocData as d2, type SmartBlockData as d3, type SmartBlockCellData as d4, type CheckboxListData as d5, type ListItemNodeData as d6, type Metadata as d7, type DocumentStyle as d8, type TextNodeStyle as d9, type DeleteCategoryRequest as dA, type DeleteCategoryResponse as dB, type QueryCategoriesRequest as dC, type CursorQuery as dD, type CursorQueryPagingMethodOneOf as dE, type Sorting as dF, type CursorPaging as dG, type QueryCategoriesResponse as dH, type CursorPagingMetadata as dI, type Cursors as dJ, type ListCompactCategoriesByIdsRequest as dK, type ListCompactCategoriesByIdsResponse as dL, type CompactCategory as dM, type SearchCategoriesRequest as dN, type CursorSearch as dO, type CursorSearchPagingMethodOneOf as dP, type Aggregation as dQ, type AggregationKindOneOf as dR, type RangeBucket as dS, type IncludeMissingValuesOptions as dT, type ValueAggregation as dU, type ValueAggregationOptionsOneOf as dV, type RangeAggregation as dW, type ScalarAggregation as dX, type DateHistogramAggregation as dY, type NestedAggregationItem as dZ, type NestedAggregationItemKindOneOf as d_, type ExtendedFields as da, type InvalidateCache as db, type InvalidateCacheGetByOneOf as dc, type App as dd, type Page as de, type URI as df, type File as dg, type CustomTag as dh, type Pages as di, type URIs as dj, type CategoryMoved as dk, type ItemAddedToCategory as dl, type ItemsAddedToCategory as dm, type ItemRemovedFromCategory as dn, type ItemsRemovedFromCategory as dp, type ItemsArrangedInCategory as dq, type CreateCategoryRequest as dr, type CreateCategoryResponse as ds, type DuplicateHandleErrorData as dt, type GetCategoryRequest as du, type GetCategoryResponse as dv, type GetCategoryBySlugRequest as dw, type GetCategoryBySlugResponse as dx, type UpdateCategoryRequest as dy, type UpdateCategoryResponse as dz, type UpdateCategoryApplicationErrors as e, type DomainEvent as e$, type SearchDetails as e0, type AggregationData as e1, type ValueAggregationResult as e2, type RangeAggregationResult as e3, type NestedAggregationResults as e4, type NestedAggregationResultsResultOneOf as e5, type ValueResults as e6, type RangeResults as e7, type AggregationResultsScalarResult as e8, type NestedValueAggregationResult as e9, type BulkShowCategoriesRequest as eA, type BulkDeleteCategoriesRequest as eB, type BulkDeleteCategoriesResponse as eC, type BulkDeleteCategoriesResponseBulkCategoriesResult as eD, type BulkAddItemsToCategoryRequest as eE, type BulkItemsToCategoryResult as eF, type ItemReferenceMetadata as eG, type BulkAddItemToCategoriesRequest as eH, type BulkItemToCategoriesResult as eI, type BulkRemoveItemsFromCategoryRequest as eJ, type BulkRemoveItemFromCategoriesRequest as eK, type ListItemsInCategoryRequest as eL, type ListItemsInCategoryRequestPagingMethodOneOf as eM, type PagingMetadataV2 as eN, type ListCategoriesForItemRequest as eO, type ListCategoriesForItemsRequest as eP, type MapItemToCategories as eQ, type ListTreesRequest as eR, type MoveItemInCategoryRequest as eS, type MoveItemInCategoryResponse as eT, type SetArrangedItemsRequest as eU, type GetArrangedItemsRequest as eV, type BulkSetItemCategoriesRequest as eW, type BulkSetItemCategoriesResponse as eX, type GetCategoriesTreeRequest as eY, type GetCategoriesTreeResponse as eZ, type CategoryTreeNode as e_, type ValueResult as ea, type RangeResult as eb, type ScalarResult as ec, type NestedResultValue as ed, type NestedResultValueResultOneOf as ee, type Results as ef, type DateHistogramResult as eg, type GroupByValueResults as eh, type DateHistogramResults as ei, type NestedResults as ej, type AggregationResults as ek, type AggregationResultsResultOneOf as el, type DeprecatedSearchCategoriesWithOffsetRequest as em, type OffsetSearch as en, type OffsetSearchPagingMethodOneOf as eo, type Paging as ep, type DeprecatedSearchCategoriesWithOffsetResponse as eq, type PagingMetadata as er, type CountCategoriesRequest as es, type MoveCategoryRequest as et, type BulkUpdateCategoriesRequest as eu, type BulkCategoriesResult as ev, type ItemMetadata as ew, type ApplicationError as ex, type BulkActionMetadata as ey, type UpdateCategoryVisibilityRequest as ez, type CategorySearch as f, type InitialExpandedItemsWithLiterals as f$, type DomainEventBodyOneOf as f0, type EntityCreatedEvent as f1, type RestoreInfo as f2, type EntityUpdatedEvent as f3, type EntityDeletedEvent as f4, type ActionEvent as f5, type Empty as f6, type BulkCreateCategoriesForMigrationRequest as f7, type BulkCreateCategoriesForMigrationResponse as f8, type BulkAddItemsToCategoryForMigrationRequest as f9, type LineStyleWithLiterals as fA, type WidthWithLiterals as fB, type DividerDataAlignmentWithLiterals as fC, type ViewModeWithLiterals as fD, type LayoutTypeWithLiterals as fE, type OrientationWithLiterals as fF, type CropWithLiterals as fG, type ThumbnailsAlignmentWithLiterals as fH, type GIFTypeWithLiterals as fI, type SourceWithLiterals as fJ, type StylesPositionWithLiterals as fK, type MapTypeWithLiterals as fL, type ViewRoleWithLiterals as fM, type VoteRoleWithLiterals as fN, type PollLayoutTypeWithLiterals as fO, type PollLayoutDirectionWithLiterals as fP, type PollDesignBackgroundTypeWithLiterals as fQ, type DecorationTypeWithLiterals as fR, type FontTypeWithLiterals as fS, type ImageStylesPositionWithLiterals as fT, type AspectRatioWithLiterals as fU, type ResizingWithLiterals as fV, type PlacementWithLiterals as fW, type TypeWithLiterals as fX, type AlignmentWithLiterals as fY, type LayoutWithLiterals as fZ, type AppTypeWithLiterals as f_, type BulkAddItemsToCategoryForMigrationResponse as fa, type SetArrangedItemsForMigrationRequest as fb, type SetArrangedItemsForMigrationResponse as fc, type CatalogRollbackRequested as fd, type MessageEnvelope as fe, type IdentificationData as ff, type IdentificationDataIdOneOf as fg, type AccountInfo as fh, type BaseEventMetadata as fi, type EventMetadata as fj, type AccountInfoMetadata as fk, type GetCategoryBySlugOptions as fl, type CategoriesQueryResult as fm, type CategoryQuerySpec as fn, type CategorySearchSpec as fo, type ListItemsInCategoryOptionsPagingMethodOneOf as fp, type BulkSetItemCategoriesOptions as fq, utils as fr, type NodeTypeWithLiterals as fs, type BackgroundTypeWithLiterals as ft, type GradientTypeWithLiterals as fu, type WidthTypeWithLiterals as fv, type PluginContainerDataAlignmentWithLiterals as fw, type ButtonDataTypeWithLiterals as fx, type TargetWithLiterals as fy, type TextAlignmentWithLiterals as fz, type SearchCategoriesResponse as g, type DirectionWithLiterals as g0, type VerticalAlignmentWithLiterals as g1, type NullValueWithLiterals as g2, type ImageScalingScalingWithLiterals as g3, type ImagePositionWithLiterals as g4, type OriginWithLiterals as g5, type BannerPositionWithLiterals as g6, type LayoutDataBackgroundTypeWithLiterals as g7, type BackdropTypeWithLiterals as g8, type VerticalAlignmentAlignmentWithLiterals as g9, onCategoryMoved as gA, onCategoryCreated as gB, onCategoryDeleted as gC, onCategoryItemAddedToCategory as gD, onCategoryItemRemovedFromCategory as gE, onCategoryItemsArrangedInCategory as gF, onCategoryUpdated as gG, createCategory as gH, getCategory as gI, updateCategory as gJ, deleteCategory as gK, queryCategories as gL, countCategories as gM, moveCategory as gN, bulkUpdateCategories as gO, updateCategoryVisibility as gP, bulkShowCategories as gQ, bulkAddItemsToCategory as gR, bulkAddItemToCategories as gS, bulkRemoveItemsFromCategory as gT, bulkRemoveItemFromCategories as gU, listItemsInCategory as gV, listCategoriesForItem as gW, listCategoriesForItems as gX, listTrees as gY, setArrangedItems as gZ, getArrangedItems as g_, type ResponsivenessBehaviourWithLiterals as ga, type DesignTargetWithLiterals as gb, type ScalingWithLiterals as gc, type ImagePositionPositionWithLiterals as gd, type CardDataBackgroundTypeWithLiterals as ge, type ListStyleWithLiterals as gf, type IndentationWithLiterals as gg, type SmartBlockDataTypeWithLiterals as gh, type ColumnSizeWithLiterals as gi, type SingleEntityOpsRequestedFieldsWithLiterals as gj, type SortOrderWithLiterals as gk, type RequestedFieldsWithLiterals as gl, type SortTypeWithLiterals as gm, type SortDirectionWithLiterals as gn, type MissingValuesWithLiterals as go, type ScalarTypeWithLiterals as gp, type NestedAggregationTypeWithLiterals as gq, type IntervalWithLiterals as gr, type AggregationTypeWithLiterals as gs, type ModeWithLiterals as gt, type PositionWithLiterals as gu, type MoveItemInCategoryRequestPositionWithLiterals as gv, type WebhookIdentityTypeWithLiterals as gw, type BulkSetItemCategoriesApplicationErrors as gx, type CommonQueryWithEntityContext as gy, type CommonSearchWithEntityContext as gz, 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 };
5953
+ 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 };
@@ -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-qBO935iu.js';
3
- export { fh as AccountInfo, fk as AccountInfoMetadata, f5 as ActionEvent, dQ as Aggregation, e1 as AggregationData, dR as AggregationKindOneOf, ek as AggregationResults, el as AggregationResultsResultOneOf, e8 as AggregationResultsScalarResult, b8 as AggregationType, gs as AggregationTypeWithLiterals, aE as Alignment, fY as AlignmentWithLiterals, cm as AnchorData, dd as App, ct as AppEmbedData, cu as AppEmbedDataAppDataOneOf, aG as AppType, f_ as AppTypeWithLiterals, ex as ApplicationError, aA as AspectRatio, fU as AspectRatioWithLiterals, cO as AudioData, cX as Backdrop, aQ as BackdropType, g8 as BackdropTypeWithLiterals, bt as Background, cb as BackgroundGradient, d1 as BackgroundImage, a9 as BackgroundType, ft as BackgroundTypeWithLiterals, cV as Banner, aO as BannerPosition, g6 as BannerPositionWithLiterals, fi as BaseEventMetadata, cR as BlockquoteData, cv as BookingData, br as Border, cL as BorderColors, cM as BorderWidths, be as Breadcrumb, bd as BreadcrumbsInfo, ey as BulkActionMetadata, eH as BulkAddItemToCategoriesRequest, f9 as BulkAddItemsToCategoryForMigrationRequest, fa as BulkAddItemsToCategoryForMigrationResponse, eE as BulkAddItemsToCategoryRequest, ev as BulkCategoriesResult, f7 as BulkCreateCategoriesForMigrationRequest, f8 as BulkCreateCategoriesForMigrationResponse, eB as BulkDeleteCategoriesRequest, eC as BulkDeleteCategoriesResponse, eD as BulkDeleteCategoriesResponseBulkCategoriesResult, eI as BulkItemToCategoriesResult, eF as BulkItemsToCategoryResult, eK as BulkRemoveItemFromCategoriesRequest, eJ as BulkRemoveItemsFromCategoryRequest, gx as BulkSetItemCategoriesApplicationErrors, fq as BulkSetItemCategoriesOptions, eW as BulkSetItemCategoriesRequest, eX as BulkSetItemCategoriesResponse, eA as BulkShowCategoriesRequest, eu as BulkUpdateCategoriesRequest, cQ as BulletedListData, bo as ButtonData, ad as ButtonDataType, fx as ButtonDataTypeWithLiterals, cx as ButtonStyles, cS as CaptionData, c$ as CardData, d0 as CardDataBackground, aW as CardDataBackgroundType, ge as CardDataBackgroundTypeWithLiterals, cA as CardStyles, fd as CatalogRollbackRequested, fm as CategoriesQueryResult, dk as CategoryMoved, fn as CategoryQuerySpec, fo as CategorySearchSpec, e_ as CategoryTreeNode, cK as CellStyle, d5 as CheckboxListData, bD as CodeBlockData, cG as CollapsibleListData, cn as ColorData, bs as Colors, a_ as ColumnSize, gi as ColumnSizeWithLiterals, gy as CommonQueryWithEntityContext, gz as CommonSearchWithEntityContext, dM as CompactCategory, es as CountCategoriesRequest, dr as CreateCategoryRequest, ds as CreateCategoryResponse, am as Crop, fG as CropWithLiterals, dG as CursorPaging, dI as CursorPagingMetadata, dD as CursorQuery, dE as CursorQueryPagingMethodOneOf, dO as CursorSearch, dP as CursorSearchPagingMethodOneOf, dJ as Cursors, dh as CustomTag, dY as DateHistogramAggregation, eg as DateHistogramResult, ei as DateHistogramResults, ck as Decoration, cl as DecorationDataOneOf, ax as DecorationType, fR as DecorationTypeWithLiterals, dA as DeleteCategoryRequest, dB as DeleteCategoryResponse, em as DeprecatedSearchCategoriesWithOffsetRequest, eq as DeprecatedSearchCategoriesWithOffsetResponse, ci as Design, aT as DesignTarget, gb as DesignTargetWithLiterals, cI as Dimensions, aI as Direction, g0 as DirectionWithLiterals, bF as DividerData, ai as DividerDataAlignment, fC as DividerDataAlignmentWithLiterals, d8 as DocumentStyle, e$ as DomainEvent, f0 as DomainEventBodyOneOf, dt as DuplicateHandleErrorData, cE as EmbedData, f6 as Empty, f1 as EntityCreatedEvent, f4 as EntityDeletedEvent, f3 as EntityUpdatedEvent, cw as EventData, fj as EventMetadata, da as ExtendedFields, dg as File, bG as FileData, bH as FileSource, bI as FileSourceDataOneOf, cs as FontFamilyData, cq as FontSizeData, ay as FontType, fS as FontTypeWithLiterals, bV as GIF, bU as GIFData, ao as GIFType, fI as GIFTypeWithLiterals, bK as GalleryData, bQ as GalleryOptions, bR as GalleryOptionsLayout, eV as GetArrangedItemsRequest, eY as GetCategoriesTreeRequest, eZ as GetCategoriesTreeResponse, fl as GetCategoryBySlugOptions, dw as GetCategoryBySlugRequest, dx as GetCategoryBySlugResponse, du as GetCategoryRequest, dv as GetCategoryResponse, bp as Gradient, aa as GradientType, fu as GradientTypeWithLiterals, eh as GroupByValueResults, bX as HTMLData, bY as HTMLDataDataOneOf, bW as HeadingData, by as Height, ff as IdentificationData, fg as IdentificationDataIdOneOf, bM as Image, bZ as ImageData, b$ as ImageDataStyles, aM as ImagePosition, aV as ImagePositionPosition, gd as ImagePositionPositionWithLiterals, g4 as ImagePositionWithLiterals, aL as ImageScalingScaling, g3 as ImageScalingScalingWithLiterals, cy as ImageStyles, az as ImageStylesPosition, fT as ImageStylesPositionWithLiterals, dT as IncludeMissingValuesOptions, aY as Indentation, gg as IndentationWithLiterals, aH as InitialExpandedItems, f$ as InitialExpandedItemsWithLiterals, b7 as Interval, gr as IntervalWithLiterals, db as InvalidateCache, dc as InvalidateCacheGetByOneOf, bO as Item, dl as ItemAddedToCategory, bP as ItemDataOneOf, ew as ItemMetadata, eG as ItemReferenceMetadata, dn as ItemRemovedFromCategory, bS as ItemStyle, dm as ItemsAddedToCategory, dq as ItemsArrangedInCategory, dp as ItemsRemovedFromCategory, bh as Keyword, aF as Layout, cY as LayoutCellData, cT as LayoutData, cW as LayoutDataBackground, cU as LayoutDataBackgroundImage, aP as LayoutDataBackgroundType, g7 as LayoutDataBackgroundTypeWithLiterals, ak as LayoutType, fE as LayoutTypeWithLiterals, fZ as LayoutWithLiterals, ag as LineStyle, fA as LineStyleWithLiterals, bA as Link, co as LinkData, bB as LinkDataOneOf, c0 as LinkPreviewData, c1 as LinkPreviewDataStyles, eO as ListCategoriesForItemRequest, eP as ListCategoriesForItemsRequest, dK as ListCompactCategoriesByIdsRequest, dL as ListCompactCategoriesByIdsResponse, d6 as ListItemNodeData, fp as ListItemsInCategoryOptionsPagingMethodOneOf, eL as ListItemsInCategoryRequest, eM as ListItemsInCategoryRequestPagingMethodOneOf, aX as ListStyle, gf as ListStyleWithLiterals, eR as ListTreesRequest, cN as ListValue, c2 as MapData, eQ as MapItemToCategories, c3 as MapSettings, ar as MapType, fL as MapTypeWithLiterals, bL as Media, cp as MentionData, fe as MessageEnvelope, d7 as Metadata, b4 as MissingValues, go as MissingValuesWithLiterals, b9 as Mode, gt as ModeWithLiterals, et as MoveCategoryRequest, eS as MoveItemInCategoryRequest, bb as MoveItemInCategoryRequestPosition, gv as MoveItemInCategoryRequestPositionWithLiterals, eT as MoveItemInCategoryResponse, d$ as NestedAggregation, dZ as NestedAggregationItem, d_ as NestedAggregationItemKindOneOf, e4 as NestedAggregationResults, e5 as NestedAggregationResultsResultOneOf, b6 as NestedAggregationType, gq as NestedAggregationTypeWithLiterals, ed as NestedResultValue, ee as NestedResultValueResultOneOf, ej as NestedResults, e9 as NestedValueAggregationResult, bl as Node, bm as NodeDataOneOf, bn as NodeStyle, a8 as NodeType, fs as NodeTypeWithLiterals, aK as NullValue, g2 as NullValueWithLiterals, cF as Oembed, en as OffsetSearch, eo as OffsetSearchPagingMethodOneOf, c7 as Option, cf as OptionDesign, ca as OptionLayout, cP as OrderedListData, al as Orientation, fF as OrientationWithLiterals, aN as Origin, g5 as OriginWithLiterals, bJ as PDFSettings, de as Page, di as Pages, ep as Paging, er as PagingMetadata, eN as PagingMetadataV2, c4 as ParagraphData, bf as ParentCategory, c6 as Permissions, aC as Placement, fW as PlacementWithLiterals, cD as PlaybackOptions, bu as PluginContainerData, ac as PluginContainerDataAlignment, fw as PluginContainerDataAlignmentWithLiterals, bv as PluginContainerDataWidth, bw as PluginContainerDataWidthDataOneOf, cg as Poll, c5 as PollData, ch as PollDataLayout, ce as PollDesign, cc as PollDesignBackground, cd as PollDesignBackgroundBackgroundOneOf, aw as PollDesignBackgroundType, fQ as PollDesignBackgroundTypeWithLiterals, c9 as PollLayout, av as PollLayoutDirection, fP as PollLayoutDirectionWithLiterals, au as PollLayoutType, fO as PollLayoutTypeWithLiterals, c8 as PollSettings, ba as Position, gu as PositionWithLiterals, cB as PricingData, dC as QueryCategoriesRequest, dH as QueryCategoriesResponse, dW as RangeAggregation, e3 as RangeAggregationResult, dS as RangeBucket, eb as RangeResult, e7 as RangeResults, bC as Rel, b1 as RequestedFields, gl as RequestedFieldsWithLiterals, aB as Resizing, fV as ResizingWithLiterals, aS as ResponsivenessBehaviour, ga as ResponsivenessBehaviourWithLiterals, f2 as RestoreInfo, ef as Results, cz as RibbonStyles, bk as RichContent, dX as ScalarAggregation, ec as ScalarResult, b5 as ScalarType, gp as ScalarTypeWithLiterals, aU as Scaling, gc as ScalingWithLiterals, dN as SearchCategoriesRequest, e0 as SearchDetails, bg as SeoSchema, fb as SetArrangedItemsForMigrationRequest, fc as SetArrangedItemsForMigrationResponse, eU as SetArrangedItemsRequest, bj as Settings, cZ as ShapeData, c_ as ShapeDataStyles, a$ as SingleEntityOpsRequestedFields, gj as SingleEntityOpsRequestedFieldsWithLiterals, d4 as SmartBlockCellData, d3 as SmartBlockData, aZ as SmartBlockDataType, gh as SmartBlockDataTypeWithLiterals, b3 as SortDirection, gn as SortDirectionWithLiterals, b0 as SortOrder, gk as SortOrderWithLiterals, b2 as SortType, gm as SortTypeWithLiterals, dF as Sorting, ap as Source, fJ as SourceWithLiterals, bx as Spoiler, cr as SpoilerData, bq as Stop, bz as Styles, b_ as StylesBorder, aq as StylesPosition, fK as StylesPositionWithLiterals, cJ as TableCellData, cH as TableData, bi as Tag, ae as Target, fy as TargetWithLiterals, af as TextAlignment, fz as TextAlignmentWithLiterals, cj as TextData, d9 as TextNodeStyle, bE as TextStyle, bT as Thumbnails, an as ThumbnailsAlignment, fH as ThumbnailsAlignmentWithLiterals, d2 as TocData, aD as Type, fX as TypeWithLiterals, df as URI, dj as URIs, dy as UpdateCategoryRequest, dz as UpdateCategoryResponse, ez as UpdateCategoryVisibilityRequest, dU as ValueAggregation, dV as ValueAggregationOptionsOneOf, e2 as ValueAggregationResult, ea as ValueResult, e6 as ValueResults, aJ as VerticalAlignment, aR as VerticalAlignmentAlignment, g9 as VerticalAlignmentAlignmentWithLiterals, g1 as VerticalAlignmentWithLiterals, bN as Video, cC as VideoData, aj as ViewMode, fD as ViewModeWithLiterals, as as ViewRole, fM as ViewRoleWithLiterals, at as VoteRole, fN as VoteRoleWithLiterals, bc as WebhookIdentityType, gw as WebhookIdentityTypeWithLiterals, ah as Width, ab as WidthType, fv as WidthTypeWithLiterals, fB as WidthWithLiterals, fr as utils } from './categories-v1-category-categories.universal-qBO935iu.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-BqSfFA2o.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-BqSfFA2o.js';
4
4
 
5
5
  declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
6
6
  interface CreateCategorySignature {
@@ -81,6 +81,7 @@ __export(index_exports, {
81
81
  TextAlignment: () => TextAlignment,
82
82
  ThumbnailsAlignment: () => ThumbnailsAlignment,
83
83
  Type: () => Type,
84
+ Variant: () => Variant,
84
85
  VerticalAlignment: () => VerticalAlignment,
85
86
  VerticalAlignmentAlignment: () => VerticalAlignmentAlignment,
86
87
  ViewMode: () => ViewMode,
@@ -2545,6 +2546,7 @@ var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
2545
2546
  DecorationType2["SUPERSCRIPT"] = "SUPERSCRIPT";
2546
2547
  DecorationType2["SUBSCRIPT"] = "SUBSCRIPT";
2547
2548
  DecorationType2["FONT_FAMILY"] = "FONT_FAMILY";
2549
+ DecorationType2["SKETCH"] = "SKETCH";
2548
2550
  return DecorationType2;
2549
2551
  })(DecorationType || {});
2550
2552
  var FontType = /* @__PURE__ */ ((FontType2) => {
@@ -2552,6 +2554,15 @@ var FontType = /* @__PURE__ */ ((FontType2) => {
2552
2554
  FontType2["EM"] = "EM";
2553
2555
  return FontType2;
2554
2556
  })(FontType || {});
2557
+ var Variant = /* @__PURE__ */ ((Variant2) => {
2558
+ Variant2["UNDERLINE"] = "UNDERLINE";
2559
+ Variant2["BOX"] = "BOX";
2560
+ Variant2["CIRCLE"] = "CIRCLE";
2561
+ Variant2["HIGHLIGHT"] = "HIGHLIGHT";
2562
+ Variant2["STRIKETHROUGH"] = "STRIKETHROUGH";
2563
+ Variant2["CROSSED_OFF"] = "CROSSED_OFF";
2564
+ return Variant2;
2565
+ })(Variant || {});
2555
2566
  var ImageStylesPosition = /* @__PURE__ */ ((ImageStylesPosition2) => {
2556
2567
  ImageStylesPosition2["START"] = "START";
2557
2568
  ImageStylesPosition2["END"] = "END";
@@ -4626,6 +4637,7 @@ var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(
4626
4637
  TextAlignment,
4627
4638
  ThumbnailsAlignment,
4628
4639
  Type,
4640
+ Variant,
4629
4641
  VerticalAlignment,
4630
4642
  VerticalAlignmentAlignment,
4631
4643
  ViewMode,