@wix/auto_sdk_quick-pages_contents 1.0.18 → 1.0.19
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/index.d.ts +1 -1
- package/build/cjs/index.js +52 -6
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +101 -5
- package/build/cjs/index.typings.js +52 -6
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +99 -3
- package/build/cjs/meta.js +52 -6
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +50 -6
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +101 -5
- package/build/es/index.typings.mjs +50 -6
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +99 -3
- package/build/es/meta.mjs +50 -6
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +52 -6
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +101 -5
- package/build/internal/cjs/index.typings.js +52 -6
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +99 -3
- package/build/internal/cjs/meta.js +52 -6
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +50 -6
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +101 -5
- package/build/internal/es/index.typings.mjs +50 -6
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +99 -3
- package/build/internal/es/meta.mjs +50 -6
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -581,6 +581,10 @@ interface Node extends NodeDataOneOf {
|
|
|
581
581
|
cardData?: CardData;
|
|
582
582
|
/** Data for a table of contents node. */
|
|
583
583
|
tocData?: TocData;
|
|
584
|
+
/** Data for a smart block node. */
|
|
585
|
+
smartBlockData?: SmartBlockData;
|
|
586
|
+
/** Data for a smart block cell node. */
|
|
587
|
+
smartBlockCellData?: SmartBlockCellData;
|
|
584
588
|
/** 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. */
|
|
585
589
|
type?: NodeTypeWithLiterals;
|
|
586
590
|
/** Node ID. */
|
|
@@ -654,6 +658,10 @@ interface NodeDataOneOf {
|
|
|
654
658
|
cardData?: CardData;
|
|
655
659
|
/** Data for a table of contents node. */
|
|
656
660
|
tocData?: TocData;
|
|
661
|
+
/** Data for a smart block node. */
|
|
662
|
+
smartBlockData?: SmartBlockData;
|
|
663
|
+
/** Data for a smart block cell node. */
|
|
664
|
+
smartBlockCellData?: SmartBlockCellData;
|
|
657
665
|
}
|
|
658
666
|
declare enum NodeType {
|
|
659
667
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -692,10 +700,12 @@ declare enum NodeType {
|
|
|
692
700
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
693
701
|
SHAPE = "SHAPE",
|
|
694
702
|
CARD = "CARD",
|
|
695
|
-
TOC = "TOC"
|
|
703
|
+
TOC = "TOC",
|
|
704
|
+
SMART_BLOCK = "SMART_BLOCK",
|
|
705
|
+
SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
|
|
696
706
|
}
|
|
697
707
|
/** @enumType */
|
|
698
|
-
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';
|
|
708
|
+
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';
|
|
699
709
|
interface NodeStyle {
|
|
700
710
|
/** The top padding value in pixels. */
|
|
701
711
|
paddingTop?: string | null;
|
|
@@ -1313,6 +1323,8 @@ interface HeadingData {
|
|
|
1313
1323
|
textStyle?: V1TextStyle;
|
|
1314
1324
|
/** Indentation level from 1-4. */
|
|
1315
1325
|
indentation?: number | null;
|
|
1326
|
+
/** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
|
|
1327
|
+
renderedLevel?: number | null;
|
|
1316
1328
|
}
|
|
1317
1329
|
interface HTMLData extends HTMLDataDataOneOf {
|
|
1318
1330
|
/** The URL for the HTML code for the node. */
|
|
@@ -2186,6 +2198,8 @@ interface TableData {
|
|
|
2186
2198
|
* @maxSize 4
|
|
2187
2199
|
*/
|
|
2188
2200
|
cellPadding?: number[];
|
|
2201
|
+
/** Table's alternative text. */
|
|
2202
|
+
altText?: string | null;
|
|
2189
2203
|
}
|
|
2190
2204
|
interface Dimensions {
|
|
2191
2205
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -2627,6 +2641,88 @@ declare enum Indentation {
|
|
|
2627
2641
|
}
|
|
2628
2642
|
/** @enumType */
|
|
2629
2643
|
type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
|
|
2644
|
+
/** Data for a smart block node. */
|
|
2645
|
+
interface SmartBlockData {
|
|
2646
|
+
/** The type of the smart block. */
|
|
2647
|
+
type?: SmartBlockDataTypeWithLiterals;
|
|
2648
|
+
/** Layout orientation. HORIZONTAL or VERTICAL. Optional for variants with fixed orientation. */
|
|
2649
|
+
orientation?: string | null;
|
|
2650
|
+
/** Column size controlling cells per row. */
|
|
2651
|
+
columnSize?: ColumnSizeWithLiterals;
|
|
2652
|
+
/** Border color (for SOLID_JOINED_BOXES variant). */
|
|
2653
|
+
borderColor?: string | null;
|
|
2654
|
+
/** Border width in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2655
|
+
borderWidth?: number | null;
|
|
2656
|
+
/** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2657
|
+
borderRadius?: number | null;
|
|
2658
|
+
}
|
|
2659
|
+
/** Layout type of the smart block */
|
|
2660
|
+
declare enum SmartBlockDataType {
|
|
2661
|
+
/** Grid-based layouts with solid box items containing title, body, and icon/image. */
|
|
2662
|
+
SOLID_BOXES = "SOLID_BOXES",
|
|
2663
|
+
/** Numbered boxes. */
|
|
2664
|
+
NUMBERED_BOXES = "NUMBERED_BOXES",
|
|
2665
|
+
/** Statistics display with large numbers/values. */
|
|
2666
|
+
STATS = "STATS",
|
|
2667
|
+
/** Statistics with circular visual elements. */
|
|
2668
|
+
CIRCLE_STATS = "CIRCLE_STATS",
|
|
2669
|
+
/** Staggered/zigzag grid layout with alternating box positions. */
|
|
2670
|
+
SOLID_BOXES_ALTERNATING = "SOLID_BOXES_ALTERNATING",
|
|
2671
|
+
/** Grid layout with boxes visually joined (no gaps, shared container border). */
|
|
2672
|
+
SOLID_JOINED_BOXES = "SOLID_JOINED_BOXES",
|
|
2673
|
+
/** Transparent cells with only a left side line. */
|
|
2674
|
+
SIDE_LINE_TEXT = "SIDE_LINE_TEXT",
|
|
2675
|
+
/** Transparent cells with only a top line. */
|
|
2676
|
+
TOP_LINE_TEXT = "TOP_LINE_TEXT",
|
|
2677
|
+
/** Outlined boxes with a numbered/icon circle at the top. */
|
|
2678
|
+
OUTLINE_BOXES_WITH_TOP_CIRCLE = "OUTLINE_BOXES_WITH_TOP_CIRCLE",
|
|
2679
|
+
/** Large icon bullets with text content. */
|
|
2680
|
+
BIG_BULLETS = "BIG_BULLETS",
|
|
2681
|
+
/** Small dot bullets with text content. */
|
|
2682
|
+
SMALL_BULLETS = "SMALL_BULLETS",
|
|
2683
|
+
/** Arrow icon bullets with text content. */
|
|
2684
|
+
ARROW_BULLETS = "ARROW_BULLETS",
|
|
2685
|
+
/** Process steps with numbered/icon labels above a horizontal line. */
|
|
2686
|
+
PROCESS_STEPS = "PROCESS_STEPS",
|
|
2687
|
+
/** Statistics with bar visual elements. */
|
|
2688
|
+
BAR_STATS = "BAR_STATS"
|
|
2689
|
+
}
|
|
2690
|
+
/** @enumType */
|
|
2691
|
+
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';
|
|
2692
|
+
/** Column size controlling how many cells appear per row. */
|
|
2693
|
+
declare enum ColumnSize {
|
|
2694
|
+
/** Up to 4 cells in a row. */
|
|
2695
|
+
SMALL = "SMALL",
|
|
2696
|
+
/** Up to 3 cells in a row (default). */
|
|
2697
|
+
MEDIUM = "MEDIUM",
|
|
2698
|
+
/** Up to 2 cells in a row. */
|
|
2699
|
+
LARGE = "LARGE",
|
|
2700
|
+
/** 1 cell in a row. */
|
|
2701
|
+
EXTRA_LARGE = "EXTRA_LARGE"
|
|
2702
|
+
}
|
|
2703
|
+
/** @enumType */
|
|
2704
|
+
type ColumnSizeWithLiterals = ColumnSize | 'SMALL' | 'MEDIUM' | 'LARGE' | 'EXTRA_LARGE';
|
|
2705
|
+
/** Data for a smart block cell node. */
|
|
2706
|
+
interface SmartBlockCellData {
|
|
2707
|
+
/** Optional label text for the cell (e.g., for stats variants). */
|
|
2708
|
+
label?: string | null;
|
|
2709
|
+
/** Shape file details. */
|
|
2710
|
+
shape?: Media;
|
|
2711
|
+
/** Border color of the cell. */
|
|
2712
|
+
borderColor?: string | null;
|
|
2713
|
+
/** Border width in pixels. */
|
|
2714
|
+
borderWidth?: number | null;
|
|
2715
|
+
/** Border radius in pixels. */
|
|
2716
|
+
borderRadius?: number | null;
|
|
2717
|
+
/** The type of the parent smart block (must match parent). */
|
|
2718
|
+
type?: SmartBlockDataTypeWithLiterals;
|
|
2719
|
+
/** Accent color for non-background variants (e.g., line, bullet, label color). */
|
|
2720
|
+
accentColor?: string | null;
|
|
2721
|
+
/** Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES). */
|
|
2722
|
+
backgroundColor?: string | null;
|
|
2723
|
+
/** Shape fill color as a hexadecimal value. */
|
|
2724
|
+
shapeColor?: string | null;
|
|
2725
|
+
}
|
|
2630
2726
|
interface Metadata {
|
|
2631
2727
|
/** Schema version. */
|
|
2632
2728
|
version?: number;
|
|
@@ -3127,10 +3223,10 @@ type ContentQuery = {
|
|
|
3127
3223
|
};
|
|
3128
3224
|
declare const utils: {
|
|
3129
3225
|
query: {
|
|
3130
|
-
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Content, ContentQuerySpec, ContentQuery>;
|
|
3131
|
-
Filter: _wix_sdk_types.FilterFactory<Content, ContentQuerySpec>; /**
|
|
3226
|
+
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Content, ContentQuerySpec, ContentQuery>; /** Map settings. */
|
|
3227
|
+
Filter: _wix_sdk_types.FilterFactory<Content, ContentQuerySpec>; /** The address to display on the map. */
|
|
3132
3228
|
Sort: _wix_sdk_types.SortFactory<ContentQuerySpec>;
|
|
3133
3229
|
};
|
|
3134
3230
|
};
|
|
3135
3231
|
|
|
3136
|
-
export { type AccountInfo, type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundBackgroundTypeOptionsOneOf, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type Button, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, ButtonSize, type ButtonSizeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type CellStyle, type Center, type CodeBlockData, type CollapsibleListData, type ColorData, type ColorOptions, type ColorSwatch, type ColorSwatchColorTypeOptionsOneOf, ColorSwatchType, type ColorSwatchTypeWithLiterals, type Colors, type CommonQueryWithEntityContext, type Content, type ContentQuery, type ContentQuerySpec, type ContentsQueryBuilder, type ContentsQueryResult, type CreateContentRequest, type CreateContentResponse, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetContentRequest, type GetContentResponse, type GetLatestContentByPageIdRequest, type GetLatestContentByPageIdResponse, type Gradient, type GradientGradientTypeOptionsOneOf, type GradientStop, GradientType, type GradientTypeWithLiterals, Group, type GroupWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type Hover, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageBorder, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, type ImageOptions, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScaling, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemImage, type ItemStyle, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutDataImagePosition, type LayoutDataImagePositionWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, ListStyle, type ListStyleWithLiterals, type ListValue, type LockLatestContentByPageIdRequest, type LockLatestContentByPageIdResponse, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataDesign, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, type PricingData, type QueryContentsRequest, type QueryContentsResponse, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type Settings, type ShapeData, type ShapeDataStyles, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Stop, type Styles, type StylesBackground, StylesBackgroundType, type StylesBackgroundTypeWithLiterals, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubmitContentOptions, type SubmitContentRequest, type SubmitContentResponse, type TableCellData, type TableData, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, Type, type TypeWithLiterals, type Typography, type V1Gradient, V1GradientType, type V1GradientTypeWithLiterals, type V1TextStyle, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, typedQueryContents, utils };
|
|
3232
|
+
export { type AccountInfo, type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundBackgroundTypeOptionsOneOf, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type Button, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, ButtonSize, type ButtonSizeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type CellStyle, type Center, type CodeBlockData, type CollapsibleListData, type ColorData, type ColorOptions, type ColorSwatch, type ColorSwatchColorTypeOptionsOneOf, ColorSwatchType, type ColorSwatchTypeWithLiterals, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, type Content, type ContentQuery, type ContentQuerySpec, type ContentsQueryBuilder, type ContentsQueryResult, type CreateContentRequest, type CreateContentResponse, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetContentRequest, type GetContentResponse, type GetLatestContentByPageIdRequest, type GetLatestContentByPageIdResponse, type Gradient, type GradientGradientTypeOptionsOneOf, type GradientStop, GradientType, type GradientTypeWithLiterals, Group, type GroupWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type Hover, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageBorder, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, type ImageOptions, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScaling, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemImage, type ItemStyle, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutDataImagePosition, type LayoutDataImagePositionWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, ListStyle, type ListStyleWithLiterals, type ListValue, type LockLatestContentByPageIdRequest, type LockLatestContentByPageIdResponse, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataDesign, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, type PricingData, type QueryContentsRequest, type QueryContentsResponse, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type Settings, type ShapeData, type ShapeDataStyles, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Stop, type Styles, type StylesBackground, StylesBackgroundType, type StylesBackgroundTypeWithLiterals, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubmitContentOptions, type SubmitContentRequest, type SubmitContentResponse, type TableCellData, type TableData, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, Type, type TypeWithLiterals, type Typography, type V1Gradient, V1GradientType, type V1GradientTypeWithLiterals, type V1TextStyle, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, typedQueryContents, utils };
|
|
@@ -29,6 +29,7 @@ __export(index_typings_exports, {
|
|
|
29
29
|
ButtonSize: () => ButtonSize,
|
|
30
30
|
CardDataBackgroundType: () => CardDataBackgroundType,
|
|
31
31
|
ColorSwatchType: () => ColorSwatchType,
|
|
32
|
+
ColumnSize: () => ColumnSize,
|
|
32
33
|
Crop: () => Crop,
|
|
33
34
|
DecorationType: () => DecorationType,
|
|
34
35
|
DesignTarget: () => DesignTarget,
|
|
@@ -64,6 +65,7 @@ __export(index_typings_exports, {
|
|
|
64
65
|
Resizing: () => Resizing,
|
|
65
66
|
ResponsivenessBehaviour: () => ResponsivenessBehaviour,
|
|
66
67
|
Scaling: () => Scaling,
|
|
68
|
+
SmartBlockDataType: () => SmartBlockDataType,
|
|
67
69
|
SortOrder: () => SortOrder,
|
|
68
70
|
Source: () => Source,
|
|
69
71
|
StylesBackgroundType: () => StylesBackgroundType,
|
|
@@ -291,7 +293,10 @@ function getContent(payload) {
|
|
|
291
293
|
path: "content.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
292
294
|
},
|
|
293
295
|
{ path: "content.richContent.nodes.tocData.fontSize" },
|
|
294
|
-
{ path: "content.richContent.nodes.tocData.itemSpacing" }
|
|
296
|
+
{ path: "content.richContent.nodes.tocData.itemSpacing" },
|
|
297
|
+
{
|
|
298
|
+
path: "content.richContent.nodes.smartBlockCellData.shape.duration"
|
|
299
|
+
}
|
|
295
300
|
]
|
|
296
301
|
}
|
|
297
302
|
])
|
|
@@ -415,7 +420,8 @@ function submitContent(payload) {
|
|
|
415
420
|
},
|
|
416
421
|
{ path: "richContent.nodes.cardData.backgroundImage.media.duration" },
|
|
417
422
|
{ path: "richContent.nodes.tocData.fontSize" },
|
|
418
|
-
{ path: "richContent.nodes.tocData.itemSpacing" }
|
|
423
|
+
{ path: "richContent.nodes.tocData.itemSpacing" },
|
|
424
|
+
{ path: "richContent.nodes.smartBlockCellData.shape.duration" }
|
|
419
425
|
]
|
|
420
426
|
},
|
|
421
427
|
{
|
|
@@ -593,7 +599,10 @@ function submitContent(payload) {
|
|
|
593
599
|
path: "content.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
594
600
|
},
|
|
595
601
|
{ path: "content.richContent.nodes.tocData.fontSize" },
|
|
596
|
-
{ path: "content.richContent.nodes.tocData.itemSpacing" }
|
|
602
|
+
{ path: "content.richContent.nodes.tocData.itemSpacing" },
|
|
603
|
+
{
|
|
604
|
+
path: "content.richContent.nodes.smartBlockCellData.shape.duration"
|
|
605
|
+
}
|
|
597
606
|
]
|
|
598
607
|
}
|
|
599
608
|
])
|
|
@@ -771,7 +780,10 @@ function getLatestContentByPageId(payload) {
|
|
|
771
780
|
path: "content.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
772
781
|
},
|
|
773
782
|
{ path: "content.richContent.nodes.tocData.fontSize" },
|
|
774
|
-
{ path: "content.richContent.nodes.tocData.itemSpacing" }
|
|
783
|
+
{ path: "content.richContent.nodes.tocData.itemSpacing" },
|
|
784
|
+
{
|
|
785
|
+
path: "content.richContent.nodes.smartBlockCellData.shape.duration"
|
|
786
|
+
}
|
|
775
787
|
]
|
|
776
788
|
}
|
|
777
789
|
])
|
|
@@ -949,7 +961,10 @@ function lockLatestContentByPageId(payload) {
|
|
|
949
961
|
path: "content.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
950
962
|
},
|
|
951
963
|
{ path: "content.richContent.nodes.tocData.fontSize" },
|
|
952
|
-
{ path: "content.richContent.nodes.tocData.itemSpacing" }
|
|
964
|
+
{ path: "content.richContent.nodes.tocData.itemSpacing" },
|
|
965
|
+
{
|
|
966
|
+
path: "content.richContent.nodes.smartBlockCellData.shape.duration"
|
|
967
|
+
}
|
|
953
968
|
]
|
|
954
969
|
}
|
|
955
970
|
])
|
|
@@ -1129,7 +1144,10 @@ function queryContents(payload) {
|
|
|
1129
1144
|
path: "contents.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1130
1145
|
},
|
|
1131
1146
|
{ path: "contents.richContent.nodes.tocData.fontSize" },
|
|
1132
|
-
{ path: "contents.richContent.nodes.tocData.itemSpacing" }
|
|
1147
|
+
{ path: "contents.richContent.nodes.tocData.itemSpacing" },
|
|
1148
|
+
{
|
|
1149
|
+
path: "contents.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1150
|
+
}
|
|
1133
1151
|
]
|
|
1134
1152
|
}
|
|
1135
1153
|
]),
|
|
@@ -1239,6 +1257,8 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
1239
1257
|
NodeType2["SHAPE"] = "SHAPE";
|
|
1240
1258
|
NodeType2["CARD"] = "CARD";
|
|
1241
1259
|
NodeType2["TOC"] = "TOC";
|
|
1260
|
+
NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
|
|
1261
|
+
NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
|
|
1242
1262
|
return NodeType2;
|
|
1243
1263
|
})(NodeType || {});
|
|
1244
1264
|
var StylesBackgroundType = /* @__PURE__ */ ((StylesBackgroundType2) => {
|
|
@@ -1566,6 +1586,30 @@ var Indentation = /* @__PURE__ */ ((Indentation2) => {
|
|
|
1566
1586
|
Indentation2["FLAT"] = "FLAT";
|
|
1567
1587
|
return Indentation2;
|
|
1568
1588
|
})(Indentation || {});
|
|
1589
|
+
var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
|
|
1590
|
+
SmartBlockDataType2["SOLID_BOXES"] = "SOLID_BOXES";
|
|
1591
|
+
SmartBlockDataType2["NUMBERED_BOXES"] = "NUMBERED_BOXES";
|
|
1592
|
+
SmartBlockDataType2["STATS"] = "STATS";
|
|
1593
|
+
SmartBlockDataType2["CIRCLE_STATS"] = "CIRCLE_STATS";
|
|
1594
|
+
SmartBlockDataType2["SOLID_BOXES_ALTERNATING"] = "SOLID_BOXES_ALTERNATING";
|
|
1595
|
+
SmartBlockDataType2["SOLID_JOINED_BOXES"] = "SOLID_JOINED_BOXES";
|
|
1596
|
+
SmartBlockDataType2["SIDE_LINE_TEXT"] = "SIDE_LINE_TEXT";
|
|
1597
|
+
SmartBlockDataType2["TOP_LINE_TEXT"] = "TOP_LINE_TEXT";
|
|
1598
|
+
SmartBlockDataType2["OUTLINE_BOXES_WITH_TOP_CIRCLE"] = "OUTLINE_BOXES_WITH_TOP_CIRCLE";
|
|
1599
|
+
SmartBlockDataType2["BIG_BULLETS"] = "BIG_BULLETS";
|
|
1600
|
+
SmartBlockDataType2["SMALL_BULLETS"] = "SMALL_BULLETS";
|
|
1601
|
+
SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
|
|
1602
|
+
SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
|
|
1603
|
+
SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
|
|
1604
|
+
return SmartBlockDataType2;
|
|
1605
|
+
})(SmartBlockDataType || {});
|
|
1606
|
+
var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
|
|
1607
|
+
ColumnSize2["SMALL"] = "SMALL";
|
|
1608
|
+
ColumnSize2["MEDIUM"] = "MEDIUM";
|
|
1609
|
+
ColumnSize2["LARGE"] = "LARGE";
|
|
1610
|
+
ColumnSize2["EXTRA_LARGE"] = "EXTRA_LARGE";
|
|
1611
|
+
return ColumnSize2;
|
|
1612
|
+
})(ColumnSize || {});
|
|
1569
1613
|
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|
|
1570
1614
|
SortOrder2["ASC"] = "ASC";
|
|
1571
1615
|
SortOrder2["DESC"] = "DESC";
|
|
@@ -1782,6 +1826,7 @@ var utils = {
|
|
|
1782
1826
|
ButtonSize,
|
|
1783
1827
|
CardDataBackgroundType,
|
|
1784
1828
|
ColorSwatchType,
|
|
1829
|
+
ColumnSize,
|
|
1785
1830
|
Crop,
|
|
1786
1831
|
DecorationType,
|
|
1787
1832
|
DesignTarget,
|
|
@@ -1817,6 +1862,7 @@ var utils = {
|
|
|
1817
1862
|
Resizing,
|
|
1818
1863
|
ResponsivenessBehaviour,
|
|
1819
1864
|
Scaling,
|
|
1865
|
+
SmartBlockDataType,
|
|
1820
1866
|
SortOrder,
|
|
1821
1867
|
Source,
|
|
1822
1868
|
StylesBackgroundType,
|