@wix/auto_sdk_categories_categories 1.0.76 → 1.0.78
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-CIQ0UU81.d.ts → categories-v1-category-categories.universal-DwnNiNlZ.d.ts} +111 -5
- package/build/cjs/index.d.ts +4 -6
- package/build/cjs/index.js +121 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +4 -6
- package/build/cjs/index.typings.js +103 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +111 -5
- package/build/cjs/meta.js +103 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{categories-v1-category-categories.universal-CIQ0UU81.d.mts → categories-v1-category-categories.universal-DwnNiNlZ.d.mts} +111 -5
- package/build/es/index.d.mts +4 -6
- package/build/es/index.mjs +117 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +4 -6
- package/build/es/index.typings.mjs +99 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +111 -5
- package/build/es/meta.mjs +99 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{categories-v1-category-categories.universal-4pOIoFva.d.ts → categories-v1-category-categories.universal-CUf7C286.d.ts} +111 -5
- package/build/internal/cjs/index.d.ts +4 -6
- package/build/internal/cjs/index.js +121 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +4 -6
- package/build/internal/cjs/index.typings.js +103 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +111 -5
- package/build/internal/cjs/meta.js +103 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{categories-v1-category-categories.universal-4pOIoFva.d.mts → categories-v1-category-categories.universal-CUf7C286.d.mts} +111 -5
- package/build/internal/es/index.d.mts +4 -6
- package/build/internal/es/index.mjs +117 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +4 -6
- package/build/internal/es/index.typings.mjs +99 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +111 -5
- package/build/internal/es/meta.mjs +99 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -264,7 +264,9 @@ interface Node extends NodeDataOneOf {
|
|
|
264
264
|
blockquoteData?: BlockquoteData;
|
|
265
265
|
/** Data for a caption node. */
|
|
266
266
|
captionData?: CaptionData;
|
|
267
|
-
/**
|
|
267
|
+
/** Data for a layout node. Reserved for future use. */
|
|
268
|
+
layoutData?: LayoutData;
|
|
269
|
+
/** Data for a cell node. */
|
|
268
270
|
layoutCellData?: LayoutCellData;
|
|
269
271
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
270
272
|
type?: NodeTypeWithLiterals;
|
|
@@ -329,7 +331,9 @@ interface NodeDataOneOf {
|
|
|
329
331
|
blockquoteData?: BlockquoteData;
|
|
330
332
|
/** Data for a caption node. */
|
|
331
333
|
captionData?: CaptionData;
|
|
332
|
-
/**
|
|
334
|
+
/** Data for a layout node. Reserved for future use. */
|
|
335
|
+
layoutData?: LayoutData;
|
|
336
|
+
/** Data for a cell node. */
|
|
333
337
|
layoutCellData?: LayoutCellData;
|
|
334
338
|
}
|
|
335
339
|
declare enum NodeType {
|
|
@@ -1886,6 +1890,108 @@ interface BlockquoteData {
|
|
|
1886
1890
|
interface CaptionData {
|
|
1887
1891
|
textStyle?: TextStyle;
|
|
1888
1892
|
}
|
|
1893
|
+
interface LayoutData {
|
|
1894
|
+
/**
|
|
1895
|
+
* Background color as a hexadecimal value.
|
|
1896
|
+
* @format COLOR_HEX
|
|
1897
|
+
*/
|
|
1898
|
+
backgroundColor?: string | null;
|
|
1899
|
+
/** Background image. */
|
|
1900
|
+
backgroundImage?: BackgroundImage;
|
|
1901
|
+
/**
|
|
1902
|
+
* Border color as a hexadecimal value.
|
|
1903
|
+
* @format COLOR_HEX
|
|
1904
|
+
*/
|
|
1905
|
+
borderColor?: string | null;
|
|
1906
|
+
/** Border width in pixels. */
|
|
1907
|
+
borderWidth?: number | null;
|
|
1908
|
+
/** Border */
|
|
1909
|
+
borderRadius?: number | null;
|
|
1910
|
+
/**
|
|
1911
|
+
* Backdrop color as a hexadecimal value.
|
|
1912
|
+
* @format COLOR_HEX
|
|
1913
|
+
*/
|
|
1914
|
+
backdropColor?: string | null;
|
|
1915
|
+
/** Backdrop image.radius in pixels. */
|
|
1916
|
+
backdropImage?: BackgroundImage;
|
|
1917
|
+
/** Backdrop top padding. */
|
|
1918
|
+
backdropPaddingTop?: number | null;
|
|
1919
|
+
/** Backdrop bottom padding */
|
|
1920
|
+
backdropPaddingBottom?: number | null;
|
|
1921
|
+
/** Horizontal and vertical gap between columns */
|
|
1922
|
+
gap?: number | null;
|
|
1923
|
+
/**
|
|
1924
|
+
* Padding in pixels for cells. Follows CSS order: top, right, bottom, left
|
|
1925
|
+
* @maxSize 4
|
|
1926
|
+
*/
|
|
1927
|
+
cellPadding?: number[];
|
|
1928
|
+
/** Vertical alignment for the cell's items. */
|
|
1929
|
+
cellVerticalAlignment?: VerticalAlignmentAlignmentWithLiterals;
|
|
1930
|
+
/** Responsiveness behaviour of columns when responsiveness applies. Either stacks or wrappers. */
|
|
1931
|
+
responsivenessBehaviour?: ResponsivenessBehaviourWithLiterals;
|
|
1932
|
+
/** Size in pixels when responsiveness_behaviour applies */
|
|
1933
|
+
responsivenessBreakpoint?: number | null;
|
|
1934
|
+
}
|
|
1935
|
+
declare enum Scaling {
|
|
1936
|
+
/** Auto image scaling */
|
|
1937
|
+
AUTO = "AUTO",
|
|
1938
|
+
/** Contain image scaling */
|
|
1939
|
+
CONTAIN = "CONTAIN",
|
|
1940
|
+
/** Cover image scaling */
|
|
1941
|
+
COVER = "COVER"
|
|
1942
|
+
}
|
|
1943
|
+
/** @enumType */
|
|
1944
|
+
type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
1945
|
+
declare enum ImagePosition {
|
|
1946
|
+
/** Image positioned at the center */
|
|
1947
|
+
CENTER = "CENTER",
|
|
1948
|
+
/** Image positioned on the left */
|
|
1949
|
+
CENTER_LEFT = "CENTER_LEFT",
|
|
1950
|
+
/** Image positioned on the right */
|
|
1951
|
+
CENTER_RIGHT = "CENTER_RIGHT",
|
|
1952
|
+
/** Image positioned at the center top */
|
|
1953
|
+
TOP = "TOP",
|
|
1954
|
+
/** Image positioned at the top left */
|
|
1955
|
+
TOP_LEFT = "TOP_LEFT",
|
|
1956
|
+
/** Image positioned at the top right */
|
|
1957
|
+
TOP_RIGHT = "TOP_RIGHT",
|
|
1958
|
+
/** Image positioned at the center bottom */
|
|
1959
|
+
BOTTOM = "BOTTOM",
|
|
1960
|
+
/** Image positioned at the bottom left */
|
|
1961
|
+
BOTTOM_LEFT = "BOTTOM_LEFT",
|
|
1962
|
+
/** Image positioned at the bottom right */
|
|
1963
|
+
BOTTOM_RIGHT = "BOTTOM_RIGHT"
|
|
1964
|
+
}
|
|
1965
|
+
/** @enumType */
|
|
1966
|
+
type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
1967
|
+
interface BackgroundImage {
|
|
1968
|
+
/** Background image. */
|
|
1969
|
+
media?: Media;
|
|
1970
|
+
/** Background image opacity. */
|
|
1971
|
+
opacity?: number | null;
|
|
1972
|
+
/** Background image scaling. */
|
|
1973
|
+
scaling?: ScalingWithLiterals;
|
|
1974
|
+
/** Position of background. Defaults to `CENTER`. */
|
|
1975
|
+
position?: ImagePositionWithLiterals;
|
|
1976
|
+
}
|
|
1977
|
+
declare enum VerticalAlignmentAlignment {
|
|
1978
|
+
/** Top alignment */
|
|
1979
|
+
TOP = "TOP",
|
|
1980
|
+
/** Middle alignment */
|
|
1981
|
+
MIDDLE = "MIDDLE",
|
|
1982
|
+
/** Bottom alignment */
|
|
1983
|
+
BOTTOM = "BOTTOM"
|
|
1984
|
+
}
|
|
1985
|
+
/** @enumType */
|
|
1986
|
+
type VerticalAlignmentAlignmentWithLiterals = VerticalAlignmentAlignment | 'TOP' | 'MIDDLE' | 'BOTTOM';
|
|
1987
|
+
declare enum ResponsivenessBehaviour {
|
|
1988
|
+
/** Stacking of columns */
|
|
1989
|
+
STACK = "STACK",
|
|
1990
|
+
/** Wrapping of columns */
|
|
1991
|
+
WRAP = "WRAP"
|
|
1992
|
+
}
|
|
1993
|
+
/** @enumType */
|
|
1994
|
+
type ResponsivenessBehaviourWithLiterals = ResponsivenessBehaviour | 'STACK' | 'WRAP';
|
|
1889
1995
|
interface LayoutCellData {
|
|
1890
1996
|
/** Size of the cell in 12 columns grid. */
|
|
1891
1997
|
colSpan?: number | null;
|
|
@@ -2438,7 +2544,7 @@ interface CursorSearch extends CursorSearchPagingMethodOneOf {
|
|
|
2438
2544
|
/**
|
|
2439
2545
|
* Time zone in [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database) or [ISO 8601 UTC offset format](https://en.wikipedia.org/wiki/ISO_8601#Time_offsets_from_UTC) for adjusting time fields in the specified filters and returned aggregation data. For example, `America/New_York`, `UTC`, or `+02:00`.
|
|
2440
2546
|
*
|
|
2441
|
-
* Default: Time zone specified in the business site properties
|
|
2547
|
+
* Default: Time zone specified in the business [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
2442
2548
|
* @maxLength 50
|
|
2443
2549
|
*/
|
|
2444
2550
|
timeZone?: string | null;
|
|
@@ -4549,7 +4655,7 @@ type CategorySearch = {
|
|
|
4549
4655
|
/**
|
|
4550
4656
|
Time zone in [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database) or [ISO 8601 UTC offset format](https://en.wikipedia.org/wiki/ISO_8601#Time_offsets_from_UTC) for adjusting time fields in the specified filters and returned aggregation data. For example, `America/New_York`, `UTC`, or `+02:00`.
|
|
4551
4657
|
|
|
4552
|
-
Default: Time zone specified in the business site properties
|
|
4658
|
+
Default: Time zone specified in the business [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties).
|
|
4553
4659
|
@maxLength: 50
|
|
4554
4660
|
*/
|
|
4555
4661
|
timeZone?: CommonSearchWithEntityContext['timeZone'] | null;
|
|
@@ -4973,4 +5079,4 @@ interface BulkSetItemCategoriesOptions {
|
|
|
4973
5079
|
treeReference: TreeReference;
|
|
4974
5080
|
}
|
|
4975
5081
|
|
|
4976
|
-
export { type CategoryCreatedEnvelope 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 QueryCategoriesOptions as Q, type ListCategoriesForItemsResponse as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type ListTreesResponse as V, type SetArrangedItemsOptions as W, type SetArrangedItemsResponse as X, type SetArrangedItemsApplicationErrors as Y, type GetArrangedItemsResponse as Z, type CategoryMovedEnvelope as _, type CreateCategoryOptions as a, type RichContent as a$, type CategoryDeletedEnvelope as a0, type CategoryItemAddedToCategoryEnvelope as a1, type CategoryItemRemovedFromCategoryEnvelope as a2, type CategoryItemsArrangedInCategoryEnvelope as a3, type CategoryUpdatedEnvelope as a4, NodeType as a5, WidthType as a6, PluginContainerDataAlignment as a7, ButtonDataType as a8, Target as a9, Layout as aA, AppType as aB, InitialExpandedItems as aC, Direction as aD, VerticalAlignment as aE, NullValue as aF, SingleEntityOpsRequestedFields as aG, SortOrder as aH, RequestedFields as aI, SortType as aJ, SortDirection as aK, MissingValues as aL, ScalarType as aM, NestedAggregationType as aN, Interval as aO, AggregationType as aP, Mode as aQ, Position as aR, MoveItemInCategoryRequestPosition as aS, WebhookIdentityType as aT, type BreadcrumbsInfo as aU, type Breadcrumb as aV, type ParentCategory as aW, type SeoSchema as aX, type Keyword as aY, type Tag as aZ, type Settings as a_, TextAlignment as aa, LineStyle as ab, Width as ac, DividerDataAlignment as ad, ViewMode as ae, LayoutType as af, Orientation as ag, Crop as ah, ThumbnailsAlignment as ai, GIFType as aj, Source as ak, StylesPosition as al, MapType as am, ViewRole as an, VoteRole as ao, PollLayoutType as ap, PollLayoutDirection as aq, BackgroundType as ar, DecorationType as as, FontType as at, ImageStylesPosition as au, AspectRatio as av, Resizing as aw, Placement as ax, Type as ay, Alignment as az, type CreateCategoryApplicationErrors as b, type ColorData as b$, type Node as b0, type NodeDataOneOf as b1, type NodeStyle as b2, type ButtonData as b3, type Border as b4, type Colors as b5, type PluginContainerData as b6, type PluginContainerDataWidth as b7, type PluginContainerDataWidthDataOneOf as b8, type Spoiler as b9, type HTMLDataDataOneOf as bA, type ImageData as bB, type StylesBorder as bC, type ImageDataStyles as bD, type LinkPreviewData as bE, type LinkPreviewDataStyles as bF, type MapData as bG, type MapSettings as bH, type ParagraphData as bI, type PollData as bJ, type Permissions as bK, type Option as bL, type PollSettings as bM, type PollLayout as bN, type OptionLayout as bO, type Gradient as bP, type Background as bQ, type BackgroundBackgroundOneOf as bR, type PollDesign as bS, type OptionDesign as bT, type Poll as bU, type PollDataLayout as bV, type Design as bW, type TextData as bX, type Decoration as bY, type DecorationDataOneOf as bZ, type AnchorData as b_, type Height as ba, type Styles as bb, type Link as bc, type LinkDataOneOf as bd, type Rel as be, type CodeBlockData as bf, type TextStyle as bg, type DividerData as bh, type FileData as bi, type FileSource as bj, type FileSourceDataOneOf as bk, type PDFSettings as bl, type GalleryData as bm, type Media as bn, type Image as bo, type Video as bp, type Item as bq, type ItemDataOneOf as br, type GalleryOptions as bs, type GalleryOptionsLayout as bt, type ItemStyle as bu, type Thumbnails as bv, type GIFData as bw, type GIF as bx, type HeadingData as by, type HTMLData as bz, type UpdateCategoryOptions as c, type ListCompactCategoriesByIdsRequest as c$, type LinkData as c0, type MentionData as c1, type FontSizeData as c2, type SpoilerData as c3, type AppEmbedData as c4, type AppEmbedDataAppDataOneOf as c5, type BookingData as c6, type EventData as c7, type ButtonStyles as c8, type ImageStyles as c9, type App as cA, type Page as cB, type URI as cC, type File as cD, type CustomTag as cE, type CategoryMoved as cF, type ItemAddedToCategory as cG, type ItemsAddedToCategory as cH, type ItemRemovedFromCategory as cI, type ItemsRemovedFromCategory as cJ, type ItemsArrangedInCategory as cK, type CreateCategoryRequest as cL, type CreateCategoryResponse as cM, type GetCategoryRequest as cN, type GetCategoryResponse as cO, type UpdateCategoryRequest as cP, type UpdateCategoryResponse as cQ, type DeleteCategoryRequest as cR, type DeleteCategoryResponse as cS, type QueryCategoriesRequest as cT, type CursorQuery as cU, type CursorQueryPagingMethodOneOf as cV, type Sorting as cW, type CursorPaging as cX, type QueryCategoriesResponse as cY, type CursorPagingMetadata as cZ, type Cursors as c_, type RibbonStyles as ca, type CardStyles as cb, type PricingData as cc, type VideoData as cd, type PlaybackOptions as ce, type EmbedData as cf, type Oembed as cg, type CollapsibleListData as ch, type TableData as ci, type Dimensions as cj, type TableCellData as ck, type CellStyle as cl, type BorderColors as cm, type ListValue as cn, type AudioData as co, type OrderedListData as cp, type BulletedListData as cq, type BlockquoteData as cr, type CaptionData as cs, type LayoutCellData as ct, type Metadata as cu, type DocumentStyle as cv, type TextNodeStyle as cw, type ExtendedFields as cx, type InvalidateCache as cy, type InvalidateCacheGetByOneOf as cz, type UpdateCategoryApplicationErrors as d, type BulkRemoveItemsFromCategoryRequest as d$, type ListCompactCategoriesByIdsResponse as d0, type CompactCategory as d1, type SearchCategoriesRequest as d2, type CursorSearch as d3, type CursorSearchPagingMethodOneOf as d4, type Aggregation as d5, type AggregationKindOneOf as d6, type RangeBucket as d7, type IncludeMissingValuesOptions as d8, type ValueAggregation as d9, type DateHistogramResults as dA, type NestedResults as dB, type AggregationResults as dC, type AggregationResultsResultOneOf as dD, type DeprecatedSearchCategoriesWithOffsetRequest as dE, type OffsetSearch as dF, type OffsetSearchPagingMethodOneOf as dG, type Paging as dH, type DeprecatedSearchCategoriesWithOffsetResponse as dI, type PagingMetadata as dJ, type CountCategoriesRequest as dK, type MoveCategoryRequest as dL, type BulkUpdateCategoriesRequest as dM, type BulkCategoriesResult as dN, type ItemMetadata as dO, type ApplicationError as dP, type BulkActionMetadata as dQ, type UpdateCategoryVisibilityRequest as dR, type BulkShowCategoriesRequest as dS, type BulkDeleteCategoriesRequest as dT, type BulkDeleteCategoriesResponse as dU, type BulkDeleteCategoriesResponseBulkCategoriesResult as dV, type BulkAddItemsToCategoryRequest as dW, type BulkItemsToCategoryResult as dX, type ItemReferenceMetadata as dY, type BulkAddItemToCategoriesRequest as dZ, type BulkItemToCategoriesResult as d_, type ValueAggregationOptionsOneOf as da, type RangeAggregation as db, type ScalarAggregation as dc, type DateHistogramAggregation as dd, type NestedAggregationItem as de, type NestedAggregationItemKindOneOf as df, type NestedAggregation as dg, type SearchDetails as dh, type AggregationData as di, type ValueAggregationResult as dj, type RangeAggregationResult as dk, type NestedAggregationResults as dl, type NestedAggregationResultsResultOneOf as dm, type ValueResults as dn, type RangeResults as dp, type AggregationResultsScalarResult as dq, type NestedValueAggregationResult as dr, type ValueResult as ds, type RangeResult as dt, type ScalarResult as du, type NestedResultValue as dv, type NestedResultValueResultOneOf as dw, type Results as dx, type DateHistogramResult as dy, type GroupByValueResults as dz, type CategoriesQueryBuilder as e, type TypeWithLiterals as e$, type BulkRemoveItemFromCategoriesRequest as e0, type ListItemsInCategoryRequest as e1, type ListItemsInCategoryRequestPagingMethodOneOf as e2, type PagingMetadataV2 as e3, type ListCategoriesForItemRequest as e4, type ListCategoriesForItemsRequest as e5, type MapItemToCategories as e6, type ListTreesRequest as e7, type MoveItemInCategoryRequest as e8, type MoveItemInCategoryResponse as e9, type PluginContainerDataAlignmentWithLiterals as eA, type ButtonDataTypeWithLiterals as eB, type TargetWithLiterals as eC, type TextAlignmentWithLiterals as eD, type LineStyleWithLiterals as eE, type WidthWithLiterals as eF, type DividerDataAlignmentWithLiterals as eG, type ViewModeWithLiterals as eH, type LayoutTypeWithLiterals as eI, type OrientationWithLiterals as eJ, type CropWithLiterals as eK, type ThumbnailsAlignmentWithLiterals as eL, type GIFTypeWithLiterals as eM, type SourceWithLiterals as eN, type StylesPositionWithLiterals as eO, type MapTypeWithLiterals as eP, type ViewRoleWithLiterals as eQ, type VoteRoleWithLiterals as eR, type PollLayoutTypeWithLiterals as eS, type PollLayoutDirectionWithLiterals as eT, type BackgroundTypeWithLiterals as eU, type DecorationTypeWithLiterals as eV, type FontTypeWithLiterals as eW, type ImageStylesPositionWithLiterals as eX, type AspectRatioWithLiterals as eY, type ResizingWithLiterals as eZ, type PlacementWithLiterals as e_, type SetArrangedItemsRequest as ea, type GetArrangedItemsRequest as eb, type BulkSetItemCategoriesRequest as ec, type BulkSetItemCategoriesResponse as ed, type GetCategoriesTreeRequest as ee, type GetCategoriesTreeResponse as ef, type CategoryTreeNode as eg, type DomainEvent as eh, type DomainEventBodyOneOf as ei, type EntityCreatedEvent as ej, type RestoreInfo as ek, type EntityUpdatedEvent as el, type EntityDeletedEvent as em, type ActionEvent as en, type Empty as eo, type MessageEnvelope as ep, type IdentificationData as eq, type IdentificationDataIdOneOf as er, type BaseEventMetadata as es, type EventMetadata as et, type CategoriesQueryResult as eu, type CategorySearchSpec as ev, type ListItemsInCategoryOptionsPagingMethodOneOf as ew, type BulkSetItemCategoriesOptions as ex, type NodeTypeWithLiterals as ey, type WidthTypeWithLiterals as ez, type CategorySearch as f, type AlignmentWithLiterals as f0, type LayoutWithLiterals as f1, type AppTypeWithLiterals as f2, type InitialExpandedItemsWithLiterals as f3, type DirectionWithLiterals as f4, type VerticalAlignmentWithLiterals as f5, type NullValueWithLiterals as f6, type SingleEntityOpsRequestedFieldsWithLiterals as f7, type SortOrderWithLiterals as f8, type RequestedFieldsWithLiterals as f9, moveCategory as fA, bulkUpdateCategories as fB, updateCategoryVisibility as fC, bulkShowCategories as fD, bulkAddItemsToCategory as fE, bulkAddItemToCategories as fF, bulkRemoveItemsFromCategory as fG, bulkRemoveItemFromCategories as fH, listItemsInCategory as fI, listCategoriesForItem as fJ, listCategoriesForItems as fK, listTrees as fL, setArrangedItems as fM, getArrangedItems as fN, 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 CommonSearchWithEntityContext as fm, onCategoryMoved as fn, onCategoryCreated as fo, onCategoryDeleted as fp, onCategoryItemAddedToCategory as fq, onCategoryItemRemovedFromCategory as fr, onCategoryItemsArrangedInCategory as fs, onCategoryUpdated as ft, createCategory as fu, getCategory as fv, updateCategory as fw, deleteCategory as fx, queryCategories as fy, countCategories as fz, type SearchCategoriesResponse as g, 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 };
|
|
5082
|
+
export { type CategoryCreatedEnvelope 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 QueryCategoriesOptions as Q, type ListCategoriesForItemsResponse as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type ListTreesResponse as V, type SetArrangedItemsOptions as W, type SetArrangedItemsResponse as X, type SetArrangedItemsApplicationErrors as Y, type GetArrangedItemsResponse as Z, type CategoryMovedEnvelope as _, type CreateCategoryOptions as a, type SeoSchema as a$, type CategoryDeletedEnvelope as a0, type CategoryItemAddedToCategoryEnvelope as a1, type CategoryItemRemovedFromCategoryEnvelope as a2, type CategoryItemsArrangedInCategoryEnvelope as a3, type CategoryUpdatedEnvelope as a4, NodeType as a5, WidthType as a6, PluginContainerDataAlignment as a7, ButtonDataType as a8, Target as a9, Layout as aA, AppType as aB, InitialExpandedItems as aC, Direction as aD, VerticalAlignment as aE, NullValue as aF, Scaling as aG, ImagePosition as aH, VerticalAlignmentAlignment as aI, ResponsivenessBehaviour as aJ, SingleEntityOpsRequestedFields as aK, SortOrder as aL, RequestedFields as aM, SortType as aN, SortDirection as aO, MissingValues as aP, ScalarType as aQ, NestedAggregationType as aR, Interval as aS, AggregationType as aT, Mode as aU, Position as aV, MoveItemInCategoryRequestPosition as aW, WebhookIdentityType as aX, type BreadcrumbsInfo as aY, type Breadcrumb as aZ, type ParentCategory as a_, TextAlignment as aa, LineStyle as ab, Width as ac, DividerDataAlignment as ad, ViewMode as ae, LayoutType as af, Orientation as ag, Crop as ah, ThumbnailsAlignment as ai, GIFType as aj, Source as ak, StylesPosition as al, MapType as am, ViewRole as an, VoteRole as ao, PollLayoutType as ap, PollLayoutDirection as aq, BackgroundType as ar, DecorationType as as, FontType as at, ImageStylesPosition as au, AspectRatio as av, Resizing as aw, Placement as ax, Type as ay, Alignment as az, type CreateCategoryApplicationErrors as b, type TextData as b$, type Keyword as b0, type Tag as b1, type Settings as b2, type RichContent as b3, type Node as b4, type NodeDataOneOf as b5, type NodeStyle as b6, type ButtonData as b7, type Border as b8, type Colors as b9, type GIFData as bA, type GIF as bB, type HeadingData as bC, type HTMLData as bD, type HTMLDataDataOneOf as bE, type ImageData as bF, type StylesBorder as bG, type ImageDataStyles as bH, type LinkPreviewData as bI, type LinkPreviewDataStyles as bJ, type MapData as bK, type MapSettings as bL, type ParagraphData as bM, type PollData as bN, type Permissions as bO, type Option as bP, type PollSettings as bQ, type PollLayout as bR, type OptionLayout as bS, type Gradient as bT, type Background as bU, type BackgroundBackgroundOneOf as bV, type PollDesign as bW, type OptionDesign as bX, type Poll as bY, type PollDataLayout as bZ, type Design as b_, type PluginContainerData as ba, type PluginContainerDataWidth as bb, type PluginContainerDataWidthDataOneOf as bc, type Spoiler as bd, type Height as be, type Styles as bf, type Link as bg, type LinkDataOneOf as bh, type Rel as bi, type CodeBlockData as bj, type TextStyle as bk, type DividerData as bl, type FileData as bm, type FileSource as bn, type FileSourceDataOneOf as bo, type PDFSettings as bp, type GalleryData as bq, type Media as br, type Image as bs, type Video as bt, type Item as bu, type ItemDataOneOf as bv, type GalleryOptions as bw, type GalleryOptionsLayout as bx, type ItemStyle as by, type Thumbnails as bz, type UpdateCategoryOptions as c, type CursorQueryPagingMethodOneOf as c$, type Decoration as c0, type DecorationDataOneOf as c1, type AnchorData as c2, type ColorData as c3, type LinkData as c4, type MentionData as c5, type FontSizeData as c6, type SpoilerData as c7, type AppEmbedData as c8, type AppEmbedDataAppDataOneOf as c9, type Metadata as cA, type DocumentStyle as cB, type TextNodeStyle as cC, type ExtendedFields as cD, type InvalidateCache as cE, type InvalidateCacheGetByOneOf as cF, type App as cG, type Page as cH, type URI as cI, type File as cJ, type CustomTag as cK, type CategoryMoved as cL, type ItemAddedToCategory as cM, type ItemsAddedToCategory as cN, type ItemRemovedFromCategory as cO, type ItemsRemovedFromCategory as cP, type ItemsArrangedInCategory as cQ, type CreateCategoryRequest as cR, type CreateCategoryResponse as cS, type GetCategoryRequest as cT, type GetCategoryResponse as cU, type UpdateCategoryRequest as cV, type UpdateCategoryResponse as cW, type DeleteCategoryRequest as cX, type DeleteCategoryResponse as cY, type QueryCategoriesRequest as cZ, type CursorQuery as c_, type BookingData as ca, type EventData as cb, type ButtonStyles as cc, type ImageStyles as cd, type RibbonStyles as ce, type CardStyles as cf, type PricingData as cg, type VideoData as ch, type PlaybackOptions as ci, type EmbedData as cj, type Oembed as ck, type CollapsibleListData as cl, type TableData as cm, type Dimensions as cn, type TableCellData as co, type CellStyle as cp, type BorderColors as cq, type ListValue as cr, type AudioData as cs, type OrderedListData as ct, type BulletedListData as cu, type BlockquoteData as cv, type CaptionData as cw, type LayoutData as cx, type BackgroundImage as cy, type LayoutCellData as cz, type UpdateCategoryApplicationErrors as d, type BulkDeleteCategoriesResponseBulkCategoriesResult as d$, type Sorting as d0, type CursorPaging as d1, type QueryCategoriesResponse as d2, type CursorPagingMetadata as d3, type Cursors as d4, type ListCompactCategoriesByIdsRequest as d5, type ListCompactCategoriesByIdsResponse as d6, type CompactCategory as d7, type SearchCategoriesRequest as d8, type CursorSearch as d9, type ScalarResult as dA, type NestedResultValue as dB, type NestedResultValueResultOneOf as dC, type Results as dD, type DateHistogramResult as dE, type GroupByValueResults as dF, type DateHistogramResults as dG, type NestedResults as dH, type AggregationResults as dI, type AggregationResultsResultOneOf as dJ, type DeprecatedSearchCategoriesWithOffsetRequest as dK, type OffsetSearch as dL, type OffsetSearchPagingMethodOneOf as dM, type Paging as dN, type DeprecatedSearchCategoriesWithOffsetResponse as dO, type PagingMetadata as dP, type CountCategoriesRequest as dQ, type MoveCategoryRequest as dR, type BulkUpdateCategoriesRequest as dS, type BulkCategoriesResult as dT, type ItemMetadata as dU, type ApplicationError as dV, type BulkActionMetadata as dW, type UpdateCategoryVisibilityRequest as dX, type BulkShowCategoriesRequest as dY, type BulkDeleteCategoriesRequest as dZ, type BulkDeleteCategoriesResponse as d_, type CursorSearchPagingMethodOneOf as da, type Aggregation as db, type AggregationKindOneOf as dc, type RangeBucket as dd, type IncludeMissingValuesOptions as de, type ValueAggregation as df, type ValueAggregationOptionsOneOf as dg, type RangeAggregation as dh, type ScalarAggregation as di, type DateHistogramAggregation as dj, type NestedAggregationItem as dk, type NestedAggregationItemKindOneOf as dl, type NestedAggregation as dm, type SearchDetails as dn, type AggregationData as dp, type ValueAggregationResult as dq, type RangeAggregationResult as dr, type NestedAggregationResults as ds, type NestedAggregationResultsResultOneOf as dt, type ValueResults as du, type RangeResults as dv, type AggregationResultsScalarResult as dw, type NestedValueAggregationResult as dx, type ValueResult as dy, type RangeResult as dz, type CategoriesQueryBuilder as e, type DecorationTypeWithLiterals as e$, type BulkAddItemsToCategoryRequest as e0, type BulkItemsToCategoryResult as e1, type ItemReferenceMetadata as e2, type BulkAddItemToCategoriesRequest as e3, type BulkItemToCategoriesResult as e4, type BulkRemoveItemsFromCategoryRequest as e5, type BulkRemoveItemFromCategoriesRequest as e6, type ListItemsInCategoryRequest as e7, type ListItemsInCategoryRequestPagingMethodOneOf as e8, type PagingMetadataV2 as e9, type CategoriesQueryResult as eA, type CategorySearchSpec as eB, type ListItemsInCategoryOptionsPagingMethodOneOf as eC, type BulkSetItemCategoriesOptions as eD, type NodeTypeWithLiterals as eE, type WidthTypeWithLiterals as eF, type PluginContainerDataAlignmentWithLiterals as eG, type ButtonDataTypeWithLiterals as eH, type TargetWithLiterals as eI, type TextAlignmentWithLiterals as eJ, type LineStyleWithLiterals as eK, type WidthWithLiterals as eL, type DividerDataAlignmentWithLiterals as eM, type ViewModeWithLiterals as eN, type LayoutTypeWithLiterals as eO, type OrientationWithLiterals as eP, type CropWithLiterals as eQ, type ThumbnailsAlignmentWithLiterals as eR, type GIFTypeWithLiterals as eS, type SourceWithLiterals as eT, type StylesPositionWithLiterals as eU, type MapTypeWithLiterals as eV, type ViewRoleWithLiterals as eW, type VoteRoleWithLiterals as eX, type PollLayoutTypeWithLiterals as eY, type PollLayoutDirectionWithLiterals as eZ, type BackgroundTypeWithLiterals as e_, type ListCategoriesForItemRequest as ea, type ListCategoriesForItemsRequest as eb, type MapItemToCategories as ec, type ListTreesRequest as ed, type MoveItemInCategoryRequest as ee, type MoveItemInCategoryResponse as ef, type SetArrangedItemsRequest as eg, type GetArrangedItemsRequest as eh, type BulkSetItemCategoriesRequest as ei, type BulkSetItemCategoriesResponse as ej, type GetCategoriesTreeRequest as ek, type GetCategoriesTreeResponse as el, type CategoryTreeNode as em, type DomainEvent as en, type DomainEventBodyOneOf as eo, type EntityCreatedEvent as ep, type RestoreInfo as eq, type EntityUpdatedEvent as er, type EntityDeletedEvent as es, type ActionEvent as et, type Empty as eu, type MessageEnvelope as ev, type IdentificationData as ew, type IdentificationDataIdOneOf as ex, type BaseEventMetadata as ey, type EventMetadata as ez, type CategorySearch as f, type FontTypeWithLiterals as f0, type ImageStylesPositionWithLiterals as f1, type AspectRatioWithLiterals as f2, type ResizingWithLiterals as f3, type PlacementWithLiterals as f4, type TypeWithLiterals as f5, type AlignmentWithLiterals as f6, type LayoutWithLiterals as f7, type AppTypeWithLiterals as f8, type InitialExpandedItemsWithLiterals as f9, onCategoryItemAddedToCategory as fA, onCategoryItemRemovedFromCategory as fB, onCategoryItemsArrangedInCategory as fC, onCategoryUpdated as fD, createCategory as fE, getCategory as fF, updateCategory as fG, deleteCategory as fH, queryCategories as fI, countCategories as fJ, moveCategory as fK, bulkUpdateCategories as fL, updateCategoryVisibility as fM, bulkShowCategories as fN, bulkAddItemsToCategory as fO, bulkAddItemToCategories as fP, bulkRemoveItemsFromCategory as fQ, bulkRemoveItemFromCategories as fR, listItemsInCategory as fS, listCategoriesForItem as fT, listCategoriesForItems as fU, listTrees as fV, setArrangedItems as fW, getArrangedItems as fX, type DirectionWithLiterals as fa, type VerticalAlignmentWithLiterals as fb, type NullValueWithLiterals as fc, type ScalingWithLiterals as fd, type ImagePositionWithLiterals as fe, type VerticalAlignmentAlignmentWithLiterals as ff, type ResponsivenessBehaviourWithLiterals as fg, type SingleEntityOpsRequestedFieldsWithLiterals as fh, type SortOrderWithLiterals as fi, type RequestedFieldsWithLiterals as fj, type SortTypeWithLiterals as fk, type SortDirectionWithLiterals as fl, type MissingValuesWithLiterals as fm, type ScalarTypeWithLiterals as fn, type NestedAggregationTypeWithLiterals as fo, type IntervalWithLiterals as fp, type AggregationTypeWithLiterals as fq, type ModeWithLiterals as fr, type PositionWithLiterals as fs, type MoveItemInCategoryRequestPositionWithLiterals as ft, type WebhookIdentityTypeWithLiterals as fu, type BulkSetItemCategoriesApplicationErrors as fv, type CommonSearchWithEntityContext as fw, onCategoryMoved as fx, onCategoryCreated as fy, onCategoryDeleted as fz, type SearchCategoriesResponse as g, 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, T as TreeReference, G as GetCategoryOptions, U as UpdateCategory, c as UpdateCategoryOptions, d as UpdateCategoryApplicationErrors, D as DeleteCategoryApplicationErrors, Q as QueryCategoriesOptions, e as CategoriesQueryBuilder, 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, R as ListCategoriesForItemsResponse, V as ListTreesResponse, W as SetArrangedItemsOptions, X as SetArrangedItemsResponse, Y as SetArrangedItemsApplicationErrors, Z as GetArrangedItemsResponse, _ as CategoryMovedEnvelope, $ as CategoryCreatedEnvelope, a0 as CategoryDeletedEnvelope, a1 as CategoryItemAddedToCategoryEnvelope, a2 as CategoryItemRemovedFromCategoryEnvelope, a3 as CategoryItemsArrangedInCategoryEnvelope, a4 as CategoryUpdatedEnvelope } from './categories-v1-category-categories.universal-
|
|
3
|
-
export {
|
|
2
|
+
import { C as Category, a as CreateCategoryOptions, b as CreateCategoryApplicationErrors, T as TreeReference, G as GetCategoryOptions, U as UpdateCategory, c as UpdateCategoryOptions, d as UpdateCategoryApplicationErrors, D as DeleteCategoryApplicationErrors, Q as QueryCategoriesOptions, e as CategoriesQueryBuilder, 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, R as ListCategoriesForItemsResponse, V as ListTreesResponse, W as SetArrangedItemsOptions, X as SetArrangedItemsResponse, Y as SetArrangedItemsApplicationErrors, Z as GetArrangedItemsResponse, _ as CategoryMovedEnvelope, $ as CategoryCreatedEnvelope, a0 as CategoryDeletedEnvelope, a1 as CategoryItemAddedToCategoryEnvelope, a2 as CategoryItemRemovedFromCategoryEnvelope, a3 as CategoryItemsArrangedInCategoryEnvelope, a4 as CategoryUpdatedEnvelope } from './categories-v1-category-categories.universal-DwnNiNlZ.js';
|
|
3
|
+
export { et as ActionEvent, db as Aggregation, dp as AggregationData, dc as AggregationKindOneOf, dI as AggregationResults, dJ as AggregationResultsResultOneOf, dw as AggregationResultsScalarResult, aT as AggregationType, fq as AggregationTypeWithLiterals, az as Alignment, f6 as AlignmentWithLiterals, c2 as AnchorData, cG as App, c8 as AppEmbedData, c9 as AppEmbedDataAppDataOneOf, aB as AppType, f8 as AppTypeWithLiterals, dV as ApplicationError, av as AspectRatio, f2 as AspectRatioWithLiterals, cs as AudioData, bU as Background, bV as BackgroundBackgroundOneOf, cy as BackgroundImage, ar as BackgroundType, e_ as BackgroundTypeWithLiterals, ey as BaseEventMetadata, cv as BlockquoteData, ca as BookingData, b8 as Border, cq as BorderColors, aZ as Breadcrumb, aY as BreadcrumbsInfo, dW as BulkActionMetadata, e3 as BulkAddItemToCategoriesRequest, e0 as BulkAddItemsToCategoryRequest, dT as BulkCategoriesResult, dZ as BulkDeleteCategoriesRequest, d_ as BulkDeleteCategoriesResponse, d$ as BulkDeleteCategoriesResponseBulkCategoriesResult, e4 as BulkItemToCategoriesResult, e1 as BulkItemsToCategoryResult, e6 as BulkRemoveItemFromCategoriesRequest, e5 as BulkRemoveItemsFromCategoryRequest, fv as BulkSetItemCategoriesApplicationErrors, eD as BulkSetItemCategoriesOptions, ei as BulkSetItemCategoriesRequest, ej as BulkSetItemCategoriesResponse, dY as BulkShowCategoriesRequest, dS as BulkUpdateCategoriesRequest, cu as BulletedListData, b7 as ButtonData, a8 as ButtonDataType, eH as ButtonDataTypeWithLiterals, cc as ButtonStyles, cw as CaptionData, cf as CardStyles, eA as CategoriesQueryResult, cL as CategoryMoved, eB as CategorySearchSpec, em as CategoryTreeNode, cp as CellStyle, bj as CodeBlockData, cl as CollapsibleListData, c3 as ColorData, b9 as Colors, fw as CommonSearchWithEntityContext, d7 as CompactCategory, dQ as CountCategoriesRequest, cR as CreateCategoryRequest, cS as CreateCategoryResponse, ah as Crop, eQ as CropWithLiterals, d1 as CursorPaging, d3 as CursorPagingMetadata, c_ as CursorQuery, c$ as CursorQueryPagingMethodOneOf, d9 as CursorSearch, da as CursorSearchPagingMethodOneOf, d4 as Cursors, cK as CustomTag, dj as DateHistogramAggregation, dE as DateHistogramResult, dG as DateHistogramResults, c0 as Decoration, c1 as DecorationDataOneOf, as as DecorationType, e$ as DecorationTypeWithLiterals, cX as DeleteCategoryRequest, cY as DeleteCategoryResponse, dK as DeprecatedSearchCategoriesWithOffsetRequest, dO as DeprecatedSearchCategoriesWithOffsetResponse, b_ as Design, cn as Dimensions, aD as Direction, fa as DirectionWithLiterals, bl as DividerData, ad as DividerDataAlignment, eM as DividerDataAlignmentWithLiterals, cB as DocumentStyle, en as DomainEvent, eo as DomainEventBodyOneOf, cj as EmbedData, eu as Empty, ep as EntityCreatedEvent, es as EntityDeletedEvent, er as EntityUpdatedEvent, cb as EventData, ez as EventMetadata, cD as ExtendedFields, cJ as File, bm as FileData, bn as FileSource, bo as FileSourceDataOneOf, c6 as FontSizeData, at as FontType, f0 as FontTypeWithLiterals, bB as GIF, bA as GIFData, aj as GIFType, eS as GIFTypeWithLiterals, bq as GalleryData, bw as GalleryOptions, bx as GalleryOptionsLayout, eh as GetArrangedItemsRequest, ek as GetCategoriesTreeRequest, el as GetCategoriesTreeResponse, cT as GetCategoryRequest, cU as GetCategoryResponse, bT as Gradient, dF as GroupByValueResults, bD as HTMLData, bE as HTMLDataDataOneOf, bC as HeadingData, be as Height, ew as IdentificationData, ex as IdentificationDataIdOneOf, bs as Image, bF as ImageData, bH as ImageDataStyles, aH as ImagePosition, fe as ImagePositionWithLiterals, cd as ImageStyles, au as ImageStylesPosition, f1 as ImageStylesPositionWithLiterals, de as IncludeMissingValuesOptions, aC as InitialExpandedItems, f9 as InitialExpandedItemsWithLiterals, aS as Interval, fp as IntervalWithLiterals, cE as InvalidateCache, cF as InvalidateCacheGetByOneOf, bu as Item, cM as ItemAddedToCategory, bv as ItemDataOneOf, dU as ItemMetadata, e2 as ItemReferenceMetadata, cO as ItemRemovedFromCategory, by as ItemStyle, cN as ItemsAddedToCategory, cQ as ItemsArrangedInCategory, cP as ItemsRemovedFromCategory, b0 as Keyword, aA as Layout, cz as LayoutCellData, cx as LayoutData, af as LayoutType, eO as LayoutTypeWithLiterals, f7 as LayoutWithLiterals, ab as LineStyle, eK as LineStyleWithLiterals, bg as Link, c4 as LinkData, bh as LinkDataOneOf, bI as LinkPreviewData, bJ as LinkPreviewDataStyles, ea as ListCategoriesForItemRequest, eb as ListCategoriesForItemsRequest, d5 as ListCompactCategoriesByIdsRequest, d6 as ListCompactCategoriesByIdsResponse, eC as ListItemsInCategoryOptionsPagingMethodOneOf, e7 as ListItemsInCategoryRequest, e8 as ListItemsInCategoryRequestPagingMethodOneOf, ed as ListTreesRequest, cr as ListValue, bK as MapData, ec as MapItemToCategories, bL as MapSettings, am as MapType, eV as MapTypeWithLiterals, br as Media, c5 as MentionData, ev as MessageEnvelope, cA as Metadata, aP as MissingValues, fm as MissingValuesWithLiterals, aU as Mode, fr as ModeWithLiterals, dR as MoveCategoryRequest, ee as MoveItemInCategoryRequest, aW as MoveItemInCategoryRequestPosition, ft as MoveItemInCategoryRequestPositionWithLiterals, ef as MoveItemInCategoryResponse, dm as NestedAggregation, dk as NestedAggregationItem, dl as NestedAggregationItemKindOneOf, ds as NestedAggregationResults, dt as NestedAggregationResultsResultOneOf, aR as NestedAggregationType, fo as NestedAggregationTypeWithLiterals, dB as NestedResultValue, dC as NestedResultValueResultOneOf, dH as NestedResults, dx as NestedValueAggregationResult, b4 as Node, b5 as NodeDataOneOf, b6 as NodeStyle, a5 as NodeType, eE as NodeTypeWithLiterals, aF as NullValue, fc as NullValueWithLiterals, ck as Oembed, dL as OffsetSearch, dM as OffsetSearchPagingMethodOneOf, bP as Option, bX as OptionDesign, bS as OptionLayout, ct as OrderedListData, ag as Orientation, eP as OrientationWithLiterals, bp as PDFSettings, cH as Page, dN as Paging, dP as PagingMetadata, e9 as PagingMetadataV2, bM as ParagraphData, a_ as ParentCategory, bO as Permissions, ax as Placement, f4 as PlacementWithLiterals, ci as PlaybackOptions, ba as PluginContainerData, a7 as PluginContainerDataAlignment, eG as PluginContainerDataAlignmentWithLiterals, bb as PluginContainerDataWidth, bc as PluginContainerDataWidthDataOneOf, bY as Poll, bN as PollData, bZ as PollDataLayout, bW as PollDesign, bR as PollLayout, aq as PollLayoutDirection, eZ as PollLayoutDirectionWithLiterals, ap as PollLayoutType, eY as PollLayoutTypeWithLiterals, bQ as PollSettings, aV as Position, fs as PositionWithLiterals, cg as PricingData, cZ as QueryCategoriesRequest, d2 as QueryCategoriesResponse, dh as RangeAggregation, dr as RangeAggregationResult, dd as RangeBucket, dz as RangeResult, dv as RangeResults, bi as Rel, aM as RequestedFields, fj as RequestedFieldsWithLiterals, aw as Resizing, f3 as ResizingWithLiterals, aJ as ResponsivenessBehaviour, fg as ResponsivenessBehaviourWithLiterals, eq as RestoreInfo, dD as Results, ce as RibbonStyles, b3 as RichContent, di as ScalarAggregation, dA as ScalarResult, aQ as ScalarType, fn as ScalarTypeWithLiterals, aG as Scaling, fd as ScalingWithLiterals, d8 as SearchCategoriesRequest, dn as SearchDetails, a$ as SeoSchema, eg as SetArrangedItemsRequest, b2 as Settings, aK as SingleEntityOpsRequestedFields, fh as SingleEntityOpsRequestedFieldsWithLiterals, aO as SortDirection, fl as SortDirectionWithLiterals, aL as SortOrder, fi as SortOrderWithLiterals, aN as SortType, fk as SortTypeWithLiterals, d0 as Sorting, ak as Source, eT as SourceWithLiterals, bd as Spoiler, c7 as SpoilerData, bf as Styles, bG as StylesBorder, al as StylesPosition, eU as StylesPositionWithLiterals, co as TableCellData, cm as TableData, b1 as Tag, a9 as Target, eI as TargetWithLiterals, aa as TextAlignment, eJ as TextAlignmentWithLiterals, b$ as TextData, cC as TextNodeStyle, bk as TextStyle, bz as Thumbnails, ai as ThumbnailsAlignment, eR as ThumbnailsAlignmentWithLiterals, ay as Type, f5 as TypeWithLiterals, cI as URI, cV as UpdateCategoryRequest, cW as UpdateCategoryResponse, dX as UpdateCategoryVisibilityRequest, df as ValueAggregation, dg as ValueAggregationOptionsOneOf, dq as ValueAggregationResult, dy as ValueResult, du as ValueResults, aE as VerticalAlignment, aI as VerticalAlignmentAlignment, ff as VerticalAlignmentAlignmentWithLiterals, fb as VerticalAlignmentWithLiterals, bt as Video, ch as VideoData, ae as ViewMode, eN as ViewModeWithLiterals, an as ViewRole, eW as ViewRoleWithLiterals, ao as VoteRole, eX as VoteRoleWithLiterals, aX as WebhookIdentityType, fu as WebhookIdentityTypeWithLiterals, ac as Width, a6 as WidthType, eF as WidthTypeWithLiterals, eL as WidthWithLiterals } from './categories-v1-category-categories.universal-DwnNiNlZ.js';
|
|
4
4
|
|
|
5
5
|
declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
|
|
6
6
|
interface CreateCategorySignature {
|
|
@@ -88,10 +88,8 @@ interface SearchCategoriesSignature {
|
|
|
88
88
|
* ## See also
|
|
89
89
|
*
|
|
90
90
|
* To learn about working with *Search* methods, see
|
|
91
|
-
*
|
|
92
|
-
*
|
|
93
|
-
* and *Sorting and Paging*
|
|
94
|
-
* ([SDK](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/api-query-language#the-sort-array) | [REST](https://dev.wix.com/docs/rest/articles/get-started/sorting-and-paging)).
|
|
91
|
+
* [API Query Language](https://dev.wix.com/docs/rest/articles/get-started/api-query-language)
|
|
92
|
+
* and [Sorting and Paging](https://dev.wix.com/docs/rest/articles/get-started/sorting-and-paging).
|
|
95
93
|
* @param - Search criteria including filter, sort, aggregations, and paging options.
|
|
96
94
|
*
|
|
97
95
|
* Refer to the [supported filters & sorting table](https://dev.wix.com/docs/sdk/backend-modules/categories/categories/search-categories) (SDK)
|
package/build/cjs/index.js
CHANGED
|
@@ -32,6 +32,7 @@ __export(index_exports, {
|
|
|
32
32
|
DividerDataAlignment: () => DividerDataAlignment,
|
|
33
33
|
FontType: () => FontType,
|
|
34
34
|
GIFType: () => GIFType,
|
|
35
|
+
ImagePosition: () => ImagePosition,
|
|
35
36
|
ImageStylesPosition: () => ImageStylesPosition,
|
|
36
37
|
InitialExpandedItems: () => InitialExpandedItems,
|
|
37
38
|
Interval: () => Interval,
|
|
@@ -53,7 +54,9 @@ __export(index_exports, {
|
|
|
53
54
|
Position: () => Position,
|
|
54
55
|
RequestedFields: () => RequestedFields,
|
|
55
56
|
Resizing: () => Resizing,
|
|
57
|
+
ResponsivenessBehaviour: () => ResponsivenessBehaviour,
|
|
56
58
|
ScalarType: () => ScalarType,
|
|
59
|
+
Scaling: () => Scaling,
|
|
57
60
|
SingleEntityOpsRequestedFields: () => SingleEntityOpsRequestedFields,
|
|
58
61
|
SortDirection: () => SortDirection,
|
|
59
62
|
SortOrder: () => SortOrder,
|
|
@@ -65,6 +68,7 @@ __export(index_exports, {
|
|
|
65
68
|
ThumbnailsAlignment: () => ThumbnailsAlignment,
|
|
66
69
|
Type: () => Type,
|
|
67
70
|
VerticalAlignment: () => VerticalAlignment,
|
|
71
|
+
VerticalAlignmentAlignment: () => VerticalAlignmentAlignment,
|
|
68
72
|
ViewMode: () => ViewMode,
|
|
69
73
|
ViewRole: () => ViewRole,
|
|
70
74
|
VoteRole: () => VoteRole,
|
|
@@ -241,6 +245,12 @@ function createCategory(payload) {
|
|
|
241
245
|
},
|
|
242
246
|
{
|
|
243
247
|
path: "category.richContentDescription.nodes.audioData.coverImage.duration"
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
path: "category.richContentDescription.nodes.layoutData.backgroundImage.media.duration"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
path: "category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
244
254
|
}
|
|
245
255
|
]
|
|
246
256
|
}
|
|
@@ -321,6 +331,12 @@ function createCategory(payload) {
|
|
|
321
331
|
},
|
|
322
332
|
{
|
|
323
333
|
path: "category.richContentDescription.nodes.audioData.coverImage.duration"
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
path: "category.richContentDescription.nodes.layoutData.backgroundImage.media.duration"
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
path: "category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
324
340
|
}
|
|
325
341
|
]
|
|
326
342
|
}
|
|
@@ -408,6 +424,12 @@ function getCategory(payload) {
|
|
|
408
424
|
},
|
|
409
425
|
{
|
|
410
426
|
path: "category.richContentDescription.nodes.audioData.coverImage.duration"
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
path: "category.richContentDescription.nodes.layoutData.backgroundImage.media.duration"
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
path: "category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
411
433
|
}
|
|
412
434
|
]
|
|
413
435
|
}
|
|
@@ -481,6 +503,12 @@ function updateCategory(payload) {
|
|
|
481
503
|
},
|
|
482
504
|
{
|
|
483
505
|
path: "category.richContentDescription.nodes.audioData.coverImage.duration"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
path: "category.richContentDescription.nodes.layoutData.backgroundImage.media.duration"
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
path: "category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
484
512
|
}
|
|
485
513
|
]
|
|
486
514
|
}
|
|
@@ -561,6 +589,12 @@ function updateCategory(payload) {
|
|
|
561
589
|
},
|
|
562
590
|
{
|
|
563
591
|
path: "category.richContentDescription.nodes.audioData.coverImage.duration"
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
path: "category.richContentDescription.nodes.layoutData.backgroundImage.media.duration"
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
path: "category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
564
598
|
}
|
|
565
599
|
]
|
|
566
600
|
}
|
|
@@ -669,6 +703,12 @@ function queryCategories(payload) {
|
|
|
669
703
|
},
|
|
670
704
|
{
|
|
671
705
|
path: "categories.richContentDescription.nodes.audioData.coverImage.duration"
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
path: "categories.richContentDescription.nodes.layoutData.backgroundImage.media.duration"
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
path: "categories.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
672
712
|
}
|
|
673
713
|
]
|
|
674
714
|
}
|
|
@@ -772,6 +812,12 @@ function searchCategories(payload) {
|
|
|
772
812
|
{
|
|
773
813
|
path: "categories.richContentDescription.nodes.audioData.coverImage.duration"
|
|
774
814
|
},
|
|
815
|
+
{
|
|
816
|
+
path: "categories.richContentDescription.nodes.layoutData.backgroundImage.media.duration"
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
path: "categories.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
820
|
+
},
|
|
775
821
|
{ path: "aggregationData.results.ranges.results.from" },
|
|
776
822
|
{ path: "aggregationData.results.ranges.results.to" },
|
|
777
823
|
{
|
|
@@ -911,6 +957,12 @@ function bulkUpdateCategories(payload) {
|
|
|
911
957
|
},
|
|
912
958
|
{
|
|
913
959
|
path: "categories.category.richContentDescription.nodes.audioData.coverImage.duration"
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
path: "categories.category.richContentDescription.nodes.layoutData.backgroundImage.media.duration"
|
|
963
|
+
},
|
|
964
|
+
{
|
|
965
|
+
path: "categories.category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
914
966
|
}
|
|
915
967
|
]
|
|
916
968
|
}
|
|
@@ -991,6 +1043,12 @@ function bulkUpdateCategories(payload) {
|
|
|
991
1043
|
},
|
|
992
1044
|
{
|
|
993
1045
|
path: "results.category.richContentDescription.nodes.audioData.coverImage.duration"
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
path: "results.category.richContentDescription.nodes.layoutData.backgroundImage.media.duration"
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
path: "results.category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
994
1052
|
}
|
|
995
1053
|
]
|
|
996
1054
|
}
|
|
@@ -1078,6 +1136,12 @@ function updateCategoryVisibility(payload) {
|
|
|
1078
1136
|
},
|
|
1079
1137
|
{
|
|
1080
1138
|
path: "category.richContentDescription.nodes.audioData.coverImage.duration"
|
|
1139
|
+
},
|
|
1140
|
+
{
|
|
1141
|
+
path: "category.richContentDescription.nodes.layoutData.backgroundImage.media.duration"
|
|
1142
|
+
},
|
|
1143
|
+
{
|
|
1144
|
+
path: "category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
1081
1145
|
}
|
|
1082
1146
|
]
|
|
1083
1147
|
}
|
|
@@ -1165,6 +1229,12 @@ function bulkShowCategories(payload) {
|
|
|
1165
1229
|
},
|
|
1166
1230
|
{
|
|
1167
1231
|
path: "results.category.richContentDescription.nodes.audioData.coverImage.duration"
|
|
1232
|
+
},
|
|
1233
|
+
{
|
|
1234
|
+
path: "results.category.richContentDescription.nodes.layoutData.backgroundImage.media.duration"
|
|
1235
|
+
},
|
|
1236
|
+
{
|
|
1237
|
+
path: "results.category.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
1168
1238
|
}
|
|
1169
1239
|
]
|
|
1170
1240
|
}
|
|
@@ -1705,6 +1775,35 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
|
1705
1775
|
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
1706
1776
|
return NullValue2;
|
|
1707
1777
|
})(NullValue || {});
|
|
1778
|
+
var Scaling = /* @__PURE__ */ ((Scaling2) => {
|
|
1779
|
+
Scaling2["AUTO"] = "AUTO";
|
|
1780
|
+
Scaling2["CONTAIN"] = "CONTAIN";
|
|
1781
|
+
Scaling2["COVER"] = "COVER";
|
|
1782
|
+
return Scaling2;
|
|
1783
|
+
})(Scaling || {});
|
|
1784
|
+
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
1785
|
+
ImagePosition2["CENTER"] = "CENTER";
|
|
1786
|
+
ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
1787
|
+
ImagePosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
1788
|
+
ImagePosition2["TOP"] = "TOP";
|
|
1789
|
+
ImagePosition2["TOP_LEFT"] = "TOP_LEFT";
|
|
1790
|
+
ImagePosition2["TOP_RIGHT"] = "TOP_RIGHT";
|
|
1791
|
+
ImagePosition2["BOTTOM"] = "BOTTOM";
|
|
1792
|
+
ImagePosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
1793
|
+
ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
1794
|
+
return ImagePosition2;
|
|
1795
|
+
})(ImagePosition || {});
|
|
1796
|
+
var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
|
|
1797
|
+
VerticalAlignmentAlignment2["TOP"] = "TOP";
|
|
1798
|
+
VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
|
|
1799
|
+
VerticalAlignmentAlignment2["BOTTOM"] = "BOTTOM";
|
|
1800
|
+
return VerticalAlignmentAlignment2;
|
|
1801
|
+
})(VerticalAlignmentAlignment || {});
|
|
1802
|
+
var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
|
|
1803
|
+
ResponsivenessBehaviour2["STACK"] = "STACK";
|
|
1804
|
+
ResponsivenessBehaviour2["WRAP"] = "WRAP";
|
|
1805
|
+
return ResponsivenessBehaviour2;
|
|
1806
|
+
})(ResponsivenessBehaviour || {});
|
|
1708
1807
|
var SingleEntityOpsRequestedFields = /* @__PURE__ */ ((SingleEntityOpsRequestedFields2) => {
|
|
1709
1808
|
SingleEntityOpsRequestedFields2["UNKNOWN_REQUESTED_FIELD"] = "UNKNOWN_REQUESTED_FIELD";
|
|
1710
1809
|
SingleEntityOpsRequestedFields2["BREADCRUMBS_INFO"] = "BREADCRUMBS_INFO";
|
|
@@ -2888,6 +2987,12 @@ var onCategoryCreated = (0, import_sdk_types.EventDefinition)(
|
|
|
2888
2987
|
},
|
|
2889
2988
|
{
|
|
2890
2989
|
path: "entity.richContentDescription.nodes.audioData.coverImage.duration"
|
|
2990
|
+
},
|
|
2991
|
+
{
|
|
2992
|
+
path: "entity.richContentDescription.nodes.layoutData.backgroundImage.media.duration"
|
|
2993
|
+
},
|
|
2994
|
+
{
|
|
2995
|
+
path: "entity.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
2891
2996
|
}
|
|
2892
2997
|
]
|
|
2893
2998
|
}
|
|
@@ -2964,6 +3069,12 @@ var onCategoryDeleted = (0, import_sdk_types.EventDefinition)(
|
|
|
2964
3069
|
},
|
|
2965
3070
|
{
|
|
2966
3071
|
path: "undefined.richContentDescription.nodes.audioData.coverImage.duration"
|
|
3072
|
+
},
|
|
3073
|
+
{
|
|
3074
|
+
path: "undefined.richContentDescription.nodes.layoutData.backgroundImage.media.duration"
|
|
3075
|
+
},
|
|
3076
|
+
{
|
|
3077
|
+
path: "undefined.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
2967
3078
|
}
|
|
2968
3079
|
]
|
|
2969
3080
|
}
|
|
@@ -3072,6 +3183,12 @@ var onCategoryUpdated = (0, import_sdk_types.EventDefinition)(
|
|
|
3072
3183
|
},
|
|
3073
3184
|
{
|
|
3074
3185
|
path: "entity.richContentDescription.nodes.audioData.coverImage.duration"
|
|
3186
|
+
},
|
|
3187
|
+
{
|
|
3188
|
+
path: "entity.richContentDescription.nodes.layoutData.backgroundImage.media.duration"
|
|
3189
|
+
},
|
|
3190
|
+
{
|
|
3191
|
+
path: "entity.richContentDescription.nodes.layoutData.backdropImage.media.duration"
|
|
3075
3192
|
}
|
|
3076
3193
|
]
|
|
3077
3194
|
}
|
|
@@ -3131,6 +3248,7 @@ var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(
|
|
|
3131
3248
|
DividerDataAlignment,
|
|
3132
3249
|
FontType,
|
|
3133
3250
|
GIFType,
|
|
3251
|
+
ImagePosition,
|
|
3134
3252
|
ImageStylesPosition,
|
|
3135
3253
|
InitialExpandedItems,
|
|
3136
3254
|
Interval,
|
|
@@ -3152,7 +3270,9 @@ var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(
|
|
|
3152
3270
|
Position,
|
|
3153
3271
|
RequestedFields,
|
|
3154
3272
|
Resizing,
|
|
3273
|
+
ResponsivenessBehaviour,
|
|
3155
3274
|
ScalarType,
|
|
3275
|
+
Scaling,
|
|
3156
3276
|
SingleEntityOpsRequestedFields,
|
|
3157
3277
|
SortDirection,
|
|
3158
3278
|
SortOrder,
|
|
@@ -3164,6 +3284,7 @@ var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(
|
|
|
3164
3284
|
ThumbnailsAlignment,
|
|
3165
3285
|
Type,
|
|
3166
3286
|
VerticalAlignment,
|
|
3287
|
+
VerticalAlignmentAlignment,
|
|
3167
3288
|
ViewMode,
|
|
3168
3289
|
ViewRole,
|
|
3169
3290
|
VoteRole,
|