@wix/auto_sdk_categories_categories 1.0.80 → 1.0.81
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-B84D5zvv.d.ts → categories-v1-category-categories.universal-Dt7jEwLr.d.ts} +37 -3
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +38 -4
- package/build/cjs/meta.js +1 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{categories-v1-category-categories.universal-B84D5zvv.d.mts → categories-v1-category-categories.universal-Dt7jEwLr.d.mts} +37 -3
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +38 -4
- package/build/es/meta.mjs +1 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{categories-v1-category-categories.universal-BS3cv8H_.d.ts → categories-v1-category-categories.universal-omtKh0F4.d.ts} +37 -3
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +1 -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 +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +38 -4
- package/build/internal/cjs/meta.js +1 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{categories-v1-category-categories.universal-BS3cv8H_.d.mts → categories-v1-category-categories.universal-omtKh0F4.d.mts} +37 -3
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +1 -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 +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +38 -4
- package/build/internal/es/meta.mjs +1 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1307,6 +1307,8 @@ interface Decoration extends DecorationDataOneOf {
|
|
|
1307
1307
|
superscriptData?: boolean | null;
|
|
1308
1308
|
/** Data for a subscript decoration. Defaults to `true`. */
|
|
1309
1309
|
subscriptData?: boolean | null;
|
|
1310
|
+
/** Data for a font family decoration. */
|
|
1311
|
+
fontFamilyData?: FontFamilyData;
|
|
1310
1312
|
/** The type of decoration to apply. */
|
|
1311
1313
|
type?: DecorationTypeWithLiterals;
|
|
1312
1314
|
}
|
|
@@ -1336,6 +1338,8 @@ interface DecorationDataOneOf {
|
|
|
1336
1338
|
superscriptData?: boolean | null;
|
|
1337
1339
|
/** Data for a subscript decoration. Defaults to `true`. */
|
|
1338
1340
|
subscriptData?: boolean | null;
|
|
1341
|
+
/** Data for a font family decoration. */
|
|
1342
|
+
fontFamilyData?: FontFamilyData;
|
|
1339
1343
|
}
|
|
1340
1344
|
declare enum DecorationType {
|
|
1341
1345
|
BOLD = "BOLD",
|
|
@@ -1350,10 +1354,11 @@ declare enum DecorationType {
|
|
|
1350
1354
|
EXTERNAL = "EXTERNAL",
|
|
1351
1355
|
STRIKETHROUGH = "STRIKETHROUGH",
|
|
1352
1356
|
SUPERSCRIPT = "SUPERSCRIPT",
|
|
1353
|
-
SUBSCRIPT = "SUBSCRIPT"
|
|
1357
|
+
SUBSCRIPT = "SUBSCRIPT",
|
|
1358
|
+
FONT_FAMILY = "FONT_FAMILY"
|
|
1354
1359
|
}
|
|
1355
1360
|
/** @enumType */
|
|
1356
|
-
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT';
|
|
1361
|
+
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY';
|
|
1357
1362
|
interface AnchorData {
|
|
1358
1363
|
/** The target node's ID. */
|
|
1359
1364
|
anchor?: string;
|
|
@@ -1392,6 +1397,10 @@ interface SpoilerData {
|
|
|
1392
1397
|
/** Spoiler ID. */
|
|
1393
1398
|
id?: string | null;
|
|
1394
1399
|
}
|
|
1400
|
+
interface FontFamilyData {
|
|
1401
|
+
/** @maxLength 1000 */
|
|
1402
|
+
value?: string | null;
|
|
1403
|
+
}
|
|
1395
1404
|
interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
1396
1405
|
/** Data for embedded Wix Bookings content. */
|
|
1397
1406
|
bookingData?: BookingData;
|
|
@@ -1776,6 +1785,13 @@ interface TableData {
|
|
|
1776
1785
|
rowHeader?: boolean | null;
|
|
1777
1786
|
/** Sets whether the table's first column is a header. Defaults to `false`. */
|
|
1778
1787
|
columnHeader?: boolean | null;
|
|
1788
|
+
/** The spacing between cells in pixels. Defaults to `0`. */
|
|
1789
|
+
cellSpacing?: number | null;
|
|
1790
|
+
/**
|
|
1791
|
+
* Padding in pixels for cells. Follows CSS order: top, right, bottom, left.
|
|
1792
|
+
* @maxSize 4
|
|
1793
|
+
*/
|
|
1794
|
+
cellPadding?: number[];
|
|
1779
1795
|
}
|
|
1780
1796
|
interface Dimensions {
|
|
1781
1797
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -1790,6 +1806,12 @@ interface TableCellData {
|
|
|
1790
1806
|
cellStyle?: CellStyle;
|
|
1791
1807
|
/** The cell's border colors. */
|
|
1792
1808
|
borderColors?: BorderColors;
|
|
1809
|
+
/** Defines how many columns the cell spans. Default: 1. */
|
|
1810
|
+
colspan?: number | null;
|
|
1811
|
+
/** Defines how many rows the cell spans. Default: 1. */
|
|
1812
|
+
rowspan?: number | null;
|
|
1813
|
+
/** The cell's border widths. */
|
|
1814
|
+
borderWidths?: BorderWidths;
|
|
1793
1815
|
}
|
|
1794
1816
|
declare enum VerticalAlignment {
|
|
1795
1817
|
/** Top alignment */
|
|
@@ -1832,6 +1854,16 @@ interface BorderColors {
|
|
|
1832
1854
|
*/
|
|
1833
1855
|
bottom?: string | null;
|
|
1834
1856
|
}
|
|
1857
|
+
interface BorderWidths {
|
|
1858
|
+
/** Left border width in pixels. */
|
|
1859
|
+
left?: number | null;
|
|
1860
|
+
/** Right border width in pixels. */
|
|
1861
|
+
right?: number | null;
|
|
1862
|
+
/** Top border width in pixels. */
|
|
1863
|
+
top?: number | null;
|
|
1864
|
+
/** Bottom border width in pixels. */
|
|
1865
|
+
bottom?: number | null;
|
|
1866
|
+
}
|
|
1835
1867
|
/**
|
|
1836
1868
|
* `NullValue` is a singleton enumeration to represent the null value for the
|
|
1837
1869
|
* `Value` type union.
|
|
@@ -1931,6 +1963,8 @@ interface LayoutData {
|
|
|
1931
1963
|
responsivenessBehaviour?: ResponsivenessBehaviourWithLiterals;
|
|
1932
1964
|
/** Size in pixels when responsiveness_behaviour applies */
|
|
1933
1965
|
responsivenessBreakpoint?: number | null;
|
|
1966
|
+
/** Styling for the layout's container. */
|
|
1967
|
+
containerData?: PluginContainerData;
|
|
1934
1968
|
}
|
|
1935
1969
|
declare enum Scaling {
|
|
1936
1970
|
/** Auto image scaling */
|
|
@@ -5100,4 +5134,4 @@ interface BulkSetItemCategoriesOptions {
|
|
|
5100
5134
|
treeReference: TreeReference;
|
|
5101
5135
|
}
|
|
5102
5136
|
|
|
5103
|
-
export { type CategoryItemAddedToCategoryEnvelope as $, type BulkRemoveItemsFromCategoryApplicationErrors as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkRemoveItemFromCategoriesOptions as E, type BulkRemoveItemFromCategoriesResponse as F, type GetCategoryOptions as G, type BulkRemoveItemFromCategoriesApplicationErrors as H, type ItemReference as I, type ListItemsInCategoryResponse as J, type ListCategoriesForItemOptions as K, type ListItemsInCategoryOptions as L, type MoveCategoryOptions as M, type ListCategoriesForItemResponse as N, type ListCategoriesForItemsOptions as O, type ListCategoriesForItemsResponse as P, type ListTreesResponse as Q, type SetArrangedItemsOptions as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type SetArrangedItemsResponse as V, type SetArrangedItemsApplicationErrors as W, type GetArrangedItemsResponse as X, type CategoryMovedEnvelope as Y, type CategoryCreatedEnvelope as Z, type CategoryDeletedEnvelope as _, type CreateCategoryOptions as a, type Breadcrumb as a$, type CategoryItemRemovedFromCategoryEnvelope as a0, type CategoryItemsArrangedInCategoryEnvelope as a1, type CategoryUpdatedEnvelope as a2, type CursorQuery as a3, type QueryCategoriesOptions as a4, typedQueryCategories as a5, type CategoriesQueryBuilder as a6, NodeType as a7, WidthType as a8, PluginContainerDataAlignment as a9, Type as aA, Alignment as aB, Layout as aC, AppType as aD, InitialExpandedItems as aE, Direction as aF, VerticalAlignment as aG, NullValue as aH, Scaling as aI, ImagePosition as aJ, VerticalAlignmentAlignment as aK, ResponsivenessBehaviour as aL, SingleEntityOpsRequestedFields as aM, SortOrder as aN, RequestedFields as aO, SortType as aP, SortDirection as aQ, MissingValues as aR, ScalarType as aS, NestedAggregationType as aT, Interval as aU, AggregationType as aV, Mode as aW, Position as aX, MoveItemInCategoryRequestPosition as aY, WebhookIdentityType as aZ, type BreadcrumbsInfo as a_, ButtonDataType as aa, Target as ab, TextAlignment as ac, LineStyle as ad, Width as ae, DividerDataAlignment as af, ViewMode as ag, LayoutType as ah, Orientation as ai, Crop as aj, ThumbnailsAlignment as ak, GIFType as al, Source as am, StylesPosition as an, MapType as ao, ViewRole as ap, VoteRole as aq, PollLayoutType as ar, PollLayoutDirection as as, BackgroundType as at, DecorationType as au, FontType as av, ImageStylesPosition as aw, AspectRatio as ax, Resizing as ay, Placement as az, type CreateCategoryApplicationErrors as b, type PollDataLayout as b$, type ParentCategory as b0, type SeoSchema as b1, type Keyword as b2, type Tag as b3, type Settings as b4, type RichContent as b5, type Node as b6, type NodeDataOneOf as b7, type NodeStyle as b8, type ButtonData as b9, type ItemStyle as bA, type Thumbnails as bB, type GIFData as bC, type GIF as bD, type HeadingData as bE, type HTMLData as bF, type HTMLDataDataOneOf as bG, type ImageData as bH, type StylesBorder as bI, type ImageDataStyles as bJ, type LinkPreviewData as bK, type LinkPreviewDataStyles as bL, type MapData as bM, type MapSettings as bN, type ParagraphData as bO, type PollData as bP, type Permissions as bQ, type Option as bR, type PollSettings as bS, type PollLayout as bT, type OptionLayout as bU, type Gradient as bV, type Background as bW, type BackgroundBackgroundOneOf as bX, type PollDesign as bY, type OptionDesign as bZ, type Poll as b_, type Border as ba, type Colors as bb, type PluginContainerData as bc, type PluginContainerDataWidth as bd, type PluginContainerDataWidthDataOneOf as be, type Spoiler as bf, type Height as bg, type Styles as bh, type Link as bi, type LinkDataOneOf as bj, type Rel as bk, type CodeBlockData as bl, type TextStyle as bm, type DividerData as bn, type FileData as bo, type FileSource as bp, type FileSourceDataOneOf as bq, type PDFSettings as br, type GalleryData as bs, type Media as bt, type Image as bu, type Video as bv, type Item as bw, type ItemDataOneOf as bx, type GalleryOptions as by, type GalleryOptionsLayout as bz, type UpdateCategoryOptions as c, type QueryCategoriesRequest as c$, type Design as c0, type TextData as c1, type Decoration as c2, type DecorationDataOneOf as c3, type AnchorData as c4, type ColorData as c5, type LinkData as c6, type MentionData as c7, type FontSizeData as c8, type SpoilerData as c9, type BackgroundImage as cA, type LayoutCellData as cB, type Metadata as cC, type DocumentStyle as cD, type TextNodeStyle as cE, type ExtendedFields as cF, type InvalidateCache as cG, type InvalidateCacheGetByOneOf as cH, type App as cI, type Page as cJ, type URI as cK, type File as cL, type CustomTag as cM, type CategoryMoved as cN, type ItemAddedToCategory as cO, type ItemsAddedToCategory as cP, type ItemRemovedFromCategory as cQ, type ItemsRemovedFromCategory as cR, type ItemsArrangedInCategory as cS, type CreateCategoryRequest as cT, type CreateCategoryResponse as cU, type GetCategoryRequest as cV, type GetCategoryResponse as cW, type UpdateCategoryRequest as cX, type UpdateCategoryResponse as cY, type DeleteCategoryRequest as cZ, type DeleteCategoryResponse as c_, type AppEmbedData as ca, type AppEmbedDataAppDataOneOf as cb, type BookingData as cc, type EventData as cd, type ButtonStyles as ce, type ImageStyles as cf, type RibbonStyles as cg, type CardStyles as ch, type PricingData as ci, type VideoData as cj, type PlaybackOptions as ck, type EmbedData as cl, type Oembed as cm, type CollapsibleListData as cn, type TableData as co, type Dimensions as cp, type TableCellData as cq, type CellStyle as cr, type BorderColors as cs, type ListValue as ct, type AudioData as cu, type OrderedListData as cv, type BulletedListData as cw, type BlockquoteData as cx, type CaptionData as cy, type LayoutData as cz, type UpdateCategoryApplicationErrors as d, type BulkDeleteCategoriesResponse as d$, type CursorQueryPagingMethodOneOf as d0, type Sorting as d1, type CursorPaging as d2, type QueryCategoriesResponse as d3, type CursorPagingMetadata as d4, type Cursors as d5, type ListCompactCategoriesByIdsRequest as d6, type ListCompactCategoriesByIdsResponse as d7, type CompactCategory as d8, type SearchCategoriesRequest as d9, type RangeResult as dA, type ScalarResult as dB, type NestedResultValue as dC, type NestedResultValueResultOneOf as dD, type Results as dE, type DateHistogramResult as dF, type GroupByValueResults as dG, type DateHistogramResults as dH, type NestedResults as dI, type AggregationResults as dJ, type AggregationResultsResultOneOf as dK, type DeprecatedSearchCategoriesWithOffsetRequest as dL, type OffsetSearch as dM, type OffsetSearchPagingMethodOneOf as dN, type Paging as dO, type DeprecatedSearchCategoriesWithOffsetResponse as dP, type PagingMetadata as dQ, type CountCategoriesRequest as dR, type MoveCategoryRequest as dS, type BulkUpdateCategoriesRequest as dT, type BulkCategoriesResult as dU, type ItemMetadata as dV, type ApplicationError as dW, type BulkActionMetadata as dX, type UpdateCategoryVisibilityRequest as dY, type BulkShowCategoriesRequest as dZ, type BulkDeleteCategoriesRequest as d_, type CursorSearch as da, type CursorSearchPagingMethodOneOf as db, type Aggregation as dc, type AggregationKindOneOf as dd, type RangeBucket as de, type IncludeMissingValuesOptions as df, type ValueAggregation as dg, type ValueAggregationOptionsOneOf as dh, type RangeAggregation as di, type ScalarAggregation as dj, type DateHistogramAggregation as dk, type NestedAggregationItem as dl, type NestedAggregationItemKindOneOf as dm, type NestedAggregation as dn, type SearchDetails as dp, type AggregationData as dq, type ValueAggregationResult as dr, type RangeAggregationResult as ds, type NestedAggregationResults as dt, type NestedAggregationResultsResultOneOf as du, type ValueResults as dv, type RangeResults as dw, type AggregationResultsScalarResult as dx, type NestedValueAggregationResult as dy, type ValueResult as dz, type CategorySearch as e, type BackgroundTypeWithLiterals as e$, type BulkDeleteCategoriesResponseBulkCategoriesResult as e0, type BulkAddItemsToCategoryRequest as e1, type BulkItemsToCategoryResult as e2, type ItemReferenceMetadata as e3, type BulkAddItemToCategoriesRequest as e4, type BulkItemToCategoriesResult as e5, type BulkRemoveItemsFromCategoryRequest as e6, type BulkRemoveItemFromCategoriesRequest as e7, type ListItemsInCategoryRequest as e8, type ListItemsInCategoryRequestPagingMethodOneOf as e9, type EventMetadata as eA, type CategoriesQueryResult as eB, type CategorySearchSpec as eC, type ListItemsInCategoryOptionsPagingMethodOneOf as eD, type BulkSetItemCategoriesOptions as eE, type NodeTypeWithLiterals as eF, type WidthTypeWithLiterals as eG, type PluginContainerDataAlignmentWithLiterals as eH, type ButtonDataTypeWithLiterals as eI, type TargetWithLiterals as eJ, type TextAlignmentWithLiterals as eK, type LineStyleWithLiterals as eL, type WidthWithLiterals as eM, type DividerDataAlignmentWithLiterals as eN, type ViewModeWithLiterals as eO, type LayoutTypeWithLiterals as eP, type OrientationWithLiterals as eQ, type CropWithLiterals as eR, type ThumbnailsAlignmentWithLiterals as eS, type GIFTypeWithLiterals as eT, type SourceWithLiterals as eU, type StylesPositionWithLiterals as eV, type MapTypeWithLiterals as eW, type ViewRoleWithLiterals as eX, type VoteRoleWithLiterals as eY, type PollLayoutTypeWithLiterals as eZ, type PollLayoutDirectionWithLiterals as e_, type PagingMetadataV2 as ea, type ListCategoriesForItemRequest as eb, type ListCategoriesForItemsRequest as ec, type MapItemToCategories as ed, type ListTreesRequest as ee, type MoveItemInCategoryRequest as ef, type MoveItemInCategoryResponse as eg, type SetArrangedItemsRequest as eh, type GetArrangedItemsRequest as ei, type BulkSetItemCategoriesRequest as ej, type BulkSetItemCategoriesResponse as ek, type GetCategoriesTreeRequest as el, type GetCategoriesTreeResponse as em, type CategoryTreeNode as en, type DomainEvent as eo, type DomainEventBodyOneOf as ep, type EntityCreatedEvent as eq, type RestoreInfo as er, type EntityUpdatedEvent as es, type EntityDeletedEvent as et, type ActionEvent as eu, type Empty as ev, type MessageEnvelope as ew, type IdentificationData as ex, type IdentificationDataIdOneOf as ey, type BaseEventMetadata as ez, type SearchCategoriesResponse as f, type DecorationTypeWithLiterals as f0, type FontTypeWithLiterals as f1, type ImageStylesPositionWithLiterals as f2, type AspectRatioWithLiterals as f3, type ResizingWithLiterals as f4, type PlacementWithLiterals as f5, type TypeWithLiterals as f6, type AlignmentWithLiterals as f7, type LayoutWithLiterals as f8, type AppTypeWithLiterals as f9, onCategoryDeleted as fA, onCategoryItemAddedToCategory as fB, onCategoryItemRemovedFromCategory as fC, onCategoryItemsArrangedInCategory as fD, onCategoryUpdated as fE, createCategory as fF, getCategory as fG, updateCategory as fH, deleteCategory as fI, queryCategories as fJ, countCategories as fK, moveCategory as fL, bulkUpdateCategories as fM, updateCategoryVisibility as fN, bulkShowCategories as fO, bulkAddItemsToCategory as fP, bulkAddItemToCategories as fQ, bulkRemoveItemsFromCategory as fR, bulkRemoveItemFromCategories as fS, listItemsInCategory as fT, listCategoriesForItem as fU, listCategoriesForItems as fV, listTrees as fW, setArrangedItems as fX, getArrangedItems as fY, type InitialExpandedItemsWithLiterals as fa, type DirectionWithLiterals as fb, type VerticalAlignmentWithLiterals as fc, type NullValueWithLiterals as fd, type ScalingWithLiterals as fe, type ImagePositionWithLiterals as ff, type VerticalAlignmentAlignmentWithLiterals as fg, type ResponsivenessBehaviourWithLiterals as fh, type SingleEntityOpsRequestedFieldsWithLiterals as fi, type SortOrderWithLiterals as fj, type RequestedFieldsWithLiterals as fk, type SortTypeWithLiterals as fl, type SortDirectionWithLiterals as fm, type MissingValuesWithLiterals as fn, type ScalarTypeWithLiterals as fo, type NestedAggregationTypeWithLiterals as fp, type IntervalWithLiterals as fq, type AggregationTypeWithLiterals as fr, type ModeWithLiterals as fs, type PositionWithLiterals as ft, type MoveItemInCategoryRequestPositionWithLiterals as fu, type WebhookIdentityTypeWithLiterals as fv, type BulkSetItemCategoriesApplicationErrors as fw, type CommonSearchWithEntityContext as fx, onCategoryMoved as fy, onCategoryCreated as fz, type CountCategoriesOptions as g, type CountCategoriesResponse as h, type MoveCategoryResponse as i, type MoveCategoryApplicationErrors as j, type MaskedCategory as k, type BulkUpdateCategoriesResponse as l, type BulkUpdateCategoriesApplicationErrors as m, type UpdateCategoryVisibilityOptions as n, type UpdateCategoryVisibilityResponse as o, type UpdateCategoryVisibilityApplicationErrors as p, type BulkShowCategoriesOptions as q, type BulkShowCategoriesResponse as r, type BulkAddItemsToCategoryOptions as s, type BulkAddItemsToCategoryResponse as t, type BulkAddItemsToCategoryApplicationErrors as u, type BulkAddItemToCategoriesOptions as v, type BulkAddItemToCategoriesResponse as w, type BulkAddItemToCategoriesApplicationErrors as x, type BulkRemoveItemsFromCategoryOptions as y, type BulkRemoveItemsFromCategoryResponse as z };
|
|
5137
|
+
export { type CategoryItemAddedToCategoryEnvelope as $, type BulkRemoveItemsFromCategoryApplicationErrors as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkRemoveItemFromCategoriesOptions as E, type BulkRemoveItemFromCategoriesResponse as F, type GetCategoryOptions as G, type BulkRemoveItemFromCategoriesApplicationErrors as H, type ItemReference as I, type ListItemsInCategoryResponse as J, type ListCategoriesForItemOptions as K, type ListItemsInCategoryOptions as L, type MoveCategoryOptions as M, type ListCategoriesForItemResponse as N, type ListCategoriesForItemsOptions as O, type ListCategoriesForItemsResponse as P, type ListTreesResponse as Q, type SetArrangedItemsOptions as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type SetArrangedItemsResponse as V, type SetArrangedItemsApplicationErrors as W, type GetArrangedItemsResponse as X, type CategoryMovedEnvelope as Y, type CategoryCreatedEnvelope as Z, type CategoryDeletedEnvelope as _, type CreateCategoryOptions as a, type Breadcrumb as a$, type CategoryItemRemovedFromCategoryEnvelope as a0, type CategoryItemsArrangedInCategoryEnvelope as a1, type CategoryUpdatedEnvelope as a2, type CursorQuery as a3, type QueryCategoriesOptions as a4, typedQueryCategories as a5, type CategoriesQueryBuilder as a6, NodeType as a7, WidthType as a8, PluginContainerDataAlignment as a9, Type as aA, Alignment as aB, Layout as aC, AppType as aD, InitialExpandedItems as aE, Direction as aF, VerticalAlignment as aG, NullValue as aH, Scaling as aI, ImagePosition as aJ, VerticalAlignmentAlignment as aK, ResponsivenessBehaviour as aL, SingleEntityOpsRequestedFields as aM, SortOrder as aN, RequestedFields as aO, SortType as aP, SortDirection as aQ, MissingValues as aR, ScalarType as aS, NestedAggregationType as aT, Interval as aU, AggregationType as aV, Mode as aW, Position as aX, MoveItemInCategoryRequestPosition as aY, WebhookIdentityType as aZ, type BreadcrumbsInfo as a_, ButtonDataType as aa, Target as ab, TextAlignment as ac, LineStyle as ad, Width as ae, DividerDataAlignment as af, ViewMode as ag, LayoutType as ah, Orientation as ai, Crop as aj, ThumbnailsAlignment as ak, GIFType as al, Source as am, StylesPosition as an, MapType as ao, ViewRole as ap, VoteRole as aq, PollLayoutType as ar, PollLayoutDirection as as, BackgroundType as at, DecorationType as au, FontType as av, ImageStylesPosition as aw, AspectRatio as ax, Resizing as ay, Placement as az, type CreateCategoryApplicationErrors as b, type PollDataLayout as b$, type ParentCategory as b0, type SeoSchema as b1, type Keyword as b2, type Tag as b3, type Settings as b4, type RichContent as b5, type Node as b6, type NodeDataOneOf as b7, type NodeStyle as b8, type ButtonData as b9, type ItemStyle as bA, type Thumbnails as bB, type GIFData as bC, type GIF as bD, type HeadingData as bE, type HTMLData as bF, type HTMLDataDataOneOf as bG, type ImageData as bH, type StylesBorder as bI, type ImageDataStyles as bJ, type LinkPreviewData as bK, type LinkPreviewDataStyles as bL, type MapData as bM, type MapSettings as bN, type ParagraphData as bO, type PollData as bP, type Permissions as bQ, type Option as bR, type PollSettings as bS, type PollLayout as bT, type OptionLayout as bU, type Gradient as bV, type Background as bW, type BackgroundBackgroundOneOf as bX, type PollDesign as bY, type OptionDesign as bZ, type Poll as b_, type Border as ba, type Colors as bb, type PluginContainerData as bc, type PluginContainerDataWidth as bd, type PluginContainerDataWidthDataOneOf as be, type Spoiler as bf, type Height as bg, type Styles as bh, type Link as bi, type LinkDataOneOf as bj, type Rel as bk, type CodeBlockData as bl, type TextStyle as bm, type DividerData as bn, type FileData as bo, type FileSource as bp, type FileSourceDataOneOf as bq, type PDFSettings as br, type GalleryData as bs, type Media as bt, type Image as bu, type Video as bv, type Item as bw, type ItemDataOneOf as bx, type GalleryOptions as by, type GalleryOptionsLayout as bz, type UpdateCategoryOptions as c, type DeleteCategoryRequest as c$, type Design as c0, type TextData as c1, type Decoration as c2, type DecorationDataOneOf as c3, type AnchorData as c4, type ColorData as c5, type LinkData as c6, type MentionData as c7, type FontSizeData as c8, type SpoilerData as c9, type CaptionData as cA, type LayoutData as cB, type BackgroundImage as cC, type LayoutCellData as cD, type Metadata as cE, type DocumentStyle as cF, type TextNodeStyle as cG, type ExtendedFields as cH, type InvalidateCache as cI, type InvalidateCacheGetByOneOf as cJ, type App as cK, type Page as cL, type URI as cM, type File as cN, type CustomTag as cO, type CategoryMoved as cP, type ItemAddedToCategory as cQ, type ItemsAddedToCategory as cR, type ItemRemovedFromCategory as cS, type ItemsRemovedFromCategory as cT, type ItemsArrangedInCategory as cU, type CreateCategoryRequest as cV, type CreateCategoryResponse as cW, type GetCategoryRequest as cX, type GetCategoryResponse as cY, type UpdateCategoryRequest as cZ, type UpdateCategoryResponse as c_, type FontFamilyData as ca, type AppEmbedData as cb, type AppEmbedDataAppDataOneOf as cc, type BookingData as cd, type EventData as ce, type ButtonStyles as cf, type ImageStyles as cg, type RibbonStyles as ch, type CardStyles as ci, type PricingData as cj, type VideoData as ck, type PlaybackOptions as cl, type EmbedData as cm, type Oembed as cn, type CollapsibleListData as co, type TableData as cp, type Dimensions as cq, type TableCellData as cr, type CellStyle as cs, type BorderColors as ct, type BorderWidths as cu, type ListValue as cv, type AudioData as cw, type OrderedListData as cx, type BulletedListData as cy, type BlockquoteData as cz, type UpdateCategoryApplicationErrors as d, type BulkShowCategoriesRequest as d$, type DeleteCategoryResponse as d0, type QueryCategoriesRequest as d1, type CursorQueryPagingMethodOneOf as d2, type Sorting as d3, type CursorPaging as d4, type QueryCategoriesResponse as d5, type CursorPagingMetadata as d6, type Cursors as d7, type ListCompactCategoriesByIdsRequest as d8, type ListCompactCategoriesByIdsResponse as d9, type NestedValueAggregationResult as dA, type ValueResult as dB, type RangeResult as dC, type ScalarResult as dD, type NestedResultValue as dE, type NestedResultValueResultOneOf as dF, type Results as dG, type DateHistogramResult as dH, type GroupByValueResults as dI, type DateHistogramResults as dJ, type NestedResults as dK, type AggregationResults as dL, type AggregationResultsResultOneOf as dM, type DeprecatedSearchCategoriesWithOffsetRequest as dN, type OffsetSearch as dO, type OffsetSearchPagingMethodOneOf as dP, type Paging as dQ, type DeprecatedSearchCategoriesWithOffsetResponse as dR, type PagingMetadata as dS, type CountCategoriesRequest as dT, type MoveCategoryRequest as dU, type BulkUpdateCategoriesRequest as dV, type BulkCategoriesResult as dW, type ItemMetadata as dX, type ApplicationError as dY, type BulkActionMetadata as dZ, type UpdateCategoryVisibilityRequest as d_, type CompactCategory as da, type SearchCategoriesRequest as db, type CursorSearch as dc, type CursorSearchPagingMethodOneOf as dd, type Aggregation as de, type AggregationKindOneOf as df, type RangeBucket as dg, type IncludeMissingValuesOptions as dh, type ValueAggregation as di, type ValueAggregationOptionsOneOf as dj, type RangeAggregation as dk, type ScalarAggregation as dl, type DateHistogramAggregation as dm, type NestedAggregationItem as dn, type NestedAggregationItemKindOneOf as dp, type NestedAggregation as dq, type SearchDetails as dr, type AggregationData as ds, type ValueAggregationResult as dt, type RangeAggregationResult as du, type NestedAggregationResults as dv, type NestedAggregationResultsResultOneOf as dw, type ValueResults as dx, type RangeResults as dy, type AggregationResultsScalarResult as dz, type CategorySearch as e, type PollLayoutTypeWithLiterals as e$, type BulkDeleteCategoriesRequest as e0, type BulkDeleteCategoriesResponse as e1, type BulkDeleteCategoriesResponseBulkCategoriesResult as e2, type BulkAddItemsToCategoryRequest as e3, type BulkItemsToCategoryResult as e4, type ItemReferenceMetadata as e5, type BulkAddItemToCategoriesRequest as e6, type BulkItemToCategoriesResult as e7, type BulkRemoveItemsFromCategoryRequest as e8, type BulkRemoveItemFromCategoriesRequest as e9, type IdentificationDataIdOneOf as eA, type BaseEventMetadata as eB, type EventMetadata as eC, type CategoriesQueryResult as eD, type CategorySearchSpec as eE, type ListItemsInCategoryOptionsPagingMethodOneOf as eF, type BulkSetItemCategoriesOptions as eG, type NodeTypeWithLiterals as eH, type WidthTypeWithLiterals as eI, type PluginContainerDataAlignmentWithLiterals as eJ, type ButtonDataTypeWithLiterals as eK, type TargetWithLiterals as eL, type TextAlignmentWithLiterals as eM, type LineStyleWithLiterals as eN, type WidthWithLiterals as eO, type DividerDataAlignmentWithLiterals as eP, type ViewModeWithLiterals as eQ, type LayoutTypeWithLiterals as eR, type OrientationWithLiterals as eS, type CropWithLiterals as eT, type ThumbnailsAlignmentWithLiterals as eU, type GIFTypeWithLiterals as eV, type SourceWithLiterals as eW, type StylesPositionWithLiterals as eX, type MapTypeWithLiterals as eY, type ViewRoleWithLiterals as eZ, type VoteRoleWithLiterals as e_, type ListItemsInCategoryRequest as ea, type ListItemsInCategoryRequestPagingMethodOneOf as eb, type PagingMetadataV2 as ec, type ListCategoriesForItemRequest as ed, type ListCategoriesForItemsRequest as ee, type MapItemToCategories as ef, type ListTreesRequest as eg, type MoveItemInCategoryRequest as eh, type MoveItemInCategoryResponse as ei, type SetArrangedItemsRequest as ej, type GetArrangedItemsRequest as ek, type BulkSetItemCategoriesRequest as el, type BulkSetItemCategoriesResponse as em, type GetCategoriesTreeRequest as en, type GetCategoriesTreeResponse as eo, type CategoryTreeNode as ep, type DomainEvent as eq, type DomainEventBodyOneOf as er, type EntityCreatedEvent as es, type RestoreInfo as et, type EntityUpdatedEvent as eu, type EntityDeletedEvent as ev, type ActionEvent as ew, type Empty as ex, type MessageEnvelope as ey, type IdentificationData as ez, type SearchCategoriesResponse as f, type PollLayoutDirectionWithLiterals as f0, type BackgroundTypeWithLiterals as f1, type DecorationTypeWithLiterals as f2, type FontTypeWithLiterals as f3, type ImageStylesPositionWithLiterals as f4, type AspectRatioWithLiterals as f5, type ResizingWithLiterals as f6, type PlacementWithLiterals as f7, type TypeWithLiterals as f8, type AlignmentWithLiterals as f9, onCategoryMoved as fA, onCategoryCreated as fB, onCategoryDeleted as fC, onCategoryItemAddedToCategory as fD, onCategoryItemRemovedFromCategory as fE, onCategoryItemsArrangedInCategory as fF, onCategoryUpdated as fG, createCategory as fH, getCategory as fI, updateCategory as fJ, deleteCategory as fK, queryCategories as fL, countCategories as fM, moveCategory as fN, bulkUpdateCategories as fO, updateCategoryVisibility as fP, bulkShowCategories as fQ, bulkAddItemsToCategory as fR, bulkAddItemToCategories as fS, bulkRemoveItemsFromCategory as fT, bulkRemoveItemFromCategories as fU, listItemsInCategory as fV, listCategoriesForItem as fW, listCategoriesForItems as fX, listTrees as fY, setArrangedItems as fZ, getArrangedItems as f_, type LayoutWithLiterals as fa, type AppTypeWithLiterals as fb, type InitialExpandedItemsWithLiterals as fc, type DirectionWithLiterals as fd, type VerticalAlignmentWithLiterals as fe, type NullValueWithLiterals as ff, type ScalingWithLiterals as fg, type ImagePositionWithLiterals as fh, type VerticalAlignmentAlignmentWithLiterals as fi, type ResponsivenessBehaviourWithLiterals as fj, type SingleEntityOpsRequestedFieldsWithLiterals as fk, type SortOrderWithLiterals as fl, type RequestedFieldsWithLiterals as fm, type SortTypeWithLiterals as fn, type SortDirectionWithLiterals as fo, type MissingValuesWithLiterals as fp, type ScalarTypeWithLiterals as fq, type NestedAggregationTypeWithLiterals as fr, type IntervalWithLiterals as fs, type AggregationTypeWithLiterals as ft, type ModeWithLiterals as fu, type PositionWithLiterals as fv, type MoveItemInCategoryRequestPositionWithLiterals as fw, type WebhookIdentityTypeWithLiterals as fx, type BulkSetItemCategoriesApplicationErrors as fy, type CommonSearchWithEntityContext as fz, type CountCategoriesOptions as g, type CountCategoriesResponse as h, type MoveCategoryResponse as i, type MoveCategoryApplicationErrors as j, type MaskedCategory as k, type BulkUpdateCategoriesResponse as l, type BulkUpdateCategoriesApplicationErrors as m, type UpdateCategoryVisibilityOptions as n, type UpdateCategoryVisibilityResponse as o, type UpdateCategoryVisibilityApplicationErrors as p, type BulkShowCategoriesOptions as q, type BulkShowCategoriesResponse as r, type BulkAddItemsToCategoryOptions as s, type BulkAddItemsToCategoryResponse as t, type BulkAddItemsToCategoryApplicationErrors as u, type BulkAddItemToCategoriesOptions as v, type BulkAddItemToCategoriesResponse as w, type BulkAddItemToCategoriesApplicationErrors as x, type BulkRemoveItemsFromCategoryOptions as y, type BulkRemoveItemsFromCategoryResponse 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, e as CategorySearch, S as SearchCategoriesOptions, f as SearchCategoriesResponse, g as CountCategoriesOptions, h as CountCategoriesResponse, M as MoveCategoryOptions, i as MoveCategoryResponse, j as MoveCategoryApplicationErrors, k as MaskedCategory, B as BulkUpdateCategoriesOptions, l as BulkUpdateCategoriesResponse, m as BulkUpdateCategoriesApplicationErrors, n as UpdateCategoryVisibilityOptions, o as UpdateCategoryVisibilityResponse, p as UpdateCategoryVisibilityApplicationErrors, q as BulkShowCategoriesOptions, r as BulkShowCategoriesResponse, I as ItemReference, s as BulkAddItemsToCategoryOptions, t as BulkAddItemsToCategoryResponse, u as BulkAddItemsToCategoryApplicationErrors, v as BulkAddItemToCategoriesOptions, w as BulkAddItemToCategoriesResponse, x as BulkAddItemToCategoriesApplicationErrors, y as BulkRemoveItemsFromCategoryOptions, z as BulkRemoveItemsFromCategoryResponse, A as BulkRemoveItemsFromCategoryApplicationErrors, E as BulkRemoveItemFromCategoriesOptions, F as BulkRemoveItemFromCategoriesResponse, H as BulkRemoveItemFromCategoriesApplicationErrors, L as ListItemsInCategoryOptions, J as ListItemsInCategoryResponse, K as ListCategoriesForItemOptions, N as ListCategoriesForItemResponse, O as ListCategoriesForItemsOptions, P as ListCategoriesForItemsResponse, Q as ListTreesResponse, R as SetArrangedItemsOptions, V as SetArrangedItemsResponse, W as SetArrangedItemsApplicationErrors, X as GetArrangedItemsResponse, Y as CategoryMovedEnvelope, Z as CategoryCreatedEnvelope, _ as CategoryDeletedEnvelope, $ as CategoryItemAddedToCategoryEnvelope, a0 as CategoryItemRemovedFromCategoryEnvelope, a1 as CategoryItemsArrangedInCategoryEnvelope, a2 as CategoryUpdatedEnvelope, a3 as CursorQuery, a4 as QueryCategoriesOptions, a5 as typedQueryCategories, a6 as CategoriesQueryBuilder } 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, e as CategorySearch, S as SearchCategoriesOptions, f as SearchCategoriesResponse, g as CountCategoriesOptions, h as CountCategoriesResponse, M as MoveCategoryOptions, i as MoveCategoryResponse, j as MoveCategoryApplicationErrors, k as MaskedCategory, B as BulkUpdateCategoriesOptions, l as BulkUpdateCategoriesResponse, m as BulkUpdateCategoriesApplicationErrors, n as UpdateCategoryVisibilityOptions, o as UpdateCategoryVisibilityResponse, p as UpdateCategoryVisibilityApplicationErrors, q as BulkShowCategoriesOptions, r as BulkShowCategoriesResponse, I as ItemReference, s as BulkAddItemsToCategoryOptions, t as BulkAddItemsToCategoryResponse, u as BulkAddItemsToCategoryApplicationErrors, v as BulkAddItemToCategoriesOptions, w as BulkAddItemToCategoriesResponse, x as BulkAddItemToCategoriesApplicationErrors, y as BulkRemoveItemsFromCategoryOptions, z as BulkRemoveItemsFromCategoryResponse, A as BulkRemoveItemsFromCategoryApplicationErrors, E as BulkRemoveItemFromCategoriesOptions, F as BulkRemoveItemFromCategoriesResponse, H as BulkRemoveItemFromCategoriesApplicationErrors, L as ListItemsInCategoryOptions, J as ListItemsInCategoryResponse, K as ListCategoriesForItemOptions, N as ListCategoriesForItemResponse, O as ListCategoriesForItemsOptions, P as ListCategoriesForItemsResponse, Q as ListTreesResponse, R as SetArrangedItemsOptions, V as SetArrangedItemsResponse, W as SetArrangedItemsApplicationErrors, X as GetArrangedItemsResponse, Y as CategoryMovedEnvelope, Z as CategoryCreatedEnvelope, _ as CategoryDeletedEnvelope, $ as CategoryItemAddedToCategoryEnvelope, a0 as CategoryItemRemovedFromCategoryEnvelope, a1 as CategoryItemsArrangedInCategoryEnvelope, a2 as CategoryUpdatedEnvelope, a3 as CursorQuery, a4 as QueryCategoriesOptions, a5 as typedQueryCategories, a6 as CategoriesQueryBuilder } from './categories-v1-category-categories.universal-Dt7jEwLr.js';
|
|
3
|
+
export { ew as ActionEvent, de as Aggregation, ds as AggregationData, df as AggregationKindOneOf, dL as AggregationResults, dM as AggregationResultsResultOneOf, dz as AggregationResultsScalarResult, aV as AggregationType, ft as AggregationTypeWithLiterals, aB as Alignment, f9 as AlignmentWithLiterals, c4 as AnchorData, cK as App, cb as AppEmbedData, cc as AppEmbedDataAppDataOneOf, aD as AppType, fb as AppTypeWithLiterals, dY as ApplicationError, ax as AspectRatio, f5 as AspectRatioWithLiterals, cw as AudioData, bW as Background, bX as BackgroundBackgroundOneOf, cC as BackgroundImage, at as BackgroundType, f1 as BackgroundTypeWithLiterals, eB as BaseEventMetadata, cz as BlockquoteData, cd as BookingData, ba as Border, ct as BorderColors, cu as BorderWidths, a$ as Breadcrumb, a_ as BreadcrumbsInfo, dZ as BulkActionMetadata, e6 as BulkAddItemToCategoriesRequest, e3 as BulkAddItemsToCategoryRequest, dW as BulkCategoriesResult, e0 as BulkDeleteCategoriesRequest, e1 as BulkDeleteCategoriesResponse, e2 as BulkDeleteCategoriesResponseBulkCategoriesResult, e7 as BulkItemToCategoriesResult, e4 as BulkItemsToCategoryResult, e9 as BulkRemoveItemFromCategoriesRequest, e8 as BulkRemoveItemsFromCategoryRequest, fy as BulkSetItemCategoriesApplicationErrors, eG as BulkSetItemCategoriesOptions, el as BulkSetItemCategoriesRequest, em as BulkSetItemCategoriesResponse, d$ as BulkShowCategoriesRequest, dV as BulkUpdateCategoriesRequest, cy as BulletedListData, b9 as ButtonData, aa as ButtonDataType, eK as ButtonDataTypeWithLiterals, cf as ButtonStyles, cA as CaptionData, ci as CardStyles, eD as CategoriesQueryResult, cP as CategoryMoved, eE as CategorySearchSpec, ep as CategoryTreeNode, cs as CellStyle, bl as CodeBlockData, co as CollapsibleListData, c5 as ColorData, bb as Colors, fz as CommonSearchWithEntityContext, da as CompactCategory, dT as CountCategoriesRequest, cV as CreateCategoryRequest, cW as CreateCategoryResponse, aj as Crop, eT as CropWithLiterals, d4 as CursorPaging, d6 as CursorPagingMetadata, d2 as CursorQueryPagingMethodOneOf, dc as CursorSearch, dd as CursorSearchPagingMethodOneOf, d7 as Cursors, cO as CustomTag, dm as DateHistogramAggregation, dH as DateHistogramResult, dJ as DateHistogramResults, c2 as Decoration, c3 as DecorationDataOneOf, au as DecorationType, f2 as DecorationTypeWithLiterals, c$ as DeleteCategoryRequest, d0 as DeleteCategoryResponse, dN as DeprecatedSearchCategoriesWithOffsetRequest, dR as DeprecatedSearchCategoriesWithOffsetResponse, c0 as Design, cq as Dimensions, aF as Direction, fd as DirectionWithLiterals, bn as DividerData, af as DividerDataAlignment, eP as DividerDataAlignmentWithLiterals, cF as DocumentStyle, eq as DomainEvent, er as DomainEventBodyOneOf, cm as EmbedData, ex as Empty, es as EntityCreatedEvent, ev as EntityDeletedEvent, eu as EntityUpdatedEvent, ce as EventData, eC as EventMetadata, cH as ExtendedFields, cN as File, bo as FileData, bp as FileSource, bq as FileSourceDataOneOf, ca as FontFamilyData, c8 as FontSizeData, av as FontType, f3 as FontTypeWithLiterals, bD as GIF, bC as GIFData, al as GIFType, eV as GIFTypeWithLiterals, bs as GalleryData, by as GalleryOptions, bz as GalleryOptionsLayout, ek as GetArrangedItemsRequest, en as GetCategoriesTreeRequest, eo as GetCategoriesTreeResponse, cX as GetCategoryRequest, cY as GetCategoryResponse, bV as Gradient, dI as GroupByValueResults, bF as HTMLData, bG as HTMLDataDataOneOf, bE as HeadingData, bg as Height, ez as IdentificationData, eA as IdentificationDataIdOneOf, bu as Image, bH as ImageData, bJ as ImageDataStyles, aJ as ImagePosition, fh as ImagePositionWithLiterals, cg as ImageStyles, aw as ImageStylesPosition, f4 as ImageStylesPositionWithLiterals, dh as IncludeMissingValuesOptions, aE as InitialExpandedItems, fc as InitialExpandedItemsWithLiterals, aU as Interval, fs as IntervalWithLiterals, cI as InvalidateCache, cJ as InvalidateCacheGetByOneOf, bw as Item, cQ as ItemAddedToCategory, bx as ItemDataOneOf, dX as ItemMetadata, e5 as ItemReferenceMetadata, cS as ItemRemovedFromCategory, bA as ItemStyle, cR as ItemsAddedToCategory, cU as ItemsArrangedInCategory, cT as ItemsRemovedFromCategory, b2 as Keyword, aC as Layout, cD as LayoutCellData, cB as LayoutData, ah as LayoutType, eR as LayoutTypeWithLiterals, fa as LayoutWithLiterals, ad as LineStyle, eN as LineStyleWithLiterals, bi as Link, c6 as LinkData, bj as LinkDataOneOf, bK as LinkPreviewData, bL as LinkPreviewDataStyles, ed as ListCategoriesForItemRequest, ee as ListCategoriesForItemsRequest, d8 as ListCompactCategoriesByIdsRequest, d9 as ListCompactCategoriesByIdsResponse, eF as ListItemsInCategoryOptionsPagingMethodOneOf, ea as ListItemsInCategoryRequest, eb as ListItemsInCategoryRequestPagingMethodOneOf, eg as ListTreesRequest, cv as ListValue, bM as MapData, ef as MapItemToCategories, bN as MapSettings, ao as MapType, eY as MapTypeWithLiterals, bt as Media, c7 as MentionData, ey as MessageEnvelope, cE as Metadata, aR as MissingValues, fp as MissingValuesWithLiterals, aW as Mode, fu as ModeWithLiterals, dU as MoveCategoryRequest, eh as MoveItemInCategoryRequest, aY as MoveItemInCategoryRequestPosition, fw as MoveItemInCategoryRequestPositionWithLiterals, ei as MoveItemInCategoryResponse, dq as NestedAggregation, dn as NestedAggregationItem, dp as NestedAggregationItemKindOneOf, dv as NestedAggregationResults, dw as NestedAggregationResultsResultOneOf, aT as NestedAggregationType, fr as NestedAggregationTypeWithLiterals, dE as NestedResultValue, dF as NestedResultValueResultOneOf, dK as NestedResults, dA as NestedValueAggregationResult, b6 as Node, b7 as NodeDataOneOf, b8 as NodeStyle, a7 as NodeType, eH as NodeTypeWithLiterals, aH as NullValue, ff as NullValueWithLiterals, cn as Oembed, dO as OffsetSearch, dP as OffsetSearchPagingMethodOneOf, bR as Option, bZ as OptionDesign, bU as OptionLayout, cx as OrderedListData, ai as Orientation, eS as OrientationWithLiterals, br as PDFSettings, cL as Page, dQ as Paging, dS as PagingMetadata, ec as PagingMetadataV2, bO as ParagraphData, b0 as ParentCategory, bQ as Permissions, az as Placement, f7 as PlacementWithLiterals, cl as PlaybackOptions, bc as PluginContainerData, a9 as PluginContainerDataAlignment, eJ as PluginContainerDataAlignmentWithLiterals, bd as PluginContainerDataWidth, be as PluginContainerDataWidthDataOneOf, b_ as Poll, bP as PollData, b$ as PollDataLayout, bY as PollDesign, bT as PollLayout, as as PollLayoutDirection, f0 as PollLayoutDirectionWithLiterals, ar as PollLayoutType, e$ as PollLayoutTypeWithLiterals, bS as PollSettings, aX as Position, fv as PositionWithLiterals, cj as PricingData, d1 as QueryCategoriesRequest, d5 as QueryCategoriesResponse, dk as RangeAggregation, du as RangeAggregationResult, dg as RangeBucket, dC as RangeResult, dy as RangeResults, bk as Rel, aO as RequestedFields, fm as RequestedFieldsWithLiterals, ay as Resizing, f6 as ResizingWithLiterals, aL as ResponsivenessBehaviour, fj as ResponsivenessBehaviourWithLiterals, et as RestoreInfo, dG as Results, ch as RibbonStyles, b5 as RichContent, dl as ScalarAggregation, dD as ScalarResult, aS as ScalarType, fq as ScalarTypeWithLiterals, aI as Scaling, fg as ScalingWithLiterals, db as SearchCategoriesRequest, dr as SearchDetails, b1 as SeoSchema, ej as SetArrangedItemsRequest, b4 as Settings, aM as SingleEntityOpsRequestedFields, fk as SingleEntityOpsRequestedFieldsWithLiterals, aQ as SortDirection, fo as SortDirectionWithLiterals, aN as SortOrder, fl as SortOrderWithLiterals, aP as SortType, fn as SortTypeWithLiterals, d3 as Sorting, am as Source, eW as SourceWithLiterals, bf as Spoiler, c9 as SpoilerData, bh as Styles, bI as StylesBorder, an as StylesPosition, eX as StylesPositionWithLiterals, cr as TableCellData, cp as TableData, b3 as Tag, ab as Target, eL as TargetWithLiterals, ac as TextAlignment, eM as TextAlignmentWithLiterals, c1 as TextData, cG as TextNodeStyle, bm as TextStyle, bB as Thumbnails, ak as ThumbnailsAlignment, eU as ThumbnailsAlignmentWithLiterals, aA as Type, f8 as TypeWithLiterals, cM as URI, cZ as UpdateCategoryRequest, c_ as UpdateCategoryResponse, d_ as UpdateCategoryVisibilityRequest, di as ValueAggregation, dj as ValueAggregationOptionsOneOf, dt as ValueAggregationResult, dB as ValueResult, dx as ValueResults, aG as VerticalAlignment, aK as VerticalAlignmentAlignment, fi as VerticalAlignmentAlignmentWithLiterals, fe as VerticalAlignmentWithLiterals, bv as Video, ck as VideoData, ag as ViewMode, eQ as ViewModeWithLiterals, ap as ViewRole, eZ as ViewRoleWithLiterals, aq as VoteRole, e_ as VoteRoleWithLiterals, aZ as WebhookIdentityType, fx as WebhookIdentityTypeWithLiterals, ae as Width, a8 as WidthType, eI as WidthTypeWithLiterals, eO as WidthWithLiterals } from './categories-v1-category-categories.universal-Dt7jEwLr.js';
|
|
4
4
|
|
|
5
5
|
declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
|
|
6
6
|
interface CreateCategorySignature {
|
package/build/cjs/index.js
CHANGED
|
@@ -1704,6 +1704,7 @@ var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
|
|
|
1704
1704
|
DecorationType2["STRIKETHROUGH"] = "STRIKETHROUGH";
|
|
1705
1705
|
DecorationType2["SUPERSCRIPT"] = "SUPERSCRIPT";
|
|
1706
1706
|
DecorationType2["SUBSCRIPT"] = "SUBSCRIPT";
|
|
1707
|
+
DecorationType2["FONT_FAMILY"] = "FONT_FAMILY";
|
|
1707
1708
|
return DecorationType2;
|
|
1708
1709
|
})(DecorationType || {});
|
|
1709
1710
|
var FontType = /* @__PURE__ */ ((FontType2) => {
|