@wix/auto_sdk_categories_categories 1.0.106 → 1.0.107

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-HGXwX99O.d.ts → categories-v1-category-categories.universal-DAp47gfD.d.ts} +60 -5
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +96 -3
  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 +81 -2
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +61 -6
  9. package/build/cjs/meta.js +81 -2
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{categories-v1-category-categories.universal-HGXwX99O.d.mts → categories-v1-category-categories.universal-DAp47gfD.d.mts} +60 -5
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +94 -3
  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 +79 -2
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +61 -6
  19. package/build/es/meta.mjs +79 -2
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{categories-v1-category-categories.universal-CdzuCH4X.d.ts → categories-v1-category-categories.universal-D_41PGaH.d.ts} +60 -5
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +96 -3
  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 +81 -2
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +61 -6
  29. package/build/internal/cjs/meta.js +81 -2
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{categories-v1-category-categories.universal-CdzuCH4X.d.mts → categories-v1-category-categories.universal-D_41PGaH.d.mts} +60 -5
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +94 -3
  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 +79 -2
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +61 -6
  39. package/build/internal/es/meta.mjs +79 -2
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +4 -4
@@ -296,6 +296,8 @@ interface Node extends NodeDataOneOf {
296
296
  shapeData?: ShapeData;
297
297
  /** Data for a card node. */
298
298
  cardData?: CardData;
299
+ /** Data for a table of contents node. */
300
+ tocData?: TocData;
299
301
  /** 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. */
300
302
  type?: NodeTypeWithLiterals;
301
303
  /** Node ID. */
@@ -367,6 +369,8 @@ interface NodeDataOneOf {
367
369
  shapeData?: ShapeData;
368
370
  /** Data for a card node. */
369
371
  cardData?: CardData;
372
+ /** Data for a table of contents node. */
373
+ tocData?: TocData;
370
374
  }
371
375
  declare enum NodeType {
372
376
  PARAGRAPH = "PARAGRAPH",
@@ -404,10 +408,11 @@ declare enum NodeType {
404
408
  LAYOUT = "LAYOUT",
405
409
  LAYOUT_CELL = "LAYOUT_CELL",
406
410
  SHAPE = "SHAPE",
407
- CARD = "CARD"
411
+ CARD = "CARD",
412
+ TOC = "TOC"
408
413
  }
409
414
  /** @enumType */
410
- 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';
415
+ 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';
411
416
  interface NodeStyle {
412
417
  /** The top padding value in pixels. */
413
418
  paddingTop?: string | null;
@@ -1036,6 +1041,8 @@ interface HTMLData extends HTMLDataDataOneOf {
1036
1041
  * @deprecated
1037
1042
  */
1038
1043
  isAdsense?: boolean | null;
1044
+ /** The WixelWidget ID for AI_WIDGET source nodes. */
1045
+ widgetId?: string;
1039
1046
  /** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
1040
1047
  containerData?: PluginContainerData;
1041
1048
  /** The type of HTML code. */
@@ -1054,14 +1061,17 @@ interface HTMLDataDataOneOf {
1054
1061
  * @deprecated
1055
1062
  */
1056
1063
  isAdsense?: boolean | null;
1064
+ /** The WixelWidget ID for AI_WIDGET source nodes. */
1065
+ widgetId?: string;
1057
1066
  }
1058
1067
  declare enum Source {
1059
1068
  HTML = "HTML",
1060
1069
  ADSENSE = "ADSENSE",
1061
- AI = "AI"
1070
+ AI = "AI",
1071
+ AI_WIDGET = "AI_WIDGET"
1062
1072
  }
1063
1073
  /** @enumType */
1064
- type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
1074
+ type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI' | 'AI_WIDGET';
1065
1075
  interface ImageData {
1066
1076
  /** Styling for the image's container. */
1067
1077
  containerData?: PluginContainerData;
@@ -2289,6 +2299,51 @@ interface BackgroundImage {
2289
2299
  /** Position of background. Defaults to `CENTER`. */
2290
2300
  position?: ImagePositionPositionWithLiterals;
2291
2301
  }
2302
+ interface TocData {
2303
+ /** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
2304
+ includedHeadings?: number[];
2305
+ /** List style. Default: PLAIN. */
2306
+ listStyle?: ListStyleWithLiterals;
2307
+ /** Optional override for the font size in pixels. */
2308
+ fontSize?: number | null;
2309
+ /** Optional override for the vertical spacing between items in pixels. */
2310
+ itemSpacing?: number | null;
2311
+ /**
2312
+ * Optional override for the text color.
2313
+ * @format COLOR_HEX
2314
+ */
2315
+ color?: string | null;
2316
+ /** Indentation style. Default: NESTED. */
2317
+ indentation?: IndentationWithLiterals;
2318
+ }
2319
+ /** List style. */
2320
+ declare enum ListStyle {
2321
+ /** No markers (default) */
2322
+ PLAIN = "PLAIN",
2323
+ /** Numbered list */
2324
+ NUMBERED = "NUMBERED",
2325
+ /** Alphabetic letters */
2326
+ LETTERS = "LETTERS",
2327
+ /** Roman numerals */
2328
+ ROMAN = "ROMAN",
2329
+ /** Bulleted list */
2330
+ BULLETED = "BULLETED",
2331
+ /** Alphabetical index */
2332
+ ALPHABETICAL_INDEX = "ALPHABETICAL_INDEX",
2333
+ /** Alphabetical index (compact top-row only) */
2334
+ ALPHABETICAL_INDEX_COMPACT = "ALPHABETICAL_INDEX_COMPACT"
2335
+ }
2336
+ /** @enumType */
2337
+ type ListStyleWithLiterals = ListStyle | 'PLAIN' | 'NUMBERED' | 'LETTERS' | 'ROMAN' | 'BULLETED' | 'ALPHABETICAL_INDEX' | 'ALPHABETICAL_INDEX_COMPACT';
2338
+ /** Indentation style. */
2339
+ declare enum Indentation {
2340
+ /** Sub-headings indented under parents (default) */
2341
+ NESTED = "NESTED",
2342
+ /** All items at the same level */
2343
+ FLAT = "FLAT"
2344
+ }
2345
+ /** @enumType */
2346
+ type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
2292
2347
  interface Metadata {
2293
2348
  /** Schema version. */
2294
2349
  version?: number;
@@ -5637,4 +5692,4 @@ interface BulkSetItemCategoriesOptions {
5637
5692
  treeReference: TreeReference;
5638
5693
  }
5639
5694
 
5640
- 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, MissingValues 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, LayoutDataBackgroundType as aO, BackdropType as aP, VerticalAlignmentAlignment as aQ, ResponsivenessBehaviour as aR, DesignTarget as aS, Scaling as aT, ImagePositionPosition as aU, CardDataBackgroundType as aV, SingleEntityOpsRequestedFields as aW, SortOrder as aX, RequestedFields as aY, SortType as aZ, SortDirection 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 ParagraphData as b$, ScalarType as b0, NestedAggregationType as b1, Interval as b2, AggregationType as b3, Mode as b4, Position as b5, MoveItemInCategoryRequestPosition as b6, WebhookIdentityType as b7, type BreadcrumbsInfo as b8, type Breadcrumb as b9, type DividerData as bA, type FileData as bB, type FileSource as bC, type FileSourceDataOneOf as bD, type PDFSettings as bE, type GalleryData as bF, type Media as bG, type Image as bH, type Video as bI, type Item as bJ, type ItemDataOneOf as bK, type GalleryOptions as bL, type GalleryOptionsLayout as bM, type ItemStyle as bN, type Thumbnails as bO, type GIFData as bP, type GIF as bQ, type HeadingData as bR, type HTMLData as bS, type HTMLDataDataOneOf as bT, type ImageData as bU, type StylesBorder as bV, type ImageDataStyles as bW, type LinkPreviewData as bX, type LinkPreviewDataStyles as bY, type MapData as bZ, type MapSettings as b_, type ParentCategory as ba, type SeoSchema as bb, type Keyword as bc, type Tag as bd, type Settings as be, type RichContent as bf, type Node as bg, type NodeDataOneOf as bh, type NodeStyle as bi, type ButtonData as bj, type Gradient as bk, type Stop as bl, type Border as bm, type Colors as bn, type Background as bo, type PluginContainerData as bp, type PluginContainerDataWidth as bq, type PluginContainerDataWidthDataOneOf as br, type Spoiler as bs, type Height as bt, type Styles as bu, type Link as bv, type LinkDataOneOf as bw, type Rel as bx, type CodeBlockData as by, type TextStyle as bz, type CreateCategoryValidationErrors as c, type TextNodeStyle as c$, type PollData as c0, type Permissions as c1, type Option as c2, type PollSettings as c3, type PollLayout as c4, type OptionLayout as c5, type BackgroundGradient as c6, type PollDesignBackground as c7, type PollDesignBackgroundBackgroundOneOf as c8, type PollDesign as c9, type Oembed as cA, type CollapsibleListData as cB, type TableData as cC, type Dimensions as cD, type TableCellData as cE, type CellStyle as cF, type BorderColors as cG, type BorderWidths as cH, type ListValue as cI, type AudioData as cJ, type OrderedListData as cK, type BulletedListData as cL, type BlockquoteData as cM, type CaptionData as cN, type LayoutData as cO, type LayoutDataBackgroundImage as cP, type Banner as cQ, type LayoutDataBackground as cR, type Backdrop as cS, type LayoutCellData as cT, type ShapeData as cU, type ShapeDataStyles as cV, type CardData as cW, type CardDataBackground as cX, type BackgroundImage as cY, type Metadata as cZ, type DocumentStyle as c_, type OptionDesign as ca, type Poll as cb, type PollDataLayout as cc, type Design as cd, type TextData as ce, type Decoration as cf, type DecorationDataOneOf as cg, type AnchorData as ch, type ColorData as ci, type LinkData as cj, type MentionData as ck, type FontSizeData as cl, type SpoilerData as cm, type FontFamilyData as cn, type AppEmbedData as co, type AppEmbedDataAppDataOneOf as cp, type BookingData as cq, type EventData as cr, type ButtonStyles as cs, type ImageStyles as ct, type RibbonStyles as cu, type CardStyles as cv, type PricingData as cw, type VideoData as cx, type PlaybackOptions as cy, type EmbedData as cz, type UpdateCategoryOptions as d, type RangeResult as d$, type ExtendedFields as d0, type InvalidateCache as d1, type InvalidateCacheGetByOneOf as d2, type App as d3, type Page as d4, type URI as d5, type File as d6, type CustomTag as d7, type Pages as d8, type URIs as d9, type CompactCategory as dA, type SearchCategoriesRequest as dB, type CursorSearch as dC, type CursorSearchPagingMethodOneOf as dD, type Aggregation as dE, type AggregationKindOneOf as dF, type RangeBucket as dG, type IncludeMissingValuesOptions as dH, type ValueAggregation as dI, type ValueAggregationOptionsOneOf as dJ, type RangeAggregation as dK, type ScalarAggregation as dL, type DateHistogramAggregation as dM, type NestedAggregationItem as dN, type NestedAggregationItemKindOneOf as dO, type NestedAggregation as dP, type SearchDetails as dQ, type AggregationData as dR, type ValueAggregationResult as dS, type RangeAggregationResult as dT, type NestedAggregationResults as dU, type NestedAggregationResultsResultOneOf as dV, type ValueResults as dW, type RangeResults as dX, type AggregationResultsScalarResult as dY, type NestedValueAggregationResult as dZ, type ValueResult as d_, type CategoryMoved as da, type ItemAddedToCategory as db, type ItemsAddedToCategory as dc, type ItemRemovedFromCategory as dd, type ItemsRemovedFromCategory as de, type ItemsArrangedInCategory as df, type CreateCategoryRequest as dg, type CreateCategoryResponse as dh, type DuplicateHandleErrorData as di, type GetCategoryRequest as dj, type GetCategoryResponse as dk, type UpdateCategoryRequest as dl, type UpdateCategoryResponse as dm, type DeleteCategoryRequest as dn, type DeleteCategoryResponse as dp, type QueryCategoriesRequest as dq, type CursorQuery as dr, type CursorQueryPagingMethodOneOf as ds, type Sorting as dt, type CursorPaging as du, type QueryCategoriesResponse as dv, type CursorPagingMetadata as dw, type Cursors as dx, type ListCompactCategoriesByIdsRequest as dy, type ListCompactCategoriesByIdsResponse as dz, type UpdateCategoryApplicationErrors as e, type MessageEnvelope as e$, type ScalarResult as e0, type NestedResultValue as e1, type NestedResultValueResultOneOf as e2, type Results as e3, type DateHistogramResult as e4, type GroupByValueResults as e5, type DateHistogramResults as e6, type NestedResults as e7, type AggregationResults as e8, type AggregationResultsResultOneOf as e9, type ListItemsInCategoryRequestPagingMethodOneOf as eA, type PagingMetadataV2 as eB, type ListCategoriesForItemRequest as eC, type ListCategoriesForItemsRequest as eD, type MapItemToCategories as eE, type ListTreesRequest as eF, type MoveItemInCategoryRequest as eG, type MoveItemInCategoryResponse as eH, type SetArrangedItemsRequest as eI, type GetArrangedItemsRequest as eJ, type BulkSetItemCategoriesRequest as eK, type BulkSetItemCategoriesResponse as eL, type GetCategoriesTreeRequest as eM, type GetCategoriesTreeResponse as eN, type CategoryTreeNode as eO, type DomainEvent as eP, type DomainEventBodyOneOf as eQ, type EntityCreatedEvent as eR, type RestoreInfo as eS, type EntityUpdatedEvent as eT, type EntityDeletedEvent as eU, type ActionEvent as eV, type Empty as eW, type BulkCreateCategoriesForMigrationRequest as eX, type BulkCreateCategoriesForMigrationResponse as eY, type BulkAddItemsToCategoryForMigrationRequest as eZ, type BulkAddItemsToCategoryForMigrationResponse as e_, type DeprecatedSearchCategoriesWithOffsetRequest as ea, type OffsetSearch as eb, type OffsetSearchPagingMethodOneOf as ec, type Paging as ed, type DeprecatedSearchCategoriesWithOffsetResponse as ee, type PagingMetadata as ef, type CountCategoriesRequest as eg, type MoveCategoryRequest as eh, type BulkUpdateCategoriesRequest as ei, type BulkCategoriesResult as ej, type ItemMetadata as ek, type ApplicationError as el, type BulkActionMetadata as em, type UpdateCategoryVisibilityRequest as en, type BulkShowCategoriesRequest as eo, type BulkDeleteCategoriesRequest as ep, type BulkDeleteCategoriesResponse as eq, type BulkDeleteCategoriesResponseBulkCategoriesResult as er, type BulkAddItemsToCategoryRequest as es, type BulkItemsToCategoryResult as et, type ItemReferenceMetadata as eu, type BulkAddItemToCategoriesRequest as ev, type BulkItemToCategoriesResult as ew, type BulkRemoveItemsFromCategoryRequest as ex, type BulkRemoveItemFromCategoriesRequest as ey, type ListItemsInCategoryRequest as ez, type CategorySearch as f, type SortOrderWithLiterals as f$, type IdentificationData as f0, type IdentificationDataIdOneOf as f1, type AccountInfo as f2, type BaseEventMetadata as f3, type EventMetadata as f4, type AccountInfoMetadata as f5, type CategoriesQueryResult as f6, type CategoryQuerySpec as f7, type CategorySearchSpec as f8, type ListItemsInCategoryOptionsPagingMethodOneOf as f9, type PollDesignBackgroundTypeWithLiterals as fA, type DecorationTypeWithLiterals as fB, type FontTypeWithLiterals as fC, type ImageStylesPositionWithLiterals as fD, type AspectRatioWithLiterals as fE, type ResizingWithLiterals as fF, type PlacementWithLiterals as fG, type TypeWithLiterals as fH, type AlignmentWithLiterals as fI, type LayoutWithLiterals as fJ, type AppTypeWithLiterals as fK, type InitialExpandedItemsWithLiterals as fL, type DirectionWithLiterals as fM, type VerticalAlignmentWithLiterals as fN, type NullValueWithLiterals as fO, type ImageScalingScalingWithLiterals as fP, type ImagePositionWithLiterals as fQ, type OriginWithLiterals as fR, type LayoutDataBackgroundTypeWithLiterals as fS, type BackdropTypeWithLiterals as fT, type VerticalAlignmentAlignmentWithLiterals as fU, type ResponsivenessBehaviourWithLiterals as fV, type DesignTargetWithLiterals as fW, type ScalingWithLiterals as fX, type ImagePositionPositionWithLiterals as fY, type CardDataBackgroundTypeWithLiterals as fZ, type SingleEntityOpsRequestedFieldsWithLiterals as f_, type BulkSetItemCategoriesOptions as fa, utils as fb, type NodeTypeWithLiterals as fc, type BackgroundTypeWithLiterals as fd, type GradientTypeWithLiterals as fe, type WidthTypeWithLiterals as ff, type PluginContainerDataAlignmentWithLiterals as fg, type ButtonDataTypeWithLiterals as fh, type TargetWithLiterals as fi, type TextAlignmentWithLiterals as fj, type LineStyleWithLiterals as fk, type WidthWithLiterals as fl, type DividerDataAlignmentWithLiterals as fm, type ViewModeWithLiterals as fn, type LayoutTypeWithLiterals as fo, type OrientationWithLiterals as fp, type CropWithLiterals as fq, type ThumbnailsAlignmentWithLiterals as fr, type GIFTypeWithLiterals as fs, type SourceWithLiterals as ft, type StylesPositionWithLiterals as fu, type MapTypeWithLiterals as fv, type ViewRoleWithLiterals as fw, type VoteRoleWithLiterals as fx, type PollLayoutTypeWithLiterals as fy, type PollLayoutDirectionWithLiterals as fz, type SearchCategoriesResponse as g, type RequestedFieldsWithLiterals as g0, type SortTypeWithLiterals as g1, type SortDirectionWithLiterals as g2, type MissingValuesWithLiterals as g3, type ScalarTypeWithLiterals as g4, type NestedAggregationTypeWithLiterals as g5, type IntervalWithLiterals as g6, type AggregationTypeWithLiterals as g7, type ModeWithLiterals as g8, type PositionWithLiterals as g9, listItemsInCategory as gA, listCategoriesForItem as gB, listCategoriesForItems as gC, listTrees as gD, setArrangedItems as gE, getArrangedItems as gF, type MoveItemInCategoryRequestPositionWithLiterals as ga, type WebhookIdentityTypeWithLiterals as gb, type BulkSetItemCategoriesApplicationErrors as gc, type CommonQueryWithEntityContext as gd, type CommonSearchWithEntityContext as ge, onCategoryMoved as gf, onCategoryCreated as gg, onCategoryDeleted as gh, onCategoryItemAddedToCategory as gi, onCategoryItemRemovedFromCategory as gj, onCategoryItemsArrangedInCategory as gk, onCategoryUpdated as gl, createCategory as gm, getCategory as gn, updateCategory as go, deleteCategory as gp, queryCategories as gq, countCategories as gr, moveCategory as gs, bulkUpdateCategories as gt, updateCategoryVisibility as gu, bulkShowCategories as gv, bulkAddItemsToCategory as gw, bulkAddItemToCategories as gx, bulkRemoveItemsFromCategory as gy, bulkRemoveItemFromCategories 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 };
5695
+ 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, SortType 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, LayoutDataBackgroundType as aO, BackdropType as aP, VerticalAlignmentAlignment as aQ, ResponsivenessBehaviour as aR, DesignTarget as aS, Scaling as aT, ImagePositionPosition as aU, CardDataBackgroundType as aV, ListStyle as aW, Indentation as aX, SingleEntityOpsRequestedFields as aY, SortOrder as aZ, RequestedFields 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 MapData as b$, SortDirection as b0, MissingValues as b1, ScalarType as b2, NestedAggregationType as b3, Interval as b4, AggregationType as b5, Mode as b6, Position as b7, MoveItemInCategoryRequestPosition as b8, WebhookIdentityType as b9, type CodeBlockData as bA, type TextStyle as bB, type DividerData as bC, type FileData as bD, type FileSource as bE, type FileSourceDataOneOf as bF, type PDFSettings as bG, type GalleryData as bH, type Media as bI, type Image as bJ, type Video as bK, type Item as bL, type ItemDataOneOf as bM, type GalleryOptions as bN, type GalleryOptionsLayout as bO, type ItemStyle as bP, type Thumbnails as bQ, type GIFData as bR, type GIF as bS, type HeadingData as bT, type HTMLData as bU, type HTMLDataDataOneOf as bV, type ImageData as bW, type StylesBorder as bX, type ImageDataStyles as bY, type LinkPreviewData as bZ, type LinkPreviewDataStyles as b_, type BreadcrumbsInfo as ba, type Breadcrumb as bb, type ParentCategory as bc, type SeoSchema as bd, type Keyword as be, type Tag as bf, type Settings as bg, type RichContent as bh, type Node as bi, type NodeDataOneOf as bj, type NodeStyle as bk, type ButtonData as bl, type Gradient as bm, type Stop as bn, type Border as bo, type Colors as bp, type Background as bq, type PluginContainerData as br, type PluginContainerDataWidth as bs, type PluginContainerDataWidthDataOneOf as bt, type Spoiler as bu, type Height as bv, type Styles as bw, type Link as bx, type LinkDataOneOf as by, type Rel as bz, type CreateCategoryValidationErrors as c, type TocData as c$, type MapSettings as c0, type ParagraphData as c1, type PollData as c2, type Permissions as c3, type Option as c4, type PollSettings as c5, type PollLayout as c6, type OptionLayout as c7, type BackgroundGradient as c8, type PollDesignBackground as c9, type PlaybackOptions as cA, type EmbedData as cB, type Oembed as cC, type CollapsibleListData as cD, type TableData as cE, type Dimensions as cF, type TableCellData as cG, type CellStyle as cH, type BorderColors as cI, type BorderWidths as cJ, type ListValue as cK, type AudioData as cL, type OrderedListData as cM, type BulletedListData as cN, type BlockquoteData as cO, type CaptionData as cP, type LayoutData as cQ, type LayoutDataBackgroundImage as cR, type Banner as cS, type LayoutDataBackground as cT, type Backdrop as cU, type LayoutCellData as cV, type ShapeData as cW, type ShapeDataStyles as cX, type CardData as cY, type CardDataBackground as cZ, type BackgroundImage as c_, type PollDesignBackgroundBackgroundOneOf as ca, type PollDesign as cb, type OptionDesign as cc, type Poll as cd, type PollDataLayout as ce, type Design as cf, type TextData as cg, type Decoration as ch, type DecorationDataOneOf as ci, type AnchorData as cj, type ColorData as ck, type LinkData as cl, type MentionData as cm, type FontSizeData as cn, type SpoilerData as co, type FontFamilyData as cp, type AppEmbedData as cq, type AppEmbedDataAppDataOneOf as cr, type BookingData as cs, type EventData as ct, type ButtonStyles as cu, type ImageStyles as cv, type RibbonStyles as cw, type CardStyles as cx, type PricingData as cy, type VideoData as cz, type UpdateCategoryOptions as d, type AggregationResultsScalarResult as d$, type Metadata as d0, type DocumentStyle as d1, type TextNodeStyle as d2, type ExtendedFields as d3, type InvalidateCache as d4, type InvalidateCacheGetByOneOf as d5, type App as d6, type Page as d7, type URI as d8, type File as d9, type Cursors as dA, type ListCompactCategoriesByIdsRequest as dB, type ListCompactCategoriesByIdsResponse as dC, type CompactCategory as dD, type SearchCategoriesRequest as dE, type CursorSearch as dF, type CursorSearchPagingMethodOneOf as dG, type Aggregation as dH, type AggregationKindOneOf as dI, type RangeBucket as dJ, type IncludeMissingValuesOptions as dK, type ValueAggregation as dL, type ValueAggregationOptionsOneOf as dM, type RangeAggregation as dN, type ScalarAggregation as dO, type DateHistogramAggregation as dP, type NestedAggregationItem as dQ, type NestedAggregationItemKindOneOf as dR, type NestedAggregation as dS, type SearchDetails as dT, type AggregationData as dU, type ValueAggregationResult as dV, type RangeAggregationResult as dW, type NestedAggregationResults as dX, type NestedAggregationResultsResultOneOf as dY, type ValueResults as dZ, type RangeResults as d_, type CustomTag as da, type Pages as db, type URIs as dc, type CategoryMoved as dd, type ItemAddedToCategory as de, type ItemsAddedToCategory as df, type ItemRemovedFromCategory as dg, type ItemsRemovedFromCategory as dh, type ItemsArrangedInCategory as di, type CreateCategoryRequest as dj, type CreateCategoryResponse as dk, type DuplicateHandleErrorData as dl, type GetCategoryRequest as dm, type GetCategoryResponse as dn, type UpdateCategoryRequest as dp, type UpdateCategoryResponse as dq, type DeleteCategoryRequest as dr, type DeleteCategoryResponse as ds, type QueryCategoriesRequest as dt, type CursorQuery as du, type CursorQueryPagingMethodOneOf as dv, type Sorting as dw, type CursorPaging as dx, type QueryCategoriesResponse as dy, type CursorPagingMetadata as dz, type UpdateCategoryApplicationErrors as e, type BulkCreateCategoriesForMigrationResponse as e$, type NestedValueAggregationResult as e0, type ValueResult as e1, type RangeResult as e2, type ScalarResult as e3, type NestedResultValue as e4, type NestedResultValueResultOneOf as e5, type Results as e6, type DateHistogramResult as e7, type GroupByValueResults as e8, type DateHistogramResults as e9, type BulkRemoveItemsFromCategoryRequest as eA, type BulkRemoveItemFromCategoriesRequest as eB, type ListItemsInCategoryRequest as eC, type ListItemsInCategoryRequestPagingMethodOneOf as eD, type PagingMetadataV2 as eE, type ListCategoriesForItemRequest as eF, type ListCategoriesForItemsRequest as eG, type MapItemToCategories as eH, type ListTreesRequest as eI, type MoveItemInCategoryRequest as eJ, type MoveItemInCategoryResponse as eK, type SetArrangedItemsRequest as eL, type GetArrangedItemsRequest as eM, type BulkSetItemCategoriesRequest as eN, type BulkSetItemCategoriesResponse as eO, type GetCategoriesTreeRequest as eP, type GetCategoriesTreeResponse as eQ, type CategoryTreeNode as eR, type DomainEvent as eS, type DomainEventBodyOneOf as eT, type EntityCreatedEvent as eU, type RestoreInfo as eV, type EntityUpdatedEvent as eW, type EntityDeletedEvent as eX, type ActionEvent as eY, type Empty as eZ, type BulkCreateCategoriesForMigrationRequest as e_, type NestedResults as ea, type AggregationResults as eb, type AggregationResultsResultOneOf as ec, type DeprecatedSearchCategoriesWithOffsetRequest as ed, type OffsetSearch as ee, type OffsetSearchPagingMethodOneOf as ef, type Paging as eg, type DeprecatedSearchCategoriesWithOffsetResponse as eh, type PagingMetadata as ei, type CountCategoriesRequest as ej, type MoveCategoryRequest as ek, type BulkUpdateCategoriesRequest as el, type BulkCategoriesResult as em, type ItemMetadata as en, type ApplicationError as eo, type BulkActionMetadata as ep, type UpdateCategoryVisibilityRequest as eq, type BulkShowCategoriesRequest as er, type BulkDeleteCategoriesRequest as es, type BulkDeleteCategoriesResponse as et, type BulkDeleteCategoriesResponseBulkCategoriesResult as eu, type BulkAddItemsToCategoryRequest as ev, type BulkItemsToCategoryResult as ew, type ItemReferenceMetadata as ex, type BulkAddItemToCategoriesRequest as ey, type BulkItemToCategoriesResult as ez, type CategorySearch as f, type ImagePositionPositionWithLiterals as f$, type BulkAddItemsToCategoryForMigrationRequest as f0, type BulkAddItemsToCategoryForMigrationResponse as f1, type MessageEnvelope as f2, type IdentificationData as f3, type IdentificationDataIdOneOf as f4, type AccountInfo as f5, type BaseEventMetadata as f6, type EventMetadata as f7, type AccountInfoMetadata as f8, type CategoriesQueryResult as f9, type VoteRoleWithLiterals as fA, type PollLayoutTypeWithLiterals as fB, type PollLayoutDirectionWithLiterals as fC, type PollDesignBackgroundTypeWithLiterals as fD, type DecorationTypeWithLiterals as fE, type FontTypeWithLiterals as fF, type ImageStylesPositionWithLiterals as fG, type AspectRatioWithLiterals as fH, type ResizingWithLiterals as fI, type PlacementWithLiterals as fJ, type TypeWithLiterals as fK, type AlignmentWithLiterals as fL, type LayoutWithLiterals as fM, type AppTypeWithLiterals as fN, type InitialExpandedItemsWithLiterals as fO, type DirectionWithLiterals as fP, type VerticalAlignmentWithLiterals as fQ, type NullValueWithLiterals as fR, type ImageScalingScalingWithLiterals as fS, type ImagePositionWithLiterals as fT, type OriginWithLiterals as fU, type LayoutDataBackgroundTypeWithLiterals as fV, type BackdropTypeWithLiterals as fW, type VerticalAlignmentAlignmentWithLiterals as fX, type ResponsivenessBehaviourWithLiterals as fY, type DesignTargetWithLiterals as fZ, type ScalingWithLiterals as f_, type CategoryQuerySpec as fa, type CategorySearchSpec as fb, type ListItemsInCategoryOptionsPagingMethodOneOf as fc, type BulkSetItemCategoriesOptions as fd, utils as fe, type NodeTypeWithLiterals as ff, type BackgroundTypeWithLiterals as fg, type GradientTypeWithLiterals as fh, type WidthTypeWithLiterals as fi, type PluginContainerDataAlignmentWithLiterals as fj, type ButtonDataTypeWithLiterals as fk, type TargetWithLiterals as fl, type TextAlignmentWithLiterals as fm, type LineStyleWithLiterals as fn, type WidthWithLiterals as fo, type DividerDataAlignmentWithLiterals as fp, type ViewModeWithLiterals as fq, type LayoutTypeWithLiterals as fr, type OrientationWithLiterals as fs, type CropWithLiterals as ft, type ThumbnailsAlignmentWithLiterals as fu, type GIFTypeWithLiterals as fv, type SourceWithLiterals as fw, type StylesPositionWithLiterals as fx, type MapTypeWithLiterals as fy, type ViewRoleWithLiterals as fz, type SearchCategoriesResponse as g, type CardDataBackgroundTypeWithLiterals as g0, type ListStyleWithLiterals as g1, type IndentationWithLiterals as g2, type SingleEntityOpsRequestedFieldsWithLiterals as g3, type SortOrderWithLiterals as g4, type RequestedFieldsWithLiterals as g5, type SortTypeWithLiterals as g6, type SortDirectionWithLiterals as g7, type MissingValuesWithLiterals as g8, type ScalarTypeWithLiterals as g9, bulkShowCategories as gA, bulkAddItemsToCategory as gB, bulkAddItemToCategories as gC, bulkRemoveItemsFromCategory as gD, bulkRemoveItemFromCategories as gE, listItemsInCategory as gF, listCategoriesForItem as gG, listCategoriesForItems as gH, listTrees as gI, setArrangedItems as gJ, getArrangedItems as gK, type NestedAggregationTypeWithLiterals as ga, type IntervalWithLiterals as gb, type AggregationTypeWithLiterals as gc, type ModeWithLiterals as gd, type PositionWithLiterals as ge, type MoveItemInCategoryRequestPositionWithLiterals as gf, type WebhookIdentityTypeWithLiterals as gg, type BulkSetItemCategoriesApplicationErrors as gh, type CommonQueryWithEntityContext as gi, type CommonSearchWithEntityContext as gj, onCategoryMoved as gk, onCategoryCreated as gl, onCategoryDeleted as gm, onCategoryItemAddedToCategory as gn, onCategoryItemRemovedFromCategory as go, onCategoryItemsArrangedInCategory as gp, onCategoryUpdated as gq, createCategory as gr, getCategory as gs, updateCategory as gt, deleteCategory as gu, queryCategories as gv, countCategories as gw, moveCategory as gx, bulkUpdateCategories as gy, updateCategoryVisibility 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-HGXwX99O.js';
3
- export { f2 as AccountInfo, f5 as AccountInfoMetadata, eV as ActionEvent, dE as Aggregation, dR as AggregationData, dF as AggregationKindOneOf, e8 as AggregationResults, e9 as AggregationResultsResultOneOf, dY as AggregationResultsScalarResult, b3 as AggregationType, g7 as AggregationTypeWithLiterals, aE as Alignment, fI as AlignmentWithLiterals, ch as AnchorData, d3 as App, co as AppEmbedData, cp as AppEmbedDataAppDataOneOf, aG as AppType, fK as AppTypeWithLiterals, el as ApplicationError, aA as AspectRatio, fE as AspectRatioWithLiterals, cJ as AudioData, cS as Backdrop, aP as BackdropType, fT as BackdropTypeWithLiterals, bo as Background, c6 as BackgroundGradient, cY as BackgroundImage, a9 as BackgroundType, fd as BackgroundTypeWithLiterals, cQ as Banner, f3 as BaseEventMetadata, cM as BlockquoteData, cq as BookingData, bm as Border, cG as BorderColors, cH as BorderWidths, b9 as Breadcrumb, b8 as BreadcrumbsInfo, em as BulkActionMetadata, ev as BulkAddItemToCategoriesRequest, eZ as BulkAddItemsToCategoryForMigrationRequest, e_ as BulkAddItemsToCategoryForMigrationResponse, es as BulkAddItemsToCategoryRequest, ej as BulkCategoriesResult, eX as BulkCreateCategoriesForMigrationRequest, eY as BulkCreateCategoriesForMigrationResponse, ep as BulkDeleteCategoriesRequest, eq as BulkDeleteCategoriesResponse, er as BulkDeleteCategoriesResponseBulkCategoriesResult, ew as BulkItemToCategoriesResult, et as BulkItemsToCategoryResult, ey as BulkRemoveItemFromCategoriesRequest, ex as BulkRemoveItemsFromCategoryRequest, gc as BulkSetItemCategoriesApplicationErrors, fa as BulkSetItemCategoriesOptions, eK as BulkSetItemCategoriesRequest, eL as BulkSetItemCategoriesResponse, eo as BulkShowCategoriesRequest, ei as BulkUpdateCategoriesRequest, cL as BulletedListData, bj as ButtonData, ad as ButtonDataType, fh as ButtonDataTypeWithLiterals, cs as ButtonStyles, cN as CaptionData, cW as CardData, cX as CardDataBackground, aV as CardDataBackgroundType, fZ as CardDataBackgroundTypeWithLiterals, cv as CardStyles, f6 as CategoriesQueryResult, da as CategoryMoved, f7 as CategoryQuerySpec, f8 as CategorySearchSpec, eO as CategoryTreeNode, cF as CellStyle, by as CodeBlockData, cB as CollapsibleListData, ci as ColorData, bn as Colors, gd as CommonQueryWithEntityContext, ge as CommonSearchWithEntityContext, dA as CompactCategory, eg as CountCategoriesRequest, dg as CreateCategoryRequest, dh as CreateCategoryResponse, am as Crop, fq as CropWithLiterals, du as CursorPaging, dw as CursorPagingMetadata, dr as CursorQuery, ds as CursorQueryPagingMethodOneOf, dC as CursorSearch, dD as CursorSearchPagingMethodOneOf, dx as Cursors, d7 as CustomTag, dM as DateHistogramAggregation, e4 as DateHistogramResult, e6 as DateHistogramResults, cf as Decoration, cg as DecorationDataOneOf, ax as DecorationType, fB as DecorationTypeWithLiterals, dn as DeleteCategoryRequest, dp as DeleteCategoryResponse, ea as DeprecatedSearchCategoriesWithOffsetRequest, ee as DeprecatedSearchCategoriesWithOffsetResponse, cd as Design, aS as DesignTarget, fW as DesignTargetWithLiterals, cD as Dimensions, aI as Direction, fM as DirectionWithLiterals, bA as DividerData, ai as DividerDataAlignment, fm as DividerDataAlignmentWithLiterals, c_ as DocumentStyle, eP as DomainEvent, eQ as DomainEventBodyOneOf, di as DuplicateHandleErrorData, cz as EmbedData, eW as Empty, eR as EntityCreatedEvent, eU as EntityDeletedEvent, eT as EntityUpdatedEvent, cr as EventData, f4 as EventMetadata, d0 as ExtendedFields, d6 as File, bB as FileData, bC as FileSource, bD as FileSourceDataOneOf, cn as FontFamilyData, cl as FontSizeData, ay as FontType, fC as FontTypeWithLiterals, bQ as GIF, bP as GIFData, ao as GIFType, fs as GIFTypeWithLiterals, bF as GalleryData, bL as GalleryOptions, bM as GalleryOptionsLayout, eJ as GetArrangedItemsRequest, eM as GetCategoriesTreeRequest, eN as GetCategoriesTreeResponse, dj as GetCategoryRequest, dk as GetCategoryResponse, bk as Gradient, aa as GradientType, fe as GradientTypeWithLiterals, e5 as GroupByValueResults, bS as HTMLData, bT as HTMLDataDataOneOf, bR as HeadingData, bt as Height, f0 as IdentificationData, f1 as IdentificationDataIdOneOf, bH as Image, bU as ImageData, bW as ImageDataStyles, aM as ImagePosition, aU as ImagePositionPosition, fY as ImagePositionPositionWithLiterals, fQ as ImagePositionWithLiterals, aL as ImageScalingScaling, fP as ImageScalingScalingWithLiterals, ct as ImageStyles, az as ImageStylesPosition, fD as ImageStylesPositionWithLiterals, dH as IncludeMissingValuesOptions, aH as InitialExpandedItems, fL as InitialExpandedItemsWithLiterals, b2 as Interval, g6 as IntervalWithLiterals, d1 as InvalidateCache, d2 as InvalidateCacheGetByOneOf, bJ as Item, db as ItemAddedToCategory, bK as ItemDataOneOf, ek as ItemMetadata, eu as ItemReferenceMetadata, dd as ItemRemovedFromCategory, bN as ItemStyle, dc as ItemsAddedToCategory, df as ItemsArrangedInCategory, de as ItemsRemovedFromCategory, bc as Keyword, aF as Layout, cT as LayoutCellData, cO as LayoutData, cR as LayoutDataBackground, cP as LayoutDataBackgroundImage, aO as LayoutDataBackgroundType, fS as LayoutDataBackgroundTypeWithLiterals, ak as LayoutType, fo as LayoutTypeWithLiterals, fJ as LayoutWithLiterals, ag as LineStyle, fk as LineStyleWithLiterals, bv as Link, cj as LinkData, bw as LinkDataOneOf, bX as LinkPreviewData, bY as LinkPreviewDataStyles, eC as ListCategoriesForItemRequest, eD as ListCategoriesForItemsRequest, dy as ListCompactCategoriesByIdsRequest, dz as ListCompactCategoriesByIdsResponse, f9 as ListItemsInCategoryOptionsPagingMethodOneOf, ez as ListItemsInCategoryRequest, eA as ListItemsInCategoryRequestPagingMethodOneOf, eF as ListTreesRequest, cI as ListValue, bZ as MapData, eE as MapItemToCategories, b_ as MapSettings, ar as MapType, fv as MapTypeWithLiterals, bG as Media, ck as MentionData, e$ as MessageEnvelope, cZ as Metadata, a$ as MissingValues, g3 as MissingValuesWithLiterals, b4 as Mode, g8 as ModeWithLiterals, eh as MoveCategoryRequest, eG as MoveItemInCategoryRequest, b6 as MoveItemInCategoryRequestPosition, ga as MoveItemInCategoryRequestPositionWithLiterals, eH as MoveItemInCategoryResponse, dP as NestedAggregation, dN as NestedAggregationItem, dO as NestedAggregationItemKindOneOf, dU as NestedAggregationResults, dV as NestedAggregationResultsResultOneOf, b1 as NestedAggregationType, g5 as NestedAggregationTypeWithLiterals, e1 as NestedResultValue, e2 as NestedResultValueResultOneOf, e7 as NestedResults, dZ as NestedValueAggregationResult, bg as Node, bh as NodeDataOneOf, bi as NodeStyle, a8 as NodeType, fc as NodeTypeWithLiterals, aK as NullValue, fO as NullValueWithLiterals, cA as Oembed, eb as OffsetSearch, ec as OffsetSearchPagingMethodOneOf, c2 as Option, ca as OptionDesign, c5 as OptionLayout, cK as OrderedListData, al as Orientation, fp as OrientationWithLiterals, aN as Origin, fR as OriginWithLiterals, bE as PDFSettings, d4 as Page, d8 as Pages, ed as Paging, ef as PagingMetadata, eB as PagingMetadataV2, b$ as ParagraphData, ba as ParentCategory, c1 as Permissions, aC as Placement, fG as PlacementWithLiterals, cy as PlaybackOptions, bp as PluginContainerData, ac as PluginContainerDataAlignment, fg as PluginContainerDataAlignmentWithLiterals, bq as PluginContainerDataWidth, br as PluginContainerDataWidthDataOneOf, cb as Poll, c0 as PollData, cc as PollDataLayout, c9 as PollDesign, c7 as PollDesignBackground, c8 as PollDesignBackgroundBackgroundOneOf, aw as PollDesignBackgroundType, fA as PollDesignBackgroundTypeWithLiterals, c4 as PollLayout, av as PollLayoutDirection, fz as PollLayoutDirectionWithLiterals, au as PollLayoutType, fy as PollLayoutTypeWithLiterals, c3 as PollSettings, b5 as Position, g9 as PositionWithLiterals, cw as PricingData, dq as QueryCategoriesRequest, dv as QueryCategoriesResponse, dK as RangeAggregation, dT as RangeAggregationResult, dG as RangeBucket, d$ as RangeResult, dX as RangeResults, bx as Rel, aY as RequestedFields, g0 as RequestedFieldsWithLiterals, aB as Resizing, fF as ResizingWithLiterals, aR as ResponsivenessBehaviour, fV as ResponsivenessBehaviourWithLiterals, eS as RestoreInfo, e3 as Results, cu as RibbonStyles, bf as RichContent, dL as ScalarAggregation, e0 as ScalarResult, b0 as ScalarType, g4 as ScalarTypeWithLiterals, aT as Scaling, fX as ScalingWithLiterals, dB as SearchCategoriesRequest, dQ as SearchDetails, bb as SeoSchema, eI as SetArrangedItemsRequest, be as Settings, cU as ShapeData, cV as ShapeDataStyles, aW as SingleEntityOpsRequestedFields, f_ as SingleEntityOpsRequestedFieldsWithLiterals, a_ as SortDirection, g2 as SortDirectionWithLiterals, aX as SortOrder, f$ as SortOrderWithLiterals, aZ as SortType, g1 as SortTypeWithLiterals, dt as Sorting, ap as Source, ft as SourceWithLiterals, bs as Spoiler, cm as SpoilerData, bl as Stop, bu as Styles, bV as StylesBorder, aq as StylesPosition, fu as StylesPositionWithLiterals, cE as TableCellData, cC as TableData, bd as Tag, ae as Target, fi as TargetWithLiterals, af as TextAlignment, fj as TextAlignmentWithLiterals, ce as TextData, c$ as TextNodeStyle, bz as TextStyle, bO as Thumbnails, an as ThumbnailsAlignment, fr as ThumbnailsAlignmentWithLiterals, aD as Type, fH as TypeWithLiterals, d5 as URI, d9 as URIs, dl as UpdateCategoryRequest, dm as UpdateCategoryResponse, en as UpdateCategoryVisibilityRequest, dI as ValueAggregation, dJ as ValueAggregationOptionsOneOf, dS as ValueAggregationResult, d_ as ValueResult, dW as ValueResults, aJ as VerticalAlignment, aQ as VerticalAlignmentAlignment, fU as VerticalAlignmentAlignmentWithLiterals, fN as VerticalAlignmentWithLiterals, bI as Video, cx as VideoData, aj as ViewMode, fn as ViewModeWithLiterals, as as ViewRole, fw as ViewRoleWithLiterals, at as VoteRole, fx as VoteRoleWithLiterals, b7 as WebhookIdentityType, gb as WebhookIdentityTypeWithLiterals, ah as Width, ab as WidthType, ff as WidthTypeWithLiterals, fl as WidthWithLiterals, fb as utils } from './categories-v1-category-categories.universal-HGXwX99O.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-DAp47gfD.js';
3
+ export { f5 as AccountInfo, f8 as AccountInfoMetadata, eY as ActionEvent, dH as Aggregation, dU as AggregationData, dI as AggregationKindOneOf, eb as AggregationResults, ec as AggregationResultsResultOneOf, d$ as AggregationResultsScalarResult, b5 as AggregationType, gc as AggregationTypeWithLiterals, aE as Alignment, fL as AlignmentWithLiterals, cj as AnchorData, d6 as App, cq as AppEmbedData, cr as AppEmbedDataAppDataOneOf, aG as AppType, fN as AppTypeWithLiterals, eo as ApplicationError, aA as AspectRatio, fH as AspectRatioWithLiterals, cL as AudioData, cU as Backdrop, aP as BackdropType, fW as BackdropTypeWithLiterals, bq as Background, c8 as BackgroundGradient, c_ as BackgroundImage, a9 as BackgroundType, fg as BackgroundTypeWithLiterals, cS as Banner, f6 as BaseEventMetadata, cO as BlockquoteData, cs as BookingData, bo as Border, cI as BorderColors, cJ as BorderWidths, bb as Breadcrumb, ba as BreadcrumbsInfo, ep as BulkActionMetadata, ey as BulkAddItemToCategoriesRequest, f0 as BulkAddItemsToCategoryForMigrationRequest, f1 as BulkAddItemsToCategoryForMigrationResponse, ev as BulkAddItemsToCategoryRequest, em as BulkCategoriesResult, e_ as BulkCreateCategoriesForMigrationRequest, e$ as BulkCreateCategoriesForMigrationResponse, es as BulkDeleteCategoriesRequest, et as BulkDeleteCategoriesResponse, eu as BulkDeleteCategoriesResponseBulkCategoriesResult, ez as BulkItemToCategoriesResult, ew as BulkItemsToCategoryResult, eB as BulkRemoveItemFromCategoriesRequest, eA as BulkRemoveItemsFromCategoryRequest, gh as BulkSetItemCategoriesApplicationErrors, fd as BulkSetItemCategoriesOptions, eN as BulkSetItemCategoriesRequest, eO as BulkSetItemCategoriesResponse, er as BulkShowCategoriesRequest, el as BulkUpdateCategoriesRequest, cN as BulletedListData, bl as ButtonData, ad as ButtonDataType, fk as ButtonDataTypeWithLiterals, cu as ButtonStyles, cP as CaptionData, cY as CardData, cZ as CardDataBackground, aV as CardDataBackgroundType, g0 as CardDataBackgroundTypeWithLiterals, cx as CardStyles, f9 as CategoriesQueryResult, dd as CategoryMoved, fa as CategoryQuerySpec, fb as CategorySearchSpec, eR as CategoryTreeNode, cH as CellStyle, bA as CodeBlockData, cD as CollapsibleListData, ck as ColorData, bp as Colors, gi as CommonQueryWithEntityContext, gj as CommonSearchWithEntityContext, dD as CompactCategory, ej as CountCategoriesRequest, dj as CreateCategoryRequest, dk as CreateCategoryResponse, am as Crop, ft as CropWithLiterals, dx as CursorPaging, dz as CursorPagingMetadata, du as CursorQuery, dv as CursorQueryPagingMethodOneOf, dF as CursorSearch, dG as CursorSearchPagingMethodOneOf, dA as Cursors, da as CustomTag, dP as DateHistogramAggregation, e7 as DateHistogramResult, e9 as DateHistogramResults, ch as Decoration, ci as DecorationDataOneOf, ax as DecorationType, fE as DecorationTypeWithLiterals, dr as DeleteCategoryRequest, ds as DeleteCategoryResponse, ed as DeprecatedSearchCategoriesWithOffsetRequest, eh as DeprecatedSearchCategoriesWithOffsetResponse, cf as Design, aS as DesignTarget, fZ as DesignTargetWithLiterals, cF as Dimensions, aI as Direction, fP as DirectionWithLiterals, bC as DividerData, ai as DividerDataAlignment, fp as DividerDataAlignmentWithLiterals, d1 as DocumentStyle, eS as DomainEvent, eT as DomainEventBodyOneOf, dl as DuplicateHandleErrorData, cB as EmbedData, eZ as Empty, eU as EntityCreatedEvent, eX as EntityDeletedEvent, eW as EntityUpdatedEvent, ct as EventData, f7 as EventMetadata, d3 as ExtendedFields, d9 as File, bD as FileData, bE as FileSource, bF as FileSourceDataOneOf, cp as FontFamilyData, cn as FontSizeData, ay as FontType, fF as FontTypeWithLiterals, bS as GIF, bR as GIFData, ao as GIFType, fv as GIFTypeWithLiterals, bH as GalleryData, bN as GalleryOptions, bO as GalleryOptionsLayout, eM as GetArrangedItemsRequest, eP as GetCategoriesTreeRequest, eQ as GetCategoriesTreeResponse, dm as GetCategoryRequest, dn as GetCategoryResponse, bm as Gradient, aa as GradientType, fh as GradientTypeWithLiterals, e8 as GroupByValueResults, bU as HTMLData, bV as HTMLDataDataOneOf, bT as HeadingData, bv as Height, f3 as IdentificationData, f4 as IdentificationDataIdOneOf, bJ as Image, bW as ImageData, bY as ImageDataStyles, aM as ImagePosition, aU as ImagePositionPosition, f$ as ImagePositionPositionWithLiterals, fT as ImagePositionWithLiterals, aL as ImageScalingScaling, fS as ImageScalingScalingWithLiterals, cv as ImageStyles, az as ImageStylesPosition, fG as ImageStylesPositionWithLiterals, dK as IncludeMissingValuesOptions, aX as Indentation, g2 as IndentationWithLiterals, aH as InitialExpandedItems, fO as InitialExpandedItemsWithLiterals, b4 as Interval, gb as IntervalWithLiterals, d4 as InvalidateCache, d5 as InvalidateCacheGetByOneOf, bL as Item, de as ItemAddedToCategory, bM as ItemDataOneOf, en as ItemMetadata, ex as ItemReferenceMetadata, dg as ItemRemovedFromCategory, bP as ItemStyle, df as ItemsAddedToCategory, di as ItemsArrangedInCategory, dh as ItemsRemovedFromCategory, be as Keyword, aF as Layout, cV as LayoutCellData, cQ as LayoutData, cT as LayoutDataBackground, cR as LayoutDataBackgroundImage, aO as LayoutDataBackgroundType, fV as LayoutDataBackgroundTypeWithLiterals, ak as LayoutType, fr as LayoutTypeWithLiterals, fM as LayoutWithLiterals, ag as LineStyle, fn as LineStyleWithLiterals, bx as Link, cl as LinkData, by as LinkDataOneOf, bZ as LinkPreviewData, b_ as LinkPreviewDataStyles, eF as ListCategoriesForItemRequest, eG as ListCategoriesForItemsRequest, dB as ListCompactCategoriesByIdsRequest, dC as ListCompactCategoriesByIdsResponse, fc as ListItemsInCategoryOptionsPagingMethodOneOf, eC as ListItemsInCategoryRequest, eD as ListItemsInCategoryRequestPagingMethodOneOf, aW as ListStyle, g1 as ListStyleWithLiterals, eI as ListTreesRequest, cK as ListValue, b$ as MapData, eH as MapItemToCategories, c0 as MapSettings, ar as MapType, fy as MapTypeWithLiterals, bI as Media, cm as MentionData, f2 as MessageEnvelope, d0 as Metadata, b1 as MissingValues, g8 as MissingValuesWithLiterals, b6 as Mode, gd as ModeWithLiterals, ek as MoveCategoryRequest, eJ as MoveItemInCategoryRequest, b8 as MoveItemInCategoryRequestPosition, gf as MoveItemInCategoryRequestPositionWithLiterals, eK as MoveItemInCategoryResponse, dS as NestedAggregation, dQ as NestedAggregationItem, dR as NestedAggregationItemKindOneOf, dX as NestedAggregationResults, dY as NestedAggregationResultsResultOneOf, b3 as NestedAggregationType, ga as NestedAggregationTypeWithLiterals, e4 as NestedResultValue, e5 as NestedResultValueResultOneOf, ea as NestedResults, e0 as NestedValueAggregationResult, bi as Node, bj as NodeDataOneOf, bk as NodeStyle, a8 as NodeType, ff as NodeTypeWithLiterals, aK as NullValue, fR as NullValueWithLiterals, cC as Oembed, ee as OffsetSearch, ef as OffsetSearchPagingMethodOneOf, c4 as Option, cc as OptionDesign, c7 as OptionLayout, cM as OrderedListData, al as Orientation, fs as OrientationWithLiterals, aN as Origin, fU as OriginWithLiterals, bG as PDFSettings, d7 as Page, db as Pages, eg as Paging, ei as PagingMetadata, eE as PagingMetadataV2, c1 as ParagraphData, bc as ParentCategory, c3 as Permissions, aC as Placement, fJ as PlacementWithLiterals, cA as PlaybackOptions, br as PluginContainerData, ac as PluginContainerDataAlignment, fj as PluginContainerDataAlignmentWithLiterals, bs as PluginContainerDataWidth, bt as PluginContainerDataWidthDataOneOf, cd as Poll, c2 as PollData, ce as PollDataLayout, cb as PollDesign, c9 as PollDesignBackground, ca as PollDesignBackgroundBackgroundOneOf, aw as PollDesignBackgroundType, fD as PollDesignBackgroundTypeWithLiterals, c6 as PollLayout, av as PollLayoutDirection, fC as PollLayoutDirectionWithLiterals, au as PollLayoutType, fB as PollLayoutTypeWithLiterals, c5 as PollSettings, b7 as Position, ge as PositionWithLiterals, cy as PricingData, dt as QueryCategoriesRequest, dy as QueryCategoriesResponse, dN as RangeAggregation, dW as RangeAggregationResult, dJ as RangeBucket, e2 as RangeResult, d_ as RangeResults, bz as Rel, a_ as RequestedFields, g5 as RequestedFieldsWithLiterals, aB as Resizing, fI as ResizingWithLiterals, aR as ResponsivenessBehaviour, fY as ResponsivenessBehaviourWithLiterals, eV as RestoreInfo, e6 as Results, cw as RibbonStyles, bh as RichContent, dO as ScalarAggregation, e3 as ScalarResult, b2 as ScalarType, g9 as ScalarTypeWithLiterals, aT as Scaling, f_ as ScalingWithLiterals, dE as SearchCategoriesRequest, dT as SearchDetails, bd as SeoSchema, eL as SetArrangedItemsRequest, bg as Settings, cW as ShapeData, cX as ShapeDataStyles, aY as SingleEntityOpsRequestedFields, g3 as SingleEntityOpsRequestedFieldsWithLiterals, b0 as SortDirection, g7 as SortDirectionWithLiterals, aZ as SortOrder, g4 as SortOrderWithLiterals, a$ as SortType, g6 as SortTypeWithLiterals, dw as Sorting, ap as Source, fw as SourceWithLiterals, bu as Spoiler, co as SpoilerData, bn as Stop, bw as Styles, bX as StylesBorder, aq as StylesPosition, fx as StylesPositionWithLiterals, cG as TableCellData, cE as TableData, bf as Tag, ae as Target, fl as TargetWithLiterals, af as TextAlignment, fm as TextAlignmentWithLiterals, cg as TextData, d2 as TextNodeStyle, bB as TextStyle, bQ as Thumbnails, an as ThumbnailsAlignment, fu as ThumbnailsAlignmentWithLiterals, c$ as TocData, aD as Type, fK as TypeWithLiterals, d8 as URI, dc as URIs, dp as UpdateCategoryRequest, dq as UpdateCategoryResponse, eq as UpdateCategoryVisibilityRequest, dL as ValueAggregation, dM as ValueAggregationOptionsOneOf, dV as ValueAggregationResult, e1 as ValueResult, dZ as ValueResults, aJ as VerticalAlignment, aQ as VerticalAlignmentAlignment, fX as VerticalAlignmentAlignmentWithLiterals, fQ as VerticalAlignmentWithLiterals, bK as Video, cz as VideoData, aj as ViewMode, fq as ViewModeWithLiterals, as as ViewRole, fz as ViewRoleWithLiterals, at as VoteRole, fA as VoteRoleWithLiterals, b9 as WebhookIdentityType, gg as WebhookIdentityTypeWithLiterals, ah as Width, ab as WidthType, fi as WidthTypeWithLiterals, fo as WidthWithLiterals, fe as utils } from './categories-v1-category-categories.universal-DAp47gfD.js';
4
4
 
5
5
  declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
6
6
  interface CreateCategorySignature {
@@ -40,12 +40,14 @@ __export(index_exports, {
40
40
  ImagePositionPosition: () => ImagePositionPosition,
41
41
  ImageScalingScaling: () => ImageScalingScaling,
42
42
  ImageStylesPosition: () => ImageStylesPosition,
43
+ Indentation: () => Indentation,
43
44
  InitialExpandedItems: () => InitialExpandedItems,
44
45
  Interval: () => Interval,
45
46
  Layout: () => Layout,
46
47
  LayoutDataBackgroundType: () => LayoutDataBackgroundType,
47
48
  LayoutType: () => LayoutType,
48
49
  LineStyle: () => LineStyle,
50
+ ListStyle: () => ListStyle,
49
51
  MapType: () => MapType,
50
52
  MissingValues: () => MissingValues,
51
53
  Mode: () => Mode,
@@ -312,7 +314,9 @@ function createCategory(payload) {
312
314
  },
313
315
  {
314
316
  path: "category.richContentDescription.nodes.cardData.backgroundImage.media.duration"
315
- }
317
+ },
318
+ { path: "category.richContentDescription.nodes.tocData.fontSize" },
319
+ { path: "category.richContentDescription.nodes.tocData.itemSpacing" }
316
320
  ]
317
321
  }
318
322
  ]);
@@ -449,6 +453,12 @@ function createCategory(payload) {
449
453
  },
450
454
  {
451
455
  path: "category.richContentDescription.nodes.cardData.backgroundImage.media.duration"
456
+ },
457
+ {
458
+ path: "category.richContentDescription.nodes.tocData.fontSize"
459
+ },
460
+ {
461
+ path: "category.richContentDescription.nodes.tocData.itemSpacing"
452
462
  }
453
463
  ]
454
464
  }
@@ -593,6 +603,12 @@ function getCategory(payload) {
593
603
  },
594
604
  {
595
605
  path: "category.richContentDescription.nodes.cardData.backgroundImage.media.duration"
606
+ },
607
+ {
608
+ path: "category.richContentDescription.nodes.tocData.fontSize"
609
+ },
610
+ {
611
+ path: "category.richContentDescription.nodes.tocData.itemSpacing"
596
612
  }
597
613
  ]
