@wix/auto_sdk_faq_question-entry 1.0.41 → 1.0.42
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 +57 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +60 -5
- package/build/cjs/index.typings.js +51 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +60 -5
- package/build/cjs/meta.js +51 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +55 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +60 -5
- package/build/es/index.typings.mjs +49 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +60 -5
- package/build/es/meta.mjs +49 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +57 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +60 -5
- package/build/internal/cjs/index.typings.js +51 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +60 -5
- package/build/internal/cjs/meta.js +51 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +55 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +60 -5
- package/build/internal/es/index.typings.mjs +49 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +60 -5
- package/build/internal/es/meta.mjs +49 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -166,6 +166,8 @@ 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;
|
|
169
171
|
/** 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
172
|
type?: NodeTypeWithLiterals;
|
|
171
173
|
/** Node ID. */
|
|
@@ -237,6 +239,8 @@ interface NodeDataOneOf {
|
|
|
237
239
|
shapeData?: ShapeData;
|
|
238
240
|
/** Data for a card node. */
|
|
239
241
|
cardData?: CardData;
|
|
242
|
+
/** Data for a table of contents node. */
|
|
243
|
+
tocData?: TocData;
|
|
240
244
|
}
|
|
241
245
|
declare enum NodeType {
|
|
242
246
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -274,10 +278,11 @@ declare enum NodeType {
|
|
|
274
278
|
LAYOUT = "LAYOUT",
|
|
275
279
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
276
280
|
SHAPE = "SHAPE",
|
|
277
|
-
CARD = "CARD"
|
|
281
|
+
CARD = "CARD",
|
|
282
|
+
TOC = "TOC"
|
|
278
283
|
}
|
|
279
284
|
/** @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';
|
|
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';
|
|
281
286
|
interface NodeStyle {
|
|
282
287
|
/** The top padding value in pixels. */
|
|
283
288
|
paddingTop?: string | null;
|
|
@@ -906,6 +911,8 @@ interface HTMLData extends HTMLDataDataOneOf {
|
|
|
906
911
|
* @deprecated
|
|
907
912
|
*/
|
|
908
913
|
isAdsense?: boolean | null;
|
|
914
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
915
|
+
widgetId?: string;
|
|
909
916
|
/** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
|
|
910
917
|
containerData?: PluginContainerData;
|
|
911
918
|
/** The type of HTML code. */
|
|
@@ -924,14 +931,17 @@ interface HTMLDataDataOneOf {
|
|
|
924
931
|
* @deprecated
|
|
925
932
|
*/
|
|
926
933
|
isAdsense?: boolean | null;
|
|
934
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
935
|
+
widgetId?: string;
|
|
927
936
|
}
|
|
928
937
|
declare enum Source {
|
|
929
938
|
HTML = "HTML",
|
|
930
939
|
ADSENSE = "ADSENSE",
|
|
931
|
-
AI = "AI"
|
|
940
|
+
AI = "AI",
|
|
941
|
+
AI_WIDGET = "AI_WIDGET"
|
|
932
942
|
}
|
|
933
943
|
/** @enumType */
|
|
934
|
-
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
|
|
944
|
+
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI' | 'AI_WIDGET';
|
|
935
945
|
interface ImageData {
|
|
936
946
|
/** Styling for the image's container. */
|
|
937
947
|
containerData?: PluginContainerData;
|
|
@@ -2159,6 +2169,51 @@ interface BackgroundImage {
|
|
|
2159
2169
|
/** Position of background. Defaults to `CENTER`. */
|
|
2160
2170
|
position?: ImagePositionPositionWithLiterals;
|
|
2161
2171
|
}
|
|
2172
|
+
interface TocData {
|
|
2173
|
+
/** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
|
|
2174
|
+
includedHeadings?: number[];
|
|
2175
|
+
/** List style. Default: PLAIN. */
|
|
2176
|
+
listStyle?: ListStyleWithLiterals;
|
|
2177
|
+
/** Optional override for the font size in pixels. */
|
|
2178
|
+
fontSize?: number | null;
|
|
2179
|
+
/** Optional override for the vertical spacing between items in pixels. */
|
|
2180
|
+
itemSpacing?: number | null;
|
|
2181
|
+
/**
|
|
2182
|
+
* Optional override for the text color.
|
|
2183
|
+
* @format COLOR_HEX
|
|
2184
|
+
*/
|
|
2185
|
+
color?: string | null;
|
|
2186
|
+
/** Indentation style. Default: NESTED. */
|
|
2187
|
+
indentation?: IndentationWithLiterals;
|
|
2188
|
+
}
|
|
2189
|
+
/** List style. */
|
|
2190
|
+
declare enum ListStyle {
|
|
2191
|
+
/** No markers (default) */
|
|
2192
|
+
PLAIN = "PLAIN",
|
|
2193
|
+
/** Numbered list */
|
|
2194
|
+
NUMBERED = "NUMBERED",
|
|
2195
|
+
/** Alphabetic letters */
|
|
2196
|
+
LETTERS = "LETTERS",
|
|
2197
|
+
/** Roman numerals */
|
|
2198
|
+
ROMAN = "ROMAN",
|
|
2199
|
+
/** Bulleted list */
|
|
2200
|
+
BULLETED = "BULLETED",
|
|
2201
|
+
/** Alphabetical index */
|
|
2202
|
+
ALPHABETICAL_INDEX = "ALPHABETICAL_INDEX",
|
|
2203
|
+
/** Alphabetical index (compact top-row only) */
|
|
2204
|
+
ALPHABETICAL_INDEX_COMPACT = "ALPHABETICAL_INDEX_COMPACT"
|
|
2205
|
+
}
|
|
2206
|
+
/** @enumType */
|
|
2207
|
+
type ListStyleWithLiterals = ListStyle | 'PLAIN' | 'NUMBERED' | 'LETTERS' | 'ROMAN' | 'BULLETED' | 'ALPHABETICAL_INDEX' | 'ALPHABETICAL_INDEX_COMPACT';
|
|
2208
|
+
/** Indentation style. */
|
|
2209
|
+
declare enum Indentation {
|
|
2210
|
+
/** Sub-headings indented under parents (default) */
|
|
2211
|
+
NESTED = "NESTED",
|
|
2212
|
+
/** All items at the same level */
|
|
2213
|
+
FLAT = "FLAT"
|
|
2214
|
+
}
|
|
2215
|
+
/** @enumType */
|
|
2216
|
+
type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
|
|
2162
2217
|
interface Metadata {
|
|
2163
2218
|
/** Schema version. */
|
|
2164
2219
|
version?: number;
|
|
@@ -3216,4 +3271,4 @@ interface BulkUpdateQuestionEntryOptions {
|
|
|
3216
3271
|
returnFullEntity?: boolean | null;
|
|
3217
3272
|
}
|
|
3218
3273
|
|
|
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 };
|
|
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 };
|
|
@@ -259,6 +259,8 @@ 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" },
|
|
262
264
|
{ path: "questionEntry.labels.sortOrder" }
|
|
263
265
|
]
|
|
264
266
|
}
|
|
@@ -393,6 +395,8 @@ function createQuestionEntry(payload) {
|
|
|
393
395
|
{
|
|
394
396
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
395
397
|
},
|
|
398
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
399
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
396
400
|
{ path: "questionEntry.labels.sortOrder" }
|
|
397
401
|
]
|
|
398
402
|
}
|
|
@@ -534,6 +538,8 @@ function getQuestionEntry(payload) {
|
|
|
534
538
|
{
|
|
535
539
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
536
540
|
},
|
|
541
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
542
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
537
543
|
{ path: "questionEntry.labels.sortOrder" }
|
|
538
544
|
]
|
|
539
545
|
}
|
|
@@ -653,6 +659,8 @@ function updateQuestionEntry(payload) {
|
|
|
653
659
|
{
|
|
654
660
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
655
661
|
},
|
|
662
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
663
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
656
664
|
{ path: "questionEntry.labels.sortOrder" }
|
|
657
665
|
]
|
|
658
666
|
}
|
|
@@ -787,6 +795,8 @@ function updateQuestionEntry(payload) {
|
|
|
787
795
|
{
|
|
788
796
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
789
797
|
},
|
|
798
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
799
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
790
800
|
{ path: "questionEntry.labels.sortOrder" }
|
|
791
801
|
]
|
|
792
802
|
}
|
|
@@ -949,6 +959,8 @@ function listQuestionEntries(payload) {
|
|
|
949
959
|
{
|
|
950
960
|
path: "questionEntries.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
951
961
|
},
|
|
962
|
+
{ path: "questionEntries.richContent.nodes.tocData.fontSize" },
|
|
963
|
+
{ path: "questionEntries.richContent.nodes.tocData.itemSpacing" },
|
|
952
964
|
{ path: "questionEntries.labels.sortOrder" }
|
|
953
965
|
]
|
|
954
966
|
}
|
|
@@ -1090,6 +1102,8 @@ function queryQuestionEntries(payload) {
|
|
|
1090
1102
|
{
|
|
1091
1103
|
path: "questionEntries.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1092
1104
|
},
|
|
1105
|
+
{ path: "questionEntries.richContent.nodes.tocData.fontSize" },
|
|
1106
|
+
{ path: "questionEntries.richContent.nodes.tocData.itemSpacing" },
|
|
1093
1107
|
{ path: "questionEntries.labels.sortOrder" }
|
|
1094
1108
|
]
|
|
1095
1109
|
}
|
|
@@ -1252,6 +1266,8 @@ function updateExtendedFields(payload) {
|
|
|
1252
1266
|
{
|
|
1253
1267
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1254
1268
|
},
|
|
1269
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
1270
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
1255
1271
|
{ path: "questionEntry.labels.sortOrder" }
|
|
1256
1272
|
]
|
|
1257
1273
|
}
|
|
@@ -1399,6 +1415,8 @@ function setQuestionEntryLabels(payload) {
|
|
|
1399
1415
|
{
|
|
1400
1416
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1401
1417
|
},
|
|
1418
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
1419
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
1402
1420
|
{ path: "questionEntry.labels.sortOrder" }
|
|
1403
1421
|
]
|
|
1404
1422
|
}
|
|
@@ -1534,6 +1552,12 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1534
1552
|
{
|
|
1535
1553
|
path: "questionEntries.questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1536
1554
|
},
|
|
1555
|
+
{
|
|
1556
|
+
path: "questionEntries.questionEntry.richContent.nodes.tocData.fontSize"
|
|
1557
|
+
},
|
|
1558
|
+
{
|
|
1559
|
+
path: "questionEntries.questionEntry.richContent.nodes.tocData.itemSpacing"
|
|
1560
|
+
},
|
|
1537
1561
|
{ path: "questionEntries.questionEntry.labels.sortOrder" }
|
|
1538
1562
|
]
|
|
1539
1563
|
}
|
|
@@ -1672,6 +1696,12 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1672
1696
|
{
|
|
1673
1697
|
path: "results.questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1674
1698
|
},
|
|
1699
|
+
{
|
|
1700
|
+
path: "results.questionEntry.richContent.nodes.tocData.fontSize"
|
|
1701
|
+
},
|
|
1702
|
+
{
|
|
1703
|
+
path: "results.questionEntry.richContent.nodes.tocData.itemSpacing"
|
|
1704
|
+
},
|
|
1675
1705
|
{ path: "results.questionEntry.labels.sortOrder" }
|
|
1676
1706
|
]
|
|
1677
1707
|
}
|
|
@@ -1721,6 +1751,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
1721
1751
|
NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
|
|
1722
1752
|
NodeType2["SHAPE"] = "SHAPE";
|
|
1723
1753
|
NodeType2["CARD"] = "CARD";
|
|
1754
|
+
NodeType2["TOC"] = "TOC";
|
|
1724
1755
|
return NodeType2;
|
|
1725
1756
|
})(NodeType || {});
|
|
1726
1757
|
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
@@ -1831,6 +1862,7 @@ var Source = /* @__PURE__ */ ((Source2) => {
|
|
|
1831
1862
|
Source2["HTML"] = "HTML";
|
|
1832
1863
|
Source2["ADSENSE"] = "ADSENSE";
|
|
1833
1864
|
Source2["AI"] = "AI";
|
|
1865
|
+
Source2["AI_WIDGET"] = "AI_WIDGET";
|
|
1834
1866
|
return Source2;
|
|
1835
1867
|
})(Source || {});
|
|
1836
1868
|
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
@@ -2032,6 +2064,21 @@ var CardDataBackgroundType = /* @__PURE__ */ ((CardDataBackgroundType2) => {
|
|
|
2032
2064
|
CardDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
2033
2065
|
return CardDataBackgroundType2;
|
|
2034
2066
|
})(CardDataBackgroundType || {});
|
|
2067
|
+
var ListStyle = /* @__PURE__ */ ((ListStyle2) => {
|
|
2068
|
+
ListStyle2["PLAIN"] = "PLAIN";
|
|
2069
|
+
ListStyle2["NUMBERED"] = "NUMBERED";
|
|
2070
|
+
ListStyle2["LETTERS"] = "LETTERS";
|
|
2071
|
+
ListStyle2["ROMAN"] = "ROMAN";
|
|
2072
|
+
ListStyle2["BULLETED"] = "BULLETED";
|
|
2073
|
+
ListStyle2["ALPHABETICAL_INDEX"] = "ALPHABETICAL_INDEX";
|
|
2074
|
+
ListStyle2["ALPHABETICAL_INDEX_COMPACT"] = "ALPHABETICAL_INDEX_COMPACT";
|
|
2075
|
+
return ListStyle2;
|
|
2076
|
+
})(ListStyle || {});
|
|
2077
|
+
var Indentation = /* @__PURE__ */ ((Indentation2) => {
|
|
2078
|
+
Indentation2["NESTED"] = "NESTED";
|
|
2079
|
+
Indentation2["FLAT"] = "FLAT";
|
|
2080
|
+
return Indentation2;
|
|
2081
|
+
})(Indentation || {});
|
|
2035
2082
|
var QuestionStatus = /* @__PURE__ */ ((QuestionStatus2) => {
|
|
2036
2083
|
QuestionStatus2["UNKNOWN"] = "UNKNOWN";
|
|
2037
2084
|
QuestionStatus2["VISIBLE"] = "VISIBLE";
|
|
@@ -2456,11 +2503,13 @@ export {
|
|
|
2456
2503
|
ImagePosition,
|
|
2457
2504
|
ImagePositionPosition,
|
|
2458
2505
|
ImageScalingScaling,
|
|
2506
|
+
Indentation,
|
|
2459
2507
|
InitialExpandedItems,
|
|
2460
2508
|
Layout,
|
|
2461
2509
|
LayoutDataBackgroundType,
|
|
2462
2510
|
LayoutType,
|
|
2463
2511
|
LineStyle,
|
|
2512
|
+
ListStyle,
|
|
2464
2513
|
MapType,
|
|
2465
2514
|
NodeType,
|
|
2466
2515
|
NullValue,
|