@wix/auto_sdk_categories_categories 1.0.112 → 1.0.114

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-Ap2HkvJt.d.ts → categories-v1-category-categories.universal-OeDwVZwq.d.ts} +77 -52
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +7 -0
  4. package/build/cjs/index.js.map +1 -1
  5. package/build/cjs/index.typings.d.ts +2 -2
  6. package/build/cjs/index.typings.js +7 -0
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +78 -53
  9. package/build/cjs/meta.js +7 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{categories-v1-category-categories.universal-Ap2HkvJt.d.mts → categories-v1-category-categories.universal-OeDwVZwq.d.mts} +77 -52
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +6 -0
  14. package/build/es/index.mjs.map +1 -1
  15. package/build/es/index.typings.d.mts +2 -2
  16. package/build/es/index.typings.mjs +6 -0
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +78 -53
  19. package/build/es/meta.mjs +6 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{categories-v1-category-categories.universal-BIVm-eLc.d.ts → categories-v1-category-categories.universal-BiBkxcEi.d.ts} +77 -52
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +7 -0
  24. package/build/internal/cjs/index.js.map +1 -1
  25. package/build/internal/cjs/index.typings.d.ts +2 -2
  26. package/build/internal/cjs/index.typings.js +7 -0
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +78 -53
  29. package/build/internal/cjs/meta.js +7 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{categories-v1-category-categories.universal-BIVm-eLc.d.mts → categories-v1-category-categories.universal-BiBkxcEi.d.mts} +77 -52
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +6 -0
  34. package/build/internal/es/index.mjs.map +1 -1
  35. package/build/internal/es/index.typings.d.mts +2 -2
  36. package/build/internal/es/index.typings.mjs +6 -0
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +78 -53
  39. package/build/internal/es/meta.mjs +6 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -486,7 +486,7 @@ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
