@wix/auto_sdk_faq_question-entry 1.0.42 → 1.0.43

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 (50) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +72 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +99 -3
  5. package/build/cjs/index.typings.js +63 -0
  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 +63 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/cjs/schemas.d.ts +631 -0
  11. package/build/cjs/schemas.js +1064 -0
  12. package/build/cjs/schemas.js.map +1 -0
  13. package/build/es/index.d.mts +1 -1
  14. package/build/es/index.mjs +70 -0
  15. package/build/es/index.mjs.map +1 -1
  16. package/build/es/index.typings.d.mts +99 -3
  17. package/build/es/index.typings.mjs +61 -0
  18. package/build/es/index.typings.mjs.map +1 -1
  19. package/build/es/meta.d.mts +99 -3
  20. package/build/es/meta.mjs +61 -0
  21. package/build/es/meta.mjs.map +1 -1
  22. package/build/es/schemas.d.mts +631 -0
  23. package/build/es/schemas.mjs +1008 -0
  24. package/build/es/schemas.mjs.map +1 -0
  25. package/build/internal/cjs/index.d.ts +1 -1
  26. package/build/internal/cjs/index.js +72 -0
  27. package/build/internal/cjs/index.js.map +1 -1
  28. package/build/internal/cjs/index.typings.d.ts +99 -3
  29. package/build/internal/cjs/index.typings.js +63 -0
  30. package/build/internal/cjs/index.typings.js.map +1 -1
  31. package/build/internal/cjs/meta.d.ts +99 -3
  32. package/build/internal/cjs/meta.js +63 -0
  33. package/build/internal/cjs/meta.js.map +1 -1
  34. package/build/internal/cjs/schemas.d.ts +631 -0
  35. package/build/internal/cjs/schemas.js +1064 -0
  36. package/build/internal/cjs/schemas.js.map +1 -0
  37. package/build/internal/es/index.d.mts +1 -1
  38. package/build/internal/es/index.mjs +70 -0
  39. package/build/internal/es/index.mjs.map +1 -1
  40. package/build/internal/es/index.typings.d.mts +99 -3
  41. package/build/internal/es/index.typings.mjs +61 -0
  42. package/build/internal/es/index.typings.mjs.map +1 -1
  43. package/build/internal/es/meta.d.mts +99 -3
  44. package/build/internal/es/meta.mjs +61 -0
  45. package/build/internal/es/meta.mjs.map +1 -1
  46. package/build/internal/es/schemas.d.mts +631 -0
  47. package/build/internal/es/schemas.mjs +1008 -0
  48. package/build/internal/es/schemas.mjs.map +1 -0
  49. package/package.json +12 -5
  50. package/schemas/package.json +3 -0
