@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.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +52 -6
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +101 -5
  5. package/build/cjs/index.typings.js +52 -6
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +99 -3
  8. package/build/cjs/meta.js +52 -6
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +50 -6
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +101 -5
  14. package/build/es/index.typings.mjs +50 -6
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +99 -3
  17. package/build/es/meta.mjs +50 -6
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +52 -6
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +101 -5
  23. package/build/internal/cjs/index.typings.js +52 -6
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +99 -3
  26. package/build/internal/cjs/meta.js +52 -6
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +50 -6
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +101 -5
  32. package/build/internal/es/index.typings.mjs +50 -6
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +99 -3
  35. package/build/internal/es/meta.mjs +50 -6
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. 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;
@@ -3188,10 +3284,10 @@ type ContentQuery = {
3188
3284
  };
3189
3285
  declare const utils: {
3190
3286
  query: {
3191
- QueryBuilder: () => _wix_sdk_types.QueryBuilder<Content, ContentQuerySpec, ContentQuery>;
3192
- Filter: _wix_sdk_types.FilterFactory<Content, ContentQuerySpec>; /** Location name. */
3287
+ QueryBuilder: () => _wix_sdk_types.QueryBuilder<Content, ContentQuerySpec, ContentQuery>; /** Map settings. */
3288
+ Filter: _wix_sdk_types.FilterFactory<Content, ContentQuerySpec>; /** The address to display on the map. */
3193
3289
  Sort: _wix_sdk_types.SortFactory<ContentQuerySpec>;
3194
3290
  };
3195
3291
  };
3196
3292
 
3197
- 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, getContent, getLatestContentByPageId, lockLatestContentByPageId, queryContents, submitContent, typedQueryContents, utils };
3293
+ 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, getContent, getLatestContentByPageId, lockLatestContentByPageId, queryContents, submitContent, typedQueryContents, utils };
@@ -201,7 +201,10 @@ function getContent(payload) {
201
201
  path: "content.richContent.nodes.cardData.backgroundImage.media.duration"
202
202
  },
203
203
  { path: "content.richContent.nodes.tocData.fontSize" },
204
- { path: "content.richContent.nodes.tocData.itemSpacing" }
204
+ { path: "content.richContent.nodes.tocData.itemSpacing" },
205
+ {
206
+ path: "content.richContent.nodes.smartBlockCellData.shape.duration"
207
+ }
205
208
  ]
206
209
  }
207
210
  ])
@@ -325,7 +328,8 @@ function submitContent(payload) {
325
328
  },
326
329
  { path: "richContent.nodes.cardData.backgroundImage.media.duration" },
327
330
  { path: "richContent.nodes.tocData.fontSize" },
328
- { path: "richContent.nodes.tocData.itemSpacing" }
331
+ { path: "richContent.nodes.tocData.itemSpacing" },
332
+ { path: "richContent.nodes.smartBlockCellData.shape.duration" }
329
333
  ]
330
334
  },
331
335
  {
@@ -503,7 +507,10 @@ function submitContent(payload) {
503
507
  path: "content.richContent.nodes.cardData.backgroundImage.media.duration"
504
508
  },
505
509
  { path: "content.richContent.nodes.tocData.fontSize" },
506
- { path: "content.richContent.nodes.tocData.itemSpacing" }
510
+ { path: "content.richContent.nodes.tocData.itemSpacing" },
511
+ {
512
+ path: "content.richContent.nodes.smartBlockCellData.shape.duration"
513
+ }
507
514
  ]
508
515
  }
509
516
  ])
@@ -681,7 +688,10 @@ function getLatestContentByPageId(payload) {
681
688
  path: "content.richContent.nodes.cardData.backgroundImage.media.duration"
682
689
  },
683
690
  { path: "content.richContent.nodes.tocData.fontSize" },
684
- { path: "content.richContent.nodes.tocData.itemSpacing" }
691
+ { path: "content.richContent.nodes.tocData.itemSpacing" },
692
+ {
693
+ path: "content.richContent.nodes.smartBlockCellData.shape.duration"
694
+ }
685
695
  ]
686
696
  }
687
697
  ])
@@ -859,7 +869,10 @@ function lockLatestContentByPageId(payload) {
859
869
  path: "content.richContent.nodes.cardData.backgroundImage.media.duration"
860
870
  },
861
871
  { path: "content.richContent.nodes.tocData.fontSize" },