598
614
  }
@@ -723,7 +739,9 @@ function updateCategory(payload) {
723
739
  },
724
740
  {
725
741
  path: "category.richContentDescription.nodes.cardData.backgroundImage.media.duration"
726
- }
742
+ },
743
+ { path: "category.richContentDescription.nodes.tocData.fontSize" },
744
+ { path: "category.richContentDescription.nodes.tocData.itemSpacing" }
727
745
  ]
728
746
  }
729
747
  ]);
@@ -860,6 +878,12 @@ function updateCategory(payload) {
860
878
  },
861
879
  {
862
880
  path: "category.richContentDescription.nodes.cardData.backgroundImage.media.duration"
881
+ },
882
+ {
883
+ path: "category.richContentDescription.nodes.tocData.fontSize"
884
+ },
885
+ {
886
+ path: "category.richContentDescription.nodes.tocData.itemSpacing"
863
887
  }
864
888
  ]
865
889
  }
@@ -1025,6 +1049,12 @@ function queryCategories(payload) {
1025
1049
  },
1026
1050
  {
1027
1051
  path: "categories.richContentDescription.nodes.cardData.backgroundImage.media.duration"
1052
+ },
1053
+ {
1054
+ path: "categories.richContentDescription.nodes.tocData.fontSize"
1055
+ },
1056
+ {
1057
+ path: "categories.richContentDescription.nodes.tocData.itemSpacing"
1028
1058
  }