@@ -168,6 +168,10 @@ interface Node extends NodeDataOneOf {
168
168
  cardData?: CardData;
169
169
  /** Data for a table of contents node. */
170
170
  tocData?: TocData;
171
+ /** Data for a smart block node. */
172
+ smartBlockData?: SmartBlockData;
173
+ /** Data for a smart block cell node. */
174
+ smartBlockCellData?: SmartBlockCellData;
171
175
  /** 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. */
172
176
  type?: NodeTypeWithLiterals;
173
177
  /** Node ID. */
@@ -241,6 +245,10 @@ interface NodeDataOneOf {
241
245
  cardData?: CardData;
242
246
  /** Data for a table of contents node. */
243
247
  tocData?: TocData;
248
+ /** Data for a smart block node. */
249
+ smartBlockData?: SmartBlockData;
250
+ /** Data for a smart block cell node. */
251
+ smartBlockCellData?: SmartBlockCellData;
244
252
  }
245
253
  declare enum NodeType {
246
254
  PARAGRAPH = "PARAGRAPH",
@@ -279,10 +287,12 @@ declare enum NodeType {
279
287
  LAYOUT_CELL = "LAYOUT_CELL",
280
288
  SHAPE = "SHAPE",
281
289
  CARD = "CARD",
282
- TOC = "TOC"
290
+ TOC = "TOC",
291
+ SMART_BLOCK = "SMART_BLOCK",
292
+ SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
283
293
  }
284
294
  /** @enumType */
285
- 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';
295
+ 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';
286
296
  interface NodeStyle {
287
297
  /** The top padding value in pixels. */
288
298
  paddingTop?: string | null;
@@ -900,6 +910,8 @@ interface HeadingData {
900
910
  textStyle?: TextStyle;
901
911
  /** Indentation level from 1-4. */
902
912
  indentation?: number | null;
913
+ /** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
914
+ renderedLevel?: number | null;
903
915
  }
904
916
  interface HTMLData extends HTMLDataDataOneOf {
905
917
  /** The URL for the HTML code for the node. */
@@ -1773,6 +1785,8 @@ interface TableData {
1773
1785
  * @maxSize 4
1774
1786
  */
1775
1787
  cellPadding?: number[];
1788
+ /** Table's alternative text. */
1789
+ altText?: string | null;
1776
1790
  }
1777
1791
  interface Dimensions {
1778
1792
  /** An array representing relative width of each column in relation to the other columns. */
@@ -2214,6 +2228,88 @@ declare enum Indentation {
2214
2228
  }
2215
2229
  /** @enumType */
2216
2230
  type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
2231
+ /** Data for a smart block node. */
2232
+ interface SmartBlockData {
2233
+ /** The type of the smart block. */
2234
+ type?: SmartBlockDataTypeWithLiterals;
2235
+ /** Layout orientation. HORIZONTAL or VERTICAL. Optional for variants with fixed orientation. */
2236
+ orientation?: string | null;
2237
+ /** Column size controlling cells per row. */
2238
+ columnSize?: ColumnSizeWithLiterals;
2239
+ /** Border color (for SOLID_JOINED_BOXES variant). */
2240
+ borderColor?: string | null;
2241
+ /** Border width in pixels (for SOLID_JOINED_BOXES variant). */
2242
+ borderWidth?: number | null;
2243
+ /** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
2244
+ borderRadius?: number | null;
2245
+ }
2246
+ /** Layout type of the smart block */
2247
+ declare enum SmartBlockDataType {
2248
+ /** Grid-based layouts with solid box items containing title, body, and icon/image. */
2249
+ SOLID_BOXES = "SOLID_BOXES",
2250
+ /** Numbered boxes. */
2251
+ NUMBERED_BOXES = "NUMBERED_BOXES",
2252
+ /** Statistics display with large numbers/values. */
2253
+ STATS = "STATS",
2254
+ /** Statistics with circular visual elements. */
2255
+ CIRCLE_STATS = "CIRCLE_STATS",
2256
+ /** Staggered/zigzag grid layout with alternating box positions. */
2257
+ SOLID_BOXES_ALTERNATING = "SOLID_BOXES_ALTERNATING",
2258
+ /** Grid layout with boxes visually joined (no gaps, shared container border). */
2259
+ SOLID_JOINED_BOXES = "SOLID_JOINED_BOXES",
2260
+ /** Transparent cells with only a left side line. */
2261
+ SIDE_LINE_TEXT = "SIDE_LINE_TEXT",
2262
+ /** Transparent cells with only a top line. */
2263
+ TOP_LINE_TEXT = "TOP_LINE_TEXT",
2264
+ /** Outlined boxes with a numbered/icon circle at the top. */
2265
+ OUTLINE_BOXES_WITH_TOP_CIRCLE = "OUTLINE_BOXES_WITH_TOP_CIRCLE",
2266
+ /** Large icon bullets with text content. */
2267
+ BIG_BULLETS = "BIG_BULLETS",
2268
+ /** Small dot bullets with text content. */
2269
+ SMALL_BULLETS = "SMALL_BULLETS",
2270
+ /** Arrow icon bullets with text content. */
2271
+ ARROW_BULLETS = "ARROW_BULLETS",
2272
+ /** Process steps with numbered/icon labels above a horizontal line. */
2273
+ PROCESS_STEPS = "PROCESS_STEPS",
2274
+ /** Statistics with bar visual elements. */
2275
+ BAR_STATS = "BAR_STATS"
2276
+ }
2277
+ /** @enumType */
2278
+ 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';
2279
+ /** Column size controlling how many cells appear per row. */
2280
+ declare enum ColumnSize {
2281
+ /** Up to 4 cells in a row. */
2282
+ SMALL = "SMALL",
2283
+ /** Up to 3 cells in a row (default). */
2284
+ MEDIUM = "MEDIUM",
2285
+ /** Up to 2 cells in a row. */
2286
+ LARGE = "LARGE",
2287
+ /** 1 cell in a row. */
2288
+ EXTRA_LARGE = "EXTRA_LARGE"
2289
+ }
2290
+ /** @enumType */
2291
+ type ColumnSizeWithLiterals = ColumnSize | 'SMALL' | 'MEDIUM' | 'LARGE' | 'EXTRA_LARGE';
2292
+ /** Data for a smart block cell node. */
2293
+ interface SmartBlockCellData {
2294
+ /** Optional label text for the cell (e.g., for stats variants). */
2295
+ label?: string | null;
2296
+ /** Shape file details. */
2297
+ shape?: Media;
2298
+ /** Border color of the cell. */
2299
+ borderColor?: string | null;
2300
+ /** Border width in pixels. */
2301
+ borderWidth?: number | null;
2302
+ /** Border radius in pixels. */
2303
+ borderRadius?: number | null;
2304
+ /** The type of the parent smart block (must match parent). */
2305
+ type?: SmartBlockDataTypeWithLiterals;
2306
+ /** Accent color for non-background variants (e.g., line, bullet, label color). */
2307
+ accentColor?: string | null;
2308
+ /** Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES). */
2309
+ backgroundColor?: string | null;
2310
+ /** Shape fill color as a hexadecimal value. */
2311
+ shapeColor?: string | null;
2312
+ }
2217
2313
  interface Metadata {
2218
2314
  /** Schema version. */
2219
2315
  version?: number;
@@ -3271,4 +3367,4 @@ interface BulkUpdateQuestionEntryOptions {
3271
3367
  returnFullEntity?: boolean | null;
3272
3368
  }
3273
3369
 
3274
- export { type AccountInfo, type AccountInfoMetadata, type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkActionMetadata, type BulkDeleteQuestionEntriesRequest, type BulkDeleteQuestionEntriesResponse, type BulkUpdateQuestionEntryOptions, type BulkUpdateQuestionEntryRequest, type BulkUpdateQuestionEntryResponse, type BulkUpdateQuestionEntryResult, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonQueryWithEntityContext, ContentFormat, type ContentFormatWithLiterals, type CreateQuestionEntryRequest, type CreateQuestionEntryResponse, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteQuestionEntryRequest, type DeleteQuestionEntryResponse, 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 EventMetadata, type ExtendedFields, FieldSet, type FieldSetWithLiterals, 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 GetQuestionEntryRequest, type GetQuestionEntryResponse, type Gradient, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, type Label, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListQuestionEntriesOptions, type ListQuestionEntriesRequest, type ListQuestionEntriesResponse, ListStyle, type ListStyleWithLiterals, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MaskedQuestionEntry, 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 PagingMetadataV2, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, 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 QueryQuestionEntriesOptions, type QueryQuestionEntriesRequest, QueryQuestionEntriesRequestContentFormat, type QueryQuestionEntriesRequestContentFormatWithLiterals, QueryQuestionEntriesRequestFieldSet, type QueryQuestionEntriesRequestFieldSetWithLiterals, type QueryQuestionEntriesResponse, type QuestionEntriesQueryBuilder, type QuestionEntriesQueryResult, type QuestionEntry, type QuestionEntryAnswerOneOf, type QuestionEntryCreatedEnvelope, type QuestionEntryDeletedEnvelope, type QuestionEntryQuery, type QuestionEntryQuerySpec, type QuestionEntryUpdatedEnvelope, QuestionStatus, type QuestionStatusWithLiterals, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type SetQuestionEntryLabelsOptions, type SetQuestionEntryLabelsRequest, type SetQuestionEntryLabelsResponse, type Settings, type ShapeData, type ShapeDataStyles, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Stop, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, 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 UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse, type UpdateQuestionEntry, type UpdateQuestionEntryRequest, type UpdateQuestionEntryResponse, 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, bulkDeleteQuestionEntries, bulkUpdateQuestionEntry, createQuestionEntry, deleteQuestionEntry, getQuestionEntry, listQuestionEntries, onQuestionEntryCreated, onQuestionEntryDeleted, onQuestionEntryUpdated, queryQuestionEntries, setQuestionEntryLabels, typedQueryQuestionEntries, updateExtendedFields, updateQuestionEntry, utils };
3370
+ export { type AccountInfo, type AccountInfoMetadata, type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkActionMetadata, type BulkDeleteQuestionEntriesRequest, type BulkDeleteQuestionEntriesResponse, type BulkUpdateQuestionEntryOptions, type BulkUpdateQuestionEntryRequest, type BulkUpdateQuestionEntryResponse, type BulkUpdateQuestionEntryResult, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, ContentFormat, type ContentFormatWithLiterals, type CreateQuestionEntryRequest, type CreateQuestionEntryResponse, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteQuestionEntryRequest, type DeleteQuestionEntryResponse, 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 EventMetadata, type ExtendedFields, FieldSet, type FieldSetWithLiterals, 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 GetQuestionEntryRequest, type GetQuestionEntryResponse, type Gradient, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, type Label, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListQuestionEntriesOptions, type ListQuestionEntriesRequest, type ListQuestionEntriesResponse, ListStyle, type ListStyleWithLiterals, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MaskedQuestionEntry, 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 PagingMetadataV2, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, 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 QueryQuestionEntriesOptions, type QueryQuestionEntriesRequest, QueryQuestionEntriesRequestContentFormat, type QueryQuestionEntriesRequestContentFormatWithLiterals, QueryQuestionEntriesRequestFieldSet, type QueryQuestionEntriesRequestFieldSetWithLiterals, type QueryQuestionEntriesResponse, type QuestionEntriesQueryBuilder, type QuestionEntriesQueryResult, type QuestionEntry, type QuestionEntryAnswerOneOf, type QuestionEntryCreatedEnvelope, type QuestionEntryDeletedEnvelope, type QuestionEntryQuery, type QuestionEntryQuerySpec, type QuestionEntryUpdatedEnvelope, QuestionStatus, type QuestionStatusWithLiterals, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type SetQuestionEntryLabelsOptions, type SetQuestionEntryLabelsRequest, type SetQuestionEntryLabelsResponse, 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 StylesBorder, StylesPosition, type StylesPositionWithLiterals, 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 UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse, type UpdateQuestionEntry, type UpdateQuestionEntryRequest, type UpdateQuestionEntryResponse, 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, bulkDeleteQuestionEntries, bulkUpdateQuestionEntry, createQuestionEntry, deleteQuestionEntry, getQuestionEntry, listQuestionEntries, onQuestionEntryCreated, onQuestionEntryDeleted, onQuestionEntryUpdated, queryQuestionEntries, setQuestionEntryLabels, typedQueryQuestionEntries, updateExtendedFields, updateQuestionEntry, utils };
@@ -261,6 +261,9 @@ function createQuestionEntry(payload) {
261
261
  },
262
262
  { path: "questionEntry.richContent.nodes.tocData.fontSize" },
263
263
  { path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
264
+ {
265
+ path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
266
+ },
264
267
  { path: "questionEntry.labels.sortOrder" }
265
268
  ]
266
269
  }
@@ -397,6 +400,9 @@ function createQuestionEntry(payload) {
397
400
  },
398
401
  { path: "questionEntry.richContent.nodes.tocData.fontSize" },
399
402
  { path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
403
+ {
404
+ path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
405
+ },
400
406
  { path: "questionEntry.labels.sortOrder" }
401
407
  ]
402
408
  }
@@ -540,6 +546,9 @@ function getQuestionEntry(payload) {
540
546
  },
541
547
  { path: "questionEntry.richContent.nodes.tocData.fontSize" },
542
548
  { path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
549
+ {
550
+ path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
551
+ },
543
552
  { path: "questionEntry.labels.sortOrder" }
544
553
  ]
545
554
  }
@@ -661,6 +670,9 @@ function updateQuestionEntry(payload) {
661
670
  },
662
671
  { path: "questionEntry.richContent.nodes.tocData.fontSize" },
663
672
  { path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
673
+ {
674
+ path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
675
+ },
664
676
  { path: "questionEntry.labels.sortOrder" }
665
677
  ]
666
678
  }
@@ -797,6 +809,9 @@ function updateQuestionEntry(payload) {
797
809
  },
798
810
  { path: "questionEntry.richContent.nodes.tocData.fontSize" },
799
811
  { path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
812
+ {
813
+ path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
814
+ },
800
815
  { path: "questionEntry.labels.sortOrder" }
801
816
  ]
802
817
  }
@@ -961,6 +976,9 @@ function listQuestionEntries(payload) {
961
976
  },
962
977
  { path: "questionEntries.richContent.nodes.tocData.fontSize" },
963
978
  { path: "questionEntries.richContent.nodes.tocData.itemSpacing" },
979
+ {
980
+ path: "questionEntries.richContent.nodes.smartBlockCellData.shape.duration"
981
+ },
964
982
  { path: "questionEntries.labels.sortOrder" }
965
983
  ]
966
984
  }
