@wix/auto_sdk_categories_categories 1.0.108 → 1.0.110
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-CVjL1ZhJ.d.ts → categories-v1-category-categories.universal-OJiAZwY0.d.ts} +99 -3
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +81 -3
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +68 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +100 -4
- package/build/cjs/meta.js +68 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{categories-v1-category-categories.universal-CVjL1ZhJ.d.mts → categories-v1-category-categories.universal-OJiAZwY0.d.mts} +99 -3
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +79 -3
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +66 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +100 -4
- package/build/es/meta.mjs +66 -2
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{categories-v1-category-categories.universal-B5gx5zdX.d.ts → categories-v1-category-categories.universal-CygH0Xaq.d.ts} +99 -3
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +81 -3
- 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 +68 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +100 -4
- package/build/internal/cjs/meta.js +68 -2
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{categories-v1-category-categories.universal-B5gx5zdX.d.mts → categories-v1-category-categories.universal-CygH0Xaq.d.mts} +99 -3
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +79 -3
- 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 +66 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +100 -4
- package/build/internal/es/meta.mjs +66 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -298,6 +298,10 @@ interface Node extends NodeDataOneOf {
|
|
|
298
298
|
cardData?: CardData;
|
|
299
299
|
/** Data for a table of contents node. */
|
|
300
300
|
tocData?: TocData;
|
|
301
|
+
/** Data for a smart block node. */
|
|
302
|
+
smartBlockData?: SmartBlockData;
|
|
303
|
+
/** Data for a smart block cell node. */
|
|
304
|
+
smartBlockCellData?: SmartBlockCellData;
|
|
301
305
|
/** 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. */
|
|
302
306
|
type?: NodeTypeWithLiterals;
|
|
303
307
|
/** Node ID. */
|
|
@@ -371,6 +375,10 @@ interface NodeDataOneOf {
|
|
|
371
375
|
cardData?: CardData;
|
|
372
376
|
/** Data for a table of contents node. */
|
|
373
377
|
tocData?: TocData;
|
|
378
|
+
/** Data for a smart block node. */
|
|
379
|
+
smartBlockData?: SmartBlockData;
|
|
380
|
+
/** Data for a smart block cell node. */
|
|
381
|
+
smartBlockCellData?: SmartBlockCellData;
|
|
374
382
|
}
|
|
375
383
|
declare enum NodeType {
|
|
376
384
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -409,10 +417,12 @@ declare enum NodeType {
|
|
|
409
417
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
410
418
|
SHAPE = "SHAPE",
|
|
411
419
|
CARD = "CARD",
|
|
412
|
-
TOC = "TOC"
|
|
420
|
+
TOC = "TOC",
|
|
421
|
+
SMART_BLOCK = "SMART_BLOCK",
|
|
422
|
+
SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
|
|
413
423
|
}
|
|
414
424
|
/** @enumType */
|
|
415
|
-
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD' | 'TOC';
|
|
425
|
+
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD' | 'TOC' | 'SMART_BLOCK' | 'SMART_BLOCK_CELL';
|
|
416
426
|
interface NodeStyle {
|
|
417
427
|
/** The top padding value in pixels. */
|
|
418
428
|
paddingTop?: string | null;
|
|
@@ -1030,6 +1040,8 @@ interface HeadingData {
|
|
|
1030
1040
|
textStyle?: TextStyle;
|
|
1031
1041
|
/** Indentation level from 1-4. */
|
|
1032
1042
|
indentation?: number | null;
|
|
1043
|
+
/** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
|
|
1044
|
+
renderedLevel?: number | null;
|
|
1033
1045
|
}
|
|
1034
1046
|
interface HTMLData extends HTMLDataDataOneOf {
|
|
1035
1047
|
/** The URL for the HTML code for the node. */
|
|
@@ -1903,6 +1915,8 @@ interface TableData {
|
|
|
1903
1915
|
* @maxSize 4
|
|
1904
1916
|
*/
|
|
1905
1917
|
cellPadding?: number[];
|
|
1918
|
+
/** Table's alternative text. */
|
|
1919
|
+
altText?: string | null;
|
|
1906
1920
|
}
|
|
1907
1921
|
interface Dimensions {
|
|
1908
1922
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -2344,6 +2358,88 @@ declare enum Indentation {
|
|
|
2344
2358
|
}
|
|
2345
2359
|
/** @enumType */
|
|
2346
2360
|
type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
|
|
2361
|
+
/** Data for a smart block node. */
|
|
2362
|
+
interface SmartBlockData {
|
|
2363
|
+
/** The type of the smart block. */
|
|
2364
|
+
type?: SmartBlockDataTypeWithLiterals;
|
|
2365
|
+
/** Layout orientation. HORIZONTAL or VERTICAL. Optional for variants with fixed orientation. */
|
|
2366
|
+
orientation?: string | null;
|
|
2367
|
+
/** Column size controlling cells per row. */
|
|
2368
|
+
columnSize?: ColumnSizeWithLiterals;
|
|
2369
|
+
/** Border color (for SOLID_JOINED_BOXES variant). */
|
|
2370
|
+
borderColor?: string | null;
|
|
2371
|
+
/** Border width in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2372
|
+
borderWidth?: number | null;
|
|
2373
|
+
/** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2374
|
+
borderRadius?: number | null;
|
|
2375
|
+
}
|
|
2376
|
+
/** Layout type of the smart block */
|
|
2377
|
+
declare enum SmartBlockDataType {
|
|
2378
|
+
/** Grid-based layouts with solid box items containing title, body, and icon/image. */
|
|
2379
|
+
SOLID_BOXES = "SOLID_BOXES",
|
|
2380
|
+
/** Numbered boxes. */
|
|
2381
|
+
NUMBERED_BOXES = "NUMBERED_BOXES",
|
|
2382
|
+
/** Statistics display with large numbers/values. */
|
|
2383
|
+
STATS = "STATS",
|
|
2384
|
+
/** Statistics with circular visual elements. */
|
|
2385
|
+
CIRCLE_STATS = "CIRCLE_STATS",
|
|
2386
|
+
/** Staggered/zigzag grid layout with alternating box positions. */
|
|
2387
|
+
SOLID_BOXES_ALTERNATING = "SOLID_BOXES_ALTERNATING",
|
|
2388
|
+
/** Grid layout with boxes visually joined (no gaps, shared container border). */
|
|
2389
|
+
SOLID_JOINED_BOXES = "SOLID_JOINED_BOXES",
|
|
2390
|
+
/** Transparent cells with only a left side line. */
|
|
2391
|
+
SIDE_LINE_TEXT = "SIDE_LINE_TEXT",
|
|
2392
|
+
/** Transparent cells with only a top line. */
|
|
2393
|
+
TOP_LINE_TEXT = "TOP_LINE_TEXT",
|
|
2394
|
+
/** Outlined boxes with a numbered/icon circle at the top. */
|
|
2395
|
+
OUTLINE_BOXES_WITH_TOP_CIRCLE = "OUTLINE_BOXES_WITH_TOP_CIRCLE",
|
|
2396
|
+
/** Large icon bullets with text content. */
|
|
2397
|
+
BIG_BULLETS = "BIG_BULLETS",
|
|
2398
|
+
/** Small dot bullets with text content. */
|
|
2399
|
+
SMALL_BULLETS = "SMALL_BULLETS",
|
|
2400
|
+
/** Arrow icon bullets with text content. */
|
|
2401
|
+
ARROW_BULLETS = "ARROW_BULLETS",
|
|
2402
|
+
/** Process steps with numbered/icon labels above a horizontal line. */
|
|
2403
|
+
PROCESS_STEPS = "PROCESS_STEPS",
|
|
2404
|
+
/** Statistics with bar visual elements. */
|
|
2405
|
+
BAR_STATS = "BAR_STATS"
|
|
2406
|
+
}
|
|
2407
|
+
/** @enumType */
|
|
2408
|
+
type SmartBlockDataTypeWithLiterals = SmartBlockDataType | 'SOLID_BOXES' | 'NUMBERED_BOXES' | 'STATS' | 'CIRCLE_STATS' | 'SOLID_BOXES_ALTERNATING' | 'SOLID_JOINED_BOXES' | 'SIDE_LINE_TEXT' | 'TOP_LINE_TEXT' | 'OUTLINE_BOXES_WITH_TOP_CIRCLE' | 'BIG_BULLETS' | 'SMALL_BULLETS' | 'ARROW_BULLETS' | 'PROCESS_STEPS' | 'BAR_STATS';
|
|
2409
|
+
/** Column size controlling how many cells appear per row. */
|
|
2410
|
+
declare enum ColumnSize {
|
|
2411
|
+
/** Up to 4 cells in a row. */
|
|
2412
|
+
SMALL = "SMALL",
|
|
2413
|
+
/** Up to 3 cells in a row (default). */
|
|
2414
|
+
MEDIUM = "MEDIUM",
|
|
2415
|
+
/** Up to 2 cells in a row. */
|
|
2416
|
+
LARGE = "LARGE",
|
|
2417
|
+
/** 1 cell in a row. */
|
|
2418
|
+
EXTRA_LARGE = "EXTRA_LARGE"
|
|
2419
|
+
}
|
|
2420
|
+
/** @enumType */
|
|
2421
|
+
type ColumnSizeWithLiterals = ColumnSize | 'SMALL' | 'MEDIUM' | 'LARGE' | 'EXTRA_LARGE';
|
|
2422
|
+
/** Data for a smart block cell node. */
|
|
2423
|
+
interface SmartBlockCellData {
|
|
2424
|
+
/** Optional label text for the cell (e.g., for stats variants). */
|
|
2425
|
+
label?: string | null;
|
|
2426
|
+
/** Shape file details. */
|
|
2427
|
+
shape?: Media;
|
|
2428
|
+
/** Border color of the cell. */
|
|
2429
|
+
borderColor?: string | null;
|
|
2430
|
+
/** Border width in pixels. */
|
|
2431
|
+
borderWidth?: number | null;
|
|
2432
|
+
/** Border radius in pixels. */
|
|
2433
|
+
borderRadius?: number | null;
|
|
2434
|
+
/** The type of the parent smart block (must match parent). */
|
|
2435
|
+
type?: SmartBlockDataTypeWithLiterals;
|
|
2436
|
+
/** Accent color for non-background variants (e.g., line, bullet, label color). */
|
|
2437
|
+
accentColor?: string | null;
|
|
2438
|
+
/** Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES). */
|
|
2439
|
+
backgroundColor?: string | null;
|
|
2440
|
+
/** Shape fill color as a hexadecimal value. */
|
|
2441
|
+
shapeColor?: string | null;
|
|
2442
|
+
}
|
|
2347
2443
|
interface Metadata {
|
|
2348
2444
|
/** Schema version. */
|
|
2349
2445
|
version?: number;
|
|
@@ -5717,4 +5813,4 @@ interface BulkSetItemCategoriesOptions {
|
|
|
5717
5813
|
treeReference: TreeReference;
|
|
5718
5814
|
}
|
|
5719
5815
|
|
|
5720
|
-
export { type CategoryDeletedEnvelope as $, type BulkRemoveItemsFromCategoryResponse as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkRemoveItemsFromCategoryApplicationErrors as E, type BulkRemoveItemFromCategoriesOptions as F, type GetCategoryOptions as G, type BulkRemoveItemFromCategoriesResponse as H, type ItemReference as I, type BulkRemoveItemFromCategoriesApplicationErrors as J, type ListItemsInCategoryResponse as K, type ListItemsInCategoryOptions as L, type MoveCategoryOptions as M, type ListCategoriesForItemOptions as N, type ListCategoriesForItemResponse as O, type ListCategoriesForItemsOptions as P, type ListCategoriesForItemsResponse as Q, type ListTreesResponse as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type SetArrangedItemsOptions as V, type SetArrangedItemsResponse as W, type SetArrangedItemsApplicationErrors as X, type GetArrangedItemsResponse as Y, type CategoryMovedEnvelope as Z, type CategoryCreatedEnvelope as _, type CreateCategoryOptions as a, SortType as a$, type CategoryItemAddedToCategoryEnvelope as a0, type CategoryItemRemovedFromCategoryEnvelope as a1, type CategoryItemsArrangedInCategoryEnvelope as a2, type CategoryUpdatedEnvelope as a3, type CategoryQuery as a4, type QueryCategoriesOptions as a5, typedQueryCategories as a6, type CategoriesQueryBuilder as a7, NodeType as a8, BackgroundType as a9, AspectRatio as aA, Resizing as aB, Placement as aC, Type as aD, Alignment as aE, Layout as aF, AppType as aG, InitialExpandedItems as aH, Direction as aI, VerticalAlignment as aJ, NullValue as aK, ImageScalingScaling as aL, ImagePosition as aM, Origin as aN, LayoutDataBackgroundType as aO, BackdropType as aP, VerticalAlignmentAlignment as aQ, ResponsivenessBehaviour as aR, DesignTarget as aS, Scaling as aT, ImagePositionPosition as aU, CardDataBackgroundType as aV, ListStyle as aW, Indentation as aX, SingleEntityOpsRequestedFields as aY, SortOrder as aZ, RequestedFields as a_, GradientType as aa, WidthType as ab, PluginContainerDataAlignment as ac, ButtonDataType as ad, Target as ae, TextAlignment as af, LineStyle as ag, Width as ah, DividerDataAlignment as ai, ViewMode as aj, LayoutType as ak, Orientation as al, Crop as am, ThumbnailsAlignment as an, GIFType as ao, Source as ap, StylesPosition as aq, MapType as ar, ViewRole as as, VoteRole as at, PollLayoutType as au, PollLayoutDirection as av, PollDesignBackgroundType as aw, DecorationType as ax, FontType as ay, ImageStylesPosition as az, type CreateCategoryApplicationErrors as b, type MapData as b$, SortDirection as b0, MissingValues as b1, ScalarType as b2, NestedAggregationType as b3, Interval as b4, AggregationType as b5, Mode as b6, Position as b7, MoveItemInCategoryRequestPosition as b8, WebhookIdentityType as b9, type CodeBlockData as bA, type TextStyle as bB, type DividerData as bC, type FileData as bD, type FileSource as bE, type FileSourceDataOneOf as bF, type PDFSettings as bG, type GalleryData as bH, type Media as bI, type Image as bJ, type Video as bK, type Item as bL, type ItemDataOneOf as bM, type GalleryOptions as bN, type GalleryOptionsLayout as bO, type ItemStyle as bP, type Thumbnails as bQ, type GIFData as bR, type GIF as bS, type HeadingData as bT, type HTMLData as bU, type HTMLDataDataOneOf as bV, type ImageData as bW, type StylesBorder as bX, type ImageDataStyles as bY, type LinkPreviewData as bZ, type LinkPreviewDataStyles as b_, type BreadcrumbsInfo as ba, type Breadcrumb as bb, type ParentCategory as bc, type SeoSchema as bd, type Keyword as be, type Tag as bf, type Settings as bg, type RichContent as bh, type Node as bi, type NodeDataOneOf as bj, type NodeStyle as bk, type ButtonData as bl, type Gradient as bm, type Stop as bn, type Border as bo, type Colors as bp, type Background as bq, type PluginContainerData as br, type PluginContainerDataWidth as bs, type PluginContainerDataWidthDataOneOf as bt, type Spoiler as bu, type Height as bv, type Styles as bw, type Link as bx, type LinkDataOneOf as by, type Rel as bz, type CreateCategoryValidationErrors as c, type TocData as c$, type MapSettings as c0, type ParagraphData as c1, type PollData as c2, type Permissions as c3, type Option as c4, type PollSettings as c5, type PollLayout as c6, type OptionLayout as c7, type BackgroundGradient as c8, type PollDesignBackground as c9, type PlaybackOptions as cA, type EmbedData as cB, type Oembed as cC, type CollapsibleListData as cD, type TableData as cE, type Dimensions as cF, type TableCellData as cG, type CellStyle as cH, type BorderColors as cI, type BorderWidths as cJ, type ListValue as cK, type AudioData as cL, type OrderedListData as cM, type BulletedListData as cN, type BlockquoteData as cO, type CaptionData as cP, type LayoutData as cQ, type LayoutDataBackgroundImage as cR, type Banner as cS, type LayoutDataBackground as cT, type Backdrop as cU, type LayoutCellData as cV, type ShapeData as cW, type ShapeDataStyles as cX, type CardData as cY, type CardDataBackground as cZ, type BackgroundImage as c_, type PollDesignBackgroundBackgroundOneOf as ca, type PollDesign as cb, type OptionDesign as cc, type Poll as cd, type PollDataLayout as ce, type Design as cf, type TextData as cg, type Decoration as ch, type DecorationDataOneOf as ci, type AnchorData as cj, type ColorData as ck, type LinkData as cl, type MentionData as cm, type FontSizeData as cn, type SpoilerData as co, type FontFamilyData as cp, type AppEmbedData as cq, type AppEmbedDataAppDataOneOf as cr, type BookingData as cs, type EventData as ct, type ButtonStyles as cu, type ImageStyles as cv, type RibbonStyles as cw, type CardStyles as cx, type PricingData as cy, type VideoData as cz, type UpdateCategoryOptions as d, type ValueResults as d$, type Metadata as d0, type DocumentStyle as d1, type TextNodeStyle as d2, type ExtendedFields as d3, type InvalidateCache as d4, type InvalidateCacheGetByOneOf as d5, type App as d6, type Page as d7, type URI as d8, type File as d9, type QueryCategoriesResponse as dA, type CursorPagingMetadata as dB, type Cursors as dC, type ListCompactCategoriesByIdsRequest as dD, type ListCompactCategoriesByIdsResponse as dE, type CompactCategory as dF, type SearchCategoriesRequest as dG, type CursorSearch as dH, type CursorSearchPagingMethodOneOf as dI, type Aggregation as dJ, type AggregationKindOneOf as dK, type RangeBucket as dL, type IncludeMissingValuesOptions as dM, type ValueAggregation as dN, type ValueAggregationOptionsOneOf as dO, type RangeAggregation as dP, type ScalarAggregation as dQ, type DateHistogramAggregation as dR, type NestedAggregationItem as dS, type NestedAggregationItemKindOneOf as dT, type NestedAggregation as dU, type SearchDetails as dV, type AggregationData as dW, type ValueAggregationResult as dX, type RangeAggregationResult as dY, type NestedAggregationResults as dZ, type NestedAggregationResultsResultOneOf as d_, type CustomTag as da, type Pages as db, type URIs as dc, type CategoryMoved as dd, type ItemAddedToCategory as de, type ItemsAddedToCategory as df, type ItemRemovedFromCategory as dg, type ItemsRemovedFromCategory as dh, type ItemsArrangedInCategory as di, type CreateCategoryRequest as dj, type CreateCategoryResponse as dk, type DuplicateHandleErrorData as dl, type GetCategoryRequest as dm, type GetCategoryResponse as dn, type GetCategoryBySlugRequest as dp, type GetCategoryBySlugResponse as dq, type UpdateCategoryRequest as dr, type UpdateCategoryResponse as ds, type DeleteCategoryRequest as dt, type DeleteCategoryResponse as du, type QueryCategoriesRequest as dv, type CursorQuery as dw, type CursorQueryPagingMethodOneOf as dx, type Sorting as dy, type CursorPaging as dz, type UpdateCategoryApplicationErrors as e, type Empty as e$, type RangeResults as e0, type AggregationResultsScalarResult as e1, type NestedValueAggregationResult as e2, type ValueResult as e3, type RangeResult as e4, type ScalarResult as e5, type NestedResultValue as e6, type NestedResultValueResultOneOf as e7, type Results as e8, type DateHistogramResult as e9, type BulkAddItemToCategoriesRequest as eA, type BulkItemToCategoriesResult as eB, type BulkRemoveItemsFromCategoryRequest as eC, type BulkRemoveItemFromCategoriesRequest as eD, type ListItemsInCategoryRequest as eE, type ListItemsInCategoryRequestPagingMethodOneOf as eF, type PagingMetadataV2 as eG, type ListCategoriesForItemRequest as eH, type ListCategoriesForItemsRequest as eI, type MapItemToCategories as eJ, type ListTreesRequest as eK, type MoveItemInCategoryRequest as eL, type MoveItemInCategoryResponse as eM, type SetArrangedItemsRequest as eN, type GetArrangedItemsRequest as eO, type BulkSetItemCategoriesRequest as eP, type BulkSetItemCategoriesResponse as eQ, type GetCategoriesTreeRequest as eR, type GetCategoriesTreeResponse as eS, type CategoryTreeNode as eT, type DomainEvent as eU, type DomainEventBodyOneOf as eV, type EntityCreatedEvent as eW, type RestoreInfo as eX, type EntityUpdatedEvent as eY, type EntityDeletedEvent as eZ, type ActionEvent as e_, type GroupByValueResults as ea, type DateHistogramResults as eb, type NestedResults as ec, type AggregationResults as ed, type AggregationResultsResultOneOf as ee, type DeprecatedSearchCategoriesWithOffsetRequest as ef, type OffsetSearch as eg, type OffsetSearchPagingMethodOneOf as eh, type Paging as ei, type DeprecatedSearchCategoriesWithOffsetResponse as ej, type PagingMetadata as ek, type CountCategoriesRequest as el, type MoveCategoryRequest as em, type BulkUpdateCategoriesRequest as en, type BulkCategoriesResult as eo, type ItemMetadata as ep, type ApplicationError as eq, type BulkActionMetadata as er, type UpdateCategoryVisibilityRequest as es, type BulkShowCategoriesRequest as et, type BulkDeleteCategoriesRequest as eu, type BulkDeleteCategoriesResponse as ev, type BulkDeleteCategoriesResponseBulkCategoriesResult as ew, type BulkAddItemsToCategoryRequest as ex, type BulkItemsToCategoryResult as ey, type ItemReferenceMetadata as ez, type CategorySearch as f, type ResponsivenessBehaviourWithLiterals as f$, type BulkCreateCategoriesForMigrationRequest as f0, type BulkCreateCategoriesForMigrationResponse as f1, type BulkAddItemsToCategoryForMigrationRequest as f2, type BulkAddItemsToCategoryForMigrationResponse as f3, type MessageEnvelope as f4, type IdentificationData as f5, type IdentificationDataIdOneOf as f6, type AccountInfo as f7, type BaseEventMetadata as f8, type EventMetadata as f9, type StylesPositionWithLiterals as fA, type MapTypeWithLiterals as fB, type ViewRoleWithLiterals as fC, type VoteRoleWithLiterals as fD, type PollLayoutTypeWithLiterals as fE, type PollLayoutDirectionWithLiterals as fF, type PollDesignBackgroundTypeWithLiterals as fG, type DecorationTypeWithLiterals as fH, type FontTypeWithLiterals as fI, type ImageStylesPositionWithLiterals as fJ, type AspectRatioWithLiterals as fK, type ResizingWithLiterals as fL, type PlacementWithLiterals as fM, type TypeWithLiterals as fN, type AlignmentWithLiterals as fO, type LayoutWithLiterals as fP, type AppTypeWithLiterals as fQ, type InitialExpandedItemsWithLiterals as fR, type DirectionWithLiterals as fS, type VerticalAlignmentWithLiterals as fT, type NullValueWithLiterals as fU, type ImageScalingScalingWithLiterals as fV, type ImagePositionWithLiterals as fW, type OriginWithLiterals as fX, type LayoutDataBackgroundTypeWithLiterals as fY, type BackdropTypeWithLiterals as fZ, type VerticalAlignmentAlignmentWithLiterals as f_, type AccountInfoMetadata as fa, type GetCategoryBySlugOptions as fb, type CategoriesQueryResult as fc, type CategoryQuerySpec as fd, type CategorySearchSpec as fe, type ListItemsInCategoryOptionsPagingMethodOneOf as ff, type BulkSetItemCategoriesOptions as fg, utils as fh, type NodeTypeWithLiterals as fi, type BackgroundTypeWithLiterals as fj, type GradientTypeWithLiterals as fk, type WidthTypeWithLiterals as fl, type PluginContainerDataAlignmentWithLiterals as fm, type ButtonDataTypeWithLiterals as fn, type TargetWithLiterals as fo, type TextAlignmentWithLiterals as fp, type LineStyleWithLiterals as fq, type WidthWithLiterals as fr, type DividerDataAlignmentWithLiterals as fs, type ViewModeWithLiterals as ft, type LayoutTypeWithLiterals as fu, type OrientationWithLiterals as fv, type CropWithLiterals as fw, type ThumbnailsAlignmentWithLiterals as fx, type GIFTypeWithLiterals as fy, type SourceWithLiterals as fz, type SearchCategoriesResponse as g, type DesignTargetWithLiterals as g0, type ScalingWithLiterals as g1, type ImagePositionPositionWithLiterals as g2, type CardDataBackgroundTypeWithLiterals as g3, type ListStyleWithLiterals as g4, type IndentationWithLiterals as g5, type SingleEntityOpsRequestedFieldsWithLiterals as g6, type SortOrderWithLiterals as g7, type RequestedFieldsWithLiterals as g8, type SortTypeWithLiterals as g9, moveCategory as gA, bulkUpdateCategories as gB, updateCategoryVisibility as gC, bulkShowCategories as gD, bulkAddItemsToCategory as gE, bulkAddItemToCategories as gF, bulkRemoveItemsFromCategory as gG, bulkRemoveItemFromCategories as gH, listItemsInCategory as gI, listCategoriesForItem as gJ, listCategoriesForItems as gK, listTrees as gL, setArrangedItems as gM, getArrangedItems as gN, type SortDirectionWithLiterals as ga, type MissingValuesWithLiterals as gb, type ScalarTypeWithLiterals as gc, type NestedAggregationTypeWithLiterals as gd, type IntervalWithLiterals as ge, type AggregationTypeWithLiterals as gf, type ModeWithLiterals as gg, type PositionWithLiterals as gh, type MoveItemInCategoryRequestPositionWithLiterals as gi, type WebhookIdentityTypeWithLiterals as gj, type BulkSetItemCategoriesApplicationErrors as gk, type CommonQueryWithEntityContext as gl, type CommonSearchWithEntityContext as gm, onCategoryMoved as gn, onCategoryCreated as go, onCategoryDeleted as gp, onCategoryItemAddedToCategory as gq, onCategoryItemRemovedFromCategory as gr, onCategoryItemsArrangedInCategory as gs, onCategoryUpdated as gt, createCategory as gu, getCategory as gv, updateCategory as gw, deleteCategory as gx, queryCategories as gy, countCategories as gz, 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 };
|
|
5816
|
+
export { type CategoryDeletedEnvelope as $, type BulkRemoveItemsFromCategoryResponse as A, type BulkUpdateCategoriesOptions as B, type Category as C, type DeleteCategoryApplicationErrors as D, type BulkRemoveItemsFromCategoryApplicationErrors as E, type BulkRemoveItemFromCategoriesOptions as F, type GetCategoryOptions as G, type BulkRemoveItemFromCategoriesResponse as H, type ItemReference as I, type BulkRemoveItemFromCategoriesApplicationErrors as J, type ListItemsInCategoryResponse as K, type ListItemsInCategoryOptions as L, type MoveCategoryOptions as M, type ListCategoriesForItemOptions as N, type ListCategoriesForItemResponse as O, type ListCategoriesForItemsOptions as P, type ListCategoriesForItemsResponse as Q, type ListTreesResponse as R, type SearchCategoriesOptions as S, type TreeReference as T, type UpdateCategory as U, type SetArrangedItemsOptions as V, type SetArrangedItemsResponse as W, type SetArrangedItemsApplicationErrors as X, type GetArrangedItemsResponse as Y, type CategoryMovedEnvelope as Z, type CategoryCreatedEnvelope as _, type CreateCategoryOptions as a, SortOrder as a$, type CategoryItemAddedToCategoryEnvelope as a0, type CategoryItemRemovedFromCategoryEnvelope as a1, type CategoryItemsArrangedInCategoryEnvelope as a2, type CategoryUpdatedEnvelope as a3, type CategoryQuery as a4, type QueryCategoriesOptions as a5, typedQueryCategories as a6, type CategoriesQueryBuilder as a7, NodeType as a8, BackgroundType as a9, AspectRatio as aA, Resizing as aB, Placement as aC, Type as aD, Alignment as aE, Layout as aF, AppType as aG, InitialExpandedItems as aH, Direction as aI, VerticalAlignment as aJ, NullValue as aK, ImageScalingScaling as aL, ImagePosition as aM, Origin as aN, LayoutDataBackgroundType as aO, BackdropType as aP, VerticalAlignmentAlignment as aQ, ResponsivenessBehaviour as aR, DesignTarget as aS, Scaling as aT, ImagePositionPosition as aU, CardDataBackgroundType as aV, ListStyle as aW, Indentation as aX, SmartBlockDataType as aY, ColumnSize as aZ, SingleEntityOpsRequestedFields as a_, GradientType as aa, WidthType as ab, PluginContainerDataAlignment as ac, ButtonDataType as ad, Target as ae, TextAlignment as af, LineStyle as ag, Width as ah, DividerDataAlignment as ai, ViewMode as aj, LayoutType as ak, Orientation as al, Crop as am, ThumbnailsAlignment as an, GIFType as ao, Source as ap, StylesPosition as aq, MapType as ar, ViewRole as as, VoteRole as at, PollLayoutType as au, PollLayoutDirection as av, PollDesignBackgroundType as aw, DecorationType as ax, FontType as ay, ImageStylesPosition as az, type CreateCategoryApplicationErrors as b, type LinkPreviewData as b$, RequestedFields as b0, SortType as b1, SortDirection as b2, MissingValues as b3, ScalarType as b4, NestedAggregationType as b5, Interval as b6, AggregationType as b7, Mode as b8, Position as b9, type LinkDataOneOf as bA, type Rel as bB, type CodeBlockData as bC, type TextStyle as bD, type DividerData as bE, type FileData as bF, type FileSource as bG, type FileSourceDataOneOf as bH, type PDFSettings as bI, type GalleryData as bJ, type Media as bK, type Image as bL, type Video as bM, type Item as bN, type ItemDataOneOf as bO, type GalleryOptions as bP, type GalleryOptionsLayout as bQ, type ItemStyle as bR, type Thumbnails as bS, type GIFData as bT, type GIF as bU, type HeadingData as bV, type HTMLData as bW, type HTMLDataDataOneOf as bX, type ImageData as bY, type StylesBorder as bZ, type ImageDataStyles as b_, MoveItemInCategoryRequestPosition as ba, WebhookIdentityType as bb, type BreadcrumbsInfo as bc, type Breadcrumb as bd, type ParentCategory as be, type SeoSchema as bf, type Keyword as bg, type Tag as bh, type Settings as bi, type RichContent as bj, type Node as bk, type NodeDataOneOf as bl, type NodeStyle as bm, type ButtonData as bn, type Gradient as bo, type Stop as bp, type Border as bq, type Colors as br, type Background as bs, type PluginContainerData as bt, type PluginContainerDataWidth as bu, type PluginContainerDataWidthDataOneOf as bv, type Spoiler as bw, type Height as bx, type Styles as by, type Link as bz, type CreateCategoryValidationErrors as c, type CardDataBackground as c$, type LinkPreviewDataStyles as c0, type MapData as c1, type MapSettings as c2, type ParagraphData as c3, type PollData as c4, type Permissions as c5, type Option as c6, type PollSettings as c7, type PollLayout as c8, type OptionLayout as c9, type PricingData as cA, type VideoData as cB, type PlaybackOptions as cC, type EmbedData as cD, type Oembed as cE, type CollapsibleListData as cF, type TableData as cG, type Dimensions as cH, type TableCellData as cI, type CellStyle as cJ, type BorderColors as cK, type BorderWidths as cL, type ListValue as cM, type AudioData as cN, type OrderedListData as cO, type BulletedListData as cP, type BlockquoteData as cQ, type CaptionData as cR, type LayoutData as cS, type LayoutDataBackgroundImage as cT, type Banner as cU, type LayoutDataBackground as cV, type Backdrop as cW, type LayoutCellData as cX, type ShapeData as cY, type ShapeDataStyles as cZ, type CardData as c_, type BackgroundGradient as ca, type PollDesignBackground as cb, type PollDesignBackgroundBackgroundOneOf as cc, type PollDesign as cd, type OptionDesign as ce, type Poll as cf, type PollDataLayout as cg, type Design as ch, type TextData as ci, type Decoration as cj, type DecorationDataOneOf as ck, type AnchorData as cl, type ColorData as cm, type LinkData as cn, type MentionData as co, type FontSizeData as cp, type SpoilerData as cq, type FontFamilyData as cr, type AppEmbedData as cs, type AppEmbedDataAppDataOneOf as ct, type BookingData as cu, type EventData as cv, type ButtonStyles as cw, type ImageStyles as cx, type RibbonStyles as cy, type CardStyles as cz, type UpdateCategoryOptions as d, type ValueAggregationResult as d$, type BackgroundImage as d0, type TocData as d1, type SmartBlockData as d2, type SmartBlockCellData as d3, type Metadata as d4, type DocumentStyle as d5, type TextNodeStyle as d6, type ExtendedFields as d7, type InvalidateCache as d8, type InvalidateCacheGetByOneOf as d9, type CursorQuery as dA, type CursorQueryPagingMethodOneOf as dB, type Sorting as dC, type CursorPaging as dD, type QueryCategoriesResponse as dE, type CursorPagingMetadata as dF, type Cursors as dG, type ListCompactCategoriesByIdsRequest as dH, type ListCompactCategoriesByIdsResponse as dI, type CompactCategory as dJ, type SearchCategoriesRequest as dK, type CursorSearch as dL, type CursorSearchPagingMethodOneOf as dM, type Aggregation as dN, type AggregationKindOneOf as dO, type RangeBucket as dP, type IncludeMissingValuesOptions as dQ, type ValueAggregation as dR, type ValueAggregationOptionsOneOf as dS, type RangeAggregation as dT, type ScalarAggregation as dU, type DateHistogramAggregation as dV, type NestedAggregationItem as dW, type NestedAggregationItemKindOneOf as dX, type NestedAggregation as dY, type SearchDetails as dZ, type AggregationData as d_, type App as da, type Page as db, type URI as dc, type File as dd, type CustomTag as de, type Pages as df, type URIs as dg, type CategoryMoved as dh, type ItemAddedToCategory as di, type ItemsAddedToCategory as dj, type ItemRemovedFromCategory as dk, type ItemsRemovedFromCategory as dl, type ItemsArrangedInCategory as dm, type CreateCategoryRequest as dn, type CreateCategoryResponse as dp, type DuplicateHandleErrorData as dq, type GetCategoryRequest as dr, type GetCategoryResponse as ds, type GetCategoryBySlugRequest as dt, type GetCategoryBySlugResponse as du, type UpdateCategoryRequest as dv, type UpdateCategoryResponse as dw, type DeleteCategoryRequest as dx, type DeleteCategoryResponse as dy, type QueryCategoriesRequest as dz, type UpdateCategoryApplicationErrors as e, type RestoreInfo as e$, type RangeAggregationResult as e0, type NestedAggregationResults as e1, type NestedAggregationResultsResultOneOf as e2, type ValueResults as e3, type RangeResults as e4, type AggregationResultsScalarResult as e5, type NestedValueAggregationResult as e6, type ValueResult as e7, type RangeResult as e8, type ScalarResult as e9, type BulkDeleteCategoriesResponseBulkCategoriesResult as eA, type BulkAddItemsToCategoryRequest as eB, type BulkItemsToCategoryResult as eC, type ItemReferenceMetadata as eD, type BulkAddItemToCategoriesRequest as eE, type BulkItemToCategoriesResult as eF, type BulkRemoveItemsFromCategoryRequest as eG, type BulkRemoveItemFromCategoriesRequest as eH, type ListItemsInCategoryRequest as eI, type ListItemsInCategoryRequestPagingMethodOneOf as eJ, type PagingMetadataV2 as eK, type ListCategoriesForItemRequest as eL, type ListCategoriesForItemsRequest as eM, type MapItemToCategories as eN, type ListTreesRequest as eO, type MoveItemInCategoryRequest as eP, type MoveItemInCategoryResponse as eQ, type SetArrangedItemsRequest as eR, type GetArrangedItemsRequest as eS, type BulkSetItemCategoriesRequest as eT, type BulkSetItemCategoriesResponse as eU, type GetCategoriesTreeRequest as eV, type GetCategoriesTreeResponse as eW, type CategoryTreeNode as eX, type DomainEvent as eY, type DomainEventBodyOneOf as eZ, type EntityCreatedEvent as e_, type NestedResultValue as ea, type NestedResultValueResultOneOf as eb, type Results as ec, type DateHistogramResult as ed, type GroupByValueResults as ee, type DateHistogramResults as ef, type NestedResults as eg, type AggregationResults as eh, type AggregationResultsResultOneOf as ei, type DeprecatedSearchCategoriesWithOffsetRequest as ej, type OffsetSearch as ek, type OffsetSearchPagingMethodOneOf as el, type Paging as em, type DeprecatedSearchCategoriesWithOffsetResponse as en, type PagingMetadata as eo, type CountCategoriesRequest as ep, type MoveCategoryRequest as eq, type BulkUpdateCategoriesRequest as er, type BulkCategoriesResult as es, type ItemMetadata as et, type ApplicationError as eu, type BulkActionMetadata as ev, type UpdateCategoryVisibilityRequest as ew, type BulkShowCategoriesRequest as ex, type BulkDeleteCategoriesRequest as ey, type BulkDeleteCategoriesResponse as ez, type CategorySearch as f, type OriginWithLiterals as f$, type EntityUpdatedEvent as f0, type EntityDeletedEvent as f1, type ActionEvent as f2, type Empty as f3, type BulkCreateCategoriesForMigrationRequest as f4, type BulkCreateCategoriesForMigrationResponse as f5, type BulkAddItemsToCategoryForMigrationRequest as f6, type BulkAddItemsToCategoryForMigrationResponse as f7, type MessageEnvelope as f8, type IdentificationData as f9, type CropWithLiterals as fA, type ThumbnailsAlignmentWithLiterals as fB, type GIFTypeWithLiterals as fC, type SourceWithLiterals as fD, type StylesPositionWithLiterals as fE, type MapTypeWithLiterals as fF, type ViewRoleWithLiterals as fG, type VoteRoleWithLiterals as fH, type PollLayoutTypeWithLiterals as fI, type PollLayoutDirectionWithLiterals as fJ, type PollDesignBackgroundTypeWithLiterals as fK, type DecorationTypeWithLiterals as fL, type FontTypeWithLiterals as fM, type ImageStylesPositionWithLiterals as fN, type AspectRatioWithLiterals as fO, type ResizingWithLiterals as fP, type PlacementWithLiterals as fQ, type TypeWithLiterals as fR, type AlignmentWithLiterals as fS, type LayoutWithLiterals as fT, type AppTypeWithLiterals as fU, type InitialExpandedItemsWithLiterals as fV, type DirectionWithLiterals as fW, type VerticalAlignmentWithLiterals as fX, type NullValueWithLiterals as fY, type ImageScalingScalingWithLiterals as fZ, type ImagePositionWithLiterals as f_, type IdentificationDataIdOneOf as fa, type AccountInfo as fb, type BaseEventMetadata as fc, type EventMetadata as fd, type AccountInfoMetadata as fe, type GetCategoryBySlugOptions as ff, type CategoriesQueryResult as fg, type CategoryQuerySpec as fh, type CategorySearchSpec as fi, type ListItemsInCategoryOptionsPagingMethodOneOf as fj, type BulkSetItemCategoriesOptions as fk, utils as fl, type NodeTypeWithLiterals as fm, type BackgroundTypeWithLiterals as fn, type GradientTypeWithLiterals as fo, type WidthTypeWithLiterals as fp, type PluginContainerDataAlignmentWithLiterals as fq, type ButtonDataTypeWithLiterals as fr, type TargetWithLiterals as fs, type TextAlignmentWithLiterals as ft, type LineStyleWithLiterals as fu, type WidthWithLiterals as fv, type DividerDataAlignmentWithLiterals as fw, type ViewModeWithLiterals as fx, type LayoutTypeWithLiterals as fy, type OrientationWithLiterals as fz, type SearchCategoriesResponse as g, type LayoutDataBackgroundTypeWithLiterals as g0, type BackdropTypeWithLiterals as g1, type VerticalAlignmentAlignmentWithLiterals as g2, type ResponsivenessBehaviourWithLiterals as g3, type DesignTargetWithLiterals as g4, type ScalingWithLiterals as g5, type ImagePositionPositionWithLiterals as g6, type CardDataBackgroundTypeWithLiterals as g7, type ListStyleWithLiterals as g8, type IndentationWithLiterals as g9, createCategory as gA, getCategory as gB, updateCategory as gC, deleteCategory as gD, queryCategories as gE, countCategories as gF, moveCategory as gG, bulkUpdateCategories as gH, updateCategoryVisibility as gI, bulkShowCategories as gJ, bulkAddItemsToCategory as gK, bulkAddItemToCategories as gL, bulkRemoveItemsFromCategory as gM, bulkRemoveItemFromCategories as gN, listItemsInCategory as gO, listCategoriesForItem as gP, listCategoriesForItems as gQ, listTrees as gR, setArrangedItems as gS, getArrangedItems as gT, type SmartBlockDataTypeWithLiterals as ga, type ColumnSizeWithLiterals as gb, type SingleEntityOpsRequestedFieldsWithLiterals as gc, type SortOrderWithLiterals as gd, type RequestedFieldsWithLiterals as ge, type SortTypeWithLiterals as gf, type SortDirectionWithLiterals as gg, type MissingValuesWithLiterals as gh, type ScalarTypeWithLiterals as gi, type NestedAggregationTypeWithLiterals as gj, type IntervalWithLiterals as gk, type AggregationTypeWithLiterals as gl, type ModeWithLiterals as gm, type PositionWithLiterals as gn, type MoveItemInCategoryRequestPositionWithLiterals as go, type WebhookIdentityTypeWithLiterals as gp, type BulkSetItemCategoriesApplicationErrors as gq, type CommonQueryWithEntityContext as gr, type CommonSearchWithEntityContext as gs, onCategoryMoved as gt, onCategoryCreated as gu, onCategoryDeleted as gv, onCategoryItemAddedToCategory as gw, onCategoryItemRemovedFromCategory as gx, onCategoryItemsArrangedInCategory as gy, onCategoryUpdated as gz, type CountCategoriesOptions as h, type CountCategoriesResponse as i, type MoveCategoryResponse as j, type MoveCategoryApplicationErrors as k, type MaskedCategory as l, type BulkUpdateCategoriesResponse as m, type BulkUpdateCategoriesApplicationErrors as n, type UpdateCategoryVisibilityOptions as o, type UpdateCategoryVisibilityResponse as p, type UpdateCategoryVisibilityApplicationErrors as q, type BulkShowCategoriesOptions as r, type BulkShowCategoriesResponse as s, type BulkAddItemsToCategoryOptions as t, type BulkAddItemsToCategoryResponse as u, type BulkAddItemsToCategoryApplicationErrors as v, type BulkAddItemToCategoriesOptions as w, type BulkAddItemToCategoriesResponse as x, type BulkAddItemToCategoriesApplicationErrors as y, type BulkRemoveItemsFromCategoryOptions as z };
|
package/build/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { C as Category, a as CreateCategoryOptions, b as CreateCategoryApplicationErrors, c as CreateCategoryValidationErrors, T as TreeReference, G as GetCategoryOptions, U as UpdateCategory, d as UpdateCategoryOptions, e as UpdateCategoryApplicationErrors, D as DeleteCategoryApplicationErrors, f as CategorySearch, S as SearchCategoriesOptions, g as SearchCategoriesResponse, h as CountCategoriesOptions, i as CountCategoriesResponse, M as MoveCategoryOptions, j as MoveCategoryResponse, k as MoveCategoryApplicationErrors, l as MaskedCategory, B as BulkUpdateCategoriesOptions, m as BulkUpdateCategoriesResponse, n as BulkUpdateCategoriesApplicationErrors, o as UpdateCategoryVisibilityOptions, p as UpdateCategoryVisibilityResponse, q as UpdateCategoryVisibilityApplicationErrors, r as BulkShowCategoriesOptions, s as BulkShowCategoriesResponse, I as ItemReference, t as BulkAddItemsToCategoryOptions, u as BulkAddItemsToCategoryResponse, v as BulkAddItemsToCategoryApplicationErrors, w as BulkAddItemToCategoriesOptions, x as BulkAddItemToCategoriesResponse, y as BulkAddItemToCategoriesApplicationErrors, z as BulkRemoveItemsFromCategoryOptions, A as BulkRemoveItemsFromCategoryResponse, E as BulkRemoveItemsFromCategoryApplicationErrors, F as BulkRemoveItemFromCategoriesOptions, H as BulkRemoveItemFromCategoriesResponse, J as BulkRemoveItemFromCategoriesApplicationErrors, L as ListItemsInCategoryOptions, K as ListItemsInCategoryResponse, N as ListCategoriesForItemOptions, O as ListCategoriesForItemResponse, P as ListCategoriesForItemsOptions, Q as ListCategoriesForItemsResponse, R as ListTreesResponse, V as SetArrangedItemsOptions, W as SetArrangedItemsResponse, X as SetArrangedItemsApplicationErrors, Y as GetArrangedItemsResponse, Z as CategoryMovedEnvelope, _ as CategoryCreatedEnvelope, $ as CategoryDeletedEnvelope, a0 as CategoryItemAddedToCategoryEnvelope, a1 as CategoryItemRemovedFromCategoryEnvelope, a2 as CategoryItemsArrangedInCategoryEnvelope, a3 as CategoryUpdatedEnvelope, a4 as CategoryQuery, a5 as QueryCategoriesOptions, a6 as typedQueryCategories, a7 as CategoriesQueryBuilder } from './categories-v1-category-categories.universal-
|
|
3
|
-
export { f7 as AccountInfo, fa as AccountInfoMetadata, e_ as ActionEvent, dJ as Aggregation, dW as AggregationData, dK as AggregationKindOneOf, ed as AggregationResults, ee as AggregationResultsResultOneOf, e1 as AggregationResultsScalarResult, b5 as AggregationType, gf as AggregationTypeWithLiterals, aE as Alignment, fO as AlignmentWithLiterals, cj as AnchorData, d6 as App, cq as AppEmbedData, cr as AppEmbedDataAppDataOneOf, aG as AppType, fQ as AppTypeWithLiterals, eq as ApplicationError, aA as AspectRatio, fK as AspectRatioWithLiterals, cL as AudioData, cU as Backdrop, aP as BackdropType, fZ as BackdropTypeWithLiterals, bq as Background, c8 as BackgroundGradient, c_ as BackgroundImage, a9 as BackgroundType, fj as BackgroundTypeWithLiterals, cS as Banner, f8 as BaseEventMetadata, cO as BlockquoteData, cs as BookingData, bo as Border, cI as BorderColors, cJ as BorderWidths, bb as Breadcrumb, ba as BreadcrumbsInfo, er as BulkActionMetadata, eA as BulkAddItemToCategoriesRequest, f2 as BulkAddItemsToCategoryForMigrationRequest, f3 as BulkAddItemsToCategoryForMigrationResponse, ex as BulkAddItemsToCategoryRequest, eo as BulkCategoriesResult, f0 as BulkCreateCategoriesForMigrationRequest, f1 as BulkCreateCategoriesForMigrationResponse, eu as BulkDeleteCategoriesRequest, ev as BulkDeleteCategoriesResponse, ew as BulkDeleteCategoriesResponseBulkCategoriesResult, eB as BulkItemToCategoriesResult, ey as BulkItemsToCategoryResult, eD as BulkRemoveItemFromCategoriesRequest, eC as BulkRemoveItemsFromCategoryRequest, gk as BulkSetItemCategoriesApplicationErrors, fg as BulkSetItemCategoriesOptions, eP as BulkSetItemCategoriesRequest, eQ as BulkSetItemCategoriesResponse, et as BulkShowCategoriesRequest, en as BulkUpdateCategoriesRequest, cN as BulletedListData, bl as ButtonData, ad as ButtonDataType, fn as ButtonDataTypeWithLiterals, cu as ButtonStyles, cP as CaptionData, cY as CardData, cZ as CardDataBackground, aV as CardDataBackgroundType, g3 as CardDataBackgroundTypeWithLiterals, cx as CardStyles, fc as CategoriesQueryResult, dd as CategoryMoved, fd as CategoryQuerySpec, fe as CategorySearchSpec, eT as CategoryTreeNode, cH as CellStyle, bA as CodeBlockData, cD as CollapsibleListData, ck as ColorData, bp as Colors, gl as CommonQueryWithEntityContext, gm as CommonSearchWithEntityContext, dF as CompactCategory, el as CountCategoriesRequest, dj as CreateCategoryRequest, dk as CreateCategoryResponse, am as Crop, fw as CropWithLiterals, dz as CursorPaging, dB as CursorPagingMetadata, dw as CursorQuery, dx as CursorQueryPagingMethodOneOf, dH as CursorSearch, dI as CursorSearchPagingMethodOneOf, dC as Cursors, da as CustomTag, dR as DateHistogramAggregation, e9 as DateHistogramResult, eb as DateHistogramResults, ch as Decoration, ci as DecorationDataOneOf, ax as DecorationType, fH as DecorationTypeWithLiterals, dt as DeleteCategoryRequest, du as DeleteCategoryResponse, ef as DeprecatedSearchCategoriesWithOffsetRequest, ej as DeprecatedSearchCategoriesWithOffsetResponse, cf as Design, aS as DesignTarget, g0 as DesignTargetWithLiterals, cF as Dimensions, aI as Direction, fS as DirectionWithLiterals, bC as DividerData, ai as DividerDataAlignment, fs as DividerDataAlignmentWithLiterals, d1 as DocumentStyle, eU as DomainEvent, eV as DomainEventBodyOneOf, dl as DuplicateHandleErrorData, cB as EmbedData, e$ as Empty, eW as EntityCreatedEvent, eZ as EntityDeletedEvent, eY as EntityUpdatedEvent, ct as EventData, f9 as EventMetadata, d3 as ExtendedFields, d9 as File, bD as FileData, bE as FileSource, bF as FileSourceDataOneOf, cp as FontFamilyData, cn as FontSizeData, ay as FontType, fI as FontTypeWithLiterals, bS as GIF, bR as GIFData, ao as GIFType, fy as GIFTypeWithLiterals, bH as GalleryData, bN as GalleryOptions, bO as GalleryOptionsLayout, eO as GetArrangedItemsRequest, eR as GetCategoriesTreeRequest, eS as GetCategoriesTreeResponse, fb as GetCategoryBySlugOptions, dp as GetCategoryBySlugRequest, dq as GetCategoryBySlugResponse, dm as GetCategoryRequest, dn as GetCategoryResponse, bm as Gradient, aa as GradientType, fk as GradientTypeWithLiterals, ea as GroupByValueResults, bU as HTMLData, bV as HTMLDataDataOneOf, bT as HeadingData, bv as Height, f5 as IdentificationData, f6 as IdentificationDataIdOneOf, bJ as Image, bW as ImageData, bY as ImageDataStyles, aM as ImagePosition, aU as ImagePositionPosition, g2 as ImagePositionPositionWithLiterals, fW as ImagePositionWithLiterals, aL as ImageScalingScaling, fV as ImageScalingScalingWithLiterals, cv as ImageStyles, az as ImageStylesPosition, fJ as ImageStylesPositionWithLiterals, dM as IncludeMissingValuesOptions, aX as Indentation, g5 as IndentationWithLiterals, aH as InitialExpandedItems, fR as InitialExpandedItemsWithLiterals, b4 as Interval, ge as IntervalWithLiterals, d4 as InvalidateCache, d5 as InvalidateCacheGetByOneOf, bL as Item, de as ItemAddedToCategory, bM as ItemDataOneOf, ep as ItemMetadata, ez as ItemReferenceMetadata, dg as ItemRemovedFromCategory, bP as ItemStyle, df as ItemsAddedToCategory, di as ItemsArrangedInCategory, dh as ItemsRemovedFromCategory, be as Keyword, aF as Layout, cV as LayoutCellData, cQ as LayoutData, cT as LayoutDataBackground, cR as LayoutDataBackgroundImage, aO as LayoutDataBackgroundType, fY as LayoutDataBackgroundTypeWithLiterals, ak as LayoutType, fu as LayoutTypeWithLiterals, fP as LayoutWithLiterals, ag as LineStyle, fq as LineStyleWithLiterals, bx as Link, cl as LinkData, by as LinkDataOneOf, bZ as LinkPreviewData, b_ as LinkPreviewDataStyles, eH as ListCategoriesForItemRequest, eI as ListCategoriesForItemsRequest, dD as ListCompactCategoriesByIdsRequest, dE as ListCompactCategoriesByIdsResponse, ff as ListItemsInCategoryOptionsPagingMethodOneOf, eE as ListItemsInCategoryRequest, eF as ListItemsInCategoryRequestPagingMethodOneOf, aW as ListStyle, g4 as ListStyleWithLiterals, eK as ListTreesRequest, cK as ListValue, b$ as MapData, eJ as MapItemToCategories, c0 as MapSettings, ar as MapType, fB as MapTypeWithLiterals, bI as Media, cm as MentionData, f4 as MessageEnvelope, d0 as Metadata, b1 as MissingValues, gb as MissingValuesWithLiterals, b6 as Mode, gg as ModeWithLiterals, em as MoveCategoryRequest, eL as MoveItemInCategoryRequest, b8 as MoveItemInCategoryRequestPosition, gi as MoveItemInCategoryRequestPositionWithLiterals, eM as MoveItemInCategoryResponse, dU as NestedAggregation, dS as NestedAggregationItem, dT as NestedAggregationItemKindOneOf, dZ as NestedAggregationResults, d_ as NestedAggregationResultsResultOneOf, b3 as NestedAggregationType, gd as NestedAggregationTypeWithLiterals, e6 as NestedResultValue, e7 as NestedResultValueResultOneOf, ec as NestedResults, e2 as NestedValueAggregationResult, bi as Node, bj as NodeDataOneOf, bk as NodeStyle, a8 as NodeType, fi as NodeTypeWithLiterals, aK as NullValue, fU as NullValueWithLiterals, cC as Oembed, eg as OffsetSearch, eh as OffsetSearchPagingMethodOneOf, c4 as Option, cc as OptionDesign, c7 as OptionLayout, cM as OrderedListData, al as Orientation, fv as OrientationWithLiterals, aN as Origin, fX as OriginWithLiterals, bG as PDFSettings, d7 as Page, db as Pages, ei as Paging, ek as PagingMetadata, eG as PagingMetadataV2, c1 as ParagraphData, bc as ParentCategory, c3 as Permissions, aC as Placement, fM as PlacementWithLiterals, cA as PlaybackOptions, br as PluginContainerData, ac as PluginContainerDataAlignment, fm as PluginContainerDataAlignmentWithLiterals, bs as PluginContainerDataWidth, bt as PluginContainerDataWidthDataOneOf, cd as Poll, c2 as PollData, ce as PollDataLayout, cb as PollDesign, c9 as PollDesignBackground, ca as PollDesignBackgroundBackgroundOneOf, aw as PollDesignBackgroundType, fG as PollDesignBackgroundTypeWithLiterals, c6 as PollLayout, av as PollLayoutDirection, fF as PollLayoutDirectionWithLiterals, au as PollLayoutType, fE as PollLayoutTypeWithLiterals, c5 as PollSettings, b7 as Position, gh as PositionWithLiterals, cy as PricingData, dv as QueryCategoriesRequest, dA as QueryCategoriesResponse, dP as RangeAggregation, dY as RangeAggregationResult, dL as RangeBucket, e4 as RangeResult, e0 as RangeResults, bz as Rel, a_ as RequestedFields, g8 as RequestedFieldsWithLiterals, aB as Resizing, fL as ResizingWithLiterals, aR as ResponsivenessBehaviour, f$ as ResponsivenessBehaviourWithLiterals, eX as RestoreInfo, e8 as Results, cw as RibbonStyles, bh as RichContent, dQ as ScalarAggregation, e5 as ScalarResult, b2 as ScalarType, gc as ScalarTypeWithLiterals, aT as Scaling, g1 as ScalingWithLiterals, dG as SearchCategoriesRequest, dV as SearchDetails, bd as SeoSchema, eN as SetArrangedItemsRequest, bg as Settings, cW as ShapeData, cX as ShapeDataStyles, aY as SingleEntityOpsRequestedFields, g6 as SingleEntityOpsRequestedFieldsWithLiterals, b0 as SortDirection, ga as SortDirectionWithLiterals, aZ as SortOrder, g7 as SortOrderWithLiterals, a$ as SortType, g9 as SortTypeWithLiterals, dy as Sorting, ap as Source, fz as SourceWithLiterals, bu as Spoiler, co as SpoilerData, bn as Stop, bw as Styles, bX as StylesBorder, aq as StylesPosition, fA as StylesPositionWithLiterals, cG as TableCellData, cE as TableData, bf as Tag, ae as Target, fo as TargetWithLiterals, af as TextAlignment, fp as TextAlignmentWithLiterals, cg as TextData, d2 as TextNodeStyle, bB as TextStyle, bQ as Thumbnails, an as ThumbnailsAlignment, fx as ThumbnailsAlignmentWithLiterals, c$ as TocData, aD as Type, fN as TypeWithLiterals, d8 as URI, dc as URIs, dr as UpdateCategoryRequest, ds as UpdateCategoryResponse, es as UpdateCategoryVisibilityRequest, dN as ValueAggregation, dO as ValueAggregationOptionsOneOf, dX as ValueAggregationResult, e3 as ValueResult, d$ as ValueResults, aJ as VerticalAlignment, aQ as VerticalAlignmentAlignment, f_ as VerticalAlignmentAlignmentWithLiterals, fT as VerticalAlignmentWithLiterals, bK as Video, cz as VideoData, aj as ViewMode, ft as ViewModeWithLiterals, as as ViewRole, fC as ViewRoleWithLiterals, at as VoteRole, fD as VoteRoleWithLiterals, b9 as WebhookIdentityType, gj as WebhookIdentityTypeWithLiterals, ah as Width, ab as WidthType, fl as WidthTypeWithLiterals, fr as WidthWithLiterals, fh as utils } from './categories-v1-category-categories.universal-CVjL1ZhJ.js';
|
|
2
|
+
import { C as Category, a as CreateCategoryOptions, b as CreateCategoryApplicationErrors, c as CreateCategoryValidationErrors, T as TreeReference, G as GetCategoryOptions, U as UpdateCategory, d as UpdateCategoryOptions, e as UpdateCategoryApplicationErrors, D as DeleteCategoryApplicationErrors, f as CategorySearch, S as SearchCategoriesOptions, g as SearchCategoriesResponse, h as CountCategoriesOptions, i as CountCategoriesResponse, M as MoveCategoryOptions, j as MoveCategoryResponse, k as MoveCategoryApplicationErrors, l as MaskedCategory, B as BulkUpdateCategoriesOptions, m as BulkUpdateCategoriesResponse, n as BulkUpdateCategoriesApplicationErrors, o as UpdateCategoryVisibilityOptions, p as UpdateCategoryVisibilityResponse, q as UpdateCategoryVisibilityApplicationErrors, r as BulkShowCategoriesOptions, s as BulkShowCategoriesResponse, I as ItemReference, t as BulkAddItemsToCategoryOptions, u as BulkAddItemsToCategoryResponse, v as BulkAddItemsToCategoryApplicationErrors, w as BulkAddItemToCategoriesOptions, x as BulkAddItemToCategoriesResponse, y as BulkAddItemToCategoriesApplicationErrors, z as BulkRemoveItemsFromCategoryOptions, A as BulkRemoveItemsFromCategoryResponse, E as BulkRemoveItemsFromCategoryApplicationErrors, F as BulkRemoveItemFromCategoriesOptions, H as BulkRemoveItemFromCategoriesResponse, J as BulkRemoveItemFromCategoriesApplicationErrors, L as ListItemsInCategoryOptions, K as ListItemsInCategoryResponse, N as ListCategoriesForItemOptions, O as ListCategoriesForItemResponse, P as ListCategoriesForItemsOptions, Q as ListCategoriesForItemsResponse, R as ListTreesResponse, V as SetArrangedItemsOptions, W as SetArrangedItemsResponse, X as SetArrangedItemsApplicationErrors, Y as GetArrangedItemsResponse, Z as CategoryMovedEnvelope, _ as CategoryCreatedEnvelope, $ as CategoryDeletedEnvelope, a0 as CategoryItemAddedToCategoryEnvelope, a1 as CategoryItemRemovedFromCategoryEnvelope, a2 as CategoryItemsArrangedInCategoryEnvelope, a3 as CategoryUpdatedEnvelope, a4 as CategoryQuery, a5 as QueryCategoriesOptions, a6 as typedQueryCategories, a7 as CategoriesQueryBuilder } from './categories-v1-category-categories.universal-OJiAZwY0.js';
|
|
3
|
+
export { fb as AccountInfo, fe as AccountInfoMetadata, f2 as ActionEvent, dN as Aggregation, d_ as AggregationData, dO as AggregationKindOneOf, eh as AggregationResults, ei as AggregationResultsResultOneOf, e5 as AggregationResultsScalarResult, b7 as AggregationType, gl as AggregationTypeWithLiterals, aE as Alignment, fS as AlignmentWithLiterals, cl as AnchorData, da as App, cs as AppEmbedData, ct as AppEmbedDataAppDataOneOf, aG as AppType, fU as AppTypeWithLiterals, eu as ApplicationError, aA as AspectRatio, fO as AspectRatioWithLiterals, cN as AudioData, cW as Backdrop, aP as BackdropType, g1 as BackdropTypeWithLiterals, bs as Background, ca as BackgroundGradient, d0 as BackgroundImage, a9 as BackgroundType, fn as BackgroundTypeWithLiterals, cU as Banner, fc as BaseEventMetadata, cQ as BlockquoteData, cu as BookingData, bq as Border, cK as BorderColors, cL as BorderWidths, bd as Breadcrumb, bc as BreadcrumbsInfo, ev as BulkActionMetadata, eE as BulkAddItemToCategoriesRequest, f6 as BulkAddItemsToCategoryForMigrationRequest, f7 as BulkAddItemsToCategoryForMigrationResponse, eB as BulkAddItemsToCategoryRequest, es as BulkCategoriesResult, f4 as BulkCreateCategoriesForMigrationRequest, f5 as BulkCreateCategoriesForMigrationResponse, ey as BulkDeleteCategoriesRequest, ez as BulkDeleteCategoriesResponse, eA as BulkDeleteCategoriesResponseBulkCategoriesResult, eF as BulkItemToCategoriesResult, eC as BulkItemsToCategoryResult, eH as BulkRemoveItemFromCategoriesRequest, eG as BulkRemoveItemsFromCategoryRequest, gq as BulkSetItemCategoriesApplicationErrors, fk as BulkSetItemCategoriesOptions, eT as BulkSetItemCategoriesRequest, eU as BulkSetItemCategoriesResponse, ex as BulkShowCategoriesRequest, er as BulkUpdateCategoriesRequest, cP as BulletedListData, bn as ButtonData, ad as ButtonDataType, fr as ButtonDataTypeWithLiterals, cw as ButtonStyles, cR as CaptionData, c_ as CardData, c$ as CardDataBackground, aV as CardDataBackgroundType, g7 as CardDataBackgroundTypeWithLiterals, cz as CardStyles, fg as CategoriesQueryResult, dh as CategoryMoved, fh as CategoryQuerySpec, fi as CategorySearchSpec, eX as CategoryTreeNode, cJ as CellStyle, bC as CodeBlockData, cF as CollapsibleListData, cm as ColorData, br as Colors, aZ as ColumnSize, gb as ColumnSizeWithLiterals, gr as CommonQueryWithEntityContext, gs as CommonSearchWithEntityContext, dJ as CompactCategory, ep as CountCategoriesRequest, dn as CreateCategoryRequest, dp as CreateCategoryResponse, am as Crop, fA as CropWithLiterals, dD as CursorPaging, dF as CursorPagingMetadata, dA as CursorQuery, dB as CursorQueryPagingMethodOneOf, dL as CursorSearch, dM as CursorSearchPagingMethodOneOf, dG as Cursors, de as CustomTag, dV as DateHistogramAggregation, ed as DateHistogramResult, ef as DateHistogramResults, cj as Decoration, ck as DecorationDataOneOf, ax as DecorationType, fL as DecorationTypeWithLiterals, dx as DeleteCategoryRequest, dy as DeleteCategoryResponse, ej as DeprecatedSearchCategoriesWithOffsetRequest, en as DeprecatedSearchCategoriesWithOffsetResponse, ch as Design, aS as DesignTarget, g4 as DesignTargetWithLiterals, cH as Dimensions, aI as Direction, fW as DirectionWithLiterals, bE as DividerData, ai as DividerDataAlignment, fw as DividerDataAlignmentWithLiterals, d5 as DocumentStyle, eY as DomainEvent, eZ as DomainEventBodyOneOf, dq as DuplicateHandleErrorData, cD as EmbedData, f3 as Empty, e_ as EntityCreatedEvent, f1 as EntityDeletedEvent, f0 as EntityUpdatedEvent, cv as EventData, fd as EventMetadata, d7 as ExtendedFields, dd as File, bF as FileData, bG as FileSource, bH as FileSourceDataOneOf, cr as FontFamilyData, cp as FontSizeData, ay as FontType, fM as FontTypeWithLiterals, bU as GIF, bT as GIFData, ao as GIFType, fC as GIFTypeWithLiterals, bJ as GalleryData, bP as GalleryOptions, bQ as GalleryOptionsLayout, eS as GetArrangedItemsRequest, eV as GetCategoriesTreeRequest, eW as GetCategoriesTreeResponse, ff as GetCategoryBySlugOptions, dt as GetCategoryBySlugRequest, du as GetCategoryBySlugResponse, dr as GetCategoryRequest, ds as GetCategoryResponse, bo as Gradient, aa as GradientType, fo as GradientTypeWithLiterals, ee as GroupByValueResults, bW as HTMLData, bX as HTMLDataDataOneOf, bV as HeadingData, bx as Height, f9 as IdentificationData, fa as IdentificationDataIdOneOf, bL as Image, bY as ImageData, b_ as ImageDataStyles, aM as ImagePosition, aU as ImagePositionPosition, g6 as ImagePositionPositionWithLiterals, f_ as ImagePositionWithLiterals, aL as ImageScalingScaling, fZ as ImageScalingScalingWithLiterals, cx as ImageStyles, az as ImageStylesPosition, fN as ImageStylesPositionWithLiterals, dQ as IncludeMissingValuesOptions, aX as Indentation, g9 as IndentationWithLiterals, aH as InitialExpandedItems, fV as InitialExpandedItemsWithLiterals, b6 as Interval, gk as IntervalWithLiterals, d8 as InvalidateCache, d9 as InvalidateCacheGetByOneOf, bN as Item, di as ItemAddedToCategory, bO as ItemDataOneOf, et as ItemMetadata, eD as ItemReferenceMetadata, dk as ItemRemovedFromCategory, bR as ItemStyle, dj as ItemsAddedToCategory, dm as ItemsArrangedInCategory, dl as ItemsRemovedFromCategory, bg as Keyword, aF as Layout, cX as LayoutCellData, cS as LayoutData, cV as LayoutDataBackground, cT as LayoutDataBackgroundImage, aO as LayoutDataBackgroundType, g0 as LayoutDataBackgroundTypeWithLiterals, ak as LayoutType, fy as LayoutTypeWithLiterals, fT as LayoutWithLiterals, ag as LineStyle, fu as LineStyleWithLiterals, bz as Link, cn as LinkData, bA as LinkDataOneOf, b$ as LinkPreviewData, c0 as LinkPreviewDataStyles, eL as ListCategoriesForItemRequest, eM as ListCategoriesForItemsRequest, dH as ListCompactCategoriesByIdsRequest, dI as ListCompactCategoriesByIdsResponse, fj as ListItemsInCategoryOptionsPagingMethodOneOf, eI as ListItemsInCategoryRequest, eJ as ListItemsInCategoryRequestPagingMethodOneOf, aW as ListStyle, g8 as ListStyleWithLiterals, eO as ListTreesRequest, cM as ListValue, c1 as MapData, eN as MapItemToCategories, c2 as MapSettings, ar as MapType, fF as MapTypeWithLiterals, bK as Media, co as MentionData, f8 as MessageEnvelope, d4 as Metadata, b3 as MissingValues, gh as MissingValuesWithLiterals, b8 as Mode, gm as ModeWithLiterals, eq as MoveCategoryRequest, eP as MoveItemInCategoryRequest, ba as MoveItemInCategoryRequestPosition, go as MoveItemInCategoryRequestPositionWithLiterals, eQ as MoveItemInCategoryResponse, dY as NestedAggregation, dW as NestedAggregationItem, dX as NestedAggregationItemKindOneOf, e1 as NestedAggregationResults, e2 as NestedAggregationResultsResultOneOf, b5 as NestedAggregationType, gj as NestedAggregationTypeWithLiterals, ea as NestedResultValue, eb as NestedResultValueResultOneOf, eg as NestedResults, e6 as NestedValueAggregationResult, bk as Node, bl as NodeDataOneOf, bm as NodeStyle, a8 as NodeType, fm as NodeTypeWithLiterals, aK as NullValue, fY as NullValueWithLiterals, cE as Oembed, ek as OffsetSearch, el as OffsetSearchPagingMethodOneOf, c6 as Option, ce as OptionDesign, c9 as OptionLayout, cO as OrderedListData, al as Orientation, fz as OrientationWithLiterals, aN as Origin, f$ as OriginWithLiterals, bI as PDFSettings, db as Page, df as Pages, em as Paging, eo as PagingMetadata, eK as PagingMetadataV2, c3 as ParagraphData, be as ParentCategory, c5 as Permissions, aC as Placement, fQ as PlacementWithLiterals, cC as PlaybackOptions, bt as PluginContainerData, ac as PluginContainerDataAlignment, fq as PluginContainerDataAlignmentWithLiterals, bu as PluginContainerDataWidth, bv as PluginContainerDataWidthDataOneOf, cf as Poll, c4 as PollData, cg as PollDataLayout, cd as PollDesign, cb as PollDesignBackground, cc as PollDesignBackgroundBackgroundOneOf, aw as PollDesignBackgroundType, fK as PollDesignBackgroundTypeWithLiterals, c8 as PollLayout, av as PollLayoutDirection, fJ as PollLayoutDirectionWithLiterals, au as PollLayoutType, fI as PollLayoutTypeWithLiterals, c7 as PollSettings, b9 as Position, gn as PositionWithLiterals, cA as PricingData, dz as QueryCategoriesRequest, dE as QueryCategoriesResponse, dT as RangeAggregation, e0 as RangeAggregationResult, dP as RangeBucket, e8 as RangeResult, e4 as RangeResults, bB as Rel, b0 as RequestedFields, ge as RequestedFieldsWithLiterals, aB as Resizing, fP as ResizingWithLiterals, aR as ResponsivenessBehaviour, g3 as ResponsivenessBehaviourWithLiterals, e$ as RestoreInfo, ec as Results, cy as RibbonStyles, bj as RichContent, dU as ScalarAggregation, e9 as ScalarResult, b4 as ScalarType, gi as ScalarTypeWithLiterals, aT as Scaling, g5 as ScalingWithLiterals, dK as SearchCategoriesRequest, dZ as SearchDetails, bf as SeoSchema, eR as SetArrangedItemsRequest, bi as Settings, cY as ShapeData, cZ as ShapeDataStyles, a_ as SingleEntityOpsRequestedFields, gc as SingleEntityOpsRequestedFieldsWithLiterals, d3 as SmartBlockCellData, d2 as SmartBlockData, aY as SmartBlockDataType, ga as SmartBlockDataTypeWithLiterals, b2 as SortDirection, gg as SortDirectionWithLiterals, a$ as SortOrder, gd as SortOrderWithLiterals, b1 as SortType, gf as SortTypeWithLiterals, dC as Sorting, ap as Source, fD as SourceWithLiterals, bw as Spoiler, cq as SpoilerData, bp as Stop, by as Styles, bZ as StylesBorder, aq as StylesPosition, fE as StylesPositionWithLiterals, cI as TableCellData, cG as TableData, bh as Tag, ae as Target, fs as TargetWithLiterals, af as TextAlignment, ft as TextAlignmentWithLiterals, ci as TextData, d6 as TextNodeStyle, bD as TextStyle, bS as Thumbnails, an as ThumbnailsAlignment, fB as ThumbnailsAlignmentWithLiterals, d1 as TocData, aD as Type, fR as TypeWithLiterals, dc as URI, dg as URIs, dv as UpdateCategoryRequest, dw as UpdateCategoryResponse, ew as UpdateCategoryVisibilityRequest, dR as ValueAggregation, dS as ValueAggregationOptionsOneOf, d$ as ValueAggregationResult, e7 as ValueResult, e3 as ValueResults, aJ as VerticalAlignment, aQ as VerticalAlignmentAlignment, g2 as VerticalAlignmentAlignmentWithLiterals, fX as VerticalAlignmentWithLiterals, bM as Video, cB as VideoData, aj as ViewMode, fx as ViewModeWithLiterals, as as ViewRole, fG as ViewRoleWithLiterals, at as VoteRole, fH as VoteRoleWithLiterals, bb as WebhookIdentityType, gp as WebhookIdentityTypeWithLiterals, ah as Width, ab as WidthType, fp as WidthTypeWithLiterals, fv as WidthWithLiterals, fl as utils } from './categories-v1-category-categories.universal-OJiAZwY0.js';
|
|
4
4
|
|
|
5
5
|
declare function createCategory$1(httpClient: HttpClient): CreateCategorySignature;
|
|
6
6
|
interface CreateCategorySignature {
|
package/build/cjs/index.js
CHANGED
|
@@ -28,6 +28,7 @@ __export(index_exports, {
|
|
|
28
28
|
BackgroundType: () => BackgroundType,
|
|
29
29
|
ButtonDataType: () => ButtonDataType,
|
|
30
30
|
CardDataBackgroundType: () => CardDataBackgroundType,
|
|
31
|
+
ColumnSize: () => ColumnSize,
|
|
31
32
|
Crop: () => Crop,
|
|
32
33
|
DecorationType: () => DecorationType,
|
|
33
34
|
DesignTarget: () => DesignTarget,
|
|
@@ -69,6 +70,7 @@ __export(index_exports, {
|
|
|
69
70
|
ScalarType: () => ScalarType,
|
|
70
71
|
Scaling: () => Scaling,
|
|
71
72
|
SingleEntityOpsRequestedFields: () => SingleEntityOpsRequestedFields,
|
|
73
|
+
SmartBlockDataType: () => SmartBlockDataType,
|
|
72
74
|
SortDirection: () => SortDirection,
|
|
73
75
|
SortOrder: () => SortOrder,
|
|
74
76
|
SortType: () => SortType,
|
|
@@ -317,7 +319,10 @@ function createCategory(payload) {
|
|
|
317
319
|
path: "category.richContentDescription.nodes.cardData.backgroundImage.media.duration"
|
|
318
320
|
},
|
|
319
321
|
{ path: "category.richContentDescription.nodes.tocData.fontSize" },
|
|
320
|
-
{ path: "category.richContentDescription.nodes.tocData.itemSpacing" }
|
|
322
|
+
{ path: "category.richContentDescription.nodes.tocData.itemSpacing" },
|
|
323
|
+
{
|
|
324
|
+
path: "category.richContentDescription.nodes.smartBlockCellData.shape.duration"
|
|
325
|
+
}
|
|
321
326
|
]
|
|
322
327
|
}
|
|
323
328
|
]);
|
|
@@ -460,6 +465,9 @@ function createCategory(payload) {
|
|
|
460
465
|
},
|
|
461
466
|
{
|
|
462
467
|
path: "category.richContentDescription.nodes.tocData.itemSpacing"
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
path: "category.richContentDescription.nodes.smartBlockCellData.shape.duration"
|
|
463
471
|
}
|
|
464
472
|
]
|
|
465
473
|
}
|
|
@@ -610,6 +618,9 @@ function getCategory(payload) {
|
|
|
610
618
|
},
|
|
611
619
|
{
|
|
612
620
|
path: "category.richContentDescription.nodes.tocData.itemSpacing"
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
path: "category.richContentDescription.nodes.smartBlockCellData.shape.duration"
|
|
613
624
|
}
|
|
614
625
|
]
|
|
615
626
|
}
|
|
@@ -760,6 +771,9 @@ function getCategoryBySlug(payload) {
|
|
|
760
771
|
},
|
|
761
772
|
{
|
|
762
773
|
path: "category.richContentDescription.nodes.tocData.itemSpacing"
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
path: "category.richContentDescription.nodes.smartBlockCellData.shape.duration"
|
|
763
777
|
}
|
|
764
778
|
]
|
|
765
779
|
}
|
|
@@ -892,7 +906,10 @@ function updateCategory(payload) {
|
|
|
892
906
|
path: "category.richContentDescription.nodes.cardData.backgroundImage.media.duration"
|
|
893
907
|
},
|
|
894
908
|
{ path: "category.richContentDescription.nodes.tocData.fontSize" },
|
|
895
|
-
{ path: "category.richContentDescription.nodes.tocData.itemSpacing" }
|
|
909
|
+
{ path: "category.richContentDescription.nodes.tocData.itemSpacing" },
|
|
910
|
+
{
|
|
911
|
+
path: "category.richContentDescription.nodes.smartBlockCellData.shape.duration"
|
|
912
|
+
}
|
|
896
913
|
]
|
|
897
914
|
}
|
|
898
915
|
]);
|
|
@@ -1035,6 +1052,9 @@ function updateCategory(payload) {
|
|
|
1035
1052
|
},
|
|
1036
1053
|
{
|
|
1037
1054
|
path: "category.richContentDescription.nodes.tocData.itemSpacing"
|
|
1055
|
+
},
|
|
1056
|
+
{
|
|
1057
|
+
path: "category.richContentDescription.nodes.smartBlockCellData.shape.duration"
|
|
1038
1058
|
}
|
|
1039
1059
|
]
|
|
1040
1060
|
}
|
|
@@ -1206,6 +1226,9 @@ function queryCategories(payload) {
|
|
|
1206
1226
|
},
|
|
1207
1227
|
{
|
|
1208
1228
|
path: "categories.richContentDescription.nodes.tocData.itemSpacing"
|
|
1229
|
+
},
|
|
1230
|
+
{
|
|
1231
|
+
path: "categories.richContentDescription.nodes.smartBlockCellData.shape.duration"
|
|
1209
1232
|
}
|
|
1210
1233
|
]
|
|
1211
1234
|
}
|
|
@@ -1372,6 +1395,9 @@ function searchCategories(payload) {
|
|
|
1372
1395
|
{
|
|
1373
1396
|
path: "categories.richContentDescription.nodes.tocData.itemSpacing"
|
|
1374
1397
|
},
|
|
1398
|
+
{
|
|
1399
|
+
path: "categories.richContentDescription.nodes.smartBlockCellData.shape.duration"
|
|
1400
|
+
},
|
|
1375
1401
|
{ path: "aggregationData.results.ranges.results.from" },
|
|
1376
1402
|
{ path: "aggregationData.results.ranges.results.to" },
|
|
1377
1403
|
{
|
|
@@ -1574,6 +1600,9 @@ function bulkUpdateCategories(payload) {
|
|
|
1574
1600
|
},
|
|
1575
1601
|
{
|
|
1576
1602
|
path: "categories.category.richContentDescription.nodes.tocData.itemSpacing"
|
|
1603
|
+
},
|
|
1604
|
+
{
|
|
1605
|
+
path: "categories.category.richContentDescription.nodes.smartBlockCellData.shape.duration"
|
|
1577
1606
|
}
|
|
1578
1607
|
]
|
|
1579
1608
|
}
|
|
@@ -1717,6 +1746,9 @@ function bulkUpdateCategories(payload) {
|
|
|
1717
1746
|
},
|
|
1718
1747
|
{
|
|
1719
1748
|
path: "results.category.richContentDescription.nodes.tocData.itemSpacing"
|
|
1749
|
+
},
|
|
1750
|
+
{
|
|
1751
|
+
path: "results.category.richContentDescription.nodes.smartBlockCellData.shape.duration"
|
|
1720
1752
|
}
|
|
1721
1753
|
]
|
|
1722
1754
|
}
|
|
@@ -1867,6 +1899,9 @@ function updateCategoryVisibility(payload) {
|
|
|
1867
1899
|
},
|
|
1868
1900
|
{
|
|
1869
1901
|
path: "category.richContentDescription.nodes.tocData.itemSpacing"
|
|
1902
|
+
},
|
|
1903
|
+
{
|
|
1904
|
+
path: "category.richContentDescription.nodes.smartBlockCellData.shape.duration"
|
|
1870
1905
|
}
|
|
1871
1906
|
]
|
|
1872
1907
|
}
|
|
@@ -2017,6 +2052,9 @@ function bulkShowCategories(payload) {
|
|
|
2017
2052
|
},
|
|
2018
2053
|
{
|
|
2019
2054
|
path: "results.category.richContentDescription.nodes.tocData.itemSpacing"
|
|
2055
|
+
},
|
|
2056
|
+
{
|
|
2057
|
+
path: "results.category.richContentDescription.nodes.smartBlockCellData.shape.duration"
|
|
2020
2058
|
}
|
|
2021
2059
|
]
|
|
2022
2060
|
}
|
|
@@ -2334,6 +2372,8 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
2334
2372
|
NodeType2["SHAPE"] = "SHAPE";
|
|
2335
2373
|
NodeType2["CARD"] = "CARD";
|
|
2336
2374
|
NodeType2["TOC"] = "TOC";
|
|
2375
|
+
NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
|
|
2376
|
+
NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
|
|
2337
2377
|
return NodeType2;
|
|
2338
2378
|
})(NodeType || {});
|
|
2339
2379
|
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
@@ -2661,6 +2701,30 @@ var Indentation = /* @__PURE__ */ ((Indentation2) => {
|
|
|
2661
2701
|
Indentation2["FLAT"] = "FLAT";
|
|
2662
2702
|
return Indentation2;
|
|
2663
2703
|
})(Indentation || {});
|
|
2704
|
+
var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
|
|
2705
|
+
SmartBlockDataType2["SOLID_BOXES"] = "SOLID_BOXES";
|
|
2706
|
+
SmartBlockDataType2["NUMBERED_BOXES"] = "NUMBERED_BOXES";
|
|
2707
|
+
SmartBlockDataType2["STATS"] = "STATS";
|
|
2708
|
+
SmartBlockDataType2["CIRCLE_STATS"] = "CIRCLE_STATS";
|
|
2709
|
+
SmartBlockDataType2["SOLID_BOXES_ALTERNATING"] = "SOLID_BOXES_ALTERNATING";
|
|
2710
|
+
SmartBlockDataType2["SOLID_JOINED_BOXES"] = "SOLID_JOINED_BOXES";
|
|
2711
|
+
SmartBlockDataType2["SIDE_LINE_TEXT"] = "SIDE_LINE_TEXT";
|
|
2712
|
+
SmartBlockDataType2["TOP_LINE_TEXT"] = "TOP_LINE_TEXT";
|
|
2713
|
+
SmartBlockDataType2["OUTLINE_BOXES_WITH_TOP_CIRCLE"] = "OUTLINE_BOXES_WITH_TOP_CIRCLE";
|
|
2714
|
+
SmartBlockDataType2["BIG_BULLETS"] = "BIG_BULLETS";
|
|
2715
|
+
SmartBlockDataType2["SMALL_BULLETS"] = "SMALL_BULLETS";
|
|
2716
|
+
SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
|
|
2717
|
+
SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
|
|
2718
|
+
SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
|
|
2719
|
+
return SmartBlockDataType2;
|
|
2720
|
+
})(SmartBlockDataType || {});
|
|
2721
|
+
var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
|
|
2722
|
+
ColumnSize2["SMALL"] = "SMALL";
|
|
2723
|
+
ColumnSize2["MEDIUM"] = "MEDIUM";
|
|
2724
|
+
ColumnSize2["LARGE"] = "LARGE";
|
|
2725
|
+
ColumnSize2["EXTRA_LARGE"] = "EXTRA_LARGE";
|
|
2726
|
+
return ColumnSize2;
|
|
2727
|
+
})(ColumnSize || {});
|
|
2664
2728
|
var SingleEntityOpsRequestedFields = /* @__PURE__ */ ((SingleEntityOpsRequestedFields2) => {
|
|
2665
2729
|
SingleEntityOpsRequestedFields2["BREADCRUMBS_INFO"] = "BREADCRUMBS_INFO";
|
|
2666
2730
|
SingleEntityOpsRequestedFields2["DESCRIPTION"] = "DESCRIPTION";
|
|
@@ -3992,7 +4056,10 @@ var onCategoryCreated = (0, import_sdk_types.EventDefinition)(
|
|
|
3992
4056
|
path: "entity.richContentDescription.nodes.cardData.backgroundImage.media.duration"
|
|
3993
4057
|
},
|
|
3994
4058
|
{ path: "entity.richContentDescription.nodes.tocData.fontSize" },
|
|
3995
|
-
{ path: "entity.richContentDescription.nodes.tocData.itemSpacing" }
|
|
4059
|
+
{ path: "entity.richContentDescription.nodes.tocData.itemSpacing" },
|
|
4060
|
+
{
|
|
4061
|
+
path: "entity.richContentDescription.nodes.smartBlockCellData.shape.duration"
|
|
4062
|
+
}
|
|
3996
4063
|
]
|
|
3997
4064
|
}
|
|
3998
4065
|
])
|
|
@@ -4129,6 +4196,9 @@ var onCategoryDeleted = (0, import_sdk_types.EventDefinition)(
|
|
|
4129
4196
|
{ path: "undefined.richContentDescription.nodes.tocData.fontSize" },
|
|
4130
4197
|
{
|
|
4131
4198
|
path: "undefined.richContentDescription.nodes.tocData.itemSpacing"
|
|
4199
|
+
},
|
|
4200
|
+
{
|
|
4201
|
+
path: "undefined.richContentDescription.nodes.smartBlockCellData.shape.duration"
|
|
4132
4202
|
}
|
|
4133
4203
|
]
|
|
4134
4204
|
}
|
|
@@ -4305,6 +4375,9 @@ var onCategoryUpdated = (0, import_sdk_types.EventDefinition)(
|
|
|
4305
4375
|
},
|
|
4306
4376
|
{ path: "entity.richContentDescription.nodes.tocData.fontSize" },
|
|
4307
4377
|
{ path: "entity.richContentDescription.nodes.tocData.itemSpacing" },
|
|
4378
|
+
{
|
|
4379
|
+
path: "entity.richContentDescription.nodes.smartBlockCellData.shape.duration"
|
|
4380
|
+
},
|
|
4308
4381
|
{
|
|
4309
4382
|
path: "modifiedFields.richContentDescription.nodes.buttonData.styles.background.gradient.centerX"
|
|
4310
4383
|
},
|
|
@@ -4412,6 +4485,9 @@ var onCategoryUpdated = (0, import_sdk_types.EventDefinition)(
|
|
|
4412
4485
|
},
|
|
4413
4486
|
{
|
|
4414
4487
|
path: "modifiedFields.richContentDescription.nodes.tocData.itemSpacing"
|
|
4488
|
+
},
|
|
4489
|
+
{
|
|
4490
|
+
path: "modifiedFields.richContentDescription.nodes.smartBlockCellData.shape.duration"
|
|
4415
4491
|
}
|
|
4416
4492
|
]
|
|
4417
4493
|
}
|
|
@@ -4480,6 +4556,7 @@ var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(
|
|
|
4480
4556
|
BackgroundType,
|
|
4481
4557
|
ButtonDataType,
|
|
4482
4558
|
CardDataBackgroundType,
|
|
4559
|
+
ColumnSize,
|
|
4483
4560
|
Crop,
|
|
4484
4561
|
DecorationType,
|
|
4485
4562
|
DesignTarget,
|
|
@@ -4521,6 +4598,7 @@ var onCategoryUpdated2 = (0, import_event_definition_modules.createEventModule)(
|
|
|
4521
4598
|
ScalarType,
|
|
4522
4599
|
Scaling,
|
|
4523
4600
|
SingleEntityOpsRequestedFields,
|
|
4601
|
+
SmartBlockDataType,
|
|
4524
4602
|
SortDirection,
|
|
4525
4603
|
SortOrder,
|
|
4526
4604
|
SortType,
|