1029
1059
  ]
1030
1060
  }
@@ -1185,6 +1215,12 @@ function searchCategories(payload) {
1185
1215
  {
1186
1216
  path: "categories.richContentDescription.nodes.cardData.backgroundImage.media.duration"
1187
1217
  },
1218
+ {
1219
+ path: "categories.richContentDescription.nodes.tocData.fontSize"
1220
+ },
1221
+ {
1222
+ path: "categories.richContentDescription.nodes.tocData.itemSpacing"
1223
+ },
1188
1224
  { path: "aggregationData.results.ranges.results.from" },
1189
1225
  { path: "aggregationData.results.ranges.results.to" },
1190
1226
  {
@@ -1381,6 +1417,12 @@ function bulkUpdateCategories(payload) {
1381
1417
  },
1382
1418
  {
1383
1419
  path: "categories.category.richContentDescription.nodes.cardData.backgroundImage.media.duration"
1420
+ },
1421
+ {
1422
+ path: "categories.category.richContentDescription.nodes.tocData.fontSize"
1423
+ },
1424
+ {
1425
+ path: "categories.category.richContentDescription.nodes.tocData.itemSpacing"
1384
1426
  }
1385
1427
  ]
1386
1428
  }
@@ -1518,6 +1560,12 @@ function bulkUpdateCategories(payload) {
1518
1560
  },
