@wix/auto_sdk_categories_categories 1.0.106 → 1.0.108

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 (54) hide show
  1. package/build/cjs/{categories-v1-category-categories.universal-HGXwX99O.d.ts → categories-v1-category-categories.universal-CVjL1ZhJ.d.ts} +85 -5
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +296 -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 +271 -2
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +82 -6
  9. package/build/cjs/meta.js +251 -2
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/cjs/schemas.d.ts +1400 -0
  12. package/build/cjs/schemas.js +2760 -0
  13. package/build/cjs/schemas.js.map +1 -0
  14. package/build/es/{categories-v1-category-categories.universal-HGXwX99O.d.mts → categories-v1-category-categories.universal-CVjL1ZhJ.d.mts} +85 -5
  15. package/build/es/index.d.mts +2 -2
  16. package/build/es/index.mjs +293 -3
  17. package/build/es/index.mjs.map +1 -1
  18. package/build/es/index.typings.d.mts +2 -2
  19. package/build/es/index.typings.mjs +268 -2
  20. package/build/es/index.typings.mjs.map +1 -1
  21. package/build/es/meta.d.mts +82 -6
  22. package/build/es/meta.mjs +248 -2
  23. package/build/es/meta.mjs.map +1 -1
  24. package/build/es/schemas.d.mts +1400 -0
  25. package/build/es/schemas.mjs +2682 -0
  26. package/build/es/schemas.mjs.map +1 -0
  27. package/build/internal/cjs/{categories-v1-category-categories.universal-CdzuCH4X.d.ts → categories-v1-category-categories.universal-B5gx5zdX.d.ts} +99 -5
  28. package/build/internal/cjs/index.d.ts +15 -3
  29. package/build/internal/cjs/index.js +296 -3
  30. package/build/internal/cjs/index.js.map +1 -1
  31. package/build/internal/cjs/index.typings.d.ts +2 -2
  32. package/build/internal/cjs/index.typings.js +271 -2
  33. package/build/internal/cjs/index.typings.js.map +1 -1
  34. package/build/internal/cjs/meta.d.ts +82 -6
  35. package/build/internal/cjs/meta.js +251 -2
  36. package/build/internal/cjs/meta.js.map +1 -1
  37. package/build/internal/cjs/schemas.d.ts +1400 -0
  38. package/build/internal/cjs/schemas.js +2760 -0
  39. package/build/internal/cjs/schemas.js.map +1 -0
  40. package/build/internal/es/{categories-v1-category-categories.universal-CdzuCH4X.d.mts → categories-v1-category-categories.universal-B5gx5zdX.d.mts} +99 -5
  41. package/build/internal/es/index.d.mts +15 -3
  42. package/build/internal/es/index.mjs +293 -3
  43. package/build/internal/es/index.mjs.map +1 -1
  44. package/build/internal/es/index.typings.d.mts +2 -2
  45. package/build/internal/es/index.typings.mjs +268 -2
  46. package/build/internal/es/index.typings.mjs.map +1 -1
  47. package/build/internal/es/meta.d.mts +82 -6
  48. package/build/internal/es/meta.mjs +248 -2
  49. package/build/internal/es/meta.mjs.map +1 -1
  50. package/build/internal/es/schemas.d.mts +1400 -0
  51. package/build/internal/es/schemas.mjs +2682 -0
  52. package/build/internal/es/schemas.mjs.map +1 -0
  53. package/package.json +12 -5
  54. package/schemas/package.json +3 -0
@@ -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;
@@ -2655,6 +2710,24 @@ interface GetCategoryResponse {
2655
2710
  /** Category. */
2656
2711
  category?: Category;
2657
2712
  }