@@ -1104,6 +1122,9 @@ function queryQuestionEntries(payload) {
1104
1122
  },
1105
1123
  { path: "questionEntries.richContent.nodes.tocData.fontSize" },
1106
1124
  { path: "questionEntries.richContent.nodes.tocData.itemSpacing" },
1125
+ {
1126
+ path: "questionEntries.richContent.nodes.smartBlockCellData.shape.duration"
1127
+ },
1107
1128
  { path: "questionEntries.labels.sortOrder" }
1108
1129
  ]
1109
1130
  }
@@ -1268,6 +1289,9 @@ function updateExtendedFields(payload) {
1268
1289
  },
1269
1290
  { path: "questionEntry.richContent.nodes.tocData.fontSize" },
1270
1291
  { path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
1292
+ {
1293
+ path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
1294
+ },
1271
1295
  { path: "questionEntry.labels.sortOrder" }
1272
1296
  ]
1273
1297
  }
@@ -1417,6 +1441,9 @@ function setQuestionEntryLabels(payload) {
1417
1441
  },
1418
1442
  { path: "questionEntry.richContent.nodes.tocData.fontSize" },
1419
1443
  { path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
1444
+ {
1445
+ path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
1446
+ },
1420
1447
  { path: "questionEntry.labels.sortOrder" }
1421
1448
  ]
