@wix/auto_sdk_faq_question-entry 1.0.21 → 1.0.23
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 +3 -3
- package/build/cjs/index.js +40 -3
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +3 -2
- package/build/cjs/index.typings.js +31 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +170 -3
- package/build/cjs/meta.js +423 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +3 -3
- package/build/es/index.mjs +40 -3
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +3 -2
- package/build/es/index.typings.mjs +31 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +170 -3
- package/build/es/meta.mjs +379 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +3 -3
- package/build/internal/cjs/index.js +40 -3
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +3 -2
- package/build/internal/cjs/index.typings.js +31 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +170 -3
- package/build/internal/cjs/meta.js +423 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +3 -3
- package/build/internal/es/index.mjs +40 -3
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +3 -2
- package/build/internal/es/index.typings.mjs +31 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +170 -3
- package/build/internal/es/meta.mjs +379 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +3 -3
package/build/cjs/meta.d.ts
CHANGED
|
@@ -846,10 +846,11 @@ interface HTMLDataDataOneOf {
|
|
|
846
846
|
}
|
|
847
847
|
declare enum Source {
|
|
848
848
|
HTML = "HTML",
|
|
849
|
-
ADSENSE = "ADSENSE"
|
|
849
|
+
ADSENSE = "ADSENSE",
|
|
850
|
+
AI = "AI"
|
|
850
851
|
}
|
|
851
852
|
/** @enumType */
|
|
852
|
-
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE';
|
|
853
|
+
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
|
|
853
854
|
interface ImageData {
|
|
854
855
|
/** Styling for the image's container. */
|
|
855
856
|
containerData?: PluginContainerData;
|
|
@@ -1721,6 +1722,27 @@ interface BorderColors {
|
|
|
1721
1722
|
*/
|
|
1722
1723
|
bottom?: string | null;
|
|
1723
1724
|
}
|
|
1725
|
+
/**
|
|
1726
|
+
* `NullValue` is a singleton enumeration to represent the null value for the
|
|
1727
|
+
* `Value` type union.
|
|
1728
|
+
*
|
|
1729
|
+
* The JSON representation for `NullValue` is JSON `null`.
|
|
1730
|
+
*/
|
|
1731
|
+
declare enum NullValue {
|
|
1732
|
+
/** Null value. */
|
|
1733
|
+
NULL_VALUE = "NULL_VALUE"
|
|
1734
|
+
}
|
|
1735
|
+
/** @enumType */
|
|
1736
|
+
type NullValueWithLiterals = NullValue | 'NULL_VALUE';
|
|
1737
|
+
/**
|
|
1738
|
+
* `ListValue` is a wrapper around a repeated field of values.
|
|
1739
|
+
*
|
|
1740
|
+
* The JSON representation for `ListValue` is JSON array.
|
|
1741
|
+
*/
|
|
1742
|
+
interface ListValue {
|
|
1743
|
+
/** Repeated field of dynamically typed values. */
|
|
1744
|
+
values?: any[];
|
|
1745
|
+
}
|
|
1724
1746
|
interface AudioData {
|
|
1725
1747
|
/** Styling for the audio node's container. */
|
|
1726
1748
|
containerData?: PluginContainerData;
|
|
@@ -1818,6 +1840,13 @@ interface Label {
|
|
|
1818
1840
|
/** Order of the question entry within the label. */
|
|
1819
1841
|
sortOrder?: number | null;
|
|
1820
1842
|
}
|
|
1843
|
+
declare enum QuestionStatus {
|
|
1844
|
+
UNKNOWN = "UNKNOWN",
|
|
1845
|
+
VISIBLE = "VISIBLE",
|
|
1846
|
+
HIDDEN = "HIDDEN"
|
|
1847
|
+
}
|
|
1848
|
+
/** @enumType */
|
|
1849
|
+
type QuestionStatusWithLiterals = QuestionStatus | 'UNKNOWN' | 'VISIBLE' | 'HIDDEN';
|
|
1821
1850
|
interface ExtendedFields {
|
|
1822
1851
|
/**
|
|
1823
1852
|
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
@@ -2144,6 +2173,144 @@ interface BulkUpdateQuestionEntryResult {
|
|
|
2144
2173
|
/** Updated question entry. Only included if `return_full_entity` was set to `true`. */
|
|
2145
2174
|
questionEntry?: QuestionEntry;
|
|
2146
2175
|
}
|
|
2176
|
+
interface DomainEvent extends DomainEventBodyOneOf {
|
|
2177
|
+
createdEvent?: EntityCreatedEvent;
|
|
2178
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
2179
|
+
deletedEvent?: EntityDeletedEvent;
|
|
2180
|
+
actionEvent?: ActionEvent;
|
|
2181
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
2182
|
+
id?: string;
|
|
2183
|
+
/**
|
|
2184
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
2185
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
2186
|
+
*/
|
|
2187
|
+
entityFqdn?: string;
|
|
2188
|
+
/**
|
|
2189
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
2190
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
2191
|
+
*/
|
|
2192
|
+
slug?: string;
|
|
2193
|
+
/** ID of the entity associated with the event. */
|
|
2194
|
+
entityId?: string;
|
|
2195
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
2196
|
+
eventTime?: Date | null;
|
|
2197
|
+
/**
|
|
2198
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
2199
|
+
* (for example, GDPR).
|
|
2200
|
+
*/
|
|
2201
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
2202
|
+
/** If present, indicates the action that triggered the event. */
|
|
2203
|
+
originatedFrom?: string | null;
|
|
2204
|
+
/**
|
|
2205
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
|
2206
|
+
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
2207
|
+
*/
|
|
2208
|
+
entityEventSequence?: string | null;
|
|
2209
|
+
}
|
|
2210
|
+
/** @oneof */
|
|
2211
|
+
interface DomainEventBodyOneOf {
|
|
2212
|
+
createdEvent?: EntityCreatedEvent;
|
|
2213
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
2214
|
+
deletedEvent?: EntityDeletedEvent;
|
|
2215
|
+
actionEvent?: ActionEvent;
|
|
2216
|
+
}
|
|
2217
|
+
interface EntityCreatedEvent {
|
|
2218
|
+
entityAsJson?: string;
|
|
2219
|
+
/** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
|
|
2220
|
+
restoreInfo?: RestoreInfo;
|
|
2221
|
+
}
|
|
2222
|
+
interface RestoreInfo {
|
|
2223
|
+
deletedDate?: Date | null;
|
|
2224
|
+
}
|
|
2225
|
+
interface EntityUpdatedEvent {
|
|
2226
|
+
/**
|
|
2227
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
2228
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
2229
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
2230
|
+
*/
|
|
2231
|
+
currentEntityAsJson?: string;
|
|
2232
|
+
}
|
|
2233
|
+
interface EntityDeletedEvent {
|
|
2234
|
+
/** Entity that was deleted. */
|
|
2235
|
+
deletedEntityAsJson?: string | null;
|
|
2236
|
+
}
|
|
2237
|
+
interface ActionEvent {
|
|
2238
|
+
bodyAsJson?: string;
|
|
2239
|
+
}
|
|
2240
|
+
interface Empty {
|
|
2241
|
+
}
|
|
2242
|
+
interface MessageEnvelope {
|
|
2243
|
+
/**
|
|
2244
|
+
* App instance ID.
|
|
2245
|
+
* @format GUID
|
|
2246
|
+
*/
|
|
2247
|
+
instanceId?: string | null;
|
|
2248
|
+
/**
|
|
2249
|
+
* Event type.
|
|
2250
|
+
* @maxLength 150
|
|
2251
|
+
*/
|
|
2252
|
+
eventType?: string;
|
|
2253
|
+
/** The identification type and identity data. */
|
|
2254
|
+
identity?: IdentificationData;
|
|
2255
|
+
/** Stringify payload. */
|
|
2256
|
+
data?: string;
|
|
2257
|
+
}
|
|
2258
|
+
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
2259
|
+
/**
|
|
2260
|
+
* ID of a site visitor that has not logged in to the site.
|
|
2261
|
+
* @format GUID
|
|
2262
|
+
*/
|
|
2263
|
+
anonymousVisitorId?: string;
|
|
2264
|
+
/**
|
|
2265
|
+
* ID of a site visitor that has logged in to the site.
|
|
2266
|
+
* @format GUID
|
|
2267
|
+
*/
|
|
2268
|
+
memberId?: string;
|
|
2269
|
+
/**
|
|
2270
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
2271
|
+
* @format GUID
|
|
2272
|
+
*/
|
|
2273
|
+
wixUserId?: string;
|
|
2274
|
+
/**
|
|
2275
|
+
* ID of an app.
|
|
2276
|
+
* @format GUID
|
|
2277
|
+
*/
|
|
2278
|
+
appId?: string;
|
|
2279
|
+
/** @readonly */
|
|
2280
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
2281
|
+
}
|
|
2282
|
+
/** @oneof */
|
|
2283
|
+
interface IdentificationDataIdOneOf {
|
|
2284
|
+
/**
|
|
2285
|
+
* ID of a site visitor that has not logged in to the site.
|
|
2286
|
+
* @format GUID
|
|
2287
|
+
*/
|
|
2288
|
+
anonymousVisitorId?: string;
|
|
2289
|
+
/**
|
|
2290
|
+
* ID of a site visitor that has logged in to the site.
|
|
2291
|
+
* @format GUID
|
|
2292
|
+
*/
|
|
2293
|
+
memberId?: string;
|
|
2294
|
+
/**
|
|
2295
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
2296
|
+
* @format GUID
|
|
2297
|
+
*/
|
|
2298
|
+
wixUserId?: string;
|
|
2299
|
+
/**
|
|
2300
|
+
* ID of an app.
|
|
2301
|
+
* @format GUID
|
|
2302
|
+
*/
|
|
2303
|
+
appId?: string;
|
|
2304
|
+
}
|
|
2305
|
+
declare enum WebhookIdentityType {
|
|
2306
|
+
UNKNOWN = "UNKNOWN",
|
|
2307
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
2308
|
+
MEMBER = "MEMBER",
|
|
2309
|
+
WIX_USER = "WIX_USER",
|
|
2310
|
+
APP = "APP"
|
|
2311
|
+
}
|
|
2312
|
+
/** @enumType */
|
|
2313
|
+
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
2147
2314
|
|
|
2148
2315
|
type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
|
|
2149
2316
|
getUrl: (context: any) => string;
|
|
@@ -2176,4 +2343,4 @@ declare function setQuestionEntryLabels(): __PublicMethodMetaInfo<'PATCH', {
|
|
|
2176
2343
|
}, SetQuestionEntryLabelsRequest$1, SetQuestionEntryLabelsRequest, SetQuestionEntryLabelsResponse$1, SetQuestionEntryLabelsResponse>;
|
|
2177
2344
|
declare function bulkUpdateQuestionEntry(): __PublicMethodMetaInfo<'POST', {}, BulkUpdateQuestionEntryRequest$1, BulkUpdateQuestionEntryRequest, BulkUpdateQuestionEntryResponse$1, BulkUpdateQuestionEntryResponse>;
|
|
2178
2345
|
|
|
2179
|
-
export { type __PublicMethodMetaInfo, bulkDeleteQuestionEntries, bulkUpdateQuestionEntry, createQuestionEntry, deleteQuestionEntry, getQuestionEntry, listQuestionEntries, queryQuestionEntries, setQuestionEntryLabels, updateExtendedFields, updateQuestionEntry };
|
|
2346
|
+
export { type ActionEvent as ActionEventOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, type ApplicationError as ApplicationErrorOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type BackgroundBackgroundOneOf as BackgroundBackgroundOneOfOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type BlockquoteData as BlockquoteDataOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkDeleteQuestionEntriesRequest as BulkDeleteQuestionEntriesRequestOriginal, type BulkDeleteQuestionEntriesResponse as BulkDeleteQuestionEntriesResponseOriginal, type BulkUpdateQuestionEntryRequest as BulkUpdateQuestionEntryRequestOriginal, type BulkUpdateQuestionEntryResponse as BulkUpdateQuestionEntryResponseOriginal, type BulkUpdateQuestionEntryResult as BulkUpdateQuestionEntryResultOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardStyles as CardStylesOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, ContentFormat as ContentFormatOriginal, type ContentFormatWithLiterals as ContentFormatWithLiteralsOriginal, type CreateQuestionEntryRequest as CreateQuestionEntryRequestOriginal, type CreateQuestionEntryResponse as CreateQuestionEntryResponseOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeleteQuestionEntryRequest as DeleteQuestionEntryRequestOriginal, type DeleteQuestionEntryResponse as DeleteQuestionEntryResponseOriginal, type Design as DesignOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EmbedData as EmbedDataOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, type ExtendedFields as ExtendedFieldsOriginal, FieldSet as FieldSetOriginal, type FieldSetWithLiterals as FieldSetWithLiteralsOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type GetQuestionEntryRequest as GetQuestionEntryRequestOriginal, type GetQuestionEntryResponse as GetQuestionEntryResponseOriginal, type Gradient as GradientOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, type ImageStyles as ImageStylesOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemMetadata as ItemMetadataOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type Label as LabelOriginal, type LayoutCellData as LayoutCellDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, type ListQuestionEntriesRequest as ListQuestionEntriesRequestOriginal, type ListQuestionEntriesResponse as ListQuestionEntriesResponseOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MaskedQuestionEntry as MaskedQuestionEntryOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Metadata as MetadataOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type ParagraphData as ParagraphDataOriginal, type Permissions as PermissionsOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PricingData as PricingDataOriginal, QueryQuestionEntriesRequestContentFormat as QueryQuestionEntriesRequestContentFormatOriginal, type QueryQuestionEntriesRequestContentFormatWithLiterals as QueryQuestionEntriesRequestContentFormatWithLiteralsOriginal, QueryQuestionEntriesRequestFieldSet as QueryQuestionEntriesRequestFieldSetOriginal, type QueryQuestionEntriesRequestFieldSetWithLiterals as QueryQuestionEntriesRequestFieldSetWithLiteralsOriginal, type QueryQuestionEntriesRequest as QueryQuestionEntriesRequestOriginal, type QueryQuestionEntriesResponse as QueryQuestionEntriesResponseOriginal, type QuestionEntryAnswerOneOf as QuestionEntryAnswerOneOfOriginal, type QuestionEntry as QuestionEntryOriginal, QuestionStatus as QuestionStatusOriginal, type QuestionStatusWithLiterals as QuestionStatusWithLiteralsOriginal, type Rel as RelOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, type SetQuestionEntryLabelsRequest as SetQuestionEntryLabelsRequestOriginal, type SetQuestionEntryLabelsResponse as SetQuestionEntryLabelsResponseOriginal, type Settings as SettingsOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequestOriginal, type UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponseOriginal, type UpdateQuestionEntryRequest as UpdateQuestionEntryRequestOriginal, type UpdateQuestionEntryResponse as UpdateQuestionEntryResponseOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type __PublicMethodMetaInfo, bulkDeleteQuestionEntries, bulkUpdateQuestionEntry, createQuestionEntry, deleteQuestionEntry, getQuestionEntry, listQuestionEntries, queryQuestionEntries, setQuestionEntryLabels, updateExtendedFields, updateQuestionEntry };
|