@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/es/meta.d.mts
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 };
|
package/build/es/meta.mjs
CHANGED
|
@@ -193,6 +193,9 @@ function createQuestionEntry(payload) {
|
|
|
193
193
|
method: "POST",
|
|
194
194
|
methodFqn: "wix.faq.questionentry.v2.QuestionEntryService.CreateQuestionEntry",
|
|
195
195
|
packageName: PACKAGE_NAME,
|
|
196
|
+
migrationOptions: {
|
|
197
|
+
optInTransformResponse: true
|
|
198
|
+
},
|
|
196
199
|
url: resolveWixFaqQuestionentryV2QuestionEntryServiceUrl({
|
|
197
200
|
protoPath: "/v2/question-entries",
|
|
198
201
|
data: serializedData,
|
|
@@ -274,6 +277,9 @@ function getQuestionEntry(payload) {
|
|
|
274
277
|
method: "GET",
|
|
275
278
|
methodFqn: "wix.faq.questionentry.v2.QuestionEntryService.GetQuestionEntry",
|
|
276
279
|
packageName: PACKAGE_NAME,
|
|
280
|
+
migrationOptions: {
|
|
281
|
+
optInTransformResponse: true
|
|
282
|
+
},
|
|
277
283
|
url: resolveWixFaqQuestionentryV2QuestionEntryServiceUrl({
|
|
278
284
|
protoPath: "/v2/question-entries/{questionEntryId}",
|
|
279
285
|
data: payload,
|
|
@@ -412,6 +418,9 @@ function updateQuestionEntry(payload) {
|
|
|
412
418
|
method: "PATCH",
|
|
413
419
|
methodFqn: "wix.faq.questionentry.v2.QuestionEntryService.UpdateQuestionEntry",
|
|
414
420
|
packageName: PACKAGE_NAME,
|
|
421
|
+
migrationOptions: {
|
|
422
|
+
optInTransformResponse: true
|
|
423
|
+
},
|
|
415
424
|
url: resolveWixFaqQuestionentryV2QuestionEntryServiceUrl({
|
|
416
425
|
protoPath: "/v2/question-entries/{questionEntry.id}",
|
|
417
426
|
data: serializedData,
|
|
@@ -493,6 +502,9 @@ function deleteQuestionEntry(payload) {
|
|
|
493
502
|
method: "DELETE",
|
|
494
503
|
methodFqn: "wix.faq.questionentry.v2.QuestionEntryService.DeleteQuestionEntry",
|
|
495
504
|
packageName: PACKAGE_NAME,
|
|
505
|
+
migrationOptions: {
|
|
506
|
+
optInTransformResponse: true
|
|
507
|
+
},
|
|
496
508
|
url: resolveWixFaqQuestionentryV2QuestionEntryServiceUrl({
|
|
497
509
|
protoPath: "/v2/question-entries/{questionEntryId}",
|
|
498
510
|
data: payload,
|
|
@@ -511,6 +523,9 @@ function listQuestionEntries(payload) {
|
|
|
511
523
|
method: "GET",
|
|
512
524
|
methodFqn: "wix.faq.questionentry.v2.QuestionEntryService.ListQuestionEntries",
|
|
513
525
|
packageName: PACKAGE_NAME,
|
|
526
|
+
migrationOptions: {
|
|
527
|
+
optInTransformResponse: true
|
|
528
|
+
},
|
|
514
529
|
url: resolveWixFaqQuestionentryV2QuestionEntryServiceUrl({
|
|
515
530
|
protoPath: "/v2/question-entries",
|
|
516
531
|
data: payload,
|
|
@@ -592,6 +607,9 @@ function queryQuestionEntries(payload) {
|
|
|
592
607
|
method: "POST",
|
|
593
608
|
methodFqn: "wix.faq.questionentry.v2.QuestionEntryService.QueryQuestionEntries",
|
|
594
609
|
packageName: PACKAGE_NAME,
|
|
610
|
+
migrationOptions: {
|
|
611
|
+
optInTransformResponse: true
|
|
612
|
+
},
|
|
595
613
|
url: resolveWixFaqQuestionentryV2QuestionEntryServiceUrl({
|
|
596
614
|
protoPath: "/v2/question-entries/query",
|
|
597
615
|
data: payload,
|
|
@@ -673,6 +691,9 @@ function bulkDeleteQuestionEntries(payload) {
|
|
|
673
691
|
method: "POST",
|
|
674
692
|
methodFqn: "wix.faq.questionentry.v2.QuestionEntryService.BulkDeleteQuestionEntries",
|
|
675
693
|
packageName: PACKAGE_NAME,
|
|
694
|
+
migrationOptions: {
|
|
695
|
+
optInTransformResponse: true
|
|
696
|
+
},
|
|
676
697
|
url: resolveWixFaqQuestionentryV2QuestionEntryServiceUrl({
|
|
677
698
|
protoPath: "/v2/bulk/question-entries/delete",
|
|
678
699
|
data: payload,
|
|
@@ -691,6 +712,9 @@ function updateExtendedFields(payload) {
|
|
|
691
712
|
method: "POST",
|
|
692
713
|
methodFqn: "wix.faq.questionentry.v2.QuestionEntryService.UpdateExtendedFields",
|
|
693
714
|
packageName: PACKAGE_NAME,
|
|
715
|
+
migrationOptions: {
|
|
716
|
+
optInTransformResponse: true
|
|
717
|
+
},
|
|
694
718
|
url: resolveWixFaqQuestionentryV2QuestionEntryServiceUrl({
|
|
695
719
|
protoPath: "/v2/question-entries/{id}/update-extended-fields",
|
|
696
720
|
data: payload,
|
|
@@ -778,6 +802,9 @@ function setQuestionEntryLabels(payload) {
|
|
|
778
802
|
method: "PATCH",
|
|
779
803
|
methodFqn: "wix.faq.questionentry.v2.QuestionEntryService.SetQuestionEntryLabels",
|
|
780
804
|
packageName: PACKAGE_NAME,
|
|
805
|
+
migrationOptions: {
|
|
806
|
+
optInTransformResponse: true
|
|
807
|
+
},
|
|
781
808
|
url: resolveWixFaqQuestionentryV2QuestionEntryServiceUrl({
|
|
782
809
|
protoPath: "/v2/question-entries/{questionEntryId}/labels",
|
|
783
810
|
data: serializedData,
|
|
@@ -930,6 +957,9 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
930
957
|
method: "POST",
|
|
931
958
|
methodFqn: "wix.faq.questionentry.v2.QuestionEntryService.BulkUpdateQuestionEntry",
|
|
932
959
|
packageName: PACKAGE_NAME,
|
|
960
|
+
migrationOptions: {
|
|
961
|
+
optInTransformResponse: true
|
|
962
|
+
},
|
|
933
963
|
url: resolveWixFaqQuestionentryV2QuestionEntryServiceUrl({
|
|
934
964
|
protoPath: "/v2/bulk/question-entries/update",
|
|
935
965
|
data: serializedData,
|
|
@@ -1009,6 +1039,311 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1009
1039
|
return __bulkUpdateQuestionEntry;
|
|
1010
1040
|
}
|
|
1011
1041
|
|
|
1042
|
+
// src/faq-question-entry-v2-question-entry-question-entry.types.ts
|
|
1043
|
+
var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
1044
|
+
NodeType2["PARAGRAPH"] = "PARAGRAPH";
|
|
1045
|
+
NodeType2["TEXT"] = "TEXT";
|
|
1046
|
+
NodeType2["HEADING"] = "HEADING";
|
|
1047
|
+
NodeType2["BULLETED_LIST"] = "BULLETED_LIST";
|
|
1048
|
+
NodeType2["ORDERED_LIST"] = "ORDERED_LIST";
|
|
1049
|
+
NodeType2["LIST_ITEM"] = "LIST_ITEM";
|
|
1050
|
+
NodeType2["BLOCKQUOTE"] = "BLOCKQUOTE";
|
|
1051
|
+
NodeType2["CODE_BLOCK"] = "CODE_BLOCK";
|
|
1052
|
+
NodeType2["VIDEO"] = "VIDEO";
|
|
1053
|
+
NodeType2["DIVIDER"] = "DIVIDER";
|
|
1054
|
+
NodeType2["FILE"] = "FILE";
|
|
1055
|
+
NodeType2["GALLERY"] = "GALLERY";
|
|
1056
|
+
NodeType2["GIF"] = "GIF";
|
|
1057
|
+
NodeType2["HTML"] = "HTML";
|
|
1058
|
+
NodeType2["IMAGE"] = "IMAGE";
|
|
1059
|
+
NodeType2["LINK_PREVIEW"] = "LINK_PREVIEW";
|
|
1060
|
+
NodeType2["MAP"] = "MAP";
|
|
1061
|
+
NodeType2["POLL"] = "POLL";
|
|
1062
|
+
NodeType2["APP_EMBED"] = "APP_EMBED";
|
|
1063
|
+
NodeType2["BUTTON"] = "BUTTON";
|
|
1064
|
+
NodeType2["COLLAPSIBLE_LIST"] = "COLLAPSIBLE_LIST";
|
|
1065
|
+
NodeType2["TABLE"] = "TABLE";
|
|
1066
|
+
NodeType2["EMBED"] = "EMBED";
|
|
1067
|
+
NodeType2["COLLAPSIBLE_ITEM"] = "COLLAPSIBLE_ITEM";
|
|
1068
|
+
NodeType2["COLLAPSIBLE_ITEM_TITLE"] = "COLLAPSIBLE_ITEM_TITLE";
|
|
1069
|
+
NodeType2["COLLAPSIBLE_ITEM_BODY"] = "COLLAPSIBLE_ITEM_BODY";
|
|
1070
|
+
NodeType2["TABLE_CELL"] = "TABLE_CELL";
|
|
1071
|
+
NodeType2["TABLE_ROW"] = "TABLE_ROW";
|
|
1072
|
+
NodeType2["EXTERNAL"] = "EXTERNAL";
|
|
1073
|
+
NodeType2["AUDIO"] = "AUDIO";
|
|
1074
|
+
NodeType2["CAPTION"] = "CAPTION";
|
|
1075
|
+
NodeType2["LAYOUT"] = "LAYOUT";
|
|
1076
|
+
NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
|
|
1077
|
+
return NodeType2;
|
|
1078
|
+
})(NodeType || {});
|
|
1079
|
+
var WidthType = /* @__PURE__ */ ((WidthType2) => {
|
|
1080
|
+
WidthType2["CONTENT"] = "CONTENT";
|
|
1081
|
+
WidthType2["SMALL"] = "SMALL";
|
|
1082
|
+
WidthType2["ORIGINAL"] = "ORIGINAL";
|
|
1083
|
+
WidthType2["FULL_WIDTH"] = "FULL_WIDTH";
|
|
1084
|
+
return WidthType2;
|
|
1085
|
+
})(WidthType || {});
|
|
1086
|
+
var PluginContainerDataAlignment = /* @__PURE__ */ ((PluginContainerDataAlignment2) => {
|
|
1087
|
+
PluginContainerDataAlignment2["CENTER"] = "CENTER";
|
|
1088
|
+
PluginContainerDataAlignment2["LEFT"] = "LEFT";
|
|
1089
|
+
PluginContainerDataAlignment2["RIGHT"] = "RIGHT";
|
|
1090
|
+
return PluginContainerDataAlignment2;
|
|
1091
|
+
})(PluginContainerDataAlignment || {});
|
|
1092
|
+
var ButtonDataType = /* @__PURE__ */ ((ButtonDataType2) => {
|
|
1093
|
+
ButtonDataType2["LINK"] = "LINK";
|
|
1094
|
+
ButtonDataType2["ACTION"] = "ACTION";
|
|
1095
|
+
return ButtonDataType2;
|
|
1096
|
+
})(ButtonDataType || {});
|
|
1097
|
+
var Target = /* @__PURE__ */ ((Target2) => {
|
|
1098
|
+
Target2["SELF"] = "SELF";
|
|
1099
|
+
Target2["BLANK"] = "BLANK";
|
|
1100
|
+
Target2["PARENT"] = "PARENT";
|
|
1101
|
+
Target2["TOP"] = "TOP";
|
|
1102
|
+
return Target2;
|
|
1103
|
+
})(Target || {});
|
|
1104
|
+
var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
|
|
1105
|
+
TextAlignment2["AUTO"] = "AUTO";
|
|
1106
|
+
TextAlignment2["LEFT"] = "LEFT";
|
|
1107
|
+
TextAlignment2["RIGHT"] = "RIGHT";
|
|
1108
|
+
TextAlignment2["CENTER"] = "CENTER";
|
|
1109
|
+
TextAlignment2["JUSTIFY"] = "JUSTIFY";
|
|
1110
|
+
return TextAlignment2;
|
|
1111
|
+
})(TextAlignment || {});
|
|
1112
|
+
var LineStyle = /* @__PURE__ */ ((LineStyle2) => {
|
|
1113
|
+
LineStyle2["SINGLE"] = "SINGLE";
|
|
1114
|
+
LineStyle2["DOUBLE"] = "DOUBLE";
|
|
1115
|
+
LineStyle2["DASHED"] = "DASHED";
|
|
1116
|
+
LineStyle2["DOTTED"] = "DOTTED";
|
|
1117
|
+
return LineStyle2;
|
|
1118
|
+
})(LineStyle || {});
|
|
1119
|
+
var Width = /* @__PURE__ */ ((Width2) => {
|
|
1120
|
+
Width2["LARGE"] = "LARGE";
|
|
1121
|
+
Width2["MEDIUM"] = "MEDIUM";
|
|
1122
|
+
Width2["SMALL"] = "SMALL";
|
|
1123
|
+
return Width2;
|
|
1124
|
+
})(Width || {});
|
|
1125
|
+
var DividerDataAlignment = /* @__PURE__ */ ((DividerDataAlignment2) => {
|
|
1126
|
+
DividerDataAlignment2["CENTER"] = "CENTER";
|
|
1127
|
+
DividerDataAlignment2["LEFT"] = "LEFT";
|
|
1128
|
+
DividerDataAlignment2["RIGHT"] = "RIGHT";
|
|
1129
|
+
return DividerDataAlignment2;
|
|
1130
|
+
})(DividerDataAlignment || {});
|
|
1131
|
+
var ViewMode = /* @__PURE__ */ ((ViewMode2) => {
|
|
1132
|
+
ViewMode2["NONE"] = "NONE";
|
|
1133
|
+
ViewMode2["FULL"] = "FULL";
|
|
1134
|
+
ViewMode2["MINI"] = "MINI";
|
|
1135
|
+
return ViewMode2;
|
|
1136
|
+
})(ViewMode || {});
|
|
1137
|
+
var LayoutType = /* @__PURE__ */ ((LayoutType2) => {
|
|
1138
|
+
LayoutType2["COLLAGE"] = "COLLAGE";
|
|
1139
|
+
LayoutType2["MASONRY"] = "MASONRY";
|
|
1140
|
+
LayoutType2["GRID"] = "GRID";
|
|
1141
|
+
LayoutType2["THUMBNAIL"] = "THUMBNAIL";
|
|
1142
|
+
LayoutType2["SLIDER"] = "SLIDER";
|
|
1143
|
+
LayoutType2["SLIDESHOW"] = "SLIDESHOW";
|
|
1144
|
+
LayoutType2["PANORAMA"] = "PANORAMA";
|
|
1145
|
+
LayoutType2["COLUMN"] = "COLUMN";
|
|
1146
|
+
LayoutType2["MAGIC"] = "MAGIC";
|
|
1147
|
+
LayoutType2["FULLSIZE"] = "FULLSIZE";
|
|
1148
|
+
return LayoutType2;
|
|
1149
|
+
})(LayoutType || {});
|
|
1150
|
+
var Orientation = /* @__PURE__ */ ((Orientation2) => {
|
|
1151
|
+
Orientation2["ROWS"] = "ROWS";
|
|
1152
|
+
Orientation2["COLUMNS"] = "COLUMNS";
|
|
1153
|
+
return Orientation2;
|
|
1154
|
+
})(Orientation || {});
|
|
1155
|
+
var Crop = /* @__PURE__ */ ((Crop2) => {
|
|
1156
|
+
Crop2["FILL"] = "FILL";
|
|
1157
|
+
Crop2["FIT"] = "FIT";
|
|
1158
|
+
return Crop2;
|
|
1159
|
+
})(Crop || {});
|
|
1160
|
+
var ThumbnailsAlignment = /* @__PURE__ */ ((ThumbnailsAlignment2) => {
|
|
1161
|
+
ThumbnailsAlignment2["TOP"] = "TOP";
|
|
1162
|
+
ThumbnailsAlignment2["RIGHT"] = "RIGHT";
|
|
1163
|
+
ThumbnailsAlignment2["BOTTOM"] = "BOTTOM";
|
|
1164
|
+
ThumbnailsAlignment2["LEFT"] = "LEFT";
|
|
1165
|
+
ThumbnailsAlignment2["NONE"] = "NONE";
|
|
1166
|
+
return ThumbnailsAlignment2;
|
|
1167
|
+
})(ThumbnailsAlignment || {});
|
|
1168
|
+
var GIFType = /* @__PURE__ */ ((GIFType2) => {
|
|
1169
|
+
GIFType2["NORMAL"] = "NORMAL";
|
|
1170
|
+
GIFType2["STICKER"] = "STICKER";
|
|
1171
|
+
return GIFType2;
|
|
1172
|
+
})(GIFType || {});
|
|
1173
|
+
var Source = /* @__PURE__ */ ((Source2) => {
|
|
1174
|
+
Source2["HTML"] = "HTML";
|
|
1175
|
+
Source2["ADSENSE"] = "ADSENSE";
|
|
1176
|
+
Source2["AI"] = "AI";
|
|
1177
|
+
return Source2;
|
|
1178
|
+
})(Source || {});
|
|
1179
|
+
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
1180
|
+
StylesPosition2["START"] = "START";
|
|
1181
|
+
StylesPosition2["END"] = "END";
|
|
1182
|
+
StylesPosition2["TOP"] = "TOP";
|
|
1183
|
+
StylesPosition2["HIDDEN"] = "HIDDEN";
|
|
1184
|
+
return StylesPosition2;
|
|
1185
|
+
})(StylesPosition || {});
|
|
1186
|
+
var MapType = /* @__PURE__ */ ((MapType2) => {
|
|
1187
|
+
MapType2["ROADMAP"] = "ROADMAP";
|
|
1188
|
+
MapType2["SATELITE"] = "SATELITE";
|
|
1189
|
+
MapType2["HYBRID"] = "HYBRID";
|
|
1190
|
+
MapType2["TERRAIN"] = "TERRAIN";
|
|
1191
|
+
return MapType2;
|
|
1192
|
+
})(MapType || {});
|
|
1193
|
+
var ViewRole = /* @__PURE__ */ ((ViewRole2) => {
|
|
1194
|
+
ViewRole2["CREATOR"] = "CREATOR";
|
|
1195
|
+
ViewRole2["VOTERS"] = "VOTERS";
|
|
1196
|
+
ViewRole2["EVERYONE"] = "EVERYONE";
|
|
1197
|
+
return ViewRole2;
|
|
1198
|
+
})(ViewRole || {});
|
|
1199
|
+
var VoteRole = /* @__PURE__ */ ((VoteRole2) => {
|
|
1200
|
+
VoteRole2["SITE_MEMBERS"] = "SITE_MEMBERS";
|
|
1201
|
+
VoteRole2["ALL"] = "ALL";
|
|
1202
|
+
return VoteRole2;
|
|
1203
|
+
})(VoteRole || {});
|
|
1204
|
+
var PollLayoutType = /* @__PURE__ */ ((PollLayoutType2) => {
|
|
1205
|
+
PollLayoutType2["LIST"] = "LIST";
|
|
1206
|
+
PollLayoutType2["GRID"] = "GRID";
|
|
1207
|
+
return PollLayoutType2;
|
|
1208
|
+
})(PollLayoutType || {});
|
|
1209
|
+
var PollLayoutDirection = /* @__PURE__ */ ((PollLayoutDirection2) => {
|
|
1210
|
+
PollLayoutDirection2["LTR"] = "LTR";
|
|
1211
|
+
PollLayoutDirection2["RTL"] = "RTL";
|
|
1212
|
+
return PollLayoutDirection2;
|
|
1213
|
+
})(PollLayoutDirection || {});
|
|
1214
|
+
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
1215
|
+
BackgroundType2["COLOR"] = "COLOR";
|
|
1216
|
+
BackgroundType2["IMAGE"] = "IMAGE";
|
|
1217
|
+
BackgroundType2["GRADIENT"] = "GRADIENT";
|
|
1218
|
+
return BackgroundType2;
|
|
1219
|
+
})(BackgroundType || {});
|
|
1220
|
+
var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
|
|
1221
|
+
DecorationType2["BOLD"] = "BOLD";
|
|
1222
|
+
DecorationType2["ITALIC"] = "ITALIC";
|
|
1223
|
+
DecorationType2["UNDERLINE"] = "UNDERLINE";
|
|
1224
|
+
DecorationType2["SPOILER"] = "SPOILER";
|
|
1225
|
+
DecorationType2["ANCHOR"] = "ANCHOR";
|
|
1226
|
+
DecorationType2["MENTION"] = "MENTION";
|
|
1227
|
+
DecorationType2["LINK"] = "LINK";
|
|
1228
|
+
DecorationType2["COLOR"] = "COLOR";
|
|
1229
|
+
DecorationType2["FONT_SIZE"] = "FONT_SIZE";
|
|
1230
|
+
DecorationType2["EXTERNAL"] = "EXTERNAL";
|
|
1231
|
+
DecorationType2["STRIKETHROUGH"] = "STRIKETHROUGH";
|
|
1232
|
+
DecorationType2["SUPERSCRIPT"] = "SUPERSCRIPT";
|
|
1233
|
+
DecorationType2["SUBSCRIPT"] = "SUBSCRIPT";
|
|
1234
|
+
return DecorationType2;
|
|
1235
|
+
})(DecorationType || {});
|
|
1236
|
+
var FontType = /* @__PURE__ */ ((FontType2) => {
|
|
1237
|
+
FontType2["PX"] = "PX";
|
|
1238
|
+
FontType2["EM"] = "EM";
|
|
1239
|
+
return FontType2;
|
|
1240
|
+
})(FontType || {});
|
|
1241
|
+
var Position = /* @__PURE__ */ ((Position2) => {
|
|
1242
|
+
Position2["START"] = "START";
|
|
1243
|
+
Position2["END"] = "END";
|
|
1244
|
+
Position2["TOP"] = "TOP";
|
|
1245
|
+
return Position2;
|
|
1246
|
+
})(Position || {});
|
|
1247
|
+
var AspectRatio = /* @__PURE__ */ ((AspectRatio2) => {
|
|
1248
|
+
AspectRatio2["SQUARE"] = "SQUARE";
|
|
1249
|
+
AspectRatio2["RECTANGLE"] = "RECTANGLE";
|
|
1250
|
+
return AspectRatio2;
|
|
1251
|
+
})(AspectRatio || {});
|
|
1252
|
+
var Resizing = /* @__PURE__ */ ((Resizing2) => {
|
|
1253
|
+
Resizing2["FILL"] = "FILL";
|
|
1254
|
+
Resizing2["FIT"] = "FIT";
|
|
1255
|
+
return Resizing2;
|
|
1256
|
+
})(Resizing || {});
|
|
1257
|
+
var Placement = /* @__PURE__ */ ((Placement2) => {
|
|
1258
|
+
Placement2["IMAGE"] = "IMAGE";
|
|
1259
|
+
Placement2["PRODUCT_INFO"] = "PRODUCT_INFO";
|
|
1260
|
+
return Placement2;
|
|
1261
|
+
})(Placement || {});
|
|
1262
|
+
var Type = /* @__PURE__ */ ((Type2) => {
|
|
1263
|
+
Type2["CONTAINED"] = "CONTAINED";
|
|
1264
|
+
Type2["FRAMELESS"] = "FRAMELESS";
|
|
1265
|
+
return Type2;
|
|
1266
|
+
})(Type || {});
|
|
1267
|
+
var Alignment = /* @__PURE__ */ ((Alignment2) => {
|
|
1268
|
+
Alignment2["START"] = "START";
|
|
1269
|
+
Alignment2["CENTER"] = "CENTER";
|
|
1270
|
+
Alignment2["END"] = "END";
|
|
1271
|
+
return Alignment2;
|
|
1272
|
+
})(Alignment || {});
|
|
1273
|
+
var Layout = /* @__PURE__ */ ((Layout2) => {
|
|
1274
|
+
Layout2["STACKED"] = "STACKED";
|
|
1275
|
+
Layout2["SIDE_BY_SIDE"] = "SIDE_BY_SIDE";
|
|
1276
|
+
return Layout2;
|
|
1277
|
+
})(Layout || {});
|
|
1278
|
+
var AppType = /* @__PURE__ */ ((AppType2) => {
|
|
1279
|
+
AppType2["PRODUCT"] = "PRODUCT";
|
|
1280
|
+
AppType2["EVENT"] = "EVENT";
|
|
1281
|
+
AppType2["BOOKING"] = "BOOKING";
|
|
1282
|
+
return AppType2;
|
|
1283
|
+
})(AppType || {});
|
|
1284
|
+
var InitialExpandedItems = /* @__PURE__ */ ((InitialExpandedItems2) => {
|
|
1285
|
+
InitialExpandedItems2["FIRST"] = "FIRST";
|
|
1286
|
+
InitialExpandedItems2["ALL"] = "ALL";
|
|
1287
|
+
InitialExpandedItems2["NONE"] = "NONE";
|
|
1288
|
+
return InitialExpandedItems2;
|
|
1289
|
+
})(InitialExpandedItems || {});
|
|
1290
|
+
var Direction = /* @__PURE__ */ ((Direction2) => {
|
|
1291
|
+
Direction2["LTR"] = "LTR";
|
|
1292
|
+
Direction2["RTL"] = "RTL";
|
|
1293
|
+
return Direction2;
|
|
1294
|
+
})(Direction || {});
|
|
1295
|
+
var VerticalAlignment = /* @__PURE__ */ ((VerticalAlignment2) => {
|
|
1296
|
+
VerticalAlignment2["TOP"] = "TOP";
|
|
1297
|
+
VerticalAlignment2["MIDDLE"] = "MIDDLE";
|
|
1298
|
+
VerticalAlignment2["BOTTOM"] = "BOTTOM";
|
|
1299
|
+
return VerticalAlignment2;
|
|
1300
|
+
})(VerticalAlignment || {});
|
|
1301
|
+
var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
1302
|
+
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
1303
|
+
return NullValue2;
|
|
1304
|
+
})(NullValue || {});
|
|
1305
|
+
var QuestionStatus = /* @__PURE__ */ ((QuestionStatus2) => {
|
|
1306
|
+
QuestionStatus2["UNKNOWN"] = "UNKNOWN";
|
|
1307
|
+
QuestionStatus2["VISIBLE"] = "VISIBLE";
|
|
1308
|
+
QuestionStatus2["HIDDEN"] = "HIDDEN";
|
|
1309
|
+
return QuestionStatus2;
|
|
1310
|
+
})(QuestionStatus || {});
|
|
1311
|
+
var ContentFormat = /* @__PURE__ */ ((ContentFormat2) => {
|
|
1312
|
+
ContentFormat2["DRAFTJS"] = "DRAFTJS";
|
|
1313
|
+
ContentFormat2["PLAIN_TEXT"] = "PLAIN_TEXT";
|
|
1314
|
+
ContentFormat2["RICH_CONTENT"] = "RICH_CONTENT";
|
|
1315
|
+
return ContentFormat2;
|
|
1316
|
+
})(ContentFormat || {});
|
|
1317
|
+
var FieldSet = /* @__PURE__ */ ((FieldSet2) => {
|
|
1318
|
+
FieldSet2["UNKNOWN"] = "UNKNOWN";
|
|
1319
|
+
FieldSet2["SHARE_LINKS"] = "SHARE_LINKS";
|
|
1320
|
+
return FieldSet2;
|
|
1321
|
+
})(FieldSet || {});
|
|
1322
|
+
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|
|
1323
|
+
SortOrder2["ASC"] = "ASC";
|
|
1324
|
+
SortOrder2["DESC"] = "DESC";
|
|
1325
|
+
return SortOrder2;
|
|
1326
|
+
})(SortOrder || {});
|
|
1327
|
+
var QueryQuestionEntriesRequestContentFormat = /* @__PURE__ */ ((QueryQuestionEntriesRequestContentFormat2) => {
|
|
1328
|
+
QueryQuestionEntriesRequestContentFormat2["DRAFTJS"] = "DRAFTJS";
|
|
1329
|
+
QueryQuestionEntriesRequestContentFormat2["PLAIN_TEXT"] = "PLAIN_TEXT";
|
|
1330
|
+
QueryQuestionEntriesRequestContentFormat2["RICH_CONTENT"] = "RICH_CONTENT";
|
|
1331
|
+
return QueryQuestionEntriesRequestContentFormat2;
|
|
1332
|
+
})(QueryQuestionEntriesRequestContentFormat || {});
|
|
1333
|
+
var QueryQuestionEntriesRequestFieldSet = /* @__PURE__ */ ((QueryQuestionEntriesRequestFieldSet2) => {
|
|
1334
|
+
QueryQuestionEntriesRequestFieldSet2["UNKNOWN"] = "UNKNOWN";
|
|
1335
|
+
QueryQuestionEntriesRequestFieldSet2["SHARE_LINKS"] = "SHARE_LINKS";
|
|
1336
|
+
return QueryQuestionEntriesRequestFieldSet2;
|
|
1337
|
+
})(QueryQuestionEntriesRequestFieldSet || {});
|
|
1338
|
+
var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
1339
|
+
WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
|
|
1340
|
+
WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
1341
|
+
WebhookIdentityType2["MEMBER"] = "MEMBER";
|
|
1342
|
+
WebhookIdentityType2["WIX_USER"] = "WIX_USER";
|
|
1343
|
+
WebhookIdentityType2["APP"] = "APP";
|
|
1344
|
+
return WebhookIdentityType2;
|
|
1345
|
+
})(WebhookIdentityType || {});
|
|
1346
|
+
|
|
1012
1347
|
// src/faq-question-entry-v2-question-entry-question-entry.meta.ts
|
|
1013
1348
|
function createQuestionEntry2() {
|
|
1014
1349
|
const payload = {};
|
|
@@ -1197,6 +1532,50 @@ function bulkUpdateQuestionEntry2() {
|
|
|
1197
1532
|
};
|
|
1198
1533
|
}
|
|
1199
1534
|
export {
|
|
1535
|
+
Alignment as AlignmentOriginal,
|
|
1536
|
+
AppType as AppTypeOriginal,
|
|
1537
|
+
AspectRatio as AspectRatioOriginal,
|
|
1538
|
+
BackgroundType as BackgroundTypeOriginal,
|
|
1539
|
+
ButtonDataType as ButtonDataTypeOriginal,
|
|
1540
|
+
ContentFormat as ContentFormatOriginal,
|
|
1541
|
+
Crop as CropOriginal,
|
|
1542
|
+
DecorationType as DecorationTypeOriginal,
|
|
1543
|
+
Direction as DirectionOriginal,
|
|
1544
|
+
DividerDataAlignment as DividerDataAlignmentOriginal,
|
|
1545
|
+
FieldSet as FieldSetOriginal,
|
|
1546
|
+
FontType as FontTypeOriginal,
|
|
1547
|
+
GIFType as GIFTypeOriginal,
|
|
1548
|
+
InitialExpandedItems as InitialExpandedItemsOriginal,
|
|
1549
|
+
Layout as LayoutOriginal,
|
|
1550
|
+
LayoutType as LayoutTypeOriginal,
|
|
1551
|
+
LineStyle as LineStyleOriginal,
|
|
1552
|
+
MapType as MapTypeOriginal,
|
|
1553
|
+
NodeType as NodeTypeOriginal,
|
|
1554
|
+
NullValue as NullValueOriginal,
|
|
1555
|
+
Orientation as OrientationOriginal,
|
|
1556
|
+
Placement as PlacementOriginal,
|
|
1557
|
+
PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal,
|
|
1558
|
+
PollLayoutDirection as PollLayoutDirectionOriginal,
|
|
1559
|
+
PollLayoutType as PollLayoutTypeOriginal,
|
|
1560
|
+
Position as PositionOriginal,
|
|
1561
|
+
QueryQuestionEntriesRequestContentFormat as QueryQuestionEntriesRequestContentFormatOriginal,
|
|
1562
|
+
QueryQuestionEntriesRequestFieldSet as QueryQuestionEntriesRequestFieldSetOriginal,
|
|
1563
|
+
QuestionStatus as QuestionStatusOriginal,
|
|
1564
|
+
Resizing as ResizingOriginal,
|
|
1565
|
+
SortOrder as SortOrderOriginal,
|
|
1566
|
+
Source as SourceOriginal,
|
|
1567
|
+
StylesPosition as StylesPositionOriginal,
|
|
1568
|
+
Target as TargetOriginal,
|
|
1569
|
+
TextAlignment as TextAlignmentOriginal,
|
|
1570
|
+
ThumbnailsAlignment as ThumbnailsAlignmentOriginal,
|
|
1571
|
+
Type as TypeOriginal,
|
|
1572
|
+
VerticalAlignment as VerticalAlignmentOriginal,
|
|
1573
|
+
ViewMode as ViewModeOriginal,
|
|
1574
|
+
ViewRole as ViewRoleOriginal,
|
|
1575
|
+
VoteRole as VoteRoleOriginal,
|
|
1576
|
+
WebhookIdentityType as WebhookIdentityTypeOriginal,
|
|
1577
|
+
Width as WidthOriginal,
|
|
1578
|
+
WidthType as WidthTypeOriginal,
|
|
1200
1579
|
bulkDeleteQuestionEntries2 as bulkDeleteQuestionEntries,
|
|
1201
1580
|
bulkUpdateQuestionEntry2 as bulkUpdateQuestionEntry,
|
|
1202
1581
|
createQuestionEntry2 as createQuestionEntry,
|