@wix/auto_sdk_categories_categories 1.0.129 → 1.0.130

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-DibWCZU9.d.ts → categories-v1-category-categories.universal-1V0z-nfC.d.ts} +139 -6
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +34 -5
  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 +34 -5
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +140 -7
  9. package/build/cjs/meta.js +34 -5
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{categories-v1-category-categories.universal-DibWCZU9.d.mts → categories-v1-category-categories.universal-1V0z-nfC.d.mts} +139 -6
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +32 -5
  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 +32 -5
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +140 -7
  19. package/build/es/meta.mjs +32 -5
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{categories-v1-category-categories.universal-C4m4fBaR.d.ts → categories-v1-category-categories.universal-O63vPESH.d.ts} +139 -6
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +34 -5
  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 +34 -5
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +140 -7
  29. package/build/internal/cjs/meta.js +34 -5
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{categories-v1-category-categories.universal-C4m4fBaR.d.mts → categories-v1-category-categories.universal-O63vPESH.d.mts} +139 -6
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +32 -5
  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 +32 -5
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +140 -7
  39. package/build/internal/es/meta.mjs +32 -5
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -452,6 +452,8 @@ interface ButtonData {
452
452
  text?: string | null;
453
453
  /** Button link details. */
454
454
  link?: Link;
455
+ /** Node animation. */
456
+ animation?: Animation;
455
457
  }
456
458
  /** Background type */
