@wix/auto_sdk_categories_categories 1.0.122 → 1.0.124
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/{internal/cjs/categories-v1-category-categories.universal-DpGXPwLu.d.ts → cjs/categories-v1-category-categories.universal-D0UeT_GT.d.ts} +78 -56
- package/build/cjs/index.d.ts +5 -3
- package/build/cjs/index.js +609 -5
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +465 -5
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +73 -36
- package/build/cjs/meta.js +465 -5
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.js +24 -24
- package/build/cjs/schemas.js.map +1 -1
- package/build/{internal/es/categories-v1-category-categories.universal-DpGXPwLu.d.mts → es/categories-v1-category-categories.universal-D0UeT_GT.d.mts} +78 -56
- package/build/es/index.d.mts +5 -3
- package/build/es/index.mjs +609 -5
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +465 -5
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +73 -36
- package/build/es/meta.mjs +465 -5
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.mjs +24 -24
- package/build/es/schemas.mjs.map +1 -1
- package/build/{cjs/categories-v1-category-categories.universal-B8K4dTVY.d.ts → internal/cjs/categories-v1-category-categories.universal-f_-SZw_a.d.ts} +96 -38
- package/build/internal/cjs/index.d.ts +5 -3
- package/build/internal/cjs/index.js +609 -5
- 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 +465 -5
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +73 -36
- package/build/internal/cjs/meta.js +465 -5
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.js +24 -24
- package/build/internal/cjs/schemas.js.map +1 -1
- package/build/{es/categories-v1-category-categories.universal-B8K4dTVY.d.mts → internal/es/categories-v1-category-categories.universal-f_-SZw_a.d.mts} +96 -38
- package/build/internal/es/index.d.mts +5 -3
- package/build/internal/es/index.mjs +609 -5
- 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 +465 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +73 -36
- package/build/internal/es/meta.mjs +465 -5
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.mjs +24 -24
- package/build/internal/es/schemas.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -87,10 +87,11 @@ interface Category {
|
|
|
87
87
|
*/
|
|
88
88
|
parentCategory?: ParentCategory;
|
|
89
89
|
/**
|
|
90
|
-
* Category slug.
|
|
90
|
+
* Category slug. A URL-friendly identifier used in the category page address.
|
|
91
91
|
*
|
|
92
92
|
* If not provided, the slug is autogenerated based on the category name.
|
|
93
|
-
* @
|
|
93
|
+
* @minLength 2
|
|
94
|
+
* @maxLength 300
|
|
94
95
|
*/
|
|
95
96
|
slug?: string | null;
|
|
96
97
|
/** Custom SEO data for the category. */
|
|
@@ -1115,6 +1116,8 @@ interface ImageData {
|
|
|
1115
1116
|
decorative?: boolean | null;
|
|
1116
1117
|
/** Styling for the image. */
|
|
1117
1118
|
styles?: ImageDataStyles;
|
|
1119
|
+
/** Non-destructive crop rectangle, expressed as fractions (0-1) of the original image. When omitted, the full image is shown. */
|
|
1120
|
+
crop?: ImageDataCrop;
|
|
1118
1121
|
}
|
|
1119
1122
|
interface StylesBorder {
|
|
1120
1123
|
/** Border width in pixels. */
|
|
@@ -1131,6 +1134,16 @@ interface ImageDataStyles {
|
|
|
1131
1134
|
/** Border attributes. */
|
|
1132
1135
|
border?: StylesBorder;
|
|
1133
1136
|
}
|
|
1137
|
+
interface ImageDataCrop {
|
|
1138
|
+
/** Left edge of the crop, as a fraction (0-1) of the original image width. */
|
|
1139
|
+
x?: number | null;
|
|
1140
|
+
/** Top edge of the crop, as a fraction (0-1) of the original image height. */
|
|
1141
|
+
y?: number | null;
|
|
1142
|
+
/** Visible width of the crop, as a fraction (0-1) of the original image width. */
|
|
1143
|
+
width?: number | null;
|
|
1144
|
+
/** Visible height of the crop, as a fraction (0-1) of the original image height. */
|
|
1145
|
+
height?: number | null;
|
|
1146
|
+
}
|
|
1134
1147
|
interface LinkPreviewData {
|
|
1135
1148
|
/** Styling for the link preview's container. */
|
|
1136
1149
|
containerData?: PluginContainerData;
|
|
@@ -2168,6 +2181,27 @@ declare enum ImagePosition {
|
|
|
2168
2181
|
}
|
|
2169
2182
|
/** @enumType */
|
|
2170
2183
|
type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
2184
|
+
/** Background styling (color or gradient) */
|
|
2185
|
+
interface LayoutDataBackground {
|
|
2186
|
+
/** Background type. */
|
|
2187
|
+
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2188
|
+
/**
|
|
2189
|
+
* Background color as a hexadecimal value.
|
|
2190
|
+
* @maxLength 19
|
|
2191
|
+
*/
|
|
2192
|
+
color?: string | null;
|
|
2193
|
+
/** Gradient configuration. */
|
|
2194
|
+
gradient?: Gradient;
|
|
2195
|
+
}
|
|
2196
|
+
/** Background type */
|
|
2197
|
+
declare enum LayoutDataBackgroundType {
|
|
2198
|
+
/** Solid color background */
|
|
2199
|
+
COLOR = "COLOR",
|
|
2200
|
+
/** Gradient background */
|
|
2201
|
+
GRADIENT = "GRADIENT"
|
|
2202
|
+
}
|
|
2203
|
+
/** @enumType */
|
|
2204
|
+
type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2171
2205
|
declare enum Origin {
|
|
2172
2206
|
/** Banner originated from an image */
|
|
2173
2207
|
IMAGE = "IMAGE",
|
|
@@ -2184,15 +2218,6 @@ declare enum BannerPosition {
|
|
|
2184
2218
|
}
|
|
2185
2219
|
/** @enumType */
|
|
2186
2220
|
type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
|
|
2187
|
-
/** Background type */
|
|
2188
|
-
declare enum LayoutDataBackgroundType {
|
|
2189
|
-
/** Solid color background */
|
|
2190
|
-
COLOR = "COLOR",
|
|
2191
|
-
/** Gradient background */
|
|
2192
|
-
GRADIENT = "GRADIENT"
|
|
2193
|
-
}
|
|
2194
|
-
/** @enumType */
|
|
2195
|
-
type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2196
2221
|
/** Backdrop type */
|
|
2197
2222
|
declare enum BackdropType {
|
|
2198
2223
|
/** Solid color backdrop */
|
|
@@ -2205,12 +2230,19 @@ type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
|
|
|
2205
2230
|
interface LayoutDataBackgroundImage {
|
|
2206
2231
|
/** Background image. */
|
|
2207
2232
|
media?: Media;
|
|
2208
|
-
/**
|
|
2233
|
+
/**
|
|
2234
|
+
* Deprecated: use `overlay` instead. Legacy image opacity (0–100) that dimmed the image to reveal the `background`/`backdrop` color behind it.
|
|
2235
|
+
* @deprecated
|
|
2236
|
+
*/
|
|
2209
2237
|
opacity?: number | null;
|
|
2210
2238
|
/** Background image scaling. */
|
|
2211
2239
|
scaling?: ImageScalingScalingWithLiterals;
|
|
2212
2240
|
/** Position of background. Defaults to `CENTER`. */
|
|
2213
2241
|
position?: ImagePositionWithLiterals;
|
|
2242
|
+
/** Blur radius in pixels applied to the image layer. `0` (default) leaves the image unblurred; blur is independent of any color overlay and the two stack. */
|
|
2243
|
+
blur?: number | null;
|
|
2244
|
+
/** Color or gradient drawn on top of the image. When present, this is the authoritative overlay and `opacity` is ignored. Its presence also marks content as authored under the new overlay model (vs. the legacy `opacity`-based dimming on `background`/`backdrop`). */
|
|
2245
|
+
overlay?: LayoutDataBackground;
|
|
2214
2246
|
}
|
|
2215
2247
|
declare enum VerticalAlignmentAlignment {
|
|
2216
2248
|
/** Top alignment */
|
|
@@ -2244,18 +2276,6 @@ interface Banner {
|
|
|
2244
2276
|
/** Position of the banner */
|
|
2245
2277
|
position?: BannerPositionWithLiterals;
|
|
2246
2278
|
}
|
|
2247
|
-
/** Background styling (color or gradient) */
|
|
2248
|
-
interface LayoutDataBackground {
|
|
2249
|
-
/** Background type. */
|
|
2250
|
-
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2251
|
-
/**
|
|
2252
|
-
* Background color as a hexadecimal value.
|
|
2253
|
-
* @maxLength 19
|
|
2254
|
-
*/
|
|
2255
|
-
color?: string | null;
|
|
2256
|
-
/** Gradient configuration. */
|
|
2257
|
-
gradient?: Gradient;
|
|
2258
|
-
}
|
|
2259
2279
|
/** Backdrop styling (color or gradient) */
|
|
2260
2280
|
interface Backdrop {
|
|
2261
2281
|
/** Backdrop type. */
|
|
@@ -2327,15 +2347,6 @@ declare enum ImagePositionPosition {
|
|
|
2327
2347
|
}
|
|
2328
2348
|
/** @enumType */
|
|
2329
2349
|
type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
2330
|
-
/** Background type */
|
|
2331
|
-
declare enum CardDataBackgroundType {
|
|
2332
|
-
/** Solid color background */
|
|
2333
|
-
COLOR = "COLOR",
|
|
2334
|
-
/** Gradient background */
|
|
2335
|
-
GRADIENT = "GRADIENT"
|
|
2336
|
-
}
|
|
2337
|
-
/** @enumType */
|
|
2338
|
-
type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2339
2350
|
/** Background styling (color or gradient) */
|
|
2340
2351
|
interface CardDataBackground {
|
|
2341
2352
|
/** Background type. */
|
|
@@ -2348,15 +2359,31 @@ interface CardDataBackground {
|
|
|
2348
2359
|
/** Gradient configuration. */
|
|
2349
2360
|
gradient?: Gradient;
|
|
2350
2361
|
}
|
|
2362
|
+
/** Background type */
|
|
2363
|
+
declare enum CardDataBackgroundType {
|
|
2364
|
+
/** Solid color background */
|
|
2365
|
+
COLOR = "COLOR",
|
|
2366
|
+
/** Gradient background */
|
|
2367
|
+
GRADIENT = "GRADIENT"
|
|
2368
|
+
}
|
|
2369
|
+
/** @enumType */
|
|
2370
|
+
type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2351
2371
|
interface BackgroundImage {
|
|
2352
2372
|
/** Background image. */
|
|
2353
2373
|
media?: Media;
|
|
2354
|
-
/**
|
|
2374
|
+
/**
|
|
2375
|
+
* Deprecated: use `overlay` instead. Legacy image opacity (0–100) that dimmed the image to reveal the `background` color behind it.
|
|
2376
|
+
* @deprecated
|
|
2377
|
+
*/
|
|
2355
2378
|
opacity?: number | null;
|
|
2356
2379
|
/** Background image scaling. */
|
|
2357
2380
|
scaling?: ScalingWithLiterals;
|
|
2358
2381
|
/** Position of background. Defaults to `CENTER`. */
|
|
2359
2382
|
position?: ImagePositionPositionWithLiterals;
|
|
2383
|
+
/** Color or gradient drawn on top of the image. When present, this is the authoritative overlay and `opacity` is ignored. Its presence also marks content as authored under the new overlay model (vs. the legacy `opacity`-based dimming on `background`). */
|
|
2384
|
+
overlay?: CardDataBackground;
|
|
2385
|
+
/** Blur radius in pixels applied to the image layer. `0` (default) leaves the image unblurred; blur is independent of any color overlay and the two stack. */
|
|
2386
|
+
blur?: number | null;
|
|
2360
2387
|
}
|
|
2361
2388
|
interface TocData {
|
|
2362
2389
|
/** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
|
|
@@ -4527,6 +4554,8 @@ type CreateCategoryApplicationErrors = {
|
|
|
4527
4554
|
/** @docsIgnore */
|
|
4528
4555
|
type CreateCategoryValidationErrors = {
|
|
4529
4556
|
ruleName?: 'ID_NOT_ALLOWED_IN_REQUEST';
|
|
4557
|
+
} | {
|
|
4558
|
+
ruleName?: 'INVALID_SLUG_FORMAT';
|
|
4530
4559
|
};
|
|
4531
4560
|
/** @docsIgnore */
|
|
4532
4561
|
type UpdateCategoryApplicationErrors = {
|
|
@@ -4539,6 +4568,10 @@ type UpdateCategoryApplicationErrors = {
|
|
|
4539
4568
|
data?: Record<string, any>;
|
|
4540
4569
|
};
|
|
4541
4570
|
/** @docsIgnore */
|
|
4571
|
+
type UpdateCategoryValidationErrors = {
|
|
4572
|
+
ruleName?: 'INVALID_SLUG_FORMAT';
|
|
4573
|
+
};
|
|
4574
|
+
/** @docsIgnore */
|
|
4542
4575
|
type DeleteCategoryApplicationErrors = {
|
|
4543
4576
|
code?: 'MANAGED_CATEGORY_OPERATION_NOT_ALLOWED';
|
|
4544
4577
|
description?: string;
|
|
@@ -4573,6 +4606,10 @@ type BulkUpdateCategoriesApplicationErrors = {
|
|
|
4573
4606
|
data?: Record<string, any>;
|
|
4574
4607
|
};
|
|
4575
4608
|
/** @docsIgnore */
|
|
4609
|
+
type BulkUpdateCategoriesValidationErrors = {
|
|
4610
|
+
ruleName?: 'INVALID_SLUG_FORMAT';
|
|
4611
|
+
};
|
|
4612
|
+
/** @docsIgnore */
|
|
4576
4613
|
type UpdateCategoryVisibilityApplicationErrors = {
|
|
4577
4614
|
code?: 'PARENT_CATEGORY_HIDDEN';
|
|
4578
4615
|
description?: string;
|
|
@@ -5039,6 +5076,7 @@ interface GetCategoryBySlugOptions {
|
|
|
5039
5076
|
*/
|
|
5040
5077
|
declare function updateCategory(_id: string, category: NonNullablePaths<UpdateCategory, `revision`, 2>, options?: NonNullablePaths<UpdateCategoryOptions, `treeReference` | `treeReference.appNamespace`, 3>): Promise<NonNullablePaths<Category, `itemCounter` | `breadcrumbsInfo.breadcrumbs` | `breadcrumbsInfo.breadcrumbs.${number}.categoryId` | `breadcrumbsInfo.breadcrumbs.${number}.categoryName` | `breadcrumbsInfo.breadcrumbs.${number}.categorySlug` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `treeReference.appNamespace`, 6> & {
|
|
5041
5078
|
__applicationErrorsType?: UpdateCategoryApplicationErrors;
|
|
5079
|
+
__validationErrorsType?: UpdateCategoryValidationErrors;
|
|
5042
5080
|
}>;
|
|
5043
5081
|
interface UpdateCategory {
|
|
5044
5082
|
/**
|
|
@@ -5119,10 +5157,11 @@ interface UpdateCategory {
|
|
|
5119
5157
|
*/
|
|
5120
5158
|
parentCategory?: ParentCategory;
|
|
5121
5159
|
/**
|
|
5122
|
-
* Category slug.
|
|
5160
|
+
* Category slug. A URL-friendly identifier used in the category page address.
|
|
5123
5161
|
*
|
|
5124
5162
|
* If not provided, the slug is autogenerated based on the category name.
|
|
5125
|
-
* @
|
|
5163
|
+
* @minLength 2
|
|
5164
|
+
* @maxLength 300
|
|
5126
5165
|
*/
|
|
5127
5166
|
slug?: string | null;
|
|
5128
5167
|
/** Custom SEO data for the category. */
|
|
@@ -5359,7 +5398,7 @@ declare const utils: {
|
|
|
5359
5398
|
query: {
|
|
5360
5399
|
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Category, CategoryQuerySpec, CategoryQuery>;
|
|
5361
5400
|
Filter: _wix_sdk_types.FilterFactory<Category, CategoryQuerySpec>;
|
|
5362
|
-
Sort: _wix_sdk_types.SortFactory<CategoryQuerySpec>;
|
|
5401
|
+
Sort: _wix_sdk_types.SortFactory<CategoryQuerySpec>;
|
|
5363
5402
|
};
|
|
5364
5403
|
search: {
|
|
5365
5404
|
SearchBuilder: () => _wix_sdk_types.SearchBuilder<Category, CategorySearchSpec, CategorySearch>;
|
|
@@ -5626,6 +5665,7 @@ interface MoveCategoryOptions {
|
|
|
5626
5665
|
*/
|
|
5627
5666
|
declare function bulkUpdateCategories(categories: NonNullablePaths<MaskedCategory, `category` | `category._id` | `category.revision`, 3>[], options?: NonNullablePaths<BulkUpdateCategoriesOptions, `treeReference` | `treeReference.appNamespace`, 3>): Promise<NonNullablePaths<BulkUpdateCategoriesResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `results.${number}.category.itemCounter` | `results.${number}.category.treeReference.appNamespace` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6> & {
|
|
5628
5667
|
__applicationErrorsType?: BulkUpdateCategoriesApplicationErrors;
|
|
5668
|
+
__validationErrorsType?: BulkUpdateCategoriesValidationErrors;
|
|
5629
5669
|
}>;
|
|
5630
5670
|
interface BulkUpdateCategoriesOptions {
|
|
5631
5671
|
/** Category tree reference details. */
|
|
@@ -5954,24 +5994,6 @@ interface SetArrangedItemsOptions {
|
|
|
5954
5994
|
* @fqn com.wix.categories.api.v1.CategoriesService.GetArrangedItems
|
|
5955
5995
|
*/
|
|
5956
5996
|
declare function getArrangedItems(categoryId: string, treeReference: NonNullablePaths<TreeReference, `appNamespace`, 2>): Promise<NonNullablePaths<GetArrangedItemsResponse, `items` | `items.${number}.catalogItemId` | `items.${number}.appId`, 4>>;
|
|
5957
|
-
/**
|
|
5958
|
-
* Sets categories of an item by providing a sequence of category IDs.
|
|
5959
|
-
* The item's categories will be completely overridden with the provided list.
|
|
5960
|
-
* @param item - The item to update.
|
|
5961
|
-
* @internal
|
|
5962
|
-
* @documentationMaturity preview
|
|
5963
|
-
* @requiredField item
|
|
5964
|
-
* @requiredField item.appId
|
|
5965
|
-
* @requiredField item.catalogItemId
|
|
5966
|
-
* @requiredField options.treeReference
|
|
5967
|
-
* @requiredField options.treeReference.appNamespace
|
|
5968
|
-
* @permissionId CATEGORIES.ITEM_SET_CATEGORIES
|
|
5969
|
-
* @applicableIdentity APP
|
|
5970
|
-
* @fqn com.wix.categories.api.v1.CategoriesService.BulkSetItemCategories
|
|
5971
|
-
*/
|
|
5972
|
-
declare function bulkSetItemCategories(item: NonNullablePaths<ItemReference, `appId` | `catalogItemId`, 2>, options?: NonNullablePaths<BulkSetItemCategoriesOptions, `treeReference` | `treeReference.appNamespace`, 3>): Promise<NonNullablePaths<BulkSetItemCategoriesResponse, `addResults` | `addResults.${number}.itemMetadata.originalIndex` | `addResults.${number}.itemMetadata.success` | `addResults.${number}.itemMetadata.error.code` | `addResults.${number}.itemMetadata.error.description` | `removeResults` | `removeResults.${number}.itemMetadata.originalIndex` | `removeResults.${number}.itemMetadata.success` | `removeResults.${number}.itemMetadata.error.code` | `removeResults.${number}.itemMetadata.error.description` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6> & {
|
|
5973
|
-
__applicationErrorsType?: BulkSetItemCategoriesApplicationErrors;
|
|
5974
|
-
}>;
|
|
5975
5997
|
interface BulkSetItemCategoriesOptions {
|
|
5976
5998
|
/**
|
|
5977
5999
|
* List of category IDs to set for the item.
|
|
@@ -5983,4 +6005,4 @@ interface BulkSetItemCategoriesOptions {
|
|
|
5983
6005
|
treeReference: TreeReference;
|
|
5984
6006
|
}
|
|
5985
6007
|
|
|
5986
|
-
export { type BulkSetItemCategoriesOptions as $, type BulkAddItemToCategoriesApplicationErrors as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkRemoveItemsFromCategoryOptions as E, type BulkRemoveItemsFromCategoryResponse as F, type GetCategoryOptions as G, type BulkRemoveItemsFromCategoryApplicationErrors as H, type ItemReference as I, type BulkRemoveItemFromCategoriesOptions as J, type BulkRemoveItemFromCategoriesResponse as K, type BulkRemoveItemFromCategoriesApplicationErrors as L, type MoveCategoryOptions as M, type ListItemsInCategoryOptions as N, type ListItemsInCategoryResponse as O, type ListCategoriesForItemOptions as P, type ListCategoriesForItemResponse as Q, type ListCategoriesForItemsOptions as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type ListCategoriesForItemsResponse as V, type ListTreesResponse as W, type SetArrangedItemsOptions as X, type SetArrangedItemsResponse as Y, type SetArrangedItemsApplicationErrors as Z, type GetArrangedItemsResponse as _, type CreateCategoryOptions as a, ImagePositionPosition as a$, type BulkSetItemCategoriesResponse as a0, type BulkSetItemCategoriesApplicationErrors as a1, type CategoryMovedEnvelope as a2, type CategoryCreatedEnvelope as a3, type CategoryDeletedEnvelope as a4, type CategoryItemAddedToCategoryEnvelope as a5, type CategoryItemRemovedFromCategoryEnvelope as a6, type CategoryItemsArrangedInCategoryEnvelope as a7, type CategoryUpdatedEnvelope as a8, type CategoryQuery as a9, PollLayoutDirection as aA, PollDesignBackgroundType as aB, DecorationType as aC, FontType as aD, Variant as aE, ImageStylesPosition as aF, AspectRatio as aG, Resizing as aH, Placement as aI, Type as aJ, Alignment as aK, Layout as aL, AppType as aM, InitialExpandedItems as aN, Direction as aO, VerticalAlignment as aP, NullValue as aQ, ImageScalingScaling as aR, ImagePosition as aS, Origin as aT, BannerPosition as aU, LayoutDataBackgroundType as aV, BackdropType as aW, VerticalAlignmentAlignment as aX, ResponsivenessBehaviour as aY, DesignTarget as aZ, Scaling as a_, type QueryCategoriesOptions as aa, typedQueryCategories as ab, type CategoriesQueryBuilder as ac, NodeType as ad, BackgroundType as ae, GradientType as af, WidthType as ag, PluginContainerDataAlignment as ah, ButtonDataType as ai, Target as aj, TextAlignment as ak, LineStyle as al, Width as am, DividerDataAlignment as an, ViewMode as ao, LayoutType as ap, Orientation as aq, Crop as ar, ThumbnailsAlignment as as, GIFType as at, Source as au, StylesPosition as av, MapType as aw, ViewRole as ax, VoteRole as ay, PollLayoutType as az, type CreateCategoryApplicationErrors as b, type GIF as b$, CardDataBackgroundType as b0, ListStyle as b1, Indentation as b2, SmartBlockDataType as b3, ColumnSize as b4, SingleEntityOpsRequestedFields as b5, SortOrder as b6, RequestedFields as b7, SortType as b8, SortDirection as b9, type PluginContainerData as bA, type PluginContainerDataWidth as bB, type PluginContainerDataWidthDataOneOf as bC, type Spoiler as bD, type Height as bE, type Styles as bF, type Link as bG, type LinkDataOneOf as bH, type Rel as bI, type CodeBlockData as bJ, type TextStyle as bK, type DividerData as bL, type FileData as bM, type FileSource as bN, type FileSourceDataOneOf as bO, type PDFSettings as bP, type GalleryData as bQ, type Media as bR, type Image as bS, type Video as bT, type Item as bU, type ItemDataOneOf as bV, type GalleryOptions as bW, type GalleryOptionsLayout as bX, type ItemStyle as bY, type Thumbnails as bZ, type GIFData as b_, MissingValues as ba, ScalarType as bb, NestedAggregationType as bc, Interval as bd, AggregationType as be, Mode as bf, Position as bg, MoveItemInCategoryRequestPosition as bh, WebhookIdentityType as bi, type BreadcrumbsInfo as bj, type Breadcrumb as bk, type ParentCategory as bl, type SeoSchema as bm, type Keyword as bn, type Tag as bo, type Settings as bp, type RichContent as bq, type Node as br, type NodeDataOneOf as bs, type NodeStyle as bt, type ButtonData as bu, type Gradient as bv, type Stop as bw, type Border as bx, type Colors as by, type Background as bz, type CreateCategoryValidationErrors as c, type LayoutDataBackgroundImage as c$, type HeadingData as c0, type HTMLData as c1, type HTMLDataDataOneOf as c2, type ImageData as c3, type StylesBorder as c4, type ImageDataStyles as c5, type LinkPreviewData as c6, type LinkPreviewDataStyles as c7, type MapData as c8, type MapSettings as c9, type AppEmbedData as cA, type AppEmbedDataAppDataOneOf as cB, type BookingData as cC, type EventData as cD, type ButtonStyles as cE, type ImageStyles as cF, type RibbonStyles as cG, type CardStyles as cH, type PricingData as cI, type VideoData as cJ, type PlaybackOptions as cK, type EmbedData as cL, type Oembed as cM, type CollapsibleListData as cN, type TableData as cO, type Dimensions as cP, type TableCellData as cQ, type CellStyle as cR, type BorderColors as cS, type BorderWidths as cT, type ListValue as cU, type AudioData as cV, type OrderedListData as cW, type BulletedListData as cX, type BlockquoteData as cY, type CaptionData as cZ, type LayoutData as c_, type ParagraphData as ca, type PollData as cb, type Permissions as cc, type Option as cd, type PollSettings as ce, type PollLayout as cf, type OptionLayout as cg, type BackgroundGradient as ch, type PollDesignBackground as ci, type PollDesignBackgroundBackgroundOneOf as cj, type PollDesign as ck, type OptionDesign as cl, type Poll as cm, type PollDataLayout as cn, type Design as co, type TextData as cp, type Decoration as cq, type DecorationDataOneOf as cr, type AnchorData as cs, type ColorData as ct, type LinkData as cu, type MentionData as cv, type FontSizeData as cw, type SpoilerData as cx, type FontFamilyData as cy, type SketchData as cz, type GetCategoryBySlugOptions as d, type ValueAggregationOptionsOneOf as d$, type Banner as d0, type LayoutDataBackground as d1, type Backdrop as d2, type LayoutCellData as d3, type ShapeData as d4, type ShapeDataStyles as d5, type CardData as d6, type CardDataBackground as d7, type BackgroundImage as d8, type TocData as d9, type DuplicateHandleErrorData as dA, type GetCategoryRequest as dB, type GetCategoryResponse as dC, type GetCategoryBySlugRequest as dD, type UpdateCategoryRequest as dE, type UpdateCategoryResponse as dF, type DeleteCategoryRequest as dG, type DeleteCategoryResponse as dH, type QueryCategoriesRequest as dI, type CursorQuery as dJ, type CursorQueryPagingMethodOneOf as dK, type Sorting as dL, type CursorPaging as dM, type QueryCategoriesResponse as dN, type CursorPagingMetadata as dO, type Cursors as dP, type ListCompactCategoriesByIdsRequest as dQ, type ListCompactCategoriesByIdsResponse as dR, type CompactCategory as dS, type SearchCategoriesRequest as dT, type CursorSearch as dU, type CursorSearchPagingMethodOneOf as dV, type Aggregation as dW, type AggregationKindOneOf as dX, type RangeBucket as dY, type IncludeMissingValuesOptions as dZ, type ValueAggregation as d_, type SmartBlockData as da, type SmartBlockCellData as db, type CheckboxListData as dc, type ListItemNodeData as dd, type Metadata as de, type DocumentStyle as df, type TextNodeStyle as dg, type ExtendedFields as dh, type InvalidateCache as di, type InvalidateCacheGetByOneOf as dj, type App as dk, type Page as dl, type URI as dm, type File as dn, type CustomTag as dp, type Pages as dq, type URIs as dr, type CategoryMoved as ds, type ItemAddedToCategory as dt, type ItemsAddedToCategory as du, type ItemRemovedFromCategory as dv, type ItemsRemovedFromCategory as dw, type ItemsArrangedInCategory as dx, type CreateCategoryRequest as dy, type CreateCategoryResponse as dz, type GetCategoryBySlugResponse as e, type GetArrangedItemsRequest as e$, type RangeAggregation as e0, type ScalarAggregation as e1, type DateHistogramAggregation as e2, type NestedAggregationItem as e3, type NestedAggregationItemKindOneOf as e4, type NestedAggregation as e5, type SearchDetails as e6, type AggregationData as e7, type ValueAggregationResult as e8, type RangeAggregationResult as e9, type BulkUpdateCategoriesRequest as eA, type BulkCategoriesResult as eB, type ItemMetadata as eC, type ApplicationError as eD, type BulkActionMetadata as eE, type UpdateCategoryVisibilityRequest as eF, type BulkShowCategoriesRequest as eG, type BulkDeleteCategoriesRequest as eH, type BulkDeleteCategoriesResponse as eI, type BulkDeleteCategoriesResponseBulkCategoriesResult as eJ, type BulkAddItemsToCategoryRequest as eK, type BulkItemsToCategoryResult as eL, type ItemReferenceMetadata as eM, type BulkAddItemToCategoriesRequest as eN, type BulkItemToCategoriesResult as eO, type BulkRemoveItemsFromCategoryRequest as eP, type BulkRemoveItemFromCategoriesRequest as eQ, type ListItemsInCategoryRequest as eR, type ListItemsInCategoryRequestPagingMethodOneOf as eS, type PagingMetadataV2 as eT, type ListCategoriesForItemRequest as eU, type ListCategoriesForItemsRequest as eV, type MapItemToCategories as eW, type ListTreesRequest as eX, type MoveItemInCategoryRequest as eY, type MoveItemInCategoryResponse as eZ, type SetArrangedItemsRequest as e_, type NestedAggregationResults as ea, type NestedAggregationResultsResultOneOf as eb, type ValueResults as ec, type RangeResults as ed, type AggregationResultsScalarResult as ee, type NestedValueAggregationResult as ef, type ValueResult as eg, type RangeResult as eh, type ScalarResult as ei, type NestedResultValue as ej, type NestedResultValueResultOneOf as ek, type Results as el, type DateHistogramResult as em, type GroupByValueResults as en, type DateHistogramResults as eo, type NestedResults as ep, type AggregationResults as eq, type AggregationResultsResultOneOf as er, type DeprecatedSearchCategoriesWithOffsetRequest as es, type OffsetSearch as et, type OffsetSearchPagingMethodOneOf as eu, type Paging as ev, type DeprecatedSearchCategoriesWithOffsetResponse as ew, type PagingMetadata as ex, type CountCategoriesRequest as ey, type MoveCategoryRequest as ez, type UpdateCategoryOptions as f, type TypeWithLiterals as f$, type BulkSetItemCategoriesRequest as f0, type GetCategoriesTreeRequest as f1, type GetCategoriesTreeResponse as f2, type CategoryTreeNode as f3, type DomainEvent as f4, type DomainEventBodyOneOf as f5, type EntityCreatedEvent as f6, type RestoreInfo as f7, type EntityUpdatedEvent as f8, type EntityDeletedEvent as f9, type ButtonDataTypeWithLiterals as fA, type TargetWithLiterals as fB, type TextAlignmentWithLiterals as fC, type LineStyleWithLiterals as fD, type WidthWithLiterals as fE, type DividerDataAlignmentWithLiterals as fF, type ViewModeWithLiterals as fG, type LayoutTypeWithLiterals as fH, type OrientationWithLiterals as fI, type CropWithLiterals as fJ, type ThumbnailsAlignmentWithLiterals as fK, type GIFTypeWithLiterals as fL, type SourceWithLiterals as fM, type StylesPositionWithLiterals as fN, type MapTypeWithLiterals as fO, type ViewRoleWithLiterals as fP, type VoteRoleWithLiterals as fQ, type PollLayoutTypeWithLiterals as fR, type PollLayoutDirectionWithLiterals as fS, type PollDesignBackgroundTypeWithLiterals as fT, type DecorationTypeWithLiterals as fU, type FontTypeWithLiterals as fV, type VariantWithLiterals as fW, type ImageStylesPositionWithLiterals as fX, type AspectRatioWithLiterals as fY, type ResizingWithLiterals as fZ, type PlacementWithLiterals as f_, type ActionEvent as fa, type Empty as fb, type BulkCreateCategoriesForMigrationRequest as fc, type BulkCreateCategoriesForMigrationResponse as fd, type BulkAddItemsToCategoryForMigrationRequest as fe, type BulkAddItemsToCategoryForMigrationResponse as ff, type SetArrangedItemsForMigrationRequest as fg, type SetArrangedItemsForMigrationResponse as fh, type CatalogRollbackRequested as fi, type MessageEnvelope as fj, type IdentificationData as fk, type IdentificationDataIdOneOf as fl, type AccountInfo as fm, type BaseEventMetadata as fn, type EventMetadata as fo, type AccountInfoMetadata as fp, type CategoriesQueryResult as fq, type CategoryQuerySpec as fr, type CategorySearchSpec as fs, type ListItemsInCategoryOptionsPagingMethodOneOf as ft, utils as fu, type NodeTypeWithLiterals as fv, type BackgroundTypeWithLiterals as fw, type GradientTypeWithLiterals as fx, type WidthTypeWithLiterals as fy, type PluginContainerDataAlignmentWithLiterals as fz, type UpdateCategoryApplicationErrors as g, listCategoriesForItems as g$, type AlignmentWithLiterals as g0, type LayoutWithLiterals as g1, type AppTypeWithLiterals as g2, type InitialExpandedItemsWithLiterals as g3, type DirectionWithLiterals as g4, type VerticalAlignmentWithLiterals as g5, type NullValueWithLiterals as g6, type ImageScalingScalingWithLiterals as g7, type ImagePositionWithLiterals as g8, type OriginWithLiterals as g9, type WebhookIdentityTypeWithLiterals as gA, type CommonQueryWithEntityContext as gB, type CommonSearchWithEntityContext as gC, onCategoryMoved as gD, onCategoryCreated as gE, onCategoryDeleted as gF, onCategoryItemAddedToCategory as gG, onCategoryItemRemovedFromCategory as gH, onCategoryItemsArrangedInCategory as gI, onCategoryUpdated as gJ, createCategory as gK, getCategory as gL, getCategoryBySlug as gM, updateCategory as gN, deleteCategory as gO, queryCategories as gP, countCategories as gQ, moveCategory as gR, bulkUpdateCategories as gS, updateCategoryVisibility as gT, bulkShowCategories as gU, bulkAddItemsToCategory as gV, bulkAddItemToCategories as gW, bulkRemoveItemsFromCategory as gX, bulkRemoveItemFromCategories as gY, listItemsInCategory as gZ, listCategoriesForItem as g_, type BannerPositionWithLiterals as ga, type LayoutDataBackgroundTypeWithLiterals as gb, type BackdropTypeWithLiterals as gc, type VerticalAlignmentAlignmentWithLiterals as gd, type ResponsivenessBehaviourWithLiterals as ge, type DesignTargetWithLiterals as gf, type ScalingWithLiterals as gg, type ImagePositionPositionWithLiterals as gh, type CardDataBackgroundTypeWithLiterals as gi, type ListStyleWithLiterals as gj, type IndentationWithLiterals as gk, type SmartBlockDataTypeWithLiterals as gl, type ColumnSizeWithLiterals as gm, type SingleEntityOpsRequestedFieldsWithLiterals as gn, type SortOrderWithLiterals as go, type RequestedFieldsWithLiterals as gp, type SortTypeWithLiterals as gq, type SortDirectionWithLiterals as gr, type MissingValuesWithLiterals as gs, type ScalarTypeWithLiterals as gt, type NestedAggregationTypeWithLiterals as gu, type IntervalWithLiterals as gv, type AggregationTypeWithLiterals as gw, type ModeWithLiterals as gx, type PositionWithLiterals as gy, type MoveItemInCategoryRequestPositionWithLiterals as gz, type CategorySearch as h, listTrees as h0, setArrangedItems as h1, getArrangedItems as h2, bulkSetItemCategories as h3, type SearchCategoriesResponse as i, type CountCategoriesOptions as j, type CountCategoriesResponse as k, type MoveCategoryResponse as l, type MoveCategoryApplicationErrors as m, type MaskedCategory as n, type BulkUpdateCategoriesResponse as o, type BulkUpdateCategoriesApplicationErrors as p, type UpdateCategoryVisibilityOptions as q, type UpdateCategoryVisibilityResponse as r, type UpdateCategoryVisibilityApplicationErrors as s, type BulkShowCategoriesOptions as t, type BulkShowCategoriesResponse as u, type BulkAddItemsToCategoryOptions as v, type BulkAddItemsToCategoryResponse as w, type BulkAddItemsToCategoryApplicationErrors as x, type BulkAddItemToCategoriesOptions as y, type BulkAddItemToCategoriesResponse as z };
|
|
6008
|
+
export { type SetArrangedItemsApplicationErrors as $, type BulkAddItemToCategoriesOptions as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkAddItemToCategoriesResponse as E, type BulkAddItemToCategoriesApplicationErrors as F, type GetCategoryOptions as G, type BulkRemoveItemsFromCategoryOptions as H, type ItemReference as I, type BulkRemoveItemsFromCategoryResponse as J, type BulkRemoveItemsFromCategoryApplicationErrors as K, type BulkRemoveItemFromCategoriesOptions as L, type MoveCategoryOptions as M, type BulkRemoveItemFromCategoriesResponse as N, type BulkRemoveItemFromCategoriesApplicationErrors as O, type ListItemsInCategoryOptions as P, type ListItemsInCategoryResponse as Q, type ListCategoriesForItemOptions as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type ListCategoriesForItemResponse as V, type ListCategoriesForItemsOptions as W, type ListCategoriesForItemsResponse as X, type ListTreesResponse as Y, type SetArrangedItemsOptions as Z, type SetArrangedItemsResponse as _, type CreateCategoryOptions as a, CardDataBackgroundType as a$, type GetArrangedItemsResponse as a0, type CategoryMovedEnvelope as a1, type CategoryCreatedEnvelope as a2, type CategoryDeletedEnvelope as a3, type CategoryItemAddedToCategoryEnvelope as a4, type CategoryItemRemovedFromCategoryEnvelope as a5, type CategoryItemsArrangedInCategoryEnvelope as a6, type CategoryUpdatedEnvelope as a7, type CategoryQuery as a8, type QueryCategoriesOptions as a9, PollDesignBackgroundType as aA, DecorationType as aB, FontType as aC, Variant as aD, ImageStylesPosition as aE, AspectRatio as aF, Resizing as aG, Placement as aH, Type as aI, Alignment as aJ, Layout as aK, AppType as aL, InitialExpandedItems as aM, Direction as aN, VerticalAlignment as aO, NullValue as aP, ImageScalingScaling as aQ, ImagePosition as aR, LayoutDataBackgroundType as aS, Origin as aT, BannerPosition as aU, BackdropType as aV, VerticalAlignmentAlignment as aW, ResponsivenessBehaviour as aX, DesignTarget as aY, Scaling as aZ, ImagePositionPosition as a_, typedQueryCategories as aa, type CategoriesQueryBuilder as ab, NodeType as ac, BackgroundType as ad, GradientType as ae, WidthType as af, PluginContainerDataAlignment as ag, ButtonDataType as ah, Target as ai, TextAlignment as aj, LineStyle as ak, Width as al, DividerDataAlignment as am, ViewMode as an, LayoutType as ao, Orientation as ap, Crop as aq, ThumbnailsAlignment as ar, GIFType as as, Source as at, StylesPosition as au, MapType as av, ViewRole as aw, VoteRole as ax, PollLayoutType as ay, PollLayoutDirection as az, type CreateCategoryApplicationErrors as b, type HeadingData as b$, ListStyle as b0, Indentation as b1, SmartBlockDataType as b2, ColumnSize as b3, SingleEntityOpsRequestedFields as b4, SortOrder as b5, RequestedFields as b6, SortType as b7, SortDirection as b8, MissingValues as b9, type PluginContainerDataWidth as bA, type PluginContainerDataWidthDataOneOf as bB, type Spoiler as bC, type Height as bD, type Styles as bE, type Link as bF, type LinkDataOneOf as bG, type Rel as bH, type CodeBlockData as bI, type TextStyle as bJ, type DividerData as bK, type FileData as bL, type FileSource as bM, type FileSourceDataOneOf as bN, type PDFSettings as bO, type GalleryData as bP, type Media as bQ, type Image as bR, type Video as bS, type Item as bT, type ItemDataOneOf as bU, type GalleryOptions as bV, type GalleryOptionsLayout as bW, type ItemStyle as bX, type Thumbnails as bY, type GIFData as bZ, type GIF as b_, ScalarType as ba, NestedAggregationType as bb, Interval as bc, AggregationType as bd, Mode as be, Position as bf, MoveItemInCategoryRequestPosition as bg, WebhookIdentityType as bh, type BreadcrumbsInfo as bi, type Breadcrumb as bj, type ParentCategory as bk, type SeoSchema as bl, type Keyword as bm, type Tag as bn, type Settings as bo, type RichContent as bp, type Node as bq, type NodeDataOneOf as br, type NodeStyle as bs, type ButtonData as bt, type Gradient as bu, type Stop as bv, type Border as bw, type Colors as bx, type Background as by, type PluginContainerData as bz, type CreateCategoryValidationErrors as c, type LayoutDataBackground as c$, type HTMLData as c0, type HTMLDataDataOneOf as c1, type ImageData as c2, type StylesBorder as c3, type ImageDataStyles as c4, type ImageDataCrop as c5, type LinkPreviewData as c6, type LinkPreviewDataStyles as c7, type MapData as c8, type MapSettings as c9, type AppEmbedData as cA, type AppEmbedDataAppDataOneOf as cB, type BookingData as cC, type EventData as cD, type ButtonStyles as cE, type ImageStyles as cF, type RibbonStyles as cG, type CardStyles as cH, type PricingData as cI, type VideoData as cJ, type PlaybackOptions as cK, type EmbedData as cL, type Oembed as cM, type CollapsibleListData as cN, type TableData as cO, type Dimensions as cP, type TableCellData as cQ, type CellStyle as cR, type BorderColors as cS, type BorderWidths as cT, type ListValue as cU, type AudioData as cV, type OrderedListData as cW, type BulletedListData as cX, type BlockquoteData as cY, type CaptionData as cZ, type LayoutData as c_, type ParagraphData as ca, type PollData as cb, type Permissions as cc, type Option as cd, type PollSettings as ce, type PollLayout as cf, type OptionLayout as cg, type BackgroundGradient as ch, type PollDesignBackground as ci, type PollDesignBackgroundBackgroundOneOf as cj, type PollDesign as ck, type OptionDesign as cl, type Poll as cm, type PollDataLayout as cn, type Design as co, type TextData as cp, type Decoration as cq, type DecorationDataOneOf as cr, type AnchorData as cs, type ColorData as ct, type LinkData as cu, type MentionData as cv, type FontSizeData as cw, type SpoilerData as cx, type FontFamilyData as cy, type SketchData as cz, type GetCategoryBySlugOptions as d, type ValueAggregationOptionsOneOf as d$, type LayoutDataBackgroundImage as d0, type Banner as d1, type Backdrop as d2, type LayoutCellData as d3, type ShapeData as d4, type ShapeDataStyles as d5, type CardData as d6, type CardDataBackground as d7, type BackgroundImage as d8, type TocData as d9, type DuplicateHandleErrorData as dA, type GetCategoryRequest as dB, type GetCategoryResponse as dC, type GetCategoryBySlugRequest as dD, type UpdateCategoryRequest as dE, type UpdateCategoryResponse as dF, type DeleteCategoryRequest as dG, type DeleteCategoryResponse as dH, type QueryCategoriesRequest as dI, type CursorQuery as dJ, type CursorQueryPagingMethodOneOf as dK, type Sorting as dL, type CursorPaging as dM, type QueryCategoriesResponse as dN, type CursorPagingMetadata as dO, type Cursors as dP, type ListCompactCategoriesByIdsRequest as dQ, type ListCompactCategoriesByIdsResponse as dR, type CompactCategory as dS, type SearchCategoriesRequest as dT, type CursorSearch as dU, type CursorSearchPagingMethodOneOf as dV, type Aggregation as dW, type AggregationKindOneOf as dX, type RangeBucket as dY, type IncludeMissingValuesOptions as dZ, type ValueAggregation as d_, type SmartBlockData as da, type SmartBlockCellData as db, type CheckboxListData as dc, type ListItemNodeData as dd, type Metadata as de, type DocumentStyle as df, type TextNodeStyle as dg, type ExtendedFields as dh, type InvalidateCache as di, type InvalidateCacheGetByOneOf as dj, type App as dk, type Page as dl, type URI as dm, type File as dn, type CustomTag as dp, type Pages as dq, type URIs as dr, type CategoryMoved as ds, type ItemAddedToCategory as dt, type ItemsAddedToCategory as du, type ItemRemovedFromCategory as dv, type ItemsRemovedFromCategory as dw, type ItemsArrangedInCategory as dx, type CreateCategoryRequest as dy, type CreateCategoryResponse as dz, type GetCategoryBySlugResponse as e, type GetArrangedItemsRequest as e$, type RangeAggregation as e0, type ScalarAggregation as e1, type DateHistogramAggregation as e2, type NestedAggregationItem as e3, type NestedAggregationItemKindOneOf as e4, type NestedAggregation as e5, type SearchDetails as e6, type AggregationData as e7, type ValueAggregationResult as e8, type RangeAggregationResult as e9, type BulkUpdateCategoriesRequest as eA, type BulkCategoriesResult as eB, type ItemMetadata as eC, type ApplicationError as eD, type BulkActionMetadata as eE, type UpdateCategoryVisibilityRequest as eF, type BulkShowCategoriesRequest as eG, type BulkDeleteCategoriesRequest as eH, type BulkDeleteCategoriesResponse as eI, type BulkDeleteCategoriesResponseBulkCategoriesResult as eJ, type BulkAddItemsToCategoryRequest as eK, type BulkItemsToCategoryResult as eL, type ItemReferenceMetadata as eM, type BulkAddItemToCategoriesRequest as eN, type BulkItemToCategoriesResult as eO, type BulkRemoveItemsFromCategoryRequest as eP, type BulkRemoveItemFromCategoriesRequest as eQ, type ListItemsInCategoryRequest as eR, type ListItemsInCategoryRequestPagingMethodOneOf as eS, type PagingMetadataV2 as eT, type ListCategoriesForItemRequest as eU, type ListCategoriesForItemsRequest as eV, type MapItemToCategories as eW, type ListTreesRequest as eX, type MoveItemInCategoryRequest as eY, type MoveItemInCategoryResponse as eZ, type SetArrangedItemsRequest as e_, type NestedAggregationResults as ea, type NestedAggregationResultsResultOneOf as eb, type ValueResults as ec, type RangeResults as ed, type AggregationResultsScalarResult as ee, type NestedValueAggregationResult as ef, type ValueResult as eg, type RangeResult as eh, type ScalarResult as ei, type NestedResultValue as ej, type NestedResultValueResultOneOf as ek, type Results as el, type DateHistogramResult as em, type GroupByValueResults as en, type DateHistogramResults as eo, type NestedResults as ep, type AggregationResults as eq, type AggregationResultsResultOneOf as er, type DeprecatedSearchCategoriesWithOffsetRequest as es, type OffsetSearch as et, type OffsetSearchPagingMethodOneOf as eu, type Paging as ev, type DeprecatedSearchCategoriesWithOffsetResponse as ew, type PagingMetadata as ex, type CountCategoriesRequest as ey, type MoveCategoryRequest as ez, type UpdateCategoryOptions as f, type ResizingWithLiterals as f$, type BulkSetItemCategoriesRequest as f0, type BulkSetItemCategoriesResponse as f1, type GetCategoriesTreeRequest as f2, type GetCategoriesTreeResponse as f3, type CategoryTreeNode as f4, type DomainEvent as f5, type DomainEventBodyOneOf as f6, type EntityCreatedEvent as f7, type RestoreInfo as f8, type EntityUpdatedEvent as f9, type WidthTypeWithLiterals as fA, type PluginContainerDataAlignmentWithLiterals as fB, type ButtonDataTypeWithLiterals as fC, type TargetWithLiterals as fD, type TextAlignmentWithLiterals as fE, type LineStyleWithLiterals as fF, type WidthWithLiterals as fG, type DividerDataAlignmentWithLiterals as fH, type ViewModeWithLiterals as fI, type LayoutTypeWithLiterals as fJ, type OrientationWithLiterals as fK, type CropWithLiterals as fL, type ThumbnailsAlignmentWithLiterals as fM, type GIFTypeWithLiterals as fN, type SourceWithLiterals as fO, type StylesPositionWithLiterals as fP, type MapTypeWithLiterals as fQ, type ViewRoleWithLiterals as fR, type VoteRoleWithLiterals as fS, type PollLayoutTypeWithLiterals as fT, type PollLayoutDirectionWithLiterals as fU, type PollDesignBackgroundTypeWithLiterals as fV, type DecorationTypeWithLiterals as fW, type FontTypeWithLiterals as fX, type VariantWithLiterals as fY, type ImageStylesPositionWithLiterals as fZ, type AspectRatioWithLiterals as f_, type EntityDeletedEvent as fa, type ActionEvent as fb, type Empty as fc, type BulkCreateCategoriesForMigrationRequest as fd, type BulkCreateCategoriesForMigrationResponse as fe, type BulkAddItemsToCategoryForMigrationRequest as ff, type BulkAddItemsToCategoryForMigrationResponse as fg, type SetArrangedItemsForMigrationRequest as fh, type SetArrangedItemsForMigrationResponse as fi, type CatalogRollbackRequested as fj, type MessageEnvelope as fk, type IdentificationData as fl, type IdentificationDataIdOneOf as fm, type AccountInfo as fn, type BaseEventMetadata as fo, type EventMetadata as fp, type AccountInfoMetadata as fq, type CategoriesQueryResult as fr, type CategoryQuerySpec as fs, type CategorySearchSpec as ft, type ListItemsInCategoryOptionsPagingMethodOneOf as fu, type BulkSetItemCategoriesOptions as fv, utils as fw, type NodeTypeWithLiterals as fx, type BackgroundTypeWithLiterals as fy, type GradientTypeWithLiterals as fz, type UpdateCategoryApplicationErrors as g, bulkRemoveItemFromCategories as g$, type PlacementWithLiterals as g0, type TypeWithLiterals as g1, type AlignmentWithLiterals as g2, type LayoutWithLiterals as g3, type AppTypeWithLiterals as g4, type InitialExpandedItemsWithLiterals as g5, type DirectionWithLiterals as g6, type VerticalAlignmentWithLiterals as g7, type NullValueWithLiterals as g8, type ImageScalingScalingWithLiterals as g9, type PositionWithLiterals as gA, type MoveItemInCategoryRequestPositionWithLiterals as gB, type WebhookIdentityTypeWithLiterals as gC, type BulkSetItemCategoriesApplicationErrors as gD, type CommonQueryWithEntityContext as gE, type CommonSearchWithEntityContext as gF, onCategoryMoved as gG, onCategoryCreated as gH, onCategoryDeleted as gI, onCategoryItemAddedToCategory as gJ, onCategoryItemRemovedFromCategory as gK, onCategoryItemsArrangedInCategory as gL, onCategoryUpdated as gM, createCategory as gN, getCategory as gO, getCategoryBySlug as gP, updateCategory as gQ, deleteCategory as gR, queryCategories as gS, countCategories as gT, moveCategory as gU, bulkUpdateCategories as gV, updateCategoryVisibility as gW, bulkShowCategories as gX, bulkAddItemsToCategory as gY, bulkAddItemToCategories as gZ, bulkRemoveItemsFromCategory as g_, type ImagePositionWithLiterals as ga, type LayoutDataBackgroundTypeWithLiterals as gb, type OriginWithLiterals as gc, type BannerPositionWithLiterals as gd, type BackdropTypeWithLiterals as ge, type VerticalAlignmentAlignmentWithLiterals as gf, type ResponsivenessBehaviourWithLiterals as gg, type DesignTargetWithLiterals as gh, type ScalingWithLiterals as gi, type ImagePositionPositionWithLiterals as gj, type CardDataBackgroundTypeWithLiterals as gk, type ListStyleWithLiterals as gl, type IndentationWithLiterals as gm, type SmartBlockDataTypeWithLiterals as gn, type ColumnSizeWithLiterals as go, type SingleEntityOpsRequestedFieldsWithLiterals as gp, type SortOrderWithLiterals as gq, type RequestedFieldsWithLiterals as gr, type SortTypeWithLiterals as gs, type SortDirectionWithLiterals as gt, type MissingValuesWithLiterals as gu, type ScalarTypeWithLiterals as gv, type NestedAggregationTypeWithLiterals as gw, type IntervalWithLiterals as gx, type AggregationTypeWithLiterals as gy, type ModeWithLiterals as gz, type UpdateCategoryValidationErrors as h, listItemsInCategory as h0, listCategoriesForItem as h1, listCategoriesForItems as h2, listTrees as h3, setArrangedItems as h4, getArrangedItems as h5, type CategorySearch as i, type SearchCategoriesResponse as j, type CountCategoriesOptions as k, type CountCategoriesResponse as l, type MoveCategoryResponse as m, type MoveCategoryApplicationErrors as n, type MaskedCategory as o, type BulkUpdateCategoriesResponse as p, type BulkUpdateCategoriesApplicationErrors as q, type BulkUpdateCategoriesValidationErrors as r, type UpdateCategoryVisibilityOptions as s, type UpdateCategoryVisibilityResponse as t, type UpdateCategoryVisibilityApplicationErrors as u, type BulkShowCategoriesOptions as v, type BulkShowCategoriesResponse as w, type BulkAddItemsToCategoryOptions as x, type BulkAddItemsToCategoryResponse as y, type BulkAddItemsToCategoryApplicationErrors as z };
|
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, d as GetCategoryBySlugOptions, e as GetCategoryBySlugResponse, U as UpdateCategory, f as UpdateCategoryOptions, g as UpdateCategoryApplicationErrors, D as DeleteCategoryApplicationErrors,
|
|
3
|
-
export { fk as AccountInfo, fn as AccountInfoMetadata, f8 as ActionEvent, dT as Aggregation, e4 as AggregationData, dU as AggregationKindOneOf, en as AggregationResults, eo as AggregationResultsResultOneOf, eb as AggregationResultsScalarResult, bb as AggregationType, gv as AggregationTypeWithLiterals, aH as Alignment, f$ as AlignmentWithLiterals, cp as AnchorData, dh as App, cx as AppEmbedData, cy as AppEmbedDataAppDataOneOf, aJ as AppType, g1 as AppTypeWithLiterals, eA as ApplicationError, aD as AspectRatio, fX as AspectRatioWithLiterals, cS as AudioData, c$ as Backdrop, aT as BackdropType, gb as BackdropTypeWithLiterals, bw as Background, ce as BackgroundGradient, d5 as BackgroundImage, ab as BackgroundType, fv as BackgroundTypeWithLiterals, cZ as Banner, aR as BannerPosition, g9 as BannerPositionWithLiterals, fl as BaseEventMetadata, cV as BlockquoteData, cz as BookingData, bu as Border, cP as BorderColors, cQ as BorderWidths, bh as Breadcrumb, bg as BreadcrumbsInfo, eB as BulkActionMetadata, eK as BulkAddItemToCategoriesRequest, fc as BulkAddItemsToCategoryForMigrationRequest, fd as BulkAddItemsToCategoryForMigrationResponse, eH as BulkAddItemsToCategoryRequest, ey as BulkCategoriesResult, fa as BulkCreateCategoriesForMigrationRequest, fb as BulkCreateCategoriesForMigrationResponse, eE as BulkDeleteCategoriesRequest, eF as BulkDeleteCategoriesResponse, eG as BulkDeleteCategoriesResponseBulkCategoriesResult, eL as BulkItemToCategoriesResult, eI as BulkItemsToCategoryResult, eN as BulkRemoveItemFromCategoriesRequest, eM as BulkRemoveItemsFromCategoryRequest, gA as BulkSetItemCategoriesApplicationErrors, fs as BulkSetItemCategoriesOptions, eZ as BulkSetItemCategoriesRequest, e_ as BulkSetItemCategoriesResponse, eD as BulkShowCategoriesRequest, ex as BulkUpdateCategoriesRequest, cU as BulletedListData, br as ButtonData, af as ButtonDataType, fz as ButtonDataTypeWithLiterals, cB as ButtonStyles, cW as CaptionData, d3 as CardData, d4 as CardDataBackground, aZ as CardDataBackgroundType, gh as CardDataBackgroundTypeWithLiterals, cE as CardStyles, fg as CatalogRollbackRequested, fo as CategoriesQueryResult, dp as CategoryMoved, fp as CategoryQuerySpec, fq as CategorySearchSpec, f1 as CategoryTreeNode, cO as CellStyle, d9 as CheckboxListData, bG as CodeBlockData, cK as CollapsibleListData, cq as ColorData, bv as Colors, b1 as ColumnSize, gl as ColumnSizeWithLiterals, gB as CommonQueryWithEntityContext, gC as CommonSearchWithEntityContext, dP as CompactCategory, ev as CountCategoriesRequest, dv as CreateCategoryRequest, dw as CreateCategoryResponse, ao as Crop, fI as CropWithLiterals, dJ as CursorPaging, dL as CursorPagingMetadata, dG as CursorQuery, dH as CursorQueryPagingMethodOneOf, dR as CursorSearch, dS as CursorSearchPagingMethodOneOf, dM as Cursors, dl as CustomTag, d$ as DateHistogramAggregation, ej as DateHistogramResult, el as DateHistogramResults, cn as Decoration, co as DecorationDataOneOf, az as DecorationType, fT as DecorationTypeWithLiterals, dD as DeleteCategoryRequest, dE as DeleteCategoryResponse, ep as DeprecatedSearchCategoriesWithOffsetRequest, et as DeprecatedSearchCategoriesWithOffsetResponse, cl as Design, aW as DesignTarget, ge as DesignTargetWithLiterals, cM as Dimensions, aL as Direction, g3 as DirectionWithLiterals, bI as DividerData, ak as DividerDataAlignment, fE as DividerDataAlignmentWithLiterals, dc as DocumentStyle, f2 as DomainEvent, f3 as DomainEventBodyOneOf, dx as DuplicateHandleErrorData, cI as EmbedData, f9 as Empty, f4 as EntityCreatedEvent, f7 as EntityDeletedEvent, f6 as EntityUpdatedEvent, cA as EventData, fm as EventMetadata, de as ExtendedFields, dk as File, bJ as FileData, bK as FileSource, bL as FileSourceDataOneOf, cv as FontFamilyData, ct as FontSizeData, aA as FontType, fU as FontTypeWithLiterals, bY as GIF, bX as GIFData, aq as GIFType, fK as GIFTypeWithLiterals, bN as GalleryData, bT as GalleryOptions, bU as GalleryOptionsLayout, eY as GetArrangedItemsRequest, e$ as GetCategoriesTreeRequest, f0 as GetCategoriesTreeResponse, dA as GetCategoryBySlugRequest, dy as GetCategoryRequest, dz as GetCategoryResponse, bs as Gradient, ac as GradientType, fw as GradientTypeWithLiterals, ek as GroupByValueResults, b_ as HTMLData, b$ as HTMLDataDataOneOf, bZ as HeadingData, bB as Height, fi as IdentificationData, fj as IdentificationDataIdOneOf, bP as Image, c0 as ImageData, c2 as ImageDataStyles, aP as ImagePosition, aY as ImagePositionPosition, gg as ImagePositionPositionWithLiterals, g7 as ImagePositionWithLiterals, aO as ImageScalingScaling, g6 as ImageScalingScalingWithLiterals, cC as ImageStyles, aC as ImageStylesPosition, fW as ImageStylesPositionWithLiterals, dW as IncludeMissingValuesOptions, a$ as Indentation, gj as IndentationWithLiterals, aK as InitialExpandedItems, g2 as InitialExpandedItemsWithLiterals, ba as Interval, gu as IntervalWithLiterals, df as InvalidateCache, dg as InvalidateCacheGetByOneOf, bR as Item, dq as ItemAddedToCategory, bS as ItemDataOneOf, ez as ItemMetadata, eJ as ItemReferenceMetadata, ds as ItemRemovedFromCategory, bV as ItemStyle, dr as ItemsAddedToCategory, du as ItemsArrangedInCategory, dt as ItemsRemovedFromCategory, bk as Keyword, aI as Layout, d0 as LayoutCellData, cX as LayoutData, c_ as LayoutDataBackground, cY as LayoutDataBackgroundImage, aS as LayoutDataBackgroundType, ga as LayoutDataBackgroundTypeWithLiterals, am as LayoutType, fG as LayoutTypeWithLiterals, g0 as LayoutWithLiterals, ai as LineStyle, fC as LineStyleWithLiterals, bD as Link, cr as LinkData, bE as LinkDataOneOf, c3 as LinkPreviewData, c4 as LinkPreviewDataStyles, eR as ListCategoriesForItemRequest, eS as ListCategoriesForItemsRequest, dN as ListCompactCategoriesByIdsRequest, dO as ListCompactCategoriesByIdsResponse, da as ListItemNodeData, fr as ListItemsInCategoryOptionsPagingMethodOneOf, eO as ListItemsInCategoryRequest, eP as ListItemsInCategoryRequestPagingMethodOneOf, a_ as ListStyle, gi as ListStyleWithLiterals, eU as ListTreesRequest, cR as ListValue, c5 as MapData, eT as MapItemToCategories, c6 as MapSettings, at as MapType, fN as MapTypeWithLiterals, bO as Media, cs as MentionData, fh as MessageEnvelope, db as Metadata, b7 as MissingValues, gr as MissingValuesWithLiterals, bc as Mode, gw as ModeWithLiterals, ew as MoveCategoryRequest, eV as MoveItemInCategoryRequest, be as MoveItemInCategoryRequestPosition, gy as MoveItemInCategoryRequestPositionWithLiterals, eW as MoveItemInCategoryResponse, e2 as NestedAggregation, e0 as NestedAggregationItem, e1 as NestedAggregationItemKindOneOf, e7 as NestedAggregationResults, e8 as NestedAggregationResultsResultOneOf, b9 as NestedAggregationType, gt as NestedAggregationTypeWithLiterals, eg as NestedResultValue, eh as NestedResultValueResultOneOf, em as NestedResults, ec as NestedValueAggregationResult, bo as Node, bp as NodeDataOneOf, bq as NodeStyle, aa as NodeType, fu as NodeTypeWithLiterals, aN as NullValue, g5 as NullValueWithLiterals, cJ as Oembed, eq as OffsetSearch, er as OffsetSearchPagingMethodOneOf, ca as Option, ci as OptionDesign, cd as OptionLayout, cT as OrderedListData, an as Orientation, fH as OrientationWithLiterals, aQ as Origin, g8 as OriginWithLiterals, bM as PDFSettings, di as Page, dm as Pages, es as Paging, eu as PagingMetadata, eQ as PagingMetadataV2, c7 as ParagraphData, bi as ParentCategory, c9 as Permissions, aF as Placement, fZ as PlacementWithLiterals, cH as PlaybackOptions, bx as PluginContainerData, ae as PluginContainerDataAlignment, fy as PluginContainerDataAlignmentWithLiterals, by as PluginContainerDataWidth, bz as PluginContainerDataWidthDataOneOf, cj as Poll, c8 as PollData, ck as PollDataLayout, ch as PollDesign, cf as PollDesignBackground, cg as PollDesignBackgroundBackgroundOneOf, ay as PollDesignBackgroundType, fS as PollDesignBackgroundTypeWithLiterals, cc as PollLayout, ax as PollLayoutDirection, fR as PollLayoutDirectionWithLiterals, aw as PollLayoutType, fQ as PollLayoutTypeWithLiterals, cb as PollSettings, bd as Position, gx as PositionWithLiterals, cF as PricingData, dF as QueryCategoriesRequest, dK as QueryCategoriesResponse, dZ as RangeAggregation, e6 as RangeAggregationResult, dV as RangeBucket, ee as RangeResult, ea as RangeResults, bF as Rel, b4 as RequestedFields, go as RequestedFieldsWithLiterals, aE as Resizing, fY as ResizingWithLiterals, aV as ResponsivenessBehaviour, gd as ResponsivenessBehaviourWithLiterals, f5 as RestoreInfo, ei as Results, cD as RibbonStyles, bn as RichContent, d_ as ScalarAggregation, ef as ScalarResult, b8 as ScalarType, gs as ScalarTypeWithLiterals, aX as Scaling, gf as ScalingWithLiterals, dQ as SearchCategoriesRequest, e3 as SearchDetails, bj as SeoSchema, fe as SetArrangedItemsForMigrationRequest, ff as SetArrangedItemsForMigrationResponse, eX as SetArrangedItemsRequest, bm as Settings, d1 as ShapeData, d2 as ShapeDataStyles, b2 as SingleEntityOpsRequestedFields, gm as SingleEntityOpsRequestedFieldsWithLiterals, cw as SketchData, d8 as SmartBlockCellData, d7 as SmartBlockData, b0 as SmartBlockDataType, gk as SmartBlockDataTypeWithLiterals, b6 as SortDirection, gq as SortDirectionWithLiterals, b3 as SortOrder, gn as SortOrderWithLiterals, b5 as SortType, gp as SortTypeWithLiterals, dI as Sorting, ar as Source, fL as SourceWithLiterals, bA as Spoiler, cu as SpoilerData, bt as Stop, bC as Styles, c1 as StylesBorder, as as StylesPosition, fM as StylesPositionWithLiterals, cN as TableCellData, cL as TableData, bl as Tag, ag as Target, fA as TargetWithLiterals, ah as TextAlignment, fB as TextAlignmentWithLiterals, cm as TextData, dd as TextNodeStyle, bH as TextStyle, bW as Thumbnails, ap as ThumbnailsAlignment, fJ as ThumbnailsAlignmentWithLiterals, d6 as TocData, aG as Type, f_ as TypeWithLiterals, dj as URI, dn as URIs, dB as UpdateCategoryRequest, dC as UpdateCategoryResponse, eC as UpdateCategoryVisibilityRequest, dX as ValueAggregation, dY as ValueAggregationOptionsOneOf, e5 as ValueAggregationResult, ed as ValueResult, e9 as ValueResults, aB as Variant, fV as VariantWithLiterals, aM as VerticalAlignment, aU as VerticalAlignmentAlignment, gc as VerticalAlignmentAlignmentWithLiterals, g4 as VerticalAlignmentWithLiterals, bQ as Video, cG as VideoData, al as ViewMode, fF as ViewModeWithLiterals, au as ViewRole, fO as ViewRoleWithLiterals, av as VoteRole, fP as VoteRoleWithLiterals, bf as WebhookIdentityType, gz as WebhookIdentityTypeWithLiterals, aj as Width, ad as WidthType, fx as WidthTypeWithLiterals, fD as WidthWithLiterals, ft as utils } from './categories-v1-category-categories.universal-B8K4dTVY.js';
|
|
2
|
+
import { C as Category, a as CreateCategoryOptions, b as CreateCategoryApplicationErrors, c as CreateCategoryValidationErrors, T as TreeReference, G as GetCategoryOptions, d as GetCategoryBySlugOptions, e as GetCategoryBySlugResponse, U as UpdateCategory, f as UpdateCategoryOptions, g as UpdateCategoryApplicationErrors, h as UpdateCategoryValidationErrors, D as DeleteCategoryApplicationErrors, i as CategorySearch, S as SearchCategoriesOptions, j as SearchCategoriesResponse, k as CountCategoriesOptions, l as CountCategoriesResponse, M as MoveCategoryOptions, m as MoveCategoryResponse, n as MoveCategoryApplicationErrors, o as MaskedCategory, B as BulkUpdateCategoriesOptions, p as BulkUpdateCategoriesResponse, q as BulkUpdateCategoriesApplicationErrors, r as BulkUpdateCategoriesValidationErrors, s as UpdateCategoryVisibilityOptions, t as UpdateCategoryVisibilityResponse, u as UpdateCategoryVisibilityApplicationErrors, v as BulkShowCategoriesOptions, w as BulkShowCategoriesResponse, I as ItemReference, x as BulkAddItemsToCategoryOptions, y as BulkAddItemsToCategoryResponse, z as BulkAddItemsToCategoryApplicationErrors, A as BulkAddItemToCategoriesOptions, E as BulkAddItemToCategoriesResponse, F as BulkAddItemToCategoriesApplicationErrors, H as BulkRemoveItemsFromCategoryOptions, J as BulkRemoveItemsFromCategoryResponse, K as BulkRemoveItemsFromCategoryApplicationErrors, L as BulkRemoveItemFromCategoriesOptions, N as BulkRemoveItemFromCategoriesResponse, O as BulkRemoveItemFromCategoriesApplicationErrors, P as ListItemsInCategoryOptions, Q as ListItemsInCategoryResponse, R as ListCategoriesForItemOptions, V as ListCategoriesForItemResponse, W as ListCategoriesForItemsOptions, X as ListCategoriesForItemsResponse, Y as ListTreesResponse, Z as SetArrangedItemsOptions, _ as SetArrangedItemsResponse, $ as SetArrangedItemsApplicationErrors, a0 as GetArrangedItemsResponse, a1 as CategoryMovedEnvelope, a2 as CategoryCreatedEnvelope, a3 as CategoryDeletedEnvelope, a4 as CategoryItemAddedToCategoryEnvelope, a5 as CategoryItemRemovedFromCategoryEnvelope, a6 as CategoryItemsArrangedInCategoryEnvelope, a7 as CategoryUpdatedEnvelope, a8 as CategoryQuery, a9 as QueryCategoriesOptions, aa as typedQueryCategories, ab as CategoriesQueryBuilder } from './categories-v1-category-categories.universal-D0UeT_GT.js';
|
|
3
|
+
export { fn as AccountInfo, fq as AccountInfoMetadata, fb as ActionEvent, dW as Aggregation, e7 as AggregationData, dX as AggregationKindOneOf, eq as AggregationResults, er as AggregationResultsResultOneOf, ee as AggregationResultsScalarResult, bd as AggregationType, gy as AggregationTypeWithLiterals, aJ as Alignment, g2 as AlignmentWithLiterals, cs as AnchorData, dk as App, cA as AppEmbedData, cB as AppEmbedDataAppDataOneOf, aL as AppType, g4 as AppTypeWithLiterals, eD as ApplicationError, aF as AspectRatio, f_ as AspectRatioWithLiterals, cV as AudioData, d2 as Backdrop, aV as BackdropType, ge as BackdropTypeWithLiterals, by as Background, ch as BackgroundGradient, d8 as BackgroundImage, ad as BackgroundType, fy as BackgroundTypeWithLiterals, d1 as Banner, aU as BannerPosition, gd as BannerPositionWithLiterals, fo as BaseEventMetadata, cY as BlockquoteData, cC as BookingData, bw as Border, cS as BorderColors, cT as BorderWidths, bj as Breadcrumb, bi as BreadcrumbsInfo, eE as BulkActionMetadata, eN as BulkAddItemToCategoriesRequest, ff as BulkAddItemsToCategoryForMigrationRequest, fg as BulkAddItemsToCategoryForMigrationResponse, eK as BulkAddItemsToCategoryRequest, eB as BulkCategoriesResult, fd as BulkCreateCategoriesForMigrationRequest, fe as BulkCreateCategoriesForMigrationResponse, eH as BulkDeleteCategoriesRequest, eI as BulkDeleteCategoriesResponse, eJ as BulkDeleteCategoriesResponseBulkCategoriesResult, eO as BulkItemToCategoriesResult, eL as BulkItemsToCategoryResult, eQ as BulkRemoveItemFromCategoriesRequest, eP as BulkRemoveItemsFromCategoryRequest, gD as BulkSetItemCategoriesApplicationErrors, fv as BulkSetItemCategoriesOptions, f0 as BulkSetItemCategoriesRequest, f1 as BulkSetItemCategoriesResponse, eG as BulkShowCategoriesRequest, eA as BulkUpdateCategoriesRequest, cX as BulletedListData, bt as ButtonData, ah as ButtonDataType, fC as ButtonDataTypeWithLiterals, cE as ButtonStyles, cZ as CaptionData, d6 as CardData, d7 as CardDataBackground, a$ as CardDataBackgroundType, gk as CardDataBackgroundTypeWithLiterals, cH as CardStyles, fj as CatalogRollbackRequested, fr as CategoriesQueryResult, ds as CategoryMoved, fs as CategoryQuerySpec, ft as CategorySearchSpec, f4 as CategoryTreeNode, cR as CellStyle, dc as CheckboxListData, bI as CodeBlockData, cN as CollapsibleListData, ct as ColorData, bx as Colors, b3 as ColumnSize, go as ColumnSizeWithLiterals, gE as CommonQueryWithEntityContext, gF as CommonSearchWithEntityContext, dS as CompactCategory, ey as CountCategoriesRequest, dy as CreateCategoryRequest, dz as CreateCategoryResponse, aq as Crop, fL as CropWithLiterals, dM as CursorPaging, dO as CursorPagingMetadata, dJ as CursorQuery, dK as CursorQueryPagingMethodOneOf, dU as CursorSearch, dV as CursorSearchPagingMethodOneOf, dP as Cursors, dp as CustomTag, e2 as DateHistogramAggregation, em as DateHistogramResult, eo as DateHistogramResults, cq as Decoration, cr as DecorationDataOneOf, aB as DecorationType, fW as DecorationTypeWithLiterals, dG as DeleteCategoryRequest, dH as DeleteCategoryResponse, es as DeprecatedSearchCategoriesWithOffsetRequest, ew as DeprecatedSearchCategoriesWithOffsetResponse, co as Design, aY as DesignTarget, gh as DesignTargetWithLiterals, cP as Dimensions, aN as Direction, g6 as DirectionWithLiterals, bK as DividerData, am as DividerDataAlignment, fH as DividerDataAlignmentWithLiterals, df as DocumentStyle, f5 as DomainEvent, f6 as DomainEventBodyOneOf, dA as DuplicateHandleErrorData, cL as EmbedData, fc as Empty, f7 as EntityCreatedEvent, fa as EntityDeletedEvent, f9 as EntityUpdatedEvent, cD as EventData, fp as EventMetadata, dh as ExtendedFields, dn as File, bL as FileData, bM as FileSource, bN as FileSourceDataOneOf, cy as FontFamilyData, cw as FontSizeData, aC as FontType, fX as FontTypeWithLiterals, b_ as GIF, bZ as GIFData, as as GIFType, fN as GIFTypeWithLiterals, bP as GalleryData, bV as GalleryOptions, bW as GalleryOptionsLayout, e$ as GetArrangedItemsRequest, f2 as GetCategoriesTreeRequest, f3 as GetCategoriesTreeResponse, dD as GetCategoryBySlugRequest, dB as GetCategoryRequest, dC as GetCategoryResponse, bu as Gradient, ae as GradientType, fz as GradientTypeWithLiterals, en as GroupByValueResults, c0 as HTMLData, c1 as HTMLDataDataOneOf, b$ as HeadingData, bD as Height, fl as IdentificationData, fm as IdentificationDataIdOneOf, bR as Image, c2 as ImageData, c5 as ImageDataCrop, c4 as ImageDataStyles, aR as ImagePosition, a_ as ImagePositionPosition, gj as ImagePositionPositionWithLiterals, ga as ImagePositionWithLiterals, aQ as ImageScalingScaling, g9 as ImageScalingScalingWithLiterals, cF as ImageStyles, aE as ImageStylesPosition, fZ as ImageStylesPositionWithLiterals, dZ as IncludeMissingValuesOptions, b1 as Indentation, gm as IndentationWithLiterals, aM as InitialExpandedItems, g5 as InitialExpandedItemsWithLiterals, bc as Interval, gx as IntervalWithLiterals, di as InvalidateCache, dj as InvalidateCacheGetByOneOf, bT as Item, dt as ItemAddedToCategory, bU as ItemDataOneOf, eC as ItemMetadata, eM as ItemReferenceMetadata, dv as ItemRemovedFromCategory, bX as ItemStyle, du as ItemsAddedToCategory, dx as ItemsArrangedInCategory, dw as ItemsRemovedFromCategory, bm as Keyword, aK as Layout, d3 as LayoutCellData, c_ as LayoutData, c$ as LayoutDataBackground, d0 as LayoutDataBackgroundImage, aS as LayoutDataBackgroundType, gb as LayoutDataBackgroundTypeWithLiterals, ao as LayoutType, fJ as LayoutTypeWithLiterals, g3 as LayoutWithLiterals, ak as LineStyle, fF as LineStyleWithLiterals, bF as Link, cu as LinkData, bG as LinkDataOneOf, c6 as LinkPreviewData, c7 as LinkPreviewDataStyles, eU as ListCategoriesForItemRequest, eV as ListCategoriesForItemsRequest, dQ as ListCompactCategoriesByIdsRequest, dR as ListCompactCategoriesByIdsResponse, dd as ListItemNodeData, fu as ListItemsInCategoryOptionsPagingMethodOneOf, eR as ListItemsInCategoryRequest, eS as ListItemsInCategoryRequestPagingMethodOneOf, b0 as ListStyle, gl as ListStyleWithLiterals, eX as ListTreesRequest, cU as ListValue, c8 as MapData, eW as MapItemToCategories, c9 as MapSettings, av as MapType, fQ as MapTypeWithLiterals, bQ as Media, cv as MentionData, fk as MessageEnvelope, de as Metadata, b9 as MissingValues, gu as MissingValuesWithLiterals, be as Mode, gz as ModeWithLiterals, ez as MoveCategoryRequest, eY as MoveItemInCategoryRequest, bg as MoveItemInCategoryRequestPosition, gB as MoveItemInCategoryRequestPositionWithLiterals, eZ as MoveItemInCategoryResponse, e5 as NestedAggregation, e3 as NestedAggregationItem, e4 as NestedAggregationItemKindOneOf, ea as NestedAggregationResults, eb as NestedAggregationResultsResultOneOf, bb as NestedAggregationType, gw as NestedAggregationTypeWithLiterals, ej as NestedResultValue, ek as NestedResultValueResultOneOf, ep as NestedResults, ef as NestedValueAggregationResult, bq as Node, br as NodeDataOneOf, bs as NodeStyle, ac as NodeType, fx as NodeTypeWithLiterals, aP as NullValue, g8 as NullValueWithLiterals, cM as Oembed, et as OffsetSearch, eu as OffsetSearchPagingMethodOneOf, cd as Option, cl as OptionDesign, cg as OptionLayout, cW as OrderedListData, ap as Orientation, fK as OrientationWithLiterals, aT as Origin, gc as OriginWithLiterals, bO as PDFSettings, dl as Page, dq as Pages, ev as Paging, ex as PagingMetadata, eT as PagingMetadataV2, ca as ParagraphData, bk as ParentCategory, cc as Permissions, aH as Placement, g0 as PlacementWithLiterals, cK as PlaybackOptions, bz as PluginContainerData, ag as PluginContainerDataAlignment, fB as PluginContainerDataAlignmentWithLiterals, bA as PluginContainerDataWidth, bB as PluginContainerDataWidthDataOneOf, cm as Poll, cb as PollData, cn as PollDataLayout, ck as PollDesign, ci as PollDesignBackground, cj as PollDesignBackgroundBackgroundOneOf, aA as PollDesignBackgroundType, fV as PollDesignBackgroundTypeWithLiterals, cf as PollLayout, az as PollLayoutDirection, fU as PollLayoutDirectionWithLiterals, ay as PollLayoutType, fT as PollLayoutTypeWithLiterals, ce as PollSettings, bf as Position, gA as PositionWithLiterals, cI as PricingData, dI as QueryCategoriesRequest, dN as QueryCategoriesResponse, e0 as RangeAggregation, e9 as RangeAggregationResult, dY as RangeBucket, eh as RangeResult, ed as RangeResults, bH as Rel, b6 as RequestedFields, gr as RequestedFieldsWithLiterals, aG as Resizing, f$ as ResizingWithLiterals, aX as ResponsivenessBehaviour, gg as ResponsivenessBehaviourWithLiterals, f8 as RestoreInfo, el as Results, cG as RibbonStyles, bp as RichContent, e1 as ScalarAggregation, ei as ScalarResult, ba as ScalarType, gv as ScalarTypeWithLiterals, aZ as Scaling, gi as ScalingWithLiterals, dT as SearchCategoriesRequest, e6 as SearchDetails, bl as SeoSchema, fh as SetArrangedItemsForMigrationRequest, fi as SetArrangedItemsForMigrationResponse, e_ as SetArrangedItemsRequest, bo as Settings, d4 as ShapeData, d5 as ShapeDataStyles, b4 as SingleEntityOpsRequestedFields, gp as SingleEntityOpsRequestedFieldsWithLiterals, cz as SketchData, db as SmartBlockCellData, da as SmartBlockData, b2 as SmartBlockDataType, gn as SmartBlockDataTypeWithLiterals, b8 as SortDirection, gt as SortDirectionWithLiterals, b5 as SortOrder, gq as SortOrderWithLiterals, b7 as SortType, gs as SortTypeWithLiterals, dL as Sorting, at as Source, fO as SourceWithLiterals, bC as Spoiler, cx as SpoilerData, bv as Stop, bE as Styles, c3 as StylesBorder, au as StylesPosition, fP as StylesPositionWithLiterals, cQ as TableCellData, cO as TableData, bn as Tag, ai as Target, fD as TargetWithLiterals, aj as TextAlignment, fE as TextAlignmentWithLiterals, cp as TextData, dg as TextNodeStyle, bJ as TextStyle, bY as Thumbnails, ar as ThumbnailsAlignment, fM as ThumbnailsAlignmentWithLiterals, d9 as TocData, aI as Type, g1 as TypeWithLiterals, dm as URI, dr as URIs, dE as UpdateCategoryRequest, dF as UpdateCategoryResponse, eF as UpdateCategoryVisibilityRequest, d_ as ValueAggregation, d$ as ValueAggregationOptionsOneOf, e8 as ValueAggregationResult, eg as ValueResult, ec as ValueResults, aD as Variant, fY as VariantWithLiterals, aO as VerticalAlignment, aW as VerticalAlignmentAlignment, gf as VerticalAlignmentAlignmentWithLiterals, g7 as VerticalAlignmentWithLiterals, bS as Video, cJ as VideoData, an as ViewMode, fI as ViewModeWithLiterals, aw as ViewRole, fR as ViewRoleWithLiterals, ax as VoteRole, fS as VoteRoleWithLiterals, bh as WebhookIdentityType, gC as WebhookIdentityTypeWithLiterals, al as Width, af as WidthType, fA as WidthTypeWithLiterals, fG as WidthWithLiterals, fw as utils } from './categories-v1-category-categories.universal-D0UeT_GT.js';
|
|
4
4
|
|
|
5
5
|
declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
|
|
6
6
|
interface CreateCategorySignature {
|
|
@@ -46,6 +46,7 @@ interface UpdateCategorySignature {
|
|
|
46
46
|
*/
|
|
47
47
|
(_id: string, category: NonNullablePaths<UpdateCategory, `revision`, 2>, options?: NonNullablePaths<UpdateCategoryOptions, `treeReference` | `treeReference.appNamespace`, 3>): Promise<NonNullablePaths<Category, `itemCounter` | `breadcrumbsInfo.breadcrumbs` | `breadcrumbsInfo.breadcrumbs.${number}.categoryId` | `breadcrumbsInfo.breadcrumbs.${number}.categoryName` | `breadcrumbsInfo.breadcrumbs.${number}.categorySlug` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `treeReference.appNamespace`, 6> & {
|
|
48
48
|
__applicationErrorsType?: UpdateCategoryApplicationErrors;
|
|
49
|
+
__validationErrorsType?: UpdateCategoryValidationErrors;
|
|
49
50
|
}>;
|
|
50
51
|
}
|
|
51
52
|
declare function deleteCategory$1(httpClient: HttpClient): DeleteCategorySignature;
|
|
@@ -112,6 +113,7 @@ interface BulkUpdateCategoriesSignature {
|
|
|
112
113
|
*/
|
|
113
114
|
(categories: NonNullablePaths<MaskedCategory, `category` | `category._id` | `category.revision`, 3>[], options?: NonNullablePaths<BulkUpdateCategoriesOptions, `treeReference` | `treeReference.appNamespace`, 3>): Promise<NonNullablePaths<BulkUpdateCategoriesResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `results.${number}.category.itemCounter` | `results.${number}.category.treeReference.appNamespace` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6> & {
|
|
114
115
|
__applicationErrorsType?: BulkUpdateCategoriesApplicationErrors;
|
|
116
|
+
__validationErrorsType?: BulkUpdateCategoriesValidationErrors;
|
|
115
117
|
}>;
|
|
116
118
|
}
|
|
117
119
|
declare function updateCategoryVisibility$1(httpClient: HttpClient): UpdateCategoryVisibilitySignature;
|
|
@@ -309,4 +311,4 @@ declare const onCategoryItemsArrangedInCategory: BuildEventDefinition<typeof onC
|
|
|
309
311
|
*/
|
|
310
312
|
declare const onCategoryUpdated: BuildEventDefinition<typeof onCategoryUpdated$1> & typeof onCategoryUpdated$1;
|
|
311
313
|
|
|
312
|
-
export { BulkAddItemToCategoriesApplicationErrors, BulkAddItemToCategoriesOptions, BulkAddItemToCategoriesResponse, BulkAddItemsToCategoryApplicationErrors, BulkAddItemsToCategoryOptions, BulkAddItemsToCategoryResponse, BulkRemoveItemFromCategoriesApplicationErrors, BulkRemoveItemFromCategoriesOptions, BulkRemoveItemFromCategoriesResponse, BulkRemoveItemsFromCategoryApplicationErrors, BulkRemoveItemsFromCategoryOptions, BulkRemoveItemsFromCategoryResponse, BulkShowCategoriesOptions, BulkShowCategoriesResponse, BulkUpdateCategoriesApplicationErrors, BulkUpdateCategoriesOptions, BulkUpdateCategoriesResponse, CategoriesQueryBuilder, Category, CategoryCreatedEnvelope, CategoryDeletedEnvelope, CategoryItemAddedToCategoryEnvelope, CategoryItemRemovedFromCategoryEnvelope, CategoryItemsArrangedInCategoryEnvelope, CategoryMovedEnvelope, CategoryQuery, CategorySearch, CategoryUpdatedEnvelope, CountCategoriesOptions, CountCategoriesResponse, CreateCategoryApplicationErrors, CreateCategoryOptions, CreateCategoryValidationErrors, DeleteCategoryApplicationErrors, GetArrangedItemsResponse, GetCategoryBySlugOptions, GetCategoryBySlugResponse, GetCategoryOptions, ItemReference, ListCategoriesForItemOptions, ListCategoriesForItemResponse, ListCategoriesForItemsOptions, ListCategoriesForItemsResponse, ListItemsInCategoryOptions, ListItemsInCategoryResponse, ListTreesResponse, MaskedCategory, MoveCategoryApplicationErrors, MoveCategoryOptions, MoveCategoryResponse, QueryCategoriesOptions, SearchCategoriesOptions, SearchCategoriesResponse, SetArrangedItemsApplicationErrors, SetArrangedItemsOptions, SetArrangedItemsResponse, TreeReference, UpdateCategory, UpdateCategoryApplicationErrors, UpdateCategoryOptions, UpdateCategoryVisibilityApplicationErrors, UpdateCategoryVisibilityOptions, UpdateCategoryVisibilityResponse, bulkAddItemToCategories, bulkAddItemsToCategory, bulkRemoveItemFromCategories, bulkRemoveItemsFromCategory, bulkShowCategories, bulkUpdateCategories, countCategories, createCategory, deleteCategory, getArrangedItems, getCategory, getCategoryBySlug, listCategoriesForItem, listCategoriesForItems, listItemsInCategory, listTrees, moveCategory, onCategoryCreated, onCategoryDeleted, onCategoryItemAddedToCategory, onCategoryItemRemovedFromCategory, onCategoryItemsArrangedInCategory, onCategoryMoved, onCategoryUpdated, queryCategories, searchCategories, setArrangedItems, updateCategory, updateCategoryVisibility };
|
|
314
|
+
export { BulkAddItemToCategoriesApplicationErrors, BulkAddItemToCategoriesOptions, BulkAddItemToCategoriesResponse, BulkAddItemsToCategoryApplicationErrors, BulkAddItemsToCategoryOptions, BulkAddItemsToCategoryResponse, BulkRemoveItemFromCategoriesApplicationErrors, BulkRemoveItemFromCategoriesOptions, BulkRemoveItemFromCategoriesResponse, BulkRemoveItemsFromCategoryApplicationErrors, BulkRemoveItemsFromCategoryOptions, BulkRemoveItemsFromCategoryResponse, BulkShowCategoriesOptions, BulkShowCategoriesResponse, BulkUpdateCategoriesApplicationErrors, BulkUpdateCategoriesOptions, BulkUpdateCategoriesResponse, BulkUpdateCategoriesValidationErrors, CategoriesQueryBuilder, Category, CategoryCreatedEnvelope, CategoryDeletedEnvelope, CategoryItemAddedToCategoryEnvelope, CategoryItemRemovedFromCategoryEnvelope, CategoryItemsArrangedInCategoryEnvelope, CategoryMovedEnvelope, CategoryQuery, CategorySearch, CategoryUpdatedEnvelope, CountCategoriesOptions, CountCategoriesResponse, CreateCategoryApplicationErrors, CreateCategoryOptions, CreateCategoryValidationErrors, DeleteCategoryApplicationErrors, GetArrangedItemsResponse, GetCategoryBySlugOptions, GetCategoryBySlugResponse, GetCategoryOptions, ItemReference, ListCategoriesForItemOptions, ListCategoriesForItemResponse, ListCategoriesForItemsOptions, ListCategoriesForItemsResponse, ListItemsInCategoryOptions, ListItemsInCategoryResponse, ListTreesResponse, MaskedCategory, MoveCategoryApplicationErrors, MoveCategoryOptions, MoveCategoryResponse, QueryCategoriesOptions, SearchCategoriesOptions, SearchCategoriesResponse, SetArrangedItemsApplicationErrors, SetArrangedItemsOptions, SetArrangedItemsResponse, TreeReference, UpdateCategory, UpdateCategoryApplicationErrors, UpdateCategoryOptions, UpdateCategoryValidationErrors, UpdateCategoryVisibilityApplicationErrors, UpdateCategoryVisibilityOptions, UpdateCategoryVisibilityResponse, bulkAddItemToCategories, bulkAddItemsToCategory, bulkRemoveItemFromCategories, bulkRemoveItemsFromCategory, bulkShowCategories, bulkUpdateCategories, countCategories, createCategory, deleteCategory, getArrangedItems, getCategory, getCategoryBySlug, listCategoriesForItem, listCategoriesForItems, listItemsInCategory, listTrees, moveCategory, onCategoryCreated, onCategoryDeleted, onCategoryItemAddedToCategory, onCategoryItemRemovedFromCategory, onCategoryItemsArrangedInCategory, onCategoryMoved, onCategoryUpdated, queryCategories, searchCategories, setArrangedItems, updateCategory, updateCategoryVisibility };
|