@wix/auto_sdk_faq_question-entry 1.0.41 → 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 +129 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +156 -5
- package/build/cjs/index.typings.js +114 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +156 -5
- package/build/cjs/meta.js +114 -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 +125 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +156 -5
- package/build/es/index.typings.mjs +110 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +156 -5
- package/build/es/meta.mjs +110 -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 +129 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +156 -5
- package/build/internal/cjs/index.typings.js +114 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +156 -5
- package/build/internal/cjs/meta.js +114 -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 +125 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +156 -5
- package/build/internal/es/index.typings.mjs +110 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +156 -5
- package/build/internal/es/meta.mjs +110 -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
|
@@ -166,6 +166,12 @@ interface Node extends NodeDataOneOf {
|
|
|
166
166
|
shapeData?: ShapeData;
|
|
167
167
|
/** Data for a card node. */
|
|
168
168
|
cardData?: CardData;
|
|
169
|
+
/** Data for a table of contents node. */
|
|
170
|
+
tocData?: TocData;
|
|
171
|
+
/** Data for a smart block node. */
|
|
172
|
+
smartBlockData?: SmartBlockData;
|
|
173
|
+
/** Data for a smart block cell node. */
|
|
174
|
+
smartBlockCellData?: SmartBlockCellData;
|
|
169
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. */
|
|
170
176
|
type?: NodeTypeWithLiterals;
|
|
171
177
|
/** Node ID. */
|
|
@@ -237,6 +243,12 @@ interface NodeDataOneOf {
|
|
|
237
243
|
shapeData?: ShapeData;
|
|
238
244
|
/** Data for a card node. */
|
|
239
245
|
cardData?: CardData;
|
|
246
|
+
/** Data for a table of contents node. */
|
|
247
|
+
tocData?: TocData;
|
|
248
|
+
/** Data for a smart block node. */
|
|
249
|
+
smartBlockData?: SmartBlockData;
|
|
250
|
+
/** Data for a smart block cell node. */
|
|
251
|
+
smartBlockCellData?: SmartBlockCellData;
|
|
240
252
|
}
|
|
241
253
|
declare enum NodeType {
|
|
242
254
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -274,10 +286,13 @@ declare enum NodeType {
|
|
|
274
286
|
LAYOUT = "LAYOUT",
|
|
275
287
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
276
288
|
SHAPE = "SHAPE",
|
|
277
|
-
CARD = "CARD"
|
|
289
|
+
CARD = "CARD",
|
|
290
|
+
TOC = "TOC",
|
|
291
|
+
SMART_BLOCK = "SMART_BLOCK",
|
|
292
|
+
SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
|
|
278
293
|
}
|
|
279
294
|
/** @enumType */
|
|
280
|
-
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';
|
|
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';
|
|
281
296
|
interface NodeStyle {
|
|
282
297
|
/** The top padding value in pixels. */
|
|
283
298
|
paddingTop?: string | null;
|
|
@@ -895,6 +910,8 @@ interface HeadingData {
|
|
|
895
910
|
textStyle?: TextStyle;
|
|
896
911
|
/** Indentation level from 1-4. */
|
|
897
912
|
indentation?: number | null;
|
|
913
|
+
/** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
|
|
914
|
+
renderedLevel?: number | null;
|
|
898
915
|
}
|
|
899
916
|
interface HTMLData extends HTMLDataDataOneOf {
|
|
900
917
|
/** The URL for the HTML code for the node. */
|
|
@@ -906,6 +923,8 @@ interface HTMLData extends HTMLDataDataOneOf {
|
|
|
906
923
|
* @deprecated
|
|
907
924
|
*/
|
|
908
925
|
isAdsense?: boolean | null;
|
|
926
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
927
|
+
widgetId?: string;
|
|
909
928
|
/** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
|
|
910
929
|
containerData?: PluginContainerData;
|
|
911
930
|
/** The type of HTML code. */
|
|
@@ -924,14 +943,17 @@ interface HTMLDataDataOneOf {
|
|
|
924
943
|
* @deprecated
|
|
925
944
|
*/
|
|
926
945
|
isAdsense?: boolean | null;
|
|
946
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
947
|
+
widgetId?: string;
|
|
927
948
|
}
|
|
928
949
|
declare enum Source {
|
|
929
950
|
HTML = "HTML",
|
|
930
951
|
ADSENSE = "ADSENSE",
|
|
931
|
-
AI = "AI"
|
|
952
|
+
AI = "AI",
|
|
953
|
+
AI_WIDGET = "AI_WIDGET"
|
|
932
954
|
}
|
|
933
955
|
/** @enumType */
|
|
934
|
-
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
|
|
956
|
+
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI' | 'AI_WIDGET';
|
|
935
957
|
interface ImageData {
|
|
936
958
|
/** Styling for the image's container. */
|
|
937
959
|
containerData?: PluginContainerData;
|
|
@@ -1763,6 +1785,8 @@ interface TableData {
|
|
|
1763
1785
|
* @maxSize 4
|
|
1764
1786
|
*/
|
|
1765
1787
|
cellPadding?: number[];
|
|
1788
|
+
/** Table's alternative text. */
|
|
1789
|
+
altText?: string | null;
|
|
1766
1790
|
}
|
|
1767
1791
|
interface Dimensions {
|
|
1768
1792
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -2159,6 +2183,133 @@ interface BackgroundImage {
|
|
|
2159
2183
|
/** Position of background. Defaults to `CENTER`. */
|
|
2160
2184
|
position?: ImagePositionPositionWithLiterals;
|
|
2161
2185
|
}
|
|
2186
|
+
interface TocData {
|
|
2187
|
+
/** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
|
|
2188
|
+
includedHeadings?: number[];
|
|
2189
|
+
/** List style. Default: PLAIN. */
|
|
2190
|
+
listStyle?: ListStyleWithLiterals;
|
|
2191
|
+
/** Optional override for the font size in pixels. */
|
|
2192
|
+
fontSize?: number | null;
|
|
2193
|
+
/** Optional override for the vertical spacing between items in pixels. */
|
|
2194
|
+
itemSpacing?: number | null;
|
|
2195
|
+
/**
|
|
2196
|
+
* Optional override for the text color.
|
|
2197
|
+
* @format COLOR_HEX
|
|
2198
|
+
*/
|
|
2199
|
+
color?: string | null;
|
|
2200
|
+
/** Indentation style. Default: NESTED. */
|
|
2201
|
+
indentation?: IndentationWithLiterals;
|
|
2202
|
+
}
|
|
2203
|
+
/** List style. */
|
|
2204
|
+
declare enum ListStyle {
|
|
2205
|
+
/** No markers (default) */
|
|
2206
|
+
PLAIN = "PLAIN",
|
|
2207
|
+
/** Numbered list */
|
|
2208
|
+
NUMBERED = "NUMBERED",
|
|
2209
|
+
/** Alphabetic letters */
|
|
2210
|
+
LETTERS = "LETTERS",
|
|
2211
|
+
/** Roman numerals */
|
|
2212
|
+
ROMAN = "ROMAN",
|
|
2213
|
+
/** Bulleted list */
|
|
2214
|
+
BULLETED = "BULLETED",
|
|
2215
|
+
/** Alphabetical index */
|
|
2216
|
+
ALPHABETICAL_INDEX = "ALPHABETICAL_INDEX",
|
|
2217
|
+
/** Alphabetical index (compact top-row only) */
|
|
2218
|
+
ALPHABETICAL_INDEX_COMPACT = "ALPHABETICAL_INDEX_COMPACT"
|
|
2219
|
+
}
|
|
2220
|
+
/** @enumType */
|
|
2221
|
+
type ListStyleWithLiterals = ListStyle | 'PLAIN' | 'NUMBERED' | 'LETTERS' | 'ROMAN' | 'BULLETED' | 'ALPHABETICAL_INDEX' | 'ALPHABETICAL_INDEX_COMPACT';
|
|
2222
|
+
/** Indentation style. */
|
|
2223
|
+
declare enum Indentation {
|
|
2224
|
+
/** Sub-headings indented under parents (default) */
|
|
2225
|
+
NESTED = "NESTED",
|
|
2226
|
+
/** All items at the same level */
|
|
2227
|
+
FLAT = "FLAT"
|
|
2228
|
+
}
|
|
2229
|
+
/** @enumType */
|
|
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
|
+
}
|
|
2162
2313
|
interface Metadata {
|
|
2163
2314
|
/** Schema version. */
|
|
2164
2315
|
version?: number;
|
|
@@ -3216,4 +3367,4 @@ interface BulkUpdateQuestionEntryOptions {
|
|
|
3216
3367
|
returnFullEntity?: boolean | null;
|
|
3217
3368
|
}
|
|
3218
3369
|
|
|
3219
|
-
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, 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, 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, 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 };
|
|
@@ -259,6 +259,11 @@ function createQuestionEntry(payload) {
|
|
|
259
259
|
{
|
|
260
260
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
261
261
|
},
|
|
262
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
263
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
264
|
+
{
|
|
265
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
266
|
+
},
|
|
262
267
|
{ path: "questionEntry.labels.sortOrder" }
|
|
263
268
|
]
|
|
264
269
|
}
|
|
@@ -393,6 +398,11 @@ function createQuestionEntry(payload) {
|
|
|
393
398
|
{
|
|
394
399
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
395
400
|
},
|
|
401
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
402
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
403
|
+
{
|
|
404
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
405
|
+
},
|
|
396
406
|
{ path: "questionEntry.labels.sortOrder" }
|
|
397
407
|
]
|
|
398
408
|
}
|
|
@@ -534,6 +544,11 @@ function getQuestionEntry(payload) {
|
|
|
534
544
|
{
|
|
535
545
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
536
546
|
},
|
|
547
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
548
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
549
|
+
{
|
|
550
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
551
|
+
},
|
|
537
552
|
{ path: "questionEntry.labels.sortOrder" }
|
|
538
553
|
]
|
|
539
554
|
}
|
|
@@ -653,6 +668,11 @@ function updateQuestionEntry(payload) {
|
|
|
653
668
|
{
|
|
654
669
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
655
670
|
},
|
|
671
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
672
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
673
|
+
{
|
|
674
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
675
|
+
},
|
|
656
676
|
{ path: "questionEntry.labels.sortOrder" }
|
|
657
677
|
]
|
|
658
678
|
}
|
|
@@ -787,6 +807,11 @@ function updateQuestionEntry(payload) {
|
|
|
787
807
|
{
|
|
788
808
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
789
809
|
},
|
|
810
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
811
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
812
|
+
{
|
|
813
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
814
|
+
},
|
|
790
815
|
{ path: "questionEntry.labels.sortOrder" }
|
|
791
816
|
]
|
|
792
817
|
}
|
|
@@ -949,6 +974,11 @@ function listQuestionEntries(payload) {
|
|
|
949
974
|
{
|
|
950
975
|
path: "questionEntries.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
951
976
|
},
|
|
977
|
+
{ path: "questionEntries.richContent.nodes.tocData.fontSize" },
|
|
978
|
+
{ path: "questionEntries.richContent.nodes.tocData.itemSpacing" },
|
|
979
|
+
{
|
|
980
|
+
path: "questionEntries.richContent.nodes.smartBlockCellData.shape.duration"
|
|
981
|
+
},
|
|
952
982
|
{ path: "questionEntries.labels.sortOrder" }
|
|
953
983
|
]
|
|
954
984
|
}
|
|
@@ -1090,6 +1120,11 @@ function queryQuestionEntries(payload) {
|
|
|
1090
1120
|
{
|
|
1091
1121
|
path: "questionEntries.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1092
1122
|
},
|
|
1123
|
+
{ path: "questionEntries.richContent.nodes.tocData.fontSize" },
|
|
1124
|
+
{ path: "questionEntries.richContent.nodes.tocData.itemSpacing" },
|
|
1125
|
+
{
|
|
1126
|
+
path: "questionEntries.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1127
|
+
},
|
|
1093
1128
|
{ path: "questionEntries.labels.sortOrder" }
|
|
1094
1129
|
]
|
|
1095
1130
|
}
|
|
@@ -1252,6 +1287,11 @@ function updateExtendedFields(payload) {
|
|
|
1252
1287
|
{
|
|
1253
1288
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1254
1289
|
},
|
|
1290
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
1291
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
1292
|
+
{
|
|
1293
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1294
|
+
},
|
|
1255
1295
|
{ path: "questionEntry.labels.sortOrder" }
|
|
1256
1296
|
]
|
|
1257
1297
|
}
|
|
@@ -1399,6 +1439,11 @@ function setQuestionEntryLabels(payload) {
|
|
|
1399
1439
|
{
|
|
1400
1440
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1401
1441
|
},
|
|
1442
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
1443
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
1444
|
+
{
|
|
1445
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1446
|
+
},
|
|
1402
1447
|
{ path: "questionEntry.labels.sortOrder" }
|
|
1403
1448
|
]
|
|
1404
1449
|
}
|
|
@@ -1534,6 +1579,15 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1534
1579
|
{
|
|
1535
1580
|
path: "questionEntries.questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1536
1581
|
},
|
|
1582
|
+
{
|
|
1583
|
+
path: "questionEntries.questionEntry.richContent.nodes.tocData.fontSize"
|
|
1584
|
+
},
|
|
1585
|
+
{
|
|
1586
|
+
path: "questionEntries.questionEntry.richContent.nodes.tocData.itemSpacing"
|
|
1587
|
+
},
|
|
1588
|
+
{
|
|
1589
|
+
path: "questionEntries.questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1590
|
+
},
|
|
1537
1591
|
{ path: "questionEntries.questionEntry.labels.sortOrder" }
|
|
1538
1592
|
]
|
|
1539
1593
|
}
|
|
@@ -1672,6 +1726,15 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1672
1726
|
{
|
|
1673
1727
|
path: "results.questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1674
1728
|
},
|
|
1729
|
+
{
|
|
1730
|
+
path: "results.questionEntry.richContent.nodes.tocData.fontSize"
|
|
1731
|
+
},
|
|
1732
|
+
{
|
|
1733
|
+
path: "results.questionEntry.richContent.nodes.tocData.itemSpacing"
|
|
1734
|
+
},
|
|
1735
|
+
{
|
|
1736
|
+
path: "results.questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1737
|
+
},
|
|
1675
1738
|
{ path: "results.questionEntry.labels.sortOrder" }
|
|
1676
1739
|
]
|
|
1677
1740
|
}
|
|
@@ -1721,6 +1784,9 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
1721
1784
|
NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
|
|
1722
1785
|
NodeType2["SHAPE"] = "SHAPE";
|
|
1723
1786
|
NodeType2["CARD"] = "CARD";
|
|
1787
|
+
NodeType2["TOC"] = "TOC";
|
|
1788
|
+
NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
|
|
1789
|
+
NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
|
|
1724
1790
|
return NodeType2;
|
|
1725
1791
|
})(NodeType || {});
|
|
1726
1792
|
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
@@ -1831,6 +1897,7 @@ var Source = /* @__PURE__ */ ((Source2) => {
|
|
|
1831
1897
|
Source2["HTML"] = "HTML";
|
|
1832
1898
|
Source2["ADSENSE"] = "ADSENSE";
|
|
1833
1899
|
Source2["AI"] = "AI";
|
|
1900
|
+
Source2["AI_WIDGET"] = "AI_WIDGET";
|
|
1834
1901
|
return Source2;
|
|
1835
1902
|
})(Source || {});
|
|
1836
1903
|
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
@@ -2032,6 +2099,45 @@ var CardDataBackgroundType = /* @__PURE__ */ ((CardDataBackgroundType2) => {
|
|
|
2032
2099
|
CardDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
2033
2100
|
return CardDataBackgroundType2;
|
|
2034
2101
|
})(CardDataBackgroundType || {});
|
|
2102
|
+
var ListStyle = /* @__PURE__ */ ((ListStyle2) => {
|
|
2103
|
+
ListStyle2["PLAIN"] = "PLAIN";
|
|
2104
|
+
ListStyle2["NUMBERED"] = "NUMBERED";
|
|
2105
|
+
ListStyle2["LETTERS"] = "LETTERS";
|
|
2106
|
+
ListStyle2["ROMAN"] = "ROMAN";
|
|
2107
|
+
ListStyle2["BULLETED"] = "BULLETED";
|
|
2108
|
+
ListStyle2["ALPHABETICAL_INDEX"] = "ALPHABETICAL_INDEX";
|
|
2109
|
+
ListStyle2["ALPHABETICAL_INDEX_COMPACT"] = "ALPHABETICAL_INDEX_COMPACT";
|
|
2110
|
+
return ListStyle2;
|
|
2111
|
+
})(ListStyle || {});
|
|
2112
|
+
var Indentation = /* @__PURE__ */ ((Indentation2) => {
|
|
2113
|
+
Indentation2["NESTED"] = "NESTED";
|
|
2114
|
+
Indentation2["FLAT"] = "FLAT";
|
|
2115
|
+
return Indentation2;
|
|
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 || {});
|
|
2035
2141
|
var QuestionStatus = /* @__PURE__ */ ((QuestionStatus2) => {
|
|
2036
2142
|
QuestionStatus2["UNKNOWN"] = "UNKNOWN";
|
|
2037
2143
|
QuestionStatus2["VISIBLE"] = "VISIBLE";
|
|
@@ -2443,6 +2549,7 @@ export {
|
|
|
2443
2549
|
BackgroundType,
|
|
2444
2550
|
ButtonDataType,
|
|
2445
2551
|
CardDataBackgroundType,
|
|
2552
|
+
ColumnSize,
|
|
2446
2553
|
ContentFormat,
|
|
2447
2554
|
Crop,
|
|
2448
2555
|
DecorationType,
|
|
@@ -2456,11 +2563,13 @@ export {
|
|
|
2456
2563
|
ImagePosition,
|
|
2457
2564
|
ImagePositionPosition,
|
|
2458
2565
|
ImageScalingScaling,
|
|
2566
|
+
Indentation,
|
|
2459
2567
|
InitialExpandedItems,
|
|
2460
2568
|
Layout,
|
|
2461
2569
|
LayoutDataBackgroundType,
|
|
2462
2570
|
LayoutType,
|
|
2463
2571
|
LineStyle,
|
|
2572
|
+
ListStyle,
|
|
2464
2573
|
MapType,
|
|
2465
2574
|
NodeType,
|
|
2466
2575
|
NullValue,
|
|
@@ -2478,6 +2587,7 @@ export {
|
|
|
2478
2587
|
Resizing,
|
|
2479
2588
|
ResponsivenessBehaviour,
|
|
2480
2589
|
Scaling,
|
|
2590
|
+
SmartBlockDataType,
|
|
2481
2591
|
SortOrder,
|
|
2482
2592
|
Source,
|
|
2483
2593
|
StylesPosition,
|