457
459
  declare enum BackgroundType {
@@ -728,9 +730,90 @@ interface Rel {
728
730
  /** Indicates that this link protect referral information from being passed to the target website. */
729
731
  noreferrer?: boolean | null;
730
732
  }
733
+ interface Animation {
734
+ /** Animation kind. */
735
+ type?: TypeWithLiterals;
736
+ /** Entrance animation, played once when the node first enters the viewport. */
737
+ entrance?: EntranceAnimation;
738
+ }
739
+ declare enum Type {
740
+ /** Animations that play while the node is in view. */
741
+ VIEW = "VIEW"
742
+ }
743
+ /** @enumType */
744
+ type TypeWithLiterals = Type | 'VIEW';
745
+ interface EntranceAnimation {
746
+ /** The entrance effect to play. */
747
+ effect?: EntranceEffect;
748
+ /** Effect duration in milliseconds. Each effect has its own default. */
749
+ duration?: number | null;
750
+ /** Delay before the effect starts, in milliseconds. */
751
+ delay?: number | null;
752
+ }
753
+ interface EntranceEffect {
754
+ /** The entrance effect type. */
755
+ type?: EntranceEffectTypeWithLiterals;
756
+ /**
757
+ * Direction the effect enters from. Allowed values depend on the effect type (e.g. TOP/RIGHT/BOTTOM/LEFT, the diagonals with or without CENTER, corners, HORIZONTAL/VERTICAL, CLOCKWISE/COUNTER_CLOCKWISE).
758
+ * @maxLength 20
759
+ */
760
+ direction?: string | null;
761
+ /**
762
+ * Clip-path shape: ELLIPSE, CIRCLE, RECTANGLE, or DIAMOND (SHAPE).
763
+ * @maxLength 12
764
+ */
765
+ shape?: string | null;
766
+ /**
767
+ * Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
768
+ * @maxLength 100
769
+ */
770
+ easing?: string | null;
771
+ }
772
+ declare enum EntranceEffectType {
773
+ /** Fades in from fully transparent to fully opaque. */
774
+ FADE = "FADE",
775
+ /** Enters along a 3D arc path. */
776
+ ARC = "ARC",
777
+ /** Transitions from blurred to sharp. */
778
+ BLUR = "BLUR",
779
+ /** Bounces into place with an elastic curve. */
780
+ BOUNCE = "BOUNCE",
781
+ /** Shrinks down from a larger size. */
782
+ DROP = "DROP",
783
+ /** Expands from a point, scaling to full size. */
784
+ EXPAND = "EXPAND",
785
+ /** Flips into view with a 3D rotation. */
786
+ FLIP = "FLIP",
787
+ /** Drifts gently into place. */
788
+ FLOAT = "FLOAT",
789
+ /** Unfolds from an edge as if hinged. */
790
+ FOLD = "FOLD",
791
+ /** Glides in smoothly from off-screen. */
792
+ GLIDE = "GLIDE",
793
+ /** Progressively revealed by an expanding clip-path. */
794
+ REVEAL = "REVEAL",
795
+ /** Appears through an expanding geometric clip-path shape. */
796
+ SHAPE = "SHAPE",
797
+ /** Revealed through shutter-like strips. */
798
+ SHUTTERS = "SHUTTERS",
799
+ /** Slides in from one side. */
800
+ SLIDE = "SLIDE",
801
+ /** Spins into view while scaling up. */
802
+ SPIN = "SPIN",
803
+ /** Tilts in from the side with 3D rotation. */
804
+ TILT = "TILT",
805
+ /** Rotates into view around a corner pivot. */
806
+ TURN = "TURN",
807
+ /** Expands from its horizontal or vertical center. */
808
+ WINK = "WINK"
809
+ }
810
+ /** @enumType */
811
+ type EntranceEffectTypeWithLiterals = EntranceEffectType | 'FADE' | 'ARC' | 'BLUR' | 'BOUNCE' | 'DROP' | 'EXPAND' | 'FLIP' | 'FLOAT' | 'FOLD' | 'GLIDE' | 'REVEAL' | 'SHAPE' | 'SHUTTERS' | 'SLIDE' | 'SPIN' | 'TILT' | 'TURN' | 'WINK';
731
812
  interface CodeBlockData {
732
813
  /** Styling for the code block's text. */
733
814
  textStyle?: TextStyle;
815
+ /** Node animation. */
816
+ animation?: Animation;
734
817
  }
735
818
  interface TextStyle {
736
819
  /** Text alignment. Defaults to `AUTO`. */
@@ -763,6 +846,8 @@ interface DividerData {
763
846
  alignment?: DividerDataAlignmentWithLiterals;
764
847
  /** Visual styling for the divider lines. */
765
848
  styles?: DividerDataStyles;
849
+ /** Node animation. */
850
+ animation?: Animation;
766
851
  }
767
852
  declare enum LineCap {
768
853
  /** Square line endings. */
@@ -817,9 +902,9 @@ interface DividerDataStyles {
817
902
  * @maxSize 10
818
903
  */
819
904
  lineThickness?: number[];
820
- /** Dash length in pixels for dashed dividers. */
905
+ /** Visible dash length for dashed dividers, in pixels. The pattern is snapped to a whole number of dashes so that the first and last dash touch the divider's edges - narrower containers show fewer dashes at the same size. */
821
906
  dashLength?: number | null;
822
- /** Gap between dashes or dots in pixels. */
907
+ /** Visible gap between dashes or dots, in pixels. */
823
908
  dashGap?: number | null;
824
909
  /** Gap between divider lines in pixels. */
825
910
  lineGap?: number | null;
@@ -846,6 +931,8 @@ interface FileData {
846
931
  path?: string | null;
847
932
  /** File size in KB. */
848
933
  sizeInKb?: string | null;
934
+ /** Node animation. */
935
+ animation?: Animation;
849
936
  }
850
937
  declare enum ViewMode {
851
938
  /** No PDF view */
@@ -906,6 +993,8 @@ interface GalleryData {
906
993
  disableExpand?: boolean | null;
907
994
  /** Sets whether the gallery's download button is disabled. Defaults to `false`. */
908
995
  disableDownload?: boolean | null;
996
+ /** Node animation. */
997
+ animation?: Animation;
909
998
  }
910
999
  interface Media {
911
1000
  /** The source for the media's data. */
@@ -1049,6 +1138,8 @@ interface GIFData {
1049
1138
  width?: number;
1050
1139
  /** Type of GIF (Sticker or NORMAL). Defaults to `NORMAL`. */
1051
1140
  gifType?: GIFTypeWithLiterals;
1141
+ /** Node animation. */
1142
+ animation?: Animation;
1052
1143
  }
1053
1144
  interface GIF {
1054
1145
  /**
@@ -1082,6 +1173,8 @@ interface HeadingData {
1082
1173
  indentation?: number | null;
1083
1174
  /** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
1084
1175
  renderedLevel?: number | null;
1176
+ /** Node animation. */
1177
+ animation?: Animation;
1085
1178
  }
1086
1179
  interface HTMLData extends HTMLDataDataOneOf {
1087
1180
  /** The URL for the HTML code for the node. */
@@ -1101,6 +1194,8 @@ interface HTMLData extends HTMLDataDataOneOf {
1101
1194
  source?: SourceWithLiterals;
1102
1195
  /** If container height is aligned with its content height. Defaults to `true`. */
1103
1196
  autoHeight?: boolean | null;
1197
+ /** Node animation. */
1198
+ animation?: Animation;
1104
1199
  }
1105
1200
  /** @oneof */
1106
1201
  interface HTMLDataDataOneOf {
@@ -1150,6 +1245,8 @@ interface ImageData {
1150
1245
  crop?: ImageDataCrop;
1151
1246
  /** Optional shape mask applied to the visible crop. Supported values: CIRCLE, OVAL, STAR, PENTAGON, HEXAGON, TRIANGLE, HEART, RHOMBUS, FLUID, WINDOW. */
1152
1247
  cropShape?: string | null;
1248
+ /** Node animation. */
1249
+ animation?: Animation;
1153
1250
  }
1154
1251
  interface StylesBorder {
1155
1252
  /** Border width in pixels. */
@@ -1191,6 +1288,8 @@ interface LinkPreviewData {
1191
1288
  html?: string | null;
1192
1289
  /** Styling for the link preview. */
1193
1290
  styles?: LinkPreviewDataStyles;
1291
+ /** Node animation. */
1292
+ animation?: Animation;
1194
1293
  }
1195
1294
  declare enum StylesPosition {
1196
1295
  /** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
@@ -1286,6 +1385,8 @@ interface ParagraphData {
1286
1385
  indentation?: number | null;
1287
1386
  /** Paragraph level */
1288
1387
  level?: number | null;
1388
+ /** Node animation. */
1389
+ animation?: Animation;
1289
1390
  }
1290
1391
  interface PollData {
1291
1392
  /** Styling for the poll's container. */
@@ -1296,6 +1397,8 @@ interface PollData {
1296
1397
  layout?: PollDataLayout;
1297
1398
  /** Styling for the poll and voting options. */
1298
1399
  design?: Design;
1400
+ /** Node animation. */
1401
+ animation?: Animation;
1299
1402
  }
1300
1403
  declare enum ViewRole {
1301
1404
  /** Only Poll creator can view the results */
@@ -1654,6 +1757,8 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
1654
1757
  containerData?: PluginContainerData;
1655
1758
  /** Pricing data for embedded Wix App content. */
1656
1759
  pricingData?: PricingData;
1760
+ /** Node animation. */
1761
+ animation?: Animation;
1657
1762
  }
1658
1763
  /** @oneof */
1659
1764
  interface AppEmbedDataAppDataOneOf {
@@ -1696,14 +1801,14 @@ declare enum Placement {
1696
1801
  }
1697
1802
  /** @enumType */
1698
1803
  type PlacementWithLiterals = Placement | 'IMAGE' | 'PRODUCT_INFO';
1699
- declare enum Type {
1804
+ declare enum CardStylesType {
1700
1805
  /** Card with visible border and background */
1701
1806
  CONTAINED = "CONTAINED",
1702
1807
  /** Card without visible border */
1703
1808
  FRAMELESS = "FRAMELESS"
1704
1809
  }
1705
1810
  /** @enumType */
1706
- type TypeWithLiterals = Type | 'CONTAINED' | 'FRAMELESS';
1811
+ type CardStylesTypeWithLiterals = CardStylesType | 'CONTAINED' | 'FRAMELESS';
1707
1812
  declare enum Alignment {
1708
1813
  /** Content aligned to start (left in LTR layouts, right in RTL layouts) */
1709
1814
  START = "START",
@@ -1839,7 +1944,7 @@ interface CardStyles {
1839
1944
  /** Card border radius in pixels. */
1840
1945
  borderRadius?: number | null;
1841
1946
  /** Card type. Defaults to `CONTAINED`. */
1842
- type?: TypeWithLiterals;
1947
+ type?: CardStylesTypeWithLiterals;
1843
1948
  /** Content alignment. Defaults to `START`. */
1844
1949
  alignment?: AlignmentWithLiterals;
1845
1950
  /** Layout for title and price. Defaults to `STACKED`. */
@@ -1895,6 +2000,8 @@ interface VideoData {
1895
2000
  title?: string | null;
1896
2001
  /** Video options. */
1897
2002
  options?: PlaybackOptions;
2003
+ /** Node animation. */
2004
+ animation?: Animation;
1898
2005
  }
1899
2006
  interface PlaybackOptions {
1900
2007
  /** Sets whether the media will automatically start playing. */
@@ -1911,6 +2018,8 @@ interface EmbedData {
1911
2018
  oembed?: Oembed;
1912
2019
  /** Origin asset source. */
1913
2020
  src?: string | null;
2021
+ /** Node animation. */
2022
+ animation?: Animation;
1914
2023
  }
1915
2024
  interface Oembed {
1916
2025
  /** The resource type. */
@@ -1955,6 +2064,8 @@ interface CollapsibleListData {
1955
2064
  direction?: DirectionWithLiterals;
1956
2065
  /** If `true`, The collapsible item will appear in search results as an FAQ. */
1957
2066
  isQapageData?: boolean | null;
2067
+ /** Node animation. */
2068
+ animation?: Animation;
1958
2069
  }
1959
2070
  declare enum InitialExpandedItems {
1960
2071
  /** First item will be expended initally */
@@ -1997,6 +2108,8 @@ interface TableData {
1997
2108
  cellPadding?: number[];
1998
2109
  /** Table's alternative text. */
1999
2110
  altText?: string | null;
2111
+ /** Node animation. */
2112
+ animation?: Animation;
2000
2113
  }
2001
2114
  interface Dimensions {
2002
2115
  /** An array representing relative width of each column in relation to the other columns. */
@@ -2105,6 +2218,8 @@ interface AudioData {
2105
2218
  authorName?: string | null;
2106
2219
  /** An HTML version of the audio node. */
2107
2220
  html?: string | null;
2221
+ /** Node animation. */
2222
+ animation?: Animation;
2108
2223
  }
2109
2224
  interface OrderedListData {
2110
2225
  /** Indentation level from 0-4. */
@@ -2113,16 +2228,22 @@ interface OrderedListData {
2113
2228
  offset?: number | null;
2114
2229
  /** List start number. */
2115
2230
  start?: number | null;
2231
+ /** Node animation. */
2232
+ animation?: Animation;
2116
2233
  }
2117
2234
  interface BulletedListData {
2118
2235
  /** Indentation level from 0-4. */
2119
2236
  indentation?: number;
2120
2237
  /** Offset level from 0-4. */
2121
2238
  offset?: number | null;
2239
+ /** Node animation. */
2240
+ animation?: Animation;
2122
2241
  }
2123
2242
  interface BlockquoteData {
2124
2243
  /** Indentation level from 1-4. */
2125
2244
  indentation?: number;
2245
+ /** Node animation. */
2246
+ animation?: Animation;
2126
2247
  }
2127
2248
  interface CaptionData {
2128
2249
  textStyle?: TextStyle;
@@ -2180,6 +2301,8 @@ interface LayoutData {
2180
2301
  background?: LayoutDataBackground;
2181
2302
  /** Backdrop styling (color or gradient). */
2182
2303
  backdrop?: Backdrop;
2304
+ /** Node animation. */
2305
+ animation?: Animation;
2183
2306
  }
2184
2307
  declare enum ImageScalingScaling {
2185
2308
  /** Auto image scaling */
@@ -2331,6 +2454,8 @@ interface ShapeData {
2331
2454
  shape?: Media;
2332
2455
  /** Styling for the shape. */
2333
2456
  styles?: ShapeDataStyles;
2457
+ /** Node animation. */
2458
+ animation?: Animation;
2334
2459
  }
2335
2460
  interface ShapeDataStyles {
2336
2461
  /**
@@ -2433,6 +2558,8 @@ interface TocData {
2433
2558
  color?: string | null;
2434
2559
  /** Indentation style. Default: NESTED. */
2435
2560
  indentation?: IndentationWithLiterals;
2561
+ /** Node animation. */
2562
+ animation?: Animation;
2436
2563
  }
2437
2564
  /** List style. */
2438
2565
  declare enum ListStyle {
@@ -2479,6 +2606,8 @@ interface SmartBlockData {
2479
2606
  borderWidth?: number | null;
2480
2607
  /** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
2481
2608
  borderRadius?: number | null;
2609
+ /** Node animation. */
2610
+ animation?: Animation;
2482
2611
  }
2483
2612
  /** Layout type of the smart block */
2484
2613
  declare enum SmartBlockDataType {
@@ -2582,10 +2711,14 @@ interface CheckboxListData {
2582
2711
  indentation?: number;
2583
2712
  /** Offset level from 0-4. */
2584
2713
  offset?: number | null;
2714
+ /** Node animation. */
2715
+ animation?: Animation;
2585
2716
  }
2586
2717
  interface ListItemNodeData {
2587
2718
  /** Checkbox list item state. Defaults to `false`. */
2588
2719
  checked?: boolean | null;
2720
+ /** Node animation. */
2721
+ animation?: Animation;
2589
2722
  }
2590
2723
  interface Metadata {
2591
2724
  /** Schema version. */
@@ -6000,4 +6133,4 @@ interface BulkSetItemCategoriesOptions {
6000
6133
  treeReference: TreeReference;
6001
6134
  }
6002
6135
 
6003
- export { type SetArrangedItemsApplicationErrors as $, type BulkAddItemToCategoriesOptions as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkAddItemToCategoriesResponse as E, type BulkAddItemToCategoriesApplicationErrors as F, type GetCategoryOptions as G, type BulkRemoveItemsFromCategoryOptions as H, type ItemReference as I, type BulkRemoveItemsFromCategoryResponse as J, type BulkRemoveItemsFromCategoryApplicationErrors as K, type BulkRemoveItemFromCategoriesOptions as L, type MoveCategoryOptions as M, type BulkRemoveItemFromCategoriesResponse as N, type BulkRemoveItemFromCategoriesApplicationErrors as O, type ListItemsInCategoryOptions as P, type ListItemsInCategoryResponse as Q, type ListCategoriesForItemOptions as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type ListCategoriesForItemResponse as V, type ListCategoriesForItemsOptions as W, type ListCategoriesForItemsResponse as X, type ListTreesResponse as Y, type SetArrangedItemsOptions as Z, type SetArrangedItemsResponse as _, type CreateCategoryOptions as a, ImagePositionPosition as a$, type GetArrangedItemsResponse as a0, type CategoryMovedEnvelope as a1, type CategoryCreatedEnvelope as a2, type CategoryDeletedEnvelope as a3, type CategoryItemAddedToCategoryEnvelope as a4, type CategoryItemRemovedFromCategoryEnvelope as a5, type CategoryItemsArrangedInCategoryEnvelope as a6, type CategoryUpdatedEnvelope as a7, type CategoryQuery as a8, type QueryCategoriesOptions as a9, PollLayoutDirection as aA, PollDesignBackgroundType as aB, DecorationType as aC, FontType as aD, Variant as aE, ImageStylesPosition as aF, AspectRatio as aG, Resizing as aH, Placement as aI, Type as aJ, Alignment as aK, Layout as aL, AppType as aM, InitialExpandedItems as aN, Direction as aO, VerticalAlignment as aP, NullValue as aQ, ImageScalingScaling as aR, ImagePosition as aS, LayoutDataBackgroundType as aT, Origin as aU, BannerPosition as aV, BackdropType as aW, VerticalAlignmentAlignment as aX, ResponsivenessBehaviour as aY, DesignTarget as aZ, Scaling as a_, typedQueryCategories as aa, type CategoriesQueryBuilder as ab, NodeType as ac, BackgroundType as ad, GradientType as ae, WidthType as af, PluginContainerDataAlignment as ag, ButtonDataType as ah, Target as ai, TextAlignment as aj, LineCap as ak, LineStyle as al, Width as am, DividerDataAlignment as an, ViewMode as ao, LayoutType as ap, Orientation as aq, Crop as ar, ThumbnailsAlignment as as, GIFType as at, Source as au, StylesPosition as av, MapType as aw, ViewRole as ax, VoteRole as ay, PollLayoutType as az, type CreateCategoryApplicationErrors as b, type GIFData as b$, CardDataBackgroundType as b0, ListStyle as b1, Indentation as b2, SmartBlockDataType as b3, ColumnSize as b4, SingleEntityOpsRequestedFields as b5, SortOrder as b6, RequestedFields as b7, SortType as b8, SortDirection as b9, type PluginContainerData as bA, type PluginContainerDataWidth as bB, type PluginContainerDataWidthDataOneOf as bC, type Spoiler as bD, type Height as bE, type Styles as bF, type Link as bG, type LinkDataOneOf as bH, type Rel as bI, type CodeBlockData as bJ, type TextStyle as bK, type DividerData as bL, type DividerDataStyles as bM, type FileData as bN, type FileSource as bO, type FileSourceDataOneOf as bP, type PDFSettings as bQ, type GalleryData as bR, type Media as bS, type Image as bT, type Video as bU, type Item as bV, type ItemDataOneOf as bW, type GalleryOptions as bX, type GalleryOptionsLayout as bY, type ItemStyle as bZ, type Thumbnails as b_, MissingValues as ba, ScalarType as bb, NestedAggregationType as bc, Interval as bd, AggregationType as be, Mode as bf, Position as bg, MoveItemInCategoryRequestPosition as bh, WebhookIdentityType as bi, type BreadcrumbsInfo as bj, type Breadcrumb as bk, type ParentCategory as bl, type SeoSchema as bm, type Keyword as bn, type Tag as bo, type Settings as bp, type RichContent as bq, type Node as br, type NodeDataOneOf as bs, type NodeStyle as bt, type ButtonData as bu, type Gradient as bv, type Stop as bw, type Border as bx, type Colors as by, type Background as bz, type CreateCategoryValidationErrors as c, type CaptionData as c$, type GIF as c0, type HeadingData as c1, type HTMLData as c2, type HTMLDataDataOneOf as c3, type ImageData as c4, type StylesBorder as c5, type ImageDataStyles as c6, type ImageDataCrop as c7, type LinkPreviewData as c8, type LinkPreviewDataStyles as c9, type FontFamilyData as cA, type SketchData as cB, type AppEmbedData as cC, type AppEmbedDataAppDataOneOf as cD, type BookingData as cE, type EventData as cF, type ButtonStyles as cG, type ImageStyles as cH, type RibbonStyles as cI, type CardStyles as cJ, type PricingData as cK, type VideoData as cL, type PlaybackOptions as cM, type EmbedData as cN, type Oembed as cO, type CollapsibleListData as cP, type TableData as cQ, type Dimensions as cR, type TableCellData as cS, type CellStyle as cT, type BorderColors as cU, type BorderWidths as cV, type ListValue as cW, type AudioData as cX, type OrderedListData as cY, type BulletedListData as cZ, type BlockquoteData as c_, type MapData as ca, type MapSettings as cb, type ParagraphData as cc, type PollData as cd, type Permissions as ce, type Option as cf, type PollSettings as cg, type PollLayout as ch, type OptionLayout as ci, type BackgroundGradient as cj, type PollDesignBackground as ck, type PollDesignBackgroundBackgroundOneOf as cl, type PollDesign as cm, type OptionDesign as cn, type Poll as co, type PollDataLayout as cp, type Design as cq, type TextData as cr, type Decoration as cs, type DecorationDataOneOf as ct, type AnchorData as cu, type ColorData as cv, type LinkData as cw, type MentionData as cx, type FontSizeData as cy, type SpoilerData as cz, type GetCategoryBySlugOptions as d, type IncludeMissingValuesOptions as d$, type LayoutData as d0, type LayoutDataBackground as d1, type LayoutDataBackgroundImage as d2, type Banner as d3, type Backdrop as d4, type LayoutCellData as d5, type ShapeData as d6, type ShapeDataStyles as d7, type CardData as d8, type CardDataBackground as d9, type CreateCategoryRequest as dA, type CreateCategoryResponse as dB, type DuplicateHandleErrorData as dC, type GetCategoryRequest as dD, type GetCategoryResponse as dE, type GetCategoryBySlugRequest as dF, type UpdateCategoryRequest as dG, type UpdateCategoryResponse as dH, type DeleteCategoryRequest as dI, type DeleteCategoryResponse as dJ, type QueryCategoriesRequest as dK, type CursorQuery as dL, type CursorQueryPagingMethodOneOf as dM, type Sorting as dN, type CursorPaging as dO, type QueryCategoriesResponse as dP, type CursorPagingMetadata as dQ, type Cursors as dR, type ListCompactCategoriesByIdsRequest as dS, type ListCompactCategoriesByIdsResponse as dT, type CompactCategory as dU, type SearchCategoriesRequest as dV, type CursorSearch as dW, type CursorSearchPagingMethodOneOf as dX, type Aggregation as dY, type AggregationKindOneOf as dZ, type RangeBucket as d_, type BackgroundImage as da, type TocData as db, type SmartBlockData as dc, type SmartBlockCellData as dd, type CheckboxListData as de, type ListItemNodeData as df, type Metadata as dg, type DocumentStyle as dh, type TextNodeStyle as di, type ExtendedFields as dj, type InvalidateCache as dk, type InvalidateCacheGetByOneOf as dl, type App as dm, type Page as dn, type URI as dp, type File as dq, type CustomTag as dr, type Pages as ds, type URIs as dt, type CategoryMoved as du, type ItemAddedToCategory as dv, type ItemsAddedToCategory as dw, type ItemRemovedFromCategory as dx, type ItemsRemovedFromCategory as dy, type ItemsArrangedInCategory as dz, type GetCategoryBySlugResponse as e, type BulkSetItemCategoriesRequest as e$, type ValueAggregation as e0, type ValueAggregationOptionsOneOf as e1, type RangeAggregation as e2, type ScalarAggregation as e3, type DateHistogramAggregation as e4, type NestedAggregationItem as e5, type NestedAggregationItemKindOneOf as e6, type NestedAggregation as e7, type SearchDetails as e8, type AggregationData as e9, type CountCategoriesRequest as eA, type MoveCategoryRequest as eB, type BulkUpdateCategoriesRequest as eC, type BulkCategoriesResult as eD, type ItemMetadata as eE, type ApplicationError as eF, type BulkActionMetadata as eG, type UpdateCategoryVisibilityRequest as eH, type BulkShowCategoriesRequest as eI, type BulkAddItemsToCategoryRequest as eJ, type BulkItemsToCategoryResult as eK, type ItemReferenceMetadata as eL, type BulkAddItemToCategoriesRequest as eM, type BulkItemToCategoriesResult as eN, type BulkRemoveItemsFromCategoryRequest as eO, type BulkRemoveItemFromCategoriesRequest as eP, type ListItemsInCategoryRequest as eQ, type ListItemsInCategoryRequestPagingMethodOneOf as eR, type PagingMetadataV2 as eS, type ListCategoriesForItemRequest as eT, type ListCategoriesForItemsRequest as eU, type MapItemToCategories as eV, type ListTreesRequest as eW, type MoveItemInCategoryRequest as eX, type MoveItemInCategoryResponse as eY, type SetArrangedItemsRequest as eZ, type GetArrangedItemsRequest as e_, type ValueAggregationResult as ea, type RangeAggregationResult as eb, type NestedAggregationResults as ec, type NestedAggregationResultsResultOneOf as ed, type ValueResults as ee, type RangeResults as ef, type AggregationResultsScalarResult as eg, type NestedValueAggregationResult as eh, type ValueResult as ei, type RangeResult as ej, type ScalarResult as ek, type NestedResultValue as el, type NestedResultValueResultOneOf as em, type Results as en, type DateHistogramResult as eo, type GroupByValueResults as ep, type DateHistogramResults as eq, type NestedResults as er, type AggregationResults as es, type AggregationResultsResultOneOf as et, type DeprecatedSearchCategoriesWithOffsetRequest as eu, type OffsetSearch as ev, type OffsetSearchPagingMethodOneOf as ew, type Paging as ex, type DeprecatedSearchCategoriesWithOffsetResponse as ey, type PagingMetadata as ez, type UpdateCategoryOptions as f, type ResizingWithLiterals as f$, type BulkSetItemCategoriesResponse as f0, type GetCategoriesTreeRequest as f1, type GetCategoriesTreeResponse as f2, type CategoryTreeNode as f3, type DomainEvent as f4, type DomainEventBodyOneOf as f5, type EntityCreatedEvent as f6, type RestoreInfo as f7, type EntityUpdatedEvent as f8, type EntityDeletedEvent as f9, type PluginContainerDataAlignmentWithLiterals as fA, type ButtonDataTypeWithLiterals as fB, type TargetWithLiterals as fC, type TextAlignmentWithLiterals as fD, type LineCapWithLiterals as fE, type LineStyleWithLiterals as fF, type WidthWithLiterals as fG, type DividerDataAlignmentWithLiterals as fH, type ViewModeWithLiterals as fI, type LayoutTypeWithLiterals as fJ, type OrientationWithLiterals as fK, type CropWithLiterals as fL, type ThumbnailsAlignmentWithLiterals as fM, type GIFTypeWithLiterals as fN, type SourceWithLiterals as fO, type StylesPositionWithLiterals as fP, type MapTypeWithLiterals as fQ, type ViewRoleWithLiterals as fR, type VoteRoleWithLiterals as fS, type PollLayoutTypeWithLiterals as fT, type PollLayoutDirectionWithLiterals as fU, type PollDesignBackgroundTypeWithLiterals as fV, type DecorationTypeWithLiterals as fW, type FontTypeWithLiterals as fX, type VariantWithLiterals as fY, type ImageStylesPositionWithLiterals as fZ, type AspectRatioWithLiterals as f_, type ActionEvent as fa, type Empty as fb, type BulkCreateCategoriesForMigrationRequest as fc, type BulkCreateCategoriesForMigrationResponse as fd, type BulkAddItemsToCategoryForMigrationRequest as fe, type BulkAddItemsToCategoryForMigrationResponse as ff, type SetArrangedItemsForMigrationRequest as fg, type SetArrangedItemsForMigrationResponse as fh, type CatalogRollbackRequested as fi, type MessageEnvelope as fj, type IdentificationData as fk, type IdentificationDataIdOneOf as fl, type AccountInfo as fm, type BaseEventMetadata as fn, type EventMetadata as fo, type AccountInfoMetadata as fp, type CategoriesQueryResult as fq, type CategoryQuerySpec as fr, type CategorySearchSpec as fs, type ListItemsInCategoryOptionsPagingMethodOneOf as ft, type BulkSetItemCategoriesOptions as fu, utils as fv, type NodeTypeWithLiterals as fw, type BackgroundTypeWithLiterals as fx, type GradientTypeWithLiterals as fy, type WidthTypeWithLiterals as fz, type UpdateCategoryApplicationErrors as g, bulkRemoveItemFromCategories as g$, type PlacementWithLiterals as g0, type TypeWithLiterals as g1, type AlignmentWithLiterals as g2, type LayoutWithLiterals as g3, type AppTypeWithLiterals as g4, type InitialExpandedItemsWithLiterals as g5, type DirectionWithLiterals as g6, type VerticalAlignmentWithLiterals as g7, type NullValueWithLiterals as g8, type ImageScalingScalingWithLiterals as g9, type PositionWithLiterals as gA, type MoveItemInCategoryRequestPositionWithLiterals as gB, type WebhookIdentityTypeWithLiterals as gC, type BulkSetItemCategoriesApplicationErrors as gD, type CommonQueryWithEntityContext as gE, type CommonSearchWithEntityContext as gF, onCategoryMoved as gG, onCategoryCreated as gH, onCategoryDeleted as gI, onCategoryItemAddedToCategory as gJ, onCategoryItemRemovedFromCategory as gK, onCategoryItemsArrangedInCategory as gL, onCategoryUpdated as gM, createCategory as gN, getCategory as gO, getCategoryBySlug as gP, updateCategory as gQ, deleteCategory as gR, queryCategories as gS, countCategories as gT, moveCategory as gU, bulkUpdateCategories as gV, updateCategoryVisibility as gW, bulkShowCategories as gX, bulkAddItemsToCategory as gY, bulkAddItemToCategories as gZ, bulkRemoveItemsFromCategory as g_, type ImagePositionWithLiterals as ga, type LayoutDataBackgroundTypeWithLiterals as gb, type OriginWithLiterals as gc, type BannerPositionWithLiterals as gd, type BackdropTypeWithLiterals as ge, type VerticalAlignmentAlignmentWithLiterals as gf, type ResponsivenessBehaviourWithLiterals as gg, type DesignTargetWithLiterals as gh, type ScalingWithLiterals as gi, type ImagePositionPositionWithLiterals as gj, type CardDataBackgroundTypeWithLiterals as gk, type ListStyleWithLiterals as gl, type IndentationWithLiterals as gm, type SmartBlockDataTypeWithLiterals as gn, type ColumnSizeWithLiterals as go, type SingleEntityOpsRequestedFieldsWithLiterals as gp, type SortOrderWithLiterals as gq, type RequestedFieldsWithLiterals as gr, type SortTypeWithLiterals as gs, type SortDirectionWithLiterals as gt, type MissingValuesWithLiterals as gu, type ScalarTypeWithLiterals as gv, type NestedAggregationTypeWithLiterals as gw, type IntervalWithLiterals as gx, type AggregationTypeWithLiterals as gy, type ModeWithLiterals as gz, type UpdateCategoryValidationErrors as h, listItemsInCategory as h0, listCategoriesForItem as h1, listCategoriesForItems as h2, listTrees as h3, setArrangedItems as h4, getArrangedItems as h5, type CategorySearch as i, type SearchCategoriesResponse as j, type CountCategoriesOptions as k, type CountCategoriesResponse as l, type MoveCategoryResponse as m, type MoveCategoryApplicationErrors as n, type MaskedCategory as o, type BulkUpdateCategoriesResponse as p, type BulkUpdateCategoriesApplicationErrors as q, type BulkUpdateCategoriesValidationErrors as r, type UpdateCategoryVisibilityOptions as s, type UpdateCategoryVisibilityResponse as t, type UpdateCategoryVisibilityApplicationErrors as u, type BulkShowCategoriesOptions as v, type BulkShowCategoriesResponse as w, type BulkAddItemsToCategoryOptions as x, type BulkAddItemsToCategoryResponse as y, type BulkAddItemsToCategoryApplicationErrors as z };
6136
+ export { type SetArrangedItemsApplicationErrors as $, type BulkAddItemToCategoriesOptions as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkAddItemToCategoriesResponse as E, type BulkAddItemToCategoriesApplicationErrors as F, type GetCategoryOptions as G, type BulkRemoveItemsFromCategoryOptions as H, type ItemReference as I, type BulkRemoveItemsFromCategoryResponse as J, type BulkRemoveItemsFromCategoryApplicationErrors as K, type BulkRemoveItemFromCategoriesOptions as L, type MoveCategoryOptions as M, type BulkRemoveItemFromCategoriesResponse as N, type BulkRemoveItemFromCategoriesApplicationErrors as O, type ListItemsInCategoryOptions as P, type ListItemsInCategoryResponse as Q, type ListCategoriesForItemOptions as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type ListCategoriesForItemResponse as V, type ListCategoriesForItemsOptions as W, type ListCategoriesForItemsResponse as X, type ListTreesResponse as Y, type SetArrangedItemsOptions as Z, type SetArrangedItemsResponse as _, type CreateCategoryOptions as a, DesignTarget as a$, type GetArrangedItemsResponse as a0, type CategoryMovedEnvelope as a1, type CategoryCreatedEnvelope as a2, type CategoryDeletedEnvelope as a3, type CategoryItemAddedToCategoryEnvelope as a4, type CategoryItemRemovedFromCategoryEnvelope as a5, type CategoryItemsArrangedInCategoryEnvelope as a6, type CategoryUpdatedEnvelope as a7, type CategoryQuery as a8, type QueryCategoriesOptions as a9, VoteRole as aA, PollLayoutType as aB, PollLayoutDirection as aC, PollDesignBackgroundType as aD, DecorationType as aE, FontType as aF, Variant as aG, ImageStylesPosition as aH, AspectRatio as aI, Resizing as aJ, Placement as aK, CardStylesType as aL, Alignment as aM, Layout as aN, AppType as aO, InitialExpandedItems as aP, Direction as aQ, VerticalAlignment as aR, NullValue as aS, ImageScalingScaling as aT, ImagePosition as aU, LayoutDataBackgroundType as aV, Origin as aW, BannerPosition as aX, BackdropType as aY, VerticalAlignmentAlignment as aZ, ResponsivenessBehaviour as a_, typedQueryCategories as aa, type CategoriesQueryBuilder as ab, NodeType as ac, BackgroundType as ad, GradientType as ae, WidthType as af, PluginContainerDataAlignment as ag, ButtonDataType as ah, Target as ai, Type as aj, EntranceEffectType as ak, TextAlignment as al, LineCap as am, LineStyle as an, Width as ao, DividerDataAlignment as ap, ViewMode as aq, LayoutType as ar, Orientation as as, Crop as at, ThumbnailsAlignment as au, GIFType as av, Source as aw, StylesPosition as ax, MapType as ay, ViewRole as az, type CreateCategoryApplicationErrors as b, type ItemDataOneOf as b$, Scaling as b0, ImagePositionPosition as b1, CardDataBackgroundType as b2, ListStyle as b3, Indentation as b4, SmartBlockDataType as b5, ColumnSize as b6, SingleEntityOpsRequestedFields as b7, SortOrder as b8, RequestedFields as b9, type Colors as bA, type Background as bB, type PluginContainerData as bC, type PluginContainerDataWidth as bD, type PluginContainerDataWidthDataOneOf as bE, type Spoiler as bF, type Height as bG, type Styles as bH, type Link as bI, type LinkDataOneOf as bJ, type Rel as bK, type Animation as bL, type EntranceAnimation as bM, type EntranceEffect as bN, type CodeBlockData as bO, type TextStyle as bP, type DividerData as bQ, type DividerDataStyles as bR, type FileData as bS, type FileSource as bT, type FileSourceDataOneOf as bU, type PDFSettings as bV, type GalleryData as bW, type Media as bX, type Image as bY, type Video as bZ, type Item as b_, SortType as ba, SortDirection as bb, MissingValues as bc, ScalarType as bd, NestedAggregationType as be, Interval as bf, AggregationType as bg, Mode as bh, Position as bi, MoveItemInCategoryRequestPosition as bj, WebhookIdentityType as bk, type BreadcrumbsInfo as bl, type Breadcrumb as bm, type ParentCategory as bn, type SeoSchema as bo, type Keyword as bp, type Tag as bq, type Settings as br, type RichContent as bs, type Node as bt, type NodeDataOneOf as bu, type NodeStyle as bv, type ButtonData as bw, type Gradient as bx, type Stop as by, type Border as bz, type CreateCategoryValidationErrors as c, type ListValue as c$, type GalleryOptions as c0, type GalleryOptionsLayout as c1, type ItemStyle as c2, type Thumbnails as c3, type GIFData as c4, type GIF as c5, type HeadingData as c6, type HTMLData as c7, type HTMLDataDataOneOf as c8, type ImageData as c9, type ColorData as cA, type LinkData as cB, type MentionData as cC, type FontSizeData as cD, type SpoilerData as cE, type FontFamilyData as cF, type SketchData as cG, type AppEmbedData as cH, type AppEmbedDataAppDataOneOf as cI, type BookingData as cJ, type EventData as cK, type ButtonStyles as cL, type ImageStyles as cM, type RibbonStyles as cN, type CardStyles as cO, type PricingData as cP, type VideoData as cQ, type PlaybackOptions as cR, type EmbedData as cS, type Oembed as cT, type CollapsibleListData as cU, type TableData as cV, type Dimensions as cW, type TableCellData as cX, type CellStyle as cY, type BorderColors as cZ, type BorderWidths as c_, type StylesBorder as ca, type ImageDataStyles as cb, type ImageDataCrop as cc, type LinkPreviewData as cd, type LinkPreviewDataStyles as ce, type MapData as cf, type MapSettings as cg, type ParagraphData as ch, type PollData as ci, type Permissions as cj, type Option as ck, type PollSettings as cl, type PollLayout as cm, type OptionLayout as cn, type BackgroundGradient as co, type PollDesignBackground as cp, type PollDesignBackgroundBackgroundOneOf as cq, type PollDesign as cr, type OptionDesign as cs, type Poll as ct, type PollDataLayout as cu, type Design as cv, type TextData as cw, type Decoration as cx, type DecorationDataOneOf as cy, type AnchorData as cz, type GetCategoryBySlugOptions as d, type CursorSearch as d$, type AudioData as d0, type OrderedListData as d1, type BulletedListData as d2, type BlockquoteData as d3, type CaptionData as d4, type LayoutData as d5, type LayoutDataBackground as d6, type LayoutDataBackgroundImage as d7, type Banner as d8, type Backdrop as d9, type ItemAddedToCategory as dA, type ItemsAddedToCategory as dB, type ItemRemovedFromCategory as dC, type ItemsRemovedFromCategory as dD, type ItemsArrangedInCategory as dE, type CreateCategoryRequest as dF, type CreateCategoryResponse as dG, type DuplicateHandleErrorData as dH, type GetCategoryRequest as dI, type GetCategoryResponse as dJ, type GetCategoryBySlugRequest as dK, type UpdateCategoryRequest as dL, type UpdateCategoryResponse as dM, type DeleteCategoryRequest as dN, type DeleteCategoryResponse as dO, type QueryCategoriesRequest as dP, type CursorQuery as dQ, type CursorQueryPagingMethodOneOf as dR, type Sorting as dS, type CursorPaging as dT, type QueryCategoriesResponse as dU, type CursorPagingMetadata as dV, type Cursors as dW, type ListCompactCategoriesByIdsRequest as dX, type ListCompactCategoriesByIdsResponse as dY, type CompactCategory as dZ, type SearchCategoriesRequest as d_, type LayoutCellData as da, type ShapeData as db, type ShapeDataStyles as dc, type CardData as dd, type CardDataBackground as de, type BackgroundImage as df, type TocData as dg, type SmartBlockData as dh, type SmartBlockCellData as di, type CheckboxListData as dj, type ListItemNodeData as dk, type Metadata as dl, type DocumentStyle as dm, type TextNodeStyle as dn, type ExtendedFields as dp, type InvalidateCache as dq, type InvalidateCacheGetByOneOf as dr, type App as ds, type Page as dt, type URI as du, type File as dv, type CustomTag as dw, type Pages as dx, type URIs as dy, type CategoryMoved as dz, type GetCategoryBySlugResponse as e, type ListTreesRequest as e$, type CursorSearchPagingMethodOneOf as e0, type Aggregation as e1, type AggregationKindOneOf as e2, type RangeBucket as e3, type IncludeMissingValuesOptions as e4, type ValueAggregation as e5, type ValueAggregationOptionsOneOf as e6, type RangeAggregation as e7, type ScalarAggregation as e8, type DateHistogramAggregation as e9, type OffsetSearch as eA, type OffsetSearchPagingMethodOneOf as eB, type Paging as eC, type DeprecatedSearchCategoriesWithOffsetResponse as eD, type PagingMetadata as eE, type CountCategoriesRequest as eF, type MoveCategoryRequest as eG, type BulkUpdateCategoriesRequest as eH, type BulkCategoriesResult as eI, type ItemMetadata as eJ, type ApplicationError as eK, type BulkActionMetadata as eL, type UpdateCategoryVisibilityRequest as eM, type BulkShowCategoriesRequest as eN, type BulkAddItemsToCategoryRequest as eO, type BulkItemsToCategoryResult as eP, type ItemReferenceMetadata as eQ, type BulkAddItemToCategoriesRequest as eR, type BulkItemToCategoriesResult as eS, type BulkRemoveItemsFromCategoryRequest as eT, type BulkRemoveItemFromCategoriesRequest as eU, type ListItemsInCategoryRequest as eV, type ListItemsInCategoryRequestPagingMethodOneOf as eW, type PagingMetadataV2 as eX, type ListCategoriesForItemRequest as eY, type ListCategoriesForItemsRequest as eZ, type MapItemToCategories as e_, type NestedAggregationItem as ea, type NestedAggregationItemKindOneOf as eb, type NestedAggregation as ec, type SearchDetails as ed, type AggregationData as ee, type ValueAggregationResult as ef, type RangeAggregationResult as eg, type NestedAggregationResults as eh, type NestedAggregationResultsResultOneOf as ei, type ValueResults as ej, type RangeResults as ek, type AggregationResultsScalarResult as el, type NestedValueAggregationResult as em, type ValueResult as en, type RangeResult as eo, type ScalarResult as ep, type NestedResultValue as eq, type NestedResultValueResultOneOf as er, type Results as es, type DateHistogramResult as et, type GroupByValueResults as eu, type DateHistogramResults as ev, type NestedResults as ew, type AggregationResults as ex, type AggregationResultsResultOneOf as ey, type DeprecatedSearchCategoriesWithOffsetRequest as ez, type UpdateCategoryOptions as f, type PollLayoutDirectionWithLiterals as f$, type MoveItemInCategoryRequest as f0, type MoveItemInCategoryResponse as f1, type SetArrangedItemsRequest as f2, type GetArrangedItemsRequest as f3, type BulkSetItemCategoriesRequest as f4, type BulkSetItemCategoriesResponse as f5, type GetCategoriesTreeRequest as f6, type GetCategoriesTreeResponse as f7, type CategoryTreeNode as f8, type DomainEvent as f9, utils as fA, type NodeTypeWithLiterals as fB, type BackgroundTypeWithLiterals as fC, type GradientTypeWithLiterals as fD, type WidthTypeWithLiterals as fE, type PluginContainerDataAlignmentWithLiterals as fF, type ButtonDataTypeWithLiterals as fG, type TargetWithLiterals as fH, type TypeWithLiterals as fI, type EntranceEffectTypeWithLiterals as fJ, type TextAlignmentWithLiterals as fK, type LineCapWithLiterals as fL, type LineStyleWithLiterals as fM, type WidthWithLiterals as fN, type DividerDataAlignmentWithLiterals as fO, type ViewModeWithLiterals as fP, type LayoutTypeWithLiterals as fQ, type OrientationWithLiterals as fR, type CropWithLiterals as fS, type ThumbnailsAlignmentWithLiterals as fT, type GIFTypeWithLiterals as fU, type SourceWithLiterals as fV, type StylesPositionWithLiterals as fW, type MapTypeWithLiterals as fX, type ViewRoleWithLiterals as fY, type VoteRoleWithLiterals as fZ, type PollLayoutTypeWithLiterals as f_, type DomainEventBodyOneOf as fa, type EntityCreatedEvent as fb, type RestoreInfo as fc, type EntityUpdatedEvent as fd, type EntityDeletedEvent as fe, type ActionEvent as ff, type Empty as fg, type BulkCreateCategoriesForMigrationRequest as fh, type BulkCreateCategoriesForMigrationResponse as fi, type BulkAddItemsToCategoryForMigrationRequest as fj, type BulkAddItemsToCategoryForMigrationResponse as fk, type SetArrangedItemsForMigrationRequest as fl, type SetArrangedItemsForMigrationResponse as fm, type CatalogRollbackRequested as fn, type MessageEnvelope as fo, type IdentificationData as fp, type IdentificationDataIdOneOf as fq, type AccountInfo as fr, type BaseEventMetadata as fs, type EventMetadata as ft, type AccountInfoMetadata as fu, type CategoriesQueryResult as fv, type CategoryQuerySpec as fw, type CategorySearchSpec as fx, type ListItemsInCategoryOptionsPagingMethodOneOf as fy, type BulkSetItemCategoriesOptions as fz, type UpdateCategoryApplicationErrors as g, moveCategory as g$, type PollDesignBackgroundTypeWithLiterals as g0, type DecorationTypeWithLiterals as g1, type FontTypeWithLiterals as g2, type VariantWithLiterals as g3, type ImageStylesPositionWithLiterals as g4, type AspectRatioWithLiterals as g5, type ResizingWithLiterals as g6, type PlacementWithLiterals as g7, type CardStylesTypeWithLiterals as g8, type AlignmentWithLiterals as g9, 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, getCategoryBySlug as gW, updateCategory as gX, deleteCategory as gY, queryCategories as gZ, countCategories as g_, type LayoutWithLiterals as ga, type AppTypeWithLiterals as gb, type InitialExpandedItemsWithLiterals as gc, type DirectionWithLiterals as gd, type VerticalAlignmentWithLiterals as ge, type NullValueWithLiterals as gf, type ImageScalingScalingWithLiterals as gg, type ImagePositionWithLiterals as gh, type LayoutDataBackgroundTypeWithLiterals as gi, type OriginWithLiterals as gj, type BannerPositionWithLiterals as gk, type BackdropTypeWithLiterals as gl, type VerticalAlignmentAlignmentWithLiterals as gm, type ResponsivenessBehaviourWithLiterals as gn, type DesignTargetWithLiterals as go, type ScalingWithLiterals as gp, type ImagePositionPositionWithLiterals as gq, type CardDataBackgroundTypeWithLiterals as gr, type ListStyleWithLiterals as gs, type IndentationWithLiterals as gt, type SmartBlockDataTypeWithLiterals as gu, type ColumnSizeWithLiterals as gv, type SingleEntityOpsRequestedFieldsWithLiterals as gw, type SortOrderWithLiterals as gx, type RequestedFieldsWithLiterals as gy, type SortTypeWithLiterals as gz, type UpdateCategoryValidationErrors as h, bulkUpdateCategories as h0, updateCategoryVisibility as h1, bulkShowCategories as h2, bulkAddItemsToCategory as h3, bulkAddItemToCategories as h4, bulkRemoveItemsFromCategory as h5, bulkRemoveItemFromCategories as h6, listItemsInCategory as h7, listCategoriesForItem as h8, listCategoriesForItems as h9, listTrees as ha, setArrangedItems as hb, getArrangedItems as hc, type CategorySearch as i, type SearchCategoriesResponse as j, type CountCategoriesOptions as k, type CountCategoriesResponse as l, type MoveCategoryResponse as m, type MoveCategoryApplicationErrors as n, type MaskedCategory as o, type BulkUpdateCategoriesResponse as p, type BulkUpdateCategoriesApplicationErrors as q, type BulkUpdateCategoriesValidationErrors as r, type UpdateCategoryVisibilityOptions as s, type UpdateCategoryVisibilityResponse as t, type UpdateCategoryVisibilityApplicationErrors as u, type BulkShowCategoriesOptions as v, type BulkShowCategoriesResponse as w, type BulkAddItemsToCategoryOptions as x, type BulkAddItemsToCategoryResponse as y, type BulkAddItemsToCategoryApplicationErrors 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, d as GetCategoryBySlugOptions, e as GetCategoryBySlugResponse, U as UpdateCategory, f as UpdateCategoryOptions, g as UpdateCategoryApplicationErrors, h as UpdateCategoryValidationErrors, D as DeleteCategoryApplicationErrors, i as CategorySearch, S as SearchCategoriesOptions, j as SearchCategoriesResponse, k as CountCategoriesOptions, l as CountCategoriesResponse, M as MoveCategoryOptions, m as MoveCategoryResponse, n as MoveCategoryApplicationErrors, o as MaskedCategory, B as BulkUpdateCategoriesOptions, p as BulkUpdateCategoriesResponse, q as BulkUpdateCategoriesApplicationErrors, r as BulkUpdateCategoriesValidationErrors, s as UpdateCategoryVisibilityOptions, t as UpdateCategoryVisibilityResponse, u as UpdateCategoryVisibilityApplicationErrors, v as BulkShowCategoriesOptions, w as BulkShowCategoriesResponse, I as ItemReference, x as BulkAddItemsToCategoryOptions, y as BulkAddItemsToCategoryResponse, z as BulkAddItemsToCategoryApplicationErrors, A as BulkAddItemToCategoriesOptions, E as BulkAddItemToCategoriesResponse, F as BulkAddItemToCategoriesApplicationErrors, H as BulkRemoveItemsFromCategoryOptions, J as BulkRemoveItemsFromCategoryResponse, K as BulkRemoveItemsFromCategoryApplicationErrors, L as BulkRemoveItemFromCategoriesOptions, N as BulkRemoveItemFromCategoriesResponse, O as BulkRemoveItemFromCategoriesApplicationErrors, P as ListItemsInCategoryOptions, Q as ListItemsInCategoryResponse, R as ListCategoriesForItemOptions, V as ListCategoriesForItemResponse, W as ListCategoriesForItemsOptions, X as ListCategoriesForItemsResponse, Y as ListTreesResponse, Z as SetArrangedItemsOptions, _ as SetArrangedItemsResponse, $ as SetArrangedItemsApplicationErrors, a0 as GetArrangedItemsResponse, a1 as CategoryMovedEnvelope, a2 as CategoryCreatedEnvelope, a3 as CategoryDeletedEnvelope, a4 as CategoryItemAddedToCategoryEnvelope, a5 as CategoryItemRemovedFromCategoryEnvelope, a6 as CategoryItemsArrangedInCategoryEnvelope, a7 as CategoryUpdatedEnvelope, a8 as CategoryQuery, a9 as QueryCategoriesOptions, aa as typedQueryCategories, ab as CategoriesQueryBuilder } from './categories-v1-category-categories.universal-DibWCZU9.js';
3
- export { fm as AccountInfo, fp as AccountInfoMetadata, fa as ActionEvent, dY as Aggregation, e9 as AggregationData, dZ as AggregationKindOneOf, es as AggregationResults, et as AggregationResultsResultOneOf, eg as AggregationResultsScalarResult, be as AggregationType, gy as AggregationTypeWithLiterals, aK as Alignment, g2 as AlignmentWithLiterals, cu as AnchorData, dm as App, cC as AppEmbedData, cD as AppEmbedDataAppDataOneOf, aM as AppType, g4 as AppTypeWithLiterals, eF as ApplicationError, aG as AspectRatio, f_ as AspectRatioWithLiterals, cX as AudioData, d4 as Backdrop, aW as BackdropType, ge as BackdropTypeWithLiterals, bz as Background, cj as BackgroundGradient, da as BackgroundImage, ad as BackgroundType, fx as BackgroundTypeWithLiterals, d3 as Banner, aV as BannerPosition, gd as BannerPositionWithLiterals, fn as BaseEventMetadata, c_ as BlockquoteData, cE as BookingData, bx as Border, cU as BorderColors, cV as BorderWidths, bk as Breadcrumb, bj as BreadcrumbsInfo, eG as BulkActionMetadata, eM as BulkAddItemToCategoriesRequest, fe as BulkAddItemsToCategoryForMigrationRequest, ff as BulkAddItemsToCategoryForMigrationResponse, eJ as BulkAddItemsToCategoryRequest, eD as BulkCategoriesResult, fc as BulkCreateCategoriesForMigrationRequest, fd as BulkCreateCategoriesForMigrationResponse, eN as BulkItemToCategoriesResult, eK as BulkItemsToCategoryResult, eP as BulkRemoveItemFromCategoriesRequest, eO as BulkRemoveItemsFromCategoryRequest, gD as BulkSetItemCategoriesApplicationErrors, fu as BulkSetItemCategoriesOptions, e$ as BulkSetItemCategoriesRequest, f0 as BulkSetItemCategoriesResponse, eI as BulkShowCategoriesRequest, eC as BulkUpdateCategoriesRequest, cZ as BulletedListData, bu as ButtonData, ah as ButtonDataType, fB as ButtonDataTypeWithLiterals, cG as ButtonStyles, c$ as CaptionData, d8 as CardData, d9 as CardDataBackground, b0 as CardDataBackgroundType, gk as CardDataBackgroundTypeWithLiterals, cJ as CardStyles, fi as CatalogRollbackRequested, fq as CategoriesQueryResult, du as CategoryMoved, fr as CategoryQuerySpec, fs as CategorySearchSpec, f3 as CategoryTreeNode, cT as CellStyle, de as CheckboxListData, bJ as CodeBlockData, cP as CollapsibleListData, cv as ColorData, by as Colors, b4 as ColumnSize, go as ColumnSizeWithLiterals, gE as CommonQueryWithEntityContext, gF as CommonSearchWithEntityContext, dU as CompactCategory, eA as CountCategoriesRequest, dA as CreateCategoryRequest, dB as CreateCategoryResponse, ar as Crop, fL as CropWithLiterals, dO as CursorPaging, dQ as CursorPagingMetadata, dL as CursorQuery, dM as CursorQueryPagingMethodOneOf, dW as CursorSearch, dX as CursorSearchPagingMethodOneOf, dR as Cursors, dr as CustomTag, e4 as DateHistogramAggregation, eo as DateHistogramResult, eq as DateHistogramResults, cs as Decoration, ct as DecorationDataOneOf, aC as DecorationType, fW as DecorationTypeWithLiterals, dI as DeleteCategoryRequest, dJ as DeleteCategoryResponse, eu as DeprecatedSearchCategoriesWithOffsetRequest, ey as DeprecatedSearchCategoriesWithOffsetResponse, cq as Design, aZ as DesignTarget, gh as DesignTargetWithLiterals, cR as Dimensions, aO as Direction, g6 as DirectionWithLiterals, bL as DividerData, an as DividerDataAlignment, fH as DividerDataAlignmentWithLiterals, bM as DividerDataStyles, dh as DocumentStyle, f4 as DomainEvent, f5 as DomainEventBodyOneOf, dC as DuplicateHandleErrorData, cN as EmbedData, fb as Empty, f6 as EntityCreatedEvent, f9 as EntityDeletedEvent, f8 as EntityUpdatedEvent, cF as EventData, fo as EventMetadata, dj as ExtendedFields, dq as File, bN as FileData, bO as FileSource, bP as FileSourceDataOneOf, cA as FontFamilyData, cy as FontSizeData, aD as FontType, fX as FontTypeWithLiterals, c0 as GIF, b$ as GIFData, at as GIFType, fN as GIFTypeWithLiterals, bR as GalleryData, bX as GalleryOptions, bY as GalleryOptionsLayout, e_ as GetArrangedItemsRequest, f1 as GetCategoriesTreeRequest, f2 as GetCategoriesTreeResponse, dF as GetCategoryBySlugRequest, dD as GetCategoryRequest, dE as GetCategoryResponse, bv as Gradient, ae as GradientType, fy as GradientTypeWithLiterals, ep as GroupByValueResults, c2 as HTMLData, c3 as HTMLDataDataOneOf, c1 as HeadingData, bE as Height, fk as IdentificationData, fl as IdentificationDataIdOneOf, bT as Image, c4 as ImageData, c7 as ImageDataCrop, c6 as ImageDataStyles, aS as ImagePosition, a$ as ImagePositionPosition, gj as ImagePositionPositionWithLiterals, ga as ImagePositionWithLiterals, aR as ImageScalingScaling, g9 as ImageScalingScalingWithLiterals, cH as ImageStyles, aF as ImageStylesPosition, fZ as ImageStylesPositionWithLiterals, d$ as IncludeMissingValuesOptions, b2 as Indentation, gm as IndentationWithLiterals, aN as InitialExpandedItems, g5 as InitialExpandedItemsWithLiterals, bd as Interval, gx as IntervalWithLiterals, dk as InvalidateCache, dl as InvalidateCacheGetByOneOf, bV as Item, dv as ItemAddedToCategory, bW as ItemDataOneOf, eE as ItemMetadata, eL as ItemReferenceMetadata, dx as ItemRemovedFromCategory, bZ as ItemStyle, dw as ItemsAddedToCategory, dz as ItemsArrangedInCategory, dy as ItemsRemovedFromCategory, bn as Keyword, aL as Layout, d5 as LayoutCellData, d0 as LayoutData, d1 as LayoutDataBackground, d2 as LayoutDataBackgroundImage, aT as LayoutDataBackgroundType, gb as LayoutDataBackgroundTypeWithLiterals, ap as LayoutType, fJ as LayoutTypeWithLiterals, g3 as LayoutWithLiterals, ak as LineCap, fE as LineCapWithLiterals, al as LineStyle, fF as LineStyleWithLiterals, bG as Link, cw as LinkData, bH as LinkDataOneOf, c8 as LinkPreviewData, c9 as LinkPreviewDataStyles, eT as ListCategoriesForItemRequest, eU as ListCategoriesForItemsRequest, dS as ListCompactCategoriesByIdsRequest, dT as ListCompactCategoriesByIdsResponse, df as ListItemNodeData, ft as ListItemsInCategoryOptionsPagingMethodOneOf, eQ as ListItemsInCategoryRequest, eR as ListItemsInCategoryRequestPagingMethodOneOf, b1 as ListStyle, gl as ListStyleWithLiterals, eW as ListTreesRequest, cW as ListValue, ca as MapData, eV as MapItemToCategories, cb as MapSettings, aw as MapType, fQ as MapTypeWithLiterals, bS as Media, cx as MentionData, fj as MessageEnvelope, dg as Metadata, ba as MissingValues, gu as MissingValuesWithLiterals, bf as Mode, gz as ModeWithLiterals, eB as MoveCategoryRequest, eX as MoveItemInCategoryRequest, bh as MoveItemInCategoryRequestPosition, gB as MoveItemInCategoryRequestPositionWithLiterals, eY as MoveItemInCategoryResponse, e7 as NestedAggregation, e5 as NestedAggregationItem, e6 as NestedAggregationItemKindOneOf, ec as NestedAggregationResults, ed as NestedAggregationResultsResultOneOf, bc as NestedAggregationType, gw as NestedAggregationTypeWithLiterals, el as NestedResultValue, em as NestedResultValueResultOneOf, er as NestedResults, eh as NestedValueAggregationResult, br as Node, bs as NodeDataOneOf, bt as NodeStyle, ac as NodeType, fw as NodeTypeWithLiterals, aQ as NullValue, g8 as NullValueWithLiterals, cO as Oembed, ev as OffsetSearch, ew as OffsetSearchPagingMethodOneOf, cf as Option, cn as OptionDesign, ci as OptionLayout, cY as OrderedListData, aq as Orientation, fK as OrientationWithLiterals, aU as Origin, gc as OriginWithLiterals, bQ as PDFSettings, dn as Page, ds as Pages, ex as Paging, ez as PagingMetadata, eS as PagingMetadataV2, cc as ParagraphData, bl as ParentCategory, ce as Permissions, aI as Placement, g0 as PlacementWithLiterals, cM as PlaybackOptions, bA as PluginContainerData, ag as PluginContainerDataAlignment, fA as PluginContainerDataAlignmentWithLiterals, bB as PluginContainerDataWidth, bC as PluginContainerDataWidthDataOneOf, co as Poll, cd as PollData, cp as PollDataLayout, cm as PollDesign, ck as PollDesignBackground, cl as PollDesignBackgroundBackgroundOneOf, aB as PollDesignBackgroundType, fV as PollDesignBackgroundTypeWithLiterals, ch as PollLayout, aA as PollLayoutDirection, fU as PollLayoutDirectionWithLiterals, az as PollLayoutType, fT as PollLayoutTypeWithLiterals, cg as PollSettings, bg as Position, gA as PositionWithLiterals, cK as PricingData, dK as QueryCategoriesRequest, dP as QueryCategoriesResponse, e2 as RangeAggregation, eb as RangeAggregationResult, d_ as RangeBucket, ej as RangeResult, ef as RangeResults, bI as Rel, b7 as RequestedFields, gr as RequestedFieldsWithLiterals, aH as Resizing, f$ as ResizingWithLiterals, aY as ResponsivenessBehaviour, gg as ResponsivenessBehaviourWithLiterals, f7 as RestoreInfo, en as Results, cI as RibbonStyles, bq as RichContent, e3 as ScalarAggregation, ek as ScalarResult, bb as ScalarType, gv as ScalarTypeWithLiterals, a_ as Scaling, gi as ScalingWithLiterals, dV as SearchCategoriesRequest, e8 as SearchDetails, bm as SeoSchema, fg as SetArrangedItemsForMigrationRequest, fh as SetArrangedItemsForMigrationResponse, eZ as SetArrangedItemsRequest, bp as Settings, d6 as ShapeData, d7 as ShapeDataStyles, b5 as SingleEntityOpsRequestedFields, gp as SingleEntityOpsRequestedFieldsWithLiterals, cB as SketchData, dd as SmartBlockCellData, dc as SmartBlockData, b3 as SmartBlockDataType, gn as SmartBlockDataTypeWithLiterals, b9 as SortDirection, gt as SortDirectionWithLiterals, b6 as SortOrder, gq as SortOrderWithLiterals, b8 as SortType, gs as SortTypeWithLiterals, dN as Sorting, au as Source, fO as SourceWithLiterals, bD as Spoiler, cz as SpoilerData, bw as Stop, bF as Styles, c5 as StylesBorder, av as StylesPosition, fP as StylesPositionWithLiterals, cS as TableCellData, cQ as TableData, bo as Tag, ai as Target, fC as TargetWithLiterals, aj as TextAlignment, fD as TextAlignmentWithLiterals, cr as TextData, di as TextNodeStyle, bK as TextStyle, b_ as Thumbnails, as as ThumbnailsAlignment, fM as ThumbnailsAlignmentWithLiterals, db as TocData, aJ as Type, g1 as TypeWithLiterals, dp as URI, dt as URIs, dG as UpdateCategoryRequest, dH as UpdateCategoryResponse, eH as UpdateCategoryVisibilityRequest, e0 as ValueAggregation, e1 as ValueAggregationOptionsOneOf, ea as ValueAggregationResult, ei as ValueResult, ee as ValueResults, aE as Variant, fY as VariantWithLiterals, aP as VerticalAlignment, aX as VerticalAlignmentAlignment, gf as VerticalAlignmentAlignmentWithLiterals, g7 as VerticalAlignmentWithLiterals, bU as Video, cL as VideoData, ao as ViewMode, fI as ViewModeWithLiterals, ax as ViewRole, fR as ViewRoleWithLiterals, ay as VoteRole, fS as VoteRoleWithLiterals, bi as WebhookIdentityType, gC as WebhookIdentityTypeWithLiterals, am as Width, af as WidthType, fz as WidthTypeWithLiterals, fG as WidthWithLiterals, fv as utils } from './categories-v1-category-categories.universal-DibWCZU9.js';
2
+ import { C as Category, a as CreateCategoryOptions, b as CreateCategoryApplicationErrors, c as CreateCategoryValidationErrors, T as TreeReference, G as GetCategoryOptions, d as GetCategoryBySlugOptions, e as GetCategoryBySlugResponse, U as UpdateCategory, f as UpdateCategoryOptions, g as UpdateCategoryApplicationErrors, h as UpdateCategoryValidationErrors, D as DeleteCategoryApplicationErrors, i as CategorySearch, S as SearchCategoriesOptions, j as SearchCategoriesResponse, k as CountCategoriesOptions, l as CountCategoriesResponse, M as MoveCategoryOptions, m as MoveCategoryResponse, n as MoveCategoryApplicationErrors, o as MaskedCategory, B as BulkUpdateCategoriesOptions, p as BulkUpdateCategoriesResponse, q as BulkUpdateCategoriesApplicationErrors, r as BulkUpdateCategoriesValidationErrors, s as UpdateCategoryVisibilityOptions, t as UpdateCategoryVisibilityResponse, u as UpdateCategoryVisibilityApplicationErrors, v as BulkShowCategoriesOptions, w as BulkShowCategoriesResponse, I as ItemReference, x as BulkAddItemsToCategoryOptions, y as BulkAddItemsToCategoryResponse, z as BulkAddItemsToCategoryApplicationErrors, A as BulkAddItemToCategoriesOptions, E as BulkAddItemToCategoriesResponse, F as BulkAddItemToCategoriesApplicationErrors, H as BulkRemoveItemsFromCategoryOptions, J as BulkRemoveItemsFromCategoryResponse, K as BulkRemoveItemsFromCategoryApplicationErrors, L as BulkRemoveItemFromCategoriesOptions, N as BulkRemoveItemFromCategoriesResponse, O as BulkRemoveItemFromCategoriesApplicationErrors, P as ListItemsInCategoryOptions, Q as ListItemsInCategoryResponse, R as ListCategoriesForItemOptions, V as ListCategoriesForItemResponse, W as ListCategoriesForItemsOptions, X as ListCategoriesForItemsResponse, Y as ListTreesResponse, Z as SetArrangedItemsOptions, _ as SetArrangedItemsResponse, $ as SetArrangedItemsApplicationErrors, a0 as GetArrangedItemsResponse, a1 as CategoryMovedEnvelope, a2 as CategoryCreatedEnvelope, a3 as CategoryDeletedEnvelope, a4 as CategoryItemAddedToCategoryEnvelope, a5 as CategoryItemRemovedFromCategoryEnvelope, a6 as CategoryItemsArrangedInCategoryEnvelope, a7 as CategoryUpdatedEnvelope, a8 as CategoryQuery, a9 as QueryCategoriesOptions, aa as typedQueryCategories, ab as CategoriesQueryBuilder } from './categories-v1-category-categories.universal-1V0z-nfC.js';
3
+ export { fr as AccountInfo, fu as AccountInfoMetadata, ff as ActionEvent, e1 as Aggregation, ee as AggregationData, e2 as AggregationKindOneOf, ex as AggregationResults, ey as AggregationResultsResultOneOf, el as AggregationResultsScalarResult, bg as AggregationType, gF as AggregationTypeWithLiterals, aM as Alignment, g9 as AlignmentWithLiterals, cz as AnchorData, bL as Animation, ds as App, cH as AppEmbedData, cI as AppEmbedDataAppDataOneOf, aO as AppType, gb as AppTypeWithLiterals, eK as ApplicationError, aI as AspectRatio, g5 as AspectRatioWithLiterals, d0 as AudioData, d9 as Backdrop, aY as BackdropType, gl as BackdropTypeWithLiterals, bB as Background, co as BackgroundGradient, df as BackgroundImage, ad as BackgroundType, fC as BackgroundTypeWithLiterals, d8 as Banner, aX as BannerPosition, gk as BannerPositionWithLiterals, fs as BaseEventMetadata, d3 as BlockquoteData, cJ as BookingData, bz as Border, cZ as BorderColors, c_ as BorderWidths, bm as Breadcrumb, bl as BreadcrumbsInfo, eL as BulkActionMetadata, eR as BulkAddItemToCategoriesRequest, fj as BulkAddItemsToCategoryForMigrationRequest, fk as BulkAddItemsToCategoryForMigrationResponse, eO as BulkAddItemsToCategoryRequest, eI as BulkCategoriesResult, fh as BulkCreateCategoriesForMigrationRequest, fi as BulkCreateCategoriesForMigrationResponse, eS as BulkItemToCategoriesResult, eP as BulkItemsToCategoryResult, eU as BulkRemoveItemFromCategoriesRequest, eT as BulkRemoveItemsFromCategoryRequest, gK as BulkSetItemCategoriesApplicationErrors, fz as BulkSetItemCategoriesOptions, f4 as BulkSetItemCategoriesRequest, f5 as BulkSetItemCategoriesResponse, eN as BulkShowCategoriesRequest, eH as BulkUpdateCategoriesRequest, d2 as BulletedListData, bw as ButtonData, ah as ButtonDataType, fG as ButtonDataTypeWithLiterals, cL as ButtonStyles, d4 as CaptionData, dd as CardData, de as CardDataBackground, b2 as CardDataBackgroundType, gr as CardDataBackgroundTypeWithLiterals, cO as CardStyles, aL as CardStylesType, g8 as CardStylesTypeWithLiterals, fn as CatalogRollbackRequested, fv as CategoriesQueryResult, dz as CategoryMoved, fw as CategoryQuerySpec, fx as CategorySearchSpec, f8 as CategoryTreeNode, cY as CellStyle, dj as CheckboxListData, bO as CodeBlockData, cU as CollapsibleListData, cA as ColorData, bA as Colors, b6 as ColumnSize, gv as ColumnSizeWithLiterals, gL as CommonQueryWithEntityContext, gM as CommonSearchWithEntityContext, dZ as CompactCategory, eF as CountCategoriesRequest, dF as CreateCategoryRequest, dG as CreateCategoryResponse, at as Crop, fS as CropWithLiterals, dT as CursorPaging, dV as CursorPagingMetadata, dQ as CursorQuery, dR as CursorQueryPagingMethodOneOf, d$ as CursorSearch, e0 as CursorSearchPagingMethodOneOf, dW as Cursors, dw as CustomTag, e9 as DateHistogramAggregation, et as DateHistogramResult, ev as DateHistogramResults, cx as Decoration, cy as DecorationDataOneOf, aE as DecorationType, g1 as DecorationTypeWithLiterals, dN as DeleteCategoryRequest, dO as DeleteCategoryResponse, ez as DeprecatedSearchCategoriesWithOffsetRequest, eD as DeprecatedSearchCategoriesWithOffsetResponse, cv as Design, a$ as DesignTarget, go as DesignTargetWithLiterals, cW as Dimensions, aQ as Direction, gd as DirectionWithLiterals, bQ as DividerData, ap as DividerDataAlignment, fO as DividerDataAlignmentWithLiterals, bR as DividerDataStyles, dm as DocumentStyle, f9 as DomainEvent, fa as DomainEventBodyOneOf, dH as DuplicateHandleErrorData, cS as EmbedData, fg as Empty, fb as EntityCreatedEvent, fe as EntityDeletedEvent, fd as EntityUpdatedEvent, bM as EntranceAnimation, bN as EntranceEffect, ak as EntranceEffectType, fJ as EntranceEffectTypeWithLiterals, cK as EventData, ft as EventMetadata, dp as ExtendedFields, dv as File, bS as FileData, bT as FileSource, bU as FileSourceDataOneOf, cF as FontFamilyData, cD as FontSizeData, aF as FontType, g2 as FontTypeWithLiterals, c5 as GIF, c4 as GIFData, av as GIFType, fU as GIFTypeWithLiterals, bW as GalleryData, c0 as GalleryOptions, c1 as GalleryOptionsLayout, f3 as GetArrangedItemsRequest, f6 as GetCategoriesTreeRequest, f7 as GetCategoriesTreeResponse, dK as GetCategoryBySlugRequest, dI as GetCategoryRequest, dJ as GetCategoryResponse, bx as Gradient, ae as GradientType, fD as GradientTypeWithLiterals, eu as GroupByValueResults, c7 as HTMLData, c8 as HTMLDataDataOneOf, c6 as HeadingData, bG as Height, fp as IdentificationData, fq as IdentificationDataIdOneOf, bY as Image, c9 as ImageData, cc as ImageDataCrop, cb as ImageDataStyles, aU as ImagePosition, b1 as ImagePositionPosition, gq as ImagePositionPositionWithLiterals, gh as ImagePositionWithLiterals, aT as ImageScalingScaling, gg as ImageScalingScalingWithLiterals, cM as ImageStyles, aH as ImageStylesPosition, g4 as ImageStylesPositionWithLiterals, e4 as IncludeMissingValuesOptions, b4 as Indentation, gt as IndentationWithLiterals, aP as InitialExpandedItems, gc as InitialExpandedItemsWithLiterals, bf as Interval, gE as IntervalWithLiterals, dq as InvalidateCache, dr as InvalidateCacheGetByOneOf, b_ as Item, dA as ItemAddedToCategory, b$ as ItemDataOneOf, eJ as ItemMetadata, eQ as ItemReferenceMetadata, dC as ItemRemovedFromCategory, c2 as ItemStyle, dB as ItemsAddedToCategory, dE as ItemsArrangedInCategory, dD as ItemsRemovedFromCategory, bp as Keyword, aN as Layout, da as LayoutCellData, d5 as LayoutData, d6 as LayoutDataBackground, d7 as LayoutDataBackgroundImage, aV as LayoutDataBackgroundType, gi as LayoutDataBackgroundTypeWithLiterals, ar as LayoutType, fQ as LayoutTypeWithLiterals, ga as LayoutWithLiterals, am as LineCap, fL as LineCapWithLiterals, an as LineStyle, fM as LineStyleWithLiterals, bI as Link, cB as LinkData, bJ as LinkDataOneOf, cd as LinkPreviewData, ce as LinkPreviewDataStyles, eY as ListCategoriesForItemRequest, eZ as ListCategoriesForItemsRequest, dX as ListCompactCategoriesByIdsRequest, dY as ListCompactCategoriesByIdsResponse, dk as ListItemNodeData, fy as ListItemsInCategoryOptionsPagingMethodOneOf, eV as ListItemsInCategoryRequest, eW as ListItemsInCategoryRequestPagingMethodOneOf, b3 as ListStyle, gs as ListStyleWithLiterals, e$ as ListTreesRequest, c$ as ListValue, cf as MapData, e_ as MapItemToCategories, cg as MapSettings, ay as MapType, fX as MapTypeWithLiterals, bX as Media, cC as MentionData, fo as MessageEnvelope, dl as Metadata, bc as MissingValues, gB as MissingValuesWithLiterals, bh as Mode, gG as ModeWithLiterals, eG as MoveCategoryRequest, f0 as MoveItemInCategoryRequest, bj as MoveItemInCategoryRequestPosition, gI as MoveItemInCategoryRequestPositionWithLiterals, f1 as MoveItemInCategoryResponse, ec as NestedAggregation, ea as NestedAggregationItem, eb as NestedAggregationItemKindOneOf, eh as NestedAggregationResults, ei as NestedAggregationResultsResultOneOf, be as NestedAggregationType, gD as NestedAggregationTypeWithLiterals, eq as NestedResultValue, er as NestedResultValueResultOneOf, ew as NestedResults, em as NestedValueAggregationResult, bt as Node, bu as NodeDataOneOf, bv as NodeStyle, ac as NodeType, fB as NodeTypeWithLiterals, aS as NullValue, gf as NullValueWithLiterals, cT as Oembed, eA as OffsetSearch, eB as OffsetSearchPagingMethodOneOf, ck as Option, cs as OptionDesign, cn as OptionLayout, d1 as OrderedListData, as as Orientation, fR as OrientationWithLiterals, aW as Origin, gj as OriginWithLiterals, bV as PDFSettings, dt as Page, dx as Pages, eC as Paging, eE as PagingMetadata, eX as PagingMetadataV2, ch as ParagraphData, bn as ParentCategory, cj as Permissions, aK as Placement, g7 as PlacementWithLiterals, cR as PlaybackOptions, bC as PluginContainerData, ag as PluginContainerDataAlignment, fF as PluginContainerDataAlignmentWithLiterals, bD as PluginContainerDataWidth, bE as PluginContainerDataWidthDataOneOf, ct as Poll, ci as PollData, cu as PollDataLayout, cr as PollDesign, cp as PollDesignBackground, cq as PollDesignBackgroundBackgroundOneOf, aD as PollDesignBackgroundType, g0 as PollDesignBackgroundTypeWithLiterals, cm as PollLayout, aC as PollLayoutDirection, f$ as PollLayoutDirectionWithLiterals, aB as PollLayoutType, f_ as PollLayoutTypeWithLiterals, cl as PollSettings, bi as Position, gH as PositionWithLiterals, cP as PricingData, dP as QueryCategoriesRequest, dU as QueryCategoriesResponse, e7 as RangeAggregation, eg as RangeAggregationResult, e3 as RangeBucket, eo as RangeResult, ek as RangeResults, bK as Rel, b9 as RequestedFields, gy as RequestedFieldsWithLiterals, aJ as Resizing, g6 as ResizingWithLiterals, a_ as ResponsivenessBehaviour, gn as ResponsivenessBehaviourWithLiterals, fc as RestoreInfo, es as Results, cN as RibbonStyles, bs as RichContent, e8 as ScalarAggregation, ep as ScalarResult, bd as ScalarType, gC as ScalarTypeWithLiterals, b0 as Scaling, gp as ScalingWithLiterals, d_ as SearchCategoriesRequest, ed as SearchDetails, bo as SeoSchema, fl as SetArrangedItemsForMigrationRequest, fm as SetArrangedItemsForMigrationResponse, f2 as SetArrangedItemsRequest, br as Settings, db as ShapeData, dc as ShapeDataStyles, b7 as SingleEntityOpsRequestedFields, gw as SingleEntityOpsRequestedFieldsWithLiterals, cG as SketchData, di as SmartBlockCellData, dh as SmartBlockData, b5 as SmartBlockDataType, gu as SmartBlockDataTypeWithLiterals, bb as SortDirection, gA as SortDirectionWithLiterals, b8 as SortOrder, gx as SortOrderWithLiterals, ba as SortType, gz as SortTypeWithLiterals, dS as Sorting, aw as Source, fV as SourceWithLiterals, bF as Spoiler, cE as SpoilerData, by as Stop, bH as Styles, ca as StylesBorder, ax as StylesPosition, fW as StylesPositionWithLiterals, cX as TableCellData, cV as TableData, bq as Tag, ai as Target, fH as TargetWithLiterals, al as TextAlignment, fK as TextAlignmentWithLiterals, cw as TextData, dn as TextNodeStyle, bP as TextStyle, c3 as Thumbnails, au as ThumbnailsAlignment, fT as ThumbnailsAlignmentWithLiterals, dg as TocData, aj as Type, fI as TypeWithLiterals, du as URI, dy as URIs, dL as UpdateCategoryRequest, dM as UpdateCategoryResponse, eM as UpdateCategoryVisibilityRequest, e5 as ValueAggregation, e6 as ValueAggregationOptionsOneOf, ef as ValueAggregationResult, en as ValueResult, ej as ValueResults, aG as Variant, g3 as VariantWithLiterals, aR as VerticalAlignment, aZ as VerticalAlignmentAlignment, gm as VerticalAlignmentAlignmentWithLiterals, ge as VerticalAlignmentWithLiterals, bZ as Video, cQ as VideoData, aq as ViewMode, fP as ViewModeWithLiterals, az as ViewRole, fY as ViewRoleWithLiterals, aA as VoteRole, fZ as VoteRoleWithLiterals, bk as WebhookIdentityType, gJ as WebhookIdentityTypeWithLiterals, ao as Width, af as WidthType, fE as WidthTypeWithLiterals, fN as WidthWithLiterals, fA as utils } from './categories-v1-category-categories.universal-1V0z-nfC.js';
4
4
 
5
5
  declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
6
6
  interface CreateCategorySignature {
@@ -29,12 +29,14 @@ __export(index_exports, {
29
29
  BannerPosition: () => BannerPosition,
30
30
  ButtonDataType: () => ButtonDataType,
31
31
  CardDataBackgroundType: () => CardDataBackgroundType,
32
+ CardStylesType: () => CardStylesType,
32
33
  ColumnSize: () => ColumnSize,
33
34
  Crop: () => Crop,
34
35
  DecorationType: () => DecorationType,
35
36
  DesignTarget: () => DesignTarget,
36
37
  Direction: () => Direction,
37
38
  DividerDataAlignment: () => DividerDataAlignment,
39
+ EntranceEffectType: () => EntranceEffectType,
38
40
  FontType: () => FontType,
39
41
  GIFType: () => GIFType,
40
42
  GradientType: () => GradientType,
@@ -2875,6 +2877,31 @@ var Target = /* @__PURE__ */ ((Target2) => {
2875
2877
  Target2["TOP"] = "TOP";
2876
2878
  return Target2;
2877
2879
  })(Target || {});
2880
+ var Type = /* @__PURE__ */ ((Type2) => {
2881
+ Type2["VIEW"] = "VIEW";
2882
+ return Type2;
2883
+ })(Type || {});
2884
+ var EntranceEffectType = /* @__PURE__ */ ((EntranceEffectType2) => {
2885
+ EntranceEffectType2["FADE"] = "FADE";
2886
+ EntranceEffectType2["ARC"] = "ARC";
2887
+ EntranceEffectType2["BLUR"] = "BLUR";
2888
+ EntranceEffectType2["BOUNCE"] = "BOUNCE";
2889
+ EntranceEffectType2["DROP"] = "DROP";
2890
+ EntranceEffectType2["EXPAND"] = "EXPAND";
2891
+ EntranceEffectType2["FLIP"] = "FLIP";
2892
+ EntranceEffectType2["FLOAT"] = "FLOAT";
2893
+ EntranceEffectType2["FOLD"] = "FOLD";
2894
+ EntranceEffectType2["GLIDE"] = "GLIDE";
2895
+ EntranceEffectType2["REVEAL"] = "REVEAL";
2896
+ EntranceEffectType2["SHAPE"] = "SHAPE";
2897
+ EntranceEffectType2["SHUTTERS"] = "SHUTTERS";
2898
+ EntranceEffectType2["SLIDE"] = "SLIDE";
2899
+ EntranceEffectType2["SPIN"] = "SPIN";
2900
+ EntranceEffectType2["TILT"] = "TILT";
2901
+ EntranceEffectType2["TURN"] = "TURN";
2902
+ EntranceEffectType2["WINK"] = "WINK";
2903
+ return EntranceEffectType2;
2904
+ })(EntranceEffectType || {});
2878
2905
  var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
2879
2906
  TextAlignment2["AUTO"] = "AUTO";
2880
2907
  TextAlignment2["LEFT"] = "LEFT";
@@ -3050,11 +3077,11 @@ var Placement = /* @__PURE__ */ ((Placement2) => {
3050
3077
  Placement2["PRODUCT_INFO"] = "PRODUCT_INFO";
3051
3078
  return Placement2;
3052
3079
  })(Placement || {});
3053
- var Type = /* @__PURE__ */ ((Type2) => {
3054
- Type2["CONTAINED"] = "CONTAINED";
3055
- Type2["FRAMELESS"] = "FRAMELESS";
3056
- return Type2;
3057
- })(Type || {});
3080
+ var CardStylesType = /* @__PURE__ */ ((CardStylesType2) => {
3081
+ CardStylesType2["CONTAINED"] = "CONTAINED";
3082
+ CardStylesType2["FRAMELESS"] = "FRAMELESS";
3083
+ return CardStylesType2;
3084
+ })(CardStylesType || {});
3058
3085
  var Alignment = /* @__PURE__ */ ((Alignment2) => {
3059
3086
  Alignment2["START"] = "START";
3060
3087
  Alignment2["CENTER"] = "CENTER";
@@ -5196,12 +5223,14 @@ var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(
5196
5223
  BannerPosition,
5197
5224
  ButtonDataType,
5198
5225
  CardDataBackgroundType,
5226
+ CardStylesType,
5199
5227
  ColumnSize,
5200
5228
  Crop,
5201
5229
  DecorationType,
5202
5230
  DesignTarget,
5203
5231
  Direction,
5204
5232
  DividerDataAlignment,
5233
+ EntranceEffectType,
5205
5234
  FontType,
5206
5235
  GIFType,
5207
5236
  GradientType,