@wix/auto_sdk_quick-pages_contents 1.0.20 → 1.0.22

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 +17 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +53 -6
  5. package/build/cjs/index.typings.js +17 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +53 -6
  8. package/build/cjs/meta.js +17 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +16 -0
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +53 -6
  14. package/build/es/index.typings.mjs +16 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +53 -6
  17. package/build/es/meta.mjs +16 -0
  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 +17 -0
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +53 -6
  23. package/build/internal/cjs/index.typings.js +17 -0
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +53 -6
  26. package/build/internal/cjs/meta.js +17 -0
  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 +16 -0
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +53 -6
  32. package/build/internal/es/index.typings.mjs +16 -0
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +53 -6
  35. package/build/internal/es/meta.mjs +16 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -585,6 +585,10 @@ interface Node extends NodeDataOneOf {
585
585
  smartBlockData?: SmartBlockData;
586
586
  /** Data for a smart block cell node. */
587
587
  smartBlockCellData?: SmartBlockCellData;
588
+ /** Data for a checkbox list node. */
589
+ checkboxListData?: CheckboxListData;
590
+ /** Data for a list item node. */
591
+ listItemData?: ListItemNodeData;
588
592
  /** 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. */
589
593
  type?: NodeTypeWithLiterals;
590
594
  /** Node ID. */
@@ -662,6 +666,10 @@ interface NodeDataOneOf {
662
666
  smartBlockData?: SmartBlockData;
663
667
  /** Data for a smart block cell node. */
664
668
  smartBlockCellData?: SmartBlockCellData;
669
+ /** Data for a checkbox list node. */
670
+ checkboxListData?: CheckboxListData;
671
+ /** Data for a list item node. */
672
+ listItemData?: ListItemNodeData;
665
673
  }
666
674
  declare enum NodeType {
667
675
  PARAGRAPH = "PARAGRAPH",
@@ -702,10 +710,11 @@ declare enum NodeType {
702
710
  CARD = "CARD",
703
711
  TOC = "TOC",
704
712
  SMART_BLOCK = "SMART_BLOCK",
705
- SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
713
+ SMART_BLOCK_CELL = "SMART_BLOCK_CELL",
714
+ CHECKBOX_LIST = "CHECKBOX_LIST"
706
715
  }
707
716
  /** @enumType */
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';
717
+ 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' | 'CHECKBOX_LIST';
709
718
  interface NodeStyle {
710
719
  /** The top padding value in pixels. */
711
720
  paddingTop?: string | null;
@@ -2377,7 +2386,7 @@ interface LayoutData {
2377
2386
  containerData?: PluginContainerData;
2378
2387
  /** Defines where selected design propertied applies to */
2379
2388
  designTarget?: DesignTargetWithLiterals;
2380
- /** Banner configuration. When present, this layout is displayed as a banner. */
2389
+ /** Banner configuration. When present, this layout is attached to a document edge (top or bottom). */
2381
2390
  banner?: Banner;
2382
2391
  /** Background styling (color or gradient). */
2383
2392
  background?: LayoutDataBackground;
@@ -2424,6 +2433,14 @@ declare enum Origin {
2424
2433
  }
2425
2434
  /** @enumType */
2426
2435
  type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
2436
+ declare enum BannerPosition {
2437
+ /** Attached to the top edge (banner) */
2438
+ TOP = "TOP",
2439
+ /** Attached to the bottom edge (footer) */
2440
+ BOTTOM = "BOTTOM"
2441
+ }
2442
+ /** @enumType */
2443
+ type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
2427
2444
  /** Background type */
2428
2445
  declare enum LayoutDataBackgroundType {
2429
2446
  /** Solid color background */
@@ -2481,6 +2498,8 @@ type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
2481
2498
  interface Banner {
2482
2499
  /** Origin of the banner */
2483
2500
  origin?: OriginWithLiterals;
2501
+ /** Position of the banner */
2502
+ position?: BannerPositionWithLiterals;
2484
2503
  }
2485
2504
  /** Background styling (color or gradient) */
2486
2505
  interface LayoutDataBackground {
@@ -2688,10 +2707,28 @@ declare enum SmartBlockDataType {
2688
2707
  /** Process steps with numbered/icon labels above a horizontal line. */
2689
2708
  PROCESS_STEPS = "PROCESS_STEPS",
2690
2709
  /** Statistics with bar visual elements. */
2691
- BAR_STATS = "BAR_STATS"
2710
+ BAR_STATS = "BAR_STATS",
2711
+ /** Timeline layout with numbered chips on a connecting line; cells alternate around the line. */
2712
+ TIMELINE = "TIMELINE",
2713
+ /** Timeline layout with plain dot indicators; no numbers or shapes; cells alternate around the line. */
2714
+ MINIMAL_TIMELINE = "MINIMAL_TIMELINE",
2715
+ /** Numbered pill-shaped labels (stadium chips) with text content; supports HORIZONTAL (pill on top) and VERTICAL (pill on left) orientations. */
2716
+ PILLS = "PILLS",
2717
+ /** Star rating display with stars and a numeric value per cell. */
2718
+ STAR_RATING = "STAR_RATING",
2719
+ /** Outlined boxes with decorative quote glyphs at the top-left and bottom-right corners. */
2720
+ QUOTE_BOXES = "QUOTE_BOXES",
2721
+ /** Donut/ring with numbered annular-sector segments; cell text labels sit outside the ring. */
2722
+ CIRCLE = "CIRCLE",
2723
+ /** Hierarchical pyramid where each cell renders as a horizontal slice (apex at top, base at bottom) with the cell number or shape centered inside; text content sits beside (desktop) or below (mobile) the pyramid. */
2724
+ PYRAMID = "PYRAMID",
2725
+ /** Cells render a horizontal bar whose width scales with cell index, creating a staircase pattern; bar carries the cell number or a custom shape. */
2726
+ STAIRCASE = "STAIRCASE",
2727
+ /** Hierarchical funnel where each cell renders as a horizontal slice (wide at top, narrowing toward the bottom) with the cell number or shape centered inside; text content sits beside (desktop) or below (mobile) the funnel. */
2728
+ VERTICAL_FUNNEL = "VERTICAL_FUNNEL"
2692
2729
  }
2693
2730
  /** @enumType */
2694
- 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';
2731
+ 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' | 'TIMELINE' | 'MINIMAL_TIMELINE' | 'PILLS' | 'STAR_RATING' | 'QUOTE_BOXES' | 'CIRCLE' | 'PYRAMID' | 'STAIRCASE' | 'VERTICAL_FUNNEL';
2695
2732
  /** Column size controlling how many cells appear per row. */
2696
2733
  declare enum ColumnSize {
2697
2734
  /** Up to 4 cells in a row. */
@@ -2738,6 +2775,16 @@ interface SmartBlockCellData {
2738
2775
  */
2739
2776
  shapeColor?: string | null;
2740
2777
  }
2778
+ interface CheckboxListData {
2779
+ /** Indentation level from 0-4. */
2780
+ indentation?: number;
2781
+ /** Offset level from 0-4. */
2782
+ offset?: number | null;
2783
+ }
2784
+ interface ListItemNodeData {
2785
+ /** Checkbox list item state. Defaults to `false`. */
2786
+ checked?: boolean | null;
2787
+ }
2741
2788
  interface Metadata {
2742
2789
  /** Schema version. */
2743
2790
  version?: number;
@@ -3244,4 +3291,4 @@ declare const utils: {
3244
3291
  };
3245
3292
  };
3246
3293
 
3247
- 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 };
3294
+ 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, BannerPosition, type BannerPositionWithLiterals, 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 CheckboxListData, 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, type ListItemNodeData, 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 };
@@ -25,6 +25,7 @@ __export(index_typings_exports, {
25
25
  AspectRatio: () => AspectRatio,
26
26
  BackdropType: () => BackdropType,
27
27
  BackgroundType: () => BackgroundType,
28
+ BannerPosition: () => BannerPosition,
28
29
  ButtonDataType: () => ButtonDataType,
29
30
  ButtonSize: () => ButtonSize,
30
31
  CardDataBackgroundType: () => CardDataBackgroundType,
@@ -1259,6 +1260,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
1259
1260
  NodeType2["TOC"] = "TOC";
1260
1261
  NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
1261
1262
  NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
1263
+ NodeType2["CHECKBOX_LIST"] = "CHECKBOX_LIST";
1262
1264
  return NodeType2;
1263
1265
  })(NodeType || {});
1264
1266
  var StylesBackgroundType = /* @__PURE__ */ ((StylesBackgroundType2) => {
@@ -1522,6 +1524,11 @@ var Origin = /* @__PURE__ */ ((Origin2) => {
1522
1524
  Origin2["LAYOUT"] = "LAYOUT";
1523
1525
  return Origin2;
1524
1526
  })(Origin || {});
1527
+ var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
1528
+ BannerPosition2["TOP"] = "TOP";
1529
+ BannerPosition2["BOTTOM"] = "BOTTOM";
1530
+ return BannerPosition2;
1531
+ })(BannerPosition || {});
1525
1532
  var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
1526
1533
  LayoutDataBackgroundType2["COLOR"] = "COLOR";
1527
1534
  LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
@@ -1601,6 +1608,15 @@ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
1601
1608
  SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
1602
1609
  SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
1603
1610
  SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
1611
+ SmartBlockDataType2["TIMELINE"] = "TIMELINE";
1612
+ SmartBlockDataType2["MINIMAL_TIMELINE"] = "MINIMAL_TIMELINE";
1613
+ SmartBlockDataType2["PILLS"] = "PILLS";
1614
+ SmartBlockDataType2["STAR_RATING"] = "STAR_RATING";
1615
+ SmartBlockDataType2["QUOTE_BOXES"] = "QUOTE_BOXES";
1616
+ SmartBlockDataType2["CIRCLE"] = "CIRCLE";
1617
+ SmartBlockDataType2["PYRAMID"] = "PYRAMID";
1618
+ SmartBlockDataType2["STAIRCASE"] = "STAIRCASE";
1619
+ SmartBlockDataType2["VERTICAL_FUNNEL"] = "VERTICAL_FUNNEL";
1604
1620
  return SmartBlockDataType2;
1605
1621
  })(SmartBlockDataType || {});
1606
1622
  var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
@@ -1822,6 +1838,7 @@ var utils = {
1822
1838
  AspectRatio,
1823
1839
  BackdropType,
1824
1840
  BackgroundType,
1841
+ BannerPosition,
1825
1842
  ButtonDataType,
1826
1843
  ButtonSize,
1827
1844
  CardDataBackgroundType,