1519
1561
  {
1520
1562
  path: "results.category.richContentDescription.nodes.cardData.backgroundImage.media.duration"
1563
+ },
1564
+ {
1565
+ path: "results.category.richContentDescription.nodes.tocData.fontSize"
1566
+ },
1567
+ {
1568
+ path: "results.category.richContentDescription.nodes.tocData.itemSpacing"
1521
1569
  }
1522
1570
  ]
1523
1571
  }
@@ -1662,6 +1710,12 @@ function updateCategoryVisibility(payload) {
1662
1710
  },
1663
1711
  {
1664
1712
  path: "category.richContentDescription.nodes.cardData.backgroundImage.media.duration"
1713
+ },
1714
+ {
1715
+ path: "category.richContentDescription.nodes.tocData.fontSize"
1716
+ },
1717
+ {
1718
+ path: "category.richContentDescription.nodes.tocData.itemSpacing"
1665
1719
  }
1666
1720
  ]
1667
1721
  }
@@ -1806,6 +1860,12 @@ function bulkShowCategories(payload) {
1806
1860
  },
1807
1861
  {
1808
1862
  path: "results.category.richContentDescription.nodes.cardData.backgroundImage.media.duration"
1863
+ },
1864
+ {
1865
+ path: "results.category.richContentDescription.nodes.tocData.fontSize"
1866
+ },
1867
+ {
1868
+ path: "results.category.richContentDescription.nodes.tocData.itemSpacing"
1809
1869
  }
