@wix/auto_sdk_faq_question-entry 1.0.52 → 1.0.54
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 +464 -5
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +63 -35
- package/build/cjs/index.typings.js +371 -5
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +63 -35
- package/build/cjs/meta.js +371 -5
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +464 -5
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +63 -35
- package/build/es/index.typings.mjs +371 -5
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +63 -35
- package/build/es/meta.mjs +371 -5
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +464 -5
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +63 -35
- package/build/internal/cjs/index.typings.js +371 -5
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +63 -35
- package/build/internal/cjs/meta.js +371 -5
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +464 -5
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +63 -35
- package/build/internal/es/index.typings.mjs +371 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +63 -35
- package/build/internal/es/meta.mjs +371 -5
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -985,6 +985,8 @@ interface ImageData {
|
|
|
985
985
|
decorative?: boolean | null;
|
|
986
986
|
/** Styling for the image. */
|
|
987
987
|
styles?: ImageDataStyles;
|
|
988
|
+
/** Non-destructive crop rectangle, expressed as fractions (0-1) of the original image. When omitted, the full image is shown. */
|
|
989
|
+
crop?: ImageDataCrop;
|
|
988
990
|
}
|
|
989
991
|
interface StylesBorder {
|
|
990
992
|
/** Border width in pixels. */
|
|
@@ -1001,6 +1003,16 @@ interface ImageDataStyles {
|
|
|
1001
1003
|
/** Border attributes. */
|
|
1002
1004
|
border?: StylesBorder;
|
|
1003
1005
|
}
|
|
1006
|
+
interface ImageDataCrop {
|
|
1007
|
+
/** Left edge of the crop, as a fraction (0-1) of the original image width. */
|
|
1008
|
+
x?: number | null;
|
|
1009
|
+
/** Top edge of the crop, as a fraction (0-1) of the original image height. */
|
|
1010
|
+
y?: number | null;
|
|
1011
|
+
/** Visible width of the crop, as a fraction (0-1) of the original image width. */
|
|
1012
|
+
width?: number | null;
|
|
1013
|
+
/** Visible height of the crop, as a fraction (0-1) of the original image height. */
|
|
1014
|
+
height?: number | null;
|
|
1015
|
+
}
|
|
1004
1016
|
interface LinkPreviewData {
|
|
1005
1017
|
/** Styling for the link preview's container. */
|
|
1006
1018
|
containerData?: PluginContainerData;
|
|
@@ -2038,6 +2050,27 @@ declare enum ImagePosition {
|
|
|
2038
2050
|
}
|
|
2039
2051
|
/** @enumType */
|
|
2040
2052
|
type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
2053
|
+
/** Background styling (color or gradient) */
|
|
2054
|
+
interface LayoutDataBackground {
|
|
2055
|
+
/** Background type. */
|
|
2056
|
+
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2057
|
+
/**
|
|
2058
|
+
* Background color as a hexadecimal value.
|
|
2059
|
+
* @maxLength 19
|
|
2060
|
+
*/
|
|
2061
|
+
color?: string | null;
|
|
2062
|
+
/** Gradient configuration. */
|
|
2063
|
+
gradient?: Gradient;
|
|
2064
|
+
}
|
|
2065
|
+
/** Background type */
|
|
2066
|
+
declare enum LayoutDataBackgroundType {
|
|
2067
|
+
/** Solid color background */
|
|
2068
|
+
COLOR = "COLOR",
|
|
2069
|
+
/** Gradient background */
|
|
2070
|
+
GRADIENT = "GRADIENT"
|
|
2071
|
+
}
|
|
2072
|
+
/** @enumType */
|
|
2073
|
+
type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2041
2074
|
declare enum Origin {
|
|
2042
2075
|
/** Banner originated from an image */
|
|
2043
2076
|
IMAGE = "IMAGE",
|
|
@@ -2054,15 +2087,6 @@ declare enum BannerPosition {
|
|
|
2054
2087
|
}
|
|
2055
2088
|
/** @enumType */
|
|
2056
2089
|
type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
|
|
2057
|
-
/** Background type */
|
|
2058
|
-
declare enum LayoutDataBackgroundType {
|
|
2059
|
-
/** Solid color background */
|
|
2060
|
-
COLOR = "COLOR",
|
|
2061
|
-
/** Gradient background */
|
|
2062
|
-
GRADIENT = "GRADIENT"
|
|
2063
|
-
}
|
|
2064
|
-
/** @enumType */
|
|
2065
|
-
type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2066
2090
|
/** Backdrop type */
|
|
2067
2091
|
declare enum BackdropType {
|
|
2068
2092
|
/** Solid color backdrop */
|
|
@@ -2075,12 +2099,19 @@ type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
|
|
|
2075
2099
|
interface LayoutDataBackgroundImage {
|
|
2076
2100
|
/** Background image. */
|
|
2077
2101
|
media?: Media;
|
|
2078
|
-
/**
|
|
2102
|
+
/**
|
|
2103
|
+
* Deprecated: use `overlay` instead. Legacy image opacity (0–100) that dimmed the image to reveal the `background`/`backdrop` color behind it.
|
|
2104
|
+
* @deprecated
|
|
2105
|
+
*/
|
|
2079
2106
|
opacity?: number | null;
|
|
2080
2107
|
/** Background image scaling. */
|
|
2081
2108
|
scaling?: ImageScalingScalingWithLiterals;
|
|
2082
2109
|
/** Position of background. Defaults to `CENTER`. */
|
|
2083
2110
|
position?: ImagePositionWithLiterals;
|
|
2111
|
+
/** Blur radius in pixels applied to the image layer. `0` (default) leaves the image unblurred; blur is independent of any color overlay and the two stack. */
|
|
2112
|
+
blur?: number | null;
|
|
2113
|
+
/** Color or gradient drawn on top of the image. When present, this is the authoritative overlay and `opacity` is ignored. Its presence also marks content as authored under the new overlay model (vs. the legacy `opacity`-based dimming on `background`/`backdrop`). */
|
|
2114
|
+
overlay?: LayoutDataBackground;
|
|
2084
2115
|
}
|
|
2085
2116
|
declare enum VerticalAlignmentAlignment {
|
|
2086
2117
|
/** Top alignment */
|
|
@@ -2114,18 +2145,6 @@ interface Banner {
|
|
|
2114
2145
|
/** Position of the banner */
|
|
2115
2146
|
position?: BannerPositionWithLiterals;
|
|
2116
2147
|
}
|
|
2117
|
-
/** Background styling (color or gradient) */
|
|
2118
|
-
interface LayoutDataBackground {
|
|
2119
|
-
/** Background type. */
|
|
2120
|
-
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2121
|
-
/**
|
|
2122
|
-
* Background color as a hexadecimal value.
|
|
2123
|
-
* @maxLength 19
|
|
2124
|
-
*/
|
|
2125
|
-
color?: string | null;
|
|
2126
|
-
/** Gradient configuration. */
|
|
2127
|
-
gradient?: Gradient;
|
|
2128
|
-
}
|
|
2129
2148
|
/** Backdrop styling (color or gradient) */
|
|
2130
2149
|
interface Backdrop {
|
|
2131
2150
|
/** Backdrop type. */
|
|
@@ -2197,15 +2216,6 @@ declare enum ImagePositionPosition {
|
|
|
2197
2216
|
}
|
|
2198
2217
|
/** @enumType */
|
|
2199
2218
|
type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
2200
|
-
/** Background type */
|
|
2201
|
-
declare enum CardDataBackgroundType {
|
|
2202
|
-
/** Solid color background */
|
|
2203
|
-
COLOR = "COLOR",
|
|
2204
|
-
/** Gradient background */
|
|
2205
|
-
GRADIENT = "GRADIENT"
|
|
2206
|
-
}
|
|
2207
|
-
/** @enumType */
|
|
2208
|
-
type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2209
2219
|
/** Background styling (color or gradient) */
|
|
2210
2220
|
interface CardDataBackground {
|
|
2211
2221
|
/** Background type. */
|
|
@@ -2218,15 +2228,31 @@ interface CardDataBackground {
|
|
|
2218
2228
|
/** Gradient configuration. */
|
|
2219
2229
|
gradient?: Gradient;
|
|
2220
2230
|
}
|
|
2231
|
+
/** Background type */
|
|
2232
|
+
declare enum CardDataBackgroundType {
|
|
2233
|
+
/** Solid color background */
|
|
2234
|
+
COLOR = "COLOR",
|
|
2235
|
+
/** Gradient background */
|
|
2236
|
+
GRADIENT = "GRADIENT"
|
|
2237
|
+
}
|
|
2238
|
+
/** @enumType */
|
|
2239
|
+
type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2221
2240
|
interface BackgroundImage {
|
|
2222
2241
|
/** Background image. */
|
|
2223
2242
|
media?: Media;
|
|
2224
|
-
/**
|
|
2243
|
+
/**
|
|
2244
|
+
* Deprecated: use `overlay` instead. Legacy image opacity (0–100) that dimmed the image to reveal the `background` color behind it.
|
|
2245
|
+
* @deprecated
|
|
2246
|
+
*/
|
|
2225
2247
|
opacity?: number | null;
|
|
2226
2248
|
/** Background image scaling. */
|
|
2227
2249
|
scaling?: ScalingWithLiterals;
|
|
2228
2250
|
/** Position of background. Defaults to `CENTER`. */
|
|
2229
2251
|
position?: ImagePositionPositionWithLiterals;
|
|
2252
|
+
/** Color or gradient drawn on top of the image. When present, this is the authoritative overlay and `opacity` is ignored. Its presence also marks content as authored under the new overlay model (vs. the legacy `opacity`-based dimming on `background`). */
|
|
2253
|
+
overlay?: CardDataBackground;
|
|
2254
|
+
/** Blur radius in pixels applied to the image layer. `0` (default) leaves the image unblurred; blur is independent of any color overlay and the two stack. */
|
|
2255
|
+
blur?: number | null;
|
|
2230
2256
|
}
|
|
2231
2257
|
interface TocData {
|
|
2232
2258
|
/** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
|
|
@@ -3162,10 +3188,12 @@ declare enum Namespace {
|
|
|
3162
3188
|
* Symphony — a siteless site representing a project within Symphony (the evolution of Orion).
|
|
3163
3189
|
* Holds project data, conversations, assets, and manages collaborators / shared team members for the project.
|
|
3164
3190
|
*/
|
|
3165
|
-
SYMPHONY = "SYMPHONY"
|
|
3191
|
+
SYMPHONY = "SYMPHONY",
|
|
3192
|
+
/** Nautilus platform app. */
|
|
3193
|
+
NAUTILUS_APPS = "NAUTILUS_APPS"
|
|
3166
3194
|
}
|
|
3167
3195
|
/** @enumType */
|
|
3168
|
-
type NamespaceWithLiterals = Namespace | 'UNKNOWN_NAMESPACE' | 'WIX' | 'SHOUT_OUT' | 'ALBUMS' | 'WIX_STORES_TEST_DRIVE' | 'HOTELS' | 'CLUBS' | 'ONBOARDING_DRAFT' | 'DEV_SITE' | 'LOGOS' | 'VIDEO_MAKER' | 'PARTNER_DASHBOARD' | 'DEV_CENTER_COMPANY' | 'HTML_DRAFT' | 'SITELESS_BUSINESS' | 'CREATOR_ECONOMY' | 'DASHBOARD_FIRST' | 'ANYWHERE' | 'HEADLESS' | 'ACCOUNT_MASTER_CMS' | 'RISE' | 'BRANDED_FIRST' | 'NOWNIA' | 'UGC_TEMPLATE' | 'CODUX' | 'MEDIA_DESIGN_CREATOR' | 'SHARED_BLOG_ENTERPRISE' | 'STANDALONE_FORMS' | 'STANDALONE_EVENTS' | 'MIMIR' | 'TWINS' | 'NANO' | 'BASE44' | 'CHANNELS' | 'NAUTILUS' | 'SYMPHONY';
|
|
3196
|
+
type NamespaceWithLiterals = Namespace | 'UNKNOWN_NAMESPACE' | 'WIX' | 'SHOUT_OUT' | 'ALBUMS' | 'WIX_STORES_TEST_DRIVE' | 'HOTELS' | 'CLUBS' | 'ONBOARDING_DRAFT' | 'DEV_SITE' | 'LOGOS' | 'VIDEO_MAKER' | 'PARTNER_DASHBOARD' | 'DEV_CENTER_COMPANY' | 'HTML_DRAFT' | 'SITELESS_BUSINESS' | 'CREATOR_ECONOMY' | 'DASHBOARD_FIRST' | 'ANYWHERE' | 'HEADLESS' | 'ACCOUNT_MASTER_CMS' | 'RISE' | 'BRANDED_FIRST' | 'NOWNIA' | 'UGC_TEMPLATE' | 'CODUX' | 'MEDIA_DESIGN_CREATOR' | 'SHARED_BLOG_ENTERPRISE' | 'STANDALONE_FORMS' | 'STANDALONE_EVENTS' | 'MIMIR' | 'TWINS' | 'NANO' | 'BASE44' | 'CHANNELS' | 'NAUTILUS' | 'SYMPHONY' | 'NAUTILUS_APPS';
|
|
3169
3197
|
/** Site transferred to another user. */
|
|
3170
3198
|
interface SiteTransferred {
|
|
3171
3199
|
/**
|
|
@@ -3988,4 +4016,4 @@ interface BulkUpdateQuestionEntryOptions {
|
|
|
3988
4016
|
returnFullEntity?: boolean | null;
|
|
3989
4017
|
}
|
|
3990
4018
|
|
|
3991
|
-
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 Asset, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerPosition, type BannerPositionWithLiterals, 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 CheckboxListData, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, ContentFormat, type ContentFormatWithLiterals, type CreateQuestionEntryRequest, type CreateQuestionEntryResponse, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteContext, type DeleteQuestionEntryRequest, type DeleteQuestionEntryResponse, DeleteStatus, type DeleteStatusWithLiterals, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EditorlessAssigned, type EditorlessUnassigned, 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 ListItemNodeData, 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 MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf, type Metadata, Namespace, type NamespaceChanged, type NamespaceWithLiterals, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type OdeditorAssigned, type OdeditorUnassigned, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type PagingMetadataV2, type ParagraphData, type Permissions, type PicassoAssigned, type PicassoUnassigned, 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, type RunInstallationContentRequest, type RunInstallationContentResponse, Scaling, type ScalingWithLiterals, type ServiceProvisioned, type ServiceRemoved, type SetQuestionEntryLabelsOptions, type SetQuestionEntryLabelsRequest, type SetQuestionEntryLabelsResponse, type Settings, type ShapeData, type ShapeDataStyles, type SiteCreated, SiteCreatedContext, type SiteCreatedContextWithLiterals, type SiteDeleted, type SiteHardDeleted, type SiteMarkedAsTemplate, type SiteMarkedAsWixSite, type SitePublished, type SitePurgedExternally, type SiteRenamed, type SiteTransferred, type SiteUndeleted, type SiteUnpublished, type SiteUrlChanged, type SketchData, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, type Stop, type StudioAssigned, type StudioTwoAssigned, type StudioTwoUnassigned, type StudioUnassigned, 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, type UserDomainMediaDisabled, type UserDomainMediaEnabled, Variant, type VariantWithLiterals, 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, type WixelAssigned, type WixelUnassigned, bulkDeleteQuestionEntries, bulkUpdateQuestionEntry, createQuestionEntry, deleteQuestionEntry, getQuestionEntry, listQuestionEntries, onQuestionEntryCreated, onQuestionEntryDeleted, onQuestionEntryUpdated, queryQuestionEntries, setQuestionEntryLabels, typedQueryQuestionEntries, updateExtendedFields, updateQuestionEntry, utils };
|
|
4019
|
+
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 Asset, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerPosition, type BannerPositionWithLiterals, 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 CheckboxListData, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, ContentFormat, type ContentFormatWithLiterals, type CreateQuestionEntryRequest, type CreateQuestionEntryResponse, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteContext, type DeleteQuestionEntryRequest, type DeleteQuestionEntryResponse, DeleteStatus, type DeleteStatusWithLiterals, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EditorlessAssigned, type EditorlessUnassigned, 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 ImageDataCrop, 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 ListItemNodeData, 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 MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf, type Metadata, Namespace, type NamespaceChanged, type NamespaceWithLiterals, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type OdeditorAssigned, type OdeditorUnassigned, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type PagingMetadataV2, type ParagraphData, type Permissions, type PicassoAssigned, type PicassoUnassigned, 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, type RunInstallationContentRequest, type RunInstallationContentResponse, Scaling, type ScalingWithLiterals, type ServiceProvisioned, type ServiceRemoved, type SetQuestionEntryLabelsOptions, type SetQuestionEntryLabelsRequest, type SetQuestionEntryLabelsResponse, type Settings, type ShapeData, type ShapeDataStyles, type SiteCreated, SiteCreatedContext, type SiteCreatedContextWithLiterals, type SiteDeleted, type SiteHardDeleted, type SiteMarkedAsTemplate, type SiteMarkedAsWixSite, type SitePublished, type SitePurgedExternally, type SiteRenamed, type SiteTransferred, type SiteUndeleted, type SiteUnpublished, type SiteUrlChanged, type SketchData, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, type Stop, type StudioAssigned, type StudioTwoAssigned, type StudioTwoUnassigned, type StudioUnassigned, 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, type UserDomainMediaDisabled, type UserDomainMediaEnabled, Variant, type VariantWithLiterals, 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, type WixelAssigned, type WixelUnassigned, bulkDeleteQuestionEntries, bulkUpdateQuestionEntry, createQuestionEntry, deleteQuestionEntry, getQuestionEntry, listQuestionEntries, onQuestionEntryCreated, onQuestionEntryDeleted, onQuestionEntryUpdated, queryQuestionEntries, setQuestionEntryLabels, typedQueryQuestionEntries, updateExtendedFields, updateQuestionEntry, utils };
|