@wix/auto_sdk_categories_categories 1.0.105 → 1.0.106
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-HGXwX99O.d.ts} +221 -43
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +790 -20
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +598 -20
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +222 -44
- package/build/cjs/meta.js +598 -20
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{categories-v1-category-categories.universal-Yxug6jLC.d.mts → categories-v1-category-categories.universal-HGXwX99O.d.mts} +221 -43
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +783 -20
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +591 -20
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +222 -44
- package/build/es/meta.mjs +591 -20
- 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-CdzuCH4X.d.ts} +221 -43
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +790 -20
- 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 +598 -20
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +222 -44
- package/build/internal/cjs/meta.js +598 -20
- 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-CdzuCH4X.d.mts} +221 -43
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +783 -20
- 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 +591 -20
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +222 -44
- package/build/internal/es/meta.mjs +591 -20
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -294,6 +294,8 @@ 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;
|
|
297
299
|
/** 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
300
|
type?: NodeTypeWithLiterals;
|
|
299
301
|
/** Node ID. */
|
|
@@ -363,6 +365,8 @@ interface NodeDataOneOf {
|
|
|
363
365
|
layoutCellData?: LayoutCellData;
|
|
364
366
|
/** Data for a shape node. */
|
|
365
367
|
shapeData?: ShapeData;
|
|
368
|
+
/** Data for a card node. */
|
|
369
|
+
cardData?: CardData;
|
|
366
370
|
}
|
|
367
371
|
declare enum NodeType {
|
|
368
372
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -399,10 +403,11 @@ declare enum NodeType {
|
|
|
399
403
|
CAPTION = "CAPTION",
|
|
400
404
|
LAYOUT = "LAYOUT",
|
|
401
405
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
402
|
-
SHAPE = "SHAPE"
|
|
406
|
+
SHAPE = "SHAPE",
|
|
407
|
+
CARD = "CARD"
|
|
403
408
|
}
|
|
404
409
|
/** @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';
|
|
410
|
+
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD';
|
|
406
411
|
interface NodeStyle {
|
|
407
412
|
/** The top padding value in pixels. */
|
|
408
413
|
paddingTop?: string | null;
|
|
@@ -423,6 +428,55 @@ interface ButtonData {
|
|
|
423
428
|
/** Button link details. */
|
|
424
429
|
link?: Link;
|
|
425
430
|
}
|
|
431
|
+
/** Background type */
|
|
432
|
+
declare enum BackgroundType {
|
|
433
|
+
/** Solid color background */
|
|
434
|
+
COLOR = "COLOR",
|
|
435
|
+
/** Gradient background */
|
|
436
|
+
GRADIENT = "GRADIENT"
|
|
437
|
+
}
|
|
438
|
+
/** @enumType */
|
|
439
|
+
type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'GRADIENT';
|
|
440
|
+
interface Gradient {
|
|
441
|
+
/** Gradient type. */
|
|
442
|
+
type?: GradientTypeWithLiterals;
|
|
443
|
+
/**
|
|
444
|
+
* Color stops for the gradient.
|
|
445
|
+
* @maxSize 1000
|
|
446
|
+
*/
|
|
447
|
+
stops?: Stop[];
|
|
448
|
+
/** Angle in degrees for linear gradient (0-360). */
|
|
449
|
+
angle?: number | null;
|
|
450
|
+
/**
|
|
451
|
+
* Horizontal center position for radial gradient (0-100).
|
|
452
|
+
* @max 100
|
|
453
|
+
*/
|
|
454
|
+
centerX?: number | null;
|
|
455
|
+
/**
|
|
456
|
+
* Vertical center position for radial gradient (0-100).
|
|
457
|
+
* @max 100
|
|
458
|
+
*/
|
|
459
|
+
centerY?: number | null;
|
|
460
|
+
}
|
|
461
|
+
/** Gradient type. */
|
|
462
|
+
declare enum GradientType {
|
|
463
|
+
/** Linear gradient. */
|
|
464
|
+
LINEAR = "LINEAR",
|
|
465
|
+
/** Radial gradient. */
|
|
466
|
+
RADIAL = "RADIAL"
|
|
467
|
+
}
|
|
468
|
+
/** @enumType */
|
|
469
|
+
type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
|
|
470
|
+
/** A single color stop in the gradient. */
|
|
471
|
+
interface Stop {
|
|
472
|
+
/**
|
|
473
|
+
* Stop color as hex value.
|
|
474
|
+
* @format COLOR_HEX
|
|
475
|
+
*/
|
|
476
|
+
color?: string | null;
|
|
477
|
+
/** Stop position (0-1). */
|
|
478
|
+
position?: number | null;
|
|
479
|
+
}
|
|
426
480
|
interface Border {
|
|
427
481
|
/**
|
|
428
482
|
* Deprecated: Use `borderWidth` in `styles` instead.
|
|
@@ -452,6 +506,18 @@ interface Colors {
|
|
|
452
506
|
*/
|
|
453
507
|
background?: string | null;
|
|
454
508
|
}
|
|
509
|
+
/** Background styling (color or gradient) */
|
|
510
|
+
interface Background {
|
|
511
|
+
/** Background type. */
|
|
512
|
+
type?: BackgroundTypeWithLiterals;
|
|
513
|
+
/**
|
|
514
|
+
* Background color as a hexadecimal value.
|
|
515
|
+
* @format COLOR_HEX
|
|
516
|
+
*/
|
|
517
|
+
color?: string | null;
|
|
518
|
+
/** Gradient configuration. */
|
|
519
|
+
gradient?: Gradient;
|
|
520
|
+
}
|
|
455
521
|
interface PluginContainerData {
|
|
456
522
|
/** The width of the node when it's displayed. */
|
|
457
523
|
width?: PluginContainerDataWidth;
|
|
@@ -572,17 +638,23 @@ interface Styles {
|
|
|
572
638
|
*/
|
|
573
639
|
textColorHover?: string | null;
|
|
574
640
|
/**
|
|
575
|
-
*
|
|
641
|
+
* Deprecated: Use `background` instead.
|
|
576
642
|
* @format COLOR_HEX
|
|
643
|
+
* @deprecated
|
|
577
644
|
*/
|
|
578
645
|
backgroundColor?: string | null;
|
|
579
646
|
/**
|
|
580
|
-
*
|
|
647
|
+
* Deprecated: Use `backgroundHover` instead.
|
|
581
648
|
* @format COLOR_HEX
|
|
649
|
+
* @deprecated
|
|
582
650
|
*/
|
|
583
651
|
backgroundColorHover?: string | null;
|
|
584
652
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
585
653
|
buttonSize?: string | null;
|
|
654
|
+
/** Background styling (color or gradient). */
|
|
655
|
+
background?: Background;
|
|
656
|
+
/** Background styling for hover state (color or gradient). */
|
|
657
|
+
backgroundHover?: Background;
|
|
586
658
|
}
|
|
587
659
|
interface Link extends LinkDataOneOf {
|
|
588
660
|
/** The absolute URL for the linked document. */
|
|
@@ -1219,7 +1291,7 @@ interface OptionLayout {
|
|
|
1219
1291
|
/** Sets whether to display option images. Defaults to `false`. */
|
|
1220
1292
|
enableImage?: boolean | null;
|
|
1221
1293
|
}
|
|
1222
|
-
declare enum
|
|
1294
|
+
declare enum PollDesignBackgroundType {
|
|
1223
1295
|
/** Color background type */
|
|
1224
1296
|
COLOR = "COLOR",
|
|
1225
1297
|
/** Image background type */
|
|
@@ -1228,8 +1300,8 @@ declare enum BackgroundType {
|
|
|
1228
1300
|
GRADIENT = "GRADIENT"
|
|
1229
1301
|
}
|
|
1230
1302
|
/** @enumType */
|
|
1231
|
-
type
|
|
1232
|
-
interface
|
|
1303
|
+
type PollDesignBackgroundTypeWithLiterals = PollDesignBackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
|
|
1304
|
+
interface BackgroundGradient {
|
|
1233
1305
|
/** The gradient angle in degrees. */
|
|
1234
1306
|
angle?: number | null;
|
|
1235
1307
|
/**
|
|
@@ -1243,7 +1315,7 @@ interface Gradient {
|
|
|
1243
1315
|
*/
|
|
1244
1316
|
lastColor?: string | null;
|
|
1245
1317
|
}
|
|
1246
|
-
interface
|
|
1318
|
+
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
1247
1319
|
/**
|
|
1248
1320
|
* The background color as a hexademical value.
|
|
1249
1321
|
* @format COLOR_HEX
|
|
@@ -1252,12 +1324,12 @@ interface Background extends BackgroundBackgroundOneOf {
|
|
|
1252
1324
|
/** An image to use for the background. */
|
|
1253
1325
|
image?: Media;
|
|
1254
1326
|
/** Details for a gradient background. */
|
|
1255
|
-
gradient?:
|
|
1327
|
+
gradient?: BackgroundGradient;
|
|
1256
1328
|
/** Background type. For each option, include the relevant details. */
|
|
1257
|
-
type?:
|
|
1329
|
+
type?: PollDesignBackgroundTypeWithLiterals;
|
|
1258
1330
|
}
|
|
1259
1331
|
/** @oneof */
|
|
1260
|
-
interface
|
|
1332
|
+
interface PollDesignBackgroundBackgroundOneOf {
|
|
1261
1333
|
/**
|
|
1262
1334
|
* The background color as a hexademical value.
|
|
1263
1335
|
* @format COLOR_HEX
|
|
@@ -1266,11 +1338,11 @@ interface BackgroundBackgroundOneOf {
|
|
|
1266
1338
|
/** An image to use for the background. */
|
|
1267
1339
|
image?: Media;
|
|
1268
1340
|
/** Details for a gradient background. */
|
|
1269
|
-
gradient?:
|
|
1341
|
+
gradient?: BackgroundGradient;
|
|
1270
1342
|
}
|
|
1271
1343
|
interface PollDesign {
|
|
1272
1344
|
/** Background styling. */
|
|
1273
|
-
background?:
|
|
1345
|
+
background?: PollDesignBackground;
|
|
1274
1346
|
/** Border radius in pixels. */
|
|
1275
1347
|
borderRadius?: number | null;
|
|
1276
1348
|
}
|
|
@@ -1953,12 +2025,13 @@ interface CaptionData {
|
|
|
1953
2025
|
}
|
|
1954
2026
|
interface LayoutData {
|
|
1955
2027
|
/**
|
|
1956
|
-
*
|
|
2028
|
+
* Deprecated: Use `background` instead.
|
|
1957
2029
|
* @format COLOR_HEX
|
|
2030
|
+
* @deprecated
|
|
1958
2031
|
*/
|
|
1959
2032
|
backgroundColor?: string | null;
|
|
1960
2033
|
/** Background image. */
|
|
1961
|
-
backgroundImage?:
|
|
2034
|
+
backgroundImage?: LayoutDataBackgroundImage;
|
|
1962
2035
|
/**
|
|
1963
2036
|
* Border color as a hexadecimal value.
|
|
1964
2037
|
* @format COLOR_HEX
|
|
@@ -1966,15 +2039,16 @@ interface LayoutData {
|
|
|
1966
2039
|
borderColor?: string | null;
|
|
1967
2040
|
/** Border width in pixels. */
|
|
1968
2041
|
borderWidth?: number | null;
|
|
1969
|
-
/** Border */
|
|
2042
|
+
/** Border radius in pixels. */
|
|
1970
2043
|
borderRadius?: number | null;
|
|
1971
2044
|
/**
|
|
1972
|
-
*
|
|
2045
|
+
* Deprecated: Use `backdrop` instead.
|
|
1973
2046
|
* @format COLOR_HEX
|
|
2047
|
+
* @deprecated
|
|
1974
2048
|
*/
|
|
1975
2049
|
backdropColor?: string | null;
|
|
1976
|
-
/** Backdrop image.
|
|
1977
|
-
backdropImage?:
|
|
2050
|
+
/** Backdrop image. */
|
|
2051
|
+
backdropImage?: LayoutDataBackgroundImage;
|
|
1978
2052
|
/** Backdrop top padding. */
|
|
1979
2053
|
backdropPaddingTop?: number | null;
|
|
1980
2054
|
/** Backdrop bottom padding */
|
|
@@ -1998,8 +2072,12 @@ interface LayoutData {
|
|
|
1998
2072
|
designTarget?: DesignTargetWithLiterals;
|
|
1999
2073
|
/** Banner configuration. When present, this layout is displayed as a banner. */
|
|
2000
2074
|
banner?: Banner;
|
|
2075
|
+
/** Background styling (color or gradient). */
|
|
2076
|
+
background?: LayoutDataBackground;
|
|
2077
|
+
/** Backdrop styling (color or gradient). */
|
|
2078
|
+
backdrop?: Backdrop;
|
|
2001
2079
|
}
|
|
2002
|
-
declare enum
|
|
2080
|
+
declare enum ImageScalingScaling {
|
|
2003
2081
|
/** Auto image scaling */
|
|
2004
2082
|
AUTO = "AUTO",
|
|
2005
2083
|
/** Contain image scaling */
|
|
@@ -2008,7 +2086,7 @@ declare enum Scaling {
|
|
|
2008
2086
|
COVER = "COVER"
|
|
2009
2087
|
}
|
|
2010
2088
|
/** @enumType */
|
|
2011
|
-
type
|
|
2089
|
+
type ImageScalingScalingWithLiterals = ImageScalingScaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
2012
2090
|
declare enum ImagePosition {
|
|
2013
2091
|
/** Image positioned at the center */
|
|
2014
2092
|
CENTER = "CENTER",
|
|
@@ -2039,13 +2117,31 @@ declare enum Origin {
|
|
|
2039
2117
|
}
|
|
2040
2118
|
/** @enumType */
|
|
2041
2119
|
type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
|
|
2042
|
-
|
|
2120
|
+
/** Background type */
|
|
2121
|
+
declare enum LayoutDataBackgroundType {
|
|
2122
|
+
/** Solid color background */
|
|
2123
|
+
COLOR = "COLOR",
|
|
2124
|
+
/** Gradient background */
|
|
2125
|
+
GRADIENT = "GRADIENT"
|
|
2126
|
+
}
|
|
2127
|
+
/** @enumType */
|
|
2128
|
+
type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2129
|
+
/** Backdrop type */
|
|
2130
|
+
declare enum BackdropType {
|
|
2131
|
+
/** Solid color backdrop */
|
|
2132
|
+
COLOR = "COLOR",
|
|
2133
|
+
/** Gradient backdrop */
|
|
2134
|
+
GRADIENT = "GRADIENT"
|
|
2135
|
+
}
|
|
2136
|
+
/** @enumType */
|
|
2137
|
+
type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
|
|
2138
|
+
interface LayoutDataBackgroundImage {
|
|
2043
2139
|
/** Background image. */
|
|
2044
2140
|
media?: Media;
|
|
2045
2141
|
/** Background image opacity. */
|
|
2046
2142
|
opacity?: number | null;
|
|
2047
2143
|
/** Background image scaling. */
|
|
2048
|
-
scaling?:
|
|
2144
|
+
scaling?: ImageScalingScalingWithLiterals;
|
|
2049
2145
|
/** Position of background. Defaults to `CENTER`. */
|
|
2050
2146
|
position?: ImagePositionWithLiterals;
|
|
2051
2147
|
}
|
|
@@ -2079,6 +2175,30 @@ interface Banner {
|
|
|
2079
2175
|
/** Origin of the banner */
|
|
2080
2176
|
origin?: OriginWithLiterals;
|
|
2081
2177
|
}
|
|
2178
|
+
/** Background styling (color or gradient) */
|
|
2179
|
+
interface LayoutDataBackground {
|
|
2180
|
+
/** Background type. */
|
|
2181
|
+
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2182
|
+
/**
|
|
2183
|
+
* Background color as a hexadecimal value.
|
|
2184
|
+
* @format COLOR_HEX
|
|
2185
|
+
*/
|
|
2186
|
+
color?: string | null;
|
|
2187
|
+
/** Gradient configuration. */
|
|
2188
|
+
gradient?: Gradient;
|
|
2189
|
+
}
|
|
2190
|
+
/** Backdrop styling (color or gradient) */
|
|
2191
|
+
interface Backdrop {
|
|
2192
|
+
/** Backdrop type. */
|
|
2193
|
+
type?: BackdropTypeWithLiterals;
|
|
2194
|
+
/**
|
|
2195
|
+
* Backdrop color as a hexadecimal value.
|
|
2196
|
+
* @format COLOR_HEX
|
|
2197
|
+
*/
|
|
2198
|
+
color?: string | null;
|
|
2199
|
+
/** Gradient configuration. */
|
|
2200
|
+
gradient?: Gradient;
|
|
2201
|
+
}
|
|
2082
2202
|
interface LayoutCellData {
|
|
2083
2203
|
/** Size of the cell in 12 columns grid. */
|
|
2084
2204
|
colSpan?: number | null;
|
|
@@ -2100,6 +2220,75 @@ interface ShapeDataStyles {
|
|
|
2100
2220
|
/** Map of original color keys to their new color values. */
|
|
2101
2221
|
colors?: Record<string, string>;
|
|
2102
2222
|
}
|
|
2223
|
+
interface CardData {
|
|
2224
|
+
/** Background styling (color or gradient). */
|
|
2225
|
+
background?: CardDataBackground;
|
|
2226
|
+
/** Background image. */
|
|
2227
|
+
backgroundImage?: BackgroundImage;
|
|
2228
|
+
}
|
|
2229
|
+
declare enum Scaling {
|
|
2230
|
+
/** Auto image scaling */
|
|
2231
|
+
AUTO = "AUTO",
|
|
2232
|
+
/** Contain image scaling */
|
|
2233
|
+
CONTAIN = "CONTAIN",
|
|
2234
|
+
/** Cover image scaling */
|
|
2235
|
+
COVER = "COVER"
|
|
2236
|
+
}
|
|
2237
|
+
/** @enumType */
|
|
2238
|
+
type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
2239
|
+
declare enum ImagePositionPosition {
|
|
2240
|
+
/** Image positioned at the center */
|
|
2241
|
+
CENTER = "CENTER",
|
|
2242
|
+
/** Image positioned on the left */
|
|
2243
|
+
CENTER_LEFT = "CENTER_LEFT",
|
|
2244
|
+
/** Image positioned on the right */
|
|
2245
|
+
CENTER_RIGHT = "CENTER_RIGHT",
|
|
2246
|
+
/** Image positioned at the center top */
|
|
2247
|
+
TOP = "TOP",
|
|
2248
|
+
/** Image positioned at the top left */
|
|
2249
|
+
TOP_LEFT = "TOP_LEFT",
|
|
2250
|
+
/** Image positioned at the top right */
|
|
2251
|
+
TOP_RIGHT = "TOP_RIGHT",
|
|
2252
|
+
/** Image positioned at the center bottom */
|
|
2253
|
+
BOTTOM = "BOTTOM",
|
|
2254
|
+
/** Image positioned at the bottom left */
|
|
2255
|
+
BOTTOM_LEFT = "BOTTOM_LEFT",
|
|
2256
|
+
/** Image positioned at the bottom right */
|
|
2257
|
+
BOTTOM_RIGHT = "BOTTOM_RIGHT"
|
|
2258
|
+
}
|
|
2259
|
+
/** @enumType */
|
|
2260
|
+
type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
2261
|
+
/** Background type */
|
|
2262
|
+
declare enum CardDataBackgroundType {
|
|
2263
|
+
/** Solid color background */
|
|
2264
|
+
COLOR = "COLOR",
|
|
2265
|
+
/** Gradient background */
|
|
2266
|
+
GRADIENT = "GRADIENT"
|
|
2267
|
+
}
|
|
2268
|
+
/** @enumType */
|
|
2269
|
+
type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2270
|
+
/** Background styling (color or gradient) */
|
|
2271
|
+
interface CardDataBackground {
|
|
2272
|
+
/** Background type. */
|
|
2273
|
+
type?: CardDataBackgroundTypeWithLiterals;
|
|
2274
|
+
/**
|
|
2275
|
+
* Background color as a hexadecimal value.
|
|
2276
|
+
* @format COLOR_HEX
|
|
2277
|
+
*/
|
|
2278
|
+
color?: string | null;
|
|
2279
|
+
/** Gradient configuration. */
|
|
2280
|
+
gradient?: Gradient;
|
|
2281
|
+
}
|
|
2282
|
+
interface BackgroundImage {
|
|
2283
|
+
/** Background image. */
|
|
2284
|
+
media?: Media;
|
|
2285
|
+
/** Background image opacity. */
|
|
2286
|
+
opacity?: number | null;
|
|
2287
|
+
/** Background image scaling. */
|
|
2288
|
+
scaling?: ScalingWithLiterals;
|
|
2289
|
+
/** Position of background. Defaults to `CENTER`. */
|
|
2290
|
+
position?: ImagePositionPositionWithLiterals;
|
|
2291
|
+
}
|
|
2103
2292
|
interface Metadata {
|
|
2104
2293
|
/** Schema version. */
|
|
2105
2294
|
version?: number;
|
|
@@ -2431,14 +2620,12 @@ interface CreateCategoryRequest {
|
|
|
2431
2620
|
fields?: SingleEntityOpsRequestedFieldsWithLiterals[];
|
|
2432
2621
|
}
|
|
2433
2622
|
declare enum SingleEntityOpsRequestedFields {
|
|
2434
|
-
/** Not implemented. */
|
|
2435
|
-
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
2436
2623
|
BREADCRUMBS_INFO = "BREADCRUMBS_INFO",
|
|
2437
2624
|
DESCRIPTION = "DESCRIPTION",
|
|
2438
2625
|
RICH_CONTENT_DESCRIPTION = "RICH_CONTENT_DESCRIPTION"
|
|
2439
2626
|
}
|
|
2440
2627
|
/** @enumType */
|
|
2441
|
-
type SingleEntityOpsRequestedFieldsWithLiterals = SingleEntityOpsRequestedFields | '
|
|
2628
|
+
type SingleEntityOpsRequestedFieldsWithLiterals = SingleEntityOpsRequestedFields | 'BREADCRUMBS_INFO' | 'DESCRIPTION' | 'RICH_CONTENT_DESCRIPTION';
|
|
2442
2629
|
interface CreateCategoryResponse {
|
|
2443
2630
|
/** Created category. */
|
|
2444
2631
|
category?: Category;
|
|
@@ -2568,12 +2755,10 @@ interface CursorPaging {
|
|
|
2568
2755
|
cursor?: string | null;
|
|
2569
2756
|
}
|
|
2570
2757
|
declare enum RequestedFields {
|
|
2571
|
-
/** Not implemented. */
|
|
2572
|
-
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
2573
2758
|
BREADCRUMBS_INFO = "BREADCRUMBS_INFO"
|
|
2574
2759
|
}
|
|
2575
2760
|
/** @enumType */
|
|
2576
|
-
type RequestedFieldsWithLiterals = RequestedFields | '
|
|
2761
|
+
type RequestedFieldsWithLiterals = RequestedFields | 'BREADCRUMBS_INFO';
|
|
2577
2762
|
interface QueryCategoriesResponse {
|
|
2578
2763
|
/**
|
|
2579
2764
|
* List of categories.
|
|
@@ -2773,7 +2958,6 @@ interface IncludeMissingValuesOptions {
|
|
|
2773
2958
|
addToBucket?: string;
|
|
2774
2959
|
}
|
|
2775
2960
|
declare enum ScalarType {
|
|
2776
|
-
UNKNOWN_SCALAR_TYPE = "UNKNOWN_SCALAR_TYPE",
|
|
2777
2961
|
/** Total number of distinct values. */
|
|
2778
2962
|
COUNT_DISTINCT = "COUNT_DISTINCT",
|
|
2779
2963
|
/** Minimum value. */
|
|
@@ -2782,7 +2966,7 @@ declare enum ScalarType {
|
|
|
2782
2966
|
MAX = "MAX"
|
|
2783
2967
|
}
|
|
2784
2968
|
/** @enumType */
|
|
2785
|
-
type ScalarTypeWithLiterals = ScalarType | '
|
|
2969
|
+
type ScalarTypeWithLiterals = ScalarType | 'COUNT_DISTINCT' | 'MIN' | 'MAX';
|
|
2786
2970
|
interface ValueAggregation extends ValueAggregationOptionsOneOf {
|
|
2787
2971
|
/** Options for including missing values in the aggregation results. */
|
|
2788
2972
|
includeOptions?: IncludeMissingValuesOptions;
|
|
@@ -2811,8 +2995,6 @@ interface ValueAggregationOptionsOneOf {
|
|
|
2811
2995
|
includeOptions?: IncludeMissingValuesOptions;
|
|
2812
2996
|
}
|
|
2813
2997
|
declare enum NestedAggregationType {
|
|
2814
|
-
/** Unknown aggregation type. */
|
|
2815
|
-
UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
|
|
2816
2998
|
/** 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
2999
|
VALUE = "VALUE",
|
|
2818
3000
|
/** 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 +3005,7 @@ declare enum NestedAggregationType {
|
|
|
2823
3005
|
DATE_HISTOGRAM = "DATE_HISTOGRAM"
|
|
2824
3006
|
}
|
|
2825
3007
|
/** @enumType */
|
|
2826
|
-
type NestedAggregationTypeWithLiterals = NestedAggregationType | '
|
|
3008
|
+
type NestedAggregationTypeWithLiterals = NestedAggregationType | 'VALUE' | 'RANGE' | 'SCALAR' | 'DATE_HISTOGRAM';
|
|
2827
3009
|
interface RangeAggregation {
|
|
2828
3010
|
/**
|
|
2829
3011
|
* 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 +3022,6 @@ interface DateHistogramAggregation {
|
|
|
2840
3022
|
interval?: IntervalWithLiterals;
|
|
2841
3023
|
}
|
|
2842
3024
|
declare enum Interval {
|
|
2843
|
-
UNKNOWN_INTERVAL = "UNKNOWN_INTERVAL",
|
|
2844
3025
|
/** Yearly interval. */
|
|
2845
3026
|
YEAR = "YEAR",
|
|
2846
3027
|
/** Monthly interval. */
|
|
@@ -2857,7 +3038,7 @@ declare enum Interval {
|
|
|
2857
3038
|
SECOND = "SECOND"
|
|
2858
3039
|
}
|
|
2859
3040
|
/** @enumType */
|
|
2860
|
-
type IntervalWithLiterals = Interval | '
|
|
3041
|
+
type IntervalWithLiterals = Interval | 'YEAR' | 'MONTH' | 'WEEK' | 'DAY' | 'HOUR' | 'MINUTE' | 'SECOND';
|
|
2861
3042
|
interface NestedAggregationItem extends NestedAggregationItemKindOneOf {
|
|
2862
3043
|
/** Value aggregation configuration. Calculates the distribution of field values within the dataset. */
|
|
2863
3044
|
value?: ValueAggregation;
|
|
@@ -2892,7 +3073,6 @@ interface NestedAggregationItemKindOneOf {
|
|
|
2892
3073
|
dateHistogram?: DateHistogramAggregation;
|
|
2893
3074
|
}
|
|
2894
3075
|
declare enum AggregationType {
|
|
2895
|
-
UNKNOWN_AGGREGATION_TYPE = "UNKNOWN_AGGREGATION_TYPE",
|
|
2896
3076
|
/** 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
3077
|
VALUE = "VALUE",
|
|
2898
3078
|
/** 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 +3085,7 @@ declare enum AggregationType {
|
|
|
2905
3085
|
NESTED = "NESTED"
|
|
2906
3086
|
}
|
|
2907
3087
|
/** @enumType */
|
|
2908
|
-
type AggregationTypeWithLiterals = AggregationType | '
|
|
3088
|
+
type AggregationTypeWithLiterals = AggregationType | 'VALUE' | 'RANGE' | 'SCALAR' | 'DATE_HISTOGRAM' | 'NESTED';
|
|
2909
3089
|
/** 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
3090
|
interface NestedAggregation {
|
|
2911
3091
|
/**
|
|
@@ -3293,13 +3473,12 @@ interface MoveCategoryRequest {
|
|
|
3293
3473
|
moveAfterCategoryId?: string | null;
|
|
3294
3474
|
}
|
|
3295
3475
|
declare enum Position {
|
|
3296
|
-
UNKNOWN_POSITION = "UNKNOWN_POSITION",
|
|
3297
3476
|
FIRST = "FIRST",
|
|
3298
3477
|
LAST = "LAST",
|
|
3299
3478
|
AFTER = "AFTER"
|
|
3300
3479
|
}
|
|
3301
3480
|
/** @enumType */
|
|
3302
|
-
type PositionWithLiterals = Position | '
|
|
3481
|
+
type PositionWithLiterals = Position | 'FIRST' | 'LAST' | 'AFTER';
|
|
3303
3482
|
interface MoveCategoryResponse {
|
|
3304
3483
|
/**
|
|
3305
3484
|
* Parent category ID.
|
|
@@ -3730,14 +3909,13 @@ interface MoveItemInCategoryRequest {
|
|
|
3730
3909
|
beforeItem?: ItemReference;
|
|
3731
3910
|
}
|
|
3732
3911
|
declare enum MoveItemInCategoryRequestPosition {
|
|
3733
|
-
UNKNOWN_POSITION = "UNKNOWN_POSITION",
|
|
3734
3912
|
FIRST = "FIRST",
|
|
3735
3913
|
LAST = "LAST",
|
|
3736
3914
|
BEFORE = "BEFORE",
|
|
3737
3915
|
NONE = "NONE"
|
|
3738
3916
|
}
|
|
3739
3917
|
/** @enumType */
|
|
3740
|
-
type MoveItemInCategoryRequestPositionWithLiterals = MoveItemInCategoryRequestPosition | '
|
|
3918
|
+
type MoveItemInCategoryRequestPositionWithLiterals = MoveItemInCategoryRequestPosition | 'FIRST' | 'LAST' | 'BEFORE' | 'NONE';
|
|
3741
3919
|
interface MoveItemInCategoryResponse {
|
|
3742
3920
|
/**
|
|
3743
3921
|
* Information about manually arranged items after move.
|
|
@@ -5459,4 +5637,4 @@ interface BulkSetItemCategoriesOptions {
|
|
|
5459
5637
|
treeReference: TreeReference;
|
|
5460
5638
|
}
|
|
5461
5639
|
|
|
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 };
|
|
5640
|
+
export { type CategoryDeletedEnvelope as $, type BulkRemoveItemsFromCategoryResponse as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkRemoveItemsFromCategoryApplicationErrors as E, type BulkRemoveItemFromCategoriesOptions as F, type GetCategoryOptions as G, type BulkRemoveItemFromCategoriesResponse as H, type ItemReference as I, type BulkRemoveItemFromCategoriesApplicationErrors as J, type ListItemsInCategoryResponse as K, type ListItemsInCategoryOptions as L, type MoveCategoryOptions as M, type ListCategoriesForItemOptions as N, type ListCategoriesForItemResponse as O, type ListCategoriesForItemsOptions as P, type ListCategoriesForItemsResponse as Q, type ListTreesResponse as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type SetArrangedItemsOptions as V, type SetArrangedItemsResponse as W, type SetArrangedItemsApplicationErrors as X, type GetArrangedItemsResponse as Y, type CategoryMovedEnvelope as Z, type CategoryCreatedEnvelope as _, type CreateCategoryOptions as a, MissingValues as a$, type CategoryItemAddedToCategoryEnvelope as a0, type CategoryItemRemovedFromCategoryEnvelope as a1, type CategoryItemsArrangedInCategoryEnvelope as a2, type CategoryUpdatedEnvelope as a3, type CategoryQuery as a4, type QueryCategoriesOptions as a5, typedQueryCategories as a6, type CategoriesQueryBuilder as a7, NodeType as a8, BackgroundType as a9, AspectRatio as aA, Resizing as aB, Placement as aC, Type as aD, Alignment as aE, Layout as aF, AppType as aG, InitialExpandedItems as aH, Direction as aI, VerticalAlignment as aJ, NullValue as aK, ImageScalingScaling as aL, ImagePosition as aM, Origin as aN, LayoutDataBackgroundType as aO, BackdropType as aP, VerticalAlignmentAlignment as aQ, ResponsivenessBehaviour as aR, DesignTarget as aS, Scaling as aT, ImagePositionPosition as aU, CardDataBackgroundType as aV, SingleEntityOpsRequestedFields as aW, SortOrder as aX, RequestedFields as aY, SortType as aZ, SortDirection as a_, GradientType as aa, WidthType as ab, PluginContainerDataAlignment as ac, ButtonDataType as ad, Target as ae, TextAlignment as af, LineStyle as ag, Width as ah, DividerDataAlignment as ai, ViewMode as aj, LayoutType as ak, Orientation as al, Crop as am, ThumbnailsAlignment as an, GIFType as ao, Source as ap, StylesPosition as aq, MapType as ar, ViewRole as as, VoteRole as at, PollLayoutType as au, PollLayoutDirection as av, PollDesignBackgroundType as aw, DecorationType as ax, FontType as ay, ImageStylesPosition as az, type CreateCategoryApplicationErrors as b, type ParagraphData as b$, ScalarType as b0, NestedAggregationType as b1, Interval as b2, AggregationType as b3, Mode as b4, Position as b5, MoveItemInCategoryRequestPosition as b6, WebhookIdentityType as b7, type BreadcrumbsInfo as b8, type Breadcrumb as b9, type DividerData as bA, type FileData as bB, type FileSource as bC, type FileSourceDataOneOf as bD, type PDFSettings as bE, type GalleryData as bF, type Media as bG, type Image as bH, type Video as bI, type Item as bJ, type ItemDataOneOf as bK, type GalleryOptions as bL, type GalleryOptionsLayout as bM, type ItemStyle as bN, type Thumbnails as bO, type GIFData as bP, type GIF as bQ, type HeadingData as bR, type HTMLData as bS, type HTMLDataDataOneOf as bT, type ImageData as bU, type StylesBorder as bV, type ImageDataStyles as bW, type LinkPreviewData as bX, type LinkPreviewDataStyles as bY, type MapData as bZ, type MapSettings as b_, type ParentCategory as ba, type SeoSchema as bb, type Keyword as bc, type Tag as bd, type Settings as be, type RichContent as bf, type Node as bg, type NodeDataOneOf as bh, type NodeStyle as bi, type ButtonData as bj, type Gradient as bk, type Stop as bl, type Border as bm, type Colors as bn, type Background as bo, type PluginContainerData as bp, type PluginContainerDataWidth as bq, type PluginContainerDataWidthDataOneOf as br, type Spoiler as bs, type Height as bt, type Styles as bu, type Link as bv, type LinkDataOneOf as bw, type Rel as bx, type CodeBlockData as by, type TextStyle as bz, type CreateCategoryValidationErrors as c, type TextNodeStyle as c$, type PollData as c0, type Permissions as c1, type Option as c2, type PollSettings as c3, type PollLayout as c4, type OptionLayout as c5, type BackgroundGradient as c6, type PollDesignBackground as c7, type PollDesignBackgroundBackgroundOneOf as c8, type PollDesign as c9, type Oembed as cA, type CollapsibleListData as cB, type TableData as cC, type Dimensions as cD, type TableCellData as cE, type CellStyle as cF, type BorderColors as cG, type BorderWidths as cH, type ListValue as cI, type AudioData as cJ, type OrderedListData as cK, type BulletedListData as cL, type BlockquoteData as cM, type CaptionData as cN, type LayoutData as cO, type LayoutDataBackgroundImage as cP, type Banner as cQ, type LayoutDataBackground as cR, type Backdrop as cS, type LayoutCellData as cT, type ShapeData as cU, type ShapeDataStyles as cV, type CardData as cW, type CardDataBackground as cX, type BackgroundImage as cY, type Metadata as cZ, type DocumentStyle as c_, type OptionDesign as ca, type Poll as cb, type PollDataLayout as cc, type Design as cd, type TextData as ce, type Decoration as cf, type DecorationDataOneOf as cg, type AnchorData as ch, type ColorData as ci, type LinkData as cj, type MentionData as ck, type FontSizeData as cl, type SpoilerData as cm, type FontFamilyData as cn, type AppEmbedData as co, type AppEmbedDataAppDataOneOf as cp, type BookingData as cq, type EventData as cr, type ButtonStyles as cs, type ImageStyles as ct, type RibbonStyles as cu, type CardStyles as cv, type PricingData as cw, type VideoData as cx, type PlaybackOptions as cy, type EmbedData as cz, type UpdateCategoryOptions as d, type RangeResult as d$, type ExtendedFields as d0, type InvalidateCache as d1, type InvalidateCacheGetByOneOf as d2, type App as d3, type Page as d4, type URI as d5, type File as d6, type CustomTag as d7, type Pages as d8, type URIs as d9, type CompactCategory as dA, type SearchCategoriesRequest as dB, type CursorSearch as dC, type CursorSearchPagingMethodOneOf as dD, type Aggregation as dE, type AggregationKindOneOf as dF, type RangeBucket as dG, type IncludeMissingValuesOptions as dH, type ValueAggregation as dI, type ValueAggregationOptionsOneOf as dJ, type RangeAggregation as dK, type ScalarAggregation as dL, type DateHistogramAggregation as dM, type NestedAggregationItem as dN, type NestedAggregationItemKindOneOf as dO, type NestedAggregation as dP, type SearchDetails as dQ, type AggregationData as dR, type ValueAggregationResult as dS, type RangeAggregationResult as dT, type NestedAggregationResults as dU, type NestedAggregationResultsResultOneOf as dV, type ValueResults as dW, type RangeResults as dX, type AggregationResultsScalarResult as dY, type NestedValueAggregationResult as dZ, type ValueResult as d_, type CategoryMoved as da, type ItemAddedToCategory as db, type ItemsAddedToCategory as dc, type ItemRemovedFromCategory as dd, type ItemsRemovedFromCategory as de, type ItemsArrangedInCategory as df, type CreateCategoryRequest as dg, type CreateCategoryResponse as dh, type DuplicateHandleErrorData as di, type GetCategoryRequest as dj, type GetCategoryResponse as dk, type UpdateCategoryRequest as dl, type UpdateCategoryResponse as dm, type DeleteCategoryRequest as dn, type DeleteCategoryResponse as dp, type QueryCategoriesRequest as dq, type CursorQuery as dr, type CursorQueryPagingMethodOneOf as ds, type Sorting as dt, type CursorPaging as du, type QueryCategoriesResponse as dv, type CursorPagingMetadata as dw, type Cursors as dx, type ListCompactCategoriesByIdsRequest as dy, type ListCompactCategoriesByIdsResponse as dz, type UpdateCategoryApplicationErrors as e, type MessageEnvelope as e$, type ScalarResult as e0, type NestedResultValue as e1, type NestedResultValueResultOneOf as e2, type Results as e3, type DateHistogramResult as e4, type GroupByValueResults as e5, type DateHistogramResults as e6, type NestedResults as e7, type AggregationResults as e8, type AggregationResultsResultOneOf as e9, type ListItemsInCategoryRequestPagingMethodOneOf as eA, type PagingMetadataV2 as eB, type ListCategoriesForItemRequest as eC, type ListCategoriesForItemsRequest as eD, type MapItemToCategories as eE, type ListTreesRequest as eF, type MoveItemInCategoryRequest as eG, type MoveItemInCategoryResponse as eH, type SetArrangedItemsRequest as eI, type GetArrangedItemsRequest as eJ, type BulkSetItemCategoriesRequest as eK, type BulkSetItemCategoriesResponse as eL, type GetCategoriesTreeRequest as eM, type GetCategoriesTreeResponse as eN, type CategoryTreeNode as eO, type DomainEvent as eP, type DomainEventBodyOneOf as eQ, type EntityCreatedEvent as eR, type RestoreInfo as eS, type EntityUpdatedEvent as eT, type EntityDeletedEvent as eU, type ActionEvent as eV, type Empty as eW, type BulkCreateCategoriesForMigrationRequest as eX, type BulkCreateCategoriesForMigrationResponse as eY, type BulkAddItemsToCategoryForMigrationRequest as eZ, type BulkAddItemsToCategoryForMigrationResponse as e_, type DeprecatedSearchCategoriesWithOffsetRequest as ea, type OffsetSearch as eb, type OffsetSearchPagingMethodOneOf as ec, type Paging as ed, type DeprecatedSearchCategoriesWithOffsetResponse as ee, type PagingMetadata as ef, type CountCategoriesRequest as eg, type MoveCategoryRequest as eh, type BulkUpdateCategoriesRequest as ei, type BulkCategoriesResult as ej, type ItemMetadata as ek, type ApplicationError as el, type BulkActionMetadata as em, type UpdateCategoryVisibilityRequest as en, type BulkShowCategoriesRequest as eo, type BulkDeleteCategoriesRequest as ep, type BulkDeleteCategoriesResponse as eq, type BulkDeleteCategoriesResponseBulkCategoriesResult as er, type BulkAddItemsToCategoryRequest as es, type BulkItemsToCategoryResult as et, type ItemReferenceMetadata as eu, type BulkAddItemToCategoriesRequest as ev, type BulkItemToCategoriesResult as ew, type BulkRemoveItemsFromCategoryRequest as ex, type BulkRemoveItemFromCategoriesRequest as ey, type ListItemsInCategoryRequest as ez, type CategorySearch as f, type SortOrderWithLiterals as f$, type IdentificationData as f0, type IdentificationDataIdOneOf as f1, type AccountInfo as f2, type BaseEventMetadata as f3, type EventMetadata as f4, type AccountInfoMetadata as f5, type CategoriesQueryResult as f6, type CategoryQuerySpec as f7, type CategorySearchSpec as f8, type ListItemsInCategoryOptionsPagingMethodOneOf as f9, type PollDesignBackgroundTypeWithLiterals as fA, type DecorationTypeWithLiterals as fB, type FontTypeWithLiterals as fC, type ImageStylesPositionWithLiterals as fD, type AspectRatioWithLiterals as fE, type ResizingWithLiterals as fF, type PlacementWithLiterals as fG, type TypeWithLiterals as fH, type AlignmentWithLiterals as fI, type LayoutWithLiterals as fJ, type AppTypeWithLiterals as fK, type InitialExpandedItemsWithLiterals as fL, type DirectionWithLiterals as fM, type VerticalAlignmentWithLiterals as fN, type NullValueWithLiterals as fO, type ImageScalingScalingWithLiterals as fP, type ImagePositionWithLiterals as fQ, type OriginWithLiterals as fR, type LayoutDataBackgroundTypeWithLiterals as fS, type BackdropTypeWithLiterals as fT, type VerticalAlignmentAlignmentWithLiterals as fU, type ResponsivenessBehaviourWithLiterals as fV, type DesignTargetWithLiterals as fW, type ScalingWithLiterals as fX, type ImagePositionPositionWithLiterals as fY, type CardDataBackgroundTypeWithLiterals as fZ, type SingleEntityOpsRequestedFieldsWithLiterals as f_, type BulkSetItemCategoriesOptions as fa, utils as fb, type NodeTypeWithLiterals as fc, type BackgroundTypeWithLiterals as fd, type GradientTypeWithLiterals as fe, type WidthTypeWithLiterals as ff, type PluginContainerDataAlignmentWithLiterals as fg, type ButtonDataTypeWithLiterals as fh, type TargetWithLiterals as fi, type TextAlignmentWithLiterals as fj, type LineStyleWithLiterals as fk, type WidthWithLiterals as fl, type DividerDataAlignmentWithLiterals as fm, type ViewModeWithLiterals as fn, type LayoutTypeWithLiterals as fo, type OrientationWithLiterals as fp, type CropWithLiterals as fq, type ThumbnailsAlignmentWithLiterals as fr, type GIFTypeWithLiterals as fs, type SourceWithLiterals as ft, type StylesPositionWithLiterals as fu, type MapTypeWithLiterals as fv, type ViewRoleWithLiterals as fw, type VoteRoleWithLiterals as fx, type PollLayoutTypeWithLiterals as fy, type PollLayoutDirectionWithLiterals as fz, type SearchCategoriesResponse as g, type RequestedFieldsWithLiterals as g0, type SortTypeWithLiterals as g1, type SortDirectionWithLiterals as g2, type MissingValuesWithLiterals as g3, type ScalarTypeWithLiterals as g4, type NestedAggregationTypeWithLiterals as g5, type IntervalWithLiterals as g6, type AggregationTypeWithLiterals as g7, type ModeWithLiterals as g8, type PositionWithLiterals as g9, listItemsInCategory as gA, listCategoriesForItem as gB, listCategoriesForItems as gC, listTrees as gD, setArrangedItems as gE, getArrangedItems as gF, type MoveItemInCategoryRequestPositionWithLiterals as ga, type WebhookIdentityTypeWithLiterals as gb, type BulkSetItemCategoriesApplicationErrors as gc, type CommonQueryWithEntityContext as gd, type CommonSearchWithEntityContext as ge, onCategoryMoved as gf, onCategoryCreated as gg, onCategoryDeleted as gh, onCategoryItemAddedToCategory as gi, onCategoryItemRemovedFromCategory as gj, onCategoryItemsArrangedInCategory as gk, onCategoryUpdated as gl, createCategory as gm, getCategory as gn, updateCategory as go, deleteCategory as gp, queryCategories as gq, countCategories as gr, moveCategory as gs, bulkUpdateCategories as gt, updateCategoryVisibility as gu, bulkShowCategories as gv, bulkAddItemsToCategory as gw, bulkAddItemToCategories as gx, bulkRemoveItemsFromCategory as gy, bulkRemoveItemFromCategories as gz, type CountCategoriesOptions as h, type CountCategoriesResponse as i, type MoveCategoryResponse as j, type MoveCategoryApplicationErrors as k, type MaskedCategory as l, type BulkUpdateCategoriesResponse as m, type BulkUpdateCategoriesApplicationErrors as n, type UpdateCategoryVisibilityOptions as o, type UpdateCategoryVisibilityResponse as p, type UpdateCategoryVisibilityApplicationErrors as q, type BulkShowCategoriesOptions as r, type BulkShowCategoriesResponse as s, type BulkAddItemsToCategoryOptions as t, type BulkAddItemsToCategoryResponse as u, type BulkAddItemsToCategoryApplicationErrors as v, type BulkAddItemToCategoriesOptions as w, type BulkAddItemToCategoriesResponse as x, type BulkAddItemToCategoriesApplicationErrors as y, type BulkRemoveItemsFromCategoryOptions as z };
|
package/build/cjs/index.d.ts
CHANGED
|
@@ -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-
|
|
3
|
-
export {
|
|
2
|
+
import { C as Category, a as CreateCategoryOptions, b as CreateCategoryApplicationErrors, c as CreateCategoryValidationErrors, T as TreeReference, G as GetCategoryOptions, U as UpdateCategory, d as UpdateCategoryOptions, e as UpdateCategoryApplicationErrors, D as DeleteCategoryApplicationErrors, f as CategorySearch, S as SearchCategoriesOptions, g as SearchCategoriesResponse, h as CountCategoriesOptions, i as CountCategoriesResponse, M as MoveCategoryOptions, j as MoveCategoryResponse, k as MoveCategoryApplicationErrors, l as MaskedCategory, B as BulkUpdateCategoriesOptions, m as BulkUpdateCategoriesResponse, n as BulkUpdateCategoriesApplicationErrors, o as UpdateCategoryVisibilityOptions, p as UpdateCategoryVisibilityResponse, q as UpdateCategoryVisibilityApplicationErrors, r as BulkShowCategoriesOptions, s as BulkShowCategoriesResponse, I as ItemReference, t as BulkAddItemsToCategoryOptions, u as BulkAddItemsToCategoryResponse, v as BulkAddItemsToCategoryApplicationErrors, w as BulkAddItemToCategoriesOptions, x as BulkAddItemToCategoriesResponse, y as BulkAddItemToCategoriesApplicationErrors, z as BulkRemoveItemsFromCategoryOptions, A as BulkRemoveItemsFromCategoryResponse, E as BulkRemoveItemsFromCategoryApplicationErrors, F as BulkRemoveItemFromCategoriesOptions, H as BulkRemoveItemFromCategoriesResponse, J as BulkRemoveItemFromCategoriesApplicationErrors, L as ListItemsInCategoryOptions, K as ListItemsInCategoryResponse, N as ListCategoriesForItemOptions, O as ListCategoriesForItemResponse, P as ListCategoriesForItemsOptions, Q as ListCategoriesForItemsResponse, R as ListTreesResponse, V as SetArrangedItemsOptions, W as SetArrangedItemsResponse, X as SetArrangedItemsApplicationErrors, Y as GetArrangedItemsResponse, Z as CategoryMovedEnvelope, _ as CategoryCreatedEnvelope, $ as CategoryDeletedEnvelope, a0 as CategoryItemAddedToCategoryEnvelope, a1 as CategoryItemRemovedFromCategoryEnvelope, a2 as CategoryItemsArrangedInCategoryEnvelope, a3 as CategoryUpdatedEnvelope, a4 as CategoryQuery, a5 as QueryCategoriesOptions, a6 as typedQueryCategories, a7 as CategoriesQueryBuilder } from './categories-v1-category-categories.universal-HGXwX99O.js';
|
|
3
|
+
export { f2 as AccountInfo, f5 as AccountInfoMetadata, eV as ActionEvent, dE as Aggregation, dR as AggregationData, dF as AggregationKindOneOf, e8 as AggregationResults, e9 as AggregationResultsResultOneOf, dY as AggregationResultsScalarResult, b3 as AggregationType, g7 as AggregationTypeWithLiterals, aE as Alignment, fI as AlignmentWithLiterals, ch as AnchorData, d3 as App, co as AppEmbedData, cp as AppEmbedDataAppDataOneOf, aG as AppType, fK as AppTypeWithLiterals, el as ApplicationError, aA as AspectRatio, fE as AspectRatioWithLiterals, cJ as AudioData, cS as Backdrop, aP as BackdropType, fT as BackdropTypeWithLiterals, bo as Background, c6 as BackgroundGradient, cY as BackgroundImage, a9 as BackgroundType, fd as BackgroundTypeWithLiterals, cQ as Banner, f3 as BaseEventMetadata, cM as BlockquoteData, cq as BookingData, bm as Border, cG as BorderColors, cH as BorderWidths, b9 as Breadcrumb, b8 as BreadcrumbsInfo, em as BulkActionMetadata, ev as BulkAddItemToCategoriesRequest, eZ as BulkAddItemsToCategoryForMigrationRequest, e_ as BulkAddItemsToCategoryForMigrationResponse, es as BulkAddItemsToCategoryRequest, ej as BulkCategoriesResult, eX as BulkCreateCategoriesForMigrationRequest, eY as BulkCreateCategoriesForMigrationResponse, ep as BulkDeleteCategoriesRequest, eq as BulkDeleteCategoriesResponse, er as BulkDeleteCategoriesResponseBulkCategoriesResult, ew as BulkItemToCategoriesResult, et as BulkItemsToCategoryResult, ey as BulkRemoveItemFromCategoriesRequest, ex as BulkRemoveItemsFromCategoryRequest, gc as BulkSetItemCategoriesApplicationErrors, fa as BulkSetItemCategoriesOptions, eK as BulkSetItemCategoriesRequest, eL as BulkSetItemCategoriesResponse, eo as BulkShowCategoriesRequest, ei as BulkUpdateCategoriesRequest, cL as BulletedListData, bj as ButtonData, ad as ButtonDataType, fh as ButtonDataTypeWithLiterals, cs as ButtonStyles, cN as CaptionData, cW as CardData, cX as CardDataBackground, aV as CardDataBackgroundType, fZ as CardDataBackgroundTypeWithLiterals, cv as CardStyles, f6 as CategoriesQueryResult, da as CategoryMoved, f7 as CategoryQuerySpec, f8 as CategorySearchSpec, eO as CategoryTreeNode, cF as CellStyle, by as CodeBlockData, cB as CollapsibleListData, ci as ColorData, bn as Colors, gd as CommonQueryWithEntityContext, ge as CommonSearchWithEntityContext, dA as CompactCategory, eg as CountCategoriesRequest, dg as CreateCategoryRequest, dh as CreateCategoryResponse, am as Crop, fq as CropWithLiterals, du as CursorPaging, dw as CursorPagingMetadata, dr as CursorQuery, ds as CursorQueryPagingMethodOneOf, dC as CursorSearch, dD as CursorSearchPagingMethodOneOf, dx as Cursors, d7 as CustomTag, dM as DateHistogramAggregation, e4 as DateHistogramResult, e6 as DateHistogramResults, cf as Decoration, cg as DecorationDataOneOf, ax as DecorationType, fB as DecorationTypeWithLiterals, dn as DeleteCategoryRequest, dp as DeleteCategoryResponse, ea as DeprecatedSearchCategoriesWithOffsetRequest, ee as DeprecatedSearchCategoriesWithOffsetResponse, cd as Design, aS as DesignTarget, fW as DesignTargetWithLiterals, cD as Dimensions, aI as Direction, fM as DirectionWithLiterals, bA as DividerData, ai as DividerDataAlignment, fm as DividerDataAlignmentWithLiterals, c_ as DocumentStyle, eP as DomainEvent, eQ as DomainEventBodyOneOf, di as DuplicateHandleErrorData, cz as EmbedData, eW as Empty, eR as EntityCreatedEvent, eU as EntityDeletedEvent, eT as EntityUpdatedEvent, cr as EventData, f4 as EventMetadata, d0 as ExtendedFields, d6 as File, bB as FileData, bC as FileSource, bD as FileSourceDataOneOf, cn as FontFamilyData, cl as FontSizeData, ay as FontType, fC as FontTypeWithLiterals, bQ as GIF, bP as GIFData, ao as GIFType, fs as GIFTypeWithLiterals, bF as GalleryData, bL as GalleryOptions, bM as GalleryOptionsLayout, eJ as GetArrangedItemsRequest, eM as GetCategoriesTreeRequest, eN as GetCategoriesTreeResponse, dj as GetCategoryRequest, dk as GetCategoryResponse, bk as Gradient, aa as GradientType, fe as GradientTypeWithLiterals, e5 as GroupByValueResults, bS as HTMLData, bT as HTMLDataDataOneOf, bR as HeadingData, bt as Height, f0 as IdentificationData, f1 as IdentificationDataIdOneOf, bH as Image, bU as ImageData, bW as ImageDataStyles, aM as ImagePosition, aU as ImagePositionPosition, fY as ImagePositionPositionWithLiterals, fQ as ImagePositionWithLiterals, aL as ImageScalingScaling, fP as ImageScalingScalingWithLiterals, ct as ImageStyles, az as ImageStylesPosition, fD as ImageStylesPositionWithLiterals, dH as IncludeMissingValuesOptions, aH as InitialExpandedItems, fL as InitialExpandedItemsWithLiterals, b2 as Interval, g6 as IntervalWithLiterals, d1 as InvalidateCache, d2 as InvalidateCacheGetByOneOf, bJ as Item, db as ItemAddedToCategory, bK as ItemDataOneOf, ek as ItemMetadata, eu as ItemReferenceMetadata, dd as ItemRemovedFromCategory, bN as ItemStyle, dc as ItemsAddedToCategory, df as ItemsArrangedInCategory, de as ItemsRemovedFromCategory, bc as Keyword, aF as Layout, cT as LayoutCellData, cO as LayoutData, cR as LayoutDataBackground, cP as LayoutDataBackgroundImage, aO as LayoutDataBackgroundType, fS as LayoutDataBackgroundTypeWithLiterals, ak as LayoutType, fo as LayoutTypeWithLiterals, fJ as LayoutWithLiterals, ag as LineStyle, fk as LineStyleWithLiterals, bv as Link, cj as LinkData, bw as LinkDataOneOf, bX as LinkPreviewData, bY as LinkPreviewDataStyles, eC as ListCategoriesForItemRequest, eD as ListCategoriesForItemsRequest, dy as ListCompactCategoriesByIdsRequest, dz as ListCompactCategoriesByIdsResponse, f9 as ListItemsInCategoryOptionsPagingMethodOneOf, ez as ListItemsInCategoryRequest, eA as ListItemsInCategoryRequestPagingMethodOneOf, eF as ListTreesRequest, cI as ListValue, bZ as MapData, eE as MapItemToCategories, b_ as MapSettings, ar as MapType, fv as MapTypeWithLiterals, bG as Media, ck as MentionData, e$ as MessageEnvelope, cZ as Metadata, a$ as MissingValues, g3 as MissingValuesWithLiterals, b4 as Mode, g8 as ModeWithLiterals, eh as MoveCategoryRequest, eG as MoveItemInCategoryRequest, b6 as MoveItemInCategoryRequestPosition, ga as MoveItemInCategoryRequestPositionWithLiterals, eH as MoveItemInCategoryResponse, dP as NestedAggregation, dN as NestedAggregationItem, dO as NestedAggregationItemKindOneOf, dU as NestedAggregationResults, dV as NestedAggregationResultsResultOneOf, b1 as NestedAggregationType, g5 as NestedAggregationTypeWithLiterals, e1 as NestedResultValue, e2 as NestedResultValueResultOneOf, e7 as NestedResults, dZ as NestedValueAggregationResult, bg as Node, bh as NodeDataOneOf, bi as NodeStyle, a8 as NodeType, fc as NodeTypeWithLiterals, aK as NullValue, fO as NullValueWithLiterals, cA as Oembed, eb as OffsetSearch, ec as OffsetSearchPagingMethodOneOf, c2 as Option, ca as OptionDesign, c5 as OptionLayout, cK as OrderedListData, al as Orientation, fp as OrientationWithLiterals, aN as Origin, fR as OriginWithLiterals, bE as PDFSettings, d4 as Page, d8 as Pages, ed as Paging, ef as PagingMetadata, eB as PagingMetadataV2, b$ as ParagraphData, ba as ParentCategory, c1 as Permissions, aC as Placement, fG as PlacementWithLiterals, cy as PlaybackOptions, bp as PluginContainerData, ac as PluginContainerDataAlignment, fg as PluginContainerDataAlignmentWithLiterals, bq as PluginContainerDataWidth, br as PluginContainerDataWidthDataOneOf, cb as Poll, c0 as PollData, cc as PollDataLayout, c9 as PollDesign, c7 as PollDesignBackground, c8 as PollDesignBackgroundBackgroundOneOf, aw as PollDesignBackgroundType, fA as PollDesignBackgroundTypeWithLiterals, c4 as PollLayout, av as PollLayoutDirection, fz as PollLayoutDirectionWithLiterals, au as PollLayoutType, fy as PollLayoutTypeWithLiterals, c3 as PollSettings, b5 as Position, g9 as PositionWithLiterals, cw as PricingData, dq as QueryCategoriesRequest, dv as QueryCategoriesResponse, dK as RangeAggregation, dT as RangeAggregationResult, dG as RangeBucket, d$ as RangeResult, dX as RangeResults, bx as Rel, aY as RequestedFields, g0 as RequestedFieldsWithLiterals, aB as Resizing, fF as ResizingWithLiterals, aR as ResponsivenessBehaviour, fV as ResponsivenessBehaviourWithLiterals, eS as RestoreInfo, e3 as Results, cu as RibbonStyles, bf as RichContent, dL as ScalarAggregation, e0 as ScalarResult, b0 as ScalarType, g4 as ScalarTypeWithLiterals, aT as Scaling, fX as ScalingWithLiterals, dB as SearchCategoriesRequest, dQ as SearchDetails, bb as SeoSchema, eI as SetArrangedItemsRequest, be as Settings, cU as ShapeData, cV as ShapeDataStyles, aW as SingleEntityOpsRequestedFields, f_ as SingleEntityOpsRequestedFieldsWithLiterals, a_ as SortDirection, g2 as SortDirectionWithLiterals, aX as SortOrder, f$ as SortOrderWithLiterals, aZ as SortType, g1 as SortTypeWithLiterals, dt as Sorting, ap as Source, ft as SourceWithLiterals, bs as Spoiler, cm as SpoilerData, bl as Stop, bu as Styles, bV as StylesBorder, aq as StylesPosition, fu as StylesPositionWithLiterals, cE as TableCellData, cC as TableData, bd as Tag, ae as Target, fi as TargetWithLiterals, af as TextAlignment, fj as TextAlignmentWithLiterals, ce as TextData, c$ as TextNodeStyle, bz as TextStyle, bO as Thumbnails, an as ThumbnailsAlignment, fr as ThumbnailsAlignmentWithLiterals, aD as Type, fH as TypeWithLiterals, d5 as URI, d9 as URIs, dl as UpdateCategoryRequest, dm as UpdateCategoryResponse, en as UpdateCategoryVisibilityRequest, dI as ValueAggregation, dJ as ValueAggregationOptionsOneOf, dS as ValueAggregationResult, d_ as ValueResult, dW as ValueResults, aJ as VerticalAlignment, aQ as VerticalAlignmentAlignment, fU as VerticalAlignmentAlignmentWithLiterals, fN as VerticalAlignmentWithLiterals, bI as Video, cx as VideoData, aj as ViewMode, fn as ViewModeWithLiterals, as as ViewRole, fw as ViewRoleWithLiterals, at as VoteRole, fx as VoteRoleWithLiterals, b7 as WebhookIdentityType, gb as WebhookIdentityTypeWithLiterals, ah as Width, ab as WidthType, ff as WidthTypeWithLiterals, fl as WidthWithLiterals, fb as utils } from './categories-v1-category-categories.universal-HGXwX99O.js';
|
|
4
4
|
|
|
5
5
|
declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
|
|
6
6
|
interface CreateCategorySignature {
|