@wix/auto_sdk_categories_categories 1.0.116 → 1.0.117

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-d2W58_oM.d.ts → categories-v1-category-categories.universal-B3v_Opfd.d.ts} +33 -6
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +5 -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 +5 -0
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +33 -6
  9. package/build/cjs/meta.js +5 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{categories-v1-category-categories.universal-d2W58_oM.d.mts → categories-v1-category-categories.universal-B3v_Opfd.d.mts} +33 -6
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +5 -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 +5 -0
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +33 -6
  19. package/build/es/meta.mjs +5 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{categories-v1-category-categories.universal-CYmiOR-m.d.ts → categories-v1-category-categories.universal-B8tqONPG.d.ts} +33 -6
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +5 -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 +5 -0
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +33 -6
  29. package/build/internal/cjs/meta.js +5 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{categories-v1-category-categories.universal-CYmiOR-m.d.mts → categories-v1-category-categories.universal-B8tqONPG.d.mts} +33 -6
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +5 -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 +5 -0
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +33 -6
  39. package/build/internal/es/meta.mjs +5 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -302,6 +302,10 @@ interface Node extends NodeDataOneOf {
302
302
  smartBlockData?: SmartBlockData;
303
303
  /** Data for a smart block cell node. */
304
304
  smartBlockCellData?: SmartBlockCellData;
305
+ /** Data for a checkbox list node. */
306
+ checkboxListData?: CheckboxListData;
307
+ /** Data for a list item node. */
308
+ listItemData?: ListItemNodeData;
305
309
  /** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
306
310
  type?: NodeTypeWithLiterals;
307
311
  /** Node ID. */
@@ -379,6 +383,10 @@ interface NodeDataOneOf {
379
383
  smartBlockData?: SmartBlockData;
380
384
  /** Data for a smart block cell node. */
381
385
  smartBlockCellData?: SmartBlockCellData;
386
+ /** Data for a checkbox list node. */
387
+ checkboxListData?: CheckboxListData;
388
+ /** Data for a list item node. */
389
+ listItemData?: ListItemNodeData;
382
390
  }
383
391
  declare enum NodeType {
384
392
  PARAGRAPH = "PARAGRAPH",
@@ -419,10 +427,11 @@ declare enum NodeType {
419
427
  CARD = "CARD",
420
428
  TOC = "TOC",
421
429
  SMART_BLOCK = "SMART_BLOCK",
422
- SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
430
+ SMART_BLOCK_CELL = "SMART_BLOCK_CELL",
431
+ CHECKBOX_LIST = "CHECKBOX_LIST"
423
432
  }
424
433
  /** @enumType */
425
- type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD' | 'TOC' | 'SMART_BLOCK' | 'SMART_BLOCK_CELL';
434
+ type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD' | 'TOC' | 'SMART_BLOCK' | 'SMART_BLOCK_CELL' | 'CHECKBOX_LIST';
426
435
  interface NodeStyle {
427
436
  /** The top padding value in pixels. */
428
437
  paddingTop?: string | null;
@@ -2425,10 +2434,18 @@ declare enum SmartBlockDataType {
2425
2434
  /** Star rating display with stars and a numeric value per cell. */
2426
2435
  STAR_RATING = "STAR_RATING",
2427
2436
  /** Outlined boxes with decorative quote glyphs at the top-left and bottom-right corners. */
2428
- QUOTE_BOXES = "QUOTE_BOXES"
2437
+ QUOTE_BOXES = "QUOTE_BOXES",
2438
+ /** Donut/ring with numbered annular-sector segments; cell text labels sit outside the ring. */
2439
+ CIRCLE = "CIRCLE",
2440
+ /** Hierarchical pyramid where each cell renders as a horizontal slice (apex at top, base at bottom) with the cell number or shape centered inside; text content sits beside (desktop) or below (mobile) the pyramid. */
2441
+ PYRAMID = "PYRAMID",
2442
+ /** Cells render a horizontal bar whose width scales with cell index, creating a staircase pattern; bar carries the cell number or a custom shape. */
2443
+ STAIRCASE = "STAIRCASE",
2444
+ /** Hierarchical funnel where each cell renders as a horizontal slice (wide at top, narrowing toward the bottom) with the cell number or shape centered inside; text content sits beside (desktop) or below (mobile) the funnel. */
2445
+ VERTICAL_FUNNEL = "VERTICAL_FUNNEL"
2429
2446
  }
2430
2447
  /** @enumType */
2431
- type SmartBlockDataTypeWithLiterals = SmartBlockDataType | 'SOLID_BOXES' | 'NUMBERED_BOXES' | 'STATS' | 'CIRCLE_STATS' | 'SOLID_BOXES_ALTERNATING' | 'SOLID_JOINED_BOXES' | 'SIDE_LINE_TEXT' | 'TOP_LINE_TEXT' | 'OUTLINE_BOXES_WITH_TOP_CIRCLE' | 'BIG_BULLETS' | 'SMALL_BULLETS' | 'ARROW_BULLETS' | 'PROCESS_STEPS' | 'BAR_STATS' | 'TIMELINE' | 'MINIMAL_TIMELINE' | 'PILLS' | 'STAR_RATING' | 'QUOTE_BOXES';
2448
+ type SmartBlockDataTypeWithLiterals = SmartBlockDataType | 'SOLID_BOXES' | 'NUMBERED_BOXES' | 'STATS' | 'CIRCLE_STATS' | 'SOLID_BOXES_ALTERNATING' | 'SOLID_JOINED_BOXES' | 'SIDE_LINE_TEXT' | 'TOP_LINE_TEXT' | 'OUTLINE_BOXES_WITH_TOP_CIRCLE' | 'BIG_BULLETS' | 'SMALL_BULLETS' | 'ARROW_BULLETS' | 'PROCESS_STEPS' | 'BAR_STATS' | 'TIMELINE' | 'MINIMAL_TIMELINE' | 'PILLS' | 'STAR_RATING' | 'QUOTE_BOXES' | 'CIRCLE' | 'PYRAMID' | 'STAIRCASE' | 'VERTICAL_FUNNEL';
2432
2449
  /** Column size controlling how many cells appear per row. */
2433
2450
  declare enum ColumnSize {
2434
2451
  /** Up to 4 cells in a row. */
@@ -2475,6 +2492,16 @@ interface SmartBlockCellData {
2475
2492
  */
2476
2493
  shapeColor?: string | null;
2477
2494
  }
2495
+ interface CheckboxListData {
2496
+ /** Indentation level from 0-4. */
2497
+ indentation?: number;
2498
+ /** Offset level from 0-4. */
2499
+ offset?: number | null;
2500
+ }
2501
+ interface ListItemNodeData {
2502
+ /** Checkbox list item state. Defaults to `false`. */
2503
+ checked?: boolean | null;
2504
+ }
2478
2505
  interface Metadata {
2479
2506
  /** Schema version. */
2480
2507
  version?: number;
@@ -5277,7 +5304,7 @@ declare const utils: {
5277
5304
  query: {
5278
5305
  QueryBuilder: () => _wix_sdk_types.QueryBuilder<Category, CategoryQuerySpec, CategoryQuery>;
5279
5306
  Filter: _wix_sdk_types.FilterFactory<Category, CategoryQuerySpec>;
5280
- Sort: _wix_sdk_types.SortFactory<CategoryQuerySpec>;
5307
+ Sort: _wix_sdk_types.SortFactory<CategoryQuerySpec>; /** Data for an underline decoration. Defaults to `true`. */
5281
5308
  };
5282
5309
  search: {
5283
5310
  SearchBuilder: () => _wix_sdk_types.SearchBuilder<Category, CategorySearchSpec, CategorySearch>;
@@ -5883,4 +5910,4 @@ interface BulkSetItemCategoriesOptions {
5883
5910
  treeReference: TreeReference;
5884
5911
  }
5885
5912
 
5886
- 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 AggregationData as d$, type CardDataBackground as d0, type BackgroundImage as d1, type TocData as d2, type SmartBlockData as d3, type SmartBlockCellData as d4, type Metadata as d5, type DocumentStyle as d6, type TextNodeStyle as d7, type ExtendedFields as d8, type InvalidateCache as d9, type QueryCategoriesRequest as dA, type CursorQuery as dB, type CursorQueryPagingMethodOneOf as dC, type Sorting as dD, type CursorPaging as dE, type QueryCategoriesResponse as dF, type CursorPagingMetadata as dG, type Cursors as dH, type ListCompactCategoriesByIdsRequest as dI, type ListCompactCategoriesByIdsResponse as dJ, type CompactCategory as dK, type SearchCategoriesRequest as dL, type CursorSearch as dM, type CursorSearchPagingMethodOneOf as dN, type Aggregation as dO, type AggregationKindOneOf as dP, type RangeBucket as dQ, type IncludeMissingValuesOptions as dR, type ValueAggregation as dS, type ValueAggregationOptionsOneOf as dT, type RangeAggregation as dU, type ScalarAggregation as dV, type DateHistogramAggregation as dW, type NestedAggregationItem as dX, type NestedAggregationItemKindOneOf as dY, type NestedAggregation as dZ, type SearchDetails as d_, type InvalidateCacheGetByOneOf as da, type App as db, type Page as dc, type URI as dd, type File as de, type CustomTag as df, type Pages as dg, type URIs as dh, type CategoryMoved as di, type ItemAddedToCategory as dj, type ItemsAddedToCategory as dk, type ItemRemovedFromCategory as dl, type ItemsRemovedFromCategory as dm, type ItemsArrangedInCategory as dn, type CreateCategoryRequest as dp, type CreateCategoryResponse as dq, type DuplicateHandleErrorData as dr, type GetCategoryRequest as ds, type GetCategoryResponse as dt, type GetCategoryBySlugRequest as du, type GetCategoryBySlugResponse as dv, type UpdateCategoryRequest as dw, type UpdateCategoryResponse as dx, type DeleteCategoryRequest as dy, type DeleteCategoryResponse as dz, type UpdateCategoryApplicationErrors as e, type EntityCreatedEvent as e$, type ValueAggregationResult as e0, type RangeAggregationResult as e1, type NestedAggregationResults as e2, type NestedAggregationResultsResultOneOf as e3, type ValueResults as e4, type RangeResults as e5, type AggregationResultsScalarResult as e6, type NestedValueAggregationResult as e7, type ValueResult as e8, type RangeResult as e9, type BulkDeleteCategoriesResponse as eA, type BulkDeleteCategoriesResponseBulkCategoriesResult as eB, type BulkAddItemsToCategoryRequest as eC, type BulkItemsToCategoryResult as eD, type ItemReferenceMetadata as eE, type BulkAddItemToCategoriesRequest as eF, type BulkItemToCategoriesResult as eG, type BulkRemoveItemsFromCategoryRequest as eH, type BulkRemoveItemFromCategoriesRequest as eI, type ListItemsInCategoryRequest as eJ, type ListItemsInCategoryRequestPagingMethodOneOf as eK, type PagingMetadataV2 as eL, type ListCategoriesForItemRequest as eM, type ListCategoriesForItemsRequest as eN, type MapItemToCategories as eO, type ListTreesRequest as eP, type MoveItemInCategoryRequest as eQ, type MoveItemInCategoryResponse as eR, type SetArrangedItemsRequest as eS, type GetArrangedItemsRequest as eT, type BulkSetItemCategoriesRequest as eU, type BulkSetItemCategoriesResponse as eV, type GetCategoriesTreeRequest as eW, type GetCategoriesTreeResponse as eX, type CategoryTreeNode as eY, type DomainEvent as eZ, type DomainEventBodyOneOf as e_, type ScalarResult as ea, type NestedResultValue as eb, type NestedResultValueResultOneOf as ec, type Results as ed, type DateHistogramResult as ee, type GroupByValueResults as ef, type DateHistogramResults as eg, type NestedResults as eh, type AggregationResults as ei, type AggregationResultsResultOneOf as ej, type DeprecatedSearchCategoriesWithOffsetRequest as ek, type OffsetSearch as el, type OffsetSearchPagingMethodOneOf as em, type Paging as en, type DeprecatedSearchCategoriesWithOffsetResponse as eo, type PagingMetadata as ep, type CountCategoriesRequest as eq, type MoveCategoryRequest as er, type BulkUpdateCategoriesRequest as es, type BulkCategoriesResult as et, type ItemMetadata as eu, type ApplicationError as ev, type BulkActionMetadata as ew, type UpdateCategoryVisibilityRequest as ex, type BulkShowCategoriesRequest as ey, type BulkDeleteCategoriesRequest as ez, type CategorySearch as f, type VerticalAlignmentWithLiterals as f$, type RestoreInfo as f0, type EntityUpdatedEvent as f1, type EntityDeletedEvent as f2, type ActionEvent as f3, type Empty as f4, type BulkCreateCategoriesForMigrationRequest as f5, type BulkCreateCategoriesForMigrationResponse as f6, type BulkAddItemsToCategoryForMigrationRequest as f7, type BulkAddItemsToCategoryForMigrationResponse as f8, type SetArrangedItemsForMigrationRequest as f9, type DividerDataAlignmentWithLiterals as fA, type ViewModeWithLiterals as fB, type LayoutTypeWithLiterals as fC, type OrientationWithLiterals as fD, type CropWithLiterals as fE, type ThumbnailsAlignmentWithLiterals as fF, type GIFTypeWithLiterals as fG, type SourceWithLiterals as fH, type StylesPositionWithLiterals as fI, type MapTypeWithLiterals as fJ, type ViewRoleWithLiterals as fK, type VoteRoleWithLiterals as fL, type PollLayoutTypeWithLiterals as fM, type PollLayoutDirectionWithLiterals as fN, type PollDesignBackgroundTypeWithLiterals as fO, type DecorationTypeWithLiterals as fP, type FontTypeWithLiterals as fQ, type ImageStylesPositionWithLiterals as fR, type AspectRatioWithLiterals as fS, type ResizingWithLiterals as fT, type PlacementWithLiterals as fU, type TypeWithLiterals as fV, type AlignmentWithLiterals as fW, type LayoutWithLiterals as fX, type AppTypeWithLiterals as fY, type InitialExpandedItemsWithLiterals as fZ, type DirectionWithLiterals as f_, type SetArrangedItemsForMigrationResponse as fa, type CatalogRollbackRequested as fb, type MessageEnvelope as fc, type IdentificationData as fd, type IdentificationDataIdOneOf as fe, type AccountInfo as ff, type BaseEventMetadata as fg, type EventMetadata as fh, type AccountInfoMetadata as fi, type GetCategoryBySlugOptions as fj, type CategoriesQueryResult as fk, type CategoryQuerySpec as fl, type CategorySearchSpec as fm, type ListItemsInCategoryOptionsPagingMethodOneOf as fn, type BulkSetItemCategoriesOptions as fo, utils as fp, type NodeTypeWithLiterals as fq, type BackgroundTypeWithLiterals as fr, type GradientTypeWithLiterals as fs, type WidthTypeWithLiterals as ft, type PluginContainerDataAlignmentWithLiterals as fu, type ButtonDataTypeWithLiterals as fv, type TargetWithLiterals as fw, type TextAlignmentWithLiterals as fx, type LineStyleWithLiterals as fy, type WidthWithLiterals as fz, type SearchCategoriesResponse as g, type NullValueWithLiterals as g0, type ImageScalingScalingWithLiterals as g1, type ImagePositionWithLiterals as g2, type OriginWithLiterals as g3, type BannerPositionWithLiterals as g4, type LayoutDataBackgroundTypeWithLiterals as g5, type BackdropTypeWithLiterals as g6, type VerticalAlignmentAlignmentWithLiterals as g7, type ResponsivenessBehaviourWithLiterals as g8, type DesignTargetWithLiterals as g9, onCategoryDeleted as gA, onCategoryItemAddedToCategory as gB, onCategoryItemRemovedFromCategory as gC, onCategoryItemsArrangedInCategory as gD, onCategoryUpdated as gE, createCategory as gF, getCategory as gG, updateCategory as gH, deleteCategory as gI, queryCategories as gJ, countCategories as gK, moveCategory as gL, bulkUpdateCategories as gM, updateCategoryVisibility as gN, bulkShowCategories as gO, bulkAddItemsToCategory as gP, bulkAddItemToCategories as gQ, bulkRemoveItemsFromCategory as gR, bulkRemoveItemFromCategories as gS, listItemsInCategory as gT, listCategoriesForItem as gU, listCategoriesForItems as gV, listTrees as gW, setArrangedItems as gX, getArrangedItems as gY, type ScalingWithLiterals as ga, type ImagePositionPositionWithLiterals as gb, type CardDataBackgroundTypeWithLiterals as gc, type ListStyleWithLiterals as gd, type IndentationWithLiterals as ge, type SmartBlockDataTypeWithLiterals as gf, type ColumnSizeWithLiterals as gg, type SingleEntityOpsRequestedFieldsWithLiterals as gh, type SortOrderWithLiterals as gi, type RequestedFieldsWithLiterals as gj, type SortTypeWithLiterals as gk, type SortDirectionWithLiterals as gl, type MissingValuesWithLiterals as gm, type ScalarTypeWithLiterals as gn, type NestedAggregationTypeWithLiterals as go, type IntervalWithLiterals as gp, type AggregationTypeWithLiterals as gq, type ModeWithLiterals as gr, type PositionWithLiterals as gs, type MoveItemInCategoryRequestPositionWithLiterals as gt, type WebhookIdentityTypeWithLiterals as gu, type BulkSetItemCategoriesApplicationErrors as gv, type CommonQueryWithEntityContext as gw, type CommonSearchWithEntityContext as gx, onCategoryMoved as gy, onCategoryCreated 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 };
5913
+ 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 };
@@ -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-d2W58_oM.js';
3
- export { ff as AccountInfo, fi as AccountInfoMetadata, f3 as ActionEvent, dO as Aggregation, d$ as AggregationData, dP as AggregationKindOneOf, ei as AggregationResults, ej as AggregationResultsResultOneOf, e6 as AggregationResultsScalarResult, b8 as AggregationType, gq as AggregationTypeWithLiterals, aE as Alignment, fW as AlignmentWithLiterals, cm as AnchorData, db as App, ct as AppEmbedData, cu as AppEmbedDataAppDataOneOf, aG as AppType, fY as AppTypeWithLiterals, ev as ApplicationError, aA as AspectRatio, fS as AspectRatioWithLiterals, cO as AudioData, cX as Backdrop, aQ as BackdropType, g6 as BackdropTypeWithLiterals, bt as Background, cb as BackgroundGradient, d1 as BackgroundImage, a9 as BackgroundType, fr as BackgroundTypeWithLiterals, cV as Banner, aO as BannerPosition, g4 as BannerPositionWithLiterals, fg as BaseEventMetadata, cR as BlockquoteData, cv as BookingData, br as Border, cL as BorderColors, cM as BorderWidths, be as Breadcrumb, bd as BreadcrumbsInfo, ew as BulkActionMetadata, eF as BulkAddItemToCategoriesRequest, f7 as BulkAddItemsToCategoryForMigrationRequest, f8 as BulkAddItemsToCategoryForMigrationResponse, eC as BulkAddItemsToCategoryRequest, et as BulkCategoriesResult, f5 as BulkCreateCategoriesForMigrationRequest, f6 as BulkCreateCategoriesForMigrationResponse, ez as BulkDeleteCategoriesRequest, eA as BulkDeleteCategoriesResponse, eB as BulkDeleteCategoriesResponseBulkCategoriesResult, eG as BulkItemToCategoriesResult, eD as BulkItemsToCategoryResult, eI as BulkRemoveItemFromCategoriesRequest, eH as BulkRemoveItemsFromCategoryRequest, gv as BulkSetItemCategoriesApplicationErrors, fo as BulkSetItemCategoriesOptions, eU as BulkSetItemCategoriesRequest, eV as BulkSetItemCategoriesResponse, ey as BulkShowCategoriesRequest, es as BulkUpdateCategoriesRequest, cQ as BulletedListData, bo as ButtonData, ad as ButtonDataType, fv as ButtonDataTypeWithLiterals, cx as ButtonStyles, cS as CaptionData, c$ as CardData, d0 as CardDataBackground, aW as CardDataBackgroundType, gc as CardDataBackgroundTypeWithLiterals, cA as CardStyles, fb as CatalogRollbackRequested, fk as CategoriesQueryResult, di as CategoryMoved, fl as CategoryQuerySpec, fm as CategorySearchSpec, eY as CategoryTreeNode, cK as CellStyle, bD as CodeBlockData, cG as CollapsibleListData, cn as ColorData, bs as Colors, a_ as ColumnSize, gg as ColumnSizeWithLiterals, gw as CommonQueryWithEntityContext, gx as CommonSearchWithEntityContext, dK as CompactCategory, eq as CountCategoriesRequest, dp as CreateCategoryRequest, dq as CreateCategoryResponse, am as Crop, fE as CropWithLiterals, dE as CursorPaging, dG as CursorPagingMetadata, dB as CursorQuery, dC as CursorQueryPagingMethodOneOf, dM as CursorSearch, dN as CursorSearchPagingMethodOneOf, dH as Cursors, df as CustomTag, dW as DateHistogramAggregation, ee as DateHistogramResult, eg as DateHistogramResults, ck as Decoration, cl as DecorationDataOneOf, ax as DecorationType, fP as DecorationTypeWithLiterals, dy as DeleteCategoryRequest, dz as DeleteCategoryResponse, ek as DeprecatedSearchCategoriesWithOffsetRequest, eo as DeprecatedSearchCategoriesWithOffsetResponse, ci as Design, aT as DesignTarget, g9 as DesignTargetWithLiterals, cI as Dimensions, aI as Direction, f_ as DirectionWithLiterals, bF as DividerData, ai as DividerDataAlignment, fA as DividerDataAlignmentWithLiterals, d6 as DocumentStyle, eZ as DomainEvent, e_ as DomainEventBodyOneOf, dr as DuplicateHandleErrorData, cE as EmbedData, f4 as Empty, e$ as EntityCreatedEvent, f2 as EntityDeletedEvent, f1 as EntityUpdatedEvent, cw as EventData, fh as EventMetadata, d8 as ExtendedFields, de as File, bG as FileData, bH as FileSource, bI as FileSourceDataOneOf, cs as FontFamilyData, cq as FontSizeData, ay as FontType, fQ as FontTypeWithLiterals, bV as GIF, bU as GIFData, ao as GIFType, fG as GIFTypeWithLiterals, bK as GalleryData, bQ as GalleryOptions, bR as GalleryOptionsLayout, eT as GetArrangedItemsRequest, eW as GetCategoriesTreeRequest, eX as GetCategoriesTreeResponse, fj as GetCategoryBySlugOptions, du as GetCategoryBySlugRequest, dv as GetCategoryBySlugResponse, ds as GetCategoryRequest, dt as GetCategoryResponse, bp as Gradient, aa as GradientType, fs as GradientTypeWithLiterals, ef as GroupByValueResults, bX as HTMLData, bY as HTMLDataDataOneOf, bW as HeadingData, by as Height, fd as IdentificationData, fe as IdentificationDataIdOneOf, bM as Image, bZ as ImageData, b$ as ImageDataStyles, aM as ImagePosition, aV as ImagePositionPosition, gb as ImagePositionPositionWithLiterals, g2 as ImagePositionWithLiterals, aL as ImageScalingScaling, g1 as ImageScalingScalingWithLiterals, cy as ImageStyles, az as ImageStylesPosition, fR as ImageStylesPositionWithLiterals, dR as IncludeMissingValuesOptions, aY as Indentation, ge as IndentationWithLiterals, aH as InitialExpandedItems, fZ as InitialExpandedItemsWithLiterals, b7 as Interval, gp as IntervalWithLiterals, d9 as InvalidateCache, da as InvalidateCacheGetByOneOf, bO as Item, dj as ItemAddedToCategory, bP as ItemDataOneOf, eu as ItemMetadata, eE as ItemReferenceMetadata, dl as ItemRemovedFromCategory, bS as ItemStyle, dk as ItemsAddedToCategory, dn as ItemsArrangedInCategory, dm as ItemsRemovedFromCategory, bh as Keyword, aF as Layout, cY as LayoutCellData, cT as LayoutData, cW as LayoutDataBackground, cU as LayoutDataBackgroundImage, aP as LayoutDataBackgroundType, g5 as LayoutDataBackgroundTypeWithLiterals, ak as LayoutType, fC as LayoutTypeWithLiterals, fX as LayoutWithLiterals, ag as LineStyle, fy as LineStyleWithLiterals, bA as Link, co as LinkData, bB as LinkDataOneOf, c0 as LinkPreviewData, c1 as LinkPreviewDataStyles, eM as ListCategoriesForItemRequest, eN as ListCategoriesForItemsRequest, dI as ListCompactCategoriesByIdsRequest, dJ as ListCompactCategoriesByIdsResponse, fn as ListItemsInCategoryOptionsPagingMethodOneOf, eJ as ListItemsInCategoryRequest, eK as ListItemsInCategoryRequestPagingMethodOneOf, aX as ListStyle, gd as ListStyleWithLiterals, eP as ListTreesRequest, cN as ListValue, c2 as MapData, eO as MapItemToCategories, c3 as MapSettings, ar as MapType, fJ as MapTypeWithLiterals, bL as Media, cp as MentionData, fc as MessageEnvelope, d5 as Metadata, b4 as MissingValues, gm as MissingValuesWithLiterals, b9 as Mode, gr as ModeWithLiterals, er as MoveCategoryRequest, eQ as MoveItemInCategoryRequest, bb as MoveItemInCategoryRequestPosition, gt as MoveItemInCategoryRequestPositionWithLiterals, eR as MoveItemInCategoryResponse, dZ as NestedAggregation, dX as NestedAggregationItem, dY as NestedAggregationItemKindOneOf, e2 as NestedAggregationResults, e3 as NestedAggregationResultsResultOneOf, b6 as NestedAggregationType, go as NestedAggregationTypeWithLiterals, eb as NestedResultValue, ec as NestedResultValueResultOneOf, eh as NestedResults, e7 as NestedValueAggregationResult, bl as Node, bm as NodeDataOneOf, bn as NodeStyle, a8 as NodeType, fq as NodeTypeWithLiterals, aK as NullValue, g0 as NullValueWithLiterals, cF as Oembed, el as OffsetSearch, em as OffsetSearchPagingMethodOneOf, c7 as Option, cf as OptionDesign, ca as OptionLayout, cP as OrderedListData, al as Orientation, fD as OrientationWithLiterals, aN as Origin, g3 as OriginWithLiterals, bJ as PDFSettings, dc as Page, dg as Pages, en as Paging, ep as PagingMetadata, eL as PagingMetadataV2, c4 as ParagraphData, bf as ParentCategory, c6 as Permissions, aC as Placement, fU as PlacementWithLiterals, cD as PlaybackOptions, bu as PluginContainerData, ac as PluginContainerDataAlignment, fu 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, fO as PollDesignBackgroundTypeWithLiterals, c9 as PollLayout, av as PollLayoutDirection, fN as PollLayoutDirectionWithLiterals, au as PollLayoutType, fM as PollLayoutTypeWithLiterals, c8 as PollSettings, ba as Position, gs as PositionWithLiterals, cB as PricingData, dA as QueryCategoriesRequest, dF as QueryCategoriesResponse, dU as RangeAggregation, e1 as RangeAggregationResult, dQ as RangeBucket, e9 as RangeResult, e5 as RangeResults, bC as Rel, b1 as RequestedFields, gj as RequestedFieldsWithLiterals, aB as Resizing, fT as ResizingWithLiterals, aS as ResponsivenessBehaviour, g8 as ResponsivenessBehaviourWithLiterals, f0 as RestoreInfo, ed as Results, cz as RibbonStyles, bk as RichContent, dV as ScalarAggregation, ea as ScalarResult, b5 as ScalarType, gn as ScalarTypeWithLiterals, aU as Scaling, ga as ScalingWithLiterals, dL as SearchCategoriesRequest, d_ as SearchDetails, bg as SeoSchema, f9 as SetArrangedItemsForMigrationRequest, fa as SetArrangedItemsForMigrationResponse, eS as SetArrangedItemsRequest, bj as Settings, cZ as ShapeData, c_ as ShapeDataStyles, a$ as SingleEntityOpsRequestedFields, gh as SingleEntityOpsRequestedFieldsWithLiterals, d4 as SmartBlockCellData, d3 as SmartBlockData, aZ as SmartBlockDataType, gf as SmartBlockDataTypeWithLiterals, b3 as SortDirection, gl as SortDirectionWithLiterals, b0 as SortOrder, gi as SortOrderWithLiterals, b2 as SortType, gk as SortTypeWithLiterals, dD as Sorting, ap as Source, fH as SourceWithLiterals, bx as Spoiler, cr as SpoilerData, bq as Stop, bz as Styles, b_ as StylesBorder, aq as StylesPosition, fI as StylesPositionWithLiterals, cJ as TableCellData, cH as TableData, bi as Tag, ae as Target, fw as TargetWithLiterals, af as TextAlignment, fx as TextAlignmentWithLiterals, cj as TextData, d7 as TextNodeStyle, bE as TextStyle, bT as Thumbnails, an as ThumbnailsAlignment, fF as ThumbnailsAlignmentWithLiterals, d2 as TocData, aD as Type, fV as TypeWithLiterals, dd as URI, dh as URIs, dw as UpdateCategoryRequest, dx as UpdateCategoryResponse, ex as UpdateCategoryVisibilityRequest, dS as ValueAggregation, dT as ValueAggregationOptionsOneOf, e0 as ValueAggregationResult, e8 as ValueResult, e4 as ValueResults, aJ as VerticalAlignment, aR as VerticalAlignmentAlignment, g7 as VerticalAlignmentAlignmentWithLiterals, f$ as VerticalAlignmentWithLiterals, bN as Video, cC as VideoData, aj as ViewMode, fB as ViewModeWithLiterals, as as ViewRole, fK as ViewRoleWithLiterals, at as VoteRole, fL as VoteRoleWithLiterals, bc as WebhookIdentityType, gu as WebhookIdentityTypeWithLiterals, ah as Width, ab as WidthType, ft as WidthTypeWithLiterals, fz as WidthWithLiterals, fp as utils } from './categories-v1-category-categories.universal-d2W58_oM.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-B3v_Opfd.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-B3v_Opfd.js';
4
4
 
5
5
  declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
6
6
  interface CreateCategorySignature {
@@ -2375,6 +2375,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
2375
2375
  NodeType2["TOC"] = "TOC";
2376
2376
  NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
2377
2377
  NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
2378
+ NodeType2["CHECKBOX_LIST"] = "CHECKBOX_LIST";
2378
2379
  return NodeType2;
2379
2380
  })(NodeType || {});
2380
2381
  var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
@@ -2727,6 +2728,10 @@ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
2727
2728
  SmartBlockDataType2["PILLS"] = "PILLS";
2728
2729
  SmartBlockDataType2["STAR_RATING"] = "STAR_RATING";
2729
2730
  SmartBlockDataType2["QUOTE_BOXES"] = "QUOTE_BOXES";
2731
+ SmartBlockDataType2["CIRCLE"] = "CIRCLE";
2732
+ SmartBlockDataType2["PYRAMID"] = "PYRAMID";
2733
+ SmartBlockDataType2["STAIRCASE"] = "STAIRCASE";
2734
+ SmartBlockDataType2["VERTICAL_FUNNEL"] = "VERTICAL_FUNNEL";
2730
2735
  return SmartBlockDataType2;
2731
2736
  })(SmartBlockDataType || {});
2732
2737
  var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {