@wix/auto_sdk_quick-pages_contents 1.0.17 → 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 +80 -1
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +158 -7
  5. package/build/cjs/index.typings.js +80 -1
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +156 -5
  8. package/build/cjs/meta.js +80 -1
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +76 -1
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +158 -7
  14. package/build/es/index.typings.mjs +76 -1
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +156 -5
  17. package/build/es/meta.mjs +76 -1
  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 +80 -1
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +158 -7
  23. package/build/internal/cjs/index.typings.js +80 -1
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +156 -5
  26. package/build/internal/cjs/meta.js +80 -1
  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 +76 -1
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +158 -7
  32. package/build/internal/es/index.typings.mjs +76 -1
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +156 -5
  35. package/build/internal/es/meta.mjs +76 -1
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +5 -4
@@ -579,6 +579,12 @@ interface Node extends NodeDataOneOf {
579
579
  shapeData?: ShapeData;
580
580
  /** Data for a card node. */
581
581
  cardData?: CardData;
582
+ /** Data for a table of contents node. */
583
+ tocData?: TocData;
584
+ /** Data for a smart block node. */
585
+ smartBlockData?: SmartBlockData;
586
+ /** Data for a smart block cell node. */
587
+ smartBlockCellData?: SmartBlockCellData;
582
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. */
583
589
  type?: NodeTypeWithLiterals;
584
590
  /** Node ID. */
@@ -650,6 +656,12 @@ interface NodeDataOneOf {
650
656
  shapeData?: ShapeData;
651
657
  /** Data for a card node. */
652
658
  cardData?: CardData;
659
+ /** Data for a table of contents node. */
660
+ tocData?: TocData;
661
+ /** Data for a smart block node. */
662
+ smartBlockData?: SmartBlockData;
663
+ /** Data for a smart block cell node. */
664
+ smartBlockCellData?: SmartBlockCellData;
653
665
  }
654
666
  declare enum NodeType {
655
667
  PARAGRAPH = "PARAGRAPH",
@@ -687,10 +699,13 @@ declare enum NodeType {
687
699
  LAYOUT = "LAYOUT",
688
700
  LAYOUT_CELL = "LAYOUT_CELL",
689
701
  SHAPE = "SHAPE",
690
- CARD = "CARD"
702
+ CARD = "CARD",
703
+ TOC = "TOC",
704
+ SMART_BLOCK = "SMART_BLOCK",
705
+ SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
691
706
  }
692
707
  /** @enumType */
693
- 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';
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';
694
709
  interface NodeStyle {
695
710
  /** The top padding value in pixels. */
696
711
  paddingTop?: string | null;
@@ -1308,6 +1323,8 @@ interface HeadingData {
1308
1323
  textStyle?: V1TextStyle;
1309
1324
  /** Indentation level from 1-4. */
1310
1325
  indentation?: number | null;
1326
+ /** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
1327
+ renderedLevel?: number | null;
1311
1328
  }
1312
1329
  interface HTMLData extends HTMLDataDataOneOf {
1313
1330
  /** The URL for the HTML code for the node. */
@@ -1319,6 +1336,8 @@ interface HTMLData extends HTMLDataDataOneOf {
1319
1336
  * @deprecated
1320
1337
  */
1321
1338
  isAdsense?: boolean | null;
1339
+ /** The WixelWidget ID for AI_WIDGET source nodes. */
1340
+ widgetId?: string;
1322
1341
  /** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
1323
1342
  containerData?: PluginContainerData;
1324
1343
  /** The type of HTML code. */
@@ -1337,14 +1356,17 @@ interface HTMLDataDataOneOf {
1337
1356
  * @deprecated
1338
1357
  */
1339
1358
  isAdsense?: boolean | null;
1359
+ /** The WixelWidget ID for AI_WIDGET source nodes. */
1360
+ widgetId?: string;
1340
1361
  }
1341
1362
  declare enum Source {
1342
1363
  HTML = "HTML",
1343
1364
  ADSENSE = "ADSENSE",
1344
- AI = "AI"
1365
+ AI = "AI",
1366
+ AI_WIDGET = "AI_WIDGET"
1345
1367
  }
1346
1368
  /** @enumType */
1347
- type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
1369
+ type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI' | 'AI_WIDGET';
1348
1370
  interface ImageData {
1349
1371
  /** Styling for the image's container. */
1350
1372
  containerData?: PluginContainerData;
@@ -2176,6 +2198,8 @@ interface TableData {
2176
2198
  * @maxSize 4
2177
2199
  */
2178
2200
  cellPadding?: number[];
2201
+ /** Table's alternative text. */
2202
+ altText?: string | null;
2179
2203
  }
2180
2204
  interface Dimensions {
2181
2205
  /** An array representing relative width of each column in relation to the other columns. */
@@ -2572,6 +2596,133 @@ interface BackgroundImage {
2572
2596
  /** Position of background. Defaults to `CENTER`. */
2573
2597
  position?: ImagePositionPositionWithLiterals;
2574
2598
  }
2599
+ interface TocData {
2600
+ /** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
2601
+ includedHeadings?: number[];
2602
+ /** List style. Default: PLAIN. */
2603
+ listStyle?: ListStyleWithLiterals;
2604
+ /** Optional override for the font size in pixels. */
2605
+ fontSize?: number | null;
2606
+ /** Optional override for the vertical spacing between items in pixels. */
2607
+ itemSpacing?: number | null;
2608
+ /**
2609
+ * Optional override for the text color.
2610
+ * @format COLOR_HEX
2611
+ */
2612
+ color?: string | null;
2613
+ /** Indentation style. Default: NESTED. */
2614
+ indentation?: IndentationWithLiterals;
2615
+ }
2616
+ /** List style. */
2617
+ declare enum ListStyle {
2618
+ /** No markers (default) */
2619
+ PLAIN = "PLAIN",
2620
+ /** Numbered list */
2621
+ NUMBERED = "NUMBERED",
2622
+ /** Alphabetic letters */
2623
+ LETTERS = "LETTERS",
2624
+ /** Roman numerals */
2625
+ ROMAN = "ROMAN",
2626
+ /** Bulleted list */
2627
+ BULLETED = "BULLETED",
2628
+ /** Alphabetical index */
2629
+ ALPHABETICAL_INDEX = "ALPHABETICAL_INDEX",
2630
+ /** Alphabetical index (compact top-row only) */
2631
+ ALPHABETICAL_INDEX_COMPACT = "ALPHABETICAL_INDEX_COMPACT"
2632
+ }
2633
+ /** @enumType */
2634
+ type ListStyleWithLiterals = ListStyle | 'PLAIN' | 'NUMBERED' | 'LETTERS' | 'ROMAN' | 'BULLETED' | 'ALPHABETICAL_INDEX' | 'ALPHABETICAL_INDEX_COMPACT';
2635
+ /** Indentation style. */
2636
+ declare enum Indentation {
2637
+ /** Sub-headings indented under parents (default) */
2638
+ NESTED = "NESTED",
2639
+ /** All items at the same level */
2640
+ FLAT = "FLAT"
2641
+ }
2642
+ /** @enumType */
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
+ }
2575
2726
  interface Metadata {
2576
2727
  /** Schema version. */
2577
2728
  version?: number;
@@ -3072,10 +3223,10 @@ type ContentQuery = {
3072
3223
  };
3073
3224
  declare const utils: {
3074
3225
  query: {
3075
- QueryBuilder: () => _wix_sdk_types.QueryBuilder<Content, ContentQuerySpec, ContentQuery>;
3076
- Filter: _wix_sdk_types.FilterFactory<Content, ContentQuerySpec>; /** Location name. */
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. */
3077
3228
  Sort: _wix_sdk_types.SortFactory<ContentQuerySpec>;
3078
3229
  };
3079
3230
  };
3080
3231
 
3081
- 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, 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 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, 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 };
@@ -199,6 +199,11 @@ function getContent(payload) {
199
199
  },
200
200
  {
201
201
  path: "content.richContent.nodes.cardData.backgroundImage.media.duration"
202
+ },
203
+ { path: "content.richContent.nodes.tocData.fontSize" },
204
+ { path: "content.richContent.nodes.tocData.itemSpacing" },
205
+ {
206
+ path: "content.richContent.nodes.smartBlockCellData.shape.duration"
202
207
  }
203
208
  ]
204
209
  }
@@ -321,7 +326,10 @@ function submitContent(payload) {
321
326
  {
322
327
  path: "richContent.nodes.cardData.background.gradient.stops.position"
323
328
  },
324
- { path: "richContent.nodes.cardData.backgroundImage.media.duration" }
329
+ { path: "richContent.nodes.cardData.backgroundImage.media.duration" },
330
+ { path: "richContent.nodes.tocData.fontSize" },
331
+ { path: "richContent.nodes.tocData.itemSpacing" },
332
+ { path: "richContent.nodes.smartBlockCellData.shape.duration" }
325
333
  ]
326
334
  },
327
335
  {
@@ -497,6 +505,11 @@ function submitContent(payload) {
497
505
  },
498
506
  {
499
507
  path: "content.richContent.nodes.cardData.backgroundImage.media.duration"
508
+ },
509
+ { path: "content.richContent.nodes.tocData.fontSize" },
510
+ { path: "content.richContent.nodes.tocData.itemSpacing" },
511
+ {
512
+ path: "content.richContent.nodes.smartBlockCellData.shape.duration"
500
513
  }
501
514
  ]
502
515
  }
@@ -673,6 +686,11 @@ function getLatestContentByPageId(payload) {
673
686
  },
674
687
  {
675
688
  path: "content.richContent.nodes.cardData.backgroundImage.media.duration"
689
+ },
690
+ { path: "content.richContent.nodes.tocData.fontSize" },
691
+ { path: "content.richContent.nodes.tocData.itemSpacing" },
692
+ {
693
+ path: "content.richContent.nodes.smartBlockCellData.shape.duration"
676
694
  }
677
695
  ]
678
696
  }
@@ -849,6 +867,11 @@ function lockLatestContentByPageId(payload) {
849
867
  },
850
868
  {
851
869
  path: "content.richContent.nodes.cardData.backgroundImage.media.duration"
870
+ },
871
+ { path: "content.richContent.nodes.tocData.fontSize" },
872
+ { path: "content.richContent.nodes.tocData.itemSpacing" },
873
+ {
874
+ path: "content.richContent.nodes.smartBlockCellData.shape.duration"
852
875
  }
853
876
  ]
854
877
  }
@@ -1027,6 +1050,11 @@ function queryContents(payload) {
1027
1050
  },
1028
1051
  {
1029
1052
  path: "contents.richContent.nodes.cardData.backgroundImage.media.duration"
1053
+ },
1054
+ { path: "contents.richContent.nodes.tocData.fontSize" },
1055
+ { path: "contents.richContent.nodes.tocData.itemSpacing" },
1056
+ {
1057
+ path: "contents.richContent.nodes.smartBlockCellData.shape.duration"
1030
1058
  }
1031
1059
  ]
1032
1060
  }
@@ -1136,6 +1164,9 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
1136
1164
  NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
1137
1165
  NodeType2["SHAPE"] = "SHAPE";
1138
1166
  NodeType2["CARD"] = "CARD";
1167
+ NodeType2["TOC"] = "TOC";
1168
+ NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
1169
+ NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
1139
1170
  return NodeType2;
1140
1171
  })(NodeType || {});
1141
1172
  var StylesBackgroundType = /* @__PURE__ */ ((StylesBackgroundType2) => {
@@ -1246,6 +1277,7 @@ var Source = /* @__PURE__ */ ((Source2) => {
1246
1277
  Source2["HTML"] = "HTML";
1247
1278
  Source2["ADSENSE"] = "ADSENSE";
1248
1279
  Source2["AI"] = "AI";
1280
+ Source2["AI_WIDGET"] = "AI_WIDGET";
1249
1281
  return Source2;
1250
1282
  })(Source || {});
1251
1283
  var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
@@ -1447,6 +1479,45 @@ var CardDataBackgroundType = /* @__PURE__ */ ((CardDataBackgroundType2) => {
1447
1479
  CardDataBackgroundType2["GRADIENT"] = "GRADIENT";
1448
1480
  return CardDataBackgroundType2;
1449
1481
  })(CardDataBackgroundType || {});
1482
+ var ListStyle = /* @__PURE__ */ ((ListStyle2) => {
1483
+ ListStyle2["PLAIN"] = "PLAIN";
1484
+ ListStyle2["NUMBERED"] = "NUMBERED";
1485
+ ListStyle2["LETTERS"] = "LETTERS";
1486
+ ListStyle2["ROMAN"] = "ROMAN";
1487
+ ListStyle2["BULLETED"] = "BULLETED";
1488
+ ListStyle2["ALPHABETICAL_INDEX"] = "ALPHABETICAL_INDEX";
1489
+ ListStyle2["ALPHABETICAL_INDEX_COMPACT"] = "ALPHABETICAL_INDEX_COMPACT";
1490
+ return ListStyle2;
1491
+ })(ListStyle || {});
1492
+ var Indentation = /* @__PURE__ */ ((Indentation2) => {
1493
+ Indentation2["NESTED"] = "NESTED";
1494
+ Indentation2["FLAT"] = "FLAT";
1495
+ return Indentation2;
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 || {});
1450
1521
  var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
1451
1522
  SortOrder2["ASC"] = "ASC";
1452
1523
  SortOrder2["DESC"] = "DESC";
@@ -1662,6 +1733,7 @@ export {
1662
1733
  ButtonSize,
1663
1734
  CardDataBackgroundType,
1664
1735
  ColorSwatchType,
1736
+ ColumnSize,
1665
1737
  Crop,
1666
1738
  DecorationType,
1667
1739
  DesignTarget,
@@ -1675,12 +1747,14 @@ export {
1675
1747
  ImagePositionPosition,
1676
1748
  ImageScaling,
1677
1749
  ImageScalingScaling,
1750
+ Indentation,
1678
1751
  InitialExpandedItems,
1679
1752
  Layout,
1680
1753
  LayoutDataBackgroundType,
1681
1754
  LayoutDataImagePosition,
1682
1755
  LayoutType,
1683
1756
  LineStyle,
1757
+ ListStyle,
1684
1758
  MapType,
1685
1759
  NodeType,
1686
1760
  NullValue,
@@ -1695,6 +1769,7 @@ export {
1695
1769
  Resizing,
1696
1770
  ResponsivenessBehaviour,
1697
1771
  Scaling,
1772
+ SmartBlockDataType,
1698
1773
  SortOrder,
1699
1774
  Source,
1700
1775
  StylesBackgroundType,