@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.
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +72 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +99 -3
- package/build/cjs/index.typings.js +63 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +99 -3
- package/build/cjs/meta.js +63 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.d.ts +631 -0
- package/build/cjs/schemas.js +1064 -0
- package/build/cjs/schemas.js.map +1 -0
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +70 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +99 -3
- package/build/es/index.typings.mjs +61 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +99 -3
- package/build/es/meta.mjs +61 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.d.mts +631 -0
- package/build/es/schemas.mjs +1008 -0
- package/build/es/schemas.mjs.map +1 -0
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +72 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +99 -3
- package/build/internal/cjs/index.typings.js +63 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +99 -3
- package/build/internal/cjs/meta.js +63 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.d.ts +631 -0
- package/build/internal/cjs/schemas.js +1064 -0
- package/build/internal/cjs/schemas.js.map +1 -0
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +70 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +99 -3
- package/build/internal/es/index.typings.mjs +61 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +99 -3
- package/build/internal/es/meta.mjs +61 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.d.mts +631 -0
- package/build/internal/es/schemas.mjs +1008 -0
- package/build/internal/es/schemas.mjs.map +1 -0
- package/package.json +12 -5
- 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 };
|
|
@@ -27,6 +27,7 @@ __export(index_typings_exports, {
|
|
|
27
27
|
BackgroundType: () => BackgroundType,
|
|
28
28
|
ButtonDataType: () => ButtonDataType,
|
|
29
29
|
CardDataBackgroundType: () => CardDataBackgroundType,
|
|
30
|
+
ColumnSize: () => ColumnSize,
|
|
30
31
|
ContentFormat: () => ContentFormat,
|
|
31
32
|
Crop: () => Crop,
|
|
32
33
|
DecorationType: () => DecorationType,
|
|
@@ -64,6 +65,7 @@ __export(index_typings_exports, {
|
|
|
64
65
|
Resizing: () => Resizing,
|
|
65
66
|
ResponsivenessBehaviour: () => ResponsivenessBehaviour,
|
|
66
67
|
Scaling: () => Scaling,
|
|
68
|
+
SmartBlockDataType: () => SmartBlockDataType,
|
|
67
69
|
SortOrder: () => SortOrder,
|
|
68
70
|
Source: () => Source,
|
|
69
71
|
StylesPosition: () => StylesPosition,
|
|
@@ -354,6 +356,9 @@ function createQuestionEntry(payload) {
|
|
|
354
356
|
},
|
|
355
357
|
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
356
358
|
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
359
|
+
{
|
|
360
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
361
|
+
},
|
|
357
362
|
{ path: "questionEntry.labels.sortOrder" }
|
|
358
363
|
]
|
|
359
364
|
}
|
|
@@ -490,6 +495,9 @@ function createQuestionEntry(payload) {
|
|
|
490
495
|
},
|
|
491
496
|
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
492
497
|
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
498
|
+
{
|
|
499
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
500
|
+
},
|
|
493
501
|
{ path: "questionEntry.labels.sortOrder" }
|
|
494
502
|
]
|
|
495
503
|
}
|
|
@@ -633,6 +641,9 @@ function getQuestionEntry(payload) {
|
|
|
633
641
|
},
|
|
634
642
|
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
635
643
|
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
644
|
+
{
|
|
645
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
646
|
+
},
|
|
636
647
|
{ path: "questionEntry.labels.sortOrder" }
|
|
637
648
|
]
|
|
638
649
|
}
|
|
@@ -754,6 +765,9 @@ function updateQuestionEntry(payload) {
|
|
|
754
765
|
},
|
|
755
766
|
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
756
767
|
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
768
|
+
{
|
|
769
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
770
|
+
},
|
|
757
771
|
{ path: "questionEntry.labels.sortOrder" }
|
|
758
772
|
]
|
|
759
773
|
}
|
|
@@ -890,6 +904,9 @@ function updateQuestionEntry(payload) {
|
|
|
890
904
|
},
|
|
891
905
|
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
892
906
|
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
907
|
+
{
|
|
908
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
909
|
+
},
|
|
893
910
|
{ path: "questionEntry.labels.sortOrder" }
|
|
894
911
|
]
|
|
895
912
|
}
|
|
@@ -1054,6 +1071,9 @@ function listQuestionEntries(payload) {
|
|
|
1054
1071
|
},
|
|
1055
1072
|
{ path: "questionEntries.richContent.nodes.tocData.fontSize" },
|
|
1056
1073
|
{ path: "questionEntries.richContent.nodes.tocData.itemSpacing" },
|
|
1074
|
+
{
|
|
1075
|
+
path: "questionEntries.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1076
|
+
},
|
|
1057
1077
|
{ path: "questionEntries.labels.sortOrder" }
|
|
1058
1078
|
]
|
|
1059
1079
|
}
|
|
@@ -1197,6 +1217,9 @@ function queryQuestionEntries(payload) {
|
|
|
1197
1217
|
},
|
|
1198
1218
|
{ path: "questionEntries.richContent.nodes.tocData.fontSize" },
|
|
1199
1219
|
{ path: "questionEntries.richContent.nodes.tocData.itemSpacing" },
|
|
1220
|
+
{
|
|
1221
|
+
path: "questionEntries.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1222
|
+
},
|
|
1200
1223
|
{ path: "questionEntries.labels.sortOrder" }
|
|
1201
1224
|
]
|
|
1202
1225
|
}
|
|
@@ -1361,6 +1384,9 @@ function updateExtendedFields(payload) {
|
|
|
1361
1384
|
},
|
|
1362
1385
|
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
1363
1386
|
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
1387
|
+
{
|
|
1388
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1389
|
+
},
|
|
1364
1390
|
{ path: "questionEntry.labels.sortOrder" }
|
|
1365
1391
|
]
|
|
1366
1392
|
}
|
|
@@ -1510,6 +1536,9 @@ function setQuestionEntryLabels(payload) {
|
|
|
1510
1536
|
},
|
|
1511
1537
|
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
1512
1538
|
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
1539
|
+
{
|
|
1540
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1541
|
+
},
|
|
1513
1542
|
{ path: "questionEntry.labels.sortOrder" }
|
|
1514
1543
|
]
|
|
1515
1544
|
}
|
|
@@ -1651,6 +1680,9 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1651
1680
|
{
|
|
1652
1681
|
path: "questionEntries.questionEntry.richContent.nodes.tocData.itemSpacing"
|
|
1653
1682
|
},
|
|
1683
|
+
{
|
|
1684
|
+
path: "questionEntries.questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1685
|
+
},
|
|
1654
1686
|
{ path: "questionEntries.questionEntry.labels.sortOrder" }
|
|
1655
1687
|
]
|
|
1656
1688
|
}
|
|
@@ -1795,6 +1827,9 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1795
1827
|
{
|
|
1796
1828
|
path: "results.questionEntry.richContent.nodes.tocData.itemSpacing"
|
|
1797
1829
|
},
|
|
1830
|
+
{
|
|
1831
|
+
path: "results.questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1832
|
+
},
|
|
1798
1833
|
{ path: "results.questionEntry.labels.sortOrder" }
|
|
1799
1834
|
]
|
|
1800
1835
|
}
|
|
@@ -1845,6 +1880,8 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
1845
1880
|
NodeType2["SHAPE"] = "SHAPE";
|
|
1846
1881
|
NodeType2["CARD"] = "CARD";
|
|
1847
1882
|
NodeType2["TOC"] = "TOC";
|
|
1883
|
+
NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
|
|
1884
|
+
NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
|
|
1848
1885
|
return NodeType2;
|
|
1849
1886
|
})(NodeType || {});
|
|
1850
1887
|
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
@@ -2172,6 +2209,30 @@ var Indentation = /* @__PURE__ */ ((Indentation2) => {
|
|
|
2172
2209
|
Indentation2["FLAT"] = "FLAT";
|
|
2173
2210
|
return Indentation2;
|
|
2174
2211
|
})(Indentation || {});
|
|
2212
|
+
var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
|
|
2213
|
+
SmartBlockDataType2["SOLID_BOXES"] = "SOLID_BOXES";
|
|
2214
|
+
SmartBlockDataType2["NUMBERED_BOXES"] = "NUMBERED_BOXES";
|
|
2215
|
+
SmartBlockDataType2["STATS"] = "STATS";
|
|
2216
|
+
SmartBlockDataType2["CIRCLE_STATS"] = "CIRCLE_STATS";
|
|
2217
|
+
SmartBlockDataType2["SOLID_BOXES_ALTERNATING"] = "SOLID_BOXES_ALTERNATING";
|
|
2218
|
+
SmartBlockDataType2["SOLID_JOINED_BOXES"] = "SOLID_JOINED_BOXES";
|
|
2219
|
+
SmartBlockDataType2["SIDE_LINE_TEXT"] = "SIDE_LINE_TEXT";
|
|
2220
|
+
SmartBlockDataType2["TOP_LINE_TEXT"] = "TOP_LINE_TEXT";
|
|
2221
|
+
SmartBlockDataType2["OUTLINE_BOXES_WITH_TOP_CIRCLE"] = "OUTLINE_BOXES_WITH_TOP_CIRCLE";
|
|
2222
|
+
SmartBlockDataType2["BIG_BULLETS"] = "BIG_BULLETS";
|
|
2223
|
+
SmartBlockDataType2["SMALL_BULLETS"] = "SMALL_BULLETS";
|
|
2224
|
+
SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
|
|
2225
|
+
SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
|
|
2226
|
+
SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
|
|
2227
|
+
return SmartBlockDataType2;
|
|
2228
|
+
})(SmartBlockDataType || {});
|
|
2229
|
+
var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
|
|
2230
|
+
ColumnSize2["SMALL"] = "SMALL";
|
|
2231
|
+
ColumnSize2["MEDIUM"] = "MEDIUM";
|
|
2232
|
+
ColumnSize2["LARGE"] = "LARGE";
|
|
2233
|
+
ColumnSize2["EXTRA_LARGE"] = "EXTRA_LARGE";
|
|
2234
|
+
return ColumnSize2;
|
|
2235
|
+
})(ColumnSize || {});
|
|
2175
2236
|
var QuestionStatus = /* @__PURE__ */ ((QuestionStatus2) => {
|
|
2176
2237
|
QuestionStatus2["UNKNOWN"] = "UNKNOWN";
|
|
2177
2238
|
QuestionStatus2["VISIBLE"] = "VISIBLE";
|
|
@@ -2584,6 +2645,7 @@ async function bulkUpdateQuestionEntry2(options) {
|
|
|
2584
2645
|
BackgroundType,
|
|
2585
2646
|
ButtonDataType,
|
|
2586
2647
|
CardDataBackgroundType,
|
|
2648
|
+
ColumnSize,
|
|
2587
2649
|
ContentFormat,
|
|
2588
2650
|
Crop,
|
|
2589
2651
|
DecorationType,
|
|
@@ -2621,6 +2683,7 @@ async function bulkUpdateQuestionEntry2(options) {
|
|
|
2621
2683
|
Resizing,
|
|
2622
2684
|
ResponsivenessBehaviour,
|
|
2623
2685
|
Scaling,
|
|
2686
|
+
SmartBlockDataType,
|
|
2624
2687
|
SortOrder,
|
|
2625
2688
|
Source,
|
|
2626
2689
|
StylesPosition,
|