@wix/auto_sdk_categories_categories 1.0.96 → 1.0.98
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-Dm6yZ9WO.d.ts → categories-v1-category-categories.universal-B-eQn9IE.d.ts} +57 -3
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +54 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +42 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +26 -4
- package/build/cjs/meta.js +34 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{categories-v1-category-categories.universal-Dm6yZ9WO.d.mts → categories-v1-category-categories.universal-B-eQn9IE.d.mts} +57 -3
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +51 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +39 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +26 -4
- package/build/es/meta.mjs +34 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{categories-v1-category-categories.universal-fjKn12zb.d.ts → categories-v1-category-categories.universal-D-x06rJw.d.ts} +57 -3
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +54 -0
- 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 +42 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +26 -4
- package/build/internal/cjs/meta.js +34 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{categories-v1-category-categories.universal-fjKn12zb.d.mts → categories-v1-category-categories.universal-D-x06rJw.d.mts} +57 -3
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +51 -0
- 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 +39 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +26 -4
- package/build/internal/es/meta.mjs +34 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as _wix_sdk_types from '@wix/sdk-types';
|
|
1
2
|
import { QuerySpec, SearchSpec, Query, Search, NonNullablePaths } from '@wix/sdk-types';
|
|
2
3
|
|
|
3
4
|
/**
|
|
@@ -291,6 +292,8 @@ interface Node extends NodeDataOneOf {
|
|
|
291
292
|
layoutData?: LayoutData;
|
|
292
293
|
/** Data for a cell node. */
|
|
293
294
|
layoutCellData?: LayoutCellData;
|
|
295
|
+
/** Data for a shape node. */
|
|
296
|
+
shapeData?: ShapeData;
|
|
294
297
|
/** 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. */
|
|
295
298
|
type?: NodeTypeWithLiterals;
|
|
296
299
|
/** Node ID. */
|
|
@@ -358,6 +361,8 @@ interface NodeDataOneOf {
|
|
|
358
361
|
layoutData?: LayoutData;
|
|
359
362
|
/** Data for a cell node. */
|
|
360
363
|
layoutCellData?: LayoutCellData;
|
|
364
|
+
/** Data for a shape node. */
|
|
365
|
+
shapeData?: ShapeData;
|
|
361
366
|
}
|
|
362
367
|
declare enum NodeType {
|
|
363
368
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -393,10 +398,11 @@ declare enum NodeType {
|
|
|
393
398
|
AUDIO = "AUDIO",
|
|
394
399
|
CAPTION = "CAPTION",
|
|
395
400
|
LAYOUT = "LAYOUT",
|
|
396
|
-
LAYOUT_CELL = "LAYOUT_CELL"
|
|
401
|
+
LAYOUT_CELL = "LAYOUT_CELL",
|
|
402
|
+
SHAPE = "SHAPE"
|
|
397
403
|
}
|
|
398
404
|
/** @enumType */
|
|
399
|
-
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';
|
|
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';
|
|
400
406
|
interface NodeStyle {
|
|
401
407
|
/** The top padding value in pixels. */
|
|
402
408
|
paddingTop?: string | null;
|
|
@@ -2063,6 +2069,23 @@ interface LayoutCellData {
|
|
|
2063
2069
|
/** Size of the cell in 12 columns grid. */
|
|
2064
2070
|
colSpan?: number | null;
|
|
2065
2071
|
}
|
|
2072
|
+
interface ShapeData {
|
|
2073
|
+
/** Styling for the shape's container. */
|
|
2074
|
+
containerData?: PluginContainerData;
|
|
2075
|
+
/** Shape file details. */
|
|
2076
|
+
shape?: Media;
|
|
2077
|
+
/** Styling for the shape. */
|
|
2078
|
+
styles?: ShapeDataStyles;
|
|
2079
|
+
}
|
|
2080
|
+
interface ShapeDataStyles {
|
|
2081
|
+
/**
|
|
2082
|
+
* Shape fill color as a hexadecimal value.
|
|
2083
|
+
* @format COLOR_HEX
|
|
2084
|
+
*/
|
|
2085
|
+
color?: string | null;
|
|
2086
|
+
/** Map of original color keys to their new color values. */
|
|
2087
|
+
colors?: Record<string, string>;
|
|
2088
|
+
}
|
|
2066
2089
|
interface Metadata {
|
|
2067
2090
|
/** Schema version. */
|
|
2068
2091
|
version?: number;
|
|
@@ -4085,6 +4108,8 @@ interface CategoryMovedEnvelope {
|
|
|
4085
4108
|
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4086
4109
|
* @permissionScope Manage Stores
|
|
4087
4110
|
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
4111
|
+
* @permissionScope Read categories (PII)
|
|
4112
|
+
* @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ_LIMITED
|
|
4088
4113
|
* @permissionScope Read categories
|
|
4089
4114
|
* @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ
|
|
4090
4115
|
* @permissionScope Wix Multilingual - Nile Wrapper Domain Events Read
|
|
@@ -4101,6 +4126,8 @@ interface CategoryMovedEnvelope {
|
|
|
4101
4126
|
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
4102
4127
|
* @permissionScope Manage v3 catalog
|
|
4103
4128
|
* @permissionScopeId SCOPE.STORES.CATALOG_WRITE
|
|
4129
|
+
* @permissionScope Read v3 catalog (PII)
|
|
4130
|
+
* @permissionScopeId SCOPE.STORES.CATALOG_READ_LIMITED
|
|
4104
4131
|
* @permissionScope Manage Orders
|
|
4105
4132
|
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
4106
4133
|
* @permissionId CATEGORIES.CATEGORY_READ
|
|
@@ -4119,6 +4146,8 @@ interface CategoryCreatedEnvelope {
|
|
|
4119
4146
|
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4120
4147
|
* @permissionScope Manage Stores
|
|
4121
4148
|
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
4149
|
+
* @permissionScope Read categories (PII)
|
|
4150
|
+
* @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ_LIMITED
|
|
4122
4151
|
* @permissionScope Read categories
|
|
4123
4152
|
* @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ
|
|
4124
4153
|
* @permissionScope Wix Multilingual - Nile Wrapper Domain Events Read
|
|
@@ -4135,6 +4164,8 @@ interface CategoryCreatedEnvelope {
|
|
|
4135
4164
|
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
4136
4165
|
* @permissionScope Manage v3 catalog
|
|
4137
4166
|
* @permissionScopeId SCOPE.STORES.CATALOG_WRITE
|
|
4167
|
+
* @permissionScope Read v3 catalog (PII)
|
|
4168
|
+
* @permissionScopeId SCOPE.STORES.CATALOG_READ_LIMITED
|
|
4138
4169
|
* @permissionScope Manage Orders
|
|
4139
4170
|
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
4140
4171
|
* @permissionId CATEGORIES.CATEGORY_READ
|
|
@@ -4152,6 +4183,8 @@ interface CategoryDeletedEnvelope {
|
|
|
4152
4183
|
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4153
4184
|
* @permissionScope Manage Stores
|
|
4154
4185
|
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
4186
|
+
* @permissionScope Read categories (PII)
|
|
4187
|
+
* @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ_LIMITED
|
|
4155
4188
|
* @permissionScope Read categories
|
|
4156
4189
|
* @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ
|
|
4157
4190
|
* @permissionScope Wix Multilingual - Nile Wrapper Domain Events Read
|
|
@@ -4168,6 +4201,8 @@ interface CategoryDeletedEnvelope {
|
|
|
4168
4201
|
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
4169
4202
|
* @permissionScope Manage v3 catalog
|
|
4170
4203
|
* @permissionScopeId SCOPE.STORES.CATALOG_WRITE
|
|
4204
|
+
* @permissionScope Read v3 catalog (PII)
|
|
4205
|
+
* @permissionScopeId SCOPE.STORES.CATALOG_READ_LIMITED
|
|
4171
4206
|
* @permissionScope Manage Orders
|
|
4172
4207
|
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
4173
4208
|
* @permissionId CATEGORIES.CATEGORY_READ
|
|
@@ -4186,6 +4221,8 @@ interface CategoryItemAddedToCategoryEnvelope {
|
|
|
4186
4221
|
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4187
4222
|
* @permissionScope Manage Stores
|
|
4188
4223
|
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
4224
|
+
* @permissionScope Read categories (PII)
|
|
4225
|
+
* @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ_LIMITED
|
|
4189
4226
|
* @permissionScope Read categories
|
|
4190
4227
|
* @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ
|
|
4191
4228
|
* @permissionScope Wix Multilingual - Nile Wrapper Domain Events Read
|
|
@@ -4202,6 +4239,8 @@ interface CategoryItemAddedToCategoryEnvelope {
|
|
|
4202
4239
|
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
4203
4240
|
* @permissionScope Manage v3 catalog
|
|
4204
4241
|
* @permissionScopeId SCOPE.STORES.CATALOG_WRITE
|
|
4242
|
+
* @permissionScope Read v3 catalog (PII)
|
|
4243
|
+
* @permissionScopeId SCOPE.STORES.CATALOG_READ_LIMITED
|
|
4205
4244
|
* @permissionScope Manage Orders
|
|
4206
4245
|
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
4207
4246
|
* @permissionId CATEGORIES.CATEGORY_READ
|
|
@@ -4220,6 +4259,8 @@ interface CategoryItemRemovedFromCategoryEnvelope {
|
|
|
4220
4259
|
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4221
4260
|
* @permissionScope Manage Stores
|
|
4222
4261
|
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
4262
|
+
* @permissionScope Read categories (PII)
|
|
4263
|
+
* @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ_LIMITED
|
|
4223
4264
|
* @permissionScope Read categories
|
|
4224
4265
|
* @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ
|
|
4225
4266
|
* @permissionScope Wix Multilingual - Nile Wrapper Domain Events Read
|
|
@@ -4236,6 +4277,8 @@ interface CategoryItemRemovedFromCategoryEnvelope {
|
|
|
4236
4277
|
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
4237
4278
|
* @permissionScope Manage v3 catalog
|
|
4238
4279
|
* @permissionScopeId SCOPE.STORES.CATALOG_WRITE
|
|
4280
|
+
* @permissionScope Read v3 catalog (PII)
|
|
4281
|
+
* @permissionScopeId SCOPE.STORES.CATALOG_READ_LIMITED
|
|
4239
4282
|
* @permissionScope Manage Orders
|
|
4240
4283
|
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
4241
4284
|
* @permissionId CATEGORIES.CATEGORY_READ
|
|
@@ -4254,6 +4297,8 @@ interface CategoryItemsArrangedInCategoryEnvelope {
|
|
|
4254
4297
|
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4255
4298
|
* @permissionScope Manage Stores
|
|
4256
4299
|
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
4300
|
+
* @permissionScope Read categories (PII)
|
|
4301
|
+
* @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ_LIMITED
|
|
4257
4302
|
* @permissionScope Read categories
|
|
4258
4303
|
* @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ
|
|
4259
4304
|
* @permissionScope Wix Multilingual - Nile Wrapper Domain Events Read
|
|
@@ -4270,6 +4315,8 @@ interface CategoryItemsArrangedInCategoryEnvelope {
|
|
|
4270
4315
|
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
4271
4316
|
* @permissionScope Manage v3 catalog
|
|
4272
4317
|
* @permissionScopeId SCOPE.STORES.CATALOG_WRITE
|
|
4318
|
+
* @permissionScope Read v3 catalog (PII)
|
|
4319
|
+
* @permissionScopeId SCOPE.STORES.CATALOG_READ_LIMITED
|
|
4273
4320
|
* @permissionScope Manage Orders
|
|
4274
4321
|
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
4275
4322
|
* @permissionId CATEGORIES.CATEGORY_READ
|
|
@@ -4290,6 +4337,8 @@ interface CategoryUpdatedEnvelope {
|
|
|
4290
4337
|
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4291
4338
|
* @permissionScope Manage Stores
|
|
4292
4339
|
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
4340
|
+
* @permissionScope Read categories (PII)
|
|
4341
|
+
* @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ_LIMITED
|
|
4293
4342
|
* @permissionScope Read categories
|
|
4294
4343
|
* @permissionScopeId SCOPE.CATEGORIES.CATEGORY_READ
|
|
4295
4344
|
* @permissionScope Wix Multilingual - Nile Wrapper Domain Events Read
|
|
@@ -4306,6 +4355,8 @@ interface CategoryUpdatedEnvelope {
|
|
|
4306
4355
|
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
4307
4356
|
* @permissionScope Manage v3 catalog
|
|
4308
4357
|
* @permissionScopeId SCOPE.STORES.CATALOG_WRITE
|
|
4358
|
+
* @permissionScope Read v3 catalog (PII)
|
|
4359
|
+
* @permissionScopeId SCOPE.STORES.CATALOG_READ_LIMITED
|
|
4309
4360
|
* @permissionScope Manage Orders
|
|
4310
4361
|
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
4311
4362
|
* @permissionId CATEGORIES.CATEGORY_READ
|
|
@@ -4698,6 +4749,9 @@ type CategoryQuery = {
|
|
|
4698
4749
|
order?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['order'];
|
|
4699
4750
|
}[];
|
|
4700
4751
|
};
|
|
4752
|
+
declare const QueryBuilder: () => _wix_sdk_types.QueryBuilder<Category, CategoryQuerySpec, CategoryQuery>;
|
|
4753
|
+
declare const Filter: _wix_sdk_types.FilterFactory<Category, CategoryQuerySpec>;
|
|
4754
|
+
declare const Sort: _wix_sdk_types.SortFactory<CategoryQuerySpec>;
|
|
4701
4755
|
interface SearchCategoriesOptions {
|
|
4702
4756
|
/**
|
|
4703
4757
|
* Category tree reference details.
|
|
@@ -5294,4 +5348,4 @@ interface BulkSetItemCategoriesOptions {
|
|
|
5294
5348
|
treeReference: TreeReference;
|
|
5295
5349
|
}
|
|
5296
5350
|
|
|
5297
|
-
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, WebhookIdentityType 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, VerticalAlignmentAlignment as aL, ResponsivenessBehaviour as aM, DesignTarget as aN, SingleEntityOpsRequestedFields as aO, SortOrder as aP, RequestedFields as aQ, SortType as aR, SortDirection as aS, MissingValues as aT, ScalarType as aU, NestedAggregationType as aV, Interval as aW, AggregationType as aX, Mode as aY, Position as aZ, MoveItemInCategoryRequestPosition 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 OptionDesign as b$, type BreadcrumbsInfo as b0, type Breadcrumb as b1, type ParentCategory as b2, type SeoSchema as b3, type Keyword as b4, type Tag as b5, type Settings as b6, type RichContent as b7, type Node as b8, type NodeDataOneOf as b9, type GalleryOptions as bA, type GalleryOptionsLayout as bB, type ItemStyle as bC, type Thumbnails as bD, type GIFData as bE, type GIF as bF, type HeadingData as bG, type HTMLData as bH, type HTMLDataDataOneOf as bI, type ImageData as bJ, type StylesBorder as bK, type ImageDataStyles as bL, type LinkPreviewData as bM, type LinkPreviewDataStyles as bN, type MapData as bO, type MapSettings as bP, type ParagraphData as bQ, type PollData as bR, type Permissions as bS, type Option as bT, type PollSettings as bU, type PollLayout as bV, type OptionLayout as bW, type Gradient as bX, type Background as bY, type BackgroundBackgroundOneOf as bZ, type PollDesign as b_, type NodeStyle as ba, type ButtonData as bb, type Border as bc, type Colors as bd, type PluginContainerData as be, type PluginContainerDataWidth as bf, type PluginContainerDataWidthDataOneOf as bg, type Spoiler as bh, type Height as bi, type Styles as bj, type Link as bk, type LinkDataOneOf as bl, type Rel as bm, type CodeBlockData as bn, type TextStyle as bo, type DividerData as bp, type FileData as bq, type FileSource as br, type FileSourceDataOneOf as bs, type PDFSettings as bt, type GalleryData as bu, type Media as bv, type Image as bw, type Video as bx, type Item as by, type ItemDataOneOf as bz, type CreateCategoryValidationErrors as c, type GetCategoryResponse as c$, type Poll as c0, type PollDataLayout as c1, type Design as c2, type TextData as c3, type Decoration as c4, type DecorationDataOneOf as c5, type AnchorData as c6, type ColorData as c7, type LinkData as c8, type MentionData as c9, type BulletedListData as cA, type BlockquoteData as cB, type CaptionData as cC, type LayoutData as cD, type BackgroundImage as cE, type LayoutCellData as cF, type Metadata as cG, type DocumentStyle as cH, type TextNodeStyle as cI, type ExtendedFields as cJ, type InvalidateCache as cK, type InvalidateCacheGetByOneOf as cL, type App as cM, type Page as cN, type URI as cO, type File as cP, type CustomTag as cQ, type CategoryMoved as cR, type ItemAddedToCategory as cS, type ItemsAddedToCategory as cT, type ItemRemovedFromCategory as cU, type ItemsRemovedFromCategory as cV, type ItemsArrangedInCategory as cW, type CreateCategoryRequest as cX, type CreateCategoryResponse as cY, type DuplicateHandleErrorData as cZ, type GetCategoryRequest as c_, type FontSizeData as ca, type SpoilerData as cb, type FontFamilyData as cc, type AppEmbedData as cd, type AppEmbedDataAppDataOneOf as ce, type BookingData as cf, type EventData as cg, type ButtonStyles as ch, type ImageStyles as ci, type RibbonStyles as cj, type CardStyles as ck, type PricingData as cl, type VideoData as cm, type PlaybackOptions as cn, type EmbedData as co, type Oembed as cp, type CollapsibleListData as cq, type TableData as cr, type Dimensions as cs, type TableCellData as ct, type CellStyle as cu, type BorderColors as cv, type BorderWidths as cw, type ListValue as cx, type AudioData as cy, type OrderedListData as cz, type UpdateCategoryOptions as d, type ItemMetadata as d$, type UpdateCategoryRequest as d0, type UpdateCategoryResponse as d1, type DeleteCategoryRequest as d2, type DeleteCategoryResponse as d3, type QueryCategoriesRequest as d4, type CursorQuery as d5, type CursorQueryPagingMethodOneOf as d6, type Sorting as d7, type CursorPaging as d8, type QueryCategoriesResponse as d9, type NestedAggregationResultsResultOneOf as dA, type ValueResults as dB, type RangeResults as dC, type AggregationResultsScalarResult as dD, type NestedValueAggregationResult as dE, type ValueResult as dF, type RangeResult as dG, type ScalarResult as dH, type NestedResultValue as dI, type NestedResultValueResultOneOf as dJ, type Results as dK, type DateHistogramResult as dL, type GroupByValueResults as dM, type DateHistogramResults as dN, type NestedResults as dO, type AggregationResults as dP, type AggregationResultsResultOneOf as dQ, type DeprecatedSearchCategoriesWithOffsetRequest as dR, type OffsetSearch as dS, type OffsetSearchPagingMethodOneOf as dT, type Paging as dU, type DeprecatedSearchCategoriesWithOffsetResponse as dV, type PagingMetadata as dW, type CountCategoriesRequest as dX, type MoveCategoryRequest as dY, type BulkUpdateCategoriesRequest as dZ, type BulkCategoriesResult as d_, type CursorPagingMetadata as da, type Cursors as db, type ListCompactCategoriesByIdsRequest as dc, type ListCompactCategoriesByIdsResponse as dd, type CompactCategory as de, type SearchCategoriesRequest as df, type CursorSearch as dg, type CursorSearchPagingMethodOneOf as dh, type Aggregation as di, type AggregationKindOneOf as dj, type RangeBucket as dk, type IncludeMissingValuesOptions as dl, type ValueAggregation as dm, type ValueAggregationOptionsOneOf as dn, type RangeAggregation as dp, type ScalarAggregation as dq, type DateHistogramAggregation as dr, type NestedAggregationItem as ds, type NestedAggregationItemKindOneOf as dt, type NestedAggregation as du, type SearchDetails as dv, type AggregationData as dw, type ValueAggregationResult as dx, type RangeAggregationResult as dy, type NestedAggregationResults as dz, type UpdateCategoryApplicationErrors as e, type ThumbnailsAlignmentWithLiterals as e$, type ApplicationError as e0, type BulkActionMetadata as e1, type UpdateCategoryVisibilityRequest as e2, type BulkShowCategoriesRequest as e3, type BulkDeleteCategoriesRequest as e4, type BulkDeleteCategoriesResponse as e5, type BulkDeleteCategoriesResponseBulkCategoriesResult as e6, type BulkAddItemsToCategoryRequest as e7, type BulkItemsToCategoryResult as e8, type ItemReferenceMetadata as e9, type ActionEvent as eA, type Empty as eB, type MessageEnvelope as eC, type IdentificationData as eD, type IdentificationDataIdOneOf as eE, type AccountInfo as eF, type BaseEventMetadata as eG, type EventMetadata as eH, type AccountInfoMetadata as eI, type CategoriesQueryResult as eJ, type CategoryQuerySpec as eK, type CategorySearchSpec as eL, type ListItemsInCategoryOptionsPagingMethodOneOf as eM, type BulkSetItemCategoriesOptions as eN, type NodeTypeWithLiterals as eO, type WidthTypeWithLiterals as eP, type PluginContainerDataAlignmentWithLiterals as eQ, type ButtonDataTypeWithLiterals as eR, type TargetWithLiterals as eS, type TextAlignmentWithLiterals as eT, type LineStyleWithLiterals as eU, type WidthWithLiterals as eV, type DividerDataAlignmentWithLiterals as eW, type ViewModeWithLiterals as eX, type LayoutTypeWithLiterals as eY, type OrientationWithLiterals as eZ, type CropWithLiterals as e_, type BulkAddItemToCategoriesRequest as ea, type BulkItemToCategoriesResult as eb, type BulkRemoveItemsFromCategoryRequest as ec, type BulkRemoveItemFromCategoriesRequest as ed, type ListItemsInCategoryRequest as ee, type ListItemsInCategoryRequestPagingMethodOneOf as ef, type PagingMetadataV2 as eg, type ListCategoriesForItemRequest as eh, type ListCategoriesForItemsRequest as ei, type MapItemToCategories as ej, type ListTreesRequest as ek, type MoveItemInCategoryRequest as el, type MoveItemInCategoryResponse as em, type SetArrangedItemsRequest as en, type GetArrangedItemsRequest as eo, type BulkSetItemCategoriesRequest as ep, type BulkSetItemCategoriesResponse as eq, type GetCategoriesTreeRequest as er, type GetCategoriesTreeResponse as es, type CategoryTreeNode as et, type DomainEvent as eu, type DomainEventBodyOneOf as ev, type EntityCreatedEvent as ew, type RestoreInfo as ex, type EntityUpdatedEvent as ey, type EntityDeletedEvent as ez, type CategorySearch as f, bulkAddItemToCategories as f$, type GIFTypeWithLiterals as f0, type SourceWithLiterals as f1, type StylesPositionWithLiterals as f2, type MapTypeWithLiterals as f3, type ViewRoleWithLiterals as f4, type VoteRoleWithLiterals as f5, type PollLayoutTypeWithLiterals as f6, type PollLayoutDirectionWithLiterals as f7, type BackgroundTypeWithLiterals as f8, type DecorationTypeWithLiterals as f9, type IntervalWithLiterals as fA, type AggregationTypeWithLiterals as fB, type ModeWithLiterals as fC, type PositionWithLiterals as fD, type MoveItemInCategoryRequestPositionWithLiterals as fE, type WebhookIdentityTypeWithLiterals as fF, type BulkSetItemCategoriesApplicationErrors as fG, type CommonQueryWithEntityContext as fH, type CommonSearchWithEntityContext as fI, onCategoryMoved as fJ, onCategoryCreated as fK, onCategoryDeleted as fL, onCategoryItemAddedToCategory as fM, onCategoryItemRemovedFromCategory as fN, onCategoryItemsArrangedInCategory as fO, onCategoryUpdated as fP, createCategory as fQ, getCategory as fR, updateCategory as fS, deleteCategory as fT, queryCategories as fU, countCategories as fV, moveCategory as fW, bulkUpdateCategories as fX, updateCategoryVisibility as fY, bulkShowCategories as fZ, bulkAddItemsToCategory as f_, type FontTypeWithLiterals as fa, type ImageStylesPositionWithLiterals as fb, type AspectRatioWithLiterals as fc, type ResizingWithLiterals as fd, type PlacementWithLiterals as fe, type TypeWithLiterals as ff, type AlignmentWithLiterals as fg, type LayoutWithLiterals as fh, type AppTypeWithLiterals as fi, type InitialExpandedItemsWithLiterals as fj, type DirectionWithLiterals as fk, type VerticalAlignmentWithLiterals as fl, type NullValueWithLiterals as fm, type ScalingWithLiterals as fn, type ImagePositionWithLiterals as fo, type VerticalAlignmentAlignmentWithLiterals as fp, type ResponsivenessBehaviourWithLiterals as fq, type DesignTargetWithLiterals as fr, type SingleEntityOpsRequestedFieldsWithLiterals as fs, type SortOrderWithLiterals as ft, type RequestedFieldsWithLiterals as fu, type SortTypeWithLiterals as fv, type SortDirectionWithLiterals as fw, type MissingValuesWithLiterals as fx, type ScalarTypeWithLiterals as fy, type NestedAggregationTypeWithLiterals as fz, type SearchCategoriesResponse as g, bulkRemoveItemsFromCategory as g0, bulkRemoveItemFromCategories as g1, listItemsInCategory as g2, listCategoriesForItem as g3, listCategoriesForItems as g4, listTrees as g5, setArrangedItems as g6, getArrangedItems as g7, 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 };
|
|
5351
|
+
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, WebhookIdentityType 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, VerticalAlignmentAlignment as aL, ResponsivenessBehaviour as aM, DesignTarget as aN, SingleEntityOpsRequestedFields as aO, SortOrder as aP, RequestedFields as aQ, SortType as aR, SortDirection as aS, MissingValues as aT, ScalarType as aU, NestedAggregationType as aV, Interval as aW, AggregationType as aX, Mode as aY, Position as aZ, MoveItemInCategoryRequestPosition 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 OptionDesign as b$, type BreadcrumbsInfo as b0, type Breadcrumb as b1, type ParentCategory as b2, type SeoSchema as b3, type Keyword as b4, type Tag as b5, type Settings as b6, type RichContent as b7, type Node as b8, type NodeDataOneOf as b9, type GalleryOptions as bA, type GalleryOptionsLayout as bB, type ItemStyle as bC, type Thumbnails as bD, type GIFData as bE, type GIF as bF, type HeadingData as bG, type HTMLData as bH, type HTMLDataDataOneOf as bI, type ImageData as bJ, type StylesBorder as bK, type ImageDataStyles as bL, type LinkPreviewData as bM, type LinkPreviewDataStyles as bN, type MapData as bO, type MapSettings as bP, type ParagraphData as bQ, type PollData as bR, type Permissions as bS, type Option as bT, type PollSettings as bU, type PollLayout as bV, type OptionLayout as bW, type Gradient as bX, type Background as bY, type BackgroundBackgroundOneOf as bZ, type PollDesign as b_, type NodeStyle as ba, type ButtonData as bb, type Border as bc, type Colors as bd, type PluginContainerData as be, type PluginContainerDataWidth as bf, type PluginContainerDataWidthDataOneOf as bg, type Spoiler as bh, type Height as bi, type Styles as bj, type Link as bk, type LinkDataOneOf as bl, type Rel as bm, type CodeBlockData as bn, type TextStyle as bo, type DividerData as bp, type FileData as bq, type FileSource as br, type FileSourceDataOneOf as bs, type PDFSettings as bt, type GalleryData as bu, type Media as bv, type Image as bw, type Video as bx, type Item as by, type ItemDataOneOf as bz, type CreateCategoryValidationErrors as c, type DuplicateHandleErrorData as c$, type Poll as c0, type PollDataLayout as c1, type Design as c2, type TextData as c3, type Decoration as c4, type DecorationDataOneOf as c5, type AnchorData as c6, type ColorData as c7, type LinkData as c8, type MentionData as c9, type BulletedListData as cA, type BlockquoteData as cB, type CaptionData as cC, type LayoutData as cD, type BackgroundImage as cE, type LayoutCellData as cF, type ShapeData as cG, type ShapeDataStyles as cH, type Metadata as cI, type DocumentStyle as cJ, type TextNodeStyle as cK, type ExtendedFields as cL, type InvalidateCache as cM, type InvalidateCacheGetByOneOf as cN, type App as cO, type Page as cP, type URI as cQ, type File as cR, type CustomTag as cS, type CategoryMoved as cT, type ItemAddedToCategory as cU, type ItemsAddedToCategory as cV, type ItemRemovedFromCategory as cW, type ItemsRemovedFromCategory as cX, type ItemsArrangedInCategory as cY, type CreateCategoryRequest as cZ, type CreateCategoryResponse as c_, type FontSizeData as ca, type SpoilerData as cb, type FontFamilyData as cc, type AppEmbedData as cd, type AppEmbedDataAppDataOneOf as ce, type BookingData as cf, type EventData as cg, type ButtonStyles as ch, type ImageStyles as ci, type RibbonStyles as cj, type CardStyles as ck, type PricingData as cl, type VideoData as cm, type PlaybackOptions as cn, type EmbedData as co, type Oembed as cp, type CollapsibleListData as cq, type TableData as cr, type Dimensions as cs, type TableCellData as ct, type CellStyle as cu, type BorderColors as cv, type BorderWidths as cw, type ListValue as cx, type AudioData as cy, type OrderedListData as cz, type UpdateCategoryOptions as d, type BulkUpdateCategoriesRequest as d$, type GetCategoryRequest as d0, type GetCategoryResponse as d1, type UpdateCategoryRequest as d2, type UpdateCategoryResponse as d3, type DeleteCategoryRequest as d4, type DeleteCategoryResponse as d5, type QueryCategoriesRequest as d6, type CursorQuery as d7, type CursorQueryPagingMethodOneOf as d8, type Sorting as d9, type RangeAggregationResult as dA, type NestedAggregationResults as dB, type NestedAggregationResultsResultOneOf as dC, type ValueResults as dD, type RangeResults as dE, type AggregationResultsScalarResult as dF, type NestedValueAggregationResult as dG, type ValueResult as dH, type RangeResult as dI, type ScalarResult as dJ, type NestedResultValue as dK, type NestedResultValueResultOneOf as dL, type Results as dM, type DateHistogramResult as dN, type GroupByValueResults as dO, type DateHistogramResults as dP, type NestedResults as dQ, type AggregationResults as dR, type AggregationResultsResultOneOf as dS, type DeprecatedSearchCategoriesWithOffsetRequest as dT, type OffsetSearch as dU, type OffsetSearchPagingMethodOneOf as dV, type Paging as dW, type DeprecatedSearchCategoriesWithOffsetResponse as dX, type PagingMetadata as dY, type CountCategoriesRequest as dZ, type MoveCategoryRequest as d_, type CursorPaging as da, type QueryCategoriesResponse as db, type CursorPagingMetadata as dc, type Cursors as dd, type ListCompactCategoriesByIdsRequest as de, type ListCompactCategoriesByIdsResponse as df, type CompactCategory as dg, type SearchCategoriesRequest as dh, type CursorSearch as di, type CursorSearchPagingMethodOneOf as dj, type Aggregation as dk, type AggregationKindOneOf as dl, type RangeBucket as dm, type IncludeMissingValuesOptions as dn, type ValueAggregation as dp, type ValueAggregationOptionsOneOf as dq, type RangeAggregation as dr, type ScalarAggregation as ds, type DateHistogramAggregation as dt, type NestedAggregationItem as du, type NestedAggregationItemKindOneOf as dv, type NestedAggregation as dw, type SearchDetails as dx, type AggregationData as dy, type ValueAggregationResult as dz, type UpdateCategoryApplicationErrors as e, type DividerDataAlignmentWithLiterals as e$, type BulkCategoriesResult as e0, type ItemMetadata as e1, type ApplicationError as e2, type BulkActionMetadata as e3, type UpdateCategoryVisibilityRequest as e4, type BulkShowCategoriesRequest as e5, type BulkDeleteCategoriesRequest as e6, type BulkDeleteCategoriesResponse as e7, type BulkDeleteCategoriesResponseBulkCategoriesResult as e8, type BulkAddItemsToCategoryRequest as e9, type EntityUpdatedEvent as eA, type EntityDeletedEvent as eB, type ActionEvent as eC, type Empty as eD, type MessageEnvelope as eE, type IdentificationData as eF, type IdentificationDataIdOneOf as eG, type AccountInfo as eH, type BaseEventMetadata as eI, type EventMetadata as eJ, type AccountInfoMetadata as eK, type CategoriesQueryResult as eL, type CategoryQuerySpec as eM, type CategorySearchSpec as eN, type ListItemsInCategoryOptionsPagingMethodOneOf as eO, type BulkSetItemCategoriesOptions as eP, QueryBuilder as eQ, Filter as eR, Sort as eS, type NodeTypeWithLiterals as eT, type WidthTypeWithLiterals as eU, type PluginContainerDataAlignmentWithLiterals as eV, type ButtonDataTypeWithLiterals as eW, type TargetWithLiterals as eX, type TextAlignmentWithLiterals as eY, type LineStyleWithLiterals as eZ, type WidthWithLiterals as e_, type BulkItemsToCategoryResult as ea, type ItemReferenceMetadata as eb, type BulkAddItemToCategoriesRequest as ec, type BulkItemToCategoriesResult as ed, type BulkRemoveItemsFromCategoryRequest as ee, type BulkRemoveItemFromCategoriesRequest as ef, type ListItemsInCategoryRequest as eg, type ListItemsInCategoryRequestPagingMethodOneOf as eh, type PagingMetadataV2 as ei, type ListCategoriesForItemRequest as ej, type ListCategoriesForItemsRequest as ek, type MapItemToCategories as el, type ListTreesRequest as em, type MoveItemInCategoryRequest as en, type MoveItemInCategoryResponse as eo, type SetArrangedItemsRequest as ep, type GetArrangedItemsRequest as eq, type BulkSetItemCategoriesRequest as er, type BulkSetItemCategoriesResponse as es, type GetCategoriesTreeRequest as et, type GetCategoriesTreeResponse as eu, type CategoryTreeNode as ev, type DomainEvent as ew, type DomainEventBodyOneOf as ex, type EntityCreatedEvent as ey, type RestoreInfo as ez, type CategorySearch as f, moveCategory as f$, type ViewModeWithLiterals as f0, type LayoutTypeWithLiterals as f1, type OrientationWithLiterals as f2, type CropWithLiterals as f3, type ThumbnailsAlignmentWithLiterals as f4, type GIFTypeWithLiterals as f5, type SourceWithLiterals as f6, type StylesPositionWithLiterals as f7, type MapTypeWithLiterals as f8, type ViewRoleWithLiterals as f9, type SortTypeWithLiterals as fA, type SortDirectionWithLiterals as fB, type MissingValuesWithLiterals as fC, type ScalarTypeWithLiterals as fD, type NestedAggregationTypeWithLiterals as fE, type IntervalWithLiterals as fF, type AggregationTypeWithLiterals as fG, type ModeWithLiterals as fH, type PositionWithLiterals as fI, type MoveItemInCategoryRequestPositionWithLiterals as fJ, type WebhookIdentityTypeWithLiterals as fK, type BulkSetItemCategoriesApplicationErrors as fL, type CommonQueryWithEntityContext as fM, type CommonSearchWithEntityContext as fN, onCategoryMoved as fO, onCategoryCreated as fP, onCategoryDeleted as fQ, onCategoryItemAddedToCategory as fR, onCategoryItemRemovedFromCategory as fS, onCategoryItemsArrangedInCategory as fT, onCategoryUpdated as fU, createCategory as fV, getCategory as fW, updateCategory as fX, deleteCategory as fY, queryCategories as fZ, countCategories as f_, type VoteRoleWithLiterals as fa, type PollLayoutTypeWithLiterals as fb, type PollLayoutDirectionWithLiterals as fc, type BackgroundTypeWithLiterals 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 ScalingWithLiterals as fs, type ImagePositionWithLiterals as ft, type VerticalAlignmentAlignmentWithLiterals as fu, type ResponsivenessBehaviourWithLiterals as fv, type DesignTargetWithLiterals as fw, type SingleEntityOpsRequestedFieldsWithLiterals as fx, type SortOrderWithLiterals as fy, type RequestedFieldsWithLiterals as fz, type SearchCategoriesResponse as g, bulkUpdateCategories as g0, updateCategoryVisibility as g1, bulkShowCategories as g2, bulkAddItemsToCategory as g3, bulkAddItemToCategories as g4, bulkRemoveItemsFromCategory as g5, bulkRemoveItemFromCategories as g6, listItemsInCategory as g7, listCategoriesForItem as g8, listCategoriesForItems as g9, listTrees as ga, setArrangedItems as gb, getArrangedItems as gc, 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-B-eQn9IE.js';
|
|
3
|
+
export { eH as AccountInfo, eK as AccountInfoMetadata, eC as ActionEvent, dk as Aggregation, dy as AggregationData, dl as AggregationKindOneOf, dR as AggregationResults, dS as AggregationResultsResultOneOf, dF as AggregationResultsScalarResult, aX as AggregationType, fG as AggregationTypeWithLiterals, aC as Alignment, fl as AlignmentWithLiterals, c6 as AnchorData, cO as App, cd as AppEmbedData, ce as AppEmbedDataAppDataOneOf, aE as AppType, fn as AppTypeWithLiterals, e2 as ApplicationError, ay as AspectRatio, fh as AspectRatioWithLiterals, cy as AudioData, bY as Background, bZ as BackgroundBackgroundOneOf, cE as BackgroundImage, au as BackgroundType, fd as BackgroundTypeWithLiterals, eI as BaseEventMetadata, cB as BlockquoteData, cf as BookingData, bc as Border, cv as BorderColors, cw as BorderWidths, b1 as Breadcrumb, b0 as BreadcrumbsInfo, e3 as BulkActionMetadata, ec as BulkAddItemToCategoriesRequest, e9 as BulkAddItemsToCategoryRequest, e0 as BulkCategoriesResult, e6 as BulkDeleteCategoriesRequest, e7 as BulkDeleteCategoriesResponse, e8 as BulkDeleteCategoriesResponseBulkCategoriesResult, ed as BulkItemToCategoriesResult, ea as BulkItemsToCategoryResult, ef as BulkRemoveItemFromCategoriesRequest, ee as BulkRemoveItemsFromCategoryRequest, fL as BulkSetItemCategoriesApplicationErrors, eP as BulkSetItemCategoriesOptions, er as BulkSetItemCategoriesRequest, es as BulkSetItemCategoriesResponse, e5 as BulkShowCategoriesRequest, d$ as BulkUpdateCategoriesRequest, cA as BulletedListData, bb as ButtonData, ab as ButtonDataType, eW as ButtonDataTypeWithLiterals, ch as ButtonStyles, cC as CaptionData, ck as CardStyles, eL as CategoriesQueryResult, cT as CategoryMoved, eM as CategoryQuerySpec, eN as CategorySearchSpec, ev as CategoryTreeNode, cu as CellStyle, bn as CodeBlockData, cq as CollapsibleListData, c7 as ColorData, bd as Colors, fM as CommonQueryWithEntityContext, fN as CommonSearchWithEntityContext, dg as CompactCategory, dZ as CountCategoriesRequest, cZ as CreateCategoryRequest, c_ as CreateCategoryResponse, ak as Crop, f3 as CropWithLiterals, da as CursorPaging, dc as CursorPagingMetadata, d7 as CursorQuery, d8 as CursorQueryPagingMethodOneOf, di as CursorSearch, dj as CursorSearchPagingMethodOneOf, dd as Cursors, cS as CustomTag, dt as DateHistogramAggregation, dN as DateHistogramResult, dP as DateHistogramResults, c4 as Decoration, c5 as DecorationDataOneOf, av as DecorationType, fe as DecorationTypeWithLiterals, d4 as DeleteCategoryRequest, d5 as DeleteCategoryResponse, dT as DeprecatedSearchCategoriesWithOffsetRequest, dX as DeprecatedSearchCategoriesWithOffsetResponse, c2 as Design, aN as DesignTarget, fw as DesignTargetWithLiterals, cs as Dimensions, aG as Direction, fp as DirectionWithLiterals, bp as DividerData, ag as DividerDataAlignment, e$ as DividerDataAlignmentWithLiterals, cJ as DocumentStyle, ew as DomainEvent, ex as DomainEventBodyOneOf, c$ as DuplicateHandleErrorData, co as EmbedData, eD as Empty, ey as EntityCreatedEvent, eB as EntityDeletedEvent, eA as EntityUpdatedEvent, cg as EventData, eJ as EventMetadata, cL as ExtendedFields, cR as File, bq as FileData, br as FileSource, bs as FileSourceDataOneOf, eR as Filter, cc as FontFamilyData, ca as FontSizeData, aw as FontType, ff as FontTypeWithLiterals, bF as GIF, bE as GIFData, am as GIFType, f5 as GIFTypeWithLiterals, bu as GalleryData, bA as GalleryOptions, bB as GalleryOptionsLayout, eq as GetArrangedItemsRequest, et as GetCategoriesTreeRequest, eu as GetCategoriesTreeResponse, d0 as GetCategoryRequest, d1 as GetCategoryResponse, bX as Gradient, dO as GroupByValueResults, bH as HTMLData, bI as HTMLDataDataOneOf, bG as HeadingData, bi as Height, eF as IdentificationData, eG as IdentificationDataIdOneOf, bw as Image, bJ as ImageData, bL as ImageDataStyles, aK as ImagePosition, ft as ImagePositionWithLiterals, ci as ImageStyles, ax as ImageStylesPosition, fg as ImageStylesPositionWithLiterals, dn as IncludeMissingValuesOptions, aF as InitialExpandedItems, fo as InitialExpandedItemsWithLiterals, aW as Interval, fF as IntervalWithLiterals, cM as InvalidateCache, cN as InvalidateCacheGetByOneOf, by as Item, cU as ItemAddedToCategory, bz as ItemDataOneOf, e1 as ItemMetadata, eb as ItemReferenceMetadata, cW as ItemRemovedFromCategory, bC as ItemStyle, cV as ItemsAddedToCategory, cY as ItemsArrangedInCategory, cX as ItemsRemovedFromCategory, b4 as Keyword, aD as Layout, cF as LayoutCellData, cD as LayoutData, ai as LayoutType, f1 as LayoutTypeWithLiterals, fm as LayoutWithLiterals, ae as LineStyle, eZ as LineStyleWithLiterals, bk as Link, c8 as LinkData, bl as LinkDataOneOf, bM as LinkPreviewData, bN as LinkPreviewDataStyles, ej as ListCategoriesForItemRequest, ek as ListCategoriesForItemsRequest, de as ListCompactCategoriesByIdsRequest, df as ListCompactCategoriesByIdsResponse, eO as ListItemsInCategoryOptionsPagingMethodOneOf, eg as ListItemsInCategoryRequest, eh as ListItemsInCategoryRequestPagingMethodOneOf, em as ListTreesRequest, cx as ListValue, bO as MapData, el as MapItemToCategories, bP as MapSettings, ap as MapType, f8 as MapTypeWithLiterals, bv as Media, c9 as MentionData, eE as MessageEnvelope, cI as Metadata, aT as MissingValues, fC as MissingValuesWithLiterals, aY as Mode, fH as ModeWithLiterals, d_ as MoveCategoryRequest, en as MoveItemInCategoryRequest, a_ as MoveItemInCategoryRequestPosition, fJ as MoveItemInCategoryRequestPositionWithLiterals, eo as MoveItemInCategoryResponse, dw as NestedAggregation, du as NestedAggregationItem, dv as NestedAggregationItemKindOneOf, dB as NestedAggregationResults, dC as NestedAggregationResultsResultOneOf, aV as NestedAggregationType, fE as NestedAggregationTypeWithLiterals, dK as NestedResultValue, dL as NestedResultValueResultOneOf, dQ as NestedResults, dG as NestedValueAggregationResult, b8 as Node, b9 as NodeDataOneOf, ba as NodeStyle, a8 as NodeType, eT as NodeTypeWithLiterals, aI as NullValue, fr as NullValueWithLiterals, cp as Oembed, dU as OffsetSearch, dV as OffsetSearchPagingMethodOneOf, bT as Option, b$ as OptionDesign, bW as OptionLayout, cz as OrderedListData, aj as Orientation, f2 as OrientationWithLiterals, bt as PDFSettings, cP as Page, dW as Paging, dY as PagingMetadata, ei as PagingMetadataV2, bQ as ParagraphData, b2 as ParentCategory, bS as Permissions, aA as Placement, fj as PlacementWithLiterals, cn as PlaybackOptions, be as PluginContainerData, aa as PluginContainerDataAlignment, eV as PluginContainerDataAlignmentWithLiterals, bf as PluginContainerDataWidth, bg as PluginContainerDataWidthDataOneOf, c0 as Poll, bR as PollData, c1 as PollDataLayout, b_ as PollDesign, bV as PollLayout, at as PollLayoutDirection, fc as PollLayoutDirectionWithLiterals, as as PollLayoutType, fb as PollLayoutTypeWithLiterals, bU as PollSettings, aZ as Position, fI as PositionWithLiterals, cl as PricingData, eQ as QueryBuilder, d6 as QueryCategoriesRequest, db as QueryCategoriesResponse, dr as RangeAggregation, dA as RangeAggregationResult, dm as RangeBucket, dI as RangeResult, dE as RangeResults, bm as Rel, aQ as RequestedFields, fz as RequestedFieldsWithLiterals, az as Resizing, fi as ResizingWithLiterals, aM as ResponsivenessBehaviour, fv as ResponsivenessBehaviourWithLiterals, ez as RestoreInfo, dM as Results, cj as RibbonStyles, b7 as RichContent, ds as ScalarAggregation, dJ as ScalarResult, aU as ScalarType, fD as ScalarTypeWithLiterals, aJ as Scaling, fs as ScalingWithLiterals, dh as SearchCategoriesRequest, dx as SearchDetails, b3 as SeoSchema, ep as SetArrangedItemsRequest, b6 as Settings, cG as ShapeData, cH as ShapeDataStyles, aO as SingleEntityOpsRequestedFields, fx as SingleEntityOpsRequestedFieldsWithLiterals, eS as Sort, aS as SortDirection, fB as SortDirectionWithLiterals, aP as SortOrder, fy as SortOrderWithLiterals, aR as SortType, fA as SortTypeWithLiterals, d9 as Sorting, an as Source, f6 as SourceWithLiterals, bh as Spoiler, cb as SpoilerData, bj as Styles, bK as StylesBorder, ao as StylesPosition, f7 as StylesPositionWithLiterals, ct as TableCellData, cr as TableData, b5 as Tag, ac as Target, eX as TargetWithLiterals, ad as TextAlignment, eY as TextAlignmentWithLiterals, c3 as TextData, cK as TextNodeStyle, bo as TextStyle, bD as Thumbnails, al as ThumbnailsAlignment, f4 as ThumbnailsAlignmentWithLiterals, aB as Type, fk as TypeWithLiterals, cQ as URI, d2 as UpdateCategoryRequest, d3 as UpdateCategoryResponse, e4 as UpdateCategoryVisibilityRequest, dp as ValueAggregation, dq as ValueAggregationOptionsOneOf, dz as ValueAggregationResult, dH as ValueResult, dD as ValueResults, aH as VerticalAlignment, aL as VerticalAlignmentAlignment, fu as VerticalAlignmentAlignmentWithLiterals, fq as VerticalAlignmentWithLiterals, bx as Video, cm as VideoData, ah as ViewMode, f0 as ViewModeWithLiterals, aq as ViewRole, f9 as ViewRoleWithLiterals, ar as VoteRole, fa as VoteRoleWithLiterals, a$ as WebhookIdentityType, fK as WebhookIdentityTypeWithLiterals, af as Width, a9 as WidthType, eU as WidthTypeWithLiterals, e_ as WidthWithLiterals } from './categories-v1-category-categories.universal-B-eQn9IE.js';
|
|
4
4
|
|
|
5
5
|
declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
|
|
6
6
|
interface CreateCategorySignature {
|
package/build/cjs/index.js
CHANGED
|
@@ -31,6 +31,7 @@ __export(index_exports, {
|
|
|
31
31
|
DesignTarget: () => DesignTarget,
|
|
32
32
|
Direction: () => Direction,
|
|
33
33
|
DividerDataAlignment: () => DividerDataAlignment,
|
|
34
|
+
Filter: () => Filter,
|
|
34
35
|
FontType: () => FontType,
|
|
35
36
|
GIFType: () => GIFType,
|
|
36
37
|
ImagePosition: () => ImagePosition,
|
|
@@ -53,12 +54,14 @@ __export(index_exports, {
|
|
|
53
54
|
PollLayoutDirection: () => PollLayoutDirection,
|
|
54
55
|
PollLayoutType: () => PollLayoutType,
|
|
55
56
|
Position: () => Position,
|
|
57
|
+
QueryBuilder: () => QueryBuilder,
|
|
56
58
|
RequestedFields: () => RequestedFields,
|
|
57
59
|
Resizing: () => Resizing,
|
|
58
60
|
ResponsivenessBehaviour: () => ResponsivenessBehaviour,
|
|
59
61
|
ScalarType: () => ScalarType,
|
|
60
62
|
Scaling: () => Scaling,
|
|
61
63
|
SingleEntityOpsRequestedFields: () => SingleEntityOpsRequestedFields,
|
|
64
|
+
Sort: () => Sort,
|
|
62
65
|
SortDirection: () => SortDirection,
|
|
63
66
|
SortOrder: () => SortOrder,
|
|
64
67
|
SortType: () => SortType,
|
|
@@ -252,6 +255,9 @@ function createCategory(payload) {
|
|
|
252
255
|
},
|
|
253
256
|
{
|
|
254
257
|
path: "category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
path: "category.richContentDescription.nodes.shapeData.shape.duration"
|
|
255
261
|
}
|
|
256
262
|
]
|
|
257
263
|
}
|
|
@@ -338,6 +344,9 @@ function createCategory(payload) {
|
|
|
338
344
|
},
|
|
339
345
|
{
|
|
340
346
|
path: "category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
path: "category.richContentDescription.nodes.shapeData.shape.duration"
|
|
341
350
|
}
|
|
342
351
|
]
|
|
343
352
|
}
|
|
@@ -431,6 +440,9 @@ function getCategory(payload) {
|
|
|
431
440
|
},
|
|
432
441
|
{
|
|
433
442
|
path: "category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
path: "category.richContentDescription.nodes.shapeData.shape.duration"
|
|
434
446
|
}
|
|
435
447
|
]
|
|
436
448
|
}
|
|
@@ -510,6 +522,9 @@ function updateCategory(payload) {
|
|
|
510
522
|
},
|
|
511
523
|
{
|
|
512
524
|
path: "category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
path: "category.richContentDescription.nodes.shapeData.shape.duration"
|
|
513
528
|
}
|
|
514
529
|
]
|
|
515
530
|
}
|
|
@@ -596,6 +611,9 @@ function updateCategory(payload) {
|
|
|
596
611
|
},
|
|
597
612
|
{
|
|
598
613
|
path: "category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
path: "category.richContentDescription.nodes.shapeData.shape.duration"
|
|
599
617
|
}
|
|
600
618
|
]
|
|
601
619
|
}
|
|
@@ -710,6 +728,9 @@ function queryCategories(payload) {
|
|
|
710
728
|
},
|
|
711
729
|
{
|
|
712
730
|
path: "categories.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
path: "categories.richContentDescription.nodes.shapeData.shape.duration"
|
|
713
734
|
}
|
|
714
735
|
]
|
|
715
736
|
}
|
|
@@ -819,6 +840,9 @@ function searchCategories(payload) {
|
|
|
819
840
|
{
|
|
820
841
|
path: "categories.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
821
842
|
},
|
|
843
|
+
{
|
|
844
|
+
path: "categories.richContentDescription.nodes.shapeData.shape.duration"
|
|
845
|
+
},
|
|
822
846
|
{ path: "aggregationData.results.ranges.results.from" },
|
|
823
847
|
{ path: "aggregationData.results.ranges.results.to" },
|
|
824
848
|
{
|
|
@@ -964,6 +988,9 @@ function bulkUpdateCategories(payload) {
|
|
|
964
988
|
},
|
|
965
989
|
{
|
|
966
990
|
path: "categories.category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
path: "categories.category.richContentDescription.nodes.shapeData.shape.duration"
|
|
967
994
|
}
|
|
968
995
|
]
|
|
969
996
|
}
|
|
@@ -1050,6 +1077,9 @@ function bulkUpdateCategories(payload) {
|
|
|
1050
1077
|
},
|
|
1051
1078
|
{
|
|
1052
1079
|
path: "results.category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
path: "results.category.richContentDescription.nodes.shapeData.shape.duration"
|
|
1053
1083
|
}
|
|
1054
1084
|
]
|
|
1055
1085
|
}
|
|
@@ -1143,6 +1173,9 @@ function updateCategoryVisibility(payload) {
|
|
|
1143
1173
|
},
|
|
1144
1174
|
{
|
|
1145
1175
|
path: "category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
1176
|
+
},
|
|
1177
|
+
{
|
|
1178
|
+
path: "category.richContentDescription.nodes.shapeData.shape.duration"
|
|
1146
1179
|
}
|
|
1147
1180
|
]
|
|
1148
1181
|
}
|
|
@@ -1236,6 +1269,9 @@ function bulkShowCategories(payload) {
|
|
|
1236
1269
|
},
|
|
1237
1270
|
{
|
|
1238
1271
|
path: "results.category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
1272
|
+
},
|
|
1273
|
+
{
|
|
1274
|
+
path: "results.category.richContentDescription.nodes.shapeData.shape.duration"
|
|
1239
1275
|
}
|
|
1240
1276
|
]
|
|
1241
1277
|
}
|
|
@@ -1514,6 +1550,7 @@ function bulkSetItemCategories(payload) {
|
|
|
1514
1550
|
var import_image = require("@wix/sdk-runtime/transformations/image");
|
|
1515
1551
|
var import_image2 = require("@wix/sdk-runtime/transformations/image");
|
|
1516
1552
|
var import_transform_paths2 = require("@wix/sdk-runtime/transformations/transform-paths");
|
|
1553
|
+
var import_query_builder_utils = require("@wix/sdk-runtime/query-builder-utils");
|
|
1517
1554
|
var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
1518
1555
|
NodeType2["PARAGRAPH"] = "PARAGRAPH";
|
|
1519
1556
|
NodeType2["TEXT"] = "TEXT";
|
|
@@ -1548,6 +1585,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
1548
1585
|
NodeType2["CAPTION"] = "CAPTION";
|
|
1549
1586
|
NodeType2["LAYOUT"] = "LAYOUT";
|
|
1550
1587
|
NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
|
|
1588
|
+
NodeType2["SHAPE"] = "SHAPE";
|
|
1551
1589
|
return NodeType2;
|
|
1552
1590
|
})(NodeType || {});
|
|
1553
1591
|
var WidthType = /* @__PURE__ */ ((WidthType2) => {
|
|
@@ -2160,6 +2198,7 @@ async function typedQueryCategories(query, options) {
|
|
|
2160
2198
|
throw transformedError;
|
|
2161
2199
|
}
|
|
2162
2200
|
}
|
|
2201
|
+
var { QueryBuilder, Filter, Sort } = (0, import_query_builder_utils.createQueryUtils)();
|
|
2163
2202
|
async function searchCategories2(search, options) {
|
|
2164
2203
|
const { httpClient, sideEffects } = arguments[2];
|
|
2165
2204
|
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)(
|
|
@@ -3042,6 +3081,9 @@ var onCategoryCreated = (0, import_sdk_types.EventDefinition)(
|
|
|
3042
3081
|
},
|
|
3043
3082
|
{
|
|
3044
3083
|
path: "entity.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
3084
|
+
},
|
|
3085
|
+
{
|
|
3086
|
+
path: "entity.richContentDescription.nodes.shapeData.shape.duration"
|
|
3045
3087
|
}
|
|
3046
3088
|
]
|
|
3047
3089
|
}
|
|
@@ -3124,6 +3166,9 @@ var onCategoryDeleted = (0, import_sdk_types.EventDefinition)(
|
|
|
3124
3166
|
},
|
|
3125
3167
|
{
|
|
3126
3168
|
path: "undefined.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
3169
|
+
},
|
|
3170
|
+
{
|
|
3171
|
+
path: "undefined.richContentDescription.nodes.shapeData.shape.duration"
|
|
3127
3172
|
}
|
|
3128
3173
|
]
|
|
3129
3174
|
}
|
|
@@ -3247,6 +3292,9 @@ var onCategoryUpdated = (0, import_sdk_types.EventDefinition)(
|
|
|
3247
3292
|
{
|
|
3248
3293
|
path: "entity.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
3249
3294
|
},
|
|
3295
|
+
{
|
|
3296
|
+
path: "entity.richContentDescription.nodes.shapeData.shape.duration"
|
|
3297
|
+
},
|
|
3250
3298
|
{
|
|
3251
3299
|
path: "modifiedFields.richContentDescription.nodes.galleryData.items.image.media.duration"
|
|
3252
3300
|
},
|
|
@@ -3297,6 +3345,9 @@ var onCategoryUpdated = (0, import_sdk_types.EventDefinition)(
|
|
|
3297
3345
|
},
|
|
3298
3346
|
{
|
|
3299
3347
|
path: "modifiedFields.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
3348
|
+
},
|
|
3349
|
+
{
|
|
3350
|
+
path: "modifiedFields.richContentDescription.nodes.shapeData.shape.duration"
|
|
3300
3351
|
}
|
|
3301
3352
|
]
|
|
3302
3353
|
}
|
|
@@ -3367,6 +3418,7 @@ var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(
|
|
|
3367
3418
|
DesignTarget,
|
|
3368
3419
|
Direction,
|
|
3369
3420
|
DividerDataAlignment,
|
|
3421
|
+
Filter,
|
|
3370
3422
|
FontType,
|
|
3371
3423
|
GIFType,
|
|
3372
3424
|
ImagePosition,
|
|
@@ -3389,12 +3441,14 @@ var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(
|
|
|
3389
3441
|
PollLayoutDirection,
|
|
3390
3442
|
PollLayoutType,
|
|
3391
3443
|
Position,
|
|
3444
|
+
QueryBuilder,
|
|
3392
3445
|
RequestedFields,
|
|
3393
3446
|
Resizing,
|
|
3394
3447
|
ResponsivenessBehaviour,
|
|
3395
3448
|
ScalarType,
|
|
3396
3449
|
Scaling,
|
|
3397
3450
|
SingleEntityOpsRequestedFields,
|
|
3451
|
+
Sort,
|
|
3398
3452
|
SortDirection,
|
|
3399
3453
|
SortOrder,
|
|
3400
3454
|
SortType,
|