@wix/auto_sdk_categories_categories 1.0.101 → 1.0.103
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-D-RMbvs6.d.ts → categories-v1-category-categories.universal-CeusNKQS.d.ts} +62 -4
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +14 -9
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +14 -9
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +58 -2
- package/build/cjs/meta.js +7 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{categories-v1-category-categories.universal-D-RMbvs6.d.mts → categories-v1-category-categories.universal-CeusNKQS.d.mts} +62 -4
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +11 -5
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +11 -5
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +58 -2
- package/build/es/meta.mjs +6 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{categories-v1-category-categories.universal-DmT8C1-o.d.ts → categories-v1-category-categories.universal-DnJjSmaR.d.ts} +62 -4
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +14 -9
- 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 +14 -9
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +58 -2
- package/build/internal/cjs/meta.js +7 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{categories-v1-category-categories.universal-DmT8C1-o.d.mts → categories-v1-category-categories.universal-DnJjSmaR.d.mts} +62 -4
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +11 -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 +11 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +58 -2
- package/build/internal/es/meta.mjs +6 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -1996,6 +1996,8 @@ interface LayoutData {
|
|
|
1996
1996
|
containerData?: PluginContainerData;
|
|
1997
1997
|
/** Defines where selected design propertied applies to */
|
|
1998
1998
|
designTarget?: DesignTargetWithLiterals;
|
|
1999
|
+
/** Banner configuration. When present, this layout is displayed as a banner. */
|
|
2000
|
+
banner?: Banner;
|
|
1999
2001
|
}
|
|
2000
2002
|
declare enum Scaling {
|
|
2001
2003
|
/** Auto image scaling */
|
|
@@ -2029,6 +2031,14 @@ declare enum ImagePosition {
|
|
|
2029
2031
|
}
|
|
2030
2032
|
/** @enumType */
|
|
2031
2033
|
type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
2034
|
+
declare enum Origin {
|
|
2035
|
+
/** Banner originated from an image */
|
|
2036
|
+
IMAGE = "IMAGE",
|
|
2037
|
+
/** Banner originated from a layout */
|
|
2038
|
+
LAYOUT = "LAYOUT"
|
|
2039
|
+
}
|
|
2040
|
+
/** @enumType */
|
|
2041
|
+
type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
|
|
2032
2042
|
interface BackgroundImage {
|
|
2033
2043
|
/** Background image. */
|
|
2034
2044
|
media?: Media;
|
|
@@ -2065,6 +2075,10 @@ declare enum DesignTarget {
|
|
|
2065
2075
|
}
|
|
2066
2076
|
/** @enumType */
|
|
2067
2077
|
type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
|
|
2078
|
+
interface Banner {
|
|
2079
|
+
/** Origin of the banner */
|
|
2080
|
+
origin?: OriginWithLiterals;
|
|
2081
|
+
}
|
|
2068
2082
|
interface LayoutCellData {
|
|
2069
2083
|
/** Size of the cell in 12 columns grid. */
|
|
2070
2084
|
colSpan?: number | null;
|
|
@@ -2181,6 +2195,10 @@ interface InvalidateCache extends InvalidateCacheGetByOneOf {
|
|
|
2181
2195
|
file?: File;
|
|
2182
2196
|
/** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */
|
|
2183
2197
|
customTag?: CustomTag;
|
|
2198
|
+
/** Invalidate by multiple page ids */
|
|
2199
|
+
pages?: Pages;
|
|
2200
|
+
/** Invalidate by multiple URI paths */
|
|
2201
|
+
uris?: URIs;
|
|
2184
2202
|
/**
|
|
2185
2203
|
* tell us why you're invalidating the cache. You don't need to add your app name
|
|
2186
2204
|
* @maxLength 256
|
|
@@ -2189,6 +2207,14 @@ interface InvalidateCache extends InvalidateCacheGetByOneOf {
|
|
|
2189
2207
|
/** Is local DS */
|
|
2190
2208
|
localDc?: boolean;
|
|
2191
2209
|
hardPurge?: boolean;
|
|
2210
|
+
/**
|
|
2211
|
+
* Optional caller-provided ID for tracking this invalidation through the system.
|
|
2212
|
+
* When set, the corresponding CDN purge completion event will include this ID,
|
|
2213
|
+
* allowing you to confirm when the invalidation has fully propagated.
|
|
2214
|
+
* Example: generate a UUID, pass it here, and later match it in the CDN purge completion event.
|
|
2215
|
+
* @maxLength 256
|
|
2216
|
+
*/
|
|
2217
|
+
correlationId?: string | null;
|
|
2192
2218
|
}
|
|
2193
2219
|
/** @oneof */
|
|
2194
2220
|
interface InvalidateCacheGetByOneOf {
|
|
@@ -2212,6 +2238,10 @@ interface InvalidateCacheGetByOneOf {
|
|
|
2212
2238
|
file?: File;
|
|
2213
2239
|
/** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */
|
|
2214
2240
|
customTag?: CustomTag;
|
|
2241
|
+
/** Invalidate by multiple page ids */
|
|
2242
|
+
pages?: Pages;
|
|
2243
|
+
/** Invalidate by multiple URI paths */
|
|
2244
|
+
uris?: URIs;
|
|
2215
2245
|
}
|
|
2216
2246
|
interface App {
|
|
2217
2247
|
/**
|
|
@@ -2275,6 +2305,32 @@ interface CustomTag {
|
|
|
2275
2305
|
*/
|
|
2276
2306
|
tag?: string;
|
|
2277
2307
|
}
|
|
2308
|
+
interface Pages {
|
|
2309
|
+
/**
|
|
2310
|
+
* the msid the pages are on
|
|
2311
|
+
* @format GUID
|
|
2312
|
+
*/
|
|
2313
|
+
metaSiteId?: string;
|
|
2314
|
+
/**
|
|
2315
|
+
* Invalidate by multiple Page IDs in a single message
|
|
2316
|
+
* @maxSize 100
|
|
2317
|
+
* @minLength 1
|
|
2318
|
+
*/
|
|
2319
|
+
pageIds?: string[];
|
|
2320
|
+
}
|
|
2321
|
+
interface URIs {
|
|
2322
|
+
/**
|
|
2323
|
+
* the msid the URIs are on
|
|
2324
|
+
* @format GUID
|
|
2325
|
+
*/
|
|
2326
|
+
metaSiteId?: string;
|
|
2327
|
+
/**
|
|
2328
|
+
* URI paths to invalidate (e.g. page/my/path) - without leading/trailing slashes
|
|
2329
|
+
* @maxSize 100
|
|
2330
|
+
* @minLength 1
|
|
2331
|
+
*/
|
|
2332
|
+
uriPaths?: string[];
|
|
2333
|
+
}
|
|
2278
2334
|
interface CategoryMoved {
|
|
2279
2335
|
/**
|
|
2280
2336
|
* Category ID.
|
|
@@ -4788,9 +4844,11 @@ type CategoryQuery = {
|
|
|
4788
4844
|
order?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['order'];
|
|
4789
4845
|
}[];
|
|
4790
4846
|
};
|
|
4791
|
-
declare const
|
|
4792
|
-
|
|
4793
|
-
|
|
4847
|
+
declare const utils: {
|
|
4848
|
+
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Category, CategoryQuerySpec, CategoryQuery>;
|
|
4849
|
+
Filter: _wix_sdk_types.FilterFactory<Category, CategoryQuerySpec>;
|
|
4850
|
+
Sort: _wix_sdk_types.SortFactory<CategoryQuerySpec>;
|
|
4851
|
+
};
|
|
4794
4852
|
interface SearchCategoriesOptions {
|
|
4795
4853
|
/**
|
|
4796
4854
|
* Category tree reference details.
|
|
@@ -5387,4 +5445,4 @@ interface BulkSetItemCategoriesOptions {
|
|
|
5387
5445
|
treeReference: TreeReference;
|
|
5388
5446
|
}
|
|
5389
5447
|
|
|
5390
|
-
export { type CategoryDeletedEnvelope as $, type BulkRemoveItemsFromCategoryResponse as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkRemoveItemsFromCategoryApplicationErrors as E, type BulkRemoveItemFromCategoriesOptions as F, type GetCategoryOptions as G, type BulkRemoveItemFromCategoriesResponse as H, type ItemReference as I, type BulkRemoveItemFromCategoriesApplicationErrors as J, type ListItemsInCategoryResponse as K, type ListItemsInCategoryOptions as L, type MoveCategoryOptions as M, type ListCategoriesForItemOptions as N, type ListCategoriesForItemResponse as O, type ListCategoriesForItemsOptions as P, type ListCategoriesForItemsResponse as Q, type ListTreesResponse as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type SetArrangedItemsOptions as V, type SetArrangedItemsResponse as W, type SetArrangedItemsApplicationErrors as X, type GetArrangedItemsResponse as Y, type CategoryMovedEnvelope as Z, type CategoryCreatedEnvelope as _, type CreateCategoryOptions as a, WebhookIdentityType as a$, type CategoryItemAddedToCategoryEnvelope as a0, type CategoryItemRemovedFromCategoryEnvelope as a1, type CategoryItemsArrangedInCategoryEnvelope as a2, type CategoryUpdatedEnvelope as a3, type CategoryQuery as a4, type QueryCategoriesOptions as a5, typedQueryCategories as a6, type CategoriesQueryBuilder as a7, NodeType as a8, WidthType as a9, Placement as aA, Type as aB, Alignment as aC, Layout as aD, AppType as aE, InitialExpandedItems as aF, Direction as aG, VerticalAlignment as aH, NullValue as aI, Scaling as aJ, ImagePosition as aK, VerticalAlignmentAlignment as aL, ResponsivenessBehaviour as aM, DesignTarget as aN, SingleEntityOpsRequestedFields as aO, SortOrder as aP, RequestedFields as aQ, SortType as aR, SortDirection as aS, MissingValues as aT, ScalarType as aU, NestedAggregationType as aV, Interval as aW, AggregationType as aX, Mode as aY, Position as aZ, MoveItemInCategoryRequestPosition as a_, PluginContainerDataAlignment as aa, ButtonDataType as ab, Target as ac, TextAlignment as ad, LineStyle as ae, Width as af, DividerDataAlignment as ag, ViewMode as ah, LayoutType as ai, Orientation as aj, Crop as ak, ThumbnailsAlignment as al, GIFType as am, Source as an, StylesPosition as ao, MapType as ap, ViewRole as aq, VoteRole as ar, PollLayoutType as as, PollLayoutDirection as at, BackgroundType as au, DecorationType as av, FontType as aw, ImageStylesPosition as ax, AspectRatio as ay, Resizing as az, type CreateCategoryApplicationErrors as b, type OptionDesign as b$, type BreadcrumbsInfo as b0, type Breadcrumb as b1, type ParentCategory as b2, type SeoSchema as b3, type Keyword as b4, type Tag as b5, type Settings as b6, type RichContent as b7, type Node as b8, type NodeDataOneOf as b9, type GalleryOptions as bA, type GalleryOptionsLayout as bB, type ItemStyle as bC, type Thumbnails as bD, type GIFData as bE, type GIF as bF, type HeadingData as bG, type HTMLData as bH, type HTMLDataDataOneOf as bI, type ImageData as bJ, type StylesBorder as bK, type ImageDataStyles as bL, type LinkPreviewData as bM, type LinkPreviewDataStyles as bN, type MapData as bO, type MapSettings as bP, type ParagraphData as bQ, type PollData as bR, type Permissions as bS, type Option as bT, type PollSettings as bU, type PollLayout as bV, type OptionLayout as bW, type Gradient as bX, type Background as bY, type BackgroundBackgroundOneOf as bZ, type PollDesign as b_, type NodeStyle as ba, type ButtonData as bb, type Border as bc, type Colors as bd, type PluginContainerData as be, type PluginContainerDataWidth as bf, type PluginContainerDataWidthDataOneOf as bg, type Spoiler as bh, type Height as bi, type Styles as bj, type Link as bk, type LinkDataOneOf as bl, type Rel as bm, type CodeBlockData as bn, type TextStyle as bo, type DividerData as bp, type FileData as bq, type FileSource as br, type FileSourceDataOneOf as bs, type PDFSettings as bt, type GalleryData as bu, type Media as bv, type Image as bw, type Video as bx, type Item as by, type ItemDataOneOf as bz, type CreateCategoryValidationErrors as c, type DuplicateHandleErrorData as c$, type Poll as c0, type PollDataLayout as c1, type Design as c2, type TextData as c3, type Decoration as c4, type DecorationDataOneOf as c5, type AnchorData as c6, type ColorData as c7, type LinkData as c8, type MentionData as c9, type BulletedListData as cA, type BlockquoteData as cB, type CaptionData as cC, type LayoutData as cD, type BackgroundImage as cE, type LayoutCellData as cF, type ShapeData as cG, type ShapeDataStyles as cH, type Metadata as cI, type DocumentStyle as cJ, type TextNodeStyle as cK, type ExtendedFields as cL, type InvalidateCache as cM, type InvalidateCacheGetByOneOf as cN, type App as cO, type Page as cP, type URI as cQ, type File as cR, type CustomTag as cS, type CategoryMoved as cT, type ItemAddedToCategory as cU, type ItemsAddedToCategory as cV, type ItemRemovedFromCategory as cW, type ItemsRemovedFromCategory as cX, type ItemsArrangedInCategory as cY, type CreateCategoryRequest as cZ, type CreateCategoryResponse as c_, type FontSizeData as ca, type SpoilerData as cb, type FontFamilyData as cc, type AppEmbedData as cd, type AppEmbedDataAppDataOneOf as ce, type BookingData as cf, type EventData as cg, type ButtonStyles as ch, type ImageStyles as ci, type RibbonStyles as cj, type CardStyles as ck, type PricingData as cl, type VideoData as cm, type PlaybackOptions as cn, type EmbedData as co, type Oembed as cp, type CollapsibleListData as cq, type TableData as cr, type Dimensions as cs, type TableCellData as ct, type CellStyle as cu, type BorderColors as cv, type BorderWidths as cw, type ListValue as cx, type AudioData as cy, type OrderedListData as cz, type UpdateCategoryOptions as d, type BulkUpdateCategoriesRequest as d$, type GetCategoryRequest as d0, type GetCategoryResponse as d1, type UpdateCategoryRequest as d2, type UpdateCategoryResponse as d3, type DeleteCategoryRequest as d4, type DeleteCategoryResponse as d5, type QueryCategoriesRequest as d6, type CursorQuery as d7, type CursorQueryPagingMethodOneOf as d8, type Sorting as d9, type RangeAggregationResult as dA, type NestedAggregationResults as dB, type NestedAggregationResultsResultOneOf as dC, type ValueResults as dD, type RangeResults as dE, type AggregationResultsScalarResult as dF, type NestedValueAggregationResult as dG, type ValueResult as dH, type RangeResult as dI, type ScalarResult as dJ, type NestedResultValue as dK, type NestedResultValueResultOneOf as dL, type Results as dM, type DateHistogramResult as dN, type GroupByValueResults as dO, type DateHistogramResults as dP, type NestedResults as dQ, type AggregationResults as dR, type AggregationResultsResultOneOf as dS, type DeprecatedSearchCategoriesWithOffsetRequest as dT, type OffsetSearch as dU, type OffsetSearchPagingMethodOneOf as dV, type Paging as dW, type DeprecatedSearchCategoriesWithOffsetResponse as dX, type PagingMetadata as dY, type CountCategoriesRequest as dZ, type MoveCategoryRequest as d_, type CursorPaging as da, type QueryCategoriesResponse as db, type CursorPagingMetadata as dc, type Cursors as dd, type ListCompactCategoriesByIdsRequest as de, type ListCompactCategoriesByIdsResponse as df, type CompactCategory as dg, type SearchCategoriesRequest as dh, type CursorSearch as di, type CursorSearchPagingMethodOneOf as dj, type Aggregation as dk, type AggregationKindOneOf as dl, type RangeBucket as dm, type IncludeMissingValuesOptions as dn, type ValueAggregation as dp, type ValueAggregationOptionsOneOf as dq, type RangeAggregation as dr, type ScalarAggregation as ds, type DateHistogramAggregation as dt, type NestedAggregationItem as du, type NestedAggregationItemKindOneOf as dv, type NestedAggregation as dw, type SearchDetails as dx, type AggregationData as dy, type ValueAggregationResult as dz, type UpdateCategoryApplicationErrors as e, type TargetWithLiterals as e$, type BulkCategoriesResult as e0, type ItemMetadata as e1, type ApplicationError as e2, type BulkActionMetadata as e3, type UpdateCategoryVisibilityRequest as e4, type BulkShowCategoriesRequest as e5, type BulkDeleteCategoriesRequest as e6, type BulkDeleteCategoriesResponse as e7, type BulkDeleteCategoriesResponseBulkCategoriesResult as e8, type BulkAddItemsToCategoryRequest as e9, type EntityUpdatedEvent as eA, type EntityDeletedEvent as eB, type ActionEvent as eC, type Empty as eD, type BulkCreateCategoriesForMigrationRequest as eE, type BulkCreateCategoriesForMigrationResponse as eF, type BulkAddItemsToCategoryForMigrationRequest as eG, type BulkAddItemsToCategoryForMigrationResponse as eH, type MessageEnvelope as eI, type IdentificationData as eJ, type IdentificationDataIdOneOf as eK, type AccountInfo as eL, type BaseEventMetadata as eM, type EventMetadata as eN, type AccountInfoMetadata as eO, type CategoriesQueryResult as eP, type CategoryQuerySpec as eQ, type CategorySearchSpec as eR, type ListItemsInCategoryOptionsPagingMethodOneOf as eS, type BulkSetItemCategoriesOptions as eT, QueryBuilder as eU, Filter as eV, Sort as eW, type NodeTypeWithLiterals as eX, type WidthTypeWithLiterals as eY, type PluginContainerDataAlignmentWithLiterals as eZ, type ButtonDataTypeWithLiterals as e_, type BulkItemsToCategoryResult as ea, type ItemReferenceMetadata as eb, type BulkAddItemToCategoriesRequest as ec, type BulkItemToCategoriesResult as ed, type BulkRemoveItemsFromCategoryRequest as ee, type BulkRemoveItemFromCategoriesRequest as ef, type ListItemsInCategoryRequest as eg, type ListItemsInCategoryRequestPagingMethodOneOf as eh, type PagingMetadataV2 as ei, type ListCategoriesForItemRequest as ej, type ListCategoriesForItemsRequest as ek, type MapItemToCategories as el, type ListTreesRequest as em, type MoveItemInCategoryRequest as en, type MoveItemInCategoryResponse as eo, type SetArrangedItemsRequest as ep, type GetArrangedItemsRequest as eq, type BulkSetItemCategoriesRequest as er, type BulkSetItemCategoriesResponse as es, type GetCategoriesTreeRequest as et, type GetCategoriesTreeResponse as eu, type CategoryTreeNode as ev, type DomainEvent as ew, type DomainEventBodyOneOf as ex, type EntityCreatedEvent as ey, type RestoreInfo as ez, type CategorySearch as f, updateCategory as f$, type TextAlignmentWithLiterals as f0, type LineStyleWithLiterals as f1, type WidthWithLiterals as f2, type DividerDataAlignmentWithLiterals as f3, type ViewModeWithLiterals as f4, type LayoutTypeWithLiterals as f5, type OrientationWithLiterals as f6, type CropWithLiterals as f7, type ThumbnailsAlignmentWithLiterals as f8, type GIFTypeWithLiterals as f9, type DesignTargetWithLiterals as fA, type SingleEntityOpsRequestedFieldsWithLiterals as fB, type SortOrderWithLiterals as fC, type RequestedFieldsWithLiterals as fD, type SortTypeWithLiterals as fE, type SortDirectionWithLiterals as fF, type MissingValuesWithLiterals as fG, type ScalarTypeWithLiterals as fH, type NestedAggregationTypeWithLiterals as fI, type IntervalWithLiterals as fJ, type AggregationTypeWithLiterals as fK, type ModeWithLiterals as fL, type PositionWithLiterals as fM, type MoveItemInCategoryRequestPositionWithLiterals as fN, type WebhookIdentityTypeWithLiterals as fO, type BulkSetItemCategoriesApplicationErrors as fP, type CommonQueryWithEntityContext as fQ, type CommonSearchWithEntityContext as fR, onCategoryMoved as fS, onCategoryCreated as fT, onCategoryDeleted as fU, onCategoryItemAddedToCategory as fV, onCategoryItemRemovedFromCategory as fW, onCategoryItemsArrangedInCategory as fX, onCategoryUpdated as fY, createCategory as fZ, getCategory as f_, type SourceWithLiterals as fa, type StylesPositionWithLiterals as fb, type MapTypeWithLiterals as fc, type ViewRoleWithLiterals as fd, type VoteRoleWithLiterals as fe, type PollLayoutTypeWithLiterals as ff, type PollLayoutDirectionWithLiterals as fg, type BackgroundTypeWithLiterals as fh, type DecorationTypeWithLiterals as fi, type FontTypeWithLiterals as fj, type ImageStylesPositionWithLiterals as fk, type AspectRatioWithLiterals as fl, type ResizingWithLiterals as fm, type PlacementWithLiterals as fn, type TypeWithLiterals as fo, type AlignmentWithLiterals as fp, type LayoutWithLiterals as fq, type AppTypeWithLiterals as fr, type InitialExpandedItemsWithLiterals as fs, type DirectionWithLiterals as ft, type VerticalAlignmentWithLiterals as fu, type NullValueWithLiterals as fv, type ScalingWithLiterals as fw, type ImagePositionWithLiterals as fx, type VerticalAlignmentAlignmentWithLiterals as fy, type ResponsivenessBehaviourWithLiterals as fz, type SearchCategoriesResponse as g, deleteCategory as g0, queryCategories as g1, countCategories as g2, moveCategory as g3, bulkUpdateCategories as g4, updateCategoryVisibility as g5, bulkShowCategories as g6, bulkAddItemsToCategory as g7, bulkAddItemToCategories as g8, bulkRemoveItemsFromCategory as g9, bulkRemoveItemFromCategories as ga, listItemsInCategory as gb, listCategoriesForItem as gc, listCategoriesForItems as gd, listTrees as ge, setArrangedItems as gf, getArrangedItems as gg, type CountCategoriesOptions as h, type CountCategoriesResponse as i, type MoveCategoryResponse as j, type MoveCategoryApplicationErrors as k, type MaskedCategory as l, type BulkUpdateCategoriesResponse as m, type BulkUpdateCategoriesApplicationErrors as n, type UpdateCategoryVisibilityOptions as o, type UpdateCategoryVisibilityResponse as p, type UpdateCategoryVisibilityApplicationErrors as q, type BulkShowCategoriesOptions as r, type BulkShowCategoriesResponse as s, type BulkAddItemsToCategoryOptions as t, type BulkAddItemsToCategoryResponse as u, type BulkAddItemsToCategoryApplicationErrors as v, type BulkAddItemToCategoriesOptions as w, type BulkAddItemToCategoriesResponse as x, type BulkAddItemToCategoriesApplicationErrors as y, type BulkRemoveItemsFromCategoryOptions as z };
|
|
5448
|
+
export { type CategoryDeletedEnvelope as $, type BulkRemoveItemsFromCategoryResponse as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkRemoveItemsFromCategoryApplicationErrors as E, type BulkRemoveItemFromCategoriesOptions as F, type GetCategoryOptions as G, type BulkRemoveItemFromCategoriesResponse as H, type ItemReference as I, type BulkRemoveItemFromCategoriesApplicationErrors as J, type ListItemsInCategoryResponse as K, type ListItemsInCategoryOptions as L, type MoveCategoryOptions as M, type ListCategoriesForItemOptions as N, type ListCategoriesForItemResponse as O, type ListCategoriesForItemsOptions as P, type ListCategoriesForItemsResponse as Q, type ListTreesResponse as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type SetArrangedItemsOptions as V, type SetArrangedItemsResponse as W, type SetArrangedItemsApplicationErrors as X, type GetArrangedItemsResponse as Y, type CategoryMovedEnvelope as Z, type CategoryCreatedEnvelope as _, type CreateCategoryOptions as a, MoveItemInCategoryRequestPosition as a$, type CategoryItemAddedToCategoryEnvelope as a0, type CategoryItemRemovedFromCategoryEnvelope as a1, type CategoryItemsArrangedInCategoryEnvelope as a2, type CategoryUpdatedEnvelope as a3, type CategoryQuery as a4, type QueryCategoriesOptions as a5, typedQueryCategories as a6, type CategoriesQueryBuilder as a7, NodeType as a8, WidthType as a9, Placement as aA, Type as aB, Alignment as aC, Layout as aD, AppType as aE, InitialExpandedItems as aF, Direction as aG, VerticalAlignment as aH, NullValue as aI, Scaling as aJ, ImagePosition as aK, Origin as aL, VerticalAlignmentAlignment as aM, ResponsivenessBehaviour as aN, DesignTarget as aO, SingleEntityOpsRequestedFields as aP, SortOrder as aQ, RequestedFields as aR, SortType as aS, SortDirection as aT, MissingValues as aU, ScalarType as aV, NestedAggregationType as aW, Interval as aX, AggregationType as aY, Mode as aZ, Position as a_, PluginContainerDataAlignment as aa, ButtonDataType as ab, Target as ac, TextAlignment as ad, LineStyle as ae, Width as af, DividerDataAlignment as ag, ViewMode as ah, LayoutType as ai, Orientation as aj, Crop as ak, ThumbnailsAlignment as al, GIFType as am, Source as an, StylesPosition as ao, MapType as ap, ViewRole as aq, VoteRole as ar, PollLayoutType as as, PollLayoutDirection as at, BackgroundType as au, DecorationType as av, FontType as aw, ImageStylesPosition as ax, AspectRatio as ay, Resizing as az, type CreateCategoryApplicationErrors as b, type PollDesign as b$, WebhookIdentityType as b0, type BreadcrumbsInfo as b1, type Breadcrumb as b2, type ParentCategory as b3, type SeoSchema as b4, type Keyword as b5, type Tag as b6, type Settings as b7, type RichContent as b8, type Node as b9, type ItemDataOneOf as bA, type GalleryOptions as bB, type GalleryOptionsLayout as bC, type ItemStyle as bD, type Thumbnails as bE, type GIFData as bF, type GIF as bG, type HeadingData as bH, type HTMLData as bI, type HTMLDataDataOneOf as bJ, type ImageData as bK, type StylesBorder as bL, type ImageDataStyles as bM, type LinkPreviewData as bN, type LinkPreviewDataStyles as bO, type MapData as bP, type MapSettings as bQ, type ParagraphData as bR, type PollData as bS, type Permissions as bT, type Option as bU, type PollSettings as bV, type PollLayout as bW, type OptionLayout as bX, type Gradient as bY, type Background as bZ, type BackgroundBackgroundOneOf as b_, type NodeDataOneOf as ba, type NodeStyle as bb, type ButtonData as bc, type Border as bd, type Colors as be, type PluginContainerData as bf, type PluginContainerDataWidth as bg, type PluginContainerDataWidthDataOneOf as bh, type Spoiler as bi, type Height as bj, type Styles as bk, type Link as bl, type LinkDataOneOf as bm, type Rel as bn, type CodeBlockData as bo, type TextStyle as bp, type DividerData as bq, type FileData as br, type FileSource as bs, type FileSourceDataOneOf as bt, type PDFSettings as bu, type GalleryData as bv, type Media as bw, type Image as bx, type Video as by, type Item as bz, type CreateCategoryValidationErrors as c, type ItemsRemovedFromCategory as c$, type OptionDesign as c0, type Poll as c1, type PollDataLayout as c2, type Design as c3, type TextData as c4, type Decoration as c5, type DecorationDataOneOf as c6, type AnchorData as c7, type ColorData as c8, type LinkData as c9, type OrderedListData as cA, type BulletedListData as cB, type BlockquoteData as cC, type CaptionData as cD, type LayoutData as cE, type BackgroundImage as cF, type Banner as cG, type LayoutCellData as cH, type ShapeData as cI, type ShapeDataStyles as cJ, type Metadata as cK, type DocumentStyle as cL, type TextNodeStyle as cM, type ExtendedFields as cN, type InvalidateCache as cO, type InvalidateCacheGetByOneOf as cP, type App as cQ, type Page as cR, type URI as cS, type File as cT, type CustomTag as cU, type Pages as cV, type URIs as cW, type CategoryMoved as cX, type ItemAddedToCategory as cY, type ItemsAddedToCategory as cZ, type ItemRemovedFromCategory as c_, type MentionData as ca, type FontSizeData as cb, type SpoilerData as cc, type FontFamilyData as cd, type AppEmbedData as ce, type AppEmbedDataAppDataOneOf as cf, type BookingData as cg, type EventData as ch, type ButtonStyles as ci, type ImageStyles as cj, type RibbonStyles as ck, type CardStyles as cl, type PricingData as cm, type VideoData as cn, type PlaybackOptions as co, type EmbedData as cp, type Oembed as cq, type CollapsibleListData as cr, type TableData as cs, type Dimensions as ct, type TableCellData as cu, type CellStyle as cv, type BorderColors as cw, type BorderWidths as cx, type ListValue as cy, type AudioData as cz, type UpdateCategoryOptions as d, type DeprecatedSearchCategoriesWithOffsetResponse as d$, type ItemsArrangedInCategory as d0, type CreateCategoryRequest as d1, type CreateCategoryResponse as d2, type DuplicateHandleErrorData as d3, type GetCategoryRequest as d4, type GetCategoryResponse as d5, type UpdateCategoryRequest as d6, type UpdateCategoryResponse as d7, type DeleteCategoryRequest as d8, type DeleteCategoryResponse as d9, type NestedAggregation as dA, type SearchDetails as dB, type AggregationData as dC, type ValueAggregationResult as dD, type RangeAggregationResult as dE, type NestedAggregationResults as dF, type NestedAggregationResultsResultOneOf as dG, type ValueResults as dH, type RangeResults as dI, type AggregationResultsScalarResult as dJ, type NestedValueAggregationResult as dK, type ValueResult as dL, type RangeResult as dM, type ScalarResult as dN, type NestedResultValue as dO, type NestedResultValueResultOneOf as dP, type Results as dQ, type DateHistogramResult as dR, type GroupByValueResults as dS, type DateHistogramResults as dT, type NestedResults as dU, type AggregationResults as dV, type AggregationResultsResultOneOf as dW, type DeprecatedSearchCategoriesWithOffsetRequest as dX, type OffsetSearch as dY, type OffsetSearchPagingMethodOneOf as dZ, type Paging as d_, type QueryCategoriesRequest as da, type CursorQuery as db, type CursorQueryPagingMethodOneOf as dc, type Sorting as dd, type CursorPaging as de, type QueryCategoriesResponse as df, type CursorPagingMetadata as dg, type Cursors as dh, type ListCompactCategoriesByIdsRequest as di, type ListCompactCategoriesByIdsResponse as dj, type CompactCategory as dk, type SearchCategoriesRequest as dl, type CursorSearch as dm, type CursorSearchPagingMethodOneOf as dn, type Aggregation as dp, type AggregationKindOneOf as dq, type RangeBucket as dr, type IncludeMissingValuesOptions as ds, type ValueAggregation as dt, type ValueAggregationOptionsOneOf as du, type RangeAggregation as dv, type ScalarAggregation as dw, type DateHistogramAggregation as dx, type NestedAggregationItem as dy, type NestedAggregationItemKindOneOf as dz, type UpdateCategoryApplicationErrors as e, type PluginContainerDataAlignmentWithLiterals as e$, type PagingMetadata as e0, type CountCategoriesRequest as e1, type MoveCategoryRequest as e2, type BulkUpdateCategoriesRequest as e3, type BulkCategoriesResult as e4, type ItemMetadata as e5, type ApplicationError as e6, type BulkActionMetadata as e7, type UpdateCategoryVisibilityRequest as e8, type BulkShowCategoriesRequest as e9, type DomainEvent as eA, type DomainEventBodyOneOf as eB, type EntityCreatedEvent as eC, type RestoreInfo as eD, type EntityUpdatedEvent as eE, type EntityDeletedEvent as eF, type ActionEvent as eG, type Empty as eH, type BulkCreateCategoriesForMigrationRequest as eI, type BulkCreateCategoriesForMigrationResponse as eJ, type BulkAddItemsToCategoryForMigrationRequest as eK, type BulkAddItemsToCategoryForMigrationResponse as eL, type MessageEnvelope as eM, type IdentificationData as eN, type IdentificationDataIdOneOf as eO, type AccountInfo as eP, type BaseEventMetadata as eQ, type EventMetadata as eR, type AccountInfoMetadata as eS, type CategoriesQueryResult as eT, type CategoryQuerySpec as eU, type CategorySearchSpec as eV, type ListItemsInCategoryOptionsPagingMethodOneOf as eW, type BulkSetItemCategoriesOptions as eX, utils as eY, type NodeTypeWithLiterals as eZ, type WidthTypeWithLiterals as e_, type BulkDeleteCategoriesRequest as ea, type BulkDeleteCategoriesResponse as eb, type BulkDeleteCategoriesResponseBulkCategoriesResult as ec, type BulkAddItemsToCategoryRequest as ed, type BulkItemsToCategoryResult as ee, type ItemReferenceMetadata as ef, type BulkAddItemToCategoriesRequest as eg, type BulkItemToCategoriesResult as eh, type BulkRemoveItemsFromCategoryRequest as ei, type BulkRemoveItemFromCategoriesRequest as ej, type ListItemsInCategoryRequest as ek, type ListItemsInCategoryRequestPagingMethodOneOf as el, type PagingMetadataV2 as em, type ListCategoriesForItemRequest as en, type ListCategoriesForItemsRequest as eo, type MapItemToCategories as ep, type ListTreesRequest as eq, type MoveItemInCategoryRequest as er, type MoveItemInCategoryResponse as es, type SetArrangedItemsRequest as et, type GetArrangedItemsRequest as eu, type BulkSetItemCategoriesRequest as ev, type BulkSetItemCategoriesResponse as ew, type GetCategoriesTreeRequest as ex, type GetCategoriesTreeResponse as ey, type CategoryTreeNode as ez, type CategorySearch as f, onCategoryUpdated as f$, type ButtonDataTypeWithLiterals as f0, type TargetWithLiterals as f1, type TextAlignmentWithLiterals as f2, type LineStyleWithLiterals as f3, type WidthWithLiterals as f4, type DividerDataAlignmentWithLiterals as f5, type ViewModeWithLiterals as f6, type LayoutTypeWithLiterals as f7, type OrientationWithLiterals as f8, type CropWithLiterals as f9, type OriginWithLiterals as fA, type VerticalAlignmentAlignmentWithLiterals as fB, type ResponsivenessBehaviourWithLiterals as fC, type DesignTargetWithLiterals as fD, type SingleEntityOpsRequestedFieldsWithLiterals as fE, type SortOrderWithLiterals as fF, type RequestedFieldsWithLiterals as fG, type SortTypeWithLiterals as fH, type SortDirectionWithLiterals as fI, type MissingValuesWithLiterals as fJ, type ScalarTypeWithLiterals as fK, type NestedAggregationTypeWithLiterals as fL, type IntervalWithLiterals as fM, type AggregationTypeWithLiterals as fN, type ModeWithLiterals as fO, type PositionWithLiterals as fP, type MoveItemInCategoryRequestPositionWithLiterals as fQ, type WebhookIdentityTypeWithLiterals as fR, type BulkSetItemCategoriesApplicationErrors as fS, type CommonQueryWithEntityContext as fT, type CommonSearchWithEntityContext as fU, onCategoryMoved as fV, onCategoryCreated as fW, onCategoryDeleted as fX, onCategoryItemAddedToCategory as fY, onCategoryItemRemovedFromCategory as fZ, onCategoryItemsArrangedInCategory as f_, type ThumbnailsAlignmentWithLiterals as fa, type GIFTypeWithLiterals as fb, type SourceWithLiterals as fc, type StylesPositionWithLiterals as fd, type MapTypeWithLiterals as fe, type ViewRoleWithLiterals as ff, type VoteRoleWithLiterals as fg, type PollLayoutTypeWithLiterals as fh, type PollLayoutDirectionWithLiterals as fi, type BackgroundTypeWithLiterals as fj, type DecorationTypeWithLiterals as fk, type FontTypeWithLiterals as fl, type ImageStylesPositionWithLiterals as fm, type AspectRatioWithLiterals as fn, type ResizingWithLiterals as fo, type PlacementWithLiterals as fp, type TypeWithLiterals as fq, type AlignmentWithLiterals as fr, type LayoutWithLiterals as fs, type AppTypeWithLiterals as ft, type InitialExpandedItemsWithLiterals as fu, type DirectionWithLiterals as fv, type VerticalAlignmentWithLiterals as fw, type NullValueWithLiterals as fx, type ScalingWithLiterals as fy, type ImagePositionWithLiterals as fz, type SearchCategoriesResponse as g, createCategory as g0, getCategory as g1, updateCategory as g2, deleteCategory as g3, queryCategories as g4, countCategories as g5, moveCategory as g6, bulkUpdateCategories as g7, updateCategoryVisibility as g8, bulkShowCategories as g9, bulkAddItemsToCategory as ga, bulkAddItemToCategories as gb, bulkRemoveItemsFromCategory as gc, bulkRemoveItemFromCategories as gd, listItemsInCategory as ge, listCategoriesForItem as gf, listCategoriesForItems as gg, listTrees as gh, setArrangedItems as gi, getArrangedItems as gj, type CountCategoriesOptions as h, type CountCategoriesResponse as i, type MoveCategoryResponse as j, type MoveCategoryApplicationErrors as k, type MaskedCategory as l, type BulkUpdateCategoriesResponse as m, type BulkUpdateCategoriesApplicationErrors as n, type UpdateCategoryVisibilityOptions as o, type UpdateCategoryVisibilityResponse as p, type UpdateCategoryVisibilityApplicationErrors as q, type BulkShowCategoriesOptions as r, type BulkShowCategoriesResponse as s, type BulkAddItemsToCategoryOptions as t, type BulkAddItemsToCategoryResponse as u, type BulkAddItemsToCategoryApplicationErrors as v, type BulkAddItemToCategoriesOptions as w, type BulkAddItemToCategoriesResponse as x, type BulkAddItemToCategoriesApplicationErrors as y, type BulkRemoveItemsFromCategoryOptions as z };
|
package/build/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { C as Category, a as CreateCategoryOptions, b as CreateCategoryApplicationErrors, c as CreateCategoryValidationErrors, T as TreeReference, G as GetCategoryOptions, U as UpdateCategory, d as UpdateCategoryOptions, e as UpdateCategoryApplicationErrors, D as DeleteCategoryApplicationErrors, f as CategorySearch, S as SearchCategoriesOptions, g as SearchCategoriesResponse, h as CountCategoriesOptions, i as CountCategoriesResponse, M as MoveCategoryOptions, j as MoveCategoryResponse, k as MoveCategoryApplicationErrors, l as MaskedCategory, B as BulkUpdateCategoriesOptions, m as BulkUpdateCategoriesResponse, n as BulkUpdateCategoriesApplicationErrors, o as UpdateCategoryVisibilityOptions, p as UpdateCategoryVisibilityResponse, q as UpdateCategoryVisibilityApplicationErrors, r as BulkShowCategoriesOptions, s as BulkShowCategoriesResponse, I as ItemReference, t as BulkAddItemsToCategoryOptions, u as BulkAddItemsToCategoryResponse, v as BulkAddItemsToCategoryApplicationErrors, w as BulkAddItemToCategoriesOptions, x as BulkAddItemToCategoriesResponse, y as BulkAddItemToCategoriesApplicationErrors, z as BulkRemoveItemsFromCategoryOptions, A as BulkRemoveItemsFromCategoryResponse, E as BulkRemoveItemsFromCategoryApplicationErrors, F as BulkRemoveItemFromCategoriesOptions, H as BulkRemoveItemFromCategoriesResponse, J as BulkRemoveItemFromCategoriesApplicationErrors, L as ListItemsInCategoryOptions, K as ListItemsInCategoryResponse, N as ListCategoriesForItemOptions, O as ListCategoriesForItemResponse, P as ListCategoriesForItemsOptions, Q as ListCategoriesForItemsResponse, R as ListTreesResponse, V as SetArrangedItemsOptions, W as SetArrangedItemsResponse, X as SetArrangedItemsApplicationErrors, Y as GetArrangedItemsResponse, Z as CategoryMovedEnvelope, _ as CategoryCreatedEnvelope, $ as CategoryDeletedEnvelope, a0 as CategoryItemAddedToCategoryEnvelope, a1 as CategoryItemRemovedFromCategoryEnvelope, a2 as CategoryItemsArrangedInCategoryEnvelope, a3 as CategoryUpdatedEnvelope, a4 as CategoryQuery, a5 as QueryCategoriesOptions, a6 as typedQueryCategories, a7 as CategoriesQueryBuilder } from './categories-v1-category-categories.universal-
|
|
3
|
-
export {
|
|
2
|
+
import { C as Category, a as CreateCategoryOptions, b as CreateCategoryApplicationErrors, c as CreateCategoryValidationErrors, T as TreeReference, G as GetCategoryOptions, U as UpdateCategory, d as UpdateCategoryOptions, e as UpdateCategoryApplicationErrors, D as DeleteCategoryApplicationErrors, f as CategorySearch, S as SearchCategoriesOptions, g as SearchCategoriesResponse, h as CountCategoriesOptions, i as CountCategoriesResponse, M as MoveCategoryOptions, j as MoveCategoryResponse, k as MoveCategoryApplicationErrors, l as MaskedCategory, B as BulkUpdateCategoriesOptions, m as BulkUpdateCategoriesResponse, n as BulkUpdateCategoriesApplicationErrors, o as UpdateCategoryVisibilityOptions, p as UpdateCategoryVisibilityResponse, q as UpdateCategoryVisibilityApplicationErrors, r as BulkShowCategoriesOptions, s as BulkShowCategoriesResponse, I as ItemReference, t as BulkAddItemsToCategoryOptions, u as BulkAddItemsToCategoryResponse, v as BulkAddItemsToCategoryApplicationErrors, w as BulkAddItemToCategoriesOptions, x as BulkAddItemToCategoriesResponse, y as BulkAddItemToCategoriesApplicationErrors, z as BulkRemoveItemsFromCategoryOptions, A as BulkRemoveItemsFromCategoryResponse, E as BulkRemoveItemsFromCategoryApplicationErrors, F as BulkRemoveItemFromCategoriesOptions, H as BulkRemoveItemFromCategoriesResponse, J as BulkRemoveItemFromCategoriesApplicationErrors, L as ListItemsInCategoryOptions, K as ListItemsInCategoryResponse, N as ListCategoriesForItemOptions, O as ListCategoriesForItemResponse, P as ListCategoriesForItemsOptions, Q as ListCategoriesForItemsResponse, R as ListTreesResponse, V as SetArrangedItemsOptions, W as SetArrangedItemsResponse, X as SetArrangedItemsApplicationErrors, Y as GetArrangedItemsResponse, Z as CategoryMovedEnvelope, _ as CategoryCreatedEnvelope, $ as CategoryDeletedEnvelope, a0 as CategoryItemAddedToCategoryEnvelope, a1 as CategoryItemRemovedFromCategoryEnvelope, a2 as CategoryItemsArrangedInCategoryEnvelope, a3 as CategoryUpdatedEnvelope, a4 as CategoryQuery, a5 as QueryCategoriesOptions, a6 as typedQueryCategories, a7 as CategoriesQueryBuilder } from './categories-v1-category-categories.universal-CeusNKQS.js';
|
|
3
|
+
export { eP as AccountInfo, eS as AccountInfoMetadata, eG as ActionEvent, dp as Aggregation, dC as AggregationData, dq as AggregationKindOneOf, dV as AggregationResults, dW as AggregationResultsResultOneOf, dJ as AggregationResultsScalarResult, aY as AggregationType, fN as AggregationTypeWithLiterals, aC as Alignment, fr as AlignmentWithLiterals, c7 as AnchorData, cQ as App, ce as AppEmbedData, cf as AppEmbedDataAppDataOneOf, aE as AppType, ft as AppTypeWithLiterals, e6 as ApplicationError, ay as AspectRatio, fn as AspectRatioWithLiterals, cz as AudioData, bZ as Background, b_ as BackgroundBackgroundOneOf, cF as BackgroundImage, au as BackgroundType, fj as BackgroundTypeWithLiterals, cG as Banner, eQ as BaseEventMetadata, cC as BlockquoteData, cg as BookingData, bd as Border, cw as BorderColors, cx as BorderWidths, b2 as Breadcrumb, b1 as BreadcrumbsInfo, e7 as BulkActionMetadata, eg as BulkAddItemToCategoriesRequest, eK as BulkAddItemsToCategoryForMigrationRequest, eL as BulkAddItemsToCategoryForMigrationResponse, ed as BulkAddItemsToCategoryRequest, e4 as BulkCategoriesResult, eI as BulkCreateCategoriesForMigrationRequest, eJ as BulkCreateCategoriesForMigrationResponse, ea as BulkDeleteCategoriesRequest, eb as BulkDeleteCategoriesResponse, ec as BulkDeleteCategoriesResponseBulkCategoriesResult, eh as BulkItemToCategoriesResult, ee as BulkItemsToCategoryResult, ej as BulkRemoveItemFromCategoriesRequest, ei as BulkRemoveItemsFromCategoryRequest, fS as BulkSetItemCategoriesApplicationErrors, eX as BulkSetItemCategoriesOptions, ev as BulkSetItemCategoriesRequest, ew as BulkSetItemCategoriesResponse, e9 as BulkShowCategoriesRequest, e3 as BulkUpdateCategoriesRequest, cB as BulletedListData, bc as ButtonData, ab as ButtonDataType, f0 as ButtonDataTypeWithLiterals, ci as ButtonStyles, cD as CaptionData, cl as CardStyles, eT as CategoriesQueryResult, cX as CategoryMoved, eU as CategoryQuerySpec, eV as CategorySearchSpec, ez as CategoryTreeNode, cv as CellStyle, bo as CodeBlockData, cr as CollapsibleListData, c8 as ColorData, be as Colors, fT as CommonQueryWithEntityContext, fU as CommonSearchWithEntityContext, dk as CompactCategory, e1 as CountCategoriesRequest, d1 as CreateCategoryRequest, d2 as CreateCategoryResponse, ak as Crop, f9 as CropWithLiterals, de as CursorPaging, dg as CursorPagingMetadata, db as CursorQuery, dc as CursorQueryPagingMethodOneOf, dm as CursorSearch, dn as CursorSearchPagingMethodOneOf, dh as Cursors, cU as CustomTag, dx as DateHistogramAggregation, dR as DateHistogramResult, dT as DateHistogramResults, c5 as Decoration, c6 as DecorationDataOneOf, av as DecorationType, fk as DecorationTypeWithLiterals, d8 as DeleteCategoryRequest, d9 as DeleteCategoryResponse, dX as DeprecatedSearchCategoriesWithOffsetRequest, d$ as DeprecatedSearchCategoriesWithOffsetResponse, c3 as Design, aO as DesignTarget, fD as DesignTargetWithLiterals, ct as Dimensions, aG as Direction, fv as DirectionWithLiterals, bq as DividerData, ag as DividerDataAlignment, f5 as DividerDataAlignmentWithLiterals, cL as DocumentStyle, eA as DomainEvent, eB as DomainEventBodyOneOf, d3 as DuplicateHandleErrorData, cp as EmbedData, eH as Empty, eC as EntityCreatedEvent, eF as EntityDeletedEvent, eE as EntityUpdatedEvent, ch as EventData, eR as EventMetadata, cN as ExtendedFields, cT as File, br as FileData, bs as FileSource, bt as FileSourceDataOneOf, cd as FontFamilyData, cb as FontSizeData, aw as FontType, fl as FontTypeWithLiterals, bG as GIF, bF as GIFData, am as GIFType, fb as GIFTypeWithLiterals, bv as GalleryData, bB as GalleryOptions, bC as GalleryOptionsLayout, eu as GetArrangedItemsRequest, ex as GetCategoriesTreeRequest, ey as GetCategoriesTreeResponse, d4 as GetCategoryRequest, d5 as GetCategoryResponse, bY as Gradient, dS as GroupByValueResults, bI as HTMLData, bJ as HTMLDataDataOneOf, bH as HeadingData, bj as Height, eN as IdentificationData, eO as IdentificationDataIdOneOf, bx as Image, bK as ImageData, bM as ImageDataStyles, aK as ImagePosition, fz as ImagePositionWithLiterals, cj as ImageStyles, ax as ImageStylesPosition, fm as ImageStylesPositionWithLiterals, ds as IncludeMissingValuesOptions, aF as InitialExpandedItems, fu as InitialExpandedItemsWithLiterals, aX as Interval, fM as IntervalWithLiterals, cO as InvalidateCache, cP as InvalidateCacheGetByOneOf, bz as Item, cY as ItemAddedToCategory, bA as ItemDataOneOf, e5 as ItemMetadata, ef as ItemReferenceMetadata, c_ as ItemRemovedFromCategory, bD as ItemStyle, cZ as ItemsAddedToCategory, d0 as ItemsArrangedInCategory, c$ as ItemsRemovedFromCategory, b5 as Keyword, aD as Layout, cH as LayoutCellData, cE as LayoutData, ai as LayoutType, f7 as LayoutTypeWithLiterals, fs as LayoutWithLiterals, ae as LineStyle, f3 as LineStyleWithLiterals, bl as Link, c9 as LinkData, bm as LinkDataOneOf, bN as LinkPreviewData, bO as LinkPreviewDataStyles, en as ListCategoriesForItemRequest, eo as ListCategoriesForItemsRequest, di as ListCompactCategoriesByIdsRequest, dj as ListCompactCategoriesByIdsResponse, eW as ListItemsInCategoryOptionsPagingMethodOneOf, ek as ListItemsInCategoryRequest, el as ListItemsInCategoryRequestPagingMethodOneOf, eq as ListTreesRequest, cy as ListValue, bP as MapData, ep as MapItemToCategories, bQ as MapSettings, ap as MapType, fe as MapTypeWithLiterals, bw as Media, ca as MentionData, eM as MessageEnvelope, cK as Metadata, aU as MissingValues, fJ as MissingValuesWithLiterals, aZ as Mode, fO as ModeWithLiterals, e2 as MoveCategoryRequest, er as MoveItemInCategoryRequest, a$ as MoveItemInCategoryRequestPosition, fQ as MoveItemInCategoryRequestPositionWithLiterals, es as MoveItemInCategoryResponse, dA as NestedAggregation, dy as NestedAggregationItem, dz as NestedAggregationItemKindOneOf, dF as NestedAggregationResults, dG as NestedAggregationResultsResultOneOf, aW as NestedAggregationType, fL as NestedAggregationTypeWithLiterals, dO as NestedResultValue, dP as NestedResultValueResultOneOf, dU as NestedResults, dK as NestedValueAggregationResult, b9 as Node, ba as NodeDataOneOf, bb as NodeStyle, a8 as NodeType, eZ as NodeTypeWithLiterals, aI as NullValue, fx as NullValueWithLiterals, cq as Oembed, dY as OffsetSearch, dZ as OffsetSearchPagingMethodOneOf, bU as Option, c0 as OptionDesign, bX as OptionLayout, cA as OrderedListData, aj as Orientation, f8 as OrientationWithLiterals, aL as Origin, fA as OriginWithLiterals, bu as PDFSettings, cR as Page, cV as Pages, d_ as Paging, e0 as PagingMetadata, em as PagingMetadataV2, bR as ParagraphData, b3 as ParentCategory, bT as Permissions, aA as Placement, fp as PlacementWithLiterals, co as PlaybackOptions, bf as PluginContainerData, aa as PluginContainerDataAlignment, e$ as PluginContainerDataAlignmentWithLiterals, bg as PluginContainerDataWidth, bh as PluginContainerDataWidthDataOneOf, c1 as Poll, bS as PollData, c2 as PollDataLayout, b$ as PollDesign, bW as PollLayout, at as PollLayoutDirection, fi as PollLayoutDirectionWithLiterals, as as PollLayoutType, fh as PollLayoutTypeWithLiterals, bV as PollSettings, a_ as Position, fP as PositionWithLiterals, cm as PricingData, da as QueryCategoriesRequest, df as QueryCategoriesResponse, dv as RangeAggregation, dE as RangeAggregationResult, dr as RangeBucket, dM as RangeResult, dI as RangeResults, bn as Rel, aR as RequestedFields, fG as RequestedFieldsWithLiterals, az as Resizing, fo as ResizingWithLiterals, aN as ResponsivenessBehaviour, fC as ResponsivenessBehaviourWithLiterals, eD as RestoreInfo, dQ as Results, ck as RibbonStyles, b8 as RichContent, dw as ScalarAggregation, dN as ScalarResult, aV as ScalarType, fK as ScalarTypeWithLiterals, aJ as Scaling, fy as ScalingWithLiterals, dl as SearchCategoriesRequest, dB as SearchDetails, b4 as SeoSchema, et as SetArrangedItemsRequest, b7 as Settings, cI as ShapeData, cJ as ShapeDataStyles, aP as SingleEntityOpsRequestedFields, fE as SingleEntityOpsRequestedFieldsWithLiterals, aT as SortDirection, fI as SortDirectionWithLiterals, aQ as SortOrder, fF as SortOrderWithLiterals, aS as SortType, fH as SortTypeWithLiterals, dd as Sorting, an as Source, fc as SourceWithLiterals, bi as Spoiler, cc as SpoilerData, bk as Styles, bL as StylesBorder, ao as StylesPosition, fd as StylesPositionWithLiterals, cu as TableCellData, cs as TableData, b6 as Tag, ac as Target, f1 as TargetWithLiterals, ad as TextAlignment, f2 as TextAlignmentWithLiterals, c4 as TextData, cM as TextNodeStyle, bp as TextStyle, bE as Thumbnails, al as ThumbnailsAlignment, fa as ThumbnailsAlignmentWithLiterals, aB as Type, fq as TypeWithLiterals, cS as URI, cW as URIs, d6 as UpdateCategoryRequest, d7 as UpdateCategoryResponse, e8 as UpdateCategoryVisibilityRequest, dt as ValueAggregation, du as ValueAggregationOptionsOneOf, dD as ValueAggregationResult, dL as ValueResult, dH as ValueResults, aH as VerticalAlignment, aM as VerticalAlignmentAlignment, fB as VerticalAlignmentAlignmentWithLiterals, fw as VerticalAlignmentWithLiterals, by as Video, cn as VideoData, ah as ViewMode, f6 as ViewModeWithLiterals, aq as ViewRole, ff as ViewRoleWithLiterals, ar as VoteRole, fg as VoteRoleWithLiterals, b0 as WebhookIdentityType, fR as WebhookIdentityTypeWithLiterals, af as Width, a9 as WidthType, e_ as WidthTypeWithLiterals, f4 as WidthWithLiterals, eY as utils } from './categories-v1-category-categories.universal-CeusNKQS.js';
|
|
4
4
|
|
|
5
5
|
declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
|
|
6
6
|
interface CreateCategorySignature {
|
package/build/cjs/index.js
CHANGED
|
@@ -31,7 +31,6 @@ __export(index_exports, {
|
|
|
31
31
|
DesignTarget: () => DesignTarget,
|
|
32
32
|
Direction: () => Direction,
|
|
33
33
|
DividerDataAlignment: () => DividerDataAlignment,
|
|
34
|
-
Filter: () => Filter,
|
|
35
34
|
FontType: () => FontType,
|
|
36
35
|
GIFType: () => GIFType,
|
|
37
36
|
ImagePosition: () => ImagePosition,
|
|
@@ -49,19 +48,18 @@ __export(index_exports, {
|
|
|
49
48
|
NodeType: () => NodeType,
|
|
50
49
|
NullValue: () => NullValue,
|
|
51
50
|
Orientation: () => Orientation,
|
|
51
|
+
Origin: () => Origin,
|
|
52
52
|
Placement: () => Placement,
|
|
53
53
|
PluginContainerDataAlignment: () => PluginContainerDataAlignment,
|
|
54
54
|
PollLayoutDirection: () => PollLayoutDirection,
|
|
55
55
|
PollLayoutType: () => PollLayoutType,
|
|
56
56
|
Position: () => Position,
|
|
57
|
-
QueryBuilder: () => QueryBuilder,
|
|
58
57
|
RequestedFields: () => RequestedFields,
|
|
59
58
|
Resizing: () => Resizing,
|
|
60
59
|
ResponsivenessBehaviour: () => ResponsivenessBehaviour,
|
|
61
60
|
ScalarType: () => ScalarType,
|
|
62
61
|
Scaling: () => Scaling,
|
|
63
62
|
SingleEntityOpsRequestedFields: () => SingleEntityOpsRequestedFields,
|
|
64
|
-
Sort: () => Sort,
|
|
65
63
|
SortDirection: () => SortDirection,
|
|
66
64
|
SortOrder: () => SortOrder,
|
|
67
65
|
SortType: () => SortType,
|
|
@@ -107,7 +105,8 @@ __export(index_exports, {
|
|
|
107
105
|
searchCategories: () => searchCategories4,
|
|
108
106
|
setArrangedItems: () => setArrangedItems4,
|
|
109
107
|
updateCategory: () => updateCategory4,
|
|
110
|
-
updateCategoryVisibility: () => updateCategoryVisibility4
|
|
108
|
+
updateCategoryVisibility: () => updateCategoryVisibility4,
|
|
109
|
+
utils: () => utils
|
|
111
110
|
});
|
|
112
111
|
module.exports = __toCommonJS(index_exports);
|
|
113
112
|
|
|
@@ -1833,6 +1832,11 @@ var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
|
1833
1832
|
ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
1834
1833
|
return ImagePosition2;
|
|
1835
1834
|
})(ImagePosition || {});
|
|
1835
|
+
var Origin = /* @__PURE__ */ ((Origin2) => {
|
|
1836
|
+
Origin2["IMAGE"] = "IMAGE";
|
|
1837
|
+
Origin2["LAYOUT"] = "LAYOUT";
|
|
1838
|
+
return Origin2;
|
|
1839
|
+
})(Origin || {});
|
|
1836
1840
|
var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
|
|
1837
1841
|
VerticalAlignmentAlignment2["TOP"] = "TOP";
|
|
1838
1842
|
VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
|
|
@@ -2198,7 +2202,9 @@ async function typedQueryCategories(query, options) {
|
|
|
2198
2202
|
throw transformedError;
|
|
2199
2203
|
}
|
|
2200
2204
|
}
|
|
2201
|
-
var
|
|
2205
|
+
var utils = {
|
|
2206
|
+
...(0, import_query_builder_utils.createQueryUtils)()
|
|
2207
|
+
};
|
|
2202
2208
|
async function searchCategories2(search, options) {
|
|
2203
2209
|
const { httpClient, sideEffects } = arguments[2];
|
|
2204
2210
|
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)(
|
|
@@ -3418,7 +3424,6 @@ var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(
|
|
|
3418
3424
|
DesignTarget,
|
|
3419
3425
|
Direction,
|
|
3420
3426
|
DividerDataAlignment,
|
|
3421
|
-
Filter,
|
|
3422
3427
|
FontType,
|
|
3423
3428
|
GIFType,
|
|
3424
3429
|
ImagePosition,
|
|
@@ -3436,19 +3441,18 @@ var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(
|
|
|
3436
3441
|
NodeType,
|
|
3437
3442
|
NullValue,
|
|
3438
3443
|
Orientation,
|
|
3444
|
+
Origin,
|
|
3439
3445
|
Placement,
|
|
3440
3446
|
PluginContainerDataAlignment,
|
|
3441
3447
|
PollLayoutDirection,
|
|
3442
3448
|
PollLayoutType,
|
|
3443
3449
|
Position,
|
|
3444
|
-
QueryBuilder,
|
|
3445
3450
|
RequestedFields,
|
|
3446
3451
|
Resizing,
|
|
3447
3452
|
ResponsivenessBehaviour,
|
|
3448
3453
|
ScalarType,
|
|
3449
3454
|
Scaling,
|
|
3450
3455
|
SingleEntityOpsRequestedFields,
|
|
3451
|
-
Sort,
|
|
3452
3456
|
SortDirection,
|
|
3453
3457
|
SortOrder,
|
|
3454
3458
|
SortType,
|
|
@@ -3494,6 +3498,7 @@ var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(
|
|
|
3494
3498
|
searchCategories,
|
|
3495
3499
|
setArrangedItems,
|
|
3496
3500
|
updateCategory,
|
|
3497
|
-
updateCategoryVisibility
|
|
3501
|
+
updateCategoryVisibility,
|
|
3502
|
+
utils
|
|
3498
3503
|
});
|
|
3499
3504
|
//# sourceMappingURL=index.js.map
|