1810
1870
  ]
1811
1871
  }
@@ -2122,6 +2182,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
2122
2182
  NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
2123
2183
  NodeType2["SHAPE"] = "SHAPE";
2124
2184
  NodeType2["CARD"] = "CARD";
2185
+ NodeType2["TOC"] = "TOC";
2125
2186
  return NodeType2;
2126
2187
  })(NodeType || {});
2127
2188
  var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
@@ -2232,6 +2293,7 @@ var Source = /* @__PURE__ */ ((Source2) => {
2232
2293
  Source2["HTML"] = "HTML";
2233
2294
  Source2["ADSENSE"] = "ADSENSE";
2234
2295
  Source2["AI"] = "AI";
2296
+ Source2["AI_WIDGET"] = "AI_WIDGET";
2235
2297
  return Source2;
2236
2298
  })(Source || {});
2237
2299
  var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
@@ -2433,6 +2495,21 @@ var CardDataBackgroundType = /* @__PURE__ */ ((CardDataBackgroundType2) => {
2433
2495
  CardDataBackgroundType2["GRADIENT"] = "GRADIENT";
2434
2496
  return CardDataBackgroundType2;
2435
2497
  })(CardDataBackgroundType || {});
2498
+ var ListStyle = /* @__PURE__ */ ((ListStyle2) => {
2499
+ ListStyle2["PLAIN"] = "PLAIN";
2500
+ ListStyle2["NUMBERED"] = "NUMBERED";
2501
+ ListStyle2["LETTERS"] = "LETTERS";
2502
+ ListStyle2["ROMAN"] = "ROMAN";
2503
+ ListStyle2["BULLETED"] = "BULLETED";
2504
+ ListStyle2["ALPHABETICAL_INDEX"] = "ALPHABETICAL_INDEX";
2505
+ ListStyle2["ALPHABETICAL_INDEX_COMPACT"] = "ALPHABETICAL_INDEX_COMPACT";
2506
+ return ListStyle2;
2507
+ })(ListStyle || {});
2508
+ var Indentation = /* @__PURE__ */ ((Indentation2) => {
2509
+ Indentation2["NESTED"] = "NESTED";
2510
+ Indentation2["FLAT"] = "FLAT";
2511
+ return Indentation2;
2512
+ })(Indentation || {});
2436
2513
  var SingleEntityOpsRequestedFields = /* @__PURE__ */ ((SingleEntityOpsRequestedFields2) => {
2437
2514
  SingleEntityOpsRequestedFields2["BREADCRUMBS_INFO"] = "BREADCRUMBS_INFO";
2438
2515
  SingleEntityOpsRequestedFields2["DESCRIPTION"] = "DESCRIPTION";
@@ -3715,7 +3792,9 @@ var onCategoryCreated = (0, import_sdk_types.EventDefinition)(
3715
3792
  },
3716
3793
  {
3717
3794
  path: "entity.richContentDescription.nodes.cardData.backgroundImage.media.duration"
3718
- }
3795
+ },
3796
+ { path: "entity.richContentDescription.nodes.tocData.fontSize" },
3797
+ { path: "entity.richContentDescription.nodes.tocData.itemSpacing" }
3719
3798
  ]