862
- { path: "content.richContent.nodes.tocData.itemSpacing" }
872
+ { path: "content.richContent.nodes.tocData.itemSpacing" },
873
+ {
874
+ path: "content.richContent.nodes.smartBlockCellData.shape.duration"
875
+ }
863
876
  ]
864
877
  }
865
878
  ])
@@ -1039,7 +1052,10 @@ function queryContents(payload) {
1039
1052
  path: "contents.richContent.nodes.cardData.backgroundImage.media.duration"
1040
1053
  },
1041
1054
  { path: "contents.richContent.nodes.tocData.fontSize" },
1042
- { path: "contents.richContent.nodes.tocData.itemSpacing" }
1055
+ { path: "contents.richContent.nodes.tocData.itemSpacing" },
1056
+ {
1057
+ path: "contents.richContent.nodes.smartBlockCellData.shape.duration"
1058
+ }
1043
1059
  ]
1044
1060
  }
1045
1061
  ]),
@@ -1149,6 +1165,8 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
1149
1165
  NodeType2["SHAPE"] = "SHAPE";
1150
1166
  NodeType2["CARD"] = "CARD";
1151
1167
  NodeType2["TOC"] = "TOC";
1168
+ NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
1169
+ NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
1152
1170
  return NodeType2;
1153
1171
  })(NodeType || {});
1154
1172
  var StylesBackgroundType = /* @__PURE__ */ ((StylesBackgroundType2) => {
@@ -1476,6 +1494,30 @@ var Indentation = /* @__PURE__ */ ((Indentation2) => {
1476
1494
  Indentation2["FLAT"] = "FLAT";
1477
1495
  return Indentation2;
1478
1496
  })(Indentation || {});
1497
+ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
1498
+ SmartBlockDataType2["SOLID_BOXES"] = "SOLID_BOXES";
1499
+ SmartBlockDataType2["NUMBERED_BOXES"] = "NUMBERED_BOXES";
1500
+ SmartBlockDataType2["STATS"] = "STATS";
1501
+ SmartBlockDataType2["CIRCLE_STATS"] = "CIRCLE_STATS";
1502
+ SmartBlockDataType2["SOLID_BOXES_ALTERNATING"] = "SOLID_BOXES_ALTERNATING";
1503
+ SmartBlockDataType2["SOLID_JOINED_BOXES"] = "SOLID_JOINED_BOXES";
1504
+ SmartBlockDataType2["SIDE_LINE_TEXT"] = "SIDE_LINE_TEXT";
1505
+ SmartBlockDataType2["TOP_LINE_TEXT"] = "TOP_LINE_TEXT";
1506
+ SmartBlockDataType2["OUTLINE_BOXES_WITH_TOP_CIRCLE"] = "OUTLINE_BOXES_WITH_TOP_CIRCLE";
1507
+ SmartBlockDataType2["BIG_BULLETS"] = "BIG_BULLETS";
1508
+ SmartBlockDataType2["SMALL_BULLETS"] = "SMALL_BULLETS";
1509
+ SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
1510
+ SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
1511
+ SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
1512
+ return SmartBlockDataType2;
1513
+ })(SmartBlockDataType || {});
1514
+ var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
1515
+ ColumnSize2["SMALL"] = "SMALL";
1516
+ ColumnSize2["MEDIUM"] = "MEDIUM";
1517
+ ColumnSize2["LARGE"] = "LARGE";
1518
+ ColumnSize2["EXTRA_LARGE"] = "EXTRA_LARGE";
1519
+ return ColumnSize2;
1520
+ })(ColumnSize || {});
1479
1521
  var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
1480
1522
  SortOrder2["ASC"] = "ASC";
1481
1523
  SortOrder2["DESC"] = "DESC";
@@ -1691,6 +1733,7 @@ export {
1691
1733
  ButtonSize,
1692
1734
  CardDataBackgroundType,
1693
1735
  ColorSwatchType,
1736
+ ColumnSize,
1694
1737
  Crop,
1695
1738
  DecorationType,
1696
1739
  DesignTarget,
@@ -1726,6 +1769,7 @@ export {
1726
1769
  Resizing,
1727
1770
  ResponsivenessBehaviour,
1728
1771
  Scaling,
1772
+ SmartBlockDataType,
1729
1773
  SortOrder,
1730
1774
  Source,
1731
1775
  StylesBackgroundType,