@wix/auto_sdk_categories_categories 1.0.131 → 1.0.133
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/{internal/cjs/categories-v1-category-categories.universal-BBkrgdQc.d.ts → cjs/categories-v1-category-categories.universal-DhqN8JS_.d.ts} +58 -23
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +17 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +17 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +59 -6
- package/build/cjs/meta.js +17 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/{internal/es/categories-v1-category-categories.universal-BBkrgdQc.d.mts → es/categories-v1-category-categories.universal-DhqN8JS_.d.mts} +58 -23
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +16 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +16 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +59 -6
- package/build/es/meta.mjs +16 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/{cjs/categories-v1-category-categories.universal-Cy-lRfCS.d.ts → internal/cjs/categories-v1-category-categories.universal-B52XcwvG.d.ts} +220 -6
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +17 -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 +17 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +215 -7
- package/build/internal/cjs/meta.js +17 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/{es/categories-v1-category-categories.universal-Cy-lRfCS.d.mts → internal/es/categories-v1-category-categories.universal-B52XcwvG.d.mts} +220 -6
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +16 -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 +16 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +215 -7
- package/build/internal/es/meta.mjs +16 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -733,17 +733,27 @@ interface Rel {
|
|
|
733
733
|
interface Animation {
|
|
734
734
|
/** Animation kind. */
|
|
735
735
|
type?: TypeWithLiterals;
|
|
736
|
-
/** Entrance animation, played once when the node first enters the viewport. */
|
|
736
|
+
/** Entrance animation, played once when the node first enters the viewport (VIEW). */
|
|
737
737
|
entrance?: EntranceAnimation;
|
|
738
|
-
/** Looping animation, repeated indefinitely while the node is on the page. When combined with entrance, the loop starts after the entrance finishes. */
|
|
738
|
+
/** Looping animation, repeated indefinitely while the node is on the page. When combined with entrance, the loop starts after the entrance finishes (VIEW). */
|
|
739
739
|
loop?: LoopAnimation;
|
|
740
|
+
/**
|
|
741
|
+
* POINTER carries its fields directly on the union member in the JTD wall, hence
|
|
742
|
+
* flat fields here (ts-proto camelCase must equal the JTD property names). A future
|
|
743
|
+
* SCROLL variant will contend for the `effect` JSON name — resolve when it lands.
|
|
744
|
+
*/
|
|
745
|
+
effect?: PointerEffect;
|
|
746
|
+
/** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
|
|
747
|
+
transitionDuration?: number | null;
|
|
740
748
|
}
|
|
741
749
|
declare enum Type {
|
|
742
750
|
/** Animations that play while the node is in view. */
|
|
743
|
-
VIEW = "VIEW"
|
|
751
|
+
VIEW = "VIEW",
|
|
752
|
+
/** Animations driven by the visitor's mouse position. */
|
|
753
|
+
POINTER = "POINTER"
|
|
744
754
|
}
|
|
745
755
|
/** @enumType */
|
|
746
|
-
type TypeWithLiterals = Type | 'VIEW';
|
|
756
|
+
type TypeWithLiterals = Type | 'VIEW' | 'POINTER';
|
|
747
757
|
interface EntranceAnimation {
|
|
748
758
|
/** The entrance effect to play. */
|
|
749
759
|
effect?: EntranceEffect;
|
|
@@ -863,6 +873,49 @@ declare enum LoopEffectType {
|
|
|
863
873
|
}
|
|
864
874
|
/** @enumType */
|
|
865
875
|
type LoopEffectTypeWithLiterals = LoopEffectType | 'BOUNCE' | 'BREATHE' | 'CROSS' | 'FLASH' | 'FLIP' | 'FOLD' | 'JELLO' | 'POKE' | 'PULSE' | 'RUBBER' | 'SPIN' | 'SWING' | 'WIGGLE';
|
|
876
|
+
interface PointerEffect {
|
|
877
|
+
/** The mouse effect type. */
|
|
878
|
+
type?: PointerEffectTypeWithLiterals;
|
|
879
|
+
/** Reacts away from the pointer instead of toward it. */
|
|
880
|
+
inverted?: boolean | null;
|
|
881
|
+
/**
|
|
882
|
+
* One field, two value spaces (the effect type says which): the axis the movement is constrained to — HORIZONTAL, VERTICAL, or BOTH (AIRY, SCALE, SKEW, TRACK, TRACK_3D) — or the edge/center axis the node swivels around — TOP, BOTTOM, LEFT, RIGHT, CENTER_HORIZONTAL, or CENTER_VERTICAL (SWIVEL). Only the effects that expose one accept it.
|
|
883
|
+
* @maxLength 20
|
|
884
|
+
*/
|
|
885
|
+
axis?: string | null;
|
|
886
|
+
/**
|
|
887
|
+
* Whether the node grows or shrinks as the pointer nears: UP or DOWN (SCALE).
|
|
888
|
+
* @maxLength 8
|
|
889
|
+
*/
|
|
890
|
+
direction?: string | null;
|
|
891
|
+
/**
|
|
892
|
+
* Motion style: GENTLE, MODERATE, or INTENSE.
|
|
893
|
+
* @maxLength 100
|
|
894
|
+
*/
|
|
895
|
+
easing?: string | null;
|
|
896
|
+
}
|
|
897
|
+
declare enum PointerEffectType {
|
|
898
|
+
/** Drifts loosely after the pointer with a light rotation. */
|
|
899
|
+
AIRY = "AIRY",
|
|
900
|
+
/** Squashes and stretches toward the pointer. */
|
|
901
|
+
BLOB = "BLOB",
|
|
902
|
+
/** Shifts after the pointer while blurring. */
|
|
903
|
+
BLUR = "BLUR",
|
|
904
|
+
/** Scales as the pointer approaches. */
|
|
905
|
+
SCALE = "SCALE",
|
|
906
|
+
/** Skews toward the pointer. */
|
|
907
|
+
SKEW = "SKEW",
|
|
908
|
+
/** Rotates around a pivot edge or axis, following the pointer. */
|
|
909
|
+
SWIVEL = "SWIVEL",
|
|
910
|
+
/** Tilts in 3D perspective toward the pointer. */
|
|
911
|
+
TILT_3D = "TILT_3D",
|
|
912
|
+
/** Follows the pointer's position. */
|
|
913
|
+
TRACK = "TRACK",
|
|
914
|
+
/** Follows the pointer with a 3D depth motion. */
|
|
915
|
+
TRACK_3D = "TRACK_3D"
|
|
916
|
+
}
|
|
917
|
+
/** @enumType */
|
|
918
|
+
type PointerEffectTypeWithLiterals = PointerEffectType | 'AIRY' | 'BLOB' | 'BLUR' | 'SCALE' | 'SKEW' | 'SWIVEL' | 'TILT_3D' | 'TRACK' | 'TRACK_3D';
|
|
866
919
|
interface CodeBlockData {
|
|
867
920
|
/** Styling for the code block's text. */
|
|
868
921
|
textStyle?: TextStyle;
|
|
@@ -6178,24 +6231,6 @@ interface SetArrangedItemsOptions {
|
|
|
6178
6231
|
* @fqn com.wix.categories.api.v1.CategoriesService.GetArrangedItems
|
|
6179
6232
|
*/
|
|
6180
6233
|
declare function getArrangedItems(categoryId: string, treeReference: NonNullablePaths<TreeReference, `appNamespace`, 2>): Promise<NonNullablePaths<GetArrangedItemsResponse, `items` | `items.${number}.catalogItemId` | `items.${number}.appId`, 4>>;
|
|
6181
|
-
/**
|
|
6182
|
-
* Sets categories of an item by providing a sequence of category IDs.
|
|
6183
|
-
* The item's categories will be completely overridden with the provided list.
|
|
6184
|
-
* @param item - The item to update.
|
|
6185
|
-
* @internal
|
|
6186
|
-
* @documentationMaturity preview
|
|
6187
|
-
* @requiredField item
|
|
6188
|
-
* @requiredField item.appId
|
|
6189
|
-
* @requiredField item.catalogItemId
|
|
6190
|
-
* @requiredField options.treeReference
|
|
6191
|
-
* @requiredField options.treeReference.appNamespace
|
|
6192
|
-
* @permissionId CATEGORIES.ITEM_SET_CATEGORIES
|
|
6193
|
-
* @applicableIdentity APP
|
|
6194
|
-
* @fqn com.wix.categories.api.v1.CategoriesService.BulkSetItemCategories
|
|
6195
|
-
*/
|
|
6196
|
-
declare function bulkSetItemCategories(item: NonNullablePaths<ItemReference, `appId` | `catalogItemId`, 2>, options?: NonNullablePaths<BulkSetItemCategoriesOptions, `treeReference` | `treeReference.appNamespace`, 3>): Promise<NonNullablePaths<BulkSetItemCategoriesResponse, `addResults` | `addResults.${number}.itemMetadata.originalIndex` | `addResults.${number}.itemMetadata.success` | `addResults.${number}.itemMetadata.error.code` | `addResults.${number}.itemMetadata.error.description` | `removeResults` | `removeResults.${number}.itemMetadata.originalIndex` | `removeResults.${number}.itemMetadata.success` | `removeResults.${number}.itemMetadata.error.code` | `removeResults.${number}.itemMetadata.error.description` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6> & {
|
|
6197
|
-
__applicationErrorsType?: BulkSetItemCategoriesApplicationErrors;
|
|
6198
|
-
}>;
|
|
6199
6234
|
interface BulkSetItemCategoriesOptions {
|
|
6200
6235
|
/**
|
|
6201
6236
|
* List of category IDs to set for the item.
|
|
@@ -6207,4 +6242,4 @@ interface BulkSetItemCategoriesOptions {
|
|
|
6207
6242
|
treeReference: TreeReference;
|
|
6208
6243
|
}
|
|
6209
6244
|
|
|
6210
|
-
export { type SetArrangedItemsApplicationErrors as $, type BulkAddItemToCategoriesOptions as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkAddItemToCategoriesResponse as E, type BulkAddItemToCategoriesApplicationErrors as F, type GetCategoryOptions as G, type BulkRemoveItemsFromCategoryOptions as H, type ItemReference as I, type BulkRemoveItemsFromCategoryResponse as J, type BulkRemoveItemsFromCategoryApplicationErrors as K, type BulkRemoveItemFromCategoriesOptions as L, type MoveCategoryOptions as M, type BulkRemoveItemFromCategoriesResponse as N, type BulkRemoveItemFromCategoriesApplicationErrors as O, type ListItemsInCategoryOptions as P, type ListItemsInCategoryResponse as Q, type ListCategoriesForItemOptions as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type ListCategoriesForItemResponse as V, type ListCategoriesForItemsOptions as W, type ListCategoriesForItemsResponse as X, type ListTreesResponse as Y, type SetArrangedItemsOptions as Z, type SetArrangedItemsResponse as _, type CreateCategoryOptions as a, BannerPosition as a$, type GetArrangedItemsResponse as a0, type BulkSetItemCategoriesOptions as a1, type BulkSetItemCategoriesResponse as a2, type BulkSetItemCategoriesApplicationErrors as a3, type CategoryMovedEnvelope as a4, type CategoryCreatedEnvelope as a5, type CategoryDeletedEnvelope as a6, type CategoryItemAddedToCategoryEnvelope as a7, type CategoryItemRemovedFromCategoryEnvelope as a8, type CategoryItemsArrangedInCategoryEnvelope as a9, Source as aA, StylesPosition as aB, MapType as aC, ViewRole as aD, VoteRole as aE, PollLayoutType as aF, PollLayoutDirection as aG, PollDesignBackgroundType as aH, DecorationType as aI, FontType as aJ, Variant as aK, ImageStylesPosition as aL, AspectRatio as aM, Resizing as aN, Placement as aO, CardStylesType as aP, Alignment as aQ, Layout as aR, AppType as aS, InitialExpandedItems as aT, Direction as aU, VerticalAlignment as aV, NullValue as aW, ImageScalingScaling as aX, ImagePosition as aY, LayoutDataBackgroundType as aZ, Origin as a_, type CategoryUpdatedEnvelope as aa, type CategoryQuery as ab, type QueryCategoriesOptions as ac, typedQueryCategories as ad, type CategoriesQueryBuilder as ae, NodeType as af, BackgroundType as ag, GradientType as ah, WidthType as ai, PluginContainerDataAlignment as aj, ButtonDataType as ak, Target as al, Type as am, EntranceEffectType as an, LoopEffectType as ao, TextAlignment as ap, LineCap as aq, LineStyle as ar, Width as as, DividerDataAlignment as at, ViewMode as au, LayoutType as av, Orientation as aw, Crop as ax, ThumbnailsAlignment as ay, GIFType as az, type CreateCategoryApplicationErrors as b, type PDFSettings as b$, BackdropType as b0, VerticalAlignmentAlignment as b1, ResponsivenessBehaviour as b2, DesignTarget as b3, Scaling as b4, ImagePositionPosition as b5, CardDataBackgroundType as b6, ListStyle as b7, Indentation as b8, SmartBlockDataType as b9, type ButtonData as bA, type Gradient as bB, type Stop as bC, type Border as bD, type Colors as bE, type Background as bF, type PluginContainerData as bG, type PluginContainerDataWidth as bH, type PluginContainerDataWidthDataOneOf as bI, type Spoiler as bJ, type Height as bK, type Styles as bL, type Link as bM, type LinkDataOneOf as bN, type Rel as bO, type Animation as bP, type EntranceAnimation as bQ, type EntranceEffect as bR, type LoopAnimation as bS, type LoopEffect as bT, type CodeBlockData as bU, type TextStyle as bV, type DividerData as bW, type DividerDataStyles as bX, type FileData as bY, type FileSource as bZ, type FileSourceDataOneOf as b_, ColumnSize as ba, SingleEntityOpsRequestedFields as bb, SortOrder as bc, RequestedFields as bd, SortType as be, SortDirection as bf, MissingValues as bg, ScalarType as bh, NestedAggregationType as bi, Interval as bj, AggregationType as bk, Mode as bl, Position as bm, MoveItemInCategoryRequestPosition as bn, WebhookIdentityType as bo, type BreadcrumbsInfo as bp, type Breadcrumb as bq, type ParentCategory as br, type SeoSchema as bs, type Keyword as bt, type Tag as bu, type Settings as bv, type RichContent as bw, type Node as bx, type NodeDataOneOf as by, type NodeStyle as bz, type CreateCategoryValidationErrors as c, type TableData as c$, type GalleryData as c0, type Media as c1, type Image as c2, type Video as c3, type Item as c4, type ItemDataOneOf as c5, type GalleryOptions as c6, type GalleryOptionsLayout as c7, type ItemStyle as c8, type Thumbnails as c9, type PollDataLayout as cA, type Design as cB, type TextData as cC, type Decoration as cD, type DecorationDataOneOf as cE, type AnchorData as cF, type ColorData as cG, type LinkData as cH, type MentionData as cI, type FontSizeData as cJ, type SpoilerData as cK, type FontFamilyData as cL, type SketchData as cM, type AppEmbedData as cN, type AppEmbedDataAppDataOneOf as cO, type BookingData as cP, type EventData as cQ, type ButtonStyles as cR, type ImageStyles as cS, type RibbonStyles as cT, type CardStyles as cU, type PricingData as cV, type VideoData as cW, type PlaybackOptions as cX, type EmbedData as cY, type Oembed as cZ, type CollapsibleListData as c_, type GIFData as ca, type GIF as cb, type HeadingData as cc, type HTMLData as cd, type HTMLDataDataOneOf as ce, type ImageData as cf, type StylesBorder as cg, type ImageDataStyles as ch, type ImageDataCrop as ci, type LinkPreviewData as cj, type LinkPreviewDataStyles as ck, type MapData as cl, type MapSettings as cm, type ParagraphData as cn, type PollData as co, type Permissions as cp, type Option as cq, type PollSettings as cr, type PollLayout as cs, type OptionLayout as ct, type BackgroundGradient as cu, type PollDesignBackground as cv, type PollDesignBackgroundBackgroundOneOf as cw, type PollDesign as cx, type OptionDesign as cy, type Poll as cz, type GetCategoryBySlugOptions as d, type CursorPagingMetadata as d$, type Dimensions as d0, type TableCellData as d1, type CellStyle as d2, type BorderColors as d3, type BorderWidths as d4, type ListValue as d5, type AudioData as d6, type OrderedListData as d7, type BulletedListData as d8, type BlockquoteData as d9, type URI as dA, type File as dB, type CustomTag as dC, type Pages as dD, type URIs as dE, type CategoryMoved as dF, type ItemAddedToCategory as dG, type ItemsAddedToCategory as dH, type ItemRemovedFromCategory as dI, type ItemsRemovedFromCategory as dJ, type ItemsArrangedInCategory as dK, type CreateCategoryRequest as dL, type CreateCategoryResponse as dM, type DuplicateHandleErrorData as dN, type GetCategoryRequest as dO, type GetCategoryResponse as dP, type GetCategoryBySlugRequest as dQ, type UpdateCategoryRequest as dR, type UpdateCategoryResponse as dS, type DeleteCategoryRequest as dT, type DeleteCategoryResponse as dU, type QueryCategoriesRequest as dV, type CursorQuery as dW, type CursorQueryPagingMethodOneOf as dX, type Sorting as dY, type CursorPaging as dZ, type QueryCategoriesResponse as d_, type CaptionData as da, type LayoutData as db, type LayoutDataBackground as dc, type LayoutDataBackgroundImage as dd, type Banner as de, type Backdrop as df, type LayoutCellData as dg, type ShapeData as dh, type ShapeDataStyles as di, type CardData as dj, type CardDataBackground as dk, type BackgroundImage as dl, type TocData as dm, type SmartBlockData as dn, type SmartBlockCellData as dp, type CheckboxListData as dq, type ListItemNodeData as dr, type Metadata as ds, type DocumentStyle as dt, type TextNodeStyle as du, type ExtendedFields as dv, type InvalidateCache as dw, type InvalidateCacheGetByOneOf as dx, type App as dy, type Page as dz, type GetCategoryBySlugResponse as e, type ListItemsInCategoryRequest as e$, type Cursors as e0, type ListCompactCategoriesByIdsRequest as e1, type ListCompactCategoriesByIdsResponse as e2, type CompactCategory as e3, type SearchCategoriesRequest as e4, type CursorSearch as e5, type CursorSearchPagingMethodOneOf as e6, type Aggregation as e7, type AggregationKindOneOf as e8, type RangeBucket as e9, type GroupByValueResults as eA, type DateHistogramResults as eB, type NestedResults as eC, type AggregationResults as eD, type AggregationResultsResultOneOf as eE, type DeprecatedSearchCategoriesWithOffsetRequest as eF, type OffsetSearch as eG, type OffsetSearchPagingMethodOneOf as eH, type Paging as eI, type DeprecatedSearchCategoriesWithOffsetResponse as eJ, type PagingMetadata as eK, type CountCategoriesRequest as eL, type MoveCategoryRequest as eM, type BulkUpdateCategoriesRequest as eN, type BulkCategoriesResult as eO, type ItemMetadata as eP, type ApplicationError as eQ, type BulkActionMetadata as eR, type UpdateCategoryVisibilityRequest as eS, type BulkShowCategoriesRequest as eT, type BulkAddItemsToCategoryRequest as eU, type BulkItemsToCategoryResult as eV, type ItemReferenceMetadata as eW, type BulkAddItemToCategoriesRequest as eX, type BulkItemToCategoriesResult as eY, type BulkRemoveItemsFromCategoryRequest as eZ, type BulkRemoveItemFromCategoriesRequest as e_, type IncludeMissingValuesOptions as ea, type ValueAggregation as eb, type ValueAggregationOptionsOneOf as ec, type RangeAggregation as ed, type ScalarAggregation as ee, type DateHistogramAggregation as ef, type NestedAggregationItem as eg, type NestedAggregationItemKindOneOf as eh, type NestedAggregation as ei, type SearchDetails as ej, type AggregationData as ek, type ValueAggregationResult as el, type RangeAggregationResult as em, type NestedAggregationResults as en, type NestedAggregationResultsResultOneOf as eo, type ValueResults as ep, type RangeResults as eq, type AggregationResultsScalarResult as er, type NestedValueAggregationResult as es, type ValueResult as et, type RangeResult as eu, type ScalarResult as ev, type NestedResultValue as ew, type NestedResultValueResultOneOf as ex, type Results as ey, type DateHistogramResult as ez, type UpdateCategoryOptions as f, type StylesPositionWithLiterals as f$, type ListItemsInCategoryRequestPagingMethodOneOf as f0, type PagingMetadataV2 as f1, type ListCategoriesForItemRequest as f2, type ListCategoriesForItemsRequest as f3, type MapItemToCategories as f4, type ListTreesRequest as f5, type MoveItemInCategoryRequest as f6, type MoveItemInCategoryResponse as f7, type SetArrangedItemsRequest as f8, type GetArrangedItemsRequest as f9, type CategoriesQueryResult as fA, type CategoryQuerySpec as fB, type CategorySearchSpec as fC, type ListItemsInCategoryOptionsPagingMethodOneOf as fD, utils as fE, type NodeTypeWithLiterals as fF, type BackgroundTypeWithLiterals as fG, type GradientTypeWithLiterals as fH, type WidthTypeWithLiterals as fI, type PluginContainerDataAlignmentWithLiterals as fJ, type ButtonDataTypeWithLiterals as fK, type TargetWithLiterals as fL, type TypeWithLiterals as fM, type EntranceEffectTypeWithLiterals as fN, type LoopEffectTypeWithLiterals as fO, type TextAlignmentWithLiterals as fP, type LineCapWithLiterals as fQ, type LineStyleWithLiterals as fR, type WidthWithLiterals as fS, type DividerDataAlignmentWithLiterals as fT, type ViewModeWithLiterals as fU, type LayoutTypeWithLiterals as fV, type OrientationWithLiterals as fW, type CropWithLiterals as fX, type ThumbnailsAlignmentWithLiterals as fY, type GIFTypeWithLiterals as fZ, type SourceWithLiterals as f_, type BulkSetItemCategoriesRequest as fa, type GetCategoriesTreeRequest as fb, type GetCategoriesTreeResponse as fc, type CategoryTreeNode as fd, type DomainEvent as fe, type DomainEventBodyOneOf as ff, type EntityCreatedEvent as fg, type RestoreInfo as fh, type EntityUpdatedEvent as fi, type EntityDeletedEvent as fj, type ActionEvent as fk, type Empty as fl, type BulkCreateCategoriesForMigrationRequest as fm, type BulkCreateCategoriesForMigrationResponse as fn, type BulkAddItemsToCategoryForMigrationRequest as fo, type BulkAddItemsToCategoryForMigrationResponse as fp, type SetArrangedItemsForMigrationRequest as fq, type SetArrangedItemsForMigrationResponse as fr, type CatalogRollbackRequested as fs, type MessageEnvelope as ft, type IdentificationData as fu, type IdentificationDataIdOneOf as fv, type AccountInfo as fw, type BaseEventMetadata as fx, type EventMetadata as fy, type AccountInfoMetadata as fz, type UpdateCategoryApplicationErrors as g, updateCategory as g$, type MapTypeWithLiterals as g0, type ViewRoleWithLiterals as g1, type VoteRoleWithLiterals as g2, type PollLayoutTypeWithLiterals as g3, type PollLayoutDirectionWithLiterals as g4, type PollDesignBackgroundTypeWithLiterals as g5, type DecorationTypeWithLiterals as g6, type FontTypeWithLiterals as g7, type VariantWithLiterals as g8, type ImageStylesPositionWithLiterals as g9, type ColumnSizeWithLiterals as gA, type SingleEntityOpsRequestedFieldsWithLiterals as gB, type SortOrderWithLiterals as gC, type RequestedFieldsWithLiterals as gD, type SortTypeWithLiterals as gE, type SortDirectionWithLiterals as gF, type MissingValuesWithLiterals as gG, type ScalarTypeWithLiterals as gH, type NestedAggregationTypeWithLiterals as gI, type IntervalWithLiterals as gJ, type AggregationTypeWithLiterals as gK, type ModeWithLiterals as gL, type PositionWithLiterals as gM, type MoveItemInCategoryRequestPositionWithLiterals as gN, type WebhookIdentityTypeWithLiterals as gO, type CommonQueryWithEntityContext as gP, type CommonSearchWithEntityContext as gQ, onCategoryMoved as gR, onCategoryCreated as gS, onCategoryDeleted as gT, onCategoryItemAddedToCategory as gU, onCategoryItemRemovedFromCategory as gV, onCategoryItemsArrangedInCategory as gW, onCategoryUpdated as gX, createCategory as gY, getCategory as gZ, getCategoryBySlug as g_, type AspectRatioWithLiterals as ga, type ResizingWithLiterals as gb, type PlacementWithLiterals as gc, type CardStylesTypeWithLiterals as gd, type AlignmentWithLiterals as ge, type LayoutWithLiterals as gf, type AppTypeWithLiterals as gg, type InitialExpandedItemsWithLiterals as gh, type DirectionWithLiterals as gi, type VerticalAlignmentWithLiterals as gj, type NullValueWithLiterals as gk, type ImageScalingScalingWithLiterals as gl, type ImagePositionWithLiterals as gm, type LayoutDataBackgroundTypeWithLiterals as gn, type OriginWithLiterals as go, type BannerPositionWithLiterals as gp, type BackdropTypeWithLiterals as gq, type VerticalAlignmentAlignmentWithLiterals as gr, type ResponsivenessBehaviourWithLiterals as gs, type DesignTargetWithLiterals as gt, type ScalingWithLiterals as gu, type ImagePositionPositionWithLiterals as gv, type CardDataBackgroundTypeWithLiterals as gw, type ListStyleWithLiterals as gx, type IndentationWithLiterals as gy, type SmartBlockDataTypeWithLiterals as gz, type UpdateCategoryValidationErrors as h, deleteCategory as h0, queryCategories as h1, countCategories as h2, moveCategory as h3, bulkUpdateCategories as h4, updateCategoryVisibility as h5, bulkShowCategories as h6, bulkAddItemsToCategory as h7, bulkAddItemToCategories as h8, bulkRemoveItemsFromCategory as h9, bulkRemoveItemFromCategories as ha, listItemsInCategory as hb, listCategoriesForItem as hc, listCategoriesForItems as hd, listTrees as he, setArrangedItems as hf, getArrangedItems as hg, bulkSetItemCategories as hh, type CategorySearch as i, type SearchCategoriesResponse as j, type CountCategoriesOptions as k, type CountCategoriesResponse as l, type MoveCategoryResponse as m, type MoveCategoryApplicationErrors as n, type MaskedCategory as o, type BulkUpdateCategoriesResponse as p, type BulkUpdateCategoriesApplicationErrors as q, type BulkUpdateCategoriesValidationErrors as r, type UpdateCategoryVisibilityOptions as s, type UpdateCategoryVisibilityResponse as t, type UpdateCategoryVisibilityApplicationErrors as u, type BulkShowCategoriesOptions as v, type BulkShowCategoriesResponse as w, type BulkAddItemsToCategoryOptions as x, type BulkAddItemsToCategoryResponse as y, type BulkAddItemsToCategoryApplicationErrors as z };
|
|
6245
|
+
export { type SetArrangedItemsApplicationErrors as $, type BulkAddItemToCategoriesOptions as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkAddItemToCategoriesResponse as E, type BulkAddItemToCategoriesApplicationErrors as F, type GetCategoryOptions as G, type BulkRemoveItemsFromCategoryOptions as H, type ItemReference as I, type BulkRemoveItemsFromCategoryResponse as J, type BulkRemoveItemsFromCategoryApplicationErrors as K, type BulkRemoveItemFromCategoriesOptions as L, type MoveCategoryOptions as M, type BulkRemoveItemFromCategoriesResponse as N, type BulkRemoveItemFromCategoriesApplicationErrors as O, type ListItemsInCategoryOptions as P, type ListItemsInCategoryResponse as Q, type ListCategoriesForItemOptions as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type ListCategoriesForItemResponse as V, type ListCategoriesForItemsOptions as W, type ListCategoriesForItemsResponse as X, type ListTreesResponse as Y, type SetArrangedItemsOptions as Z, type SetArrangedItemsResponse as _, type CreateCategoryOptions as a, VerticalAlignmentAlignment as a$, type GetArrangedItemsResponse as a0, type CategoryMovedEnvelope as a1, type CategoryCreatedEnvelope as a2, type CategoryDeletedEnvelope as a3, type CategoryItemAddedToCategoryEnvelope as a4, type CategoryItemRemovedFromCategoryEnvelope as a5, type CategoryItemsArrangedInCategoryEnvelope as a6, type CategoryUpdatedEnvelope as a7, type CategoryQuery as a8, type QueryCategoriesOptions as a9, MapType as aA, ViewRole as aB, VoteRole as aC, PollLayoutType as aD, PollLayoutDirection as aE, PollDesignBackgroundType as aF, DecorationType as aG, FontType as aH, Variant as aI, ImageStylesPosition as aJ, AspectRatio as aK, Resizing as aL, Placement as aM, CardStylesType as aN, Alignment as aO, Layout as aP, AppType as aQ, InitialExpandedItems as aR, Direction as aS, VerticalAlignment as aT, NullValue as aU, ImageScalingScaling as aV, ImagePosition as aW, LayoutDataBackgroundType as aX, Origin as aY, BannerPosition as aZ, BackdropType as a_, typedQueryCategories as aa, type CategoriesQueryBuilder as ab, NodeType as ac, BackgroundType as ad, GradientType as ae, WidthType as af, PluginContainerDataAlignment as ag, ButtonDataType as ah, Target as ai, Type as aj, EntranceEffectType as ak, LoopEffectType as al, PointerEffectType as am, TextAlignment as an, LineCap as ao, LineStyle as ap, Width as aq, DividerDataAlignment as ar, ViewMode as as, LayoutType as at, Orientation as au, Crop as av, ThumbnailsAlignment as aw, GIFType as ax, Source as ay, StylesPosition as az, type CreateCategoryApplicationErrors as b, type GalleryData as b$, ResponsivenessBehaviour as b0, DesignTarget as b1, Scaling as b2, ImagePositionPosition as b3, CardDataBackgroundType as b4, ListStyle as b5, Indentation as b6, SmartBlockDataType as b7, ColumnSize as b8, SingleEntityOpsRequestedFields as b9, type Stop as bA, type Border as bB, type Colors as bC, type Background 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 Animation as bN, type EntranceAnimation as bO, type EntranceEffect as bP, type LoopAnimation as bQ, type LoopEffect as bR, type PointerEffect as bS, type CodeBlockData as bT, type TextStyle as bU, type DividerData as bV, type DividerDataStyles as bW, type FileData as bX, type FileSource as bY, type FileSourceDataOneOf as bZ, type PDFSettings as b_, SortOrder as ba, RequestedFields as bb, SortType as bc, SortDirection as bd, MissingValues as be, ScalarType as bf, NestedAggregationType as bg, Interval as bh, AggregationType as bi, Mode as bj, Position as bk, MoveItemInCategoryRequestPosition as bl, WebhookIdentityType as bm, type BreadcrumbsInfo as bn, type Breadcrumb as bo, type ParentCategory as bp, type SeoSchema as bq, type Keyword as br, type Tag as bs, type Settings as bt, type RichContent as bu, type Node as bv, type NodeDataOneOf as bw, type NodeStyle as bx, type ButtonData as by, type Gradient as bz, type CreateCategoryValidationErrors as c, type Dimensions as c$, type Media as c0, type Image as c1, type Video as c2, type Item as c3, type ItemDataOneOf as c4, type GalleryOptions as c5, type GalleryOptionsLayout as c6, type ItemStyle as c7, type Thumbnails as c8, type GIFData as c9, type Design as cA, type TextData as cB, type Decoration as cC, type DecorationDataOneOf as cD, type AnchorData as cE, type ColorData as cF, type LinkData as cG, type MentionData as cH, type FontSizeData as cI, type SpoilerData as cJ, type FontFamilyData as cK, type SketchData as cL, type AppEmbedData as cM, type AppEmbedDataAppDataOneOf as cN, type BookingData as cO, type EventData as cP, type ButtonStyles as cQ, type ImageStyles as cR, type RibbonStyles as cS, type CardStyles as cT, type PricingData as cU, type VideoData as cV, type PlaybackOptions as cW, type EmbedData as cX, type Oembed as cY, type CollapsibleListData as cZ, type TableData as c_, type GIF as ca, type HeadingData as cb, type HTMLData as cc, type HTMLDataDataOneOf as cd, type ImageData as ce, type StylesBorder as cf, type ImageDataStyles as cg, type ImageDataCrop as ch, type LinkPreviewData as ci, type LinkPreviewDataStyles as cj, type MapData as ck, type MapSettings as cl, type ParagraphData as cm, type PollData as cn, type Permissions as co, type Option as cp, type PollSettings as cq, type PollLayout as cr, type OptionLayout as cs, type BackgroundGradient as ct, type PollDesignBackground as cu, type PollDesignBackgroundBackgroundOneOf as cv, type PollDesign as cw, type OptionDesign as cx, type Poll as cy, type PollDataLayout as cz, type GetCategoryBySlugOptions as d, type Cursors as d$, type TableCellData as d0, type CellStyle as d1, type BorderColors as d2, type BorderWidths as d3, type ListValue as d4, type AudioData as d5, type OrderedListData as d6, type BulletedListData as d7, type BlockquoteData as d8, type CaptionData as d9, type File as dA, type CustomTag as dB, type Pages as dC, type URIs as dD, type CategoryMoved as dE, type ItemAddedToCategory as dF, type ItemsAddedToCategory as dG, type ItemRemovedFromCategory as dH, type ItemsRemovedFromCategory as dI, type ItemsArrangedInCategory as dJ, type CreateCategoryRequest as dK, type CreateCategoryResponse as dL, type DuplicateHandleErrorData as dM, type GetCategoryRequest as dN, type GetCategoryResponse as dO, type GetCategoryBySlugRequest as dP, type UpdateCategoryRequest as dQ, type UpdateCategoryResponse as dR, type DeleteCategoryRequest as dS, type DeleteCategoryResponse as dT, type QueryCategoriesRequest as dU, type CursorQuery as dV, type CursorQueryPagingMethodOneOf as dW, type Sorting as dX, type CursorPaging as dY, type QueryCategoriesResponse as dZ, type CursorPagingMetadata as d_, type LayoutData as da, type LayoutDataBackground as db, type LayoutDataBackgroundImage as dc, type Banner as dd, type Backdrop as de, type LayoutCellData as df, type ShapeData as dg, type ShapeDataStyles as dh, type CardData as di, type CardDataBackground as dj, type BackgroundImage as dk, type TocData as dl, type SmartBlockData as dm, type SmartBlockCellData as dn, type CheckboxListData as dp, type ListItemNodeData as dq, type Metadata as dr, type DocumentStyle as ds, type TextNodeStyle as dt, type ExtendedFields as du, type InvalidateCache as dv, type InvalidateCacheGetByOneOf as dw, type App as dx, type Page as dy, type URI as dz, type GetCategoryBySlugResponse as e, type ListItemsInCategoryRequestPagingMethodOneOf as e$, type ListCompactCategoriesByIdsRequest as e0, type ListCompactCategoriesByIdsResponse as e1, type CompactCategory as e2, type SearchCategoriesRequest as e3, type CursorSearch as e4, type CursorSearchPagingMethodOneOf as e5, type Aggregation as e6, type AggregationKindOneOf as e7, type RangeBucket as e8, type IncludeMissingValuesOptions as e9, type DateHistogramResults as eA, type NestedResults as eB, type AggregationResults as eC, type AggregationResultsResultOneOf as eD, type DeprecatedSearchCategoriesWithOffsetRequest as eE, type OffsetSearch as eF, type OffsetSearchPagingMethodOneOf as eG, type Paging as eH, type DeprecatedSearchCategoriesWithOffsetResponse as eI, type PagingMetadata as eJ, type CountCategoriesRequest as eK, type MoveCategoryRequest as eL, type BulkUpdateCategoriesRequest as eM, type BulkCategoriesResult as eN, type ItemMetadata as eO, type ApplicationError as eP, type BulkActionMetadata as eQ, type UpdateCategoryVisibilityRequest as eR, type BulkShowCategoriesRequest as eS, type BulkAddItemsToCategoryRequest as eT, type BulkItemsToCategoryResult as eU, type ItemReferenceMetadata as eV, type BulkAddItemToCategoriesRequest as eW, type BulkItemToCategoriesResult as eX, type BulkRemoveItemsFromCategoryRequest as eY, type BulkRemoveItemFromCategoriesRequest as eZ, type ListItemsInCategoryRequest as e_, type ValueAggregation as ea, type ValueAggregationOptionsOneOf as eb, type RangeAggregation as ec, type ScalarAggregation as ed, type DateHistogramAggregation as ee, type NestedAggregationItem as ef, type NestedAggregationItemKindOneOf as eg, type NestedAggregation as eh, type SearchDetails as ei, type AggregationData as ej, type ValueAggregationResult as ek, type RangeAggregationResult as el, type NestedAggregationResults as em, type NestedAggregationResultsResultOneOf as en, type ValueResults as eo, type RangeResults as ep, type AggregationResultsScalarResult as eq, type NestedValueAggregationResult as er, type ValueResult as es, type RangeResult as et, type ScalarResult as eu, type NestedResultValue as ev, type NestedResultValueResultOneOf as ew, type Results as ex, type DateHistogramResult as ey, type GroupByValueResults as ez, type UpdateCategoryOptions as f, type GIFTypeWithLiterals as f$, type PagingMetadataV2 as f0, type ListCategoriesForItemRequest as f1, type ListCategoriesForItemsRequest as f2, type MapItemToCategories as f3, type ListTreesRequest as f4, type MoveItemInCategoryRequest as f5, type MoveItemInCategoryResponse as f6, type SetArrangedItemsRequest as f7, type GetArrangedItemsRequest as f8, type BulkSetItemCategoriesRequest as f9, type CategoriesQueryResult as fA, type CategoryQuerySpec as fB, type CategorySearchSpec as fC, type ListItemsInCategoryOptionsPagingMethodOneOf as fD, type BulkSetItemCategoriesOptions as fE, utils as fF, type NodeTypeWithLiterals as fG, type BackgroundTypeWithLiterals as fH, type GradientTypeWithLiterals as fI, type WidthTypeWithLiterals as fJ, type PluginContainerDataAlignmentWithLiterals as fK, type ButtonDataTypeWithLiterals as fL, type TargetWithLiterals as fM, type TypeWithLiterals as fN, type EntranceEffectTypeWithLiterals as fO, type LoopEffectTypeWithLiterals as fP, type PointerEffectTypeWithLiterals as fQ, type TextAlignmentWithLiterals as fR, type LineCapWithLiterals as fS, type LineStyleWithLiterals as fT, type WidthWithLiterals as fU, type DividerDataAlignmentWithLiterals as fV, type ViewModeWithLiterals as fW, type LayoutTypeWithLiterals as fX, type OrientationWithLiterals as fY, type CropWithLiterals as fZ, type ThumbnailsAlignmentWithLiterals as f_, type BulkSetItemCategoriesResponse as fa, type GetCategoriesTreeRequest as fb, type GetCategoriesTreeResponse as fc, type CategoryTreeNode as fd, type DomainEvent as fe, type DomainEventBodyOneOf as ff, type EntityCreatedEvent as fg, type RestoreInfo as fh, type EntityUpdatedEvent as fi, type EntityDeletedEvent as fj, type ActionEvent as fk, type Empty as fl, type BulkCreateCategoriesForMigrationRequest as fm, type BulkCreateCategoriesForMigrationResponse as fn, type BulkAddItemsToCategoryForMigrationRequest as fo, type BulkAddItemsToCategoryForMigrationResponse as fp, type SetArrangedItemsForMigrationRequest as fq, type SetArrangedItemsForMigrationResponse as fr, type CatalogRollbackRequested as fs, type MessageEnvelope as ft, type IdentificationData as fu, type IdentificationDataIdOneOf as fv, type AccountInfo as fw, type BaseEventMetadata as fx, type EventMetadata as fy, type AccountInfoMetadata as fz, type UpdateCategoryApplicationErrors as g, createCategory as g$, type SourceWithLiterals as g0, type StylesPositionWithLiterals as g1, type MapTypeWithLiterals as g2, type ViewRoleWithLiterals as g3, type VoteRoleWithLiterals as g4, type PollLayoutTypeWithLiterals as g5, type PollLayoutDirectionWithLiterals as g6, type PollDesignBackgroundTypeWithLiterals as g7, type DecorationTypeWithLiterals as g8, type FontTypeWithLiterals as g9, type IndentationWithLiterals as gA, type SmartBlockDataTypeWithLiterals as gB, type ColumnSizeWithLiterals as gC, type SingleEntityOpsRequestedFieldsWithLiterals as gD, type SortOrderWithLiterals as gE, type RequestedFieldsWithLiterals as gF, type SortTypeWithLiterals as gG, type SortDirectionWithLiterals as gH, type MissingValuesWithLiterals as gI, type ScalarTypeWithLiterals as gJ, type NestedAggregationTypeWithLiterals as gK, type IntervalWithLiterals as gL, type AggregationTypeWithLiterals as gM, type ModeWithLiterals as gN, type PositionWithLiterals as gO, type MoveItemInCategoryRequestPositionWithLiterals as gP, type WebhookIdentityTypeWithLiterals as gQ, type BulkSetItemCategoriesApplicationErrors as gR, type CommonQueryWithEntityContext as gS, type CommonSearchWithEntityContext as gT, onCategoryMoved as gU, onCategoryCreated as gV, onCategoryDeleted as gW, onCategoryItemAddedToCategory as gX, onCategoryItemRemovedFromCategory as gY, onCategoryItemsArrangedInCategory as gZ, onCategoryUpdated as g_, type VariantWithLiterals as ga, type ImageStylesPositionWithLiterals as gb, type AspectRatioWithLiterals as gc, type ResizingWithLiterals as gd, type PlacementWithLiterals as ge, type CardStylesTypeWithLiterals as gf, type AlignmentWithLiterals as gg, type LayoutWithLiterals as gh, type AppTypeWithLiterals as gi, type InitialExpandedItemsWithLiterals as gj, type DirectionWithLiterals as gk, type VerticalAlignmentWithLiterals as gl, type NullValueWithLiterals as gm, type ImageScalingScalingWithLiterals as gn, type ImagePositionWithLiterals as go, type LayoutDataBackgroundTypeWithLiterals as gp, type OriginWithLiterals as gq, type BannerPositionWithLiterals as gr, type BackdropTypeWithLiterals as gs, type VerticalAlignmentAlignmentWithLiterals as gt, type ResponsivenessBehaviourWithLiterals as gu, type DesignTargetWithLiterals as gv, type ScalingWithLiterals as gw, type ImagePositionPositionWithLiterals as gx, type CardDataBackgroundTypeWithLiterals as gy, type ListStyleWithLiterals as gz, type UpdateCategoryValidationErrors as h, getCategory as h0, getCategoryBySlug as h1, updateCategory as h2, deleteCategory as h3, queryCategories as h4, countCategories as h5, moveCategory as h6, bulkUpdateCategories as h7, updateCategoryVisibility as h8, bulkShowCategories as h9, bulkAddItemsToCategory as ha, bulkAddItemToCategories as hb, bulkRemoveItemsFromCategory as hc, bulkRemoveItemFromCategories as hd, listItemsInCategory as he, listCategoriesForItem as hf, listCategoriesForItems as hg, listTrees as hh, setArrangedItems as hi, getArrangedItems as hj, type CategorySearch as i, type SearchCategoriesResponse as j, type CountCategoriesOptions as k, type CountCategoriesResponse as l, type MoveCategoryResponse as m, type MoveCategoryApplicationErrors as n, type MaskedCategory as o, type BulkUpdateCategoriesResponse as p, type BulkUpdateCategoriesApplicationErrors as q, type BulkUpdateCategoriesValidationErrors as r, type UpdateCategoryVisibilityOptions as s, type UpdateCategoryVisibilityResponse as t, type UpdateCategoryVisibilityApplicationErrors as u, type BulkShowCategoriesOptions as v, type BulkShowCategoriesResponse as w, type BulkAddItemsToCategoryOptions as x, type BulkAddItemsToCategoryResponse as y, type BulkAddItemsToCategoryApplicationErrors as z };
|
package/build/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { C as Category, a as CreateCategoryOptions, b as CreateCategoryApplicationErrors, c as CreateCategoryValidationErrors, T as TreeReference, G as GetCategoryOptions, d as GetCategoryBySlugOptions, e as GetCategoryBySlugResponse, U as UpdateCategory, f as UpdateCategoryOptions, g as UpdateCategoryApplicationErrors, h as UpdateCategoryValidationErrors, D as DeleteCategoryApplicationErrors, i as CategorySearch, S as SearchCategoriesOptions, j as SearchCategoriesResponse, k as CountCategoriesOptions, l as CountCategoriesResponse, M as MoveCategoryOptions, m as MoveCategoryResponse, n as MoveCategoryApplicationErrors, o as MaskedCategory, B as BulkUpdateCategoriesOptions, p as BulkUpdateCategoriesResponse, q as BulkUpdateCategoriesApplicationErrors, r as BulkUpdateCategoriesValidationErrors, s as UpdateCategoryVisibilityOptions, t as UpdateCategoryVisibilityResponse, u as UpdateCategoryVisibilityApplicationErrors, v as BulkShowCategoriesOptions, w as BulkShowCategoriesResponse, I as ItemReference, x as BulkAddItemsToCategoryOptions, y as BulkAddItemsToCategoryResponse, z as BulkAddItemsToCategoryApplicationErrors, A as BulkAddItemToCategoriesOptions, E as BulkAddItemToCategoriesResponse, F as BulkAddItemToCategoriesApplicationErrors, H as BulkRemoveItemsFromCategoryOptions, J as BulkRemoveItemsFromCategoryResponse, K as BulkRemoveItemsFromCategoryApplicationErrors, L as BulkRemoveItemFromCategoriesOptions, N as BulkRemoveItemFromCategoriesResponse, O as BulkRemoveItemFromCategoriesApplicationErrors, P as ListItemsInCategoryOptions, Q as ListItemsInCategoryResponse, R as ListCategoriesForItemOptions, V as ListCategoriesForItemResponse, W as ListCategoriesForItemsOptions, X as ListCategoriesForItemsResponse, Y as ListTreesResponse, Z as SetArrangedItemsOptions, _ as SetArrangedItemsResponse, $ as SetArrangedItemsApplicationErrors, a0 as GetArrangedItemsResponse, a1 as CategoryMovedEnvelope, a2 as CategoryCreatedEnvelope, a3 as CategoryDeletedEnvelope, a4 as CategoryItemAddedToCategoryEnvelope, a5 as CategoryItemRemovedFromCategoryEnvelope, a6 as CategoryItemsArrangedInCategoryEnvelope, a7 as CategoryUpdatedEnvelope, a8 as CategoryQuery, a9 as QueryCategoriesOptions, aa as typedQueryCategories, ab as CategoriesQueryBuilder } from './categories-v1-category-categories.universal-
|
|
3
|
-
export { fu as AccountInfo, fx as AccountInfoMetadata, fi as ActionEvent, e4 as Aggregation, eh as AggregationData, e5 as AggregationKindOneOf, eA as AggregationResults, eB as AggregationResultsResultOneOf, eo as AggregationResultsScalarResult, bh as AggregationType, gJ as AggregationTypeWithLiterals, aN as Alignment, gd as AlignmentWithLiterals, cC as AnchorData, bM as Animation, dv as App, cK as AppEmbedData, cL as AppEmbedDataAppDataOneOf, aP as AppType, gf as AppTypeWithLiterals, eN as ApplicationError, aJ as AspectRatio, g9 as AspectRatioWithLiterals, d3 as AudioData, dc as Backdrop, aZ as BackdropType, gp as BackdropTypeWithLiterals, bC as Background, cr as BackgroundGradient, di as BackgroundImage, ad as BackgroundType, fF as BackgroundTypeWithLiterals, db as Banner, aY as BannerPosition, go as BannerPositionWithLiterals, fv as BaseEventMetadata, d6 as BlockquoteData, cM as BookingData, bA as Border, d0 as BorderColors, d1 as BorderWidths, bn as Breadcrumb, bm as BreadcrumbsInfo, eO as BulkActionMetadata, eU as BulkAddItemToCategoriesRequest, fm as BulkAddItemsToCategoryForMigrationRequest, fn as BulkAddItemsToCategoryForMigrationResponse, eR as BulkAddItemsToCategoryRequest, eL as BulkCategoriesResult, fk as BulkCreateCategoriesForMigrationRequest, fl as BulkCreateCategoriesForMigrationResponse, eV as BulkItemToCategoriesResult, eS as BulkItemsToCategoryResult, eX as BulkRemoveItemFromCategoriesRequest, eW as BulkRemoveItemsFromCategoryRequest, gO as BulkSetItemCategoriesApplicationErrors, fC as BulkSetItemCategoriesOptions, f7 as BulkSetItemCategoriesRequest, f8 as BulkSetItemCategoriesResponse, eQ as BulkShowCategoriesRequest, eK as BulkUpdateCategoriesRequest, d5 as BulletedListData, bx as ButtonData, ah as ButtonDataType, fJ as ButtonDataTypeWithLiterals, cO as ButtonStyles, d7 as CaptionData, dg as CardData, dh as CardDataBackground, b3 as CardDataBackgroundType, gv as CardDataBackgroundTypeWithLiterals, cR as CardStyles, aM as CardStylesType, gc as CardStylesTypeWithLiterals, fq as CatalogRollbackRequested, fy as CategoriesQueryResult, dC as CategoryMoved, fz as CategoryQuerySpec, fA as CategorySearchSpec, fb as CategoryTreeNode, c$ as CellStyle, dm as CheckboxListData, bR as CodeBlockData, cX as CollapsibleListData, cD as ColorData, bB as Colors, b7 as ColumnSize, gz as ColumnSizeWithLiterals, gP as CommonQueryWithEntityContext, gQ as CommonSearchWithEntityContext, e0 as CompactCategory, eI as CountCategoriesRequest, dI as CreateCategoryRequest, dJ as CreateCategoryResponse, au as Crop, fW as CropWithLiterals, dW as CursorPaging, dY as CursorPagingMetadata, dT as CursorQuery, dU as CursorQueryPagingMethodOneOf, e2 as CursorSearch, e3 as CursorSearchPagingMethodOneOf, dZ as Cursors, dz as CustomTag, ec as DateHistogramAggregation, ew as DateHistogramResult, ey as DateHistogramResults, cA as Decoration, cB as DecorationDataOneOf, aF as DecorationType, g5 as DecorationTypeWithLiterals, dQ as DeleteCategoryRequest, dR as DeleteCategoryResponse, eC as DeprecatedSearchCategoriesWithOffsetRequest, eG as DeprecatedSearchCategoriesWithOffsetResponse, cy as Design, b0 as DesignTarget, gs as DesignTargetWithLiterals, cZ as Dimensions, aR as Direction, gh as DirectionWithLiterals, bT as DividerData, aq as DividerDataAlignment, fS as DividerDataAlignmentWithLiterals, bU as DividerDataStyles, dq as DocumentStyle, fc as DomainEvent, fd as DomainEventBodyOneOf, dK as DuplicateHandleErrorData, cV as EmbedData, fj as Empty, fe as EntityCreatedEvent, fh as EntityDeletedEvent, fg as EntityUpdatedEvent, bN as EntranceAnimation, bO as EntranceEffect, ak as EntranceEffectType, fM as EntranceEffectTypeWithLiterals, cN as EventData, fw as EventMetadata, ds as ExtendedFields, dy as File, bV as FileData, bW as FileSource, bX as FileSourceDataOneOf, cI as FontFamilyData, cG as FontSizeData, aG as FontType, g6 as FontTypeWithLiterals, c8 as GIF, c7 as GIFData, aw as GIFType, fY as GIFTypeWithLiterals, bZ as GalleryData, c3 as GalleryOptions, c4 as GalleryOptionsLayout, f6 as GetArrangedItemsRequest, f9 as GetCategoriesTreeRequest, fa as GetCategoriesTreeResponse, dN as GetCategoryBySlugRequest, dL as GetCategoryRequest, dM as GetCategoryResponse, by as Gradient, ae as GradientType, fG as GradientTypeWithLiterals, ex as GroupByValueResults, ca as HTMLData, cb as HTMLDataDataOneOf, c9 as HeadingData, bH as Height, fs as IdentificationData, ft as IdentificationDataIdOneOf, b$ as Image, cc as ImageData, cf as ImageDataCrop, ce as ImageDataStyles, aV as ImagePosition, b2 as ImagePositionPosition, gu as ImagePositionPositionWithLiterals, gl as ImagePositionWithLiterals, aU as ImageScalingScaling, gk as ImageScalingScalingWithLiterals, cP as ImageStyles, aI as ImageStylesPosition, g8 as ImageStylesPositionWithLiterals, e7 as IncludeMissingValuesOptions, b5 as Indentation, gx as IndentationWithLiterals, aQ as InitialExpandedItems, gg as InitialExpandedItemsWithLiterals, bg as Interval, gI as IntervalWithLiterals, dt as InvalidateCache, du as InvalidateCacheGetByOneOf, c1 as Item, dD as ItemAddedToCategory, c2 as ItemDataOneOf, eM as ItemMetadata, eT as ItemReferenceMetadata, dF as ItemRemovedFromCategory, c5 as ItemStyle, dE as ItemsAddedToCategory, dH as ItemsArrangedInCategory, dG as ItemsRemovedFromCategory, bq as Keyword, aO as Layout, dd as LayoutCellData, d8 as LayoutData, d9 as LayoutDataBackground, da as LayoutDataBackgroundImage, aW as LayoutDataBackgroundType, gm as LayoutDataBackgroundTypeWithLiterals, as as LayoutType, fU as LayoutTypeWithLiterals, ge as LayoutWithLiterals, an as LineCap, fP as LineCapWithLiterals, ao as LineStyle, fQ as LineStyleWithLiterals, bJ as Link, cE as LinkData, bK as LinkDataOneOf, cg as LinkPreviewData, ch as LinkPreviewDataStyles, e$ as ListCategoriesForItemRequest, f0 as ListCategoriesForItemsRequest, d_ as ListCompactCategoriesByIdsRequest, d$ as ListCompactCategoriesByIdsResponse, dn as ListItemNodeData, fB as ListItemsInCategoryOptionsPagingMethodOneOf, eY as ListItemsInCategoryRequest, eZ as ListItemsInCategoryRequestPagingMethodOneOf, b4 as ListStyle, gw as ListStyleWithLiterals, f2 as ListTreesRequest, d2 as ListValue, bP as LoopAnimation, bQ as LoopEffect, al as LoopEffectType, fN as LoopEffectTypeWithLiterals, ci as MapData, f1 as MapItemToCategories, cj as MapSettings, az as MapType, f$ as MapTypeWithLiterals, b_ as Media, cF as MentionData, fr as MessageEnvelope, dp as Metadata, bd as MissingValues, gF as MissingValuesWithLiterals, bi as Mode, gK as ModeWithLiterals, eJ as MoveCategoryRequest, f3 as MoveItemInCategoryRequest, bk as MoveItemInCategoryRequestPosition, gM as MoveItemInCategoryRequestPositionWithLiterals, f4 as MoveItemInCategoryResponse, ef as NestedAggregation, ed as NestedAggregationItem, ee as NestedAggregationItemKindOneOf, ek as NestedAggregationResults, el as NestedAggregationResultsResultOneOf, bf as NestedAggregationType, gH as NestedAggregationTypeWithLiterals, et as NestedResultValue, eu as NestedResultValueResultOneOf, ez as NestedResults, ep as NestedValueAggregationResult, bu as Node, bv as NodeDataOneOf, bw as NodeStyle, ac as NodeType, fE as NodeTypeWithLiterals, aT as NullValue, gj as NullValueWithLiterals, cW as Oembed, eD as OffsetSearch, eE as OffsetSearchPagingMethodOneOf, cn as Option, cv as OptionDesign, cq as OptionLayout, d4 as OrderedListData, at as Orientation, fV as OrientationWithLiterals, aX as Origin, gn as OriginWithLiterals, bY as PDFSettings, dw as Page, dA as Pages, eF as Paging, eH as PagingMetadata, e_ as PagingMetadataV2, ck as ParagraphData, bo as ParentCategory, cm as Permissions, aL as Placement, gb as PlacementWithLiterals, cU as PlaybackOptions, bD as PluginContainerData, ag as PluginContainerDataAlignment, fI as PluginContainerDataAlignmentWithLiterals, bE as PluginContainerDataWidth, bF as PluginContainerDataWidthDataOneOf, cw as Poll, cl as PollData, cx as PollDataLayout, cu as PollDesign, cs as PollDesignBackground, ct as PollDesignBackgroundBackgroundOneOf, aE as PollDesignBackgroundType, g4 as PollDesignBackgroundTypeWithLiterals, cp as PollLayout, aD as PollLayoutDirection, g3 as PollLayoutDirectionWithLiterals, aC as PollLayoutType, g2 as PollLayoutTypeWithLiterals, co as PollSettings, bj as Position, gL as PositionWithLiterals, cS as PricingData, dS as QueryCategoriesRequest, dX as QueryCategoriesResponse, ea as RangeAggregation, ej as RangeAggregationResult, e6 as RangeBucket, er as RangeResult, en as RangeResults, bL as Rel, ba as RequestedFields, gC as RequestedFieldsWithLiterals, aK as Resizing, ga as ResizingWithLiterals, a$ as ResponsivenessBehaviour, gr as ResponsivenessBehaviourWithLiterals, ff as RestoreInfo, ev as Results, cQ as RibbonStyles, bt as RichContent, eb as ScalarAggregation, es as ScalarResult, be as ScalarType, gG as ScalarTypeWithLiterals, b1 as Scaling, gt as ScalingWithLiterals, e1 as SearchCategoriesRequest, eg as SearchDetails, bp as SeoSchema, fo as SetArrangedItemsForMigrationRequest, fp as SetArrangedItemsForMigrationResponse, f5 as SetArrangedItemsRequest, bs as Settings, de as ShapeData, df as ShapeDataStyles, b8 as SingleEntityOpsRequestedFields, gA as SingleEntityOpsRequestedFieldsWithLiterals, cJ as SketchData, dl as SmartBlockCellData, dk as SmartBlockData, b6 as SmartBlockDataType, gy as SmartBlockDataTypeWithLiterals, bc as SortDirection, gE as SortDirectionWithLiterals, b9 as SortOrder, gB as SortOrderWithLiterals, bb as SortType, gD as SortTypeWithLiterals, dV as Sorting, ax as Source, fZ as SourceWithLiterals, bG as Spoiler, cH as SpoilerData, bz as Stop, bI as Styles, cd as StylesBorder, ay as StylesPosition, f_ as StylesPositionWithLiterals, c_ as TableCellData, cY as TableData, br as Tag, ai as Target, fK as TargetWithLiterals, am as TextAlignment, fO as TextAlignmentWithLiterals, cz as TextData, dr as TextNodeStyle, bS as TextStyle, c6 as Thumbnails, av as ThumbnailsAlignment, fX as ThumbnailsAlignmentWithLiterals, dj as TocData, aj as Type, fL as TypeWithLiterals, dx as URI, dB as URIs, dO as UpdateCategoryRequest, dP as UpdateCategoryResponse, eP as UpdateCategoryVisibilityRequest, e8 as ValueAggregation, e9 as ValueAggregationOptionsOneOf, ei as ValueAggregationResult, eq as ValueResult, em as ValueResults, aH as Variant, g7 as VariantWithLiterals, aS as VerticalAlignment, a_ as VerticalAlignmentAlignment, gq as VerticalAlignmentAlignmentWithLiterals, gi as VerticalAlignmentWithLiterals, c0 as Video, cT as VideoData, ar as ViewMode, fT as ViewModeWithLiterals, aA as ViewRole, g0 as ViewRoleWithLiterals, aB as VoteRole, g1 as VoteRoleWithLiterals, bl as WebhookIdentityType, gN as WebhookIdentityTypeWithLiterals, ap as Width, af as WidthType, fH as WidthTypeWithLiterals, fR as WidthWithLiterals, fD as utils } from './categories-v1-category-categories.universal-Cy-lRfCS.js';
|
|
2
|
+
import { C as Category, a as CreateCategoryOptions, b as CreateCategoryApplicationErrors, c as CreateCategoryValidationErrors, T as TreeReference, G as GetCategoryOptions, d as GetCategoryBySlugOptions, e as GetCategoryBySlugResponse, U as UpdateCategory, f as UpdateCategoryOptions, g as UpdateCategoryApplicationErrors, h as UpdateCategoryValidationErrors, D as DeleteCategoryApplicationErrors, i as CategorySearch, S as SearchCategoriesOptions, j as SearchCategoriesResponse, k as CountCategoriesOptions, l as CountCategoriesResponse, M as MoveCategoryOptions, m as MoveCategoryResponse, n as MoveCategoryApplicationErrors, o as MaskedCategory, B as BulkUpdateCategoriesOptions, p as BulkUpdateCategoriesResponse, q as BulkUpdateCategoriesApplicationErrors, r as BulkUpdateCategoriesValidationErrors, s as UpdateCategoryVisibilityOptions, t as UpdateCategoryVisibilityResponse, u as UpdateCategoryVisibilityApplicationErrors, v as BulkShowCategoriesOptions, w as BulkShowCategoriesResponse, I as ItemReference, x as BulkAddItemsToCategoryOptions, y as BulkAddItemsToCategoryResponse, z as BulkAddItemsToCategoryApplicationErrors, A as BulkAddItemToCategoriesOptions, E as BulkAddItemToCategoriesResponse, F as BulkAddItemToCategoriesApplicationErrors, H as BulkRemoveItemsFromCategoryOptions, J as BulkRemoveItemsFromCategoryResponse, K as BulkRemoveItemsFromCategoryApplicationErrors, L as BulkRemoveItemFromCategoriesOptions, N as BulkRemoveItemFromCategoriesResponse, O as BulkRemoveItemFromCategoriesApplicationErrors, P as ListItemsInCategoryOptions, Q as ListItemsInCategoryResponse, R as ListCategoriesForItemOptions, V as ListCategoriesForItemResponse, W as ListCategoriesForItemsOptions, X as ListCategoriesForItemsResponse, Y as ListTreesResponse, Z as SetArrangedItemsOptions, _ as SetArrangedItemsResponse, $ as SetArrangedItemsApplicationErrors, a0 as GetArrangedItemsResponse, a1 as CategoryMovedEnvelope, a2 as CategoryCreatedEnvelope, a3 as CategoryDeletedEnvelope, a4 as CategoryItemAddedToCategoryEnvelope, a5 as CategoryItemRemovedFromCategoryEnvelope, a6 as CategoryItemsArrangedInCategoryEnvelope, a7 as CategoryUpdatedEnvelope, a8 as CategoryQuery, a9 as QueryCategoriesOptions, aa as typedQueryCategories, ab as CategoriesQueryBuilder } from './categories-v1-category-categories.universal-DhqN8JS_.js';
|
|
3
|
+
export { fw as AccountInfo, fz as AccountInfoMetadata, fk as ActionEvent, e6 as Aggregation, ej as AggregationData, e7 as AggregationKindOneOf, eC as AggregationResults, eD as AggregationResultsResultOneOf, eq as AggregationResultsScalarResult, bi as AggregationType, gM as AggregationTypeWithLiterals, aO as Alignment, gg as AlignmentWithLiterals, cE as AnchorData, bN as Animation, dx as App, cM as AppEmbedData, cN as AppEmbedDataAppDataOneOf, aQ as AppType, gi as AppTypeWithLiterals, eP as ApplicationError, aK as AspectRatio, gc as AspectRatioWithLiterals, d5 as AudioData, de as Backdrop, a_ as BackdropType, gs as BackdropTypeWithLiterals, bD as Background, ct as BackgroundGradient, dk as BackgroundImage, ad as BackgroundType, fH as BackgroundTypeWithLiterals, dd as Banner, aZ as BannerPosition, gr as BannerPositionWithLiterals, fx as BaseEventMetadata, d8 as BlockquoteData, cO as BookingData, bB as Border, d2 as BorderColors, d3 as BorderWidths, bo as Breadcrumb, bn as BreadcrumbsInfo, eQ as BulkActionMetadata, eW as BulkAddItemToCategoriesRequest, fo as BulkAddItemsToCategoryForMigrationRequest, fp as BulkAddItemsToCategoryForMigrationResponse, eT as BulkAddItemsToCategoryRequest, eN as BulkCategoriesResult, fm as BulkCreateCategoriesForMigrationRequest, fn as BulkCreateCategoriesForMigrationResponse, eX as BulkItemToCategoriesResult, eU as BulkItemsToCategoryResult, eZ as BulkRemoveItemFromCategoriesRequest, eY as BulkRemoveItemsFromCategoryRequest, gR as BulkSetItemCategoriesApplicationErrors, fE as BulkSetItemCategoriesOptions, f9 as BulkSetItemCategoriesRequest, fa as BulkSetItemCategoriesResponse, eS as BulkShowCategoriesRequest, eM as BulkUpdateCategoriesRequest, d7 as BulletedListData, by as ButtonData, ah as ButtonDataType, fL as ButtonDataTypeWithLiterals, cQ as ButtonStyles, d9 as CaptionData, di as CardData, dj as CardDataBackground, b4 as CardDataBackgroundType, gy as CardDataBackgroundTypeWithLiterals, cT as CardStyles, aN as CardStylesType, gf as CardStylesTypeWithLiterals, fs as CatalogRollbackRequested, fA as CategoriesQueryResult, dE as CategoryMoved, fB as CategoryQuerySpec, fC as CategorySearchSpec, fd as CategoryTreeNode, d1 as CellStyle, dp as CheckboxListData, bT as CodeBlockData, cZ as CollapsibleListData, cF as ColorData, bC as Colors, b8 as ColumnSize, gC as ColumnSizeWithLiterals, gS as CommonQueryWithEntityContext, gT as CommonSearchWithEntityContext, e2 as CompactCategory, eK as CountCategoriesRequest, dK as CreateCategoryRequest, dL as CreateCategoryResponse, av as Crop, fZ as CropWithLiterals, dY as CursorPaging, d_ as CursorPagingMetadata, dV as CursorQuery, dW as CursorQueryPagingMethodOneOf, e4 as CursorSearch, e5 as CursorSearchPagingMethodOneOf, d$ as Cursors, dB as CustomTag, ee as DateHistogramAggregation, ey as DateHistogramResult, eA as DateHistogramResults, cC as Decoration, cD as DecorationDataOneOf, aG as DecorationType, g8 as DecorationTypeWithLiterals, dS as DeleteCategoryRequest, dT as DeleteCategoryResponse, eE as DeprecatedSearchCategoriesWithOffsetRequest, eI as DeprecatedSearchCategoriesWithOffsetResponse, cA as Design, b1 as DesignTarget, gv as DesignTargetWithLiterals, c$ as Dimensions, aS as Direction, gk as DirectionWithLiterals, bV as DividerData, ar as DividerDataAlignment, fV as DividerDataAlignmentWithLiterals, bW as DividerDataStyles, ds as DocumentStyle, fe as DomainEvent, ff as DomainEventBodyOneOf, dM as DuplicateHandleErrorData, cX as EmbedData, fl as Empty, fg as EntityCreatedEvent, fj as EntityDeletedEvent, fi as EntityUpdatedEvent, bO as EntranceAnimation, bP as EntranceEffect, ak as EntranceEffectType, fO as EntranceEffectTypeWithLiterals, cP as EventData, fy as EventMetadata, du as ExtendedFields, dA as File, bX as FileData, bY as FileSource, bZ as FileSourceDataOneOf, cK as FontFamilyData, cI as FontSizeData, aH as FontType, g9 as FontTypeWithLiterals, ca as GIF, c9 as GIFData, ax as GIFType, f$ as GIFTypeWithLiterals, b$ as GalleryData, c5 as GalleryOptions, c6 as GalleryOptionsLayout, f8 as GetArrangedItemsRequest, fb as GetCategoriesTreeRequest, fc as GetCategoriesTreeResponse, dP as GetCategoryBySlugRequest, dN as GetCategoryRequest, dO as GetCategoryResponse, bz as Gradient, ae as GradientType, fI as GradientTypeWithLiterals, ez as GroupByValueResults, cc as HTMLData, cd as HTMLDataDataOneOf, cb as HeadingData, bI as Height, fu as IdentificationData, fv as IdentificationDataIdOneOf, c1 as Image, ce as ImageData, ch as ImageDataCrop, cg as ImageDataStyles, aW as ImagePosition, b3 as ImagePositionPosition, gx as ImagePositionPositionWithLiterals, go as ImagePositionWithLiterals, aV as ImageScalingScaling, gn as ImageScalingScalingWithLiterals, cR as ImageStyles, aJ as ImageStylesPosition, gb as ImageStylesPositionWithLiterals, e9 as IncludeMissingValuesOptions, b6 as Indentation, gA as IndentationWithLiterals, aR as InitialExpandedItems, gj as InitialExpandedItemsWithLiterals, bh as Interval, gL as IntervalWithLiterals, dv as InvalidateCache, dw as InvalidateCacheGetByOneOf, c3 as Item, dF as ItemAddedToCategory, c4 as ItemDataOneOf, eO as ItemMetadata, eV as ItemReferenceMetadata, dH as ItemRemovedFromCategory, c7 as ItemStyle, dG as ItemsAddedToCategory, dJ as ItemsArrangedInCategory, dI as ItemsRemovedFromCategory, br as Keyword, aP as Layout, df as LayoutCellData, da as LayoutData, db as LayoutDataBackground, dc as LayoutDataBackgroundImage, aX as LayoutDataBackgroundType, gp as LayoutDataBackgroundTypeWithLiterals, at as LayoutType, fX as LayoutTypeWithLiterals, gh as LayoutWithLiterals, ao as LineCap, fS as LineCapWithLiterals, ap as LineStyle, fT as LineStyleWithLiterals, bK as Link, cG as LinkData, bL as LinkDataOneOf, ci as LinkPreviewData, cj as LinkPreviewDataStyles, f1 as ListCategoriesForItemRequest, f2 as ListCategoriesForItemsRequest, e0 as ListCompactCategoriesByIdsRequest, e1 as ListCompactCategoriesByIdsResponse, dq as ListItemNodeData, fD as ListItemsInCategoryOptionsPagingMethodOneOf, e_ as ListItemsInCategoryRequest, e$ as ListItemsInCategoryRequestPagingMethodOneOf, b5 as ListStyle, gz as ListStyleWithLiterals, f4 as ListTreesRequest, d4 as ListValue, bQ as LoopAnimation, bR as LoopEffect, al as LoopEffectType, fP as LoopEffectTypeWithLiterals, ck as MapData, f3 as MapItemToCategories, cl as MapSettings, aA as MapType, g2 as MapTypeWithLiterals, c0 as Media, cH as MentionData, ft as MessageEnvelope, dr as Metadata, be as MissingValues, gI as MissingValuesWithLiterals, bj as Mode, gN as ModeWithLiterals, eL as MoveCategoryRequest, f5 as MoveItemInCategoryRequest, bl as MoveItemInCategoryRequestPosition, gP as MoveItemInCategoryRequestPositionWithLiterals, f6 as MoveItemInCategoryResponse, eh as NestedAggregation, ef as NestedAggregationItem, eg as NestedAggregationItemKindOneOf, em as NestedAggregationResults, en as NestedAggregationResultsResultOneOf, bg as NestedAggregationType, gK as NestedAggregationTypeWithLiterals, ev as NestedResultValue, ew as NestedResultValueResultOneOf, eB as NestedResults, er as NestedValueAggregationResult, bv as Node, bw as NodeDataOneOf, bx as NodeStyle, ac as NodeType, fG as NodeTypeWithLiterals, aU as NullValue, gm as NullValueWithLiterals, cY as Oembed, eF as OffsetSearch, eG as OffsetSearchPagingMethodOneOf, cp as Option, cx as OptionDesign, cs as OptionLayout, d6 as OrderedListData, au as Orientation, fY as OrientationWithLiterals, aY as Origin, gq as OriginWithLiterals, b_ as PDFSettings, dy as Page, dC as Pages, eH as Paging, eJ as PagingMetadata, f0 as PagingMetadataV2, cm as ParagraphData, bp as ParentCategory, co as Permissions, aM as Placement, ge as PlacementWithLiterals, cW as PlaybackOptions, bE as PluginContainerData, ag as PluginContainerDataAlignment, fK as PluginContainerDataAlignmentWithLiterals, bF as PluginContainerDataWidth, bG as PluginContainerDataWidthDataOneOf, bS as PointerEffect, am as PointerEffectType, fQ as PointerEffectTypeWithLiterals, cy as Poll, cn as PollData, cz as PollDataLayout, cw as PollDesign, cu as PollDesignBackground, cv as PollDesignBackgroundBackgroundOneOf, aF as PollDesignBackgroundType, g7 as PollDesignBackgroundTypeWithLiterals, cr as PollLayout, aE as PollLayoutDirection, g6 as PollLayoutDirectionWithLiterals, aD as PollLayoutType, g5 as PollLayoutTypeWithLiterals, cq as PollSettings, bk as Position, gO as PositionWithLiterals, cU as PricingData, dU as QueryCategoriesRequest, dZ as QueryCategoriesResponse, ec as RangeAggregation, el as RangeAggregationResult, e8 as RangeBucket, et as RangeResult, ep as RangeResults, bM as Rel, bb as RequestedFields, gF as RequestedFieldsWithLiterals, aL as Resizing, gd as ResizingWithLiterals, b0 as ResponsivenessBehaviour, gu as ResponsivenessBehaviourWithLiterals, fh as RestoreInfo, ex as Results, cS as RibbonStyles, bu as RichContent, ed as ScalarAggregation, eu as ScalarResult, bf as ScalarType, gJ as ScalarTypeWithLiterals, b2 as Scaling, gw as ScalingWithLiterals, e3 as SearchCategoriesRequest, ei as SearchDetails, bq as SeoSchema, fq as SetArrangedItemsForMigrationRequest, fr as SetArrangedItemsForMigrationResponse, f7 as SetArrangedItemsRequest, bt as Settings, dg as ShapeData, dh as ShapeDataStyles, b9 as SingleEntityOpsRequestedFields, gD as SingleEntityOpsRequestedFieldsWithLiterals, cL as SketchData, dn as SmartBlockCellData, dm as SmartBlockData, b7 as SmartBlockDataType, gB as SmartBlockDataTypeWithLiterals, bd as SortDirection, gH as SortDirectionWithLiterals, ba as SortOrder, gE as SortOrderWithLiterals, bc as SortType, gG as SortTypeWithLiterals, dX as Sorting, ay as Source, g0 as SourceWithLiterals, bH as Spoiler, cJ as SpoilerData, bA as Stop, bJ as Styles, cf as StylesBorder, az as StylesPosition, g1 as StylesPositionWithLiterals, d0 as TableCellData, c_ as TableData, bs as Tag, ai as Target, fM as TargetWithLiterals, an as TextAlignment, fR as TextAlignmentWithLiterals, cB as TextData, dt as TextNodeStyle, bU as TextStyle, c8 as Thumbnails, aw as ThumbnailsAlignment, f_ as ThumbnailsAlignmentWithLiterals, dl as TocData, aj as Type, fN as TypeWithLiterals, dz as URI, dD as URIs, dQ as UpdateCategoryRequest, dR as UpdateCategoryResponse, eR as UpdateCategoryVisibilityRequest, ea as ValueAggregation, eb as ValueAggregationOptionsOneOf, ek as ValueAggregationResult, es as ValueResult, eo as ValueResults, aI as Variant, ga as VariantWithLiterals, aT as VerticalAlignment, a$ as VerticalAlignmentAlignment, gt as VerticalAlignmentAlignmentWithLiterals, gl as VerticalAlignmentWithLiterals, c2 as Video, cV as VideoData, as as ViewMode, fW as ViewModeWithLiterals, aB as ViewRole, g3 as ViewRoleWithLiterals, aC as VoteRole, g4 as VoteRoleWithLiterals, bm as WebhookIdentityType, gQ as WebhookIdentityTypeWithLiterals, aq as Width, af as WidthType, fJ as WidthTypeWithLiterals, fU as WidthWithLiterals, fF as utils } from './categories-v1-category-categories.universal-DhqN8JS_.js';
|
|
4
4
|
|
|
5
5
|
declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
|
|
6
6
|
interface CreateCategorySignature {
|
package/build/cjs/index.js
CHANGED
|
@@ -65,6 +65,7 @@ __export(index_exports, {
|
|
|
65
65
|
Origin: () => Origin,
|
|
66
66
|
Placement: () => Placement,
|
|
67
67
|
PluginContainerDataAlignment: () => PluginContainerDataAlignment,
|
|
68
|
+
PointerEffectType: () => PointerEffectType,
|
|
68
69
|
PollDesignBackgroundType: () => PollDesignBackgroundType,
|
|
69
70
|
PollLayoutDirection: () => PollLayoutDirection,
|
|
70
71
|
PollLayoutType: () => PollLayoutType,
|
|
@@ -2880,6 +2881,7 @@ var Target = /* @__PURE__ */ ((Target2) => {
|
|
|
2880
2881
|
})(Target || {});
|
|
2881
2882
|
var Type = /* @__PURE__ */ ((Type2) => {
|
|
2882
2883
|
Type2["VIEW"] = "VIEW";
|
|
2884
|
+
Type2["POINTER"] = "POINTER";
|
|
2883
2885
|
return Type2;
|
|
2884
2886
|
})(Type || {});
|
|
2885
2887
|
var EntranceEffectType = /* @__PURE__ */ ((EntranceEffectType2) => {
|
|
@@ -2919,6 +2921,18 @@ var LoopEffectType = /* @__PURE__ */ ((LoopEffectType2) => {
|
|
|
2919
2921
|
LoopEffectType2["WIGGLE"] = "WIGGLE";
|
|
2920
2922
|
return LoopEffectType2;
|
|
2921
2923
|
})(LoopEffectType || {});
|
|
2924
|
+
var PointerEffectType = /* @__PURE__ */ ((PointerEffectType2) => {
|
|
2925
|
+
PointerEffectType2["AIRY"] = "AIRY";
|
|
2926
|
+
PointerEffectType2["BLOB"] = "BLOB";
|
|
2927
|
+
PointerEffectType2["BLUR"] = "BLUR";
|
|
2928
|
+
PointerEffectType2["SCALE"] = "SCALE";
|
|
2929
|
+
PointerEffectType2["SKEW"] = "SKEW";
|
|
2930
|
+
PointerEffectType2["SWIVEL"] = "SWIVEL";
|
|
2931
|
+
PointerEffectType2["TILT_3D"] = "TILT_3D";
|
|
2932
|
+
PointerEffectType2["TRACK"] = "TRACK";
|
|
2933
|
+
PointerEffectType2["TRACK_3D"] = "TRACK_3D";
|
|
2934
|
+
return PointerEffectType2;
|
|
2935
|
+
})(PointerEffectType || {});
|
|
2922
2936
|
var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
|
|
2923
2937
|
TextAlignment2["AUTO"] = "AUTO";
|
|
2924
2938
|
TextAlignment2["LEFT"] = "LEFT";
|
|
@@ -3298,6 +3312,8 @@ var ScalarType = /* @__PURE__ */ ((ScalarType2) => {
|
|
|
3298
3312
|
ScalarType2["COUNT_DISTINCT"] = "COUNT_DISTINCT";
|
|
3299
3313
|
ScalarType2["MIN"] = "MIN";
|
|
3300
3314
|
ScalarType2["MAX"] = "MAX";
|
|
3315
|
+
ScalarType2["SUM"] = "SUM";
|
|
3316
|
+
ScalarType2["AVG"] = "AVG";
|
|
3301
3317
|
return ScalarType2;
|
|
3302
3318
|
})(ScalarType || {});
|
|
3303
3319
|
var NestedAggregationType = /* @__PURE__ */ ((NestedAggregationType2) => {
|
|
@@ -5276,6 +5292,7 @@ var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(
|
|
|
5276
5292
|
Origin,
|
|
5277
5293
|
Placement,
|
|
5278
5294
|
PluginContainerDataAlignment,
|
|
5295
|
+
PointerEffectType,
|
|
5279
5296
|
PollDesignBackgroundType,
|
|
5280
5297
|
PollLayoutDirection,
|
|
5281
5298
|
PollLayoutType,
|