2713
+ interface GetCategoryBySlugRequest {
2714
+ /**
2715
+ * Category slug.
2716
+ * @format URL_SLUG
2717
+ */
2718
+ slug: string;
2719
+ /** Category tree reference details. */
2720
+ treeReference: TreeReference;
2721
+ /**
2722
+ * Fields to include in the response.
2723
+ * @maxSize 100
2724
+ */
2725
+ fields?: SingleEntityOpsRequestedFieldsWithLiterals[];
2726
+ }
2727
+ interface GetCategoryBySlugResponse {
2728
+ /** Category. */
2729
+ category?: Category;
2730
+ }
2658
2731
  interface UpdateCategoryRequest {
2659
2732
  /** Category to update. */
2660
2733
  category: Category;
@@ -4691,6 +4764,13 @@ interface GetCategoryOptions {
4691
4764
  */
4692
4765
  fields?: SingleEntityOpsRequestedFieldsWithLiterals[];
4693
4766
  }
4767
+ interface GetCategoryBySlugOptions {
4768
+ /**
4769
+ * Fields to include in the response.
4770
+ * @maxSize 100
4771
+ */
4772
+ fields?: SingleEntityOpsRequestedFieldsWithLiterals[];
4773
+ }
4694
4774
  /**
4695
4775
  * Updates a category.
4696
4776
  *
@@ -5637,4 +5717,4 @@ interface BulkSetItemCategoriesOptions {
5637
5717
  treeReference: TreeReference;
5638
5718
  }
5639
5719
 
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 };
5720
+ 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 ValueResults 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 QueryCategoriesResponse as dA, type CursorPagingMetadata as dB, type Cursors as dC, type ListCompactCategoriesByIdsRequest as dD, type ListCompactCategoriesByIdsResponse as dE, type CompactCategory as dF, type SearchCategoriesRequest as dG, type CursorSearch as dH, type CursorSearchPagingMethodOneOf as dI, type Aggregation as dJ, type AggregationKindOneOf as dK, type RangeBucket as dL, type IncludeMissingValuesOptions as dM, type ValueAggregation as dN, type ValueAggregationOptionsOneOf as dO, type RangeAggregation as dP, type ScalarAggregation as dQ, type DateHistogramAggregation as dR, type NestedAggregationItem as dS, type NestedAggregationItemKindOneOf as dT, type NestedAggregation as dU, type SearchDetails as dV, type AggregationData as dW, type ValueAggregationResult as dX, type RangeAggregationResult as dY, type NestedAggregationResults as dZ, type NestedAggregationResultsResultOneOf 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 GetCategoryBySlugRequest as dp, type GetCategoryBySlugResponse as dq, type UpdateCategoryRequest as dr, type UpdateCategoryResponse as ds, type DeleteCategoryRequest as dt, type DeleteCategoryResponse as du, type QueryCategoriesRequest as dv, type CursorQuery as dw, type CursorQueryPagingMethodOneOf as dx, type Sorting as dy, type CursorPaging as dz, type UpdateCategoryApplicationErrors as e, type Empty as e$, type RangeResults as e0, type AggregationResultsScalarResult as e1, type NestedValueAggregationResult as e2, type ValueResult as e3, type RangeResult as e4, type ScalarResult as e5, type NestedResultValue as e6, type NestedResultValueResultOneOf as e7, type Results as e8, type DateHistogramResult as e9, type BulkAddItemToCategoriesRequest as eA, type BulkItemToCategoriesResult as eB, type BulkRemoveItemsFromCategoryRequest as eC, type BulkRemoveItemFromCategoriesRequest as eD, type ListItemsInCategoryRequest as eE, type ListItemsInCategoryRequestPagingMethodOneOf as eF, type PagingMetadataV2 as eG, type ListCategoriesForItemRequest as eH, type ListCategoriesForItemsRequest as eI, type MapItemToCategories as eJ, type ListTreesRequest as eK, type MoveItemInCategoryRequest as eL, type MoveItemInCategoryResponse as eM, type SetArrangedItemsRequest as eN, type GetArrangedItemsRequest as eO, type BulkSetItemCategoriesRequest as eP, type BulkSetItemCategoriesResponse as eQ, type GetCategoriesTreeRequest as eR, type GetCategoriesTreeResponse as eS, type CategoryTreeNode as eT, type DomainEvent as eU, type DomainEventBodyOneOf as eV, type EntityCreatedEvent as eW, type RestoreInfo as eX, type EntityUpdatedEvent as eY, type EntityDeletedEvent as eZ, type ActionEvent as e_, type GroupByValueResults as ea, type DateHistogramResults as eb, type NestedResults as ec, type AggregationResults as ed, type AggregationResultsResultOneOf as ee, type DeprecatedSearchCategoriesWithOffsetRequest as ef, type OffsetSearch as eg, type OffsetSearchPagingMethodOneOf as eh, type Paging as ei, type DeprecatedSearchCategoriesWithOffsetResponse as ej, type PagingMetadata as ek, type CountCategoriesRequest as el, type MoveCategoryRequest as em, type BulkUpdateCategoriesRequest as en, type BulkCategoriesResult as eo, type ItemMetadata as ep, type ApplicationError as eq, type BulkActionMetadata as er, type UpdateCategoryVisibilityRequest as es, type BulkShowCategoriesRequest as et, type BulkDeleteCategoriesRequest as eu, type BulkDeleteCategoriesResponse as ev, type BulkDeleteCategoriesResponseBulkCategoriesResult as ew, type BulkAddItemsToCategoryRequest as ex, type BulkItemsToCategoryResult as ey, type ItemReferenceMetadata as ez, type CategorySearch as f, type ResponsivenessBehaviourWithLiterals as f$, type BulkCreateCategoriesForMigrationRequest as f0, type BulkCreateCategoriesForMigrationResponse as f1, type BulkAddItemsToCategoryForMigrationRequest as f2, type BulkAddItemsToCategoryForMigrationResponse as f3, type MessageEnvelope as f4, type IdentificationData as f5, type IdentificationDataIdOneOf as f6, type AccountInfo as f7, type BaseEventMetadata as f8, type EventMetadata as f9, type StylesPositionWithLiterals as fA, type MapTypeWithLiterals as fB, type ViewRoleWithLiterals as fC, type VoteRoleWithLiterals as fD, type PollLayoutTypeWithLiterals as fE, type PollLayoutDirectionWithLiterals as fF, type PollDesignBackgroundTypeWithLiterals as fG, type DecorationTypeWithLiterals as fH, type FontTypeWithLiterals as fI, type ImageStylesPositionWithLiterals as fJ, type AspectRatioWithLiterals as fK, type ResizingWithLiterals as fL, type PlacementWithLiterals as fM, type TypeWithLiterals as fN, type AlignmentWithLiterals as fO, type LayoutWithLiterals as fP, type AppTypeWithLiterals as fQ, type InitialExpandedItemsWithLiterals as fR, type DirectionWithLiterals as fS, type VerticalAlignmentWithLiterals as fT, type NullValueWithLiterals as fU, type ImageScalingScalingWithLiterals as fV, type ImagePositionWithLiterals as fW, type OriginWithLiterals as fX, type LayoutDataBackgroundTypeWithLiterals as fY, type BackdropTypeWithLiterals as fZ, type VerticalAlignmentAlignmentWithLiterals as f_, type AccountInfoMetadata as fa, type GetCategoryBySlugOptions as fb, type CategoriesQueryResult as fc, type CategoryQuerySpec as fd, type CategorySearchSpec as fe, type ListItemsInCategoryOptionsPagingMethodOneOf as ff, type BulkSetItemCategoriesOptions as fg, utils as fh, type NodeTypeWithLiterals as fi, type BackgroundTypeWithLiterals as fj, type GradientTypeWithLiterals as fk, type WidthTypeWithLiterals as fl, type PluginContainerDataAlignmentWithLiterals as fm, type ButtonDataTypeWithLiterals as fn, type TargetWithLiterals as fo, type TextAlignmentWithLiterals as fp, type LineStyleWithLiterals as fq, type WidthWithLiterals as fr, type DividerDataAlignmentWithLiterals as fs, type ViewModeWithLiterals as ft, type LayoutTypeWithLiterals as fu, type OrientationWithLiterals as fv, type CropWithLiterals as fw, type ThumbnailsAlignmentWithLiterals as fx, type GIFTypeWithLiterals as fy, type SourceWithLiterals as fz, type SearchCategoriesResponse as g, type DesignTargetWithLiterals as g0, type ScalingWithLiterals as g1, type ImagePositionPositionWithLiterals as g2, type CardDataBackgroundTypeWithLiterals as g3, type ListStyleWithLiterals as g4, type IndentationWithLiterals as g5, type SingleEntityOpsRequestedFieldsWithLiterals as g6, type SortOrderWithLiterals as g7, type RequestedFieldsWithLiterals as g8, type SortTypeWithLiterals as g9, moveCategory as gA, bulkUpdateCategories as gB, updateCategoryVisibility as gC, bulkShowCategories as gD, bulkAddItemsToCategory as gE, bulkAddItemToCategories as gF, bulkRemoveItemsFromCategory as gG, bulkRemoveItemFromCategories as gH, listItemsInCategory as gI, listCategoriesForItem as gJ, listCategoriesForItems as gK, listTrees as gL, setArrangedItems as gM, getArrangedItems as gN, type SortDirectionWithLiterals as ga, type MissingValuesWithLiterals as gb, type ScalarTypeWithLiterals as gc, type NestedAggregationTypeWithLiterals as gd, type IntervalWithLiterals as ge, type AggregationTypeWithLiterals as gf, type ModeWithLiterals as gg, type PositionWithLiterals as gh, type MoveItemInCategoryRequestPositionWithLiterals as gi, type WebhookIdentityTypeWithLiterals as gj, type BulkSetItemCategoriesApplicationErrors as gk, type CommonQueryWithEntityContext as gl, type CommonSearchWithEntityContext as gm, onCategoryMoved as gn, onCategoryCreated as go, onCategoryDeleted as gp, onCategoryItemAddedToCategory as gq, onCategoryItemRemovedFromCategory as gr, onCategoryItemsArrangedInCategory as gs, onCategoryUpdated as gt, createCategory as gu, getCategory as gv, updateCategory as gw, deleteCategory as gx, queryCategories as gy, countCategories 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-CVjL1ZhJ.js';
3
+ export { f7 as AccountInfo, fa as AccountInfoMetadata, e_ as ActionEvent, dJ as Aggregation, dW as AggregationData, dK as AggregationKindOneOf, ed as AggregationResults, ee as AggregationResultsResultOneOf, e1 as AggregationResultsScalarResult, b5 as AggregationType, gf as AggregationTypeWithLiterals, aE as Alignment, fO as AlignmentWithLiterals, cj as AnchorData, d6 as App, cq as AppEmbedData, cr as AppEmbedDataAppDataOneOf, aG as AppType, fQ as AppTypeWithLiterals, eq as ApplicationError, aA as AspectRatio, fK as AspectRatioWithLiterals, cL as AudioData, cU as Backdrop, aP as BackdropType, fZ as BackdropTypeWithLiterals, bq as Background, c8 as BackgroundGradient, c_ as BackgroundImage, a9 as BackgroundType, fj as BackgroundTypeWithLiterals, cS as Banner, f8 as BaseEventMetadata, cO as BlockquoteData, cs as BookingData, bo as Border, cI as BorderColors, cJ as BorderWidths, bb as Breadcrumb, ba as BreadcrumbsInfo, er as BulkActionMetadata, eA as BulkAddItemToCategoriesRequest, f2 as BulkAddItemsToCategoryForMigrationRequest, f3 as BulkAddItemsToCategoryForMigrationResponse, ex as BulkAddItemsToCategoryRequest, eo as BulkCategoriesResult, f0 as BulkCreateCategoriesForMigrationRequest, f1 as BulkCreateCategoriesForMigrationResponse, eu as BulkDeleteCategoriesRequest, ev as BulkDeleteCategoriesResponse, ew as BulkDeleteCategoriesResponseBulkCategoriesResult, eB as BulkItemToCategoriesResult, ey as BulkItemsToCategoryResult, eD as BulkRemoveItemFromCategoriesRequest, eC as BulkRemoveItemsFromCategoryRequest, gk as BulkSetItemCategoriesApplicationErrors, fg as BulkSetItemCategoriesOptions, eP as BulkSetItemCategoriesRequest, eQ as BulkSetItemCategoriesResponse, et as BulkShowCategoriesRequest, en as BulkUpdateCategoriesRequest, cN as BulletedListData, bl as ButtonData, ad as ButtonDataType, fn as ButtonDataTypeWithLiterals, cu as ButtonStyles, cP as CaptionData, cY as CardData, cZ as CardDataBackground, aV as CardDataBackgroundType, g3 as CardDataBackgroundTypeWithLiterals, cx as CardStyles, fc as CategoriesQueryResult, dd as CategoryMoved, fd as CategoryQuerySpec, fe as CategorySearchSpec, eT as CategoryTreeNode, cH as CellStyle, bA as CodeBlockData, cD as CollapsibleListData, ck as ColorData, bp as Colors, gl as CommonQueryWithEntityContext, gm as CommonSearchWithEntityContext, dF as CompactCategory, el as CountCategoriesRequest, dj as CreateCategoryRequest, dk as CreateCategoryResponse, am as Crop, fw as CropWithLiterals, dz as CursorPaging, dB as CursorPagingMetadata, dw as CursorQuery, dx as CursorQueryPagingMethodOneOf, dH as CursorSearch, dI as CursorSearchPagingMethodOneOf, dC as Cursors, da as CustomTag, dR as DateHistogramAggregation, e9 as DateHistogramResult, eb as DateHistogramResults, ch as Decoration, ci as DecorationDataOneOf, ax as DecorationType, fH as DecorationTypeWithLiterals, dt as DeleteCategoryRequest, du as DeleteCategoryResponse, ef as DeprecatedSearchCategoriesWithOffsetRequest, ej as DeprecatedSearchCategoriesWithOffsetResponse, cf as Design, aS as DesignTarget, g0 as DesignTargetWithLiterals, cF as Dimensions, aI as Direction, fS as DirectionWithLiterals, bC as DividerData, ai as DividerDataAlignment, fs as DividerDataAlignmentWithLiterals, d1 as DocumentStyle, eU as DomainEvent, eV as DomainEventBodyOneOf, dl as DuplicateHandleErrorData, cB as EmbedData, e$ as Empty, eW as EntityCreatedEvent, eZ as EntityDeletedEvent, eY as EntityUpdatedEvent, ct as EventData, f9 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, fI as FontTypeWithLiterals, bS as GIF, bR as GIFData, ao as GIFType, fy as GIFTypeWithLiterals, bH as GalleryData, bN as GalleryOptions, bO as GalleryOptionsLayout, eO as GetArrangedItemsRequest, eR as GetCategoriesTreeRequest, eS as GetCategoriesTreeResponse, fb as GetCategoryBySlugOptions, dp as GetCategoryBySlugRequest, dq as GetCategoryBySlugResponse, dm as GetCategoryRequest, dn as GetCategoryResponse, bm as Gradient, aa as GradientType, fk as GradientTypeWithLiterals, ea as GroupByValueResults, bU as HTMLData, bV as HTMLDataDataOneOf, bT as HeadingData, bv as Height, f5 as IdentificationData, f6 as IdentificationDataIdOneOf, bJ as Image, bW as ImageData, bY as ImageDataStyles, aM as ImagePosition, aU as ImagePositionPosition, g2 as ImagePositionPositionWithLiterals, fW as ImagePositionWithLiterals, aL as ImageScalingScaling, fV as ImageScalingScalingWithLiterals, cv as ImageStyles, az as ImageStylesPosition, fJ as ImageStylesPositionWithLiterals, dM as IncludeMissingValuesOptions, aX as Indentation, g5 as IndentationWithLiterals, aH as InitialExpandedItems, fR as InitialExpandedItemsWithLiterals, b4 as Interval, ge as IntervalWithLiterals, d4 as InvalidateCache, d5 as InvalidateCacheGetByOneOf, bL as Item, de as ItemAddedToCategory, bM as ItemDataOneOf, ep as ItemMetadata, ez 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, fY as LayoutDataBackgroundTypeWithLiterals, ak as LayoutType, fu as LayoutTypeWithLiterals, fP as LayoutWithLiterals, ag as LineStyle, fq as LineStyleWithLiterals, bx as Link, cl as LinkData, by as LinkDataOneOf, bZ as LinkPreviewData, b_ as LinkPreviewDataStyles, eH as ListCategoriesForItemRequest, eI as ListCategoriesForItemsRequest, dD as ListCompactCategoriesByIdsRequest, dE as ListCompactCategoriesByIdsResponse, ff as ListItemsInCategoryOptionsPagingMethodOneOf, eE as ListItemsInCategoryRequest, eF as ListItemsInCategoryRequestPagingMethodOneOf, aW as ListStyle, g4 as ListStyleWithLiterals, eK as ListTreesRequest, cK as ListValue, b$ as MapData, eJ as MapItemToCategories, c0 as MapSettings, ar as MapType, fB as MapTypeWithLiterals, bI as Media, cm as MentionData, f4 as MessageEnvelope, d0 as Metadata, b1 as MissingValues, gb as MissingValuesWithLiterals, b6 as Mode, gg as ModeWithLiterals, em as MoveCategoryRequest, eL as MoveItemInCategoryRequest, b8 as MoveItemInCategoryRequestPosition, gi as MoveItemInCategoryRequestPositionWithLiterals, eM as MoveItemInCategoryResponse, dU as NestedAggregation, dS as NestedAggregationItem, dT as NestedAggregationItemKindOneOf, dZ as NestedAggregationResults, d_ as NestedAggregationResultsResultOneOf, b3 as NestedAggregationType, gd as NestedAggregationTypeWithLiterals, e6 as NestedResultValue, e7 as NestedResultValueResultOneOf, ec as NestedResults, e2 as NestedValueAggregationResult, bi as Node, bj as NodeDataOneOf, bk as NodeStyle, a8 as NodeType, fi as NodeTypeWithLiterals, aK as NullValue, fU as NullValueWithLiterals, cC as Oembed, eg as OffsetSearch, eh as OffsetSearchPagingMethodOneOf, c4 as Option, cc as OptionDesign, c7 as OptionLayout, cM as OrderedListData, al as Orientation, fv as OrientationWithLiterals, aN as Origin, fX as OriginWithLiterals, bG as PDFSettings, d7 as Page, db as Pages, ei as Paging, ek as PagingMetadata, eG as PagingMetadataV2, c1 as ParagraphData, bc as ParentCategory, c3 as Permissions, aC as Placement, fM as PlacementWithLiterals, cA as PlaybackOptions, br as PluginContainerData, ac as PluginContainerDataAlignment, fm 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, fG as PollDesignBackgroundTypeWithLiterals, c6 as PollLayout, av as PollLayoutDirection, fF as PollLayoutDirectionWithLiterals, au as PollLayoutType, fE as PollLayoutTypeWithLiterals, c5 as PollSettings, b7 as Position, gh as PositionWithLiterals, cy as PricingData, dv as QueryCategoriesRequest, dA as QueryCategoriesResponse, dP as RangeAggregation, dY as RangeAggregationResult, dL as RangeBucket, e4 as RangeResult, e0 as RangeResults, bz as Rel, a_ as RequestedFields, g8 as RequestedFieldsWithLiterals, aB as Resizing, fL as ResizingWithLiterals, aR as ResponsivenessBehaviour, f$ as ResponsivenessBehaviourWithLiterals, eX as RestoreInfo, e8 as Results, cw as RibbonStyles, bh as RichContent, dQ as ScalarAggregation, e5 as ScalarResult, b2 as ScalarType, gc as ScalarTypeWithLiterals, aT as Scaling, g1 as ScalingWithLiterals, dG as SearchCategoriesRequest, dV as SearchDetails, bd as SeoSchema, eN as SetArrangedItemsRequest, bg as Settings, cW as ShapeData, cX as ShapeDataStyles, aY as SingleEntityOpsRequestedFields, g6 as SingleEntityOpsRequestedFieldsWithLiterals, b0 as SortDirection, ga as SortDirectionWithLiterals, aZ as SortOrder, g7 as SortOrderWithLiterals, a$ as SortType, g9 as SortTypeWithLiterals, dy as Sorting, ap as Source, fz as SourceWithLiterals, bu as Spoiler, co as SpoilerData, bn as Stop, bw as Styles, bX as StylesBorder, aq as StylesPosition, fA as StylesPositionWithLiterals, cG as TableCellData, cE as TableData, bf as Tag, ae as Target, fo as TargetWithLiterals, af as TextAlignment, fp as TextAlignmentWithLiterals, cg as TextData, d2 as TextNodeStyle, bB as TextStyle, bQ as Thumbnails, an as ThumbnailsAlignment, fx as ThumbnailsAlignmentWithLiterals, c$ as TocData, aD as Type, fN as TypeWithLiterals, d8 as URI, dc as URIs, dr as UpdateCategoryRequest, ds as UpdateCategoryResponse, es as UpdateCategoryVisibilityRequest, dN as ValueAggregation, dO as ValueAggregationOptionsOneOf, dX as ValueAggregationResult, e3 as ValueResult, d$ as ValueResults, aJ as VerticalAlignment, aQ as VerticalAlignmentAlignment, f_ as VerticalAlignmentAlignmentWithLiterals, fT as VerticalAlignmentWithLiterals, bK as Video, cz as VideoData, aj as ViewMode, ft as ViewModeWithLiterals, as as ViewRole, fC as ViewRoleWithLiterals, at as VoteRole, fD as VoteRoleWithLiterals, b9 as WebhookIdentityType, gj as WebhookIdentityTypeWithLiterals, ah as Width, ab as WidthType, fl as WidthTypeWithLiterals, fr as WidthWithLiterals, fh as utils } from './categories-v1-category-categories.universal-CVjL1ZhJ.js';
4
4
 
5
5
  declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
6
6
  interface CreateCategorySignature {