3720
3799
  }
3721
3800
  ])
@@ -3848,6 +3927,10 @@ var onCategoryDeleted = (0, import_sdk_types.EventDefinition)(
3848
3927
  },
3849
3928
  {
3850
3929
  path: "undefined.richContentDescription.nodes.cardData.backgroundImage.media.duration"
3930
+ },
3931
+ { path: "undefined.richContentDescription.nodes.tocData.fontSize" },
3932
+ {
3933
+ path: "undefined.richContentDescription.nodes.tocData.itemSpacing"
3851
3934
  }
3852
3935
  ]
3853
3936
  }
@@ -4022,6 +4105,8 @@ var onCategoryUpdated = (0, import_sdk_types.EventDefinition)(
4022
4105
  {
4023
4106
  path: "entity.richContentDescription.nodes.cardData.backgroundImage.media.duration"
4024
4107
  },
4108
+ { path: "entity.richContentDescription.nodes.tocData.fontSize" },
4109
+ { path: "entity.richContentDescription.nodes.tocData.itemSpacing" },
4025
4110
  {
4026
4111
  path: "modifiedFields.richContentDescription.nodes.buttonData.styles.background.gradient.centerX"
4027
4112
  },
@@ -4123,6 +4208,12 @@ var onCategoryUpdated = (0, import_sdk_types.EventDefinition)(
4123
4208
  },
4124
4209
  {
4125
4210
  path: "modifiedFields.richContentDescription.nodes.cardData.backgroundImage.media.duration"
4211
+ },
4212
+ {
4213
+ path: "modifiedFields.richContentDescription.nodes.tocData.fontSize"
4214
+ },
4215
+ {
4216
+ path: "modifiedFields.richContentDescription.nodes.tocData.itemSpacing"
4126
4217
  }
4127
4218
  ]
4128
4219
  }
@@ -4202,12 +4293,14 @@ var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(
4202
4293
  ImagePositionPosition,
4203
4294
  ImageScalingScaling,
4204
4295
  ImageStylesPosition,
4296
+ Indentation,
4205
4297
  InitialExpandedItems,
4206
4298
  Interval,
4207
4299
  Layout,
4208
4300
  LayoutDataBackgroundType,
4209
4301
  LayoutType,
4210
4302
  LineStyle,
4303
+ ListStyle,
4211
4304
  MapType,
4212
4305
  MissingValues,
4213
4306
  Mode,