@wix/auto_sdk_categories_categories 1.0.100 → 1.0.102
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-B-eQn9IE.d.ts → categories-v1-category-categories.universal-Ct2lgIM_.d.ts} +59 -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 +55 -2
- package/build/cjs/meta.js +7 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{categories-v1-category-categories.universal-B-eQn9IE.d.mts → categories-v1-category-categories.universal-Ct2lgIM_.d.mts} +59 -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 +55 -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-D-x06rJw.d.ts → categories-v1-category-categories.universal-ecF5BGHX.d.ts} +59 -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 +55 -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-D-x06rJw.d.mts → categories-v1-category-categories.universal-ecF5BGHX.d.mts} +59 -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 +55 -2
- package/build/internal/es/meta.mjs +6 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -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;
|
|
@@ -3828,6 +3842,45 @@ interface ActionEvent {
|
|
|
3828
3842
|
}
|
|
3829
3843
|
interface Empty {
|
|
3830
3844
|
}
|
|
3845
|
+
interface BulkCreateCategoriesForMigrationRequest {
|
|
3846
|
+
/**
|
|
3847
|
+
* Categories to create.
|
|
3848
|
+
* @minSize 1
|
|
3849
|
+
* @maxSize 100
|
|
3850
|
+
*/
|
|
3851
|
+
categories?: Category[];
|
|
3852
|
+
/** Category tree reference details. */
|
|
3853
|
+
treeReference?: TreeReference;
|
|
3854
|
+
/** Whether to return the created categories in the response. */
|
|
3855
|
+
returnEntity?: boolean;
|
|
3856
|
+
}
|
|
3857
|
+
interface BulkCreateCategoriesForMigrationResponse {
|
|
3858
|
+
/** Results of the bulk operation. */
|
|
3859
|
+
results?: BulkCategoriesResult[];
|
|
3860
|
+
/** Bulk action metadata. */
|
|
3861
|
+
bulkActionMetadata?: BulkActionMetadata;
|
|
3862
|
+
}
|
|
3863
|
+
interface BulkAddItemsToCategoryForMigrationRequest {
|
|
3864
|
+
/**
|
|
3865
|
+
* Category to add items to.
|
|
3866
|
+
* @format GUID
|
|
3867
|
+
*/
|
|
3868
|
+
categoryId?: string;
|
|
3869
|
+
/** Category tree reference details. */
|
|
3870
|
+
treeReference?: TreeReference;
|
|
3871
|
+
/**
|
|
3872
|
+
* Items to add to the category.
|
|
3873
|
+
* @minSize 1
|
|
3874
|
+
* @maxSize 1000
|
|
3875
|
+
*/
|
|
3876
|
+
items?: ItemReference[];
|
|
3877
|
+
}
|
|
3878
|
+
interface BulkAddItemsToCategoryForMigrationResponse {
|
|
3879
|
+
/** Results of item associations. */
|
|
3880
|
+
results?: BulkItemsToCategoryResult[];
|
|
3881
|
+
/** Bulk action metadata. */
|
|
3882
|
+
bulkActionMetadata?: BulkActionMetadata;
|
|
3883
|
+
}
|
|
3831
3884
|
interface MessageEnvelope {
|
|
3832
3885
|
/**
|
|
3833
3886
|
* App instance ID.
|
|
@@ -4749,9 +4802,11 @@ type CategoryQuery = {
|
|
|
4749
4802
|
order?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['order'];
|
|
4750
4803
|
}[];
|
|
4751
4804
|
};
|
|
4752
|
-
declare const
|
|
4753
|
-
|
|
4754
|
-
|
|
4805
|
+
declare const utils: {
|
|
4806
|
+
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Category, CategoryQuerySpec, CategoryQuery>;
|
|
4807
|
+
Filter: _wix_sdk_types.FilterFactory<Category, CategoryQuerySpec>;
|
|
4808
|
+
Sort: _wix_sdk_types.SortFactory<CategoryQuerySpec>;
|
|
4809
|
+
};
|
|
4755
4810
|
interface SearchCategoriesOptions {
|
|
4756
4811
|
/**
|
|
4757
4812
|
* Category tree reference details.
|
|
@@ -5348,4 +5403,4 @@ interface BulkSetItemCategoriesOptions {
|
|
|
5348
5403
|
treeReference: TreeReference;
|
|
5349
5404
|
}
|
|
5350
5405
|
|
|
5351
|
-
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 DividerDataAlignmentWithLiterals 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 MessageEnvelope as eE, type IdentificationData as eF, type IdentificationDataIdOneOf as eG, type AccountInfo as eH, type BaseEventMetadata as eI, type EventMetadata as eJ, type AccountInfoMetadata as eK, type CategoriesQueryResult as eL, type CategoryQuerySpec as eM, type CategorySearchSpec as eN, type ListItemsInCategoryOptionsPagingMethodOneOf as eO, type BulkSetItemCategoriesOptions as eP, QueryBuilder as eQ, Filter as eR, Sort as eS, type NodeTypeWithLiterals as eT, type WidthTypeWithLiterals as eU, type PluginContainerDataAlignmentWithLiterals as eV, type ButtonDataTypeWithLiterals as eW, type TargetWithLiterals as eX, type TextAlignmentWithLiterals as eY, type LineStyleWithLiterals as eZ, type WidthWithLiterals 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, moveCategory as f$, type ViewModeWithLiterals as f0, type LayoutTypeWithLiterals as f1, type OrientationWithLiterals as f2, type CropWithLiterals as f3, type ThumbnailsAlignmentWithLiterals as f4, type GIFTypeWithLiterals as f5, type SourceWithLiterals as f6, type StylesPositionWithLiterals as f7, type MapTypeWithLiterals as f8, type ViewRoleWithLiterals as f9, type SortTypeWithLiterals as fA, type SortDirectionWithLiterals as fB, type MissingValuesWithLiterals as fC, type ScalarTypeWithLiterals as fD, type NestedAggregationTypeWithLiterals as fE, type IntervalWithLiterals as fF, type AggregationTypeWithLiterals as fG, type ModeWithLiterals as fH, type PositionWithLiterals as fI, type MoveItemInCategoryRequestPositionWithLiterals as fJ, type WebhookIdentityTypeWithLiterals as fK, type BulkSetItemCategoriesApplicationErrors as fL, type CommonQueryWithEntityContext as fM, type CommonSearchWithEntityContext as fN, onCategoryMoved as fO, onCategoryCreated as fP, onCategoryDeleted as fQ, onCategoryItemAddedToCategory as fR, onCategoryItemRemovedFromCategory as fS, onCategoryItemsArrangedInCategory as fT, onCategoryUpdated as fU, createCategory as fV, getCategory as fW, updateCategory as fX, deleteCategory as fY, queryCategories as fZ, countCategories as f_, type VoteRoleWithLiterals as fa, type PollLayoutTypeWithLiterals as fb, type PollLayoutDirectionWithLiterals as fc, type BackgroundTypeWithLiterals as fd, type DecorationTypeWithLiterals as fe, type FontTypeWithLiterals as ff, type ImageStylesPositionWithLiterals as fg, type AspectRatioWithLiterals as fh, type ResizingWithLiterals as fi, type PlacementWithLiterals as fj, type TypeWithLiterals as fk, type AlignmentWithLiterals as fl, type LayoutWithLiterals as fm, type AppTypeWithLiterals as fn, type InitialExpandedItemsWithLiterals as fo, type DirectionWithLiterals as fp, type VerticalAlignmentWithLiterals as fq, type NullValueWithLiterals as fr, type ScalingWithLiterals as fs, type ImagePositionWithLiterals as ft, type VerticalAlignmentAlignmentWithLiterals as fu, type ResponsivenessBehaviourWithLiterals as fv, type DesignTargetWithLiterals as fw, type SingleEntityOpsRequestedFieldsWithLiterals as fx, type SortOrderWithLiterals as fy, type RequestedFieldsWithLiterals as fz, type SearchCategoriesResponse as g, bulkUpdateCategories as g0, updateCategoryVisibility as g1, bulkShowCategories as g2, bulkAddItemsToCategory as g3, bulkAddItemToCategories as g4, bulkRemoveItemsFromCategory as g5, bulkRemoveItemFromCategories as g6, listItemsInCategory as g7, listCategoriesForItem as g8, listCategoriesForItems as g9, listTrees as ga, setArrangedItems as gb, getArrangedItems as gc, 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 };
|
|
5406
|
+
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 CreateCategoryRequest 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 CategoryMoved as cV, type ItemAddedToCategory as cW, type ItemsAddedToCategory as cX, type ItemRemovedFromCategory as cY, type ItemsRemovedFromCategory as cZ, type ItemsArrangedInCategory 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 CountCategoriesRequest as d$, type CreateCategoryResponse as d0, type DuplicateHandleErrorData as d1, type GetCategoryRequest as d2, type GetCategoryResponse as d3, type UpdateCategoryRequest as d4, type UpdateCategoryResponse as d5, type DeleteCategoryRequest as d6, type DeleteCategoryResponse as d7, type QueryCategoriesRequest as d8, type CursorQuery as d9, type AggregationData as dA, type ValueAggregationResult as dB, type RangeAggregationResult as dC, type NestedAggregationResults as dD, type NestedAggregationResultsResultOneOf as dE, type ValueResults as dF, type RangeResults as dG, type AggregationResultsScalarResult as dH, type NestedValueAggregationResult as dI, type ValueResult as dJ, type RangeResult as dK, type ScalarResult as dL, type NestedResultValue as dM, type NestedResultValueResultOneOf as dN, type Results as dO, type DateHistogramResult as dP, type GroupByValueResults as dQ, type DateHistogramResults as dR, type NestedResults as dS, type AggregationResults as dT, type AggregationResultsResultOneOf as dU, type DeprecatedSearchCategoriesWithOffsetRequest as dV, type OffsetSearch as dW, type OffsetSearchPagingMethodOneOf as dX, type Paging as dY, type DeprecatedSearchCategoriesWithOffsetResponse as dZ, type PagingMetadata as d_, type CursorQueryPagingMethodOneOf as da, type Sorting as db, type CursorPaging as dc, type QueryCategoriesResponse as dd, type CursorPagingMetadata as de, type Cursors as df, type ListCompactCategoriesByIdsRequest as dg, type ListCompactCategoriesByIdsResponse as dh, type CompactCategory as di, type SearchCategoriesRequest as dj, type CursorSearch as dk, type CursorSearchPagingMethodOneOf as dl, type Aggregation as dm, type AggregationKindOneOf as dn, type RangeBucket as dp, type IncludeMissingValuesOptions as dq, type ValueAggregation as dr, type ValueAggregationOptionsOneOf as ds, type RangeAggregation as dt, type ScalarAggregation as du, type DateHistogramAggregation as dv, type NestedAggregationItem as dw, type NestedAggregationItemKindOneOf as dx, type NestedAggregation as dy, type SearchDetails as dz, type UpdateCategoryApplicationErrors as e, type TargetWithLiterals as e$, type MoveCategoryRequest as e0, type BulkUpdateCategoriesRequest as e1, type BulkCategoriesResult as e2, type ItemMetadata as e3, type ApplicationError as e4, type BulkActionMetadata as e5, type UpdateCategoryVisibilityRequest as e6, type BulkShowCategoriesRequest as e7, type BulkDeleteCategoriesRequest as e8, type BulkDeleteCategoriesResponse as e9, type EntityCreatedEvent as eA, type RestoreInfo as eB, type EntityUpdatedEvent as eC, type EntityDeletedEvent as eD, type ActionEvent as eE, type Empty as eF, type BulkCreateCategoriesForMigrationRequest as eG, type BulkCreateCategoriesForMigrationResponse as eH, type BulkAddItemsToCategoryForMigrationRequest as eI, type BulkAddItemsToCategoryForMigrationResponse as eJ, type MessageEnvelope as eK, type IdentificationData as eL, type IdentificationDataIdOneOf as eM, type AccountInfo as eN, type BaseEventMetadata as eO, type EventMetadata as eP, type AccountInfoMetadata as eQ, type CategoriesQueryResult as eR, type CategoryQuerySpec as eS, type CategorySearchSpec as eT, type ListItemsInCategoryOptionsPagingMethodOneOf as eU, type BulkSetItemCategoriesOptions as eV, utils as eW, type NodeTypeWithLiterals as eX, type WidthTypeWithLiterals as eY, type PluginContainerDataAlignmentWithLiterals as eZ, type ButtonDataTypeWithLiterals as e_, type BulkDeleteCategoriesResponseBulkCategoriesResult as ea, type BulkAddItemsToCategoryRequest as eb, type BulkItemsToCategoryResult as ec, type ItemReferenceMetadata as ed, type BulkAddItemToCategoriesRequest as ee, type BulkItemToCategoriesResult as ef, type BulkRemoveItemsFromCategoryRequest as eg, type BulkRemoveItemFromCategoriesRequest as eh, type ListItemsInCategoryRequest as ei, type ListItemsInCategoryRequestPagingMethodOneOf as ej, type PagingMetadataV2 as ek, type ListCategoriesForItemRequest as el, type ListCategoriesForItemsRequest as em, type MapItemToCategories as en, type ListTreesRequest as eo, type MoveItemInCategoryRequest as ep, type MoveItemInCategoryResponse as eq, type SetArrangedItemsRequest as er, type GetArrangedItemsRequest as es, type BulkSetItemCategoriesRequest as et, type BulkSetItemCategoriesResponse as eu, type GetCategoriesTreeRequest as ev, type GetCategoriesTreeResponse as ew, type CategoryTreeNode as ex, type DomainEvent as ey, type DomainEventBodyOneOf as ez, type CategorySearch as f, getCategory 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 ResponsivenessBehaviourWithLiterals as fA, type DesignTargetWithLiterals as fB, type SingleEntityOpsRequestedFieldsWithLiterals as fC, type SortOrderWithLiterals as fD, type RequestedFieldsWithLiterals as fE, type SortTypeWithLiterals as fF, type SortDirectionWithLiterals as fG, type MissingValuesWithLiterals as fH, type ScalarTypeWithLiterals as fI, type NestedAggregationTypeWithLiterals as fJ, type IntervalWithLiterals as fK, type AggregationTypeWithLiterals as fL, type ModeWithLiterals as fM, type PositionWithLiterals as fN, type MoveItemInCategoryRequestPositionWithLiterals as fO, type WebhookIdentityTypeWithLiterals as fP, type BulkSetItemCategoriesApplicationErrors as fQ, type CommonQueryWithEntityContext as fR, type CommonSearchWithEntityContext as fS, onCategoryMoved as fT, onCategoryCreated as fU, onCategoryDeleted as fV, onCategoryItemAddedToCategory as fW, onCategoryItemRemovedFromCategory as fX, onCategoryItemsArrangedInCategory as fY, onCategoryUpdated as fZ, createCategory 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 OriginWithLiterals as fy, type VerticalAlignmentAlignmentWithLiterals as fz, type SearchCategoriesResponse as g, updateCategory as g0, deleteCategory as g1, queryCategories as g2, countCategories as g3, moveCategory as g4, bulkUpdateCategories as g5, updateCategoryVisibility as g6, bulkShowCategories as g7, bulkAddItemsToCategory as g8, bulkAddItemToCategories as g9, bulkRemoveItemsFromCategory as ga, bulkRemoveItemFromCategories as gb, listItemsInCategory as gc, listCategoriesForItem as gd, listCategoriesForItems as ge, listTrees as gf, setArrangedItems as gg, getArrangedItems as gh, 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-Ct2lgIM_.js';
|
|
3
|
+
export { eN as AccountInfo, eQ as AccountInfoMetadata, eE as ActionEvent, dm as Aggregation, dA as AggregationData, dn as AggregationKindOneOf, dT as AggregationResults, dU as AggregationResultsResultOneOf, dH as AggregationResultsScalarResult, aY as AggregationType, fL as AggregationTypeWithLiterals, aC as Alignment, fp as AlignmentWithLiterals, c7 as AnchorData, cQ as App, ce as AppEmbedData, cf as AppEmbedDataAppDataOneOf, aE as AppType, fr as AppTypeWithLiterals, e4 as ApplicationError, ay as AspectRatio, fl as AspectRatioWithLiterals, cz as AudioData, bZ as Background, b_ as BackgroundBackgroundOneOf, cF as BackgroundImage, au as BackgroundType, fh as BackgroundTypeWithLiterals, cG as Banner, eO as BaseEventMetadata, cC as BlockquoteData, cg as BookingData, bd as Border, cw as BorderColors, cx as BorderWidths, b2 as Breadcrumb, b1 as BreadcrumbsInfo, e5 as BulkActionMetadata, ee as BulkAddItemToCategoriesRequest, eI as BulkAddItemsToCategoryForMigrationRequest, eJ as BulkAddItemsToCategoryForMigrationResponse, eb as BulkAddItemsToCategoryRequest, e2 as BulkCategoriesResult, eG as BulkCreateCategoriesForMigrationRequest, eH as BulkCreateCategoriesForMigrationResponse, e8 as BulkDeleteCategoriesRequest, e9 as BulkDeleteCategoriesResponse, ea as BulkDeleteCategoriesResponseBulkCategoriesResult, ef as BulkItemToCategoriesResult, ec as BulkItemsToCategoryResult, eh as BulkRemoveItemFromCategoriesRequest, eg as BulkRemoveItemsFromCategoryRequest, fQ as BulkSetItemCategoriesApplicationErrors, eV as BulkSetItemCategoriesOptions, et as BulkSetItemCategoriesRequest, eu as BulkSetItemCategoriesResponse, e7 as BulkShowCategoriesRequest, e1 as BulkUpdateCategoriesRequest, cB as BulletedListData, bc as ButtonData, ab as ButtonDataType, e_ as ButtonDataTypeWithLiterals, ci as ButtonStyles, cD as CaptionData, cl as CardStyles, eR as CategoriesQueryResult, cV as CategoryMoved, eS as CategoryQuerySpec, eT as CategorySearchSpec, ex as CategoryTreeNode, cv as CellStyle, bo as CodeBlockData, cr as CollapsibleListData, c8 as ColorData, be as Colors, fR as CommonQueryWithEntityContext, fS as CommonSearchWithEntityContext, di as CompactCategory, d$ as CountCategoriesRequest, c$ as CreateCategoryRequest, d0 as CreateCategoryResponse, ak as Crop, f7 as CropWithLiterals, dc as CursorPaging, de as CursorPagingMetadata, d9 as CursorQuery, da as CursorQueryPagingMethodOneOf, dk as CursorSearch, dl as CursorSearchPagingMethodOneOf, df as Cursors, cU as CustomTag, dv as DateHistogramAggregation, dP as DateHistogramResult, dR as DateHistogramResults, c5 as Decoration, c6 as DecorationDataOneOf, av as DecorationType, fi as DecorationTypeWithLiterals, d6 as DeleteCategoryRequest, d7 as DeleteCategoryResponse, dV as DeprecatedSearchCategoriesWithOffsetRequest, dZ as DeprecatedSearchCategoriesWithOffsetResponse, c3 as Design, aO as DesignTarget, fB as DesignTargetWithLiterals, ct as Dimensions, aG as Direction, ft as DirectionWithLiterals, bq as DividerData, ag as DividerDataAlignment, f3 as DividerDataAlignmentWithLiterals, cL as DocumentStyle, ey as DomainEvent, ez as DomainEventBodyOneOf, d1 as DuplicateHandleErrorData, cp as EmbedData, eF as Empty, eA as EntityCreatedEvent, eD as EntityDeletedEvent, eC as EntityUpdatedEvent, ch as EventData, eP 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, fj as FontTypeWithLiterals, bG as GIF, bF as GIFData, am as GIFType, f9 as GIFTypeWithLiterals, bv as GalleryData, bB as GalleryOptions, bC as GalleryOptionsLayout, es as GetArrangedItemsRequest, ev as GetCategoriesTreeRequest, ew as GetCategoriesTreeResponse, d2 as GetCategoryRequest, d3 as GetCategoryResponse, bY as Gradient, dQ as GroupByValueResults, bI as HTMLData, bJ as HTMLDataDataOneOf, bH as HeadingData, bj as Height, eL as IdentificationData, eM as IdentificationDataIdOneOf, bx as Image, bK as ImageData, bM as ImageDataStyles, aK as ImagePosition, fx as ImagePositionWithLiterals, cj as ImageStyles, ax as ImageStylesPosition, fk as ImageStylesPositionWithLiterals, dq as IncludeMissingValuesOptions, aF as InitialExpandedItems, fs as InitialExpandedItemsWithLiterals, aX as Interval, fK as IntervalWithLiterals, cO as InvalidateCache, cP as InvalidateCacheGetByOneOf, bz as Item, cW as ItemAddedToCategory, bA as ItemDataOneOf, e3 as ItemMetadata, ed as ItemReferenceMetadata, cY as ItemRemovedFromCategory, bD as ItemStyle, cX as ItemsAddedToCategory, c_ as ItemsArrangedInCategory, cZ as ItemsRemovedFromCategory, b5 as Keyword, aD as Layout, cH as LayoutCellData, cE as LayoutData, ai as LayoutType, f5 as LayoutTypeWithLiterals, fq as LayoutWithLiterals, ae as LineStyle, f1 as LineStyleWithLiterals, bl as Link, c9 as LinkData, bm as LinkDataOneOf, bN as LinkPreviewData, bO as LinkPreviewDataStyles, el as ListCategoriesForItemRequest, em as ListCategoriesForItemsRequest, dg as ListCompactCategoriesByIdsRequest, dh as ListCompactCategoriesByIdsResponse, eU as ListItemsInCategoryOptionsPagingMethodOneOf, ei as ListItemsInCategoryRequest, ej as ListItemsInCategoryRequestPagingMethodOneOf, eo as ListTreesRequest, cy as ListValue, bP as MapData, en as MapItemToCategories, bQ as MapSettings, ap as MapType, fc as MapTypeWithLiterals, bw as Media, ca as MentionData, eK as MessageEnvelope, cK as Metadata, aU as MissingValues, fH as MissingValuesWithLiterals, aZ as Mode, fM as ModeWithLiterals, e0 as MoveCategoryRequest, ep as MoveItemInCategoryRequest, a$ as MoveItemInCategoryRequestPosition, fO as MoveItemInCategoryRequestPositionWithLiterals, eq as MoveItemInCategoryResponse, dy as NestedAggregation, dw as NestedAggregationItem, dx as NestedAggregationItemKindOneOf, dD as NestedAggregationResults, dE as NestedAggregationResultsResultOneOf, aW as NestedAggregationType, fJ as NestedAggregationTypeWithLiterals, dM as NestedResultValue, dN as NestedResultValueResultOneOf, dS as NestedResults, dI as NestedValueAggregationResult, b9 as Node, ba as NodeDataOneOf, bb as NodeStyle, a8 as NodeType, eX as NodeTypeWithLiterals, aI as NullValue, fv as NullValueWithLiterals, cq as Oembed, dW as OffsetSearch, dX as OffsetSearchPagingMethodOneOf, bU as Option, c0 as OptionDesign, bX as OptionLayout, cA as OrderedListData, aj as Orientation, f6 as OrientationWithLiterals, aL as Origin, fy as OriginWithLiterals, bu as PDFSettings, cR as Page, dY as Paging, d_ as PagingMetadata, ek as PagingMetadataV2, bR as ParagraphData, b3 as ParentCategory, bT as Permissions, aA as Placement, fn as PlacementWithLiterals, co as PlaybackOptions, bf as PluginContainerData, aa as PluginContainerDataAlignment, eZ 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, fg as PollLayoutDirectionWithLiterals, as as PollLayoutType, ff as PollLayoutTypeWithLiterals, bV as PollSettings, a_ as Position, fN as PositionWithLiterals, cm as PricingData, d8 as QueryCategoriesRequest, dd as QueryCategoriesResponse, dt as RangeAggregation, dC as RangeAggregationResult, dp as RangeBucket, dK as RangeResult, dG as RangeResults, bn as Rel, aR as RequestedFields, fE as RequestedFieldsWithLiterals, az as Resizing, fm as ResizingWithLiterals, aN as ResponsivenessBehaviour, fA as ResponsivenessBehaviourWithLiterals, eB as RestoreInfo, dO as Results, ck as RibbonStyles, b8 as RichContent, du as ScalarAggregation, dL as ScalarResult, aV as ScalarType, fI as ScalarTypeWithLiterals, aJ as Scaling, fw as ScalingWithLiterals, dj as SearchCategoriesRequest, dz as SearchDetails, b4 as SeoSchema, er as SetArrangedItemsRequest, b7 as Settings, cI as ShapeData, cJ as ShapeDataStyles, aP as SingleEntityOpsRequestedFields, fC as SingleEntityOpsRequestedFieldsWithLiterals, aT as SortDirection, fG as SortDirectionWithLiterals, aQ as SortOrder, fD as SortOrderWithLiterals, aS as SortType, fF as SortTypeWithLiterals, db as Sorting, an as Source, fa as SourceWithLiterals, bi as Spoiler, cc as SpoilerData, bk as Styles, bL as StylesBorder, ao as StylesPosition, fb as StylesPositionWithLiterals, cu as TableCellData, cs as TableData, b6 as Tag, ac as Target, e$ as TargetWithLiterals, ad as TextAlignment, f0 as TextAlignmentWithLiterals, c4 as TextData, cM as TextNodeStyle, bp as TextStyle, bE as Thumbnails, al as ThumbnailsAlignment, f8 as ThumbnailsAlignmentWithLiterals, aB as Type, fo as TypeWithLiterals, cS as URI, d4 as UpdateCategoryRequest, d5 as UpdateCategoryResponse, e6 as UpdateCategoryVisibilityRequest, dr as ValueAggregation, ds as ValueAggregationOptionsOneOf, dB as ValueAggregationResult, dJ as ValueResult, dF as ValueResults, aH as VerticalAlignment, aM as VerticalAlignmentAlignment, fz as VerticalAlignmentAlignmentWithLiterals, fu as VerticalAlignmentWithLiterals, by as Video, cn as VideoData, ah as ViewMode, f4 as ViewModeWithLiterals, aq as ViewRole, fd as ViewRoleWithLiterals, ar as VoteRole, fe as VoteRoleWithLiterals, b0 as WebhookIdentityType, fP as WebhookIdentityTypeWithLiterals, af as Width, a9 as WidthType, eY as WidthTypeWithLiterals, f2 as WidthWithLiterals, eW as utils } from './categories-v1-category-categories.universal-Ct2lgIM_.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
|