@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 };
|
|
@@ -40,11 +40,13 @@ __export(index_typings_exports, {
|
|
|
40
40
|
ImagePosition: () => ImagePosition,
|
|
41
41
|
ImagePositionPosition: () => ImagePositionPosition,
|
|
42
42
|
ImageScalingScaling: () => ImageScalingScaling,
|
|
43
|
+
Indentation: () => Indentation,
|
|
43
44
|
InitialExpandedItems: () => InitialExpandedItems,
|
|
44
45
|
Layout: () => Layout,
|
|
45
46
|
LayoutDataBackgroundType: () => LayoutDataBackgroundType,
|
|
46
47
|
LayoutType: () => LayoutType,
|
|
47
48
|
LineStyle: () => LineStyle,
|
|
49
|
+
ListStyle: () => ListStyle,
|
|
48
50
|
MapType: () => MapType,
|
|
49
51
|
NodeType: () => NodeType,
|
|
50
52
|
NullValue: () => NullValue,
|
|
@@ -350,6 +352,8 @@ function createQuestionEntry(payload) {
|
|
|
350
352
|
{
|
|
351
353
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
352
354
|
},
|
|
355
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
356
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
353
357
|
{ path: "questionEntry.labels.sortOrder" }
|
|
354
358
|
]
|
|
355
359
|
}
|
|
@@ -484,6 +488,8 @@ function createQuestionEntry(payload) {
|
|
|
484
488
|
{
|
|
485
489
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
486
490
|
},
|
|
491
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
492
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
487
493
|
{ path: "questionEntry.labels.sortOrder" }
|
|
488
494
|
]
|
|
489
495
|
}
|
|
@@ -625,6 +631,8 @@ function getQuestionEntry(payload) {
|
|
|
625
631
|
{
|
|
626
632
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
627
633
|
},
|
|
634
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
635
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
628
636
|
{ path: "questionEntry.labels.sortOrder" }
|
|
629
637
|
]
|
|
630
638
|
}
|
|
@@ -744,6 +752,8 @@ function updateQuestionEntry(payload) {
|
|
|
744
752
|
{
|
|
745
753
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
746
754
|
},
|
|
755
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
756
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
747
757
|
{ path: "questionEntry.labels.sortOrder" }
|
|
748
758
|
]
|
|
749
759
|
}
|
|
@@ -878,6 +888,8 @@ function updateQuestionEntry(payload) {
|
|
|
878
888
|
{
|
|
879
889
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
880
890
|
},
|
|
891
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
892
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
881
893
|
{ path: "questionEntry.labels.sortOrder" }
|
|
882
894
|
]
|
|
883
895
|
}
|
|
@@ -1040,6 +1052,8 @@ function listQuestionEntries(payload) {
|
|
|
1040
1052
|
{
|
|
1041
1053
|
path: "questionEntries.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1042
1054
|
},
|
|
1055
|
+
{ path: "questionEntries.richContent.nodes.tocData.fontSize" },
|
|
1056
|
+
{ path: "questionEntries.richContent.nodes.tocData.itemSpacing" },
|
|
1043
1057
|
{ path: "questionEntries.labels.sortOrder" }
|
|
1044
1058
|
]
|
|
1045
1059
|
}
|
|
@@ -1181,6 +1195,8 @@ function queryQuestionEntries(payload) {
|
|
|
1181
1195
|
{
|
|
1182
1196
|
path: "questionEntries.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1183
1197
|
},
|
|
1198
|
+
{ path: "questionEntries.richContent.nodes.tocData.fontSize" },
|
|
1199
|
+
{ path: "questionEntries.richContent.nodes.tocData.itemSpacing" },
|
|
1184
1200
|
{ path: "questionEntries.labels.sortOrder" }
|
|
1185
1201
|
]
|
|
1186
1202
|
}
|
|
@@ -1343,6 +1359,8 @@ function updateExtendedFields(payload) {
|
|
|
1343
1359
|
{
|
|
1344
1360
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1345
1361
|
},
|
|
1362
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
1363
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
1346
1364
|
{ path: "questionEntry.labels.sortOrder" }
|
|
1347
1365
|
]
|
|
1348
1366
|
}
|
|
@@ -1490,6 +1508,8 @@ function setQuestionEntryLabels(payload) {
|
|
|
1490
1508
|
{
|
|
1491
1509
|
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1492
1510
|
},
|
|
1511
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
1512
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
1493
1513
|
{ path: "questionEntry.labels.sortOrder" }
|
|
1494
1514
|
]
|
|
1495
1515
|
}
|
|
@@ -1625,6 +1645,12 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1625
1645
|
{
|
|
1626
1646
|
path: "questionEntries.questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1627
1647
|
},
|
|
1648
|
+
{
|
|
1649
|
+
path: "questionEntries.questionEntry.richContent.nodes.tocData.fontSize"
|
|
1650
|
+
},
|
|
1651
|
+
{
|
|
1652
|
+
path: "questionEntries.questionEntry.richContent.nodes.tocData.itemSpacing"
|
|
1653
|
+
},
|
|
1628
1654
|
{ path: "questionEntries.questionEntry.labels.sortOrder" }
|
|
1629
1655
|
]
|
|
1630
1656
|
}
|
|
@@ -1763,6 +1789,12 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1763
1789
|
{
|
|
1764
1790
|
path: "results.questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1765
1791
|
},
|
|
1792
|
+
{
|
|
1793
|
+
path: "results.questionEntry.richContent.nodes.tocData.fontSize"
|
|
1794
|
+
},
|
|
1795
|
+
{
|
|
1796
|
+
path: "results.questionEntry.richContent.nodes.tocData.itemSpacing"
|
|
1797
|
+
},
|
|
1766
1798
|
{ path: "results.questionEntry.labels.sortOrder" }
|
|
1767
1799
|
]
|
|
1768
1800
|
}
|
|
@@ -1812,6 +1844,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
1812
1844
|
NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
|
|
1813
1845
|
NodeType2["SHAPE"] = "SHAPE";
|
|
1814
1846
|
NodeType2["CARD"] = "CARD";
|
|
1847
|
+
NodeType2["TOC"] = "TOC";
|
|
1815
1848
|
return NodeType2;
|
|
1816
1849
|
})(NodeType || {});
|
|
1817
1850
|
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
@@ -1922,6 +1955,7 @@ var Source = /* @__PURE__ */ ((Source2) => {
|
|
|
1922
1955
|
Source2["HTML"] = "HTML";
|
|
1923
1956
|
Source2["ADSENSE"] = "ADSENSE";
|
|
1924
1957
|
Source2["AI"] = "AI";
|
|
1958
|
+
Source2["AI_WIDGET"] = "AI_WIDGET";
|
|
1925
1959
|
return Source2;
|
|
1926
1960
|
})(Source || {});
|
|
1927
1961
|
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
@@ -2123,6 +2157,21 @@ var CardDataBackgroundType = /* @__PURE__ */ ((CardDataBackgroundType2) => {
|
|
|
2123
2157
|
CardDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
2124
2158
|
return CardDataBackgroundType2;
|
|
2125
2159
|
})(CardDataBackgroundType || {});
|
|
2160
|
+
var ListStyle = /* @__PURE__ */ ((ListStyle2) => {
|
|
2161
|
+
ListStyle2["PLAIN"] = "PLAIN";
|
|
2162
|
+
ListStyle2["NUMBERED"] = "NUMBERED";
|
|
2163
|
+
ListStyle2["LETTERS"] = "LETTERS";
|
|
2164
|
+
ListStyle2["ROMAN"] = "ROMAN";
|
|
2165
|
+
ListStyle2["BULLETED"] = "BULLETED";
|
|
2166
|
+
ListStyle2["ALPHABETICAL_INDEX"] = "ALPHABETICAL_INDEX";
|
|
2167
|
+
ListStyle2["ALPHABETICAL_INDEX_COMPACT"] = "ALPHABETICAL_INDEX_COMPACT";
|
|
2168
|
+
return ListStyle2;
|
|
2169
|
+
})(ListStyle || {});
|
|
2170
|
+
var Indentation = /* @__PURE__ */ ((Indentation2) => {
|
|
2171
|
+
Indentation2["NESTED"] = "NESTED";
|
|
2172
|
+
Indentation2["FLAT"] = "FLAT";
|
|
2173
|
+
return Indentation2;
|
|
2174
|
+
})(Indentation || {});
|
|
2126
2175
|
var QuestionStatus = /* @__PURE__ */ ((QuestionStatus2) => {
|
|
2127
2176
|
QuestionStatus2["UNKNOWN"] = "UNKNOWN";
|
|
2128
2177
|
QuestionStatus2["VISIBLE"] = "VISIBLE";
|
|
@@ -2548,11 +2597,13 @@ async function bulkUpdateQuestionEntry2(options) {
|
|
|
2548
2597
|
ImagePosition,
|
|
2549
2598
|
ImagePositionPosition,
|
|
2550
2599
|
ImageScalingScaling,
|
|
2600
|
+
Indentation,
|
|
2551
2601
|
InitialExpandedItems,
|
|
2552
2602
|
Layout,
|
|
2553
2603
|
LayoutDataBackgroundType,
|
|
2554
2604
|
LayoutType,
|
|
2555
2605
|
LineStyle,
|
|
2606
|
+
ListStyle,
|
|
2556
2607
|
MapType,
|
|
2557
2608
|
NodeType,
|
|
2558
2609
|
NullValue,
|