@wix/auto_sdk_categories_categories 1.0.105 → 1.0.107
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/{categories-v1-category-categories.universal-Yxug6jLC.d.ts → categories-v1-category-categories.universal-DAp47gfD.d.ts} +278 -45
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +886 -23
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +679 -22
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +279 -46
- package/build/cjs/meta.js +679 -22
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{categories-v1-category-categories.universal-Yxug6jLC.d.mts → categories-v1-category-categories.universal-DAp47gfD.d.mts} +278 -45
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +877 -23
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +670 -22
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +279 -46
- package/build/es/meta.mjs +670 -22
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{categories-v1-category-categories.universal-Du32EiPP.d.ts → categories-v1-category-categories.universal-D_41PGaH.d.ts} +278 -45
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +886 -23
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +679 -22
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +279 -46
- package/build/internal/cjs/meta.js +679 -22
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{categories-v1-category-categories.universal-Du32EiPP.d.mts → categories-v1-category-categories.universal-D_41PGaH.d.mts} +278 -45
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +877 -23
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +670 -22
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +279 -46
- package/build/internal/es/meta.mjs +670 -22
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -294,6 +294,10 @@ interface Node extends NodeDataOneOf {
|
|
|
294
294
|
layoutCellData?: LayoutCellData;
|
|
295
295
|
/** Data for a shape node. */
|
|
296
296
|
shapeData?: ShapeData;
|
|
297
|
+
/** Data for a card node. */
|
|
298
|
+
cardData?: CardData;
|
|
299
|
+
/** Data for a table of contents node. */
|
|
300
|
+
tocData?: TocData;
|
|
297
301
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
298
302
|
type?: NodeTypeWithLiterals;
|
|
299
303
|
/** Node ID. */
|
|
@@ -363,6 +367,10 @@ interface NodeDataOneOf {
|
|
|
363
367
|
layoutCellData?: LayoutCellData;
|
|
364
368
|
/** Data for a shape node. */
|
|
365
369
|
shapeData?: ShapeData;
|
|
370
|
+
/** Data for a card node. */
|
|
371
|
+
cardData?: CardData;
|
|
372
|
+
/** Data for a table of contents node. */
|
|
373
|
+
tocData?: TocData;
|
|
366
374
|
}
|
|
367
375
|
declare enum NodeType {
|
|
368
376
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -399,10 +407,12 @@ declare enum NodeType {
|
|
|
399
407
|
CAPTION = "CAPTION",
|
|
400
408
|
LAYOUT = "LAYOUT",
|
|
401
409
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
402
|
-
SHAPE = "SHAPE"
|
|
410
|
+
SHAPE = "SHAPE",
|
|
411
|
+
CARD = "CARD",
|
|
412
|
+
TOC = "TOC"
|
|
403
413
|
}
|
|
404
414
|
/** @enumType */
|
|
405
|
-
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE';
|
|
415
|
+
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD' | 'TOC';
|
|
406
416
|
interface NodeStyle {
|
|
407
417
|
/** The top padding value in pixels. */
|
|
408
418
|
paddingTop?: string | null;
|
|
@@ -423,6 +433,55 @@ interface ButtonData {
|
|
|
423
433
|
/** Button link details. */
|
|
424
434
|
link?: Link;
|
|
425
435
|
}
|
|
436
|
+
/** Background type */
|
|
437
|
+
declare enum BackgroundType {
|
|
438
|
+
/** Solid color background */
|
|
439
|
+
COLOR = "COLOR",
|
|
440
|
+
/** Gradient background */
|
|
441
|
+
GRADIENT = "GRADIENT"
|
|
442
|
+
}
|
|
443
|
+
/** @enumType */
|
|
444
|
+
type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'GRADIENT';
|
|
445
|
+
interface Gradient {
|
|
446
|
+
/** Gradient type. */
|
|
447
|
+
type?: GradientTypeWithLiterals;
|
|
448
|
+
/**
|
|
449
|
+
* Color stops for the gradient.
|
|
450
|
+
* @maxSize 1000
|
|
451
|
+
*/
|
|
452
|
+
stops?: Stop[];
|
|
453
|
+
/** Angle in degrees for linear gradient (0-360). */
|
|
454
|
+
angle?: number | null;
|
|
455
|
+
/**
|
|
456
|
+
* Horizontal center position for radial gradient (0-100).
|
|
457
|
+
* @max 100
|
|
458
|
+
*/
|
|
459
|
+
centerX?: number | null;
|
|
460
|
+
/**
|
|
461
|
+
* Vertical center position for radial gradient (0-100).
|
|
462
|
+
* @max 100
|
|
463
|
+
*/
|
|
464
|
+
centerY?: number | null;
|
|
465
|
+
}
|
|
466
|
+
/** Gradient type. */
|
|
467
|
+
declare enum GradientType {
|
|
468
|
+
/** Linear gradient. */
|
|
469
|
+
LINEAR = "LINEAR",
|
|
470
|
+
/** Radial gradient. */
|
|
471
|
+
RADIAL = "RADIAL"
|
|
472
|
+
}
|
|
473
|
+
/** @enumType */
|
|
474
|
+
type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
|
|
475
|
+
/** A single color stop in the gradient. */
|
|
476
|
+
interface Stop {
|
|
477
|
+
/**
|
|
478
|
+
* Stop color as hex value.
|
|
479
|
+
* @format COLOR_HEX
|
|
480
|
+
*/
|
|
481
|
+
color?: string | null;
|
|
482
|
+
/** Stop position (0-1). */
|
|
483
|
+
position?: number | null;
|
|
484
|
+
}
|
|
426
485
|
interface Border {
|
|
427
486
|
/**
|
|
428
487
|
* Deprecated: Use `borderWidth` in `styles` instead.
|
|
@@ -452,6 +511,18 @@ interface Colors {
|
|
|
452
511
|
*/
|
|
453
512
|
background?: string | null;
|
|
454
513
|
}
|
|
514
|
+
/** Background styling (color or gradient) */
|
|
515
|
+
interface Background {
|
|
516
|
+
/** Background type. */
|
|
517
|
+
type?: BackgroundTypeWithLiterals;
|
|
518
|
+
/**
|
|
519
|
+
* Background color as a hexadecimal value.
|
|
520
|
+
* @format COLOR_HEX
|
|
521
|
+
*/
|
|
522
|
+
color?: string | null;
|
|
523
|
+
/** Gradient configuration. */
|
|
524
|
+
gradient?: Gradient;
|
|
525
|
+
}
|
|
455
526
|
interface PluginContainerData {
|
|
456
527
|
/** The width of the node when it's displayed. */
|
|
457
528
|
width?: PluginContainerDataWidth;
|
|
@@ -572,17 +643,23 @@ interface Styles {
|
|
|
572
643
|
*/
|
|
573
644
|
textColorHover?: string | null;
|
|
574
645
|
/**
|
|
575
|
-
*
|
|
646
|
+
* Deprecated: Use `background` instead.
|
|
576
647
|
* @format COLOR_HEX
|
|
648
|
+
* @deprecated
|
|
577
649
|
*/
|
|
578
650
|
backgroundColor?: string | null;
|
|
579
651
|
/**
|
|
580
|
-
*
|
|
652
|
+
* Deprecated: Use `backgroundHover` instead.
|
|
581
653
|
* @format COLOR_HEX
|
|
654
|
+
* @deprecated
|
|
582
655
|
*/
|
|
583
656
|
backgroundColorHover?: string | null;
|
|
584
657
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
585
658
|
buttonSize?: string | null;
|
|
659
|
+
/** Background styling (color or gradient). */
|
|
660
|
+
background?: Background;
|
|
661
|
+
/** Background styling for hover state (color or gradient). */
|
|
662
|
+
backgroundHover?: Background;
|
|
586
663
|
}
|
|
587
664
|
interface Link extends LinkDataOneOf {
|
|
588
665
|
/** The absolute URL for the linked document. */
|
|
@@ -964,6 +1041,8 @@ interface HTMLData extends HTMLDataDataOneOf {
|
|
|
964
1041
|
* @deprecated
|
|
965
1042
|
*/
|
|
966
1043
|
isAdsense?: boolean | null;
|
|
1044
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
1045
|
+
widgetId?: string;
|
|
967
1046
|
/** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
|
|
968
1047
|
containerData?: PluginContainerData;
|
|
969
1048
|
/** The type of HTML code. */
|
|
@@ -982,14 +1061,17 @@ interface HTMLDataDataOneOf {
|
|
|
982
1061
|
* @deprecated
|
|
983
1062
|
*/
|
|
984
1063
|
isAdsense?: boolean | null;
|
|
1064
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
1065
|
+
widgetId?: string;
|
|
985
1066
|
}
|
|
986
1067
|
declare enum Source {
|
|
987
1068
|
HTML = "HTML",
|
|
988
1069
|
ADSENSE = "ADSENSE",
|
|
989
|
-
AI = "AI"
|
|
1070
|
+
AI = "AI",
|
|
1071
|
+
AI_WIDGET = "AI_WIDGET"
|
|
990
1072
|
}
|
|
991
1073
|
/** @enumType */
|
|
992
|
-
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
|
|
1074
|
+
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI' | 'AI_WIDGET';
|
|
993
1075
|
interface ImageData {
|
|
994
1076
|
/** Styling for the image's container. */
|
|
995
1077
|
containerData?: PluginContainerData;
|
|
@@ -1219,7 +1301,7 @@ interface OptionLayout {
|
|
|
1219
1301
|
/** Sets whether to display option images. Defaults to `false`. */
|
|
1220
1302
|
enableImage?: boolean | null;
|
|
1221
1303
|
}
|
|
1222
|
-
declare enum
|
|
1304
|
+
declare enum PollDesignBackgroundType {
|
|
1223
1305
|
/** Color background type */
|
|
1224
1306
|
COLOR = "COLOR",
|
|
1225
1307
|
/** Image background type */
|
|
@@ -1228,8 +1310,8 @@ declare enum BackgroundType {
|
|
|
1228
1310
|
GRADIENT = "GRADIENT"
|
|
1229
1311
|
}
|
|
1230
1312
|
/** @enumType */
|
|
1231
|
-
type
|
|
1232
|
-
interface
|
|
1313
|
+
type PollDesignBackgroundTypeWithLiterals = PollDesignBackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
|
|
1314
|
+
interface BackgroundGradient {
|
|
1233
1315
|
/** The gradient angle in degrees. */
|
|
1234
1316
|
angle?: number | null;
|
|
1235
1317
|
/**
|
|
@@ -1243,7 +1325,7 @@ interface Gradient {
|
|
|
1243
1325
|
*/
|
|
1244
1326
|
lastColor?: string | null;
|
|
1245
1327
|
}
|
|
1246
|
-
interface
|
|
1328
|
+
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
1247
1329
|
/**
|
|
1248
1330
|
* The background color as a hexademical value.
|
|
1249
1331
|
* @format COLOR_HEX
|
|
@@ -1252,12 +1334,12 @@ interface Background extends BackgroundBackgroundOneOf {
|
|
|
1252
1334
|
/** An image to use for the background. */
|
|
1253
1335
|
image?: Media;
|
|
1254
1336
|
/** Details for a gradient background. */
|
|
1255
|
-
gradient?:
|
|
1337
|
+
gradient?: BackgroundGradient;
|
|
1256
1338
|
/** Background type. For each option, include the relevant details. */
|
|
1257
|
-
type?:
|
|
1339
|
+
type?: PollDesignBackgroundTypeWithLiterals;
|
|
1258
1340
|
}
|
|
1259
1341
|
/** @oneof */
|
|
1260
|
-
interface
|
|
1342
|
+
interface PollDesignBackgroundBackgroundOneOf {
|
|
1261
1343
|
/**
|
|
1262
1344
|
* The background color as a hexademical value.
|
|
1263
1345
|
* @format COLOR_HEX
|
|
@@ -1266,11 +1348,11 @@ interface BackgroundBackgroundOneOf {
|
|
|
1266
1348
|
/** An image to use for the background. */
|
|
1267
1349
|
image?: Media;
|
|
1268
1350
|
/** Details for a gradient background. */
|
|
1269
|
-
gradient?:
|
|
1351
|
+
gradient?: BackgroundGradient;
|
|
1270
1352
|
}
|
|
1271
1353
|
interface PollDesign {
|
|
1272
1354
|
/** Background styling. */
|
|
1273
|
-
background?:
|
|
1355
|
+
background?: PollDesignBackground;
|
|
1274
1356
|
/** Border radius in pixels. */
|
|
1275
1357
|
borderRadius?: number | null;
|
|
1276
1358
|
}
|
|
@@ -1953,12 +2035,13 @@ interface CaptionData {
|
|
|
1953
2035
|
}
|
|
1954
2036
|
interface LayoutData {
|
|
1955
2037
|
/**
|
|
1956
|
-
*
|
|
2038
|
+
* Deprecated: Use `background` instead.
|
|
1957
2039
|
* @format COLOR_HEX
|
|
2040
|
+
* @deprecated
|
|
1958
2041
|
*/
|
|
1959
2042
|
backgroundColor?: string | null;
|
|
1960
2043
|
/** Background image. */
|
|
1961
|
-
backgroundImage?:
|
|
2044
|
+
backgroundImage?: LayoutDataBackgroundImage;
|
|
1962
2045
|
/**
|
|
1963
2046
|
* Border color as a hexadecimal value.
|
|
1964
2047
|
* @format COLOR_HEX
|
|
@@ -1966,15 +2049,16 @@ interface LayoutData {
|
|
|
1966
2049
|
borderColor?: string | null;
|
|
1967
2050
|
/** Border width in pixels. */
|
|
1968
2051
|
borderWidth?: number | null;
|
|
1969
|
-
/** Border */
|
|
2052
|
+
/** Border radius in pixels. */
|
|
1970
2053
|
borderRadius?: number | null;
|
|
1971
2054
|
/**
|
|
1972
|
-
*
|
|
2055
|
+
* Deprecated: Use `backdrop` instead.
|
|
1973
2056
|
* @format COLOR_HEX
|
|
2057
|
+
* @deprecated
|
|
1974
2058
|
*/
|
|
1975
2059
|
backdropColor?: string | null;
|
|
1976
|
-
/** Backdrop image.
|
|
1977
|
-
backdropImage?:
|
|
2060
|
+
/** Backdrop image. */
|
|
2061
|
+
backdropImage?: LayoutDataBackgroundImage;
|
|
1978
2062
|
/** Backdrop top padding. */
|
|
1979
2063
|
backdropPaddingTop?: number | null;
|
|
1980
2064
|
/** Backdrop bottom padding */
|
|
@@ -1998,8 +2082,12 @@ interface LayoutData {
|
|
|
1998
2082
|
designTarget?: DesignTargetWithLiterals;
|
|
1999
2083
|
/** Banner configuration. When present, this layout is displayed as a banner. */
|
|
2000
2084
|
banner?: Banner;
|
|
2085
|
+
/** Background styling (color or gradient). */
|
|
2086
|
+
background?: LayoutDataBackground;
|
|
2087
|
+
/** Backdrop styling (color or gradient). */
|
|
2088
|
+
backdrop?: Backdrop;
|
|
2001
2089
|
}
|
|
2002
|
-
declare enum
|
|
2090
|
+
declare enum ImageScalingScaling {
|
|
2003
2091
|
/** Auto image scaling */
|
|
2004
2092
|
AUTO = "AUTO",
|
|
2005
2093
|
/** Contain image scaling */
|
|
@@ -2008,7 +2096,7 @@ declare enum Scaling {
|
|
|
2008
2096
|
COVER = "COVER"
|
|
2009
2097
|
}
|
|
2010
2098
|
/** @enumType */
|
|
2011
|
-
type
|
|
2099
|
+
type ImageScalingScalingWithLiterals = ImageScalingScaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
2012
2100
|
declare enum ImagePosition {
|
|
2013
2101
|
/** Image positioned at the center */
|
|
2014
2102
|
CENTER = "CENTER",
|
|
@@ -2039,13 +2127,31 @@ declare enum Origin {
|
|
|
2039
2127
|
}
|
|
2040
2128
|
/** @enumType */
|
|
2041
2129
|
type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
|
|
2042
|
-
|
|
2130
|
+
/** Background type */
|
|
2131
|
+
declare enum LayoutDataBackgroundType {
|
|
2132
|
+
/** Solid color background */
|
|
2133
|
+
COLOR = "COLOR",
|
|
2134
|
+
/** Gradient background */
|
|
2135
|
+
GRADIENT = "GRADIENT"
|
|
2136
|
+
}
|
|
2137
|
+
/** @enumType */
|
|
2138
|
+
type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2139
|
+
/** Backdrop type */
|
|
2140
|
+
declare enum BackdropType {
|
|
2141
|
+
/** Solid color backdrop */
|
|
2142
|
+
COLOR = "COLOR",
|
|
2143
|
+
/** Gradient backdrop */
|
|
2144
|
+
GRADIENT = "GRADIENT"
|
|
2145
|
+
}
|
|
2146
|
+
/** @enumType */
|
|
2147
|
+
type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
|
|
2148
|
+
interface LayoutDataBackgroundImage {
|
|
2043
2149
|
/** Background image. */
|
|
2044
2150
|
media?: Media;
|
|
2045
2151
|
/** Background image opacity. */
|
|
2046
2152
|
opacity?: number | null;
|
|
2047
2153
|
/** Background image scaling. */
|
|
2048
|
-
scaling?:
|
|
2154
|
+
scaling?: ImageScalingScalingWithLiterals;
|
|
2049
2155
|
/** Position of background. Defaults to `CENTER`. */
|
|
2050
2156
|
position?: ImagePositionWithLiterals;
|
|
2051
2157
|
}
|
|
@@ -2079,6 +2185,30 @@ interface Banner {
|
|
|
2079
2185
|
/** Origin of the banner */
|
|
2080
2186
|
origin?: OriginWithLiterals;
|
|
2081
2187
|
}
|
|
2188
|
+
/** Background styling (color or gradient) */
|
|
2189
|
+
interface LayoutDataBackground {
|
|
2190
|
+
/** Background type. */
|
|
2191
|
+
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2192
|
+
/**
|
|
2193
|
+
* Background color as a hexadecimal value.
|
|
2194
|
+
* @format COLOR_HEX
|
|
2195
|
+
*/
|
|
2196
|
+
color?: string | null;
|
|
2197
|
+
/** Gradient configuration. */
|
|
2198
|
+
gradient?: Gradient;
|
|
2199
|
+
}
|
|
2200
|
+
/** Backdrop styling (color or gradient) */
|
|
2201
|
+
interface Backdrop {
|
|
2202
|
+
/** Backdrop type. */
|
|
2203
|
+
type?: BackdropTypeWithLiterals;
|
|
2204
|
+
/**
|
|
2205
|
+
* Backdrop color as a hexadecimal value.
|
|
2206
|
+
* @format COLOR_HEX
|
|
2207
|
+
*/
|
|
2208
|
+
color?: string | null;
|
|
2209
|
+
/** Gradient configuration. */
|
|
2210
|
+
gradient?: Gradient;
|
|
2211
|
+
}
|
|
2082
2212
|
interface LayoutCellData {
|
|
2083
2213
|
/** Size of the cell in 12 columns grid. */
|
|
2084
2214
|
colSpan?: number | null;
|
|
@@ -2100,6 +2230,120 @@ interface ShapeDataStyles {
|
|
|
2100
2230
|
/** Map of original color keys to their new color values. */
|
|
2101
2231
|
colors?: Record<string, string>;
|
|
2102
2232
|
}
|
|
2233
|
+
interface CardData {
|
|
2234
|
+
/** Background styling (color or gradient). */
|
|
2235
|
+
background?: CardDataBackground;
|
|
2236
|
+
/** Background image. */
|
|
2237
|
+
backgroundImage?: BackgroundImage;
|
|
2238
|
+
}
|
|
2239
|
+
declare enum Scaling {
|
|
2240
|
+
/** Auto image scaling */
|
|
2241
|
+
AUTO = "AUTO",
|
|
2242
|
+
/** Contain image scaling */
|
|
2243
|
+
CONTAIN = "CONTAIN",
|
|
2244
|
+
/** Cover image scaling */
|
|
2245
|
+
COVER = "COVER"
|
|
2246
|
+
}
|
|
2247
|
+
/** @enumType */
|
|
2248
|
+
type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
2249
|
+
declare enum ImagePositionPosition {
|
|
2250
|
+
/** Image positioned at the center */
|
|
2251
|
+
CENTER = "CENTER",
|
|
2252
|
+
/** Image positioned on the left */
|
|
2253
|
+
CENTER_LEFT = "CENTER_LEFT",
|
|
2254
|
+
/** Image positioned on the right */
|
|
2255
|
+
CENTER_RIGHT = "CENTER_RIGHT",
|
|
2256
|
+
/** Image positioned at the center top */
|
|
2257
|
+
TOP = "TOP",
|
|
2258
|
+
/** Image positioned at the top left */
|
|
2259
|
+
TOP_LEFT = "TOP_LEFT",
|
|
2260
|
+
/** Image positioned at the top right */
|
|
2261
|
+
TOP_RIGHT = "TOP_RIGHT",
|
|
2262
|
+
/** Image positioned at the center bottom */
|
|
2263
|
+
BOTTOM = "BOTTOM",
|
|
2264
|
+
/** Image positioned at the bottom left */
|
|
2265
|
+
BOTTOM_LEFT = "BOTTOM_LEFT",
|
|
2266
|
+
/** Image positioned at the bottom right */
|
|
2267
|
+
BOTTOM_RIGHT = "BOTTOM_RIGHT"
|
|
2268
|
+
}
|
|
2269
|
+
/** @enumType */
|
|
2270
|
+
type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
2271
|
+
/** Background type */
|
|
2272
|
+
declare enum CardDataBackgroundType {
|
|
2273
|
+
/** Solid color background */
|
|
2274
|
+
COLOR = "COLOR",
|
|
2275
|
+
/** Gradient background */
|
|
2276
|
+
GRADIENT = "GRADIENT"
|
|
2277
|
+
}
|
|
2278
|
+
/** @enumType */
|
|
2279
|
+
type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2280
|
+
/** Background styling (color or gradient) */
|
|
2281
|
+
interface CardDataBackground {
|
|
2282
|
+
/** Background type. */
|
|
2283
|
+
type?: CardDataBackgroundTypeWithLiterals;
|
|
2284
|
+
/**
|
|
2285
|
+
* Background color as a hexadecimal value.
|
|
2286
|
+
* @format COLOR_HEX
|
|
2287
|
+
*/
|
|
2288
|
+
color?: string | null;
|
|
2289
|
+
/** Gradient configuration. */
|
|
2290
|
+
gradient?: Gradient;
|
|
2291
|
+
}
|
|
2292
|
+
interface BackgroundImage {
|
|
2293
|
+
/** Background image. */
|
|
2294
|
+
media?: Media;
|
|
2295
|
+
/** Background image opacity. */
|
|
2296
|
+
opacity?: number | null;
|
|
2297
|
+
/** Background image scaling. */
|
|
2298
|
+
scaling?: ScalingWithLiterals;
|
|
2299
|
+
/** Position of background. Defaults to `CENTER`. */
|
|
2300
|
+
position?: ImagePositionPositionWithLiterals;
|
|
2301
|
+
}
|
|
2302
|
+
interface TocData {
|
|
2303
|
+
/** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
|
|
2304
|
+
includedHeadings?: number[];
|
|
2305
|
+
/** List style. Default: PLAIN. */
|
|
2306
|
+
listStyle?: ListStyleWithLiterals;
|
|
2307
|
+
/** Optional override for the font size in pixels. */
|
|
2308
|
+
fontSize?: number | null;
|
|
2309
|
+
/** Optional override for the vertical spacing between items in pixels. */
|
|
2310
|
+
itemSpacing?: number | null;
|
|
2311
|
+
/**
|
|
2312
|
+
* Optional override for the text color.
|
|
2313
|
+
* @format COLOR_HEX
|
|
2314
|
+
*/
|
|
2315
|
+
color?: string | null;
|
|
2316
|
+
/** Indentation style. Default: NESTED. */
|
|
2317
|
+
indentation?: IndentationWithLiterals;
|
|
2318
|
+
}
|
|
2319
|
+
/** List style. */
|
|
2320
|
+
declare enum ListStyle {
|
|
2321
|
+
/** No markers (default) */
|
|
2322
|
+
PLAIN = "PLAIN",
|
|
2323
|
+
/** Numbered list */
|
|
2324
|
+
NUMBERED = "NUMBERED",
|
|
2325
|
+
/** Alphabetic letters */
|
|
2326
|
+
LETTERS = "LETTERS",
|
|
2327
|
+
/** Roman numerals */
|
|
2328
|
+
ROMAN = "ROMAN",
|
|
2329
|
+
/** Bulleted list */
|
|
2330
|
+
BULLETED = "BULLETED",
|
|
2331
|
+
/** Alphabetical index */
|
|
2332
|
+
ALPHABETICAL_INDEX = "ALPHABETICAL_INDEX",
|
|
2333
|
+
/** Alphabetical index (compact top-row only) */
|
|
2334
|
+
ALPHABETICAL_INDEX_COMPACT = "ALPHABETICAL_INDEX_COMPACT"
|
|
2335
|
+
}
|
|
2336
|
+
/** @enumType */
|
|
2337
|
+
type ListStyleWithLiterals = ListStyle | 'PLAIN' | 'NUMBERED' | 'LETTERS' | 'ROMAN' | 'BULLETED' | 'ALPHABETICAL_INDEX' | 'ALPHABETICAL_INDEX_COMPACT';
|
|
2338
|
+
/** Indentation style. */
|
|
2339
|
+
declare enum Indentation {
|
|
2340
|
+
/** Sub-headings indented under parents (default) */
|
|
2341
|
+
NESTED = "NESTED",
|
|
2342
|
+
/** All items at the same level */
|
|
2343
|
+
FLAT = "FLAT"
|
|
2344
|
+
}
|
|
2345
|
+
/** @enumType */
|
|
2346
|
+
type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
|
|
2103
2347
|
interface Metadata {
|
|
2104
2348
|
/** Schema version. */
|
|
2105
2349
|
version?: number;
|
|
@@ -2431,14 +2675,12 @@ interface CreateCategoryRequest {
|
|
|
2431
2675
|
fields?: SingleEntityOpsRequestedFieldsWithLiterals[];
|
|
2432
2676
|
}
|
|
2433
2677
|
declare enum SingleEntityOpsRequestedFields {
|
|
2434
|
-
/** Not implemented. */
|
|
2435
|
-
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
2436
2678
|
BREADCRUMBS_INFO = "BREADCRUMBS_INFO",
|
|
2437
2679
|
DESCRIPTION = "DESCRIPTION",
|
|
2438
2680
|
RICH_CONTENT_DESCRIPTION = "RICH_CONTENT_DESCRIPTION"
|
|
2439
2681
|
}
|
|
2440
2682
|
/** @enumType */
|
|
2441
|
-
type SingleEntityOpsRequestedFieldsWithLiterals = SingleEntityOpsRequestedFields | '
|
|
2683
|
+
type SingleEntityOpsRequestedFieldsWithLiterals = SingleEntityOpsRequestedFields | 'BREADCRUMBS_INFO' | 'DESCRIPTION' | 'RICH_CONTENT_DESCRIPTION';
|
|
2442
2684
|
interface CreateCategoryResponse {
|
|
2443
2685
|
/** Created category. */
|
|
2444
2686
|
category?: Category;
|
|
@@ -2568,12 +2810,10 @@ interface CursorPaging {
|
|
|
2568
2810
|
cursor?: string | null;
|
|
2569
2811
|
}
|
|
2570
2812
|
declare enum RequestedFields {
|
|
2571
|
-
/** Not implemented. */
|
|
2572
|
-
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
2573
2813
|
BREADCRUMBS_INFO = "BREADCRUMBS_INFO"
|
|
2574
2814
|
}
|
|
2575
2815
|
/** @enumType */
|
|
2576
|
-
type RequestedFieldsWithLiterals = RequestedFields | '
|
|
2816
|
+
type RequestedFieldsWithLiterals = RequestedFields | 'BREADCRUMBS_INFO';
|
|
2577
2817
|
interface QueryCategoriesResponse {
|
|
2578
2818
|
/**
|
|
2579
2819
|
* List of categories.
|
|
@@ -2773,7 +3013,6 @@ interface IncludeMissingValuesOptions {
|
|
|
2773
3013
|
addToBucket?: string;
|
|
2774
3014
|
}
|
|
2775
3015
|
declare enum ScalarType {
|
|
2776
|
-
UNKNOWN_SCALAR_TYPE = "UNKNOWN_SCALAR_TYPE",
|
|
2777
3016
|
/** Total number of distinct values. */
|
|
2778
3017
|
COUNT_DISTINCT = "COUNT_DISTINCT",
|
|
2779
3018
|
/** Minimum value. */
|
|
@@ -2782,7 +3021,7 @@ declare enum ScalarType {
|
|
|
2782
3021
|
MAX = "MAX"
|
|
2783
3022
|
}
|
|
2784
3023
|
/** @enumType */
|
|
2785
|
-
type ScalarTypeWithLiterals = ScalarType | '
|
|
3024
|
+
type ScalarTypeWithLiterals = ScalarType | 'COUNT_DISTINCT' | 'MIN' | 'MAX';
|
|
2786
3025
|
interface ValueAggregation extends ValueAggregationOptionsOneOf {
|
|
2787
3026
|
/** Options for including missing values in the aggregation results. */
|
|
2788
3027
|
includeOptions?: IncludeMissingValuesOptions;
|
|
@@ -2811,8 +3050,6 @@ interface ValueAggregationOptionsOneOf {
|
|
|
2811
3050
|
includeOptions?: IncludeMissingValuesOptions;
|
|
2812
3051
|
}
|
|
2813
3052
|
declare enum NestedAggregationType {
|
|
2814
|
-
/** Unknown aggregation type. */
|
|
2815
|
-
UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
|
|
2816
3053
|
/** Calculates the distribution of a specific field's values within a dataset, providing insights into the overall distribution and key statistics of those values. */
|
|
2817
3054
|
VALUE = "VALUE",
|
|
2818
3055
|
/** Calculates the count of the values from the specified field in the dataset that fall within the range of each bucket you define. */
|
|
@@ -2823,7 +3060,7 @@ declare enum NestedAggregationType {
|
|
|
2823
3060
|
DATE_HISTOGRAM = "DATE_HISTOGRAM"
|
|
2824
3061
|
}
|
|
2825
3062
|
/** @enumType */
|
|
2826
|
-
type NestedAggregationTypeWithLiterals = NestedAggregationType | '
|
|
3063
|
+
type NestedAggregationTypeWithLiterals = NestedAggregationType | 'VALUE' | 'RANGE' | 'SCALAR' | 'DATE_HISTOGRAM';
|
|
2827
3064
|
interface RangeAggregation {
|
|
2828
3065
|
/**
|
|
2829
3066
|
* List of range buckets defining the ranges for aggregation. During aggregation, each entity is placed in the first bucket where its value falls within the specified range bounds.
|
|
@@ -2840,7 +3077,6 @@ interface DateHistogramAggregation {
|
|
|
2840
3077
|
interval?: IntervalWithLiterals;
|
|
2841
3078
|
}
|
|
2842
3079
|
declare enum Interval {
|
|
2843
|
-
UNKNOWN_INTERVAL = "UNKNOWN_INTERVAL",
|
|
2844
3080
|
/** Yearly interval. */
|
|
2845
3081
|
YEAR = "YEAR",
|
|
2846
3082
|
/** Monthly interval. */
|
|
@@ -2857,7 +3093,7 @@ declare enum Interval {
|
|
|
2857
3093
|
SECOND = "SECOND"
|
|
2858
3094
|
}
|
|
2859
3095
|
/** @enumType */
|
|
2860
|
-
type IntervalWithLiterals = Interval | '
|
|
3096
|
+
type IntervalWithLiterals = Interval | 'YEAR' | 'MONTH' | 'WEEK' | 'DAY' | 'HOUR' | 'MINUTE' | 'SECOND';
|
|
2861
3097
|
interface NestedAggregationItem extends NestedAggregationItemKindOneOf {
|
|
2862
3098
|
/** Value aggregation configuration. Calculates the distribution of field values within the dataset. */
|
|
2863
3099
|
value?: ValueAggregation;
|
|
@@ -2892,7 +3128,6 @@ interface NestedAggregationItemKindOneOf {
|
|
|
2892
3128
|
dateHistogram?: DateHistogramAggregation;
|
|
2893
3129
|
}
|
|
2894
3130
|
declare enum AggregationType {
|
|
2895
|
-
UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
|
|
2896
3131
|
/** Calculates the distribution of a specific field's values within a dataset, providing insights into the overall distribution and key statistics of those values. */
|
|
2897
3132
|
VALUE = "VALUE",
|
|
2898
3133
|
/** Calculates the count of the values from the specified field in the dataset that fall within the range of each bucket you define. */
|
|
@@ -2905,7 +3140,7 @@ declare enum AggregationType {
|
|
|
2905
3140
|
NESTED = "NESTED"
|
|
2906
3141
|
}
|
|
2907
3142
|
/** @enumType */
|
|
2908
|
-
type AggregationTypeWithLiterals = AggregationType | '
|
|
3143
|
+
type AggregationTypeWithLiterals = AggregationType | 'VALUE' | 'RANGE' | 'SCALAR' | 'DATE_HISTOGRAM' | 'NESTED';
|
|
2909
3144
|
/** Nested aggregation for multi-level faceted search. Allows exploring large amounts of data through multiple levels of categorization, where each subsequent aggregation is nested within the previous aggregation to create hierarchical data summaries. */
|
|
2910
3145
|
interface NestedAggregation {
|
|
2911
3146
|
/**
|
|
@@ -3293,13 +3528,12 @@ interface MoveCategoryRequest {
|
|
|
3293
3528
|
moveAfterCategoryId?: string | null;
|
|
3294
3529
|
}
|
|
3295
3530
|
declare enum Position {
|
|
3296
|
-
UNKNOWN_POSITION = "UNKNOWN_POSITION",
|
|
3297
3531
|
FIRST = "FIRST",
|
|
3298
3532
|
LAST = "LAST",
|
|
3299
3533
|
AFTER = "AFTER"
|
|
3300
3534
|
}
|
|
3301
3535
|
/** @enumType */
|
|
3302
|
-
type PositionWithLiterals = Position | '
|
|
3536
|
+
type PositionWithLiterals = Position | 'FIRST' | 'LAST' | 'AFTER';
|
|
3303
3537
|
interface MoveCategoryResponse {
|
|
3304
3538
|
/**
|
|
3305
3539
|
* Parent category ID.
|
|
@@ -3730,14 +3964,13 @@ interface MoveItemInCategoryRequest {
|
|
|
3730
3964
|
beforeItem?: ItemReference;
|
|
3731
3965
|
}
|
|
3732
3966
|
declare enum MoveItemInCategoryRequestPosition {
|
|
3733
|
-
UNKNOWN_POSITION = "UNKNOWN_POSITION",
|
|
3734
3967
|
FIRST = "FIRST",
|
|
3735
3968
|
LAST = "LAST",
|
|
3736
3969
|
BEFORE = "BEFORE",
|
|
3737
3970
|
NONE = "NONE"
|
|
3738
3971
|
}
|
|
3739
3972
|
/** @enumType */
|
|
3740
|
-
type MoveItemInCategoryRequestPositionWithLiterals = MoveItemInCategoryRequestPosition | '
|
|
3973
|
+
type MoveItemInCategoryRequestPositionWithLiterals = MoveItemInCategoryRequestPosition | 'FIRST' | 'LAST' | 'BEFORE' | 'NONE';
|
|
3741
3974
|
interface MoveItemInCategoryResponse {
|
|
3742
3975
|
/**
|
|
3743
3976
|
* Information about manually arranged items after move.
|
|
@@ -5459,4 +5692,4 @@ interface BulkSetItemCategoriesOptions {
|
|
|
5459
5692
|
treeReference: TreeReference;
|
|
5460
5693
|
}
|
|
5461
5694
|
|
|
5462
|
-
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, MoveItemInCategoryRequestPosition 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, WidthType as a9, Placement as aA, Type as aB, Alignment as aC, Layout as aD, AppType as aE, InitialExpandedItems as aF, Direction as aG, VerticalAlignment as aH, NullValue as aI, Scaling as aJ, ImagePosition as aK, Origin as aL, VerticalAlignmentAlignment as aM, ResponsivenessBehaviour as aN, DesignTarget as aO, SingleEntityOpsRequestedFields as aP, SortOrder as aQ, RequestedFields as aR, SortType as aS, SortDirection as aT, MissingValues as aU, ScalarType as aV, NestedAggregationType as aW, Interval as aX, AggregationType as aY, Mode as aZ, Position as a_, PluginContainerDataAlignment as aa, ButtonDataType as ab, Target as ac, TextAlignment as ad, LineStyle as ae, Width as af, DividerDataAlignment as ag, ViewMode as ah, LayoutType as ai, Orientation as aj, Crop as ak, ThumbnailsAlignment as al, GIFType as am, Source as an, StylesPosition as ao, MapType as ap, ViewRole as aq, VoteRole as ar, PollLayoutType as as, PollLayoutDirection as at, BackgroundType as au, DecorationType as av, FontType as aw, ImageStylesPosition as ax, AspectRatio as ay, Resizing as az, type CreateCategoryApplicationErrors as b, type PollDesign as b$, WebhookIdentityType as b0, type BreadcrumbsInfo as b1, type Breadcrumb as b2, type ParentCategory as b3, type SeoSchema as b4, type Keyword as b5, type Tag as b6, type Settings as b7, type RichContent as b8, type Node as b9, type ItemDataOneOf as bA, type GalleryOptions as bB, type GalleryOptionsLayout as bC, type ItemStyle as bD, type Thumbnails as bE, type GIFData as bF, type GIF as bG, type HeadingData as bH, type HTMLData as bI, type HTMLDataDataOneOf as bJ, type ImageData as bK, type StylesBorder as bL, type ImageDataStyles as bM, type LinkPreviewData as bN, type LinkPreviewDataStyles as bO, type MapData as bP, type MapSettings as bQ, type ParagraphData as bR, type PollData as bS, type Permissions as bT, type Option as bU, type PollSettings as bV, type PollLayout as bW, type OptionLayout as bX, type Gradient as bY, type Background as bZ, type BackgroundBackgroundOneOf as b_, type NodeDataOneOf as ba, type NodeStyle as bb, type ButtonData as bc, type Border as bd, type Colors as be, type PluginContainerData as bf, type PluginContainerDataWidth as bg, type PluginContainerDataWidthDataOneOf as bh, type Spoiler as bi, type Height as bj, type Styles as bk, type Link as bl, type LinkDataOneOf as bm, type Rel as bn, type CodeBlockData as bo, type TextStyle as bp, type DividerData as bq, type FileData as br, type FileSource as bs, type FileSourceDataOneOf as bt, type PDFSettings as bu, type GalleryData as bv, type Media as bw, type Image as bx, type Video as by, type Item as bz, type CreateCategoryValidationErrors as c, type ItemsRemovedFromCategory as c$, type OptionDesign as c0, type Poll as c1, type PollDataLayout as c2, type Design as c3, type TextData as c4, type Decoration as c5, type DecorationDataOneOf as c6, type AnchorData as c7, type ColorData as c8, type LinkData as c9, type OrderedListData as cA, type BulletedListData as cB, type BlockquoteData as cC, type CaptionData as cD, type LayoutData as cE, type BackgroundImage as cF, type Banner as cG, type LayoutCellData as cH, type ShapeData as cI, type ShapeDataStyles as cJ, type Metadata as cK, type DocumentStyle as cL, type TextNodeStyle as cM, type ExtendedFields as cN, type InvalidateCache as cO, type InvalidateCacheGetByOneOf as cP, type App as cQ, type Page as cR, type URI as cS, type File as cT, type CustomTag as cU, type Pages as cV, type URIs as cW, type CategoryMoved as cX, type ItemAddedToCategory as cY, type ItemsAddedToCategory as cZ, type ItemRemovedFromCategory as c_, type MentionData as ca, type FontSizeData as cb, type SpoilerData as cc, type FontFamilyData as cd, type AppEmbedData as ce, type AppEmbedDataAppDataOneOf as cf, type BookingData as cg, type EventData as ch, type ButtonStyles as ci, type ImageStyles as cj, type RibbonStyles as ck, type CardStyles as cl, type PricingData as cm, type VideoData as cn, type PlaybackOptions as co, type EmbedData as cp, type Oembed as cq, type CollapsibleListData as cr, type TableData as cs, type Dimensions as ct, type TableCellData as cu, type CellStyle as cv, type BorderColors as cw, type BorderWidths as cx, type ListValue as cy, type AudioData as cz, type UpdateCategoryOptions as d, type DeprecatedSearchCategoriesWithOffsetResponse as d$, type ItemsArrangedInCategory as d0, type CreateCategoryRequest as d1, type CreateCategoryResponse as d2, type DuplicateHandleErrorData as d3, type GetCategoryRequest as d4, type GetCategoryResponse as d5, type UpdateCategoryRequest as d6, type UpdateCategoryResponse as d7, type DeleteCategoryRequest as d8, type DeleteCategoryResponse as d9, type NestedAggregation as dA, type SearchDetails as dB, type AggregationData as dC, type ValueAggregationResult as dD, type RangeAggregationResult as dE, type NestedAggregationResults as dF, type NestedAggregationResultsResultOneOf as dG, type ValueResults as dH, type RangeResults as dI, type AggregationResultsScalarResult as dJ, type NestedValueAggregationResult as dK, type ValueResult as dL, type RangeResult as dM, type ScalarResult as dN, type NestedResultValue as dO, type NestedResultValueResultOneOf as dP, type Results as dQ, type DateHistogramResult as dR, type GroupByValueResults as dS, type DateHistogramResults as dT, type NestedResults as dU, type AggregationResults as dV, type AggregationResultsResultOneOf as dW, type DeprecatedSearchCategoriesWithOffsetRequest as dX, type OffsetSearch as dY, type OffsetSearchPagingMethodOneOf as dZ, type Paging as d_, 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 dp, type AggregationKindOneOf as dq, type RangeBucket as dr, type IncludeMissingValuesOptions as ds, type ValueAggregation as dt, type ValueAggregationOptionsOneOf as du, type RangeAggregation as dv, type ScalarAggregation as dw, type DateHistogramAggregation as dx, type NestedAggregationItem as dy, type NestedAggregationItemKindOneOf as dz, type UpdateCategoryApplicationErrors as e, type PluginContainerDataAlignmentWithLiterals as e$, type PagingMetadata as e0, type CountCategoriesRequest as e1, type MoveCategoryRequest as e2, type BulkUpdateCategoriesRequest as e3, type BulkCategoriesResult as e4, type ItemMetadata as e5, type ApplicationError as e6, type BulkActionMetadata as e7, type UpdateCategoryVisibilityRequest as e8, type BulkShowCategoriesRequest as e9, type DomainEvent as eA, type DomainEventBodyOneOf as eB, type EntityCreatedEvent as eC, type RestoreInfo as eD, type EntityUpdatedEvent as eE, type EntityDeletedEvent as eF, type ActionEvent as eG, type Empty as eH, type BulkCreateCategoriesForMigrationRequest as eI, type BulkCreateCategoriesForMigrationResponse as eJ, type BulkAddItemsToCategoryForMigrationRequest as eK, type BulkAddItemsToCategoryForMigrationResponse as eL, type MessageEnvelope as eM, type IdentificationData as eN, type IdentificationDataIdOneOf as eO, type AccountInfo as eP, type BaseEventMetadata as eQ, type EventMetadata as eR, type AccountInfoMetadata as eS, type CategoriesQueryResult as eT, type CategoryQuerySpec as eU, type CategorySearchSpec as eV, type ListItemsInCategoryOptionsPagingMethodOneOf as eW, type BulkSetItemCategoriesOptions as eX, utils as eY, type NodeTypeWithLiterals as eZ, type WidthTypeWithLiterals as e_, type BulkDeleteCategoriesRequest as ea, type BulkDeleteCategoriesResponse as eb, type BulkDeleteCategoriesResponseBulkCategoriesResult as ec, type BulkAddItemsToCategoryRequest as ed, type BulkItemsToCategoryResult as ee, type ItemReferenceMetadata as ef, type BulkAddItemToCategoriesRequest as eg, type BulkItemToCategoriesResult as eh, type BulkRemoveItemsFromCategoryRequest as ei, type BulkRemoveItemFromCategoriesRequest as ej, type ListItemsInCategoryRequest as ek, type ListItemsInCategoryRequestPagingMethodOneOf as el, type PagingMetadataV2 as em, type ListCategoriesForItemRequest as en, type ListCategoriesForItemsRequest as eo, type MapItemToCategories as ep, type ListTreesRequest as eq, type MoveItemInCategoryRequest as er, type MoveItemInCategoryResponse as es, type SetArrangedItemsRequest as et, type GetArrangedItemsRequest as eu, type BulkSetItemCategoriesRequest as ev, type BulkSetItemCategoriesResponse as ew, type GetCategoriesTreeRequest as ex, type GetCategoriesTreeResponse as ey, type CategoryTreeNode as ez, type CategorySearch as f, onCategoryUpdated as f$, type ButtonDataTypeWithLiterals as f0, type TargetWithLiterals as f1, type TextAlignmentWithLiterals as f2, type LineStyleWithLiterals as f3, type WidthWithLiterals as f4, type DividerDataAlignmentWithLiterals as f5, type ViewModeWithLiterals as f6, type LayoutTypeWithLiterals as f7, type OrientationWithLiterals as f8, type CropWithLiterals as f9, type OriginWithLiterals as fA, type VerticalAlignmentAlignmentWithLiterals as fB, type ResponsivenessBehaviourWithLiterals as fC, type DesignTargetWithLiterals as fD, type SingleEntityOpsRequestedFieldsWithLiterals as fE, type SortOrderWithLiterals as fF, type RequestedFieldsWithLiterals as fG, type SortTypeWithLiterals as fH, type SortDirectionWithLiterals as fI, type MissingValuesWithLiterals as fJ, type ScalarTypeWithLiterals as fK, type NestedAggregationTypeWithLiterals as fL, type IntervalWithLiterals as fM, type AggregationTypeWithLiterals as fN, type ModeWithLiterals as fO, type PositionWithLiterals as fP, type MoveItemInCategoryRequestPositionWithLiterals as fQ, type WebhookIdentityTypeWithLiterals as fR, type BulkSetItemCategoriesApplicationErrors as fS, type CommonQueryWithEntityContext as fT, type CommonSearchWithEntityContext as fU, onCategoryMoved as fV, onCategoryCreated as fW, onCategoryDeleted as fX, onCategoryItemAddedToCategory as fY, onCategoryItemRemovedFromCategory as fZ, onCategoryItemsArrangedInCategory as f_, type ThumbnailsAlignmentWithLiterals as fa, type GIFTypeWithLiterals as fb, type SourceWithLiterals as fc, type StylesPositionWithLiterals as fd, type MapTypeWithLiterals as fe, type ViewRoleWithLiterals as ff, type VoteRoleWithLiterals as fg, type PollLayoutTypeWithLiterals as fh, type PollLayoutDirectionWithLiterals as fi, type BackgroundTypeWithLiterals as fj, type DecorationTypeWithLiterals as fk, type FontTypeWithLiterals as fl, type ImageStylesPositionWithLiterals as fm, type AspectRatioWithLiterals as fn, type ResizingWithLiterals as fo, type PlacementWithLiterals as fp, type TypeWithLiterals as fq, type AlignmentWithLiterals as fr, type LayoutWithLiterals as fs, type AppTypeWithLiterals as ft, type InitialExpandedItemsWithLiterals as fu, type DirectionWithLiterals as fv, type VerticalAlignmentWithLiterals as fw, type NullValueWithLiterals as fx, type ScalingWithLiterals as fy, type ImagePositionWithLiterals as fz, type SearchCategoriesResponse as g, createCategory as g0, getCategory as g1, updateCategory as g2, deleteCategory as g3, queryCategories as g4, countCategories as g5, moveCategory as g6, bulkUpdateCategories as g7, updateCategoryVisibility as g8, bulkShowCategories as g9, bulkAddItemsToCategory as ga, bulkAddItemToCategories as gb, bulkRemoveItemsFromCategory as gc, bulkRemoveItemFromCategories as gd, listItemsInCategory as ge, listCategoriesForItem as gf, listCategoriesForItems as gg, listTrees as gh, setArrangedItems as gi, getArrangedItems as gj, type CountCategoriesOptions as h, type CountCategoriesResponse as i, type MoveCategoryResponse as j, type MoveCategoryApplicationErrors as k, type MaskedCategory as l, type BulkUpdateCategoriesResponse as m, type BulkUpdateCategoriesApplicationErrors as n, type UpdateCategoryVisibilityOptions as o, type UpdateCategoryVisibilityResponse as p, type UpdateCategoryVisibilityApplicationErrors as q, type BulkShowCategoriesOptions as r, type BulkShowCategoriesResponse as s, type BulkAddItemsToCategoryOptions as t, type BulkAddItemsToCategoryResponse as u, type BulkAddItemsToCategoryApplicationErrors as v, type BulkAddItemToCategoriesOptions as w, type BulkAddItemToCategoriesResponse as x, type BulkAddItemToCategoriesApplicationErrors as y, type BulkRemoveItemsFromCategoryOptions as z };
|
|
5695
|
+
export { type CategoryDeletedEnvelope as $, type BulkRemoveItemsFromCategoryResponse as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkRemoveItemsFromCategoryApplicationErrors as E, type BulkRemoveItemFromCategoriesOptions as F, type GetCategoryOptions as G, type BulkRemoveItemFromCategoriesResponse as H, type ItemReference as I, type BulkRemoveItemFromCategoriesApplicationErrors as J, type ListItemsInCategoryResponse as K, type ListItemsInCategoryOptions as L, type MoveCategoryOptions as M, type ListCategoriesForItemOptions as N, type ListCategoriesForItemResponse as O, type ListCategoriesForItemsOptions as P, type ListCategoriesForItemsResponse as Q, type ListTreesResponse as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type SetArrangedItemsOptions as V, type SetArrangedItemsResponse as W, type SetArrangedItemsApplicationErrors as X, type GetArrangedItemsResponse as Y, type CategoryMovedEnvelope as Z, type CategoryCreatedEnvelope as _, type CreateCategoryOptions as a, SortType as a$, type CategoryItemAddedToCategoryEnvelope as a0, type CategoryItemRemovedFromCategoryEnvelope as a1, type CategoryItemsArrangedInCategoryEnvelope as a2, type CategoryUpdatedEnvelope as a3, type CategoryQuery as a4, type QueryCategoriesOptions as a5, typedQueryCategories as a6, type CategoriesQueryBuilder as a7, NodeType as a8, BackgroundType as a9, AspectRatio as aA, Resizing as aB, Placement as aC, Type as aD, Alignment as aE, Layout as aF, AppType as aG, InitialExpandedItems as aH, Direction as aI, VerticalAlignment as aJ, NullValue as aK, ImageScalingScaling as aL, ImagePosition as aM, Origin as aN, LayoutDataBackgroundType as aO, BackdropType as aP, VerticalAlignmentAlignment as aQ, ResponsivenessBehaviour as aR, DesignTarget as aS, Scaling as aT, ImagePositionPosition as aU, CardDataBackgroundType as aV, ListStyle as aW, Indentation as aX, SingleEntityOpsRequestedFields as aY, SortOrder as aZ, RequestedFields as a_, GradientType as aa, WidthType as ab, PluginContainerDataAlignment as ac, ButtonDataType as ad, Target as ae, TextAlignment as af, LineStyle as ag, Width as ah, DividerDataAlignment as ai, ViewMode as aj, LayoutType as ak, Orientation as al, Crop as am, ThumbnailsAlignment as an, GIFType as ao, Source as ap, StylesPosition as aq, MapType as ar, ViewRole as as, VoteRole as at, PollLayoutType as au, PollLayoutDirection as av, PollDesignBackgroundType as aw, DecorationType as ax, FontType as ay, ImageStylesPosition as az, type CreateCategoryApplicationErrors as b, type MapData as b$, SortDirection as b0, MissingValues as b1, ScalarType as b2, NestedAggregationType as b3, Interval as b4, AggregationType as b5, Mode as b6, Position as b7, MoveItemInCategoryRequestPosition as b8, WebhookIdentityType as b9, type CodeBlockData as bA, type TextStyle as bB, type DividerData as bC, type FileData as bD, type FileSource as bE, type FileSourceDataOneOf as bF, type PDFSettings as bG, type GalleryData as bH, type Media as bI, type Image as bJ, type Video as bK, type Item as bL, type ItemDataOneOf as bM, type GalleryOptions as bN, type GalleryOptionsLayout as bO, type ItemStyle as bP, type Thumbnails as bQ, type GIFData as bR, type GIF as bS, type HeadingData as bT, type HTMLData as bU, type HTMLDataDataOneOf as bV, type ImageData as bW, type StylesBorder as bX, type ImageDataStyles as bY, type LinkPreviewData as bZ, type LinkPreviewDataStyles as b_, type BreadcrumbsInfo as ba, type Breadcrumb as bb, type ParentCategory as bc, type SeoSchema as bd, type Keyword as be, type Tag as bf, type Settings as bg, type RichContent as bh, type Node as bi, type NodeDataOneOf as bj, type NodeStyle as bk, type ButtonData as bl, type Gradient as bm, type Stop as bn, type Border as bo, type Colors as bp, type Background as bq, type PluginContainerData as br, type PluginContainerDataWidth as bs, type PluginContainerDataWidthDataOneOf as bt, type Spoiler as bu, type Height as bv, type Styles as bw, type Link as bx, type LinkDataOneOf as by, type Rel as bz, type CreateCategoryValidationErrors as c, type TocData as c$, type MapSettings as c0, type ParagraphData as c1, type PollData as c2, type Permissions as c3, type Option as c4, type PollSettings as c5, type PollLayout as c6, type OptionLayout as c7, type BackgroundGradient as c8, type PollDesignBackground as c9, type PlaybackOptions as cA, type EmbedData as cB, type Oembed as cC, type CollapsibleListData as cD, type TableData as cE, type Dimensions as cF, type TableCellData as cG, type CellStyle as cH, type BorderColors as cI, type BorderWidths as cJ, type ListValue as cK, type AudioData as cL, type OrderedListData as cM, type BulletedListData as cN, type BlockquoteData as cO, type CaptionData as cP, type LayoutData as cQ, type LayoutDataBackgroundImage as cR, type Banner as cS, type LayoutDataBackground as cT, type Backdrop as cU, type LayoutCellData as cV, type ShapeData as cW, type ShapeDataStyles as cX, type CardData as cY, type CardDataBackground as cZ, type BackgroundImage as c_, type PollDesignBackgroundBackgroundOneOf as ca, type PollDesign as cb, type OptionDesign as cc, type Poll as cd, type PollDataLayout as ce, type Design as cf, type TextData as cg, type Decoration as ch, type DecorationDataOneOf as ci, type AnchorData as cj, type ColorData as ck, type LinkData as cl, type MentionData as cm, type FontSizeData as cn, type SpoilerData as co, type FontFamilyData as cp, type AppEmbedData as cq, type AppEmbedDataAppDataOneOf as cr, type BookingData as cs, type EventData as ct, type ButtonStyles as cu, type ImageStyles as cv, type RibbonStyles as cw, type CardStyles as cx, type PricingData as cy, type VideoData as cz, type UpdateCategoryOptions as d, type AggregationResultsScalarResult as d$, type Metadata as d0, type DocumentStyle as d1, type TextNodeStyle as d2, type ExtendedFields as d3, type InvalidateCache as d4, type InvalidateCacheGetByOneOf as d5, type App as d6, type Page as d7, type URI as d8, type File as d9, type Cursors as dA, type ListCompactCategoriesByIdsRequest as dB, type ListCompactCategoriesByIdsResponse as dC, type CompactCategory as dD, type SearchCategoriesRequest as dE, type CursorSearch as dF, type CursorSearchPagingMethodOneOf as dG, type Aggregation as dH, type AggregationKindOneOf as dI, type RangeBucket as dJ, type IncludeMissingValuesOptions as dK, type ValueAggregation as dL, type ValueAggregationOptionsOneOf as dM, type RangeAggregation as dN, type ScalarAggregation as dO, type DateHistogramAggregation as dP, type NestedAggregationItem as dQ, type NestedAggregationItemKindOneOf as dR, type NestedAggregation as dS, type SearchDetails as dT, type AggregationData as dU, type ValueAggregationResult as dV, type RangeAggregationResult as dW, type NestedAggregationResults as dX, type NestedAggregationResultsResultOneOf as dY, type ValueResults as dZ, type RangeResults as d_, type CustomTag as da, type Pages as db, type URIs as dc, type CategoryMoved as dd, type ItemAddedToCategory as de, type ItemsAddedToCategory as df, type ItemRemovedFromCategory as dg, type ItemsRemovedFromCategory as dh, type ItemsArrangedInCategory as di, type CreateCategoryRequest as dj, type CreateCategoryResponse as dk, type DuplicateHandleErrorData as dl, type GetCategoryRequest as dm, type GetCategoryResponse as dn, type UpdateCategoryRequest as dp, type UpdateCategoryResponse as dq, type DeleteCategoryRequest as dr, type DeleteCategoryResponse as ds, type QueryCategoriesRequest as dt, type CursorQuery as du, type CursorQueryPagingMethodOneOf as dv, type Sorting as dw, type CursorPaging as dx, type QueryCategoriesResponse as dy, type CursorPagingMetadata as dz, type UpdateCategoryApplicationErrors as e, type BulkCreateCategoriesForMigrationResponse as e$, type NestedValueAggregationResult as e0, type ValueResult as e1, type RangeResult as e2, type ScalarResult as e3, type NestedResultValue as e4, type NestedResultValueResultOneOf as e5, type Results as e6, type DateHistogramResult as e7, type GroupByValueResults as e8, type DateHistogramResults as e9, type BulkRemoveItemsFromCategoryRequest as eA, type BulkRemoveItemFromCategoriesRequest as eB, type ListItemsInCategoryRequest as eC, type ListItemsInCategoryRequestPagingMethodOneOf as eD, type PagingMetadataV2 as eE, type ListCategoriesForItemRequest as eF, type ListCategoriesForItemsRequest as eG, type MapItemToCategories as eH, type ListTreesRequest as eI, type MoveItemInCategoryRequest as eJ, type MoveItemInCategoryResponse as eK, type SetArrangedItemsRequest as eL, type GetArrangedItemsRequest as eM, type BulkSetItemCategoriesRequest as eN, type BulkSetItemCategoriesResponse as eO, type GetCategoriesTreeRequest as eP, type GetCategoriesTreeResponse as eQ, type CategoryTreeNode as eR, type DomainEvent as eS, type DomainEventBodyOneOf as eT, type EntityCreatedEvent as eU, type RestoreInfo as eV, type EntityUpdatedEvent as eW, type EntityDeletedEvent as eX, type ActionEvent as eY, type Empty as eZ, type BulkCreateCategoriesForMigrationRequest as e_, type NestedResults as ea, type AggregationResults as eb, type AggregationResultsResultOneOf as ec, type DeprecatedSearchCategoriesWithOffsetRequest as ed, type OffsetSearch as ee, type OffsetSearchPagingMethodOneOf as ef, type Paging as eg, type DeprecatedSearchCategoriesWithOffsetResponse as eh, type PagingMetadata as ei, type CountCategoriesRequest as ej, type MoveCategoryRequest as ek, type BulkUpdateCategoriesRequest as el, type BulkCategoriesResult as em, type ItemMetadata as en, type ApplicationError as eo, type BulkActionMetadata as ep, type UpdateCategoryVisibilityRequest as eq, type BulkShowCategoriesRequest as er, type BulkDeleteCategoriesRequest as es, type BulkDeleteCategoriesResponse as et, type BulkDeleteCategoriesResponseBulkCategoriesResult as eu, type BulkAddItemsToCategoryRequest as ev, type BulkItemsToCategoryResult as ew, type ItemReferenceMetadata as ex, type BulkAddItemToCategoriesRequest as ey, type BulkItemToCategoriesResult as ez, type CategorySearch as f, type ImagePositionPositionWithLiterals as f$, type BulkAddItemsToCategoryForMigrationRequest as f0, type BulkAddItemsToCategoryForMigrationResponse as f1, type MessageEnvelope as f2, type IdentificationData as f3, type IdentificationDataIdOneOf as f4, type AccountInfo as f5, type BaseEventMetadata as f6, type EventMetadata as f7, type AccountInfoMetadata as f8, type CategoriesQueryResult as f9, type VoteRoleWithLiterals as fA, type PollLayoutTypeWithLiterals as fB, type PollLayoutDirectionWithLiterals as fC, type PollDesignBackgroundTypeWithLiterals as fD, type DecorationTypeWithLiterals as fE, type FontTypeWithLiterals as fF, type ImageStylesPositionWithLiterals as fG, type AspectRatioWithLiterals as fH, type ResizingWithLiterals as fI, type PlacementWithLiterals as fJ, type TypeWithLiterals as fK, type AlignmentWithLiterals as fL, type LayoutWithLiterals as fM, type AppTypeWithLiterals as fN, type InitialExpandedItemsWithLiterals as fO, type DirectionWithLiterals as fP, type VerticalAlignmentWithLiterals as fQ, type NullValueWithLiterals as fR, type ImageScalingScalingWithLiterals as fS, type ImagePositionWithLiterals as fT, type OriginWithLiterals as fU, type LayoutDataBackgroundTypeWithLiterals as fV, type BackdropTypeWithLiterals as fW, type VerticalAlignmentAlignmentWithLiterals as fX, type ResponsivenessBehaviourWithLiterals as fY, type DesignTargetWithLiterals as fZ, type ScalingWithLiterals as f_, type CategoryQuerySpec as fa, type CategorySearchSpec as fb, type ListItemsInCategoryOptionsPagingMethodOneOf as fc, type BulkSetItemCategoriesOptions as fd, utils as fe, type NodeTypeWithLiterals as ff, type BackgroundTypeWithLiterals as fg, type GradientTypeWithLiterals as fh, type WidthTypeWithLiterals as fi, type PluginContainerDataAlignmentWithLiterals as fj, type ButtonDataTypeWithLiterals as fk, type TargetWithLiterals as fl, type TextAlignmentWithLiterals as fm, type LineStyleWithLiterals as fn, type WidthWithLiterals as fo, type DividerDataAlignmentWithLiterals as fp, type ViewModeWithLiterals as fq, type LayoutTypeWithLiterals as fr, type OrientationWithLiterals as fs, type CropWithLiterals as ft, type ThumbnailsAlignmentWithLiterals as fu, type GIFTypeWithLiterals as fv, type SourceWithLiterals as fw, type StylesPositionWithLiterals as fx, type MapTypeWithLiterals as fy, type ViewRoleWithLiterals as fz, type SearchCategoriesResponse as g, type CardDataBackgroundTypeWithLiterals as g0, type ListStyleWithLiterals as g1, type IndentationWithLiterals as g2, type SingleEntityOpsRequestedFieldsWithLiterals as g3, type SortOrderWithLiterals as g4, type RequestedFieldsWithLiterals as g5, type SortTypeWithLiterals as g6, type SortDirectionWithLiterals as g7, type MissingValuesWithLiterals as g8, type ScalarTypeWithLiterals as g9, bulkShowCategories as gA, bulkAddItemsToCategory as gB, bulkAddItemToCategories as gC, bulkRemoveItemsFromCategory as gD, bulkRemoveItemFromCategories as gE, listItemsInCategory as gF, listCategoriesForItem as gG, listCategoriesForItems as gH, listTrees as gI, setArrangedItems as gJ, getArrangedItems as gK, type NestedAggregationTypeWithLiterals as ga, type IntervalWithLiterals as gb, type AggregationTypeWithLiterals as gc, type ModeWithLiterals as gd, type PositionWithLiterals as ge, type MoveItemInCategoryRequestPositionWithLiterals as gf, type WebhookIdentityTypeWithLiterals as gg, type BulkSetItemCategoriesApplicationErrors as gh, type CommonQueryWithEntityContext as gi, type CommonSearchWithEntityContext as gj, onCategoryMoved as gk, onCategoryCreated as gl, onCategoryDeleted as gm, onCategoryItemAddedToCategory as gn, onCategoryItemRemovedFromCategory as go, onCategoryItemsArrangedInCategory as gp, onCategoryUpdated as gq, createCategory as gr, getCategory as gs, updateCategory as gt, deleteCategory as gu, queryCategories as gv, countCategories as gw, moveCategory as gx, bulkUpdateCategories as gy, updateCategoryVisibility as gz, type CountCategoriesOptions as h, type CountCategoriesResponse as i, type MoveCategoryResponse as j, type MoveCategoryApplicationErrors as k, type MaskedCategory as l, type BulkUpdateCategoriesResponse as m, type BulkUpdateCategoriesApplicationErrors as n, type UpdateCategoryVisibilityOptions as o, type UpdateCategoryVisibilityResponse as p, type UpdateCategoryVisibilityApplicationErrors as q, type BulkShowCategoriesOptions as r, type BulkShowCategoriesResponse as s, type BulkAddItemsToCategoryOptions as t, type BulkAddItemsToCategoryResponse as u, type BulkAddItemsToCategoryApplicationErrors as v, type BulkAddItemToCategoriesOptions as w, type BulkAddItemToCategoriesResponse as x, type BulkAddItemToCategoriesApplicationErrors as y, type BulkRemoveItemsFromCategoryOptions as z };
|