@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 };
|
|
@@ -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,
|
|
@@ -40,11 +41,13 @@ __export(index_typings_exports, {
|
|
|
40
41
|
ImagePosition: () => ImagePosition,
|
|
41
42
|
ImagePositionPosition: () => ImagePositionPosition,
|
|
42
43
|
ImageScalingScaling: () => ImageScalingScaling,
|
|
44
|
+
Indentation: () => Indentation,
|
|
43
45
|
InitialExpandedItems: () => InitialExpandedItems,
|
|
44
46
|
Layout: () => Layout,
|
|
45
47
|
LayoutDataBackgroundType: () => LayoutDataBackgroundType,
|
|
46
48
|
LayoutType: () => LayoutType,
|
|
47
49
|
LineStyle: () => LineStyle,
|
|
50
|
+
ListStyle: () => ListStyle,
|
|
48
51
|
MapType: () => MapType,
|
|
49
52
|
NodeType: () => NodeType,
|
|
50
53
|
NullValue: () => NullValue,
|
|
@@ -62,6 +65,7 @@ __export(index_typings_exports, {
|
|
|
62
65
|
Resizing: () => Resizing,
|
|
63
66
|
ResponsivenessBehaviour: () => ResponsivenessBehaviour,
|
|
64
67
|
Scaling: () => Scaling,
|
|
68
|
+
SmartBlockDataType: () => SmartBlockDataType,
|
|
65
69
|
SortOrder: () => SortOrder,
|
|
66
70
|
Source: () => Source,
|
|
67
71
|
StylesPosition: () => StylesPosition,
|
|
@@ -350,6 +354,11 @@ function createQuestionEntry(payload) {
|
|
|
350
354
|
{
|
|
351
355
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
352
356
|
},
|
|
357
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
358
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
359
|
+
{
|
|
360
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
361
|
+
},
|
|
353
362
|
{ path: "questionEntry.labels.sortOrder" }
|
|
354
363
|
]
|
|
355
364
|
}
|
|
@@ -484,6 +493,11 @@ function createQuestionEntry(payload) {
|
|
|
484
493
|
{
|
|
485
494
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
486
495
|
},
|
|
496
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
497
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
498
|
+
{
|
|
499
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
500
|
+
},
|
|
487
501
|
{ path: "questionEntry.labels.sortOrder" }
|
|
488
502
|
]
|
|
489
503
|
}
|
|
@@ -625,6 +639,11 @@ function getQuestionEntry(payload) {
|
|
|
625
639
|
{
|
|
626
640
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
627
641
|
},
|
|
642
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
643
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
644
|
+
{
|
|
645
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
646
|
+
},
|
|
628
647
|
{ path: "questionEntry.labels.sortOrder" }
|
|
629
648
|
]
|
|
630
649
|
}
|
|
@@ -744,6 +763,11 @@ function updateQuestionEntry(payload) {
|
|
|
744
763
|
{
|
|
745
764
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
746
765
|
},
|
|
766
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
767
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
768
|
+
{
|
|
769
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
770
|
+
},
|
|
747
771
|
{ path: "questionEntry.labels.sortOrder" }
|
|
748
772
|
]
|
|
749
773
|
}
|
|
@@ -878,6 +902,11 @@ function updateQuestionEntry(payload) {
|
|
|
878
902
|
{
|
|
879
903
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
880
904
|
},
|
|
905
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
906
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
907
|
+
{
|
|
908
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
909
|
+
},
|
|
881
910
|
{ path: "questionEntry.labels.sortOrder" }
|
|
882
911
|
]
|
|
883
912
|
}
|
|
@@ -1040,6 +1069,11 @@ function listQuestionEntries(payload) {
|
|
|
1040
1069
|
{
|
|
1041
1070
|
path: "questionEntries.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1042
1071
|
},
|
|
1072
|
+
{ path: "questionEntries.richContent.nodes.tocData.fontSize" },
|
|
1073
|
+
{ path: "questionEntries.richContent.nodes.tocData.itemSpacing" },
|
|
1074
|
+
{
|
|
1075
|
+
path: "questionEntries.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1076
|
+
},
|
|
1043
1077
|
{ path: "questionEntries.labels.sortOrder" }
|
|
1044
1078
|
]
|
|
1045
1079
|
}
|
|
@@ -1181,6 +1215,11 @@ function queryQuestionEntries(payload) {
|
|
|
1181
1215
|
{
|
|
1182
1216
|
path: "questionEntries.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1183
1217
|
},
|
|
1218
|
+
{ path: "questionEntries.richContent.nodes.tocData.fontSize" },
|
|
1219
|
+
{ path: "questionEntries.richContent.nodes.tocData.itemSpacing" },
|
|
1220
|
+
{
|
|
1221
|
+
path: "questionEntries.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1222
|
+
},
|
|
1184
1223
|
{ path: "questionEntries.labels.sortOrder" }
|
|
1185
1224
|
]
|
|
1186
1225
|
}
|
|
@@ -1343,6 +1382,11 @@ function updateExtendedFields(payload) {
|
|
|
1343
1382
|
{
|
|
1344
1383
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1345
1384
|
},
|
|
1385
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
1386
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
1387
|
+
{
|
|
1388
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1389
|
+
},
|
|
1346
1390
|
{ path: "questionEntry.labels.sortOrder" }
|
|
1347
1391
|
]
|
|
1348
1392
|
}
|
|
@@ -1490,6 +1534,11 @@ function setQuestionEntryLabels(payload) {
|
|
|
1490
1534
|
{
|
|
1491
1535
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1492
1536
|
},
|
|
1537
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
1538
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
1539
|
+
{
|
|
1540
|
+
path: "questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1541
|
+
},
|
|
1493
1542
|
{ path: "questionEntry.labels.sortOrder" }
|
|
1494
1543
|
]
|
|
1495
1544
|
}
|
|
@@ -1625,6 +1674,15 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1625
1674
|
{
|
|
1626
1675
|
path: "questionEntries.questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1627
1676
|
},
|
|
1677
|
+
{
|
|
1678
|
+
path: "questionEntries.questionEntry.richContent.nodes.tocData.fontSize"
|
|
1679
|
+
},
|
|
1680
|
+
{
|
|
1681
|
+
path: "questionEntries.questionEntry.richContent.nodes.tocData.itemSpacing"
|
|
1682
|
+
},
|
|
1683
|
+
{
|
|
1684
|
+
path: "questionEntries.questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1685
|
+
},
|
|
1628
1686
|
{ path: "questionEntries.questionEntry.labels.sortOrder" }
|
|
1629
1687
|
]
|
|
1630
1688
|
}
|
|
@@ -1763,6 +1821,15 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1763
1821
|
{
|
|
1764
1822
|
path: "results.questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1765
1823
|
},
|
|
1824
|
+
{
|
|
1825
|
+
path: "results.questionEntry.richContent.nodes.tocData.fontSize"
|
|
1826
|
+
},
|
|
1827
|
+
{
|
|
1828
|
+
path: "results.questionEntry.richContent.nodes.tocData.itemSpacing"
|
|
1829
|
+
},
|
|
1830
|
+
{
|
|
1831
|
+
path: "results.questionEntry.richContent.nodes.smartBlockCellData.shape.duration"
|
|
1832
|
+
},
|
|
1766
1833
|
{ path: "results.questionEntry.labels.sortOrder" }
|
|
1767
1834
|
]
|
|
1768
1835
|
}
|
|
@@ -1812,6 +1879,9 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
1812
1879
|
NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
|
|
1813
1880
|
NodeType2["SHAPE"] = "SHAPE";
|
|
1814
1881
|
NodeType2["CARD"] = "CARD";
|
|
1882
|
+
NodeType2["TOC"] = "TOC";
|
|
1883
|
+
NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
|
|
1884
|
+
NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
|
|
1815
1885
|
return NodeType2;
|
|
1816
1886
|
})(NodeType || {});
|
|
1817
1887
|
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
@@ -1922,6 +1992,7 @@ var Source = /* @__PURE__ */ ((Source2) => {
|
|
|
1922
1992
|
Source2["HTML"] = "HTML";
|
|
1923
1993
|
Source2["ADSENSE"] = "ADSENSE";
|
|
1924
1994
|
Source2["AI"] = "AI";
|
|
1995
|
+
Source2["AI_WIDGET"] = "AI_WIDGET";
|
|
1925
1996
|
return Source2;
|
|
1926
1997
|
})(Source || {});
|
|
1927
1998
|
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
@@ -2123,6 +2194,45 @@ var CardDataBackgroundType = /* @__PURE__ */ ((CardDataBackgroundType2) => {
|
|
|
2123
2194
|
CardDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
2124
2195
|
return CardDataBackgroundType2;
|
|
2125
2196
|
})(CardDataBackgroundType || {});
|
|
2197
|
+
var ListStyle = /* @__PURE__ */ ((ListStyle2) => {
|
|
2198
|
+
ListStyle2["PLAIN"] = "PLAIN";
|
|
2199
|
+
ListStyle2["NUMBERED"] = "NUMBERED";
|
|
2200
|
+
ListStyle2["LETTERS"] = "LETTERS";
|
|
2201
|
+
ListStyle2["ROMAN"] = "ROMAN";
|
|
2202
|
+
ListStyle2["BULLETED"] = "BULLETED";
|
|
2203
|
+
ListStyle2["ALPHABETICAL_INDEX"] = "ALPHABETICAL_INDEX";
|
|
2204
|
+
ListStyle2["ALPHABETICAL_INDEX_COMPACT"] = "ALPHABETICAL_INDEX_COMPACT";
|
|
2205
|
+
return ListStyle2;
|
|
2206
|
+
})(ListStyle || {});
|
|
2207
|
+
var Indentation = /* @__PURE__ */ ((Indentation2) => {
|
|
2208
|
+
Indentation2["NESTED"] = "NESTED";
|
|
2209
|
+
Indentation2["FLAT"] = "FLAT";
|
|
2210
|
+
return Indentation2;
|
|
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 || {});
|
|
2126
2236
|
var QuestionStatus = /* @__PURE__ */ ((QuestionStatus2) => {
|
|
2127
2237
|
QuestionStatus2["UNKNOWN"] = "UNKNOWN";
|
|
2128
2238
|
QuestionStatus2["VISIBLE"] = "VISIBLE";
|
|
@@ -2535,6 +2645,7 @@ async function bulkUpdateQuestionEntry2(options) {
|
|
|
2535
2645
|
BackgroundType,
|
|
2536
2646
|
ButtonDataType,
|
|
2537
2647
|
CardDataBackgroundType,
|
|
2648
|
+
ColumnSize,
|
|
2538
2649
|
ContentFormat,
|
|
2539
2650
|
Crop,
|
|
2540
2651
|
DecorationType,
|
|
@@ -2548,11 +2659,13 @@ async function bulkUpdateQuestionEntry2(options) {
|
|
|
2548
2659
|
ImagePosition,
|
|
2549
2660
|
ImagePositionPosition,
|
|
2550
2661
|
ImageScalingScaling,
|
|
2662
|
+
Indentation,
|
|
2551
2663
|
InitialExpandedItems,
|
|
2552
2664
|
Layout,
|
|
2553
2665
|
LayoutDataBackgroundType,
|
|
2554
2666
|
LayoutType,
|
|
2555
2667
|
LineStyle,
|
|
2668
|
+
ListStyle,
|
|
2556
2669
|
MapType,
|
|
2557
2670
|
NodeType,
|
|
2558
2671
|
NullValue,
|
|
@@ -2570,6 +2683,7 @@ async function bulkUpdateQuestionEntry2(options) {
|
|
|
2570
2683
|
Resizing,
|
|
2571
2684
|
ResponsivenessBehaviour,
|
|
2572
2685
|
Scaling,
|
|
2686
|
+
SmartBlockDataType,
|
|
2573
2687
|
SortOrder,
|
|
2574
2688
|
Source,
|
|
2575
2689
|
StylesPosition,
|