@wix/auto_sdk_categories_categories 1.0.122 → 1.0.123
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-B8K4dTVY.d.ts → categories-v1-category-categories.universal-DJWQRoO8.d.ts} +21 -7
- package/build/cjs/index.d.ts +5 -3
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +15 -4
- 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/es/{categories-v1-category-categories.universal-B8K4dTVY.d.mts → categories-v1-category-categories.universal-DJWQRoO8.d.mts} +21 -7
- package/build/es/index.d.mts +5 -3
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +15 -4
- 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/internal/cjs/{categories-v1-category-categories.universal-DpGXPwLu.d.ts → categories-v1-category-categories.universal-QI8o3wE-.d.ts} +21 -7
- package/build/internal/cjs/index.d.ts +5 -3
- 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.map +1 -1
- package/build/internal/cjs/meta.d.ts +15 -4
- 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/internal/es/{categories-v1-category-categories.universal-DpGXPwLu.d.mts → categories-v1-category-categories.universal-QI8o3wE-.d.mts} +21 -7
- package/build/internal/es/index.d.mts +5 -3
- 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.map +1 -1
- package/build/internal/es/meta.d.mts +15 -4
- 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. */
|
|
@@ -4527,6 +4528,8 @@ type CreateCategoryApplicationErrors = {
|
|
|
4527
4528
|
/** @docsIgnore */
|
|
4528
4529
|
type CreateCategoryValidationErrors = {
|
|
4529
4530
|
ruleName?: 'ID_NOT_ALLOWED_IN_REQUEST';
|
|
4531
|
+
} | {
|
|
4532
|
+
ruleName?: 'INVALID_SLUG_FORMAT';
|
|
4530
4533
|
};
|
|
4531
4534
|
/** @docsIgnore */
|
|
4532
4535
|
type UpdateCategoryApplicationErrors = {
|
|
@@ -4539,6 +4542,10 @@ type UpdateCategoryApplicationErrors = {
|
|
|
4539
4542
|
data?: Record<string, any>;
|
|
4540
4543
|
};
|
|
4541
4544
|
/** @docsIgnore */
|
|
4545
|
+
type UpdateCategoryValidationErrors = {
|
|
4546
|
+
ruleName?: 'INVALID_SLUG_FORMAT';
|
|
4547
|
+
};
|
|
4548
|
+
/** @docsIgnore */
|
|
4542
4549
|
type DeleteCategoryApplicationErrors = {
|
|
4543
4550
|
code?: 'MANAGED_CATEGORY_OPERATION_NOT_ALLOWED';
|
|
4544
4551
|
description?: string;
|
|
@@ -4573,6 +4580,10 @@ type BulkUpdateCategoriesApplicationErrors = {
|
|
|
4573
4580
|
data?: Record<string, any>;
|
|
4574
4581
|
};
|
|
4575
4582
|
/** @docsIgnore */
|
|
4583
|
+
type BulkUpdateCategoriesValidationErrors = {
|
|
4584
|
+
ruleName?: 'INVALID_SLUG_FORMAT';
|
|
4585
|
+
};
|
|
4586
|
+
/** @docsIgnore */
|
|
4576
4587
|
type UpdateCategoryVisibilityApplicationErrors = {
|
|
4577
4588
|
code?: 'PARENT_CATEGORY_HIDDEN';
|
|
4578
4589
|
description?: string;
|
|
@@ -5039,6 +5050,7 @@ interface GetCategoryBySlugOptions {
|
|
|
5039
5050
|
*/
|
|
5040
5051
|
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
5052
|
__applicationErrorsType?: UpdateCategoryApplicationErrors;
|
|
5053
|
+
__validationErrorsType?: UpdateCategoryValidationErrors;
|
|
5042
5054
|
}>;
|
|
5043
5055
|
interface UpdateCategory {
|
|
5044
5056
|
/**
|
|
@@ -5119,10 +5131,11 @@ interface UpdateCategory {
|
|
|
5119
5131
|
*/
|
|
5120
5132
|
parentCategory?: ParentCategory;
|
|
5121
5133
|
/**
|
|
5122
|
-
* Category slug.
|
|
5134
|
+
* Category slug. A URL-friendly identifier used in the category page address.
|
|
5123
5135
|
*
|
|
5124
5136
|
* If not provided, the slug is autogenerated based on the category name.
|
|
5125
|
-
* @
|
|
5137
|
+
* @minLength 2
|
|
5138
|
+
* @maxLength 300
|
|
5126
5139
|
*/
|
|
5127
5140
|
slug?: string | null;
|
|
5128
5141
|
/** Custom SEO data for the category. */
|
|
@@ -5357,9 +5370,9 @@ type CategoryQuery = {
|
|
|
5357
5370
|
};
|
|
5358
5371
|
declare const utils: {
|
|
5359
5372
|
query: {
|
|
5360
|
-
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Category, CategoryQuerySpec, CategoryQuery>;
|
|
5373
|
+
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Category, CategoryQuerySpec, CategoryQuery>; /** Data for a font size decoration. */
|
|
5361
5374
|
Filter: _wix_sdk_types.FilterFactory<Category, CategoryQuerySpec>;
|
|
5362
|
-
Sort: _wix_sdk_types.SortFactory<CategoryQuerySpec>;
|
|
5375
|
+
Sort: _wix_sdk_types.SortFactory<CategoryQuerySpec>;
|
|
5363
5376
|
};
|
|
5364
5377
|
search: {
|
|
5365
5378
|
SearchBuilder: () => _wix_sdk_types.SearchBuilder<Category, CategorySearchSpec, CategorySearch>;
|
|
@@ -5626,6 +5639,7 @@ interface MoveCategoryOptions {
|
|
|
5626
5639
|
*/
|
|
5627
5640
|
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
5641
|
__applicationErrorsType?: BulkUpdateCategoriesApplicationErrors;
|
|
5642
|
+
__validationErrorsType?: BulkUpdateCategoriesValidationErrors;
|
|
5629
5643
|
}>;
|
|
5630
5644
|
interface BulkUpdateCategoriesOptions {
|
|
5631
5645
|
/** Category tree reference details. */
|
|
@@ -5965,4 +5979,4 @@ interface BulkSetItemCategoriesOptions {
|
|
|
5965
5979
|
treeReference: TreeReference;
|
|
5966
5980
|
}
|
|
5967
5981
|
|
|
5968
|
-
export { type CategoryMovedEnvelope 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, Indentation as a$, type CategoryCreatedEnvelope as a0, type CategoryDeletedEnvelope as a1, type CategoryItemAddedToCategoryEnvelope as a2, type CategoryItemRemovedFromCategoryEnvelope as a3, type CategoryItemsArrangedInCategoryEnvelope as a4, type CategoryUpdatedEnvelope as a5, type CategoryQuery as a6, type QueryCategoriesOptions as a7, typedQueryCategories as a8, type CategoriesQueryBuilder as a9, FontType as aA, Variant as aB, ImageStylesPosition as aC, AspectRatio as aD, Resizing as aE, Placement as aF, Type as aG, Alignment as aH, Layout as aI, AppType as aJ, InitialExpandedItems as aK, Direction as aL, VerticalAlignment as aM, NullValue as aN, ImageScalingScaling as aO, ImagePosition as aP, Origin as aQ, BannerPosition as aR, LayoutDataBackgroundType as aS, BackdropType as aT, VerticalAlignmentAlignment as aU, ResponsivenessBehaviour as aV, DesignTarget as aW, Scaling as aX, ImagePositionPosition as aY, CardDataBackgroundType as aZ, ListStyle as a_, NodeType as aa, BackgroundType as ab, GradientType as ac, WidthType as ad, PluginContainerDataAlignment as ae, ButtonDataType as af, Target as ag, TextAlignment as ah, LineStyle as ai, Width as aj, DividerDataAlignment as ak, ViewMode as al, LayoutType as am, Orientation as an, Crop as ao, ThumbnailsAlignment as ap, GIFType as aq, Source as ar, StylesPosition as as, MapType as at, ViewRole as au, VoteRole as av, PollLayoutType as aw, PollLayoutDirection as ax, PollDesignBackgroundType as ay, DecorationType as az, type CreateCategoryApplicationErrors as b, type HTMLDataDataOneOf as b$, SmartBlockDataType as b0, ColumnSize as b1, SingleEntityOpsRequestedFields as b2, SortOrder as b3, RequestedFields as b4, SortType as b5, SortDirection as b6, MissingValues as b7, ScalarType as b8, NestedAggregationType as b9, type Spoiler as bA, type Height as bB, type Styles as bC, type Link as bD, type LinkDataOneOf as bE, type Rel as bF, type CodeBlockData as bG, type TextStyle as bH, type DividerData as bI, type FileData as bJ, type FileSource as bK, type FileSourceDataOneOf as bL, type PDFSettings as bM, type GalleryData as bN, type Media as bO, type Image as bP, type Video as bQ, type Item as bR, type ItemDataOneOf as bS, type GalleryOptions as bT, type GalleryOptionsLayout as bU, type ItemStyle as bV, type Thumbnails as bW, type GIFData as bX, type GIF as bY, type HeadingData as bZ, type HTMLData as b_, Interval as ba, AggregationType as bb, Mode as bc, Position as bd, MoveItemInCategoryRequestPosition as be, WebhookIdentityType as bf, type BreadcrumbsInfo as bg, type Breadcrumb as bh, type ParentCategory as bi, type SeoSchema as bj, type Keyword as bk, type Tag as bl, type Settings as bm, type RichContent as bn, type Node as bo, type NodeDataOneOf as bp, type NodeStyle as bq, type ButtonData as br, type Gradient as bs, type Stop as bt, type Border as bu, type Colors as bv, type Background as bw, type PluginContainerData as bx, type PluginContainerDataWidth as by, type PluginContainerDataWidthDataOneOf as bz, type CreateCategoryValidationErrors as c, type Backdrop as c$, type ImageData as c0, type StylesBorder as c1, type ImageDataStyles as c2, type LinkPreviewData as c3, type LinkPreviewDataStyles as c4, type MapData as c5, type MapSettings as c6, type ParagraphData as c7, type PollData as c8, type Permissions as c9, type EventData as cA, type ButtonStyles as cB, type ImageStyles as cC, type RibbonStyles as cD, type CardStyles as cE, type PricingData as cF, type VideoData as cG, type PlaybackOptions as cH, type EmbedData as cI, type Oembed as cJ, type CollapsibleListData as cK, type TableData as cL, type Dimensions as cM, type TableCellData as cN, type CellStyle as cO, type BorderColors as cP, type BorderWidths as cQ, type ListValue as cR, type AudioData as cS, type OrderedListData as cT, type BulletedListData as cU, type BlockquoteData as cV, type CaptionData as cW, type LayoutData as cX, type LayoutDataBackgroundImage as cY, type Banner as cZ, type LayoutDataBackground as c_, type Option as ca, type PollSettings as cb, type PollLayout as cc, type OptionLayout as cd, type BackgroundGradient as ce, type PollDesignBackground as cf, type PollDesignBackgroundBackgroundOneOf as cg, type PollDesign as ch, type OptionDesign as ci, type Poll as cj, type PollDataLayout as ck, type Design as cl, type TextData as cm, type Decoration as cn, type DecorationDataOneOf as co, type AnchorData as cp, type ColorData as cq, type LinkData as cr, type MentionData as cs, type FontSizeData as ct, type SpoilerData as cu, type FontFamilyData as cv, type SketchData as cw, type AppEmbedData as cx, type AppEmbedDataAppDataOneOf as cy, type BookingData as cz, type GetCategoryBySlugOptions as d, type DateHistogramAggregation as d$, type LayoutCellData as d0, type ShapeData as d1, type ShapeDataStyles as d2, type CardData as d3, type CardDataBackground as d4, type BackgroundImage as d5, type TocData as d6, type SmartBlockData as d7, type SmartBlockCellData as d8, type CheckboxListData as d9, type GetCategoryBySlugRequest as dA, type UpdateCategoryRequest as dB, type UpdateCategoryResponse as dC, type DeleteCategoryRequest as dD, type DeleteCategoryResponse as dE, type QueryCategoriesRequest as dF, type CursorQuery as dG, type CursorQueryPagingMethodOneOf as dH, type Sorting as dI, type CursorPaging as dJ, type QueryCategoriesResponse as dK, type CursorPagingMetadata as dL, type Cursors as dM, type ListCompactCategoriesByIdsRequest as dN, type ListCompactCategoriesByIdsResponse as dO, type CompactCategory as dP, type SearchCategoriesRequest as dQ, type CursorSearch as dR, type CursorSearchPagingMethodOneOf as dS, type Aggregation as dT, type AggregationKindOneOf as dU, type RangeBucket as dV, type IncludeMissingValuesOptions as dW, type ValueAggregation as dX, type ValueAggregationOptionsOneOf as dY, type RangeAggregation as dZ, type ScalarAggregation as d_, type ListItemNodeData as da, type Metadata as db, type DocumentStyle as dc, type TextNodeStyle as dd, type ExtendedFields as de, type InvalidateCache as df, type InvalidateCacheGetByOneOf as dg, type App as dh, type Page as di, type URI as dj, type File as dk, type CustomTag as dl, type Pages as dm, type URIs as dn, type CategoryMoved as dp, type ItemAddedToCategory as dq, type ItemsAddedToCategory as dr, type ItemRemovedFromCategory as ds, type ItemsRemovedFromCategory as dt, type ItemsArrangedInCategory as du, type CreateCategoryRequest as dv, type CreateCategoryResponse as dw, type DuplicateHandleErrorData as dx, type GetCategoryRequest as dy, type GetCategoryResponse as dz, type GetCategoryBySlugResponse as e, type GetCategoriesTreeRequest as e$, type NestedAggregationItem as e0, type NestedAggregationItemKindOneOf as e1, type NestedAggregation as e2, type SearchDetails as e3, type AggregationData as e4, type ValueAggregationResult as e5, type RangeAggregationResult as e6, type NestedAggregationResults as e7, type NestedAggregationResultsResultOneOf as e8, type ValueResults as e9, type ApplicationError as eA, type BulkActionMetadata as eB, type UpdateCategoryVisibilityRequest as eC, type BulkShowCategoriesRequest as eD, type BulkDeleteCategoriesRequest as eE, type BulkDeleteCategoriesResponse as eF, type BulkDeleteCategoriesResponseBulkCategoriesResult as eG, type BulkAddItemsToCategoryRequest as eH, type BulkItemsToCategoryResult as eI, type ItemReferenceMetadata as eJ, type BulkAddItemToCategoriesRequest as eK, type BulkItemToCategoriesResult as eL, type BulkRemoveItemsFromCategoryRequest as eM, type BulkRemoveItemFromCategoriesRequest as eN, type ListItemsInCategoryRequest as eO, type ListItemsInCategoryRequestPagingMethodOneOf as eP, type PagingMetadataV2 as eQ, type ListCategoriesForItemRequest as eR, type ListCategoriesForItemsRequest as eS, type MapItemToCategories as eT, type ListTreesRequest as eU, type MoveItemInCategoryRequest as eV, type MoveItemInCategoryResponse as eW, type SetArrangedItemsRequest as eX, type GetArrangedItemsRequest as eY, type BulkSetItemCategoriesRequest as eZ, type BulkSetItemCategoriesResponse as e_, type RangeResults as ea, type AggregationResultsScalarResult as eb, type NestedValueAggregationResult as ec, type ValueResult as ed, type RangeResult as ee, type ScalarResult as ef, type NestedResultValue as eg, type NestedResultValueResultOneOf as eh, type Results as ei, type DateHistogramResult as ej, type GroupByValueResults as ek, type DateHistogramResults as el, type NestedResults as em, type AggregationResults as en, type AggregationResultsResultOneOf as eo, type DeprecatedSearchCategoriesWithOffsetRequest as ep, type OffsetSearch as eq, type OffsetSearchPagingMethodOneOf as er, type Paging as es, type DeprecatedSearchCategoriesWithOffsetResponse as et, type PagingMetadata as eu, type CountCategoriesRequest as ev, type MoveCategoryRequest as ew, type BulkUpdateCategoriesRequest as ex, type BulkCategoriesResult as ey, type ItemMetadata as ez, type UpdateCategoryOptions as f, type AlignmentWithLiterals as f$, type GetCategoriesTreeResponse as f0, type CategoryTreeNode as f1, type DomainEvent as f2, type DomainEventBodyOneOf as f3, type EntityCreatedEvent as f4, type RestoreInfo as f5, type EntityUpdatedEvent as f6, type EntityDeletedEvent as f7, type ActionEvent as f8, type Empty as f9, type TargetWithLiterals as fA, type TextAlignmentWithLiterals as fB, type LineStyleWithLiterals as fC, type WidthWithLiterals as fD, type DividerDataAlignmentWithLiterals as fE, type ViewModeWithLiterals as fF, type LayoutTypeWithLiterals as fG, type OrientationWithLiterals as fH, type CropWithLiterals as fI, type ThumbnailsAlignmentWithLiterals as fJ, type GIFTypeWithLiterals as fK, type SourceWithLiterals as fL, type StylesPositionWithLiterals as fM, type MapTypeWithLiterals as fN, type ViewRoleWithLiterals as fO, type VoteRoleWithLiterals as fP, type PollLayoutTypeWithLiterals as fQ, type PollLayoutDirectionWithLiterals as fR, type PollDesignBackgroundTypeWithLiterals as fS, type DecorationTypeWithLiterals as fT, type FontTypeWithLiterals as fU, type VariantWithLiterals as fV, type ImageStylesPositionWithLiterals as fW, type AspectRatioWithLiterals as fX, type ResizingWithLiterals as fY, type PlacementWithLiterals as fZ, type TypeWithLiterals as f_, type BulkCreateCategoriesForMigrationRequest as fa, type BulkCreateCategoriesForMigrationResponse as fb, type BulkAddItemsToCategoryForMigrationRequest as fc, type BulkAddItemsToCategoryForMigrationResponse as fd, type SetArrangedItemsForMigrationRequest as fe, type SetArrangedItemsForMigrationResponse as ff, type CatalogRollbackRequested as fg, type MessageEnvelope as fh, type IdentificationData as fi, type IdentificationDataIdOneOf as fj, type AccountInfo as fk, type BaseEventMetadata as fl, type EventMetadata as fm, type AccountInfoMetadata as fn, type CategoriesQueryResult as fo, type CategoryQuerySpec as fp, type CategorySearchSpec as fq, type ListItemsInCategoryOptionsPagingMethodOneOf as fr, type BulkSetItemCategoriesOptions as fs, utils as ft, type NodeTypeWithLiterals as fu, type BackgroundTypeWithLiterals as fv, type GradientTypeWithLiterals as fw, type WidthTypeWithLiterals as fx, type PluginContainerDataAlignmentWithLiterals as fy, type ButtonDataTypeWithLiterals as fz, type UpdateCategoryApplicationErrors as g, listCategoriesForItems as g$, type LayoutWithLiterals as g0, type AppTypeWithLiterals as g1, type InitialExpandedItemsWithLiterals as g2, type DirectionWithLiterals as g3, type VerticalAlignmentWithLiterals as g4, type NullValueWithLiterals as g5, type ImageScalingScalingWithLiterals as g6, type ImagePositionWithLiterals as g7, type OriginWithLiterals as g8, type BannerPositionWithLiterals as g9, type BulkSetItemCategoriesApplicationErrors 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 LayoutDataBackgroundTypeWithLiterals as ga, type BackdropTypeWithLiterals as gb, type VerticalAlignmentAlignmentWithLiterals as gc, type ResponsivenessBehaviourWithLiterals as gd, type DesignTargetWithLiterals as ge, type ScalingWithLiterals as gf, type ImagePositionPositionWithLiterals as gg, type CardDataBackgroundTypeWithLiterals as gh, type ListStyleWithLiterals as gi, type IndentationWithLiterals as gj, type SmartBlockDataTypeWithLiterals as gk, type ColumnSizeWithLiterals as gl, type SingleEntityOpsRequestedFieldsWithLiterals as gm, type SortOrderWithLiterals as gn, type RequestedFieldsWithLiterals as go, type SortTypeWithLiterals as gp, type SortDirectionWithLiterals as gq, type MissingValuesWithLiterals as gr, type ScalarTypeWithLiterals as gs, type NestedAggregationTypeWithLiterals as gt, type IntervalWithLiterals as gu, type AggregationTypeWithLiterals as gv, type ModeWithLiterals as gw, type PositionWithLiterals as gx, type MoveItemInCategoryRequestPositionWithLiterals as gy, type WebhookIdentityTypeWithLiterals as gz, type CategorySearch as h, listTrees as h0, setArrangedItems as h1, getArrangedItems as h2, 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 };
|
|
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 };
|
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-DJWQRoO8.js';
|
|
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';
|
|
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 };
|