1422
1449
  }
@@ -1558,6 +1585,9 @@ function bulkUpdateQuestionEntry(payload) {
1558
1585
  {
1559
1586
  path: "questionEntries.questionEntry.richContent.nodes.tocData.itemSpacing"
1560
1587
  },
1588
+ {
1589
+ path: "questionEntries.questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
1590
+ },
1561
1591
  { path: "questionEntries.questionEntry.labels.sortOrder" }
1562
1592
  ]
1563
1593
  }
@@ -1702,6 +1732,9 @@ function bulkUpdateQuestionEntry(payload) {
1702
1732
  {
1703
1733
  path: "results.questionEntry.richContent.nodes.tocData.itemSpacing"
1704
1734
  },
1735
+ {
1736
+ path: "results.questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
1737
+ },
1705
1738
  { path: "results.questionEntry.labels.sortOrder" }
1706
1739
  ]
1707
1740
  }
@@ -1752,6 +1785,8 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
1752
1785
  NodeType2["SHAPE"] = "SHAPE";
1753
1786
  NodeType2["CARD"] = "CARD";
1754
1787
  NodeType2["TOC"] = "TOC";
1788
+ NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
1789
+ NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
1755
1790
  return NodeType2;
1756
1791
  })(NodeType || {});
1757
1792
  var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
