@wix/auto_sdk_categories_categories 1.0.123 → 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/cjs/{categories-v1-category-categories.universal-DJWQRoO8.d.ts → categories-v1-category-categories.universal-D0UeT_GT.d.ts} +60 -34
- package/build/cjs/index.d.ts +2 -2
- 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 +60 -34
- package/build/cjs/meta.js +465 -5
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{categories-v1-category-categories.universal-DJWQRoO8.d.mts → categories-v1-category-categories.universal-D0UeT_GT.d.mts} +60 -34
- package/build/es/index.d.mts +2 -2
- 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 +60 -34
- package/build/es/meta.mjs +465 -5
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{categories-v1-category-categories.universal-QI8o3wE-.d.ts → categories-v1-category-categories.universal-f_-SZw_a.d.ts} +60 -34
- package/build/internal/cjs/index.d.ts +2 -2
- 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 +60 -34
- package/build/internal/cjs/meta.js +465 -5
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{categories-v1-category-categories.universal-QI8o3wE-.d.mts → categories-v1-category-categories.universal-f_-SZw_a.d.mts} +60 -34
- package/build/internal/es/index.d.mts +2 -2
- 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 +60 -34
- package/build/internal/es/meta.mjs +465 -5
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1116,6 +1116,8 @@ interface ImageData {
|
|
|
1116
1116
|
decorative?: boolean | null;
|
|
1117
1117
|
/** Styling for the image. */
|
|
1118
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;
|
|
1119
1121
|
}
|
|
1120
1122
|
interface StylesBorder {
|
|
1121
1123
|
/** Border width in pixels. */
|
|
@@ -1132,6 +1134,16 @@ interface ImageDataStyles {
|
|
|
1132
1134
|
/** Border attributes. */
|
|
1133
1135
|
border?: StylesBorder;
|
|
1134
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
|
+
}
|
|
1135
1147
|
interface LinkPreviewData {
|
|
1136
1148
|
/** Styling for the link preview's container. */
|
|
1137
1149
|
containerData?: PluginContainerData;
|
|
@@ -2169,6 +2181,27 @@ declare enum ImagePosition {
|
|
|
2169
2181
|
}
|
|
2170
2182
|
/** @enumType */
|
|
2171
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';
|
|
2172
2205
|
declare enum Origin {
|
|
2173
2206
|
/** Banner originated from an image */
|
|
2174
2207
|
IMAGE = "IMAGE",
|
|
@@ -2185,15 +2218,6 @@ declare enum BannerPosition {
|
|
|
2185
2218
|
}
|
|
2186
2219
|
/** @enumType */
|
|
2187
2220
|
type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
|
|
2188
|
-
/** Background type */
|
|
2189
|
-
declare enum LayoutDataBackgroundType {
|
|
2190
|
-
/** Solid color background */
|
|
2191
|
-
COLOR = "COLOR",
|
|
2192
|
-
/** Gradient background */
|
|
2193
|
-
GRADIENT = "GRADIENT"
|
|
2194
|
-
}
|
|
2195
|
-
/** @enumType */
|
|
2196
|
-
type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2197
2221
|
/** Backdrop type */
|
|
2198
2222
|
declare enum BackdropType {
|
|
2199
2223
|
/** Solid color backdrop */
|
|
@@ -2206,12 +2230,19 @@ type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
|
|
|
2206
2230
|
interface LayoutDataBackgroundImage {
|
|
2207
2231
|
/** Background image. */
|
|
2208
2232
|
media?: Media;
|
|
2209
|
-
/**
|
|
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
|
+
*/
|
|
2210
2237
|
opacity?: number | null;
|
|
2211
2238
|
/** Background image scaling. */
|
|
2212
2239
|
scaling?: ImageScalingScalingWithLiterals;
|
|
2213
2240
|
/** Position of background. Defaults to `CENTER`. */
|
|
2214
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;
|
|
2215
2246
|
}
|
|
2216
2247
|
declare enum VerticalAlignmentAlignment {
|
|
2217
2248
|
/** Top alignment */
|
|
@@ -2245,18 +2276,6 @@ interface Banner {
|
|
|
2245
2276
|
/** Position of the banner */
|
|
2246
2277
|
position?: BannerPositionWithLiterals;
|
|
2247
2278
|
}
|
|
2248
|
-
/** Background styling (color or gradient) */
|
|
2249
|
-
interface LayoutDataBackground {
|
|
2250
|
-
/** Background type. */
|
|
2251
|
-
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2252
|
-
/**
|
|
2253
|
-
* Background color as a hexadecimal value.
|
|
2254
|
-
* @maxLength 19
|
|
2255
|
-
*/
|
|
2256
|
-
color?: string | null;
|
|
2257
|
-
/** Gradient configuration. */
|
|
2258
|
-
gradient?: Gradient;
|
|
2259
|
-
}
|
|
2260
2279
|
/** Backdrop styling (color or gradient) */
|
|
2261
2280
|
interface Backdrop {
|
|
2262
2281
|
/** Backdrop type. */
|
|
@@ -2328,15 +2347,6 @@ declare enum ImagePositionPosition {
|
|
|
2328
2347
|
}
|
|
2329
2348
|
/** @enumType */
|
|
2330
2349
|
type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
2331
|
-
/** Background type */
|
|
2332
|
-
declare enum CardDataBackgroundType {
|
|
2333
|
-
/** Solid color background */
|
|
2334
|
-
COLOR = "COLOR",
|
|
2335
|
-
/** Gradient background */
|
|
2336
|
-
GRADIENT = "GRADIENT"
|
|
2337
|
-
}
|
|
2338
|
-
/** @enumType */
|
|
2339
|
-
type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2340
2350
|
/** Background styling (color or gradient) */
|
|
2341
2351
|
interface CardDataBackground {
|
|
2342
2352
|
/** Background type. */
|
|
@@ -2349,15 +2359,31 @@ interface CardDataBackground {
|
|
|
2349
2359
|
/** Gradient configuration. */
|
|
2350
2360
|
gradient?: Gradient;
|
|
2351
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';
|
|
2352
2371
|
interface BackgroundImage {
|
|
2353
2372
|
/** Background image. */
|
|
2354
2373
|
media?: Media;
|
|
2355
|
-
/**
|
|
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
|
+
*/
|
|
2356
2378
|
opacity?: number | null;
|
|
2357
2379
|
/** Background image scaling. */
|
|
2358
2380
|
scaling?: ScalingWithLiterals;
|
|
2359
2381
|
/** Position of background. Defaults to `CENTER`. */
|
|
2360
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;
|
|
2361
2387
|
}
|
|
2362
2388
|
interface TocData {
|
|
2363
2389
|
/** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
|
|
@@ -5370,7 +5396,7 @@ type CategoryQuery = {
|
|
|
5370
5396
|
};
|
|
5371
5397
|
declare const utils: {
|
|
5372
5398
|
query: {
|
|
5373
|
-
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Category, CategoryQuerySpec, CategoryQuery>;
|
|
5399
|
+
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Category, CategoryQuerySpec, CategoryQuery>;
|
|
5374
5400
|
Filter: _wix_sdk_types.FilterFactory<Category, CategoryQuerySpec>;
|
|
5375
5401
|
Sort: _wix_sdk_types.SortFactory<CategoryQuerySpec>;
|
|
5376
5402
|
};
|
|
@@ -5979,4 +6005,4 @@ interface BulkSetItemCategoriesOptions {
|
|
|
5979
6005
|
treeReference: TreeReference;
|
|
5980
6006
|
}
|
|
5981
6007
|
|
|
5982
|
-
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, Origin as aS, BannerPosition as aT, LayoutDataBackgroundType 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 Banner as c$, type HTMLData as c0, type HTMLDataDataOneOf as c1, type ImageData as c2, type StylesBorder as c3, type ImageDataStyles as c4, type LinkPreviewData as c5, type LinkPreviewDataStyles as c6, type MapData as c7, type MapSettings as c8, type ParagraphData as c9, type AppEmbedDataAppDataOneOf as cA, type BookingData as cB, type EventData as cC, type ButtonStyles as cD, type ImageStyles as cE, type RibbonStyles as cF, type CardStyles as cG, type PricingData as cH, type VideoData as cI, type PlaybackOptions as cJ, type EmbedData as cK, type Oembed as cL, type CollapsibleListData as cM, type TableData as cN, type Dimensions as cO, type TableCellData as cP, type CellStyle as cQ, type BorderColors as cR, type BorderWidths as cS, type ListValue as cT, type AudioData as cU, type OrderedListData as cV, type BulletedListData as cW, type BlockquoteData as cX, type CaptionData as cY, type LayoutData as cZ, type LayoutDataBackgroundImage as c_, type PollData as ca, type Permissions as cb, type Option as cc, type PollSettings as cd, type PollLayout as ce, type OptionLayout as cf, type BackgroundGradient as cg, type PollDesignBackground as ch, type PollDesignBackgroundBackgroundOneOf as ci, type PollDesign as cj, type OptionDesign as ck, type Poll as cl, type PollDataLayout as cm, type Design as cn, type TextData as co, type Decoration as cp, type DecorationDataOneOf as cq, type AnchorData as cr, type ColorData as cs, type LinkData as ct, type MentionData as cu, type FontSizeData as cv, type SpoilerData as cw, type FontFamilyData as cx, type SketchData as cy, type AppEmbedData as cz, type GetCategoryBySlugOptions as d, type RangeAggregation as d$, type LayoutDataBackground as d0, type Backdrop as d1, type LayoutCellData as d2, type ShapeData as d3, type ShapeDataStyles as d4, type CardData as d5, type CardDataBackground as d6, type BackgroundImage as d7, type TocData as d8, type SmartBlockData as d9, type GetCategoryRequest as dA, type GetCategoryResponse as dB, type GetCategoryBySlugRequest as dC, type UpdateCategoryRequest as dD, type UpdateCategoryResponse as dE, type DeleteCategoryRequest as dF, type DeleteCategoryResponse as dG, type QueryCategoriesRequest as dH, type CursorQuery as dI, type CursorQueryPagingMethodOneOf as dJ, type Sorting as dK, type CursorPaging as dL, type QueryCategoriesResponse as dM, type CursorPagingMetadata as dN, type Cursors as dO, type ListCompactCategoriesByIdsRequest as dP, type ListCompactCategoriesByIdsResponse as dQ, type CompactCategory as dR, type SearchCategoriesRequest as dS, type CursorSearch as dT, type CursorSearchPagingMethodOneOf as dU, type Aggregation as dV, type AggregationKindOneOf as dW, type RangeBucket as dX, type IncludeMissingValuesOptions as dY, type ValueAggregation as dZ, type ValueAggregationOptionsOneOf as d_, type SmartBlockCellData as da, type CheckboxListData as db, type ListItemNodeData as dc, type Metadata as dd, type DocumentStyle as de, type TextNodeStyle as df, type ExtendedFields as dg, type InvalidateCache as dh, type InvalidateCacheGetByOneOf as di, type App as dj, type Page as dk, type URI as dl, type File as dm, type CustomTag as dn, type Pages as dp, type URIs as dq, type CategoryMoved as dr, type ItemAddedToCategory as ds, type ItemsAddedToCategory as dt, type ItemRemovedFromCategory as du, type ItemsRemovedFromCategory as dv, type ItemsArrangedInCategory as dw, type CreateCategoryRequest as dx, type CreateCategoryResponse as dy, type DuplicateHandleErrorData as dz, type GetCategoryBySlugResponse as e, type BulkSetItemCategoriesRequest as e$, type ScalarAggregation as e0, type DateHistogramAggregation as e1, type NestedAggregationItem as e2, type NestedAggregationItemKindOneOf as e3, type NestedAggregation as e4, type SearchDetails as e5, type AggregationData as e6, type ValueAggregationResult as e7, type RangeAggregationResult as e8, type NestedAggregationResults as e9, type BulkCategoriesResult as eA, type ItemMetadata as eB, type ApplicationError as eC, type BulkActionMetadata as eD, type UpdateCategoryVisibilityRequest as eE, type BulkShowCategoriesRequest as eF, type BulkDeleteCategoriesRequest as eG, type BulkDeleteCategoriesResponse as eH, type BulkDeleteCategoriesResponseBulkCategoriesResult as eI, type BulkAddItemsToCategoryRequest as eJ, type BulkItemsToCategoryResult as eK, type ItemReferenceMetadata as eL, type BulkAddItemToCategoriesRequest as eM, type BulkItemToCategoriesResult as eN, type BulkRemoveItemsFromCategoryRequest as eO, type BulkRemoveItemFromCategoriesRequest as eP, type ListItemsInCategoryRequest as eQ, type ListItemsInCategoryRequestPagingMethodOneOf as eR, type PagingMetadataV2 as eS, type ListCategoriesForItemRequest as eT, type ListCategoriesForItemsRequest as eU, type MapItemToCategories as eV, type ListTreesRequest as eW, type MoveItemInCategoryRequest as eX, type MoveItemInCategoryResponse as eY, type SetArrangedItemsRequest as eZ, type GetArrangedItemsRequest as e_, type NestedAggregationResultsResultOneOf as ea, type ValueResults as eb, type RangeResults as ec, type AggregationResultsScalarResult as ed, type NestedValueAggregationResult as ee, type ValueResult as ef, type RangeResult as eg, type ScalarResult as eh, type NestedResultValue as ei, type NestedResultValueResultOneOf as ej, type Results as ek, type DateHistogramResult as el, type GroupByValueResults as em, type DateHistogramResults as en, type NestedResults as eo, type AggregationResults as ep, type AggregationResultsResultOneOf as eq, type DeprecatedSearchCategoriesWithOffsetRequest as er, type OffsetSearch as es, type OffsetSearchPagingMethodOneOf as et, type Paging as eu, type DeprecatedSearchCategoriesWithOffsetResponse as ev, type PagingMetadata as ew, type CountCategoriesRequest as ex, type MoveCategoryRequest as ey, type BulkUpdateCategoriesRequest as ez, type UpdateCategoryOptions as f, type PlacementWithLiterals as f$, type BulkSetItemCategoriesResponse 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 PluginContainerDataAlignmentWithLiterals as fA, type ButtonDataTypeWithLiterals as fB, type TargetWithLiterals as fC, type TextAlignmentWithLiterals as fD, type LineStyleWithLiterals as fE, type WidthWithLiterals as fF, type DividerDataAlignmentWithLiterals as fG, type ViewModeWithLiterals as fH, type LayoutTypeWithLiterals as fI, type OrientationWithLiterals as fJ, type CropWithLiterals as fK, type ThumbnailsAlignmentWithLiterals as fL, type GIFTypeWithLiterals as fM, type SourceWithLiterals as fN, type StylesPositionWithLiterals as fO, type MapTypeWithLiterals as fP, type ViewRoleWithLiterals as fQ, type VoteRoleWithLiterals as fR, type PollLayoutTypeWithLiterals as fS, type PollLayoutDirectionWithLiterals as fT, type PollDesignBackgroundTypeWithLiterals as fU, type DecorationTypeWithLiterals as fV, type FontTypeWithLiterals as fW, type VariantWithLiterals as fX, type ImageStylesPositionWithLiterals as fY, type AspectRatioWithLiterals as fZ, type ResizingWithLiterals 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, type BulkSetItemCategoriesOptions as fu, utils as fv, type NodeTypeWithLiterals as fw, type BackgroundTypeWithLiterals as fx, type GradientTypeWithLiterals as fy, type WidthTypeWithLiterals as fz, type UpdateCategoryApplicationErrors as g, listItemsInCategory as g$, type TypeWithLiterals as g0, type AlignmentWithLiterals as g1, type LayoutWithLiterals as g2, type AppTypeWithLiterals as g3, type InitialExpandedItemsWithLiterals as g4, type DirectionWithLiterals as g5, type VerticalAlignmentWithLiterals as g6, type NullValueWithLiterals as g7, type ImageScalingScalingWithLiterals as g8, type ImagePositionWithLiterals as g9, type MoveItemInCategoryRequestPositionWithLiterals as gA, type WebhookIdentityTypeWithLiterals as gB, type BulkSetItemCategoriesApplicationErrors as gC, type CommonQueryWithEntityContext as gD, type CommonSearchWithEntityContext as gE, onCategoryMoved as gF, onCategoryCreated as gG, onCategoryDeleted as gH, onCategoryItemAddedToCategory as gI, onCategoryItemRemovedFromCategory as gJ, onCategoryItemsArrangedInCategory as gK, onCategoryUpdated as gL, createCategory as gM, getCategory as gN, getCategoryBySlug as gO, updateCategory as gP, deleteCategory as gQ, queryCategories as gR, countCategories as gS, moveCategory as gT, bulkUpdateCategories as gU, updateCategoryVisibility as gV, bulkShowCategories as gW, bulkAddItemsToCategory as gX, bulkAddItemToCategories as gY, bulkRemoveItemsFromCategory as gZ, bulkRemoveItemFromCategories as g_, type OriginWithLiterals as ga, type BannerPositionWithLiterals as gb, type LayoutDataBackgroundTypeWithLiterals as gc, type BackdropTypeWithLiterals as gd, type VerticalAlignmentAlignmentWithLiterals as ge, type ResponsivenessBehaviourWithLiterals as gf, type DesignTargetWithLiterals as gg, type ScalingWithLiterals as gh, type ImagePositionPositionWithLiterals as gi, type CardDataBackgroundTypeWithLiterals as gj, type ListStyleWithLiterals as gk, type IndentationWithLiterals as gl, type SmartBlockDataTypeWithLiterals as gm, type ColumnSizeWithLiterals as gn, type SingleEntityOpsRequestedFieldsWithLiterals as go, type SortOrderWithLiterals as gp, type RequestedFieldsWithLiterals as gq, type SortTypeWithLiterals as gr, type SortDirectionWithLiterals as gs, type MissingValuesWithLiterals as gt, type ScalarTypeWithLiterals as gu, type NestedAggregationTypeWithLiterals as gv, type IntervalWithLiterals as gw, type AggregationTypeWithLiterals as gx, type ModeWithLiterals as gy, type PositionWithLiterals as gz, type UpdateCategoryValidationErrors as h, listCategoriesForItem as h0, listCategoriesForItems as h1, listTrees as h2, setArrangedItems as h3, getArrangedItems as h4, 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 };
|
|
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, 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-
|
|
3
|
-
export { fm as AccountInfo, fp as AccountInfoMetadata, fa as ActionEvent, dV as Aggregation, e6 as AggregationData, dW as AggregationKindOneOf, ep as AggregationResults, eq as AggregationResultsResultOneOf, ed as AggregationResultsScalarResult, bd as AggregationType, gx as AggregationTypeWithLiterals, aJ as Alignment, g1 as AlignmentWithLiterals, cr as AnchorData, dj as App, cz as AppEmbedData, cA as AppEmbedDataAppDataOneOf, aL as AppType, g3 as AppTypeWithLiterals, eC as ApplicationError, aF as AspectRatio, fZ as AspectRatioWithLiterals, cU as AudioData, d1 as Backdrop, aV as BackdropType, gd as BackdropTypeWithLiterals, by as Background, cg as BackgroundGradient, d7 as BackgroundImage, ad as BackgroundType, fx as BackgroundTypeWithLiterals, c$ as Banner, aT as BannerPosition, gb as BannerPositionWithLiterals, fn as BaseEventMetadata, cX as BlockquoteData, cB as BookingData, bw as Border, cR as BorderColors, cS as BorderWidths, bj as Breadcrumb, bi as BreadcrumbsInfo, eD as BulkActionMetadata, eM as BulkAddItemToCategoriesRequest, fe as BulkAddItemsToCategoryForMigrationRequest, ff as BulkAddItemsToCategoryForMigrationResponse, eJ as BulkAddItemsToCategoryRequest, eA as BulkCategoriesResult, fc as BulkCreateCategoriesForMigrationRequest, fd as BulkCreateCategoriesForMigrationResponse, eG as BulkDeleteCategoriesRequest, eH as BulkDeleteCategoriesResponse, eI as BulkDeleteCategoriesResponseBulkCategoriesResult, eN as BulkItemToCategoriesResult, eK as BulkItemsToCategoryResult, eP as BulkRemoveItemFromCategoriesRequest, eO as BulkRemoveItemsFromCategoryRequest, gC as BulkSetItemCategoriesApplicationErrors, fu as BulkSetItemCategoriesOptions, e$ as BulkSetItemCategoriesRequest, f0 as BulkSetItemCategoriesResponse, eF as BulkShowCategoriesRequest, ez as BulkUpdateCategoriesRequest, cW as BulletedListData, bt as ButtonData, ah as ButtonDataType, fB as ButtonDataTypeWithLiterals, cD as ButtonStyles, cY as CaptionData, d5 as CardData, d6 as CardDataBackground, a$ as CardDataBackgroundType, gj as CardDataBackgroundTypeWithLiterals, cG as CardStyles, fi as CatalogRollbackRequested, fq as CategoriesQueryResult, dr as CategoryMoved, fr as CategoryQuerySpec, fs as CategorySearchSpec, f3 as CategoryTreeNode, cQ as CellStyle, db as CheckboxListData, bI as CodeBlockData, cM as CollapsibleListData, cs as ColorData, bx as Colors, b3 as ColumnSize, gn as ColumnSizeWithLiterals, gD as CommonQueryWithEntityContext, gE as CommonSearchWithEntityContext, dR as CompactCategory, ex as CountCategoriesRequest, dx as CreateCategoryRequest, dy as CreateCategoryResponse, aq as Crop, fK as CropWithLiterals, dL as CursorPaging, dN as CursorPagingMetadata, dI as CursorQuery, dJ as CursorQueryPagingMethodOneOf, dT as CursorSearch, dU as CursorSearchPagingMethodOneOf, dO as Cursors, dn as CustomTag, e1 as DateHistogramAggregation, el as DateHistogramResult, en as DateHistogramResults, cp as Decoration, cq as DecorationDataOneOf, aB as DecorationType, fV as DecorationTypeWithLiterals, dF as DeleteCategoryRequest, dG as DeleteCategoryResponse, er as DeprecatedSearchCategoriesWithOffsetRequest, ev as DeprecatedSearchCategoriesWithOffsetResponse, cn as Design, aY as DesignTarget, gg as DesignTargetWithLiterals, cO as Dimensions, aN as Direction, g5 as DirectionWithLiterals, bK as DividerData, am as DividerDataAlignment, fG as DividerDataAlignmentWithLiterals, de as DocumentStyle, f4 as DomainEvent, f5 as DomainEventBodyOneOf, dz as DuplicateHandleErrorData, cK as EmbedData, fb as Empty, f6 as EntityCreatedEvent, f9 as EntityDeletedEvent, f8 as EntityUpdatedEvent, cC as EventData, fo as EventMetadata, dg as ExtendedFields, dm as File, bL as FileData, bM as FileSource, bN as FileSourceDataOneOf, cx as FontFamilyData, cv as FontSizeData, aC as FontType, fW as FontTypeWithLiterals, b_ as GIF, bZ as GIFData, as as GIFType, fM as GIFTypeWithLiterals, bP as GalleryData, bV as GalleryOptions, bW as GalleryOptionsLayout, e_ as GetArrangedItemsRequest, f1 as GetCategoriesTreeRequest, f2 as GetCategoriesTreeResponse, dC as GetCategoryBySlugRequest, dA as GetCategoryRequest, dB as GetCategoryResponse, bu as Gradient, ae as GradientType, fy as GradientTypeWithLiterals, em as GroupByValueResults, c0 as HTMLData, c1 as HTMLDataDataOneOf, b$ as HeadingData, bD as Height, fk as IdentificationData, fl as IdentificationDataIdOneOf, bR as Image, c2 as ImageData, c4 as ImageDataStyles, aR as ImagePosition, a_ as ImagePositionPosition, gi as ImagePositionPositionWithLiterals, g9 as ImagePositionWithLiterals, aQ as ImageScalingScaling, g8 as ImageScalingScalingWithLiterals, cE as ImageStyles, aE as ImageStylesPosition, fY as ImageStylesPositionWithLiterals, dY as IncludeMissingValuesOptions, b1 as Indentation, gl as IndentationWithLiterals, aM as InitialExpandedItems, g4 as InitialExpandedItemsWithLiterals, bc as Interval, gw as IntervalWithLiterals, dh as InvalidateCache, di as InvalidateCacheGetByOneOf, bT as Item, ds as ItemAddedToCategory, bU as ItemDataOneOf, eB as ItemMetadata, eL as ItemReferenceMetadata, du as ItemRemovedFromCategory, bX as ItemStyle, dt as ItemsAddedToCategory, dw as ItemsArrangedInCategory, dv as ItemsRemovedFromCategory, bm as Keyword, aK as Layout, d2 as LayoutCellData, cZ as LayoutData, d0 as LayoutDataBackground, c_ as LayoutDataBackgroundImage, aU as LayoutDataBackgroundType, gc as LayoutDataBackgroundTypeWithLiterals, ao as LayoutType, fI as LayoutTypeWithLiterals, g2 as LayoutWithLiterals, ak as LineStyle, fE as LineStyleWithLiterals, bF as Link, ct as LinkData, bG as LinkDataOneOf, c5 as LinkPreviewData, c6 as LinkPreviewDataStyles, eT as ListCategoriesForItemRequest, eU as ListCategoriesForItemsRequest, dP as ListCompactCategoriesByIdsRequest, dQ as ListCompactCategoriesByIdsResponse, dc as ListItemNodeData, ft as ListItemsInCategoryOptionsPagingMethodOneOf, eQ as ListItemsInCategoryRequest, eR as ListItemsInCategoryRequestPagingMethodOneOf, b0 as ListStyle, gk as ListStyleWithLiterals, eW as ListTreesRequest, cT as ListValue, c7 as MapData, eV as MapItemToCategories, c8 as MapSettings, av as MapType, fP as MapTypeWithLiterals, bQ as Media, cu as MentionData, fj as MessageEnvelope, dd as Metadata, b9 as MissingValues, gt as MissingValuesWithLiterals, be as Mode, gy as ModeWithLiterals, ey as MoveCategoryRequest, eX as MoveItemInCategoryRequest, bg as MoveItemInCategoryRequestPosition, gA as MoveItemInCategoryRequestPositionWithLiterals, eY as MoveItemInCategoryResponse, e4 as NestedAggregation, e2 as NestedAggregationItem, e3 as NestedAggregationItemKindOneOf, e9 as NestedAggregationResults, ea as NestedAggregationResultsResultOneOf, bb as NestedAggregationType, gv as NestedAggregationTypeWithLiterals, ei as NestedResultValue, ej as NestedResultValueResultOneOf, eo as NestedResults, ee as NestedValueAggregationResult, bq as Node, br as NodeDataOneOf, bs as NodeStyle, ac as NodeType, fw as NodeTypeWithLiterals, aP as NullValue, g7 as NullValueWithLiterals, cL as Oembed, es as OffsetSearch, et as OffsetSearchPagingMethodOneOf, cc as Option, ck as OptionDesign, cf as OptionLayout, cV as OrderedListData, ap as Orientation, fJ as OrientationWithLiterals, aS as Origin, ga as OriginWithLiterals, bO as PDFSettings, dk as Page, dp as Pages, eu as Paging, ew as PagingMetadata, eS as PagingMetadataV2, c9 as ParagraphData, bk as ParentCategory, cb as Permissions, aH as Placement, f$ as PlacementWithLiterals, cJ as PlaybackOptions, bz as PluginContainerData, ag as PluginContainerDataAlignment, fA as PluginContainerDataAlignmentWithLiterals, bA as PluginContainerDataWidth, bB as PluginContainerDataWidthDataOneOf, cl as Poll, ca as PollData, cm as PollDataLayout, cj as PollDesign, ch as PollDesignBackground, ci as PollDesignBackgroundBackgroundOneOf, aA as PollDesignBackgroundType, fU as PollDesignBackgroundTypeWithLiterals, ce as PollLayout, az as PollLayoutDirection, fT as PollLayoutDirectionWithLiterals, ay as PollLayoutType, fS as PollLayoutTypeWithLiterals, cd as PollSettings, bf as Position, gz as PositionWithLiterals, cH as PricingData, dH as QueryCategoriesRequest, dM as QueryCategoriesResponse, d$ as RangeAggregation, e8 as RangeAggregationResult, dX as RangeBucket, eg as RangeResult, ec as RangeResults, bH as Rel, b6 as RequestedFields, gq as RequestedFieldsWithLiterals, aG as Resizing, f_ as ResizingWithLiterals, aX as ResponsivenessBehaviour, gf as ResponsivenessBehaviourWithLiterals, f7 as RestoreInfo, ek as Results, cF as RibbonStyles, bp as RichContent, e0 as ScalarAggregation, eh as ScalarResult, ba as ScalarType, gu as ScalarTypeWithLiterals, aZ as Scaling, gh as ScalingWithLiterals, dS as SearchCategoriesRequest, e5 as SearchDetails, bl as SeoSchema, fg as SetArrangedItemsForMigrationRequest, fh as SetArrangedItemsForMigrationResponse, eZ as SetArrangedItemsRequest, bo as Settings, d3 as ShapeData, d4 as ShapeDataStyles, b4 as SingleEntityOpsRequestedFields, go as SingleEntityOpsRequestedFieldsWithLiterals, cy as SketchData, da as SmartBlockCellData, d9 as SmartBlockData, b2 as SmartBlockDataType, gm as SmartBlockDataTypeWithLiterals, b8 as SortDirection, gs as SortDirectionWithLiterals, b5 as SortOrder, gp as SortOrderWithLiterals, b7 as SortType, gr as SortTypeWithLiterals, dK as Sorting, at as Source, fN as SourceWithLiterals, bC as Spoiler, cw as SpoilerData, bv as Stop, bE as Styles, c3 as StylesBorder, au as StylesPosition, fO as StylesPositionWithLiterals, cP as TableCellData, cN as TableData, bn as Tag, ai as Target, fC as TargetWithLiterals, aj as TextAlignment, fD as TextAlignmentWithLiterals, co as TextData, df as TextNodeStyle, bJ as TextStyle, bY as Thumbnails, ar as ThumbnailsAlignment, fL as ThumbnailsAlignmentWithLiterals, d8 as TocData, aI as Type, g0 as TypeWithLiterals, dl as URI, dq as URIs, dD as UpdateCategoryRequest, dE as UpdateCategoryResponse, eE as UpdateCategoryVisibilityRequest, dZ as ValueAggregation, d_ as ValueAggregationOptionsOneOf, e7 as ValueAggregationResult, ef as ValueResult, eb as ValueResults, aD as Variant, fX as VariantWithLiterals, aO as VerticalAlignment, aW as VerticalAlignmentAlignment, ge as VerticalAlignmentAlignmentWithLiterals, g6 as VerticalAlignmentWithLiterals, bS as Video, cI as VideoData, an as ViewMode, fH as ViewModeWithLiterals, aw as ViewRole, fQ as ViewRoleWithLiterals, ax as VoteRole, fR as VoteRoleWithLiterals, bh as WebhookIdentityType, gB as WebhookIdentityTypeWithLiterals, al as Width, af as WidthType, fz as WidthTypeWithLiterals, fF as WidthWithLiterals, fv as utils } from './categories-v1-category-categories.universal-DJWQRoO8.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 {
|