@wix/auto_sdk_categories_categories 1.0.99 → 1.0.101
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-CJPFdLS3.d.ts → categories-v1-category-categories.universal-D-RMbvs6.d.ts} +64 -3
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +46 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +34 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +65 -4
- package/build/cjs/meta.js +34 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{categories-v1-category-categories.universal-CJPFdLS3.d.mts → categories-v1-category-categories.universal-D-RMbvs6.d.mts} +64 -3
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +46 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +34 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +65 -4
- package/build/es/meta.mjs +34 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{categories-v1-category-categories.universal-De4qixlD.d.ts → categories-v1-category-categories.universal-DmT8C1-o.d.ts} +64 -3
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +46 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +34 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +65 -4
- package/build/internal/cjs/meta.js +34 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{categories-v1-category-categories.universal-De4qixlD.d.mts → categories-v1-category-categories.universal-DmT8C1-o.d.mts} +64 -3
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +46 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +34 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +65 -4
- package/build/internal/es/meta.mjs +34 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -292,6 +292,8 @@ interface Node extends NodeDataOneOf {
|
|
|
292
292
|
layoutData?: LayoutData;
|
|
293
293
|
/** Data for a cell node. */
|
|
294
294
|
layoutCellData?: LayoutCellData;
|
|
295
|
+
/** Data for a shape node. */
|
|
296
|
+
shapeData?: ShapeData;
|
|
295
297
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
296
298
|
type?: NodeTypeWithLiterals;
|
|
297
299
|
/** Node ID. */
|
|
@@ -359,6 +361,8 @@ interface NodeDataOneOf {
|
|
|
359
361
|
layoutData?: LayoutData;
|
|
360
362
|
/** Data for a cell node. */
|
|
361
363
|
layoutCellData?: LayoutCellData;
|
|
364
|
+
/** Data for a shape node. */
|
|
365
|
+
shapeData?: ShapeData;
|
|
362
366
|
}
|
|
363
367
|
declare enum NodeType {
|
|
364
368
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -394,10 +398,11 @@ declare enum NodeType {
|
|
|
394
398
|
AUDIO = "AUDIO",
|
|
395
399
|
CAPTION = "CAPTION",
|
|
396
400
|
LAYOUT = "LAYOUT",
|
|
397
|
-
LAYOUT_CELL = "LAYOUT_CELL"
|
|
401
|
+
LAYOUT_CELL = "LAYOUT_CELL",
|
|
402
|
+
SHAPE = "SHAPE"
|
|
398
403
|
}
|
|
399
404
|
/** @enumType */
|
|
400
|
-
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL';
|
|
405
|
+
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE';
|
|
401
406
|
interface NodeStyle {
|
|
402
407
|
/** The top padding value in pixels. */
|
|
403
408
|
paddingTop?: string | null;
|
|
@@ -2064,6 +2069,23 @@ interface LayoutCellData {
|
|
|
2064
2069
|
/** Size of the cell in 12 columns grid. */
|
|
2065
2070
|
colSpan?: number | null;
|
|
2066
2071
|
}
|
|
2072
|
+
interface ShapeData {
|
|
2073
|
+
/** Styling for the shape's container. */
|
|
2074
|
+
containerData?: PluginContainerData;
|
|
2075
|
+
/** Shape file details. */
|
|
2076
|
+
shape?: Media;
|
|
2077
|
+
/** Styling for the shape. */
|
|
2078
|
+
styles?: ShapeDataStyles;
|
|
2079
|
+
}
|
|
2080
|
+
interface ShapeDataStyles {
|
|
2081
|
+
/**
|
|
2082
|
+
* Shape fill color as a hexadecimal value.
|
|
2083
|
+
* @format COLOR_HEX
|
|
2084
|
+
*/
|
|
2085
|
+
color?: string | null;
|
|
2086
|
+
/** Map of original color keys to their new color values. */
|
|
2087
|
+
colors?: Record<string, string>;
|
|
2088
|
+
}
|
|
2067
2089
|
interface Metadata {
|
|
2068
2090
|
/** Schema version. */
|
|
2069
2091
|
version?: number;
|
|
@@ -3806,6 +3828,45 @@ interface ActionEvent {
|
|
|
3806
3828
|
}
|
|
3807
3829
|
interface Empty {
|
|
3808
3830
|
}
|
|
3831
|
+
interface BulkCreateCategoriesForMigrationRequest {
|
|
3832
|
+
/**
|
|
3833
|
+
* Categories to create.
|
|
3834
|
+
* @minSize 1
|
|
3835
|
+
* @maxSize 100
|
|
3836
|
+
*/
|
|
3837
|
+
categories?: Category[];
|
|
3838
|
+
/** Category tree reference details. */
|
|
3839
|
+
treeReference?: TreeReference;
|
|
3840
|
+
/** Whether to return the created categories in the response. */
|
|
3841
|
+
returnEntity?: boolean;
|
|
3842
|
+
}
|
|
3843
|
+
interface BulkCreateCategoriesForMigrationResponse {
|
|
3844
|
+
/** Results of the bulk operation. */
|
|
3845
|
+
results?: BulkCategoriesResult[];
|
|
3846
|
+
/** Bulk action metadata. */
|
|
3847
|
+
bulkActionMetadata?: BulkActionMetadata;
|
|
3848
|
+
}
|
|
3849
|
+
interface BulkAddItemsToCategoryForMigrationRequest {
|
|
3850
|
+
/**
|
|
3851
|
+
* Category to add items to.
|
|
3852
|
+
* @format GUID
|
|
3853
|
+
*/
|
|
3854
|
+
categoryId?: string;
|
|
3855
|
+
/** Category tree reference details. */
|
|
3856
|
+
treeReference?: TreeReference;
|
|
3857
|
+
/**
|
|
3858
|
+
* Items to add to the category.
|
|
3859
|
+
* @minSize 1
|
|
3860
|
+
* @maxSize 1000
|
|
3861
|
+
*/
|
|
3862
|
+
items?: ItemReference[];
|
|
3863
|
+
}
|
|
3864
|
+
interface BulkAddItemsToCategoryForMigrationResponse {
|
|
3865
|
+
/** Results of item associations. */
|
|
3866
|
+
results?: BulkItemsToCategoryResult[];
|
|
3867
|
+
/** Bulk action metadata. */
|
|
3868
|
+
bulkActionMetadata?: BulkActionMetadata;
|
|
3869
|
+
}
|
|
3809
3870
|
interface MessageEnvelope {
|
|
3810
3871
|
/**
|
|
3811
3872
|
* App instance ID.
|
|
@@ -5326,4 +5387,4 @@ interface BulkSetItemCategoriesOptions {
|
|
|
5326
5387
|
treeReference: TreeReference;
|
|
5327
5388
|
}
|
|
5328
5389
|
|
|
5329
|
-
export { type CategoryDeletedEnvelope as $, type BulkRemoveItemsFromCategoryResponse as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkRemoveItemsFromCategoryApplicationErrors as E, type BulkRemoveItemFromCategoriesOptions as F, type GetCategoryOptions as G, type BulkRemoveItemFromCategoriesResponse as H, type ItemReference as I, type BulkRemoveItemFromCategoriesApplicationErrors as J, type ListItemsInCategoryResponse as K, type ListItemsInCategoryOptions as L, type MoveCategoryOptions as M, type ListCategoriesForItemOptions as N, type ListCategoriesForItemResponse as O, type ListCategoriesForItemsOptions as P, type ListCategoriesForItemsResponse as Q, type ListTreesResponse as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type SetArrangedItemsOptions as V, type SetArrangedItemsResponse as W, type SetArrangedItemsApplicationErrors as X, type GetArrangedItemsResponse as Y, type CategoryMovedEnvelope as Z, type CategoryCreatedEnvelope as _, type CreateCategoryOptions as a, WebhookIdentityType as a$, type CategoryItemAddedToCategoryEnvelope as a0, type CategoryItemRemovedFromCategoryEnvelope as a1, type CategoryItemsArrangedInCategoryEnvelope as a2, type CategoryUpdatedEnvelope as a3, type CategoryQuery as a4, type QueryCategoriesOptions as a5, typedQueryCategories as a6, type CategoriesQueryBuilder as a7, NodeType as a8, WidthType as a9, Placement as aA, Type as aB, Alignment as aC, Layout as aD, AppType as aE, InitialExpandedItems as aF, Direction as aG, VerticalAlignment as aH, NullValue as aI, Scaling as aJ, ImagePosition as aK, VerticalAlignmentAlignment as aL, ResponsivenessBehaviour as aM, DesignTarget as aN, SingleEntityOpsRequestedFields as aO, SortOrder as aP, RequestedFields as aQ, SortType as aR, SortDirection as aS, MissingValues as aT, ScalarType as aU, NestedAggregationType as aV, Interval as aW, AggregationType as aX, Mode as aY, Position as aZ, MoveItemInCategoryRequestPosition as a_, PluginContainerDataAlignment as aa, ButtonDataType as ab, Target as ac, TextAlignment as ad, LineStyle as ae, Width as af, DividerDataAlignment as ag, ViewMode as ah, LayoutType as ai, Orientation as aj, Crop as ak, ThumbnailsAlignment as al, GIFType as am, Source as an, StylesPosition as ao, MapType as ap, ViewRole as aq, VoteRole as ar, PollLayoutType as as, PollLayoutDirection as at, BackgroundType as au, DecorationType as av, FontType as aw, ImageStylesPosition as ax, AspectRatio as ay, Resizing as az, type CreateCategoryApplicationErrors as b, type OptionDesign as b$, type BreadcrumbsInfo as b0, type Breadcrumb as b1, type ParentCategory as b2, type SeoSchema as b3, type Keyword as b4, type Tag as b5, type Settings as b6, type RichContent as b7, type Node as b8, type NodeDataOneOf as b9, type GalleryOptions as bA, type GalleryOptionsLayout as bB, type ItemStyle as bC, type Thumbnails as bD, type GIFData as bE, type GIF as bF, type HeadingData as bG, type HTMLData as bH, type HTMLDataDataOneOf as bI, type ImageData as bJ, type StylesBorder as bK, type ImageDataStyles as bL, type LinkPreviewData as bM, type LinkPreviewDataStyles as bN, type MapData as bO, type MapSettings as bP, type ParagraphData as bQ, type PollData as bR, type Permissions as bS, type Option as bT, type PollSettings as bU, type PollLayout as bV, type OptionLayout as bW, type Gradient as bX, type Background as bY, type BackgroundBackgroundOneOf as bZ, type PollDesign as b_, type NodeStyle as ba, type ButtonData as bb, type Border as bc, type Colors as bd, type PluginContainerData as be, type PluginContainerDataWidth as bf, type PluginContainerDataWidthDataOneOf as bg, type Spoiler as bh, type Height as bi, type Styles as bj, type Link as bk, type LinkDataOneOf as bl, type Rel as bm, type CodeBlockData as bn, type TextStyle as bo, type DividerData as bp, type FileData as bq, type FileSource as br, type FileSourceDataOneOf as bs, type PDFSettings as bt, type GalleryData as bu, type Media as bv, type Image as bw, type Video as bx, type Item as by, type ItemDataOneOf as bz, type CreateCategoryValidationErrors as c, type GetCategoryResponse as c$, type Poll as c0, type PollDataLayout as c1, type Design as c2, type TextData as c3, type Decoration as c4, type DecorationDataOneOf as c5, type AnchorData as c6, type ColorData as c7, type LinkData as c8, type MentionData as c9, type BulletedListData as cA, type BlockquoteData as cB, type CaptionData as cC, type LayoutData as cD, type BackgroundImage as cE, type LayoutCellData as cF, type Metadata as cG, type DocumentStyle as cH, type TextNodeStyle as cI, type ExtendedFields as cJ, type InvalidateCache as cK, type InvalidateCacheGetByOneOf as cL, type App as cM, type Page as cN, type URI as cO, type File as cP, type CustomTag as cQ, type CategoryMoved as cR, type ItemAddedToCategory as cS, type ItemsAddedToCategory as cT, type ItemRemovedFromCategory as cU, type ItemsRemovedFromCategory as cV, type ItemsArrangedInCategory as cW, type CreateCategoryRequest as cX, type CreateCategoryResponse as cY, type DuplicateHandleErrorData as cZ, type GetCategoryRequest as c_, type FontSizeData as ca, type SpoilerData as cb, type FontFamilyData as cc, type AppEmbedData as cd, type AppEmbedDataAppDataOneOf as ce, type BookingData as cf, type EventData as cg, type ButtonStyles as ch, type ImageStyles as ci, type RibbonStyles as cj, type CardStyles as ck, type PricingData as cl, type VideoData as cm, type PlaybackOptions as cn, type EmbedData as co, type Oembed as cp, type CollapsibleListData as cq, type TableData as cr, type Dimensions as cs, type TableCellData as ct, type CellStyle as cu, type BorderColors as cv, type BorderWidths as cw, type ListValue as cx, type AudioData as cy, type OrderedListData as cz, type UpdateCategoryOptions as d, type ItemMetadata as d$, type UpdateCategoryRequest as d0, type UpdateCategoryResponse as d1, type DeleteCategoryRequest as d2, type DeleteCategoryResponse as d3, type QueryCategoriesRequest as d4, type CursorQuery as d5, type CursorQueryPagingMethodOneOf as d6, type Sorting as d7, type CursorPaging as d8, type QueryCategoriesResponse as d9, type NestedAggregationResultsResultOneOf as dA, type ValueResults as dB, type RangeResults as dC, type AggregationResultsScalarResult as dD, type NestedValueAggregationResult as dE, type ValueResult as dF, type RangeResult as dG, type ScalarResult as dH, type NestedResultValue as dI, type NestedResultValueResultOneOf as dJ, type Results as dK, type DateHistogramResult as dL, type GroupByValueResults as dM, type DateHistogramResults as dN, type NestedResults as dO, type AggregationResults as dP, type AggregationResultsResultOneOf as dQ, type DeprecatedSearchCategoriesWithOffsetRequest as dR, type OffsetSearch as dS, type OffsetSearchPagingMethodOneOf as dT, type Paging as dU, type DeprecatedSearchCategoriesWithOffsetResponse as dV, type PagingMetadata as dW, type CountCategoriesRequest as dX, type MoveCategoryRequest as dY, type BulkUpdateCategoriesRequest as dZ, type BulkCategoriesResult as d_, type CursorPagingMetadata as da, type Cursors as db, type ListCompactCategoriesByIdsRequest as dc, type ListCompactCategoriesByIdsResponse as dd, type CompactCategory as de, type SearchCategoriesRequest as df, type CursorSearch as dg, type CursorSearchPagingMethodOneOf as dh, type Aggregation as di, type AggregationKindOneOf as dj, type RangeBucket as dk, type IncludeMissingValuesOptions as dl, type ValueAggregation as dm, type ValueAggregationOptionsOneOf as dn, type RangeAggregation as dp, type ScalarAggregation as dq, type DateHistogramAggregation as dr, type NestedAggregationItem as ds, type NestedAggregationItemKindOneOf as dt, type NestedAggregation as du, type SearchDetails as dv, type AggregationData as dw, type ValueAggregationResult as dx, type RangeAggregationResult as dy, type NestedAggregationResults as dz, type UpdateCategoryApplicationErrors as e, type LayoutTypeWithLiterals as e$, type ApplicationError as e0, type BulkActionMetadata as e1, type UpdateCategoryVisibilityRequest as e2, type BulkShowCategoriesRequest as e3, type BulkDeleteCategoriesRequest as e4, type BulkDeleteCategoriesResponse as e5, type BulkDeleteCategoriesResponseBulkCategoriesResult as e6, type BulkAddItemsToCategoryRequest as e7, type BulkItemsToCategoryResult as e8, type ItemReferenceMetadata as e9, type ActionEvent as eA, type Empty as eB, type MessageEnvelope as eC, type IdentificationData as eD, type IdentificationDataIdOneOf as eE, type AccountInfo as eF, type BaseEventMetadata as eG, type EventMetadata as eH, type AccountInfoMetadata as eI, type CategoriesQueryResult as eJ, type CategoryQuerySpec as eK, type CategorySearchSpec as eL, type ListItemsInCategoryOptionsPagingMethodOneOf as eM, type BulkSetItemCategoriesOptions as eN, QueryBuilder as eO, Filter as eP, Sort as eQ, type NodeTypeWithLiterals as eR, type WidthTypeWithLiterals as eS, type PluginContainerDataAlignmentWithLiterals as eT, type ButtonDataTypeWithLiterals as eU, type TargetWithLiterals as eV, type TextAlignmentWithLiterals as eW, type LineStyleWithLiterals as eX, type WidthWithLiterals as eY, type DividerDataAlignmentWithLiterals as eZ, type ViewModeWithLiterals as e_, type BulkAddItemToCategoriesRequest as ea, type BulkItemToCategoriesResult as eb, type BulkRemoveItemsFromCategoryRequest as ec, type BulkRemoveItemFromCategoriesRequest as ed, type ListItemsInCategoryRequest as ee, type ListItemsInCategoryRequestPagingMethodOneOf as ef, type PagingMetadataV2 as eg, type ListCategoriesForItemRequest as eh, type ListCategoriesForItemsRequest as ei, type MapItemToCategories as ej, type ListTreesRequest as ek, type MoveItemInCategoryRequest as el, type MoveItemInCategoryResponse as em, type SetArrangedItemsRequest as en, type GetArrangedItemsRequest as eo, type BulkSetItemCategoriesRequest as ep, type BulkSetItemCategoriesResponse as eq, type GetCategoriesTreeRequest as er, type GetCategoriesTreeResponse as es, type CategoryTreeNode as et, type DomainEvent as eu, type DomainEventBodyOneOf as ev, type EntityCreatedEvent as ew, type RestoreInfo as ex, type EntityUpdatedEvent as ey, type EntityDeletedEvent as ez, type CategorySearch as f, updateCategoryVisibility as f$, type OrientationWithLiterals as f0, type CropWithLiterals as f1, type ThumbnailsAlignmentWithLiterals as f2, type GIFTypeWithLiterals as f3, type SourceWithLiterals as f4, type StylesPositionWithLiterals as f5, type MapTypeWithLiterals as f6, type ViewRoleWithLiterals as f7, type VoteRoleWithLiterals as f8, type PollLayoutTypeWithLiterals as f9, type MissingValuesWithLiterals as fA, type ScalarTypeWithLiterals as fB, type NestedAggregationTypeWithLiterals as fC, type IntervalWithLiterals as fD, type AggregationTypeWithLiterals as fE, type ModeWithLiterals as fF, type PositionWithLiterals as fG, type MoveItemInCategoryRequestPositionWithLiterals as fH, type WebhookIdentityTypeWithLiterals as fI, type BulkSetItemCategoriesApplicationErrors as fJ, type CommonQueryWithEntityContext as fK, type CommonSearchWithEntityContext as fL, onCategoryMoved as fM, onCategoryCreated as fN, onCategoryDeleted as fO, onCategoryItemAddedToCategory as fP, onCategoryItemRemovedFromCategory as fQ, onCategoryItemsArrangedInCategory as fR, onCategoryUpdated as fS, createCategory as fT, getCategory as fU, updateCategory as fV, deleteCategory as fW, queryCategories as fX, countCategories as fY, moveCategory as fZ, bulkUpdateCategories as f_, type PollLayoutDirectionWithLiterals as fa, type BackgroundTypeWithLiterals as fb, type DecorationTypeWithLiterals as fc, type FontTypeWithLiterals as fd, type ImageStylesPositionWithLiterals as fe, type AspectRatioWithLiterals as ff, type ResizingWithLiterals as fg, type PlacementWithLiterals as fh, type TypeWithLiterals as fi, type AlignmentWithLiterals as fj, type LayoutWithLiterals as fk, type AppTypeWithLiterals as fl, type InitialExpandedItemsWithLiterals as fm, type DirectionWithLiterals as fn, type VerticalAlignmentWithLiterals as fo, type NullValueWithLiterals as fp, type ScalingWithLiterals as fq, type ImagePositionWithLiterals as fr, type VerticalAlignmentAlignmentWithLiterals as fs, type ResponsivenessBehaviourWithLiterals as ft, type DesignTargetWithLiterals as fu, type SingleEntityOpsRequestedFieldsWithLiterals as fv, type SortOrderWithLiterals as fw, type RequestedFieldsWithLiterals as fx, type SortTypeWithLiterals as fy, type SortDirectionWithLiterals as fz, type SearchCategoriesResponse as g, bulkShowCategories as g0, bulkAddItemsToCategory as g1, bulkAddItemToCategories as g2, bulkRemoveItemsFromCategory as g3, bulkRemoveItemFromCategories as g4, listItemsInCategory as g5, listCategoriesForItem as g6, listCategoriesForItems as g7, listTrees as g8, setArrangedItems as g9, getArrangedItems as ga, 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 };
|
|
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 };
|
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-D-RMbvs6.js';
|
|
3
|
+
export { eL as AccountInfo, eO as AccountInfoMetadata, eC as ActionEvent, dk as Aggregation, dy as AggregationData, dl as AggregationKindOneOf, dR as AggregationResults, dS as AggregationResultsResultOneOf, dF as AggregationResultsScalarResult, aX as AggregationType, fK as AggregationTypeWithLiterals, aC as Alignment, fp as AlignmentWithLiterals, c6 as AnchorData, cO as App, cd as AppEmbedData, ce as AppEmbedDataAppDataOneOf, aE as AppType, fr as AppTypeWithLiterals, e2 as ApplicationError, ay as AspectRatio, fl as AspectRatioWithLiterals, cy as AudioData, bY as Background, bZ as BackgroundBackgroundOneOf, cE as BackgroundImage, au as BackgroundType, fh as BackgroundTypeWithLiterals, eM as BaseEventMetadata, cB as BlockquoteData, cf as BookingData, bc as Border, cv as BorderColors, cw as BorderWidths, b1 as Breadcrumb, b0 as BreadcrumbsInfo, e3 as BulkActionMetadata, ec as BulkAddItemToCategoriesRequest, eG as BulkAddItemsToCategoryForMigrationRequest, eH as BulkAddItemsToCategoryForMigrationResponse, e9 as BulkAddItemsToCategoryRequest, e0 as BulkCategoriesResult, eE as BulkCreateCategoriesForMigrationRequest, eF as BulkCreateCategoriesForMigrationResponse, e6 as BulkDeleteCategoriesRequest, e7 as BulkDeleteCategoriesResponse, e8 as BulkDeleteCategoriesResponseBulkCategoriesResult, ed as BulkItemToCategoriesResult, ea as BulkItemsToCategoryResult, ef as BulkRemoveItemFromCategoriesRequest, ee as BulkRemoveItemsFromCategoryRequest, fP as BulkSetItemCategoriesApplicationErrors, eT as BulkSetItemCategoriesOptions, er as BulkSetItemCategoriesRequest, es as BulkSetItemCategoriesResponse, e5 as BulkShowCategoriesRequest, d$ as BulkUpdateCategoriesRequest, cA as BulletedListData, bb as ButtonData, ab as ButtonDataType, e_ as ButtonDataTypeWithLiterals, ch as ButtonStyles, cC as CaptionData, ck as CardStyles, eP as CategoriesQueryResult, cT as CategoryMoved, eQ as CategoryQuerySpec, eR as CategorySearchSpec, ev as CategoryTreeNode, cu as CellStyle, bn as CodeBlockData, cq as CollapsibleListData, c7 as ColorData, bd as Colors, fQ as CommonQueryWithEntityContext, fR as CommonSearchWithEntityContext, dg as CompactCategory, dZ as CountCategoriesRequest, cZ as CreateCategoryRequest, c_ as CreateCategoryResponse, ak as Crop, f7 as CropWithLiterals, da as CursorPaging, dc as CursorPagingMetadata, d7 as CursorQuery, d8 as CursorQueryPagingMethodOneOf, di as CursorSearch, dj as CursorSearchPagingMethodOneOf, dd as Cursors, cS as CustomTag, dt as DateHistogramAggregation, dN as DateHistogramResult, dP as DateHistogramResults, c4 as Decoration, c5 as DecorationDataOneOf, av as DecorationType, fi as DecorationTypeWithLiterals, d4 as DeleteCategoryRequest, d5 as DeleteCategoryResponse, dT as DeprecatedSearchCategoriesWithOffsetRequest, dX as DeprecatedSearchCategoriesWithOffsetResponse, c2 as Design, aN as DesignTarget, fA as DesignTargetWithLiterals, cs as Dimensions, aG as Direction, ft as DirectionWithLiterals, bp as DividerData, ag as DividerDataAlignment, f3 as DividerDataAlignmentWithLiterals, cJ as DocumentStyle, ew as DomainEvent, ex as DomainEventBodyOneOf, c$ as DuplicateHandleErrorData, co as EmbedData, eD as Empty, ey as EntityCreatedEvent, eB as EntityDeletedEvent, eA as EntityUpdatedEvent, cg as EventData, eN as EventMetadata, cL as ExtendedFields, cR as File, bq as FileData, br as FileSource, bs as FileSourceDataOneOf, eV as Filter, cc as FontFamilyData, ca as FontSizeData, aw as FontType, fj as FontTypeWithLiterals, bF as GIF, bE as GIFData, am as GIFType, f9 as GIFTypeWithLiterals, bu as GalleryData, bA as GalleryOptions, bB as GalleryOptionsLayout, eq as GetArrangedItemsRequest, et as GetCategoriesTreeRequest, eu as GetCategoriesTreeResponse, d0 as GetCategoryRequest, d1 as GetCategoryResponse, bX as Gradient, dO as GroupByValueResults, bH as HTMLData, bI as HTMLDataDataOneOf, bG as HeadingData, bi as Height, eJ as IdentificationData, eK as IdentificationDataIdOneOf, bw as Image, bJ as ImageData, bL as ImageDataStyles, aK as ImagePosition, fx as ImagePositionWithLiterals, ci as ImageStyles, ax as ImageStylesPosition, fk as ImageStylesPositionWithLiterals, dn as IncludeMissingValuesOptions, aF as InitialExpandedItems, fs as InitialExpandedItemsWithLiterals, aW as Interval, fJ as IntervalWithLiterals, cM as InvalidateCache, cN as InvalidateCacheGetByOneOf, by as Item, cU as ItemAddedToCategory, bz as ItemDataOneOf, e1 as ItemMetadata, eb as ItemReferenceMetadata, cW as ItemRemovedFromCategory, bC as ItemStyle, cV as ItemsAddedToCategory, cY as ItemsArrangedInCategory, cX as ItemsRemovedFromCategory, b4 as Keyword, aD as Layout, cF as LayoutCellData, cD as LayoutData, ai as LayoutType, f5 as LayoutTypeWithLiterals, fq as LayoutWithLiterals, ae as LineStyle, f1 as LineStyleWithLiterals, bk as Link, c8 as LinkData, bl as LinkDataOneOf, bM as LinkPreviewData, bN as LinkPreviewDataStyles, ej as ListCategoriesForItemRequest, ek as ListCategoriesForItemsRequest, de as ListCompactCategoriesByIdsRequest, df as ListCompactCategoriesByIdsResponse, eS as ListItemsInCategoryOptionsPagingMethodOneOf, eg as ListItemsInCategoryRequest, eh as ListItemsInCategoryRequestPagingMethodOneOf, em as ListTreesRequest, cx as ListValue, bO as MapData, el as MapItemToCategories, bP as MapSettings, ap as MapType, fc as MapTypeWithLiterals, bv as Media, c9 as MentionData, eI as MessageEnvelope, cI as Metadata, aT as MissingValues, fG as MissingValuesWithLiterals, aY as Mode, fL as ModeWithLiterals, d_ as MoveCategoryRequest, en as MoveItemInCategoryRequest, a_ as MoveItemInCategoryRequestPosition, fN as MoveItemInCategoryRequestPositionWithLiterals, eo as MoveItemInCategoryResponse, dw as NestedAggregation, du as NestedAggregationItem, dv as NestedAggregationItemKindOneOf, dB as NestedAggregationResults, dC as NestedAggregationResultsResultOneOf, aV as NestedAggregationType, fI as NestedAggregationTypeWithLiterals, dK as NestedResultValue, dL as NestedResultValueResultOneOf, dQ as NestedResults, dG as NestedValueAggregationResult, b8 as Node, b9 as NodeDataOneOf, ba as NodeStyle, a8 as NodeType, eX as NodeTypeWithLiterals, aI as NullValue, fv as NullValueWithLiterals, cp as Oembed, dU as OffsetSearch, dV as OffsetSearchPagingMethodOneOf, bT as Option, b$ as OptionDesign, bW as OptionLayout, cz as OrderedListData, aj as Orientation, f6 as OrientationWithLiterals, bt as PDFSettings, cP as Page, dW as Paging, dY as PagingMetadata, ei as PagingMetadataV2, bQ as ParagraphData, b2 as ParentCategory, bS as Permissions, aA as Placement, fn as PlacementWithLiterals, cn as PlaybackOptions, be as PluginContainerData, aa as PluginContainerDataAlignment, eZ as PluginContainerDataAlignmentWithLiterals, bf as PluginContainerDataWidth, bg as PluginContainerDataWidthDataOneOf, c0 as Poll, bR as PollData, c1 as PollDataLayout, b_ as PollDesign, bV as PollLayout, at as PollLayoutDirection, fg as PollLayoutDirectionWithLiterals, as as PollLayoutType, ff as PollLayoutTypeWithLiterals, bU as PollSettings, aZ as Position, fM as PositionWithLiterals, cl as PricingData, eU as QueryBuilder, d6 as QueryCategoriesRequest, db as QueryCategoriesResponse, dr as RangeAggregation, dA as RangeAggregationResult, dm as RangeBucket, dI as RangeResult, dE as RangeResults, bm as Rel, aQ as RequestedFields, fD as RequestedFieldsWithLiterals, az as Resizing, fm as ResizingWithLiterals, aM as ResponsivenessBehaviour, fz as ResponsivenessBehaviourWithLiterals, ez as RestoreInfo, dM as Results, cj as RibbonStyles, b7 as RichContent, ds as ScalarAggregation, dJ as ScalarResult, aU as ScalarType, fH as ScalarTypeWithLiterals, aJ as Scaling, fw as ScalingWithLiterals, dh as SearchCategoriesRequest, dx as SearchDetails, b3 as SeoSchema, ep as SetArrangedItemsRequest, b6 as Settings, cG as ShapeData, cH as ShapeDataStyles, aO as SingleEntityOpsRequestedFields, fB as SingleEntityOpsRequestedFieldsWithLiterals, eW as Sort, aS as SortDirection, fF as SortDirectionWithLiterals, aP as SortOrder, fC as SortOrderWithLiterals, aR as SortType, fE as SortTypeWithLiterals, d9 as Sorting, an as Source, fa as SourceWithLiterals, bh as Spoiler, cb as SpoilerData, bj as Styles, bK as StylesBorder, ao as StylesPosition, fb as StylesPositionWithLiterals, ct as TableCellData, cr as TableData, b5 as Tag, ac as Target, e$ as TargetWithLiterals, ad as TextAlignment, f0 as TextAlignmentWithLiterals, c3 as TextData, cK as TextNodeStyle, bo as TextStyle, bD as Thumbnails, al as ThumbnailsAlignment, f8 as ThumbnailsAlignmentWithLiterals, aB as Type, fo as TypeWithLiterals, cQ as URI, d2 as UpdateCategoryRequest, d3 as UpdateCategoryResponse, e4 as UpdateCategoryVisibilityRequest, dp as ValueAggregation, dq as ValueAggregationOptionsOneOf, dz as ValueAggregationResult, dH as ValueResult, dD as ValueResults, aH as VerticalAlignment, aL as VerticalAlignmentAlignment, fy as VerticalAlignmentAlignmentWithLiterals, fu as VerticalAlignmentWithLiterals, bx as Video, cm as VideoData, ah as ViewMode, f4 as ViewModeWithLiterals, aq as ViewRole, fd as ViewRoleWithLiterals, ar as VoteRole, fe as VoteRoleWithLiterals, a$ as WebhookIdentityType, fO as WebhookIdentityTypeWithLiterals, af as Width, a9 as WidthType, eY as WidthTypeWithLiterals, f2 as WidthWithLiterals } from './categories-v1-category-categories.universal-D-RMbvs6.js';
|
|
4
4
|
|
|
5
5
|
declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
|
|
6
6
|
interface CreateCategorySignature {
|
package/build/cjs/index.js
CHANGED
|
@@ -255,6 +255,9 @@ function createCategory(payload) {
|
|
|
255
255
|
},
|
|
256
256
|
{
|
|
257
257
|
path: "category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
path: "category.richContentDescription.nodes.shapeData.shape.duration"
|
|
258
261
|
}
|
|
259
262
|
]
|
|
260
263
|
}
|
|
@@ -341,6 +344,9 @@ function createCategory(payload) {
|
|
|
341
344
|
},
|
|
342
345
|
{
|
|
343
346
|
path: "category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
path: "category.richContentDescription.nodes.shapeData.shape.duration"
|
|
344
350
|
}
|
|
345
351
|
]
|
|
346
352
|
}
|
|
@@ -434,6 +440,9 @@ function getCategory(payload) {
|
|
|
434
440
|
},
|
|
435
441
|
{
|
|
436
442
|
path: "category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
path: "category.richContentDescription.nodes.shapeData.shape.duration"
|
|
437
446
|
}
|
|
438
447
|
]
|
|
439
448
|
}
|
|
@@ -513,6 +522,9 @@ function updateCategory(payload) {
|
|
|
513
522
|
},
|
|
514
523
|
{
|
|
515
524
|
path: "category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
path: "category.richContentDescription.nodes.shapeData.shape.duration"
|
|
516
528
|
}
|
|
517
529
|
]
|
|
518
530
|
}
|
|
@@ -599,6 +611,9 @@ function updateCategory(payload) {
|
|
|
599
611
|
},
|
|
600
612
|
{
|
|
601
613
|
path: "category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
path: "category.richContentDescription.nodes.shapeData.shape.duration"
|
|
602
617
|
}
|
|
603
618
|
]
|
|
604
619
|
}
|
|
@@ -713,6 +728,9 @@ function queryCategories(payload) {
|
|
|
713
728
|
},
|
|
714
729
|
{
|
|
715
730
|
path: "categories.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
path: "categories.richContentDescription.nodes.shapeData.shape.duration"
|
|
716
734
|
}
|
|
717
735
|
]
|
|
718
736
|
}
|
|
@@ -822,6 +840,9 @@ function searchCategories(payload) {
|
|
|
822
840
|
{
|
|
823
841
|
path: "categories.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
824
842
|
},
|
|
843
|
+
{
|
|
844
|
+
path: "categories.richContentDescription.nodes.shapeData.shape.duration"
|
|
845
|
+
},
|
|
825
846
|
{ path: "aggregationData.results.ranges.results.from" },
|
|
826
847
|
{ path: "aggregationData.results.ranges.results.to" },
|
|
827
848
|
{
|
|
@@ -967,6 +988,9 @@ function bulkUpdateCategories(payload) {
|
|
|
967
988
|
},
|
|
968
989
|
{
|
|
969
990
|
path: "categories.category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
path: "categories.category.richContentDescription.nodes.shapeData.shape.duration"
|
|
970
994
|
}
|
|
971
995
|
]
|
|
972
996
|
}
|
|
@@ -1053,6 +1077,9 @@ function bulkUpdateCategories(payload) {
|
|
|
1053
1077
|
},
|
|
1054
1078
|
{
|
|
1055
1079
|
path: "results.category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
path: "results.category.richContentDescription.nodes.shapeData.shape.duration"
|
|
1056
1083
|
}
|
|
1057
1084
|
]
|
|
1058
1085
|
}
|
|
@@ -1146,6 +1173,9 @@ function updateCategoryVisibility(payload) {
|
|
|
1146
1173
|
},
|
|
1147
1174
|
{
|
|
1148
1175
|
path: "category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
1176
|
+
},
|
|
1177
|
+
{
|
|
1178
|
+
path: "category.richContentDescription.nodes.shapeData.shape.duration"
|
|
1149
1179
|
}
|
|
1150
1180
|
]
|
|
1151
1181
|
}
|
|
@@ -1239,6 +1269,9 @@ function bulkShowCategories(payload) {
|
|
|
1239
1269
|
},
|
|
1240
1270
|
{
|
|
1241
1271
|
path: "results.category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
1272
|
+
},
|
|
1273
|
+
{
|
|
1274
|
+
path: "results.category.richContentDescription.nodes.shapeData.shape.duration"
|
|
1242
1275
|
}
|
|
1243
1276
|
]
|
|
1244
1277
|
}
|
|
@@ -1552,6 +1585,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
1552
1585
|
NodeType2["CAPTION"] = "CAPTION";
|
|
1553
1586
|
NodeType2["LAYOUT"] = "LAYOUT";
|
|
1554
1587
|
NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
|
|
1588
|
+
NodeType2["SHAPE"] = "SHAPE";
|
|
1555
1589
|
return NodeType2;
|
|
1556
1590
|
})(NodeType || {});
|
|
1557
1591
|
var WidthType = /* @__PURE__ */ ((WidthType2) => {
|
|
@@ -3047,6 +3081,9 @@ var onCategoryCreated = (0, import_sdk_types.EventDefinition)(
|
|
|
3047
3081
|
},
|
|
3048
3082
|
{
|
|
3049
3083
|
path: "entity.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
3084
|
+
},
|
|
3085
|
+
{
|
|
3086
|
+
path: "entity.richContentDescription.nodes.shapeData.shape.duration"
|
|
3050
3087
|
}
|
|
3051
3088
|
]
|
|
3052
3089
|
}
|
|
@@ -3129,6 +3166,9 @@ var onCategoryDeleted = (0, import_sdk_types.EventDefinition)(
|
|
|
3129
3166
|
},
|
|
3130
3167
|
{
|
|
3131
3168
|
path: "undefined.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
3169
|
+
},
|
|
3170
|
+
{
|
|
3171
|
+
path: "undefined.richContentDescription.nodes.shapeData.shape.duration"
|
|
3132
3172
|
}
|
|
3133
3173
|
]
|
|
3134
3174
|
}
|
|
@@ -3252,6 +3292,9 @@ var onCategoryUpdated = (0, import_sdk_types.EventDefinition)(
|
|
|
3252
3292
|
{
|
|
3253
3293
|
path: "entity.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
3254
3294
|
},
|
|
3295
|
+
{
|
|
3296
|
+
path: "entity.richContentDescription.nodes.shapeData.shape.duration"
|
|
3297
|
+
},
|
|
3255
3298
|
{
|
|
3256
3299
|
path: "modifiedFields.richContentDescription.nodes.galleryData.items.image.media.duration"
|
|
3257
3300
|
},
|
|
@@ -3302,6 +3345,9 @@ var onCategoryUpdated = (0, import_sdk_types.EventDefinition)(
|
|
|
3302
3345
|
},
|
|
3303
3346
|
{
|
|
3304
3347
|
path: "modifiedFields.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
3348
|
+
},
|
|
3349
|
+
{
|
|
3350
|
+
path: "modifiedFields.richContentDescription.nodes.shapeData.shape.duration"
|
|
3305
3351
|
}
|
|
3306
3352
|
]
|
|
3307
3353
|
}
|