@@ -2079,6 +2114,30 @@ var Indentation = /* @__PURE__ */ ((Indentation2) => {
2079
2114
  Indentation2["FLAT"] = "FLAT";
2080
2115
  return Indentation2;
2081
2116
  })(Indentation || {});
2117
+ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
2118
+ SmartBlockDataType2["SOLID_BOXES"] = "SOLID_BOXES";
2119
+ SmartBlockDataType2["NUMBERED_BOXES"] = "NUMBERED_BOXES";
2120
+ SmartBlockDataType2["STATS"] = "STATS";
2121
+ SmartBlockDataType2["CIRCLE_STATS"] = "CIRCLE_STATS";
2122
+ SmartBlockDataType2["SOLID_BOXES_ALTERNATING"] = "SOLID_BOXES_ALTERNATING";
2123
+ SmartBlockDataType2["SOLID_JOINED_BOXES"] = "SOLID_JOINED_BOXES";
2124
+ SmartBlockDataType2["SIDE_LINE_TEXT"] = "SIDE_LINE_TEXT";
2125
+ SmartBlockDataType2["TOP_LINE_TEXT"] = "TOP_LINE_TEXT";
2126
+ SmartBlockDataType2["OUTLINE_BOXES_WITH_TOP_CIRCLE"] = "OUTLINE_BOXES_WITH_TOP_CIRCLE";
2127
+ SmartBlockDataType2["BIG_BULLETS"] = "BIG_BULLETS";
2128
+ SmartBlockDataType2["SMALL_BULLETS"] = "SMALL_BULLETS";
2129
+ SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
2130
+ SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
2131
+ SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
2132
+ return SmartBlockDataType2;
2133
+ })(SmartBlockDataType || {});
2134
+ var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
2135
+ ColumnSize2["SMALL"] = "SMALL";
2136
+ ColumnSize2["MEDIUM"] = "MEDIUM";
2137
+ ColumnSize2["LARGE"] = "LARGE";
2138
+ ColumnSize2["EXTRA_LARGE"] = "EXTRA_LARGE";
2139
+ return ColumnSize2;
2140
+ })(ColumnSize || {});
2082
2141
  var QuestionStatus = /* @__PURE__ */ ((QuestionStatus2) => {
2083
2142
  QuestionStatus2["UNKNOWN"] = "UNKNOWN";
2084
2143
  QuestionStatus2["VISIBLE"] = "VISIBLE";
@@ -2490,6 +2549,7 @@ export {
2490
2549
  BackgroundType,
2491
2550
  ButtonDataType,
2492
2551
  CardDataBackgroundType,
2552
+ ColumnSize,
2493
2553
  ContentFormat,
2494
2554
  Crop,
2495
2555
  DecorationType,
@@ -2527,6 +2587,7 @@ export {
2527
2587
  Resizing,
2528
2588
  ResponsivenessBehaviour,
2529
2589
  Scaling,
2590
+ SmartBlockDataType,
2530
2591
  SortOrder,
2531
2592
  Source,
2532
2593
  StylesPosition,