486
486
  interface Stop {
487
487
  /**
488
488
  * Stop color as hex value.
489
- * @format COLOR_HEX
489
+ * @maxLength 19
490
490
  */
491
491
  color?: string | null;
492
492
  /** Stop position (0-1). */
@@ -527,7 +527,7 @@ interface Background {
527
527
  type?: BackgroundTypeWithLiterals;
528
528
  /**
529
529
  * Background color as a hexadecimal value.
530
- * @format COLOR_HEX
530
+ * @maxLength 19
531
531
  */
532
532
  color?: string | null;
533
533
  /** Gradient configuration. */
@@ -634,33 +634,33 @@ interface Styles {
634
634
  borderRadius?: number | null;
635
635
  /**
636
636
  * Border color as a hexadecimal value.
637
- * @format COLOR_HEX
637
+ * @maxLength 19
638
638
  */
639
639
  borderColor?: string | null;
640
640
  /**
641
641
  * Border color as a hexadecimal value (hover state).
642
- * @format COLOR_HEX
642
+ * @maxLength 19
643
643
  */
644
644
  borderColorHover?: string | null;
645
645
  /**
646
646
  * Text color as a hexadecimal value.
647
- * @format COLOR_HEX
647
+ * @maxLength 19
648
648
  */
649
649
  textColor?: string | null;
650
650
  /**
651
651
  * Text color as a hexadecimal value (hover state).
652
- * @format COLOR_HEX
652
+ * @maxLength 19
653
653
  */
654
654
  textColorHover?: string | null;
655
655
  /**
656
656
  * Deprecated: Use `background` instead.
657
- * @format COLOR_HEX
657
+ * @maxLength 19
658
658
  * @deprecated
659
659
  */
660
660
  backgroundColor?: string | null;
661
661
  /**
662
662
  * Deprecated: Use `backgroundHover` instead.
663
- * @format COLOR_HEX
663
+ * @maxLength 19
664
664
  * @deprecated
665
665
  */
666
666
  backgroundColorHover?: string | null;
@@ -1112,7 +1112,7 @@ interface StylesBorder {
1112
1112
  width?: number | null;
1113
1113
  /**
1114
1114
  * Border color as a hexadecimal value.
1115
- * @format COLOR_HEX
1115
+ * @maxLength 19
1116
1116
  */
1117
1117
  color?: string | null;
1118
1118
  /** Border radius in pixels. */
@@ -1153,22 +1153,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
1153
1153
  interface LinkPreviewDataStyles {
1154
1154
  /**
1155
1155
  * Background color as a hexadecimal value.
1156
- * @format COLOR_HEX
1156
+ * @maxLength 19
1157
1157
  */
1158
1158
  backgroundColor?: string | null;
1159
1159
  /**
1160
1160
  * Title color as a hexadecimal value.
1161
- * @format COLOR_HEX
1161
+ * @maxLength 19
1162
1162
  */
1163
1163
  titleColor?: string | null;
1164
1164
  /**
1165
1165
  * Subtitle color as a hexadecimal value.
1166
- * @format COLOR_HEX
1166
+ * @maxLength 19
1167
1167
  */
1168
1168
  subtitleColor?: string | null;
1169
1169
  /**
1170
1170
  * Link color as a hexadecimal value.
1171
- * @format COLOR_HEX
1171
+ * @maxLength 19
1172
1172
  */
1173
1173
  linkColor?: string | null;
1174
1174
  /** Border width in pixels. */
@@ -1177,7 +1177,7 @@ interface LinkPreviewDataStyles {
1177
1177
  borderRadius?: number | null;
1178
1178
  /**
1179
1179
  * Border color as a hexadecimal value.
1180
- * @format COLOR_HEX
1180
+ * @maxLength 19
1181
1181
  */
1182
1182
  borderColor?: string | null;
1183
1183
  /** Position of thumbnail. Defaults to `START`. */
@@ -1328,19 +1328,19 @@ interface BackgroundGradient {
1328
1328
  angle?: number | null;
1329
1329
  /**
1330
1330
  * The start color as a hexademical value.
1331
- * @format COLOR_HEX
1331
+ * @maxLength 19
1332
1332
  */
1333
1333
  startColor?: string | null;
1334
1334
  /**
1335
1335
  * The end color as a hexademical value.
1336
- * @format COLOR_HEX
1336
+ * @maxLength 19
1337
1337
  */
1338
1338
  lastColor?: string | null;
1339
1339
  }
1340
1340
  interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
1341
1341
  /**
1342
1342
  * The background color as a hexademical value.
1343
- * @format COLOR_HEX
1343
+ * @maxLength 19
1344
1344
  */
1345
1345
  color?: string | null;
1346
1346
  /** An image to use for the background. */
@@ -1354,7 +1354,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
1354
1354
  interface PollDesignBackgroundBackgroundOneOf {
1355
1355
  /**
1356
1356
  * The background color as a hexademical value.
1357
- * @format COLOR_HEX
1357
+ * @maxLength 19
1358
1358
  */
1359
1359
  color?: string | null;
1360
1360
  /** An image to use for the background. */
@@ -1668,32 +1668,32 @@ interface ButtonStyles {
1668
1668
  borderRadius?: number | null;
1669
1669
  /**
1670
1670
  * Border color as a hexadecimal value.
1671
- * @format COLOR_HEX
1671
+ * @maxLength 19
1672
1672
  */
1673
1673
  borderColor?: string | null;
1674
1674
  /**
1675
1675
  * Text color as a hexadecimal value.
1676
- * @format COLOR_HEX
1676
+ * @maxLength 19
1677
1677
  */
1678
1678
  textColor?: string | null;
1679
1679
  /**
1680
1680
  * Background color as a hexadecimal value.
1681
- * @format COLOR_HEX
1681
+ * @maxLength 19
1682
1682
  */
1683
1683
  backgroundColor?: string | null;
1684
1684
  /**
1685
1685
  * Border color as a hexadecimal value (hover state).
1686
- * @format COLOR_HEX
1686
+ * @maxLength 19
1687
1687
  */
1688
1688
  borderColorHover?: string | null;
1689
1689
  /**
1690
1690
  * Text color as a hexadecimal value (hover state).
1691
- * @format COLOR_HEX
1691
+ * @maxLength 19
1692
1692
  */
1693
1693
  textColorHover?: string | null;
1694
1694
  /**
1695
1695
  * Background color as a hexadecimal value (hover state).
1696
- * @format COLOR_HEX
1696
+ * @maxLength 19
1697
1697
  */
1698
1698
  backgroundColorHover?: string | null;
1699
1699
  /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
@@ -1710,7 +1710,7 @@ interface ImageStyles {
1710
1710
  resizing?: ResizingWithLiterals;
1711
1711
  /**
1712
1712
  * Image border color as a hexadecimal value.
1713
- * @format COLOR_HEX
1713
+ * @maxLength 19
1714
1714
  */
1715
1715
  borderColor?: string | null;
1716
1716
  /** Image border width in pixels. */
@@ -1723,17 +1723,17 @@ interface RibbonStyles {
1723
1723
  ribbonText?: string | null;
1724
1724
  /**
1725
1725
  * Ribbon background color as a hexadecimal value.
1726
- * @format COLOR_HEX
1726
+ * @maxLength 19
1727
1727
  */
1728
1728
  backgroundColor?: string | null;
1729
1729
  /**
1730
1730
  * Ribbon text color as a hexadecimal value.
1731
- * @format COLOR_HEX
1731
+ * @maxLength 19
1732
1732
  */
1733
1733
  textColor?: string | null;
1734
1734
  /**
1735
1735
  * Ribbon border color as a hexadecimal value.
1736
- * @format COLOR_HEX
1736
+ * @maxLength 19
1737
1737
  */
1738
1738
  borderColor?: string | null;
1739
1739
  /** Ribbon border width in pixels. */
@@ -1746,12 +1746,12 @@ interface RibbonStyles {
1746
1746
  interface CardStyles {
1747
1747
  /**
1748
1748
  * Card background color as a hexadecimal value.
1749
- * @format COLOR_HEX
1749
+ * @maxLength 19
1750
1750
  */
1751
1751
  backgroundColor?: string | null;
1752
1752
  /**
1753
1753
  * Card border color as a hexadecimal value.
1754
- * @format COLOR_HEX
1754
+ * @maxLength 19
1755
1755
  */
1756
1756
  borderColor?: string | null;
1757
1757
  /** Card border width in pixels. */
@@ -1766,12 +1766,12 @@ interface CardStyles {
1766
1766
  titlePriceLayout?: LayoutWithLiterals;
1767
1767
  /**
1768
1768
  * Title text color as a hexadecimal value.
1769
- * @format COLOR_HEX
1769
+ * @maxLength 19
1770
1770
  */
1771
1771
  titleColor?: string | null;
1772
1772
  /**
1773
1773
  * Text color as a hexadecimal value.
1774
- * @format COLOR_HEX
1774
+ * @maxLength 19
1775
1775
  */
1776
1776
  textColor?: string | null;
1777
1777
  }
@@ -1953,29 +1953,29 @@ interface CellStyle {
1953
1953
  verticalAlignment?: VerticalAlignmentWithLiterals;
1954
1954
  /**
1955
1955
  * Cell background color as a hexadecimal value.
1956
- * @format COLOR_HEX
1956
+ * @maxLength 19
1957
1957
  */
1958
1958
  backgroundColor?: string | null;
1959
1959
  }
1960
1960
  interface BorderColors {
1961
1961
  /**
1962
1962
  * Left border color as a hexadecimal value.
1963
- * @format COLOR_HEX
1963
+ * @maxLength 19
1964
1964
  */
1965
1965
  left?: string | null;
1966
1966
  /**
1967
1967
  * Right border color as a hexadecimal value.
1968
- * @format COLOR_HEX
1968
+ * @maxLength 19
1969
1969
  */
1970
1970
  right?: string | null;
1971
1971
  /**
1972
1972
  * Top border color as a hexadecimal value.
1973
- * @format COLOR_HEX
1973
+ * @maxLength 19
1974
1974
  */
1975
1975
  top?: string | null;
1976
1976
  /**
1977
1977
  * Bottom border color as a hexadecimal value.
1978
- * @format COLOR_HEX
1978
+ * @maxLength 19
1979
1979
  */
1980
1980
  bottom?: string | null;
1981
1981
  }
@@ -2050,7 +2050,7 @@ interface CaptionData {
2050
2050
  interface LayoutData {
2051
2051
  /**
2052
2052
  * Deprecated: Use `background` instead.
2053
- * @format COLOR_HEX
2053
+ * @maxLength 19
2054
2054
  * @deprecated
2055
2055
  */
2056
2056
  backgroundColor?: string | null;
@@ -2058,7 +2058,7 @@ interface LayoutData {
2058
2058
  backgroundImage?: LayoutDataBackgroundImage;
2059
2059
  /**
2060
2060
  * Border color as a hexadecimal value.
2061
- * @format COLOR_HEX
2061
+ * @maxLength 19
2062
2062
  */
2063
2063
  borderColor?: string | null;
2064
2064
  /** Border width in pixels. */
@@ -2067,7 +2067,7 @@ interface LayoutData {
2067
2067
  borderRadius?: number | null;
2068
2068
  /**
2069
2069
  * Deprecated: Use `backdrop` instead.
2070
- * @format COLOR_HEX
2070
+ * @maxLength 19
2071
2071
  * @deprecated
2072
2072
  */
2073
2073
  backdropColor?: string | null;
@@ -2094,7 +2094,7 @@ interface LayoutData {
2094
2094
  containerData?: PluginContainerData;
2095
2095
  /** Defines where selected design propertied applies to */
2096
2096
  designTarget?: DesignTargetWithLiterals;
2097
- /** Banner configuration. When present, this layout is displayed as a banner. */
2097
+ /** Banner configuration. When present, this layout is attached to a document edge (top or bottom). */
2098
2098
  banner?: Banner;
2099
2099
  /** Background styling (color or gradient). */
2100
2100
  background?: LayoutDataBackground;
@@ -2141,6 +2141,14 @@ declare enum Origin {
2141
2141
  }
2142
2142
  /** @enumType */
2143
2143
  type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
2144
+ declare enum BannerPosition {
2145
+ /** Attached to the top edge (banner) */
2146
+ TOP = "TOP",
2147
+ /** Attached to the bottom edge (footer) */
2148
+ BOTTOM = "BOTTOM"
2149
+ }
2150
+ /** @enumType */
2151
+ type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
2144
2152
  /** Background type */
2145
2153
  declare enum LayoutDataBackgroundType {
2146
2154
  /** Solid color background */
@@ -2198,6 +2206,8 @@ type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
2198
2206
  interface Banner {
2199
2207
  /** Origin of the banner */
2200
2208
  origin?: OriginWithLiterals;
2209
+ /** Position of the banner */
2210
+ position?: BannerPositionWithLiterals;
2201
2211
  }
2202
2212
  /** Background styling (color or gradient) */
2203
2213
  interface LayoutDataBackground {
@@ -2205,7 +2215,7 @@ interface LayoutDataBackground {
2205
2215
  type?: LayoutDataBackgroundTypeWithLiterals;
2206
2216
  /**
2207
2217
  * Background color as a hexadecimal value.
2208
- * @format COLOR_HEX
2218
+ * @maxLength 19
2209
2219
  */
2210
2220
  color?: string | null;
2211
2221
  /** Gradient configuration. */
@@ -2217,7 +2227,7 @@ interface Backdrop {
2217
2227
  type?: BackdropTypeWithLiterals;
2218
2228
  /**
2219
2229
  * Backdrop color as a hexadecimal value.
2220
- * @format COLOR_HEX
2230
+ * @maxLength 19
2221
2231
  */
2222
2232
  color?: string | null;
2223
2233
  /** Gradient configuration. */
@@ -2238,7 +2248,7 @@ interface ShapeData {
2238
2248
  interface ShapeDataStyles {
2239
2249
  /**
2240
2250
  * Shape fill color as a hexadecimal value.
2241
- * @format COLOR_HEX
2251
+ * @maxLength 19
2242
2252
  */
2243
2253
  color?: string | null;
2244
2254
  /** Map of original color keys to their new color values. */
@@ -2297,7 +2307,7 @@ interface CardDataBackground {
2297
2307
  type?: CardDataBackgroundTypeWithLiterals;
2298
2308
  /**
2299
2309
  * Background color as a hexadecimal value.
2300
- * @format COLOR_HEX
2310
+ * @maxLength 19
2301
2311
  */
2302
2312
  color?: string | null;
2303
2313
  /** Gradient configuration. */
@@ -2324,7 +2334,7 @@ interface TocData {
2324
2334
  itemSpacing?: number | null;
2325
2335
  /**
2326
2336
  * Optional override for the text color.
2327
- * @format COLOR_HEX
2337
+ * @maxLength 19
2328
2338
  */
2329
2339
  color?: string | null;
2330
2340
  /** Indentation style. Default: NESTED. */
@@ -2366,7 +2376,10 @@ interface SmartBlockData {
2366
2376
  orientation?: string | null;
2367
2377
  /** Column size controlling cells per row. */
2368
2378
  columnSize?: ColumnSizeWithLiterals;
2369
- /** Border color (for SOLID_JOINED_BOXES variant). */
2379
+ /**
2380
+ * Border color (for SOLID_JOINED_BOXES variant).
2381
+ * @maxLength 19
2382
+ */
2370
2383
  borderColor?: string | null;
2371
2384
  /** Border width in pixels (for SOLID_JOINED_BOXES variant). */
2372
2385
  borderWidth?: number | null;
@@ -2425,7 +2438,10 @@ interface SmartBlockCellData {
2425
2438
  label?: string | null;
2426
2439
  /** Shape file details. */
2427
2440
  shape?: Media;
2428
- /** Border color of the cell. */
2441
+ /**
2442
+ * Border color of the cell.
2443
+ * @maxLength 19
2444
+ */
2429
2445
  borderColor?: string | null;
2430
2446
  /** Border width in pixels. */
2431
2447
  borderWidth?: number | null;
@@ -2433,11 +2449,20 @@ interface SmartBlockCellData {
2433
2449
  borderRadius?: number | null;
2434
2450
  /** The type of the parent smart block (must match parent). */
2435
2451
  type?: SmartBlockDataTypeWithLiterals;
2436
- /** Accent color for non-background variants (e.g., line, bullet, label color). */
2452
+ /**
2453
+ * Accent color for non-background variants (e.g., line, bullet, label color).
2454
+ * @maxLength 19
2455
+ */
2437
2456
  accentColor?: string | null;
2438
- /** Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES). */
2457
+ /**
2458
+ * Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
2459
+ * @maxLength 19
2460
+ */
2439
2461
  backgroundColor?: string | null;
2440
- /** Shape fill color as a hexadecimal value. */
2462
+ /**
2463
+ * Shape fill color as a hexadecimal value.
2464
+ * @maxLength 19
2465
+ */
2441
2466
  shapeColor?: string | null;
2442
2467
  }
2443
2468
  interface Metadata {
@@ -5847,4 +5872,4 @@ interface BulkSetItemCategoriesOptions {
5847
5872
  treeReference: TreeReference;
5848
5873
  }
5849
5874
 
5850
- 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, SortOrder 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, SmartBlockDataType as aY, ColumnSize as aZ, SingleEntityOpsRequestedFields 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 LinkPreviewData as b$, RequestedFields as b0, SortType as b1, SortDirection as b2, MissingValues as b3, ScalarType as b4, NestedAggregationType as b5, Interval as b6, AggregationType as b7, Mode as b8, Position as b9, type LinkDataOneOf as bA, type Rel as bB, type CodeBlockData as bC, type TextStyle as bD, type DividerData as bE, type FileData as bF, type FileSource as bG, type FileSourceDataOneOf as bH, type PDFSettings as bI, type GalleryData as bJ, type Media as bK, type Image as bL, type Video as bM, type Item as bN, type ItemDataOneOf as bO, type GalleryOptions as bP, type GalleryOptionsLayout as bQ, type ItemStyle as bR, type Thumbnails as bS, type GIFData as bT, type GIF as bU, type HeadingData as bV, type HTMLData as bW, type HTMLDataDataOneOf as bX, type ImageData as bY, type StylesBorder as bZ, type ImageDataStyles as b_, MoveItemInCategoryRequestPosition as ba, WebhookIdentityType as bb, type BreadcrumbsInfo as bc, type Breadcrumb as bd, type ParentCategory as be, type SeoSchema as bf, type Keyword as bg, type Tag as bh, type Settings as bi, type RichContent as bj, type Node as bk, type NodeDataOneOf as bl, type NodeStyle as bm, type ButtonData as bn, type Gradient as bo, type Stop as bp, type Border as bq, type Colors as br, type Background as bs, type PluginContainerData as bt, type PluginContainerDataWidth as bu, type PluginContainerDataWidthDataOneOf as bv, type Spoiler as bw, type Height as bx, type Styles as by, type Link as bz, type CreateCategoryValidationErrors as c, type CardDataBackground as c$, type LinkPreviewDataStyles as c0, type MapData as c1, type MapSettings as c2, type ParagraphData as c3, type PollData as c4, type Permissions as c5, type Option as c6, type PollSettings as c7, type PollLayout as c8, type OptionLayout as c9, type PricingData as cA, type VideoData as cB, type PlaybackOptions as cC, type EmbedData as cD, type Oembed as cE, type CollapsibleListData as cF, type TableData as cG, type Dimensions as cH, type TableCellData as cI, type CellStyle as cJ, type BorderColors as cK, type BorderWidths as cL, type ListValue as cM, type AudioData as cN, type OrderedListData as cO, type BulletedListData as cP, type BlockquoteData as cQ, type CaptionData as cR, type LayoutData as cS, type LayoutDataBackgroundImage as cT, type Banner as cU, type LayoutDataBackground as cV, type Backdrop as cW, type LayoutCellData as cX, type ShapeData as cY, type ShapeDataStyles as cZ, type CardData as c_, type BackgroundGradient as ca, type PollDesignBackground as cb, type PollDesignBackgroundBackgroundOneOf as cc, type PollDesign as cd, type OptionDesign as ce, type Poll as cf, type PollDataLayout as cg, type Design as ch, type TextData as ci, type Decoration as cj, type DecorationDataOneOf as ck, type AnchorData as cl, type ColorData as cm, type LinkData as cn, type MentionData as co, type FontSizeData as cp, type SpoilerData as cq, type FontFamilyData as cr, type AppEmbedData as cs, type AppEmbedDataAppDataOneOf as ct, type BookingData as cu, type EventData as cv, type ButtonStyles as cw, type ImageStyles as cx, type RibbonStyles as cy, type CardStyles as cz, type UpdateCategoryOptions as d, type ValueAggregationResult as d$, type BackgroundImage as d0, type TocData as d1, type SmartBlockData as d2, type SmartBlockCellData as d3, type Metadata as d4, type DocumentStyle as d5, type TextNodeStyle as d6, type ExtendedFields as d7, type InvalidateCache as d8, type InvalidateCacheGetByOneOf as d9, type CursorQuery as dA, type CursorQueryPagingMethodOneOf as dB, type Sorting as dC, type CursorPaging as dD, type QueryCategoriesResponse as dE, type CursorPagingMetadata as dF, type Cursors as dG, type ListCompactCategoriesByIdsRequest as dH, type ListCompactCategoriesByIdsResponse as dI, type CompactCategory as dJ, type SearchCategoriesRequest as dK, type CursorSearch as dL, type CursorSearchPagingMethodOneOf as dM, type Aggregation as dN, type AggregationKindOneOf as dO, type RangeBucket as dP, type IncludeMissingValuesOptions as dQ, type ValueAggregation as dR, type ValueAggregationOptionsOneOf as dS, type RangeAggregation as dT, type ScalarAggregation as dU, type DateHistogramAggregation as dV, type NestedAggregationItem as dW, type NestedAggregationItemKindOneOf as dX, type NestedAggregation as dY, type SearchDetails as dZ, type AggregationData as d_, type App as da, type Page as db, type URI as dc, type File as dd, type CustomTag as de, type Pages as df, type URIs as dg, type CategoryMoved as dh, type ItemAddedToCategory as di, type ItemsAddedToCategory as dj, type ItemRemovedFromCategory as dk, type ItemsRemovedFromCategory as dl, type ItemsArrangedInCategory as dm, type CreateCategoryRequest as dn, type CreateCategoryResponse as dp, type DuplicateHandleErrorData as dq, type GetCategoryRequest as dr, type GetCategoryResponse as ds, type GetCategoryBySlugRequest as dt, type GetCategoryBySlugResponse as du, type UpdateCategoryRequest as dv, type UpdateCategoryResponse as dw, type DeleteCategoryRequest as dx, type DeleteCategoryResponse as dy, type QueryCategoriesRequest as dz, type UpdateCategoryApplicationErrors as e, type RestoreInfo as e$, type RangeAggregationResult as e0, type NestedAggregationResults as e1, type NestedAggregationResultsResultOneOf as e2, type ValueResults as e3, type RangeResults as e4, type AggregationResultsScalarResult as e5, type NestedValueAggregationResult as e6, type ValueResult as e7, type RangeResult as e8, type ScalarResult as e9, type BulkDeleteCategoriesResponseBulkCategoriesResult as eA, type BulkAddItemsToCategoryRequest as eB, type BulkItemsToCategoryResult as eC, type ItemReferenceMetadata as eD, type BulkAddItemToCategoriesRequest as eE, type BulkItemToCategoriesResult as eF, type BulkRemoveItemsFromCategoryRequest as eG, type BulkRemoveItemFromCategoriesRequest as eH, type ListItemsInCategoryRequest as eI, type ListItemsInCategoryRequestPagingMethodOneOf as eJ, type PagingMetadataV2 as eK, type ListCategoriesForItemRequest as eL, type ListCategoriesForItemsRequest as eM, type MapItemToCategories as eN, type ListTreesRequest as eO, type MoveItemInCategoryRequest as eP, type MoveItemInCategoryResponse as eQ, type SetArrangedItemsRequest as eR, type GetArrangedItemsRequest as eS, type BulkSetItemCategoriesRequest as eT, type BulkSetItemCategoriesResponse as eU, type GetCategoriesTreeRequest as eV, type GetCategoriesTreeResponse as eW, type CategoryTreeNode as eX, type DomainEvent as eY, type DomainEventBodyOneOf as eZ, type EntityCreatedEvent as e_, type NestedResultValue as ea, type NestedResultValueResultOneOf as eb, type Results as ec, type DateHistogramResult as ed, type GroupByValueResults as ee, type DateHistogramResults as ef, type NestedResults as eg, type AggregationResults as eh, type AggregationResultsResultOneOf as ei, type DeprecatedSearchCategoriesWithOffsetRequest as ej, type OffsetSearch as ek, type OffsetSearchPagingMethodOneOf as el, type Paging as em, type DeprecatedSearchCategoriesWithOffsetResponse as en, type PagingMetadata as eo, type CountCategoriesRequest as ep, type MoveCategoryRequest as eq, type BulkUpdateCategoriesRequest as er, type BulkCategoriesResult as es, type ItemMetadata as et, type ApplicationError as eu, type BulkActionMetadata as ev, type UpdateCategoryVisibilityRequest as ew, type BulkShowCategoriesRequest as ex, type BulkDeleteCategoriesRequest as ey, type BulkDeleteCategoriesResponse as ez, type CategorySearch as f, type NullValueWithLiterals as f$, type EntityUpdatedEvent as f0, type EntityDeletedEvent as f1, type ActionEvent as f2, type Empty as f3, type BulkCreateCategoriesForMigrationRequest as f4, type BulkCreateCategoriesForMigrationResponse as f5, type BulkAddItemsToCategoryForMigrationRequest as f6, type BulkAddItemsToCategoryForMigrationResponse as f7, type SetArrangedItemsForMigrationRequest as f8, type SetArrangedItemsForMigrationResponse as f9, type ViewModeWithLiterals as fA, type LayoutTypeWithLiterals as fB, type OrientationWithLiterals as fC, type CropWithLiterals as fD, type ThumbnailsAlignmentWithLiterals as fE, type GIFTypeWithLiterals as fF, type SourceWithLiterals as fG, type StylesPositionWithLiterals as fH, type MapTypeWithLiterals as fI, type ViewRoleWithLiterals as fJ, type VoteRoleWithLiterals as fK, type PollLayoutTypeWithLiterals as fL, type PollLayoutDirectionWithLiterals as fM, type PollDesignBackgroundTypeWithLiterals as fN, type DecorationTypeWithLiterals as fO, type FontTypeWithLiterals as fP, type ImageStylesPositionWithLiterals as fQ, type AspectRatioWithLiterals as fR, type ResizingWithLiterals as fS, type PlacementWithLiterals as fT, type TypeWithLiterals as fU, type AlignmentWithLiterals as fV, type LayoutWithLiterals as fW, type AppTypeWithLiterals as fX, type InitialExpandedItemsWithLiterals as fY, type DirectionWithLiterals as fZ, type VerticalAlignmentWithLiterals as f_, type CatalogRollbackRequested as fa, type MessageEnvelope as fb, type IdentificationData as fc, type IdentificationDataIdOneOf as fd, type AccountInfo as fe, type BaseEventMetadata as ff, type EventMetadata as fg, type AccountInfoMetadata as fh, type GetCategoryBySlugOptions as fi, type CategoriesQueryResult as fj, type CategoryQuerySpec as fk, type CategorySearchSpec as fl, type ListItemsInCategoryOptionsPagingMethodOneOf as fm, type BulkSetItemCategoriesOptions as fn, utils as fo, type NodeTypeWithLiterals as fp, type BackgroundTypeWithLiterals as fq, type GradientTypeWithLiterals as fr, type WidthTypeWithLiterals as fs, type PluginContainerDataAlignmentWithLiterals as ft, type ButtonDataTypeWithLiterals as fu, type TargetWithLiterals as fv, type TextAlignmentWithLiterals as fw, type LineStyleWithLiterals as fx, type WidthWithLiterals as fy, type DividerDataAlignmentWithLiterals as fz, type SearchCategoriesResponse as g, type ImageScalingScalingWithLiterals as g0, type ImagePositionWithLiterals as g1, type OriginWithLiterals as g2, type LayoutDataBackgroundTypeWithLiterals as g3, type BackdropTypeWithLiterals as g4, type VerticalAlignmentAlignmentWithLiterals as g5, type ResponsivenessBehaviourWithLiterals as g6, type DesignTargetWithLiterals as g7, type ScalingWithLiterals as g8, type ImagePositionPositionWithLiterals as g9, onCategoryItemRemovedFromCategory as gA, onCategoryItemsArrangedInCategory as gB, onCategoryUpdated as gC, createCategory as gD, getCategory as gE, updateCategory as gF, deleteCategory as gG, queryCategories as gH, countCategories as gI, moveCategory as gJ, bulkUpdateCategories as gK, updateCategoryVisibility as gL, bulkShowCategories as gM, bulkAddItemsToCategory as gN, bulkAddItemToCategories as gO, bulkRemoveItemsFromCategory as gP, bulkRemoveItemFromCategories as gQ, listItemsInCategory as gR, listCategoriesForItem as gS, listCategoriesForItems as gT, listTrees as gU, setArrangedItems as gV, getArrangedItems as gW, type CardDataBackgroundTypeWithLiterals as ga, type ListStyleWithLiterals as gb, type IndentationWithLiterals as gc, type SmartBlockDataTypeWithLiterals as gd, type ColumnSizeWithLiterals as ge, type SingleEntityOpsRequestedFieldsWithLiterals as gf, type SortOrderWithLiterals as gg, type RequestedFieldsWithLiterals as gh, type SortTypeWithLiterals as gi, type SortDirectionWithLiterals as gj, type MissingValuesWithLiterals as gk, type ScalarTypeWithLiterals as gl, type NestedAggregationTypeWithLiterals as gm, type IntervalWithLiterals as gn, type AggregationTypeWithLiterals as go, type ModeWithLiterals as gp, type PositionWithLiterals as gq, type MoveItemInCategoryRequestPositionWithLiterals as gr, type WebhookIdentityTypeWithLiterals as gs, type BulkSetItemCategoriesApplicationErrors as gt, type CommonQueryWithEntityContext as gu, type CommonSearchWithEntityContext as gv, onCategoryMoved as gw, onCategoryCreated as gx, onCategoryDeleted as gy, onCategoryItemAddedToCategory 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 };
5875
+ export { type CategoryDeletedEnvelope as $, type BulkRemoveItemsFromCategoryResponse as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkRemoveItemsFromCategoryApplicationErrors as E, type BulkRemoveItemFromCategoriesOptions as F, type GetCategoryOptions as G, type BulkRemoveItemFromCategoriesResponse as H, type ItemReference as I, type BulkRemoveItemFromCategoriesApplicationErrors as J, type ListItemsInCategoryResponse as K, type ListItemsInCategoryOptions as L, type MoveCategoryOptions as M, type ListCategoriesForItemOptions as N, type ListCategoriesForItemResponse as O, type ListCategoriesForItemsOptions as P, type ListCategoriesForItemsResponse as Q, type ListTreesResponse as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type SetArrangedItemsOptions as V, type SetArrangedItemsResponse as W, type SetArrangedItemsApplicationErrors as X, type GetArrangedItemsResponse as Y, type CategoryMovedEnvelope as Z, type CategoryCreatedEnvelope as _, type CreateCategoryOptions as a, SingleEntityOpsRequestedFields as a$, type CategoryItemAddedToCategoryEnvelope as a0, type CategoryItemRemovedFromCategoryEnvelope as a1, type CategoryItemsArrangedInCategoryEnvelope as a2, type CategoryUpdatedEnvelope as a3, type CategoryQuery as a4, type QueryCategoriesOptions as a5, typedQueryCategories as a6, type CategoriesQueryBuilder as a7, NodeType as a8, BackgroundType as a9, AspectRatio as aA, Resizing as aB, Placement as aC, Type as aD, Alignment as aE, Layout as aF, AppType as aG, InitialExpandedItems as aH, Direction as aI, VerticalAlignment as aJ, NullValue as aK, ImageScalingScaling as aL, ImagePosition as aM, Origin as aN, BannerPosition as aO, LayoutDataBackgroundType as aP, BackdropType as aQ, VerticalAlignmentAlignment as aR, ResponsivenessBehaviour as aS, DesignTarget as aT, Scaling as aU, ImagePositionPosition as aV, CardDataBackgroundType as aW, ListStyle as aX, Indentation as aY, SmartBlockDataType as aZ, ColumnSize as a_, GradientType as aa, WidthType as ab, PluginContainerDataAlignment as ac, ButtonDataType as ad, Target as ae, TextAlignment as af, LineStyle as ag, Width as ah, DividerDataAlignment as ai, ViewMode as aj, LayoutType as ak, Orientation as al, Crop as am, ThumbnailsAlignment as an, GIFType as ao, Source as ap, StylesPosition as aq, MapType as ar, ViewRole as as, VoteRole as at, PollLayoutType as au, PollLayoutDirection as av, PollDesignBackgroundType as aw, DecorationType as ax, FontType as ay, ImageStylesPosition as az, type CreateCategoryApplicationErrors as b, type ImageDataStyles as b$, SortOrder as b0, RequestedFields as b1, SortType as b2, SortDirection as b3, MissingValues as b4, ScalarType as b5, NestedAggregationType as b6, Interval as b7, AggregationType as b8, Mode as b9, type Link as bA, type LinkDataOneOf as bB, type Rel as bC, type CodeBlockData as bD, type TextStyle as bE, type DividerData as bF, type FileData as bG, type FileSource as bH, type FileSourceDataOneOf as bI, type PDFSettings as bJ, type GalleryData as bK, type Media as bL, type Image as bM, type Video as bN, type Item as bO, type ItemDataOneOf as bP, type GalleryOptions as bQ, type GalleryOptionsLayout as bR, type ItemStyle as bS, type Thumbnails as bT, type GIFData as bU, type GIF as bV, type HeadingData as bW, type HTMLData as bX, type HTMLDataDataOneOf as bY, type ImageData as bZ, type StylesBorder as b_, Position as ba, MoveItemInCategoryRequestPosition as bb, WebhookIdentityType as bc, type BreadcrumbsInfo as bd, type Breadcrumb as be, type ParentCategory as bf, type SeoSchema as bg, type Keyword as bh, type Tag as bi, type Settings as bj, type RichContent as bk, type Node as bl, type NodeDataOneOf as bm, type NodeStyle as bn, type ButtonData as bo, type Gradient as bp, type Stop as bq, type Border as br, type Colors as bs, type Background as bt, type PluginContainerData as bu, type PluginContainerDataWidth as bv, type PluginContainerDataWidthDataOneOf as bw, type Spoiler as bx, type Height as by, type Styles as bz, type CreateCategoryValidationErrors as c, type CardData as c$, type LinkPreviewData as c0, type LinkPreviewDataStyles as c1, type MapData as c2, type MapSettings as c3, type ParagraphData as c4, type PollData as c5, type Permissions as c6, type Option as c7, type PollSettings as c8, type PollLayout as c9, type CardStyles as cA, type PricingData as cB, type VideoData as cC, type PlaybackOptions as cD, type EmbedData as cE, type Oembed as cF, type CollapsibleListData as cG, type TableData as cH, type Dimensions as cI, type TableCellData as cJ, type CellStyle as cK, type BorderColors as cL, type BorderWidths as cM, type ListValue as cN, type AudioData as cO, type OrderedListData as cP, type BulletedListData as cQ, type BlockquoteData as cR, type CaptionData as cS, type LayoutData as cT, type LayoutDataBackgroundImage as cU, type Banner as cV, type LayoutDataBackground as cW, type Backdrop as cX, type LayoutCellData as cY, type ShapeData as cZ, type ShapeDataStyles as c_, type OptionLayout as ca, type BackgroundGradient as cb, type PollDesignBackground as cc, type PollDesignBackgroundBackgroundOneOf as cd, type PollDesign as ce, type OptionDesign as cf, type Poll as cg, type PollDataLayout as ch, type Design as ci, type TextData as cj, type Decoration as ck, type DecorationDataOneOf as cl, type AnchorData as cm, type ColorData as cn, type LinkData as co, type MentionData as cp, type FontSizeData as cq, type SpoilerData as cr, type FontFamilyData as cs, type AppEmbedData as ct, type AppEmbedDataAppDataOneOf as cu, type BookingData as cv, type EventData as cw, type ButtonStyles as cx, type ImageStyles as cy, type RibbonStyles as cz, type UpdateCategoryOptions as d, type AggregationData as d$, type CardDataBackground as d0, type BackgroundImage as d1, type TocData as d2, type SmartBlockData as d3, type SmartBlockCellData as d4, type Metadata as d5, type DocumentStyle as d6, type TextNodeStyle as d7, type ExtendedFields as d8, type InvalidateCache as d9, type QueryCategoriesRequest as dA, type CursorQuery as dB, type CursorQueryPagingMethodOneOf as dC, type Sorting as dD, type CursorPaging as dE, type QueryCategoriesResponse as dF, type CursorPagingMetadata as dG, type Cursors as dH, type ListCompactCategoriesByIdsRequest as dI, type ListCompactCategoriesByIdsResponse as dJ, type CompactCategory as dK, type SearchCategoriesRequest as dL, type CursorSearch as dM, type CursorSearchPagingMethodOneOf as dN, type Aggregation as dO, type AggregationKindOneOf as dP, type RangeBucket as dQ, type IncludeMissingValuesOptions as dR, type ValueAggregation as dS, type ValueAggregationOptionsOneOf as dT, type RangeAggregation as dU, type ScalarAggregation as dV, type DateHistogramAggregation as dW, type NestedAggregationItem as dX, type NestedAggregationItemKindOneOf as dY, type NestedAggregation as dZ, type SearchDetails as d_, type InvalidateCacheGetByOneOf as da, type App as db, type Page as dc, type URI as dd, type File as de, type CustomTag as df, type Pages as dg, type URIs as dh, type CategoryMoved as di, type ItemAddedToCategory as dj, type ItemsAddedToCategory as dk, type ItemRemovedFromCategory as dl, type ItemsRemovedFromCategory as dm, type ItemsArrangedInCategory as dn, type CreateCategoryRequest as dp, type CreateCategoryResponse as dq, type DuplicateHandleErrorData as dr, type GetCategoryRequest as ds, type GetCategoryResponse as dt, type GetCategoryBySlugRequest as du, type GetCategoryBySlugResponse as dv, type UpdateCategoryRequest as dw, type UpdateCategoryResponse as dx, type DeleteCategoryRequest as dy, type DeleteCategoryResponse as dz, type UpdateCategoryApplicationErrors as e, type EntityCreatedEvent as e$, type ValueAggregationResult as e0, type RangeAggregationResult as e1, type NestedAggregationResults as e2, type NestedAggregationResultsResultOneOf as e3, type ValueResults as e4, type RangeResults as e5, type AggregationResultsScalarResult as e6, type NestedValueAggregationResult as e7, type ValueResult as e8, type RangeResult as e9, type BulkDeleteCategoriesResponse as eA, type BulkDeleteCategoriesResponseBulkCategoriesResult as eB, type BulkAddItemsToCategoryRequest as eC, type BulkItemsToCategoryResult as eD, type ItemReferenceMetadata as eE, type BulkAddItemToCategoriesRequest as eF, type BulkItemToCategoriesResult as eG, type BulkRemoveItemsFromCategoryRequest as eH, type BulkRemoveItemFromCategoriesRequest as eI, type ListItemsInCategoryRequest as eJ, type ListItemsInCategoryRequestPagingMethodOneOf as eK, type PagingMetadataV2 as eL, type ListCategoriesForItemRequest as eM, type ListCategoriesForItemsRequest as eN, type MapItemToCategories as eO, type ListTreesRequest as eP, type MoveItemInCategoryRequest as eQ, type MoveItemInCategoryResponse as eR, type SetArrangedItemsRequest as eS, type GetArrangedItemsRequest as eT, type BulkSetItemCategoriesRequest as eU, type BulkSetItemCategoriesResponse as eV, type GetCategoriesTreeRequest as eW, type GetCategoriesTreeResponse as eX, type CategoryTreeNode as eY, type DomainEvent as eZ, type DomainEventBodyOneOf as e_, type ScalarResult as ea, type NestedResultValue as eb, type NestedResultValueResultOneOf as ec, type Results as ed, type DateHistogramResult as ee, type GroupByValueResults as ef, type DateHistogramResults as eg, type NestedResults as eh, type AggregationResults as ei, type AggregationResultsResultOneOf as ej, type DeprecatedSearchCategoriesWithOffsetRequest as ek, type OffsetSearch as el, type OffsetSearchPagingMethodOneOf as em, type Paging as en, type DeprecatedSearchCategoriesWithOffsetResponse as eo, type PagingMetadata as ep, type CountCategoriesRequest as eq, type MoveCategoryRequest as er, type BulkUpdateCategoriesRequest as es, type BulkCategoriesResult as et, type ItemMetadata as eu, type ApplicationError as ev, type BulkActionMetadata as ew, type UpdateCategoryVisibilityRequest as ex, type BulkShowCategoriesRequest as ey, type BulkDeleteCategoriesRequest as ez, type CategorySearch as f, type VerticalAlignmentWithLiterals as f$, type RestoreInfo as f0, type EntityUpdatedEvent as f1, type EntityDeletedEvent as f2, type ActionEvent as f3, type Empty as f4, type BulkCreateCategoriesForMigrationRequest as f5, type BulkCreateCategoriesForMigrationResponse as f6, type BulkAddItemsToCategoryForMigrationRequest as f7, type BulkAddItemsToCategoryForMigrationResponse as f8, type SetArrangedItemsForMigrationRequest as f9, type DividerDataAlignmentWithLiterals as fA, type ViewModeWithLiterals as fB, type LayoutTypeWithLiterals as fC, type OrientationWithLiterals as fD, type CropWithLiterals as fE, type ThumbnailsAlignmentWithLiterals as fF, type GIFTypeWithLiterals as fG, type SourceWithLiterals as fH, type StylesPositionWithLiterals as fI, type MapTypeWithLiterals as fJ, type ViewRoleWithLiterals as fK, type VoteRoleWithLiterals as fL, type PollLayoutTypeWithLiterals as fM, type PollLayoutDirectionWithLiterals as fN, type PollDesignBackgroundTypeWithLiterals as fO, type DecorationTypeWithLiterals as fP, type FontTypeWithLiterals as fQ, type ImageStylesPositionWithLiterals as fR, type AspectRatioWithLiterals as fS, type ResizingWithLiterals as fT, type PlacementWithLiterals as fU, type TypeWithLiterals as fV, type AlignmentWithLiterals as fW, type LayoutWithLiterals as fX, type AppTypeWithLiterals as fY, type InitialExpandedItemsWithLiterals as fZ, type DirectionWithLiterals as f_, type SetArrangedItemsForMigrationResponse as fa, type CatalogRollbackRequested as fb, type MessageEnvelope as fc, type IdentificationData as fd, type IdentificationDataIdOneOf as fe, type AccountInfo as ff, type BaseEventMetadata as fg, type EventMetadata as fh, type AccountInfoMetadata as fi, type GetCategoryBySlugOptions as fj, type CategoriesQueryResult as fk, type CategoryQuerySpec as fl, type CategorySearchSpec as fm, type ListItemsInCategoryOptionsPagingMethodOneOf as fn, type BulkSetItemCategoriesOptions as fo, utils as fp, type NodeTypeWithLiterals as fq, type BackgroundTypeWithLiterals as fr, type GradientTypeWithLiterals as fs, type WidthTypeWithLiterals as ft, type PluginContainerDataAlignmentWithLiterals as fu, type ButtonDataTypeWithLiterals as fv, type TargetWithLiterals as fw, type TextAlignmentWithLiterals as fx, type LineStyleWithLiterals as fy, type WidthWithLiterals as fz, type SearchCategoriesResponse as g, type NullValueWithLiterals as g0, type ImageScalingScalingWithLiterals as g1, type ImagePositionWithLiterals as g2, type OriginWithLiterals as g3, type BannerPositionWithLiterals as g4, type LayoutDataBackgroundTypeWithLiterals as g5, type BackdropTypeWithLiterals as g6, type VerticalAlignmentAlignmentWithLiterals as g7, type ResponsivenessBehaviourWithLiterals as g8, type DesignTargetWithLiterals as g9, onCategoryDeleted as gA, onCategoryItemAddedToCategory as gB, onCategoryItemRemovedFromCategory as gC, onCategoryItemsArrangedInCategory as gD, onCategoryUpdated as gE, createCategory as gF, getCategory as gG, updateCategory as gH, deleteCategory as gI, queryCategories as gJ, countCategories as gK, moveCategory as gL, bulkUpdateCategories as gM, updateCategoryVisibility as gN, bulkShowCategories as gO, bulkAddItemsToCategory as gP, bulkAddItemToCategories as gQ, bulkRemoveItemsFromCategory as gR, bulkRemoveItemFromCategories as gS, listItemsInCategory as gT, listCategoriesForItem as gU, listCategoriesForItems as gV, listTrees as gW, setArrangedItems as gX, getArrangedItems as gY, type ScalingWithLiterals as ga, type ImagePositionPositionWithLiterals as gb, type CardDataBackgroundTypeWithLiterals as gc, type ListStyleWithLiterals as gd, type IndentationWithLiterals as ge, type SmartBlockDataTypeWithLiterals as gf, type ColumnSizeWithLiterals as gg, type SingleEntityOpsRequestedFieldsWithLiterals as gh, type SortOrderWithLiterals as gi, type RequestedFieldsWithLiterals as gj, type SortTypeWithLiterals as gk, type SortDirectionWithLiterals as gl, type MissingValuesWithLiterals as gm, type ScalarTypeWithLiterals as gn, type NestedAggregationTypeWithLiterals as go, type IntervalWithLiterals as gp, type AggregationTypeWithLiterals as gq, type ModeWithLiterals as gr, type PositionWithLiterals as gs, type MoveItemInCategoryRequestPositionWithLiterals as gt, type WebhookIdentityTypeWithLiterals as gu, type BulkSetItemCategoriesApplicationErrors as gv, type CommonQueryWithEntityContext as gw, type CommonSearchWithEntityContext as gx, onCategoryMoved as gy, onCategoryCreated as gz, type CountCategoriesOptions as h, type CountCategoriesResponse as i, type MoveCategoryResponse as j, type MoveCategoryApplicationErrors as k, type MaskedCategory as l, type BulkUpdateCategoriesResponse as m, type BulkUpdateCategoriesApplicationErrors as n, type UpdateCategoryVisibilityOptions as o, type UpdateCategoryVisibilityResponse as p, type UpdateCategoryVisibilityApplicationErrors as q, type BulkShowCategoriesOptions as r, type BulkShowCategoriesResponse as s, type BulkAddItemsToCategoryOptions as t, type BulkAddItemsToCategoryResponse as u, type BulkAddItemsToCategoryApplicationErrors as v, type BulkAddItemToCategoriesOptions as w, type BulkAddItemToCategoriesResponse as x, type BulkAddItemToCategoriesApplicationErrors as y, type BulkRemoveItemsFromCategoryOptions as z };
@@ -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-Ap2HkvJt.js';
3
- export { fe as AccountInfo, fh as AccountInfoMetadata, f2 as ActionEvent, dN as Aggregation, d_ as AggregationData, dO as AggregationKindOneOf, eh as AggregationResults, ei as AggregationResultsResultOneOf, e5 as AggregationResultsScalarResult, b7 as AggregationType, go as AggregationTypeWithLiterals, aE as Alignment, fV as AlignmentWithLiterals, cl as AnchorData, da as App, cs as AppEmbedData, ct as AppEmbedDataAppDataOneOf, aG as AppType, fX as AppTypeWithLiterals, eu as ApplicationError, aA as AspectRatio, fR as AspectRatioWithLiterals, cN as AudioData, cW as Backdrop, aP as BackdropType, g4 as BackdropTypeWithLiterals, bs as Background, ca as BackgroundGradient, d0 as BackgroundImage, a9 as BackgroundType, fq as BackgroundTypeWithLiterals, cU as Banner, ff as BaseEventMetadata, cQ as BlockquoteData, cu as BookingData, bq as Border, cK as BorderColors, cL as BorderWidths, bd as Breadcrumb, bc as BreadcrumbsInfo, ev as BulkActionMetadata, eE as BulkAddItemToCategoriesRequest, f6 as BulkAddItemsToCategoryForMigrationRequest, f7 as BulkAddItemsToCategoryForMigrationResponse, eB as BulkAddItemsToCategoryRequest, es as BulkCategoriesResult, f4 as BulkCreateCategoriesForMigrationRequest, f5 as BulkCreateCategoriesForMigrationResponse, ey as BulkDeleteCategoriesRequest, ez as BulkDeleteCategoriesResponse, eA as BulkDeleteCategoriesResponseBulkCategoriesResult, eF as BulkItemToCategoriesResult, eC as BulkItemsToCategoryResult, eH as BulkRemoveItemFromCategoriesRequest, eG as BulkRemoveItemsFromCategoryRequest, gt as BulkSetItemCategoriesApplicationErrors, fn as BulkSetItemCategoriesOptions, eT as BulkSetItemCategoriesRequest, eU as BulkSetItemCategoriesResponse, ex as BulkShowCategoriesRequest, er as BulkUpdateCategoriesRequest, cP as BulletedListData, bn as ButtonData, ad as ButtonDataType, fu as ButtonDataTypeWithLiterals, cw as ButtonStyles, cR as CaptionData, c_ as CardData, c$ as CardDataBackground, aV as CardDataBackgroundType, ga as CardDataBackgroundTypeWithLiterals, cz as CardStyles, fa as CatalogRollbackRequested, fj as CategoriesQueryResult, dh as CategoryMoved, fk as CategoryQuerySpec, fl as CategorySearchSpec, eX as CategoryTreeNode, cJ as CellStyle, bC as CodeBlockData, cF as CollapsibleListData, cm as ColorData, br as Colors, aZ as ColumnSize, ge as ColumnSizeWithLiterals, gu as CommonQueryWithEntityContext, gv as CommonSearchWithEntityContext, dJ as CompactCategory, ep as CountCategoriesRequest, dn as CreateCategoryRequest, dp as CreateCategoryResponse, am as Crop, fD as CropWithLiterals, dD as CursorPaging, dF as CursorPagingMetadata, dA as CursorQuery, dB as CursorQueryPagingMethodOneOf, dL as CursorSearch, dM as CursorSearchPagingMethodOneOf, dG as Cursors, de as CustomTag, dV as DateHistogramAggregation, ed as DateHistogramResult, ef as DateHistogramResults, cj as Decoration, ck as DecorationDataOneOf, ax as DecorationType, fO as DecorationTypeWithLiterals, dx as DeleteCategoryRequest, dy as DeleteCategoryResponse, ej as DeprecatedSearchCategoriesWithOffsetRequest, en as DeprecatedSearchCategoriesWithOffsetResponse, ch as Design, aS as DesignTarget, g7 as DesignTargetWithLiterals, cH as Dimensions, aI as Direction, fZ as DirectionWithLiterals, bE as DividerData, ai as DividerDataAlignment, fz as DividerDataAlignmentWithLiterals, d5 as DocumentStyle, eY as DomainEvent, eZ as DomainEventBodyOneOf, dq as DuplicateHandleErrorData, cD as EmbedData, f3 as Empty, e_ as EntityCreatedEvent, f1 as EntityDeletedEvent, f0 as EntityUpdatedEvent, cv as EventData, fg as EventMetadata, d7 as ExtendedFields, dd as File, bF as FileData, bG as FileSource, bH as FileSourceDataOneOf, cr as FontFamilyData, cp as FontSizeData, ay as FontType, fP as FontTypeWithLiterals, bU as GIF, bT as GIFData, ao as GIFType, fF as GIFTypeWithLiterals, bJ as GalleryData, bP as GalleryOptions, bQ as GalleryOptionsLayout, eS as GetArrangedItemsRequest, eV as GetCategoriesTreeRequest, eW as GetCategoriesTreeResponse, fi as GetCategoryBySlugOptions, dt as GetCategoryBySlugRequest, du as GetCategoryBySlugResponse, dr as GetCategoryRequest, ds as GetCategoryResponse, bo as Gradient, aa as GradientType, fr as GradientTypeWithLiterals, ee as GroupByValueResults, bW as HTMLData, bX as HTMLDataDataOneOf, bV as HeadingData, bx as Height, fc as IdentificationData, fd as IdentificationDataIdOneOf, bL as Image, bY as ImageData, b_ as ImageDataStyles, aM as ImagePosition, aU as ImagePositionPosition, g9 as ImagePositionPositionWithLiterals, g1 as ImagePositionWithLiterals, aL as ImageScalingScaling, g0 as ImageScalingScalingWithLiterals, cx as ImageStyles, az as ImageStylesPosition, fQ as ImageStylesPositionWithLiterals, dQ as IncludeMissingValuesOptions, aX as Indentation, gc as IndentationWithLiterals, aH as InitialExpandedItems, fY as InitialExpandedItemsWithLiterals, b6 as Interval, gn as IntervalWithLiterals, d8 as InvalidateCache, d9 as InvalidateCacheGetByOneOf, bN as Item, di as ItemAddedToCategory, bO as ItemDataOneOf, et as ItemMetadata, eD as ItemReferenceMetadata, dk as ItemRemovedFromCategory, bR as ItemStyle, dj as ItemsAddedToCategory, dm as ItemsArrangedInCategory, dl as ItemsRemovedFromCategory, bg as Keyword, aF as Layout, cX as LayoutCellData, cS as LayoutData, cV as LayoutDataBackground, cT as LayoutDataBackgroundImage, aO as LayoutDataBackgroundType, g3 as LayoutDataBackgroundTypeWithLiterals, ak as LayoutType, fB as LayoutTypeWithLiterals, fW as LayoutWithLiterals, ag as LineStyle, fx as LineStyleWithLiterals, bz as Link, cn as LinkData, bA as LinkDataOneOf, b$ as LinkPreviewData, c0 as LinkPreviewDataStyles, eL as ListCategoriesForItemRequest, eM as ListCategoriesForItemsRequest, dH as ListCompactCategoriesByIdsRequest, dI as ListCompactCategoriesByIdsResponse, fm as ListItemsInCategoryOptionsPagingMethodOneOf, eI as ListItemsInCategoryRequest, eJ as ListItemsInCategoryRequestPagingMethodOneOf, aW as ListStyle, gb as ListStyleWithLiterals, eO as ListTreesRequest, cM as ListValue, c1 as MapData, eN as MapItemToCategories, c2 as MapSettings, ar as MapType, fI as MapTypeWithLiterals, bK as Media, co as MentionData, fb as MessageEnvelope, d4 as Metadata, b3 as MissingValues, gk as MissingValuesWithLiterals, b8 as Mode, gp as ModeWithLiterals, eq as MoveCategoryRequest, eP as MoveItemInCategoryRequest, ba as MoveItemInCategoryRequestPosition, gr as MoveItemInCategoryRequestPositionWithLiterals, eQ as MoveItemInCategoryResponse, dY as NestedAggregation, dW as NestedAggregationItem, dX as NestedAggregationItemKindOneOf, e1 as NestedAggregationResults, e2 as NestedAggregationResultsResultOneOf, b5 as NestedAggregationType, gm as NestedAggregationTypeWithLiterals, ea as NestedResultValue, eb as NestedResultValueResultOneOf, eg as NestedResults, e6 as NestedValueAggregationResult, bk as Node, bl as NodeDataOneOf, bm as NodeStyle, a8 as NodeType, fp as NodeTypeWithLiterals, aK as NullValue, f$ as NullValueWithLiterals, cE as Oembed, ek as OffsetSearch, el as OffsetSearchPagingMethodOneOf, c6 as Option, ce as OptionDesign, c9 as OptionLayout, cO as OrderedListData, al as Orientation, fC as OrientationWithLiterals, aN as Origin, g2 as OriginWithLiterals, bI as PDFSettings, db as Page, df as Pages, em as Paging, eo as PagingMetadata, eK as PagingMetadataV2, c3 as ParagraphData, be as ParentCategory, c5 as Permissions, aC as Placement, fT as PlacementWithLiterals, cC as PlaybackOptions, bt as PluginContainerData, ac as PluginContainerDataAlignment, ft as PluginContainerDataAlignmentWithLiterals, bu as PluginContainerDataWidth, bv as PluginContainerDataWidthDataOneOf, cf as Poll, c4 as PollData, cg as PollDataLayout, cd as PollDesign, cb as PollDesignBackground, cc as PollDesignBackgroundBackgroundOneOf, aw as PollDesignBackgroundType, fN as PollDesignBackgroundTypeWithLiterals, c8 as PollLayout, av as PollLayoutDirection, fM as PollLayoutDirectionWithLiterals, au as PollLayoutType, fL as PollLayoutTypeWithLiterals, c7 as PollSettings, b9 as Position, gq as PositionWithLiterals, cA as PricingData, dz as QueryCategoriesRequest, dE as QueryCategoriesResponse, dT as RangeAggregation, e0 as RangeAggregationResult, dP as RangeBucket, e8 as RangeResult, e4 as RangeResults, bB as Rel, b0 as RequestedFields, gh as RequestedFieldsWithLiterals, aB as Resizing, fS as ResizingWithLiterals, aR as ResponsivenessBehaviour, g6 as ResponsivenessBehaviourWithLiterals, e$ as RestoreInfo, ec as Results, cy as RibbonStyles, bj as RichContent, dU as ScalarAggregation, e9 as ScalarResult, b4 as ScalarType, gl as ScalarTypeWithLiterals, aT as Scaling, g8 as ScalingWithLiterals, dK as SearchCategoriesRequest, dZ as SearchDetails, bf as SeoSchema, f8 as SetArrangedItemsForMigrationRequest, f9 as SetArrangedItemsForMigrationResponse, eR as SetArrangedItemsRequest, bi as Settings, cY as ShapeData, cZ as ShapeDataStyles, a_ as SingleEntityOpsRequestedFields, gf as SingleEntityOpsRequestedFieldsWithLiterals, d3 as SmartBlockCellData, d2 as SmartBlockData, aY as SmartBlockDataType, gd as SmartBlockDataTypeWithLiterals, b2 as SortDirection, gj as SortDirectionWithLiterals, a$ as SortOrder, gg as SortOrderWithLiterals, b1 as SortType, gi as SortTypeWithLiterals, dC as Sorting, ap as Source, fG as SourceWithLiterals, bw as Spoiler, cq as SpoilerData, bp as Stop, by as Styles, bZ as StylesBorder, aq as StylesPosition, fH as StylesPositionWithLiterals, cI as TableCellData, cG as TableData, bh as Tag, ae as Target, fv as TargetWithLiterals, af as TextAlignment, fw as TextAlignmentWithLiterals, ci as TextData, d6 as TextNodeStyle, bD as TextStyle, bS as Thumbnails, an as ThumbnailsAlignment, fE as ThumbnailsAlignmentWithLiterals, d1 as TocData, aD as Type, fU as TypeWithLiterals, dc as URI, dg as URIs, dv as UpdateCategoryRequest, dw as UpdateCategoryResponse, ew as UpdateCategoryVisibilityRequest, dR as ValueAggregation, dS as ValueAggregationOptionsOneOf, d$ as ValueAggregationResult, e7 as ValueResult, e3 as ValueResults, aJ as VerticalAlignment, aQ as VerticalAlignmentAlignment, g5 as VerticalAlignmentAlignmentWithLiterals, f_ as VerticalAlignmentWithLiterals, bM as Video, cB as VideoData, aj as ViewMode, fA as ViewModeWithLiterals, as as ViewRole, fJ as ViewRoleWithLiterals, at as VoteRole, fK as VoteRoleWithLiterals, bb as WebhookIdentityType, gs as WebhookIdentityTypeWithLiterals, ah as Width, ab as WidthType, fs as WidthTypeWithLiterals, fy as WidthWithLiterals, fo as utils } from './categories-v1-category-categories.universal-Ap2HkvJt.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-OeDwVZwq.js';
3
+ export { ff as AccountInfo, fi as AccountInfoMetadata, f3 as ActionEvent, dO as Aggregation, d$ as AggregationData, dP as AggregationKindOneOf, ei as AggregationResults, ej as AggregationResultsResultOneOf, e6 as AggregationResultsScalarResult, b8 as AggregationType, gq as AggregationTypeWithLiterals, aE as Alignment, fW as AlignmentWithLiterals, cm as AnchorData, db as App, ct as AppEmbedData, cu as AppEmbedDataAppDataOneOf, aG as AppType, fY as AppTypeWithLiterals, ev as ApplicationError, aA as AspectRatio, fS as AspectRatioWithLiterals, cO as AudioData, cX as Backdrop, aQ as BackdropType, g6 as BackdropTypeWithLiterals, bt as Background, cb as BackgroundGradient, d1 as BackgroundImage, a9 as BackgroundType, fr as BackgroundTypeWithLiterals, cV as Banner, aO as BannerPosition, g4 as BannerPositionWithLiterals, fg as BaseEventMetadata, cR as BlockquoteData, cv as BookingData, br as Border, cL as BorderColors, cM as BorderWidths, be as Breadcrumb, bd as BreadcrumbsInfo, ew as BulkActionMetadata, eF as BulkAddItemToCategoriesRequest, f7 as BulkAddItemsToCategoryForMigrationRequest, f8 as BulkAddItemsToCategoryForMigrationResponse, eC as BulkAddItemsToCategoryRequest, et as BulkCategoriesResult, f5 as BulkCreateCategoriesForMigrationRequest, f6 as BulkCreateCategoriesForMigrationResponse, ez as BulkDeleteCategoriesRequest, eA as BulkDeleteCategoriesResponse, eB as BulkDeleteCategoriesResponseBulkCategoriesResult, eG as BulkItemToCategoriesResult, eD as BulkItemsToCategoryResult, eI as BulkRemoveItemFromCategoriesRequest, eH as BulkRemoveItemsFromCategoryRequest, gv as BulkSetItemCategoriesApplicationErrors, fo as BulkSetItemCategoriesOptions, eU as BulkSetItemCategoriesRequest, eV as BulkSetItemCategoriesResponse, ey as BulkShowCategoriesRequest, es as BulkUpdateCategoriesRequest, cQ as BulletedListData, bo as ButtonData, ad as ButtonDataType, fv as ButtonDataTypeWithLiterals, cx as ButtonStyles, cS as CaptionData, c$ as CardData, d0 as CardDataBackground, aW as CardDataBackgroundType, gc as CardDataBackgroundTypeWithLiterals, cA as CardStyles, fb as CatalogRollbackRequested, fk as CategoriesQueryResult, di as CategoryMoved, fl as CategoryQuerySpec, fm as CategorySearchSpec, eY as CategoryTreeNode, cK as CellStyle, bD as CodeBlockData, cG as CollapsibleListData, cn as ColorData, bs as Colors, a_ as ColumnSize, gg as ColumnSizeWithLiterals, gw as CommonQueryWithEntityContext, gx as CommonSearchWithEntityContext, dK as CompactCategory, eq as CountCategoriesRequest, dp as CreateCategoryRequest, dq as CreateCategoryResponse, am as Crop, fE as CropWithLiterals, dE as CursorPaging, dG as CursorPagingMetadata, dB as CursorQuery, dC as CursorQueryPagingMethodOneOf, dM as CursorSearch, dN as CursorSearchPagingMethodOneOf, dH as Cursors, df as CustomTag, dW as DateHistogramAggregation, ee as DateHistogramResult, eg as DateHistogramResults, ck as Decoration, cl as DecorationDataOneOf, ax as DecorationType, fP as DecorationTypeWithLiterals, dy as DeleteCategoryRequest, dz as DeleteCategoryResponse, ek as DeprecatedSearchCategoriesWithOffsetRequest, eo as DeprecatedSearchCategoriesWithOffsetResponse, ci as Design, aT as DesignTarget, g9 as DesignTargetWithLiterals, cI as Dimensions, aI as Direction, f_ as DirectionWithLiterals, bF as DividerData, ai as DividerDataAlignment, fA as DividerDataAlignmentWithLiterals, d6 as DocumentStyle, eZ as DomainEvent, e_ as DomainEventBodyOneOf, dr as DuplicateHandleErrorData, cE as EmbedData, f4 as Empty, e$ as EntityCreatedEvent, f2 as EntityDeletedEvent, f1 as EntityUpdatedEvent, cw as EventData, fh as EventMetadata, d8 as ExtendedFields, de as File, bG as FileData, bH as FileSource, bI as FileSourceDataOneOf, cs as FontFamilyData, cq as FontSizeData, ay as FontType, fQ as FontTypeWithLiterals, bV as GIF, bU as GIFData, ao as GIFType, fG as GIFTypeWithLiterals, bK as GalleryData, bQ as GalleryOptions, bR as GalleryOptionsLayout, eT as GetArrangedItemsRequest, eW as GetCategoriesTreeRequest, eX as GetCategoriesTreeResponse, fj as GetCategoryBySlugOptions, du as GetCategoryBySlugRequest, dv as GetCategoryBySlugResponse, ds as GetCategoryRequest, dt as GetCategoryResponse, bp as Gradient, aa as GradientType, fs as GradientTypeWithLiterals, ef as GroupByValueResults, bX as HTMLData, bY as HTMLDataDataOneOf, bW as HeadingData, by as Height, fd as IdentificationData, fe as IdentificationDataIdOneOf, bM as Image, bZ as ImageData, b$ as ImageDataStyles, aM as ImagePosition, aV as ImagePositionPosition, gb as ImagePositionPositionWithLiterals, g2 as ImagePositionWithLiterals, aL as ImageScalingScaling, g1 as ImageScalingScalingWithLiterals, cy as ImageStyles, az as ImageStylesPosition, fR as ImageStylesPositionWithLiterals, dR as IncludeMissingValuesOptions, aY as Indentation, ge as IndentationWithLiterals, aH as InitialExpandedItems, fZ as InitialExpandedItemsWithLiterals, b7 as Interval, gp as IntervalWithLiterals, d9 as InvalidateCache, da as InvalidateCacheGetByOneOf, bO as Item, dj as ItemAddedToCategory, bP as ItemDataOneOf, eu as ItemMetadata, eE as ItemReferenceMetadata, dl as ItemRemovedFromCategory, bS as ItemStyle, dk as ItemsAddedToCategory, dn as ItemsArrangedInCategory, dm as ItemsRemovedFromCategory, bh as Keyword, aF as Layout, cY as LayoutCellData, cT as LayoutData, cW as LayoutDataBackground, cU as LayoutDataBackgroundImage, aP as LayoutDataBackgroundType, g5 as LayoutDataBackgroundTypeWithLiterals, ak as LayoutType, fC as LayoutTypeWithLiterals, fX as LayoutWithLiterals, ag as LineStyle, fy as LineStyleWithLiterals, bA as Link, co as LinkData, bB as LinkDataOneOf, c0 as LinkPreviewData, c1 as LinkPreviewDataStyles, eM as ListCategoriesForItemRequest, eN as ListCategoriesForItemsRequest, dI as ListCompactCategoriesByIdsRequest, dJ as ListCompactCategoriesByIdsResponse, fn as ListItemsInCategoryOptionsPagingMethodOneOf, eJ as ListItemsInCategoryRequest, eK as ListItemsInCategoryRequestPagingMethodOneOf, aX as ListStyle, gd as ListStyleWithLiterals, eP as ListTreesRequest, cN as ListValue, c2 as MapData, eO as MapItemToCategories, c3 as MapSettings, ar as MapType, fJ as MapTypeWithLiterals, bL as Media, cp as MentionData, fc as MessageEnvelope, d5 as Metadata, b4 as MissingValues, gm as MissingValuesWithLiterals, b9 as Mode, gr as ModeWithLiterals, er as MoveCategoryRequest, eQ as MoveItemInCategoryRequest, bb as MoveItemInCategoryRequestPosition, gt as MoveItemInCategoryRequestPositionWithLiterals, eR as MoveItemInCategoryResponse, dZ as NestedAggregation, dX as NestedAggregationItem, dY as NestedAggregationItemKindOneOf, e2 as NestedAggregationResults, e3 as NestedAggregationResultsResultOneOf, b6 as NestedAggregationType, go as NestedAggregationTypeWithLiterals, eb as NestedResultValue, ec as NestedResultValueResultOneOf, eh as NestedResults, e7 as NestedValueAggregationResult, bl as Node, bm as NodeDataOneOf, bn as NodeStyle, a8 as NodeType, fq as NodeTypeWithLiterals, aK as NullValue, g0 as NullValueWithLiterals, cF as Oembed, el as OffsetSearch, em as OffsetSearchPagingMethodOneOf, c7 as Option, cf as OptionDesign, ca as OptionLayout, cP as OrderedListData, al as Orientation, fD as OrientationWithLiterals, aN as Origin, g3 as OriginWithLiterals, bJ as PDFSettings, dc as Page, dg as Pages, en as Paging, ep as PagingMetadata, eL as PagingMetadataV2, c4 as ParagraphData, bf as ParentCategory, c6 as Permissions, aC as Placement, fU as PlacementWithLiterals, cD as PlaybackOptions, bu as PluginContainerData, ac as PluginContainerDataAlignment, fu as PluginContainerDataAlignmentWithLiterals, bv as PluginContainerDataWidth, bw as PluginContainerDataWidthDataOneOf, cg as Poll, c5 as PollData, ch as PollDataLayout, ce as PollDesign, cc as PollDesignBackground, cd as PollDesignBackgroundBackgroundOneOf, aw as PollDesignBackgroundType, fO as PollDesignBackgroundTypeWithLiterals, c9 as PollLayout, av as PollLayoutDirection, fN as PollLayoutDirectionWithLiterals, au as PollLayoutType, fM as PollLayoutTypeWithLiterals, c8 as PollSettings, ba as Position, gs as PositionWithLiterals, cB as PricingData, dA as QueryCategoriesRequest, dF as QueryCategoriesResponse, dU as RangeAggregation, e1 as RangeAggregationResult, dQ as RangeBucket, e9 as RangeResult, e5 as RangeResults, bC as Rel, b1 as RequestedFields, gj as RequestedFieldsWithLiterals, aB as Resizing, fT as ResizingWithLiterals, aS as ResponsivenessBehaviour, g8 as ResponsivenessBehaviourWithLiterals, f0 as RestoreInfo, ed as Results, cz as RibbonStyles, bk as RichContent, dV as ScalarAggregation, ea as ScalarResult, b5 as ScalarType, gn as ScalarTypeWithLiterals, aU as Scaling, ga as ScalingWithLiterals, dL as SearchCategoriesRequest, d_ as SearchDetails, bg as SeoSchema, f9 as SetArrangedItemsForMigrationRequest, fa as SetArrangedItemsForMigrationResponse, eS as SetArrangedItemsRequest, bj as Settings, cZ as ShapeData, c_ as ShapeDataStyles, a$ as SingleEntityOpsRequestedFields, gh as SingleEntityOpsRequestedFieldsWithLiterals, d4 as SmartBlockCellData, d3 as SmartBlockData, aZ as SmartBlockDataType, gf as SmartBlockDataTypeWithLiterals, b3 as SortDirection, gl as SortDirectionWithLiterals, b0 as SortOrder, gi as SortOrderWithLiterals, b2 as SortType, gk as SortTypeWithLiterals, dD as Sorting, ap as Source, fH as SourceWithLiterals, bx as Spoiler, cr as SpoilerData, bq as Stop, bz as Styles, b_ as StylesBorder, aq as StylesPosition, fI as StylesPositionWithLiterals, cJ as TableCellData, cH as TableData, bi as Tag, ae as Target, fw as TargetWithLiterals, af as TextAlignment, fx as TextAlignmentWithLiterals, cj as TextData, d7 as TextNodeStyle, bE as TextStyle, bT as Thumbnails, an as ThumbnailsAlignment, fF as ThumbnailsAlignmentWithLiterals, d2 as TocData, aD as Type, fV as TypeWithLiterals, dd as URI, dh as URIs, dw as UpdateCategoryRequest, dx as UpdateCategoryResponse, ex as UpdateCategoryVisibilityRequest, dS as ValueAggregation, dT as ValueAggregationOptionsOneOf, e0 as ValueAggregationResult, e8 as ValueResult, e4 as ValueResults, aJ as VerticalAlignment, aR as VerticalAlignmentAlignment, g7 as VerticalAlignmentAlignmentWithLiterals, f$ as VerticalAlignmentWithLiterals, bN as Video, cC as VideoData, aj as ViewMode, fB as ViewModeWithLiterals, as as ViewRole, fK as ViewRoleWithLiterals, at as VoteRole, fL as VoteRoleWithLiterals, bc as WebhookIdentityType, gu as WebhookIdentityTypeWithLiterals, ah as Width, ab as WidthType, ft as WidthTypeWithLiterals, fz as WidthWithLiterals, fp as utils } from './categories-v1-category-categories.universal-OeDwVZwq.js';
4
4
 
5
5
  declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
6
6
  interface CreateCategorySignature {
@@ -26,6 +26,7 @@ __export(index_exports, {
26
26
  AspectRatio: () => AspectRatio,
27
27
  BackdropType: () => BackdropType,
28
28
  BackgroundType: () => BackgroundType,
29
+ BannerPosition: () => BannerPosition,
29
30
  ButtonDataType: () => ButtonDataType,
30
31
  CardDataBackgroundType: () => CardDataBackgroundType,
31
32
  ColumnSize: () => ColumnSize,
@@ -2637,6 +2638,11 @@ var Origin = /* @__PURE__ */ ((Origin2) => {
2637
2638
  Origin2["LAYOUT"] = "LAYOUT";
2638
2639
  return Origin2;
2639
2640
  })(Origin || {});
2641
+ var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
2642
+ BannerPosition2["TOP"] = "TOP";
2643
+ BannerPosition2["BOTTOM"] = "BOTTOM";
2644
+ return BannerPosition2;
2645
+ })(BannerPosition || {});
2640
2646
  var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
2641
2647
  LayoutDataBackgroundType2["COLOR"] = "COLOR";
2642
2648
  LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
@@ -4554,6 +4560,7 @@ var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(
4554
4560
  AspectRatio,
4555
4561
  BackdropType,
4556
4562
  BackgroundType,
4563
+ BannerPosition,
4557
4564
  ButtonDataType,
4558
4565
  CardDataBackgroundType,
4559
4566
  ColumnSize,