@wix/multilingual 1.0.72 → 1.0.74
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/package.json
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/multilingual",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.74",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
|
+
"keywords": [
|
|
9
|
+
"wix-sdk-module=backend,page,public"
|
|
10
|
+
],
|
|
8
11
|
"sideEffects": false,
|
|
9
12
|
"module": "build/es/index.js",
|
|
10
13
|
"main": "build/cjs/index.js",
|
|
@@ -19,10 +22,10 @@
|
|
|
19
22
|
],
|
|
20
23
|
"dependencies": {
|
|
21
24
|
"@wix/multilingual_entity-mapper": "1.0.21",
|
|
22
|
-
"@wix/multilingual_machine-translation": "1.0.
|
|
25
|
+
"@wix/multilingual_machine-translation": "1.0.34",
|
|
23
26
|
"@wix/multilingual_site-translator": "1.0.18",
|
|
24
|
-
"@wix/multilingual_translation-contents": "1.0.
|
|
25
|
-
"@wix/multilingual_translation-published-contents": "1.0.
|
|
27
|
+
"@wix/multilingual_translation-contents": "1.0.39",
|
|
28
|
+
"@wix/multilingual_translation-published-contents": "1.0.16",
|
|
26
29
|
"@wix/multilingual_translation-schemas": "1.0.34"
|
|
27
30
|
},
|
|
28
31
|
"devDependencies": {
|
|
@@ -48,5 +51,5 @@
|
|
|
48
51
|
"fqdn": ""
|
|
49
52
|
}
|
|
50
53
|
},
|
|
51
|
-
"falconPackageHash": "
|
|
54
|
+
"falconPackageHash": "c9bc01b4634dd37388718624baecef38f2662560dfdb7ee219abfb48"
|
|
52
55
|
}
|
|
@@ -1111,6 +1111,8 @@ interface Node$2 extends NodeDataOneOf$2 {
|
|
|
1111
1111
|
bulletedListData?: BulletedListData$2;
|
|
1112
1112
|
/** Data for a block quote node. */
|
|
1113
1113
|
blockquoteData?: BlockquoteData$2;
|
|
1114
|
+
/** Data for a caption node. */
|
|
1115
|
+
captionData?: CaptionData$2;
|
|
1114
1116
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
1115
1117
|
type?: NodeType$2;
|
|
1116
1118
|
/** Node ID. */
|
|
@@ -1172,6 +1174,8 @@ interface NodeDataOneOf$2 {
|
|
|
1172
1174
|
bulletedListData?: BulletedListData$2;
|
|
1173
1175
|
/** Data for a block quote node. */
|
|
1174
1176
|
blockquoteData?: BlockquoteData$2;
|
|
1177
|
+
/** Data for a caption node. */
|
|
1178
|
+
captionData?: CaptionData$2;
|
|
1175
1179
|
}
|
|
1176
1180
|
declare enum NodeType$2 {
|
|
1177
1181
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -1203,7 +1207,8 @@ declare enum NodeType$2 {
|
|
|
1203
1207
|
TABLE_CELL = "TABLE_CELL",
|
|
1204
1208
|
TABLE_ROW = "TABLE_ROW",
|
|
1205
1209
|
EXTERNAL = "EXTERNAL",
|
|
1206
|
-
AUDIO = "AUDIO"
|
|
1210
|
+
AUDIO = "AUDIO",
|
|
1211
|
+
CAPTION = "CAPTION"
|
|
1207
1212
|
}
|
|
1208
1213
|
interface NodeStyle$2 {
|
|
1209
1214
|
/** The top padding value in pixels. */
|
|
@@ -1693,7 +1698,10 @@ interface ImageData$2 {
|
|
|
1693
1698
|
disableExpand?: boolean | null;
|
|
1694
1699
|
/** Image's alternative text. */
|
|
1695
1700
|
altText?: string | null;
|
|
1696
|
-
/**
|
|
1701
|
+
/**
|
|
1702
|
+
* Deprecated: use Caption node instead.
|
|
1703
|
+
* @deprecated
|
|
1704
|
+
*/
|
|
1697
1705
|
caption?: string | null;
|
|
1698
1706
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
1699
1707
|
disableDownload?: boolean | null;
|
|
@@ -2238,6 +2246,9 @@ interface BlockquoteData$2 {
|
|
|
2238
2246
|
/** Indentation level from 1-4. */
|
|
2239
2247
|
indentation?: number;
|
|
2240
2248
|
}
|
|
2249
|
+
interface CaptionData$2 {
|
|
2250
|
+
textStyle?: TextStyle$2;
|
|
2251
|
+
}
|
|
2241
2252
|
interface Metadata$2 {
|
|
2242
2253
|
/** Schema version. */
|
|
2243
2254
|
version?: number;
|
|
@@ -2698,6 +2709,9 @@ interface BulletedListDataNonNullableFields$1 {
|
|
|
2698
2709
|
interface BlockquoteDataNonNullableFields$1 {
|
|
2699
2710
|
indentation: number;
|
|
2700
2711
|
}
|
|
2712
|
+
interface CaptionDataNonNullableFields$1 {
|
|
2713
|
+
textStyle?: TextStyleNonNullableFields$1;
|
|
2714
|
+
}
|
|
2701
2715
|
interface NodeNonNullableFields$1 {
|
|
2702
2716
|
buttonData?: ButtonDataNonNullableFields$1;
|
|
2703
2717
|
codeBlockData?: CodeBlockDataNonNullableFields$1;
|
|
@@ -2723,6 +2737,7 @@ interface NodeNonNullableFields$1 {
|
|
|
2723
2737
|
orderedListData?: OrderedListDataNonNullableFields$1;
|
|
2724
2738
|
bulletedListData?: BulletedListDataNonNullableFields$1;
|
|
2725
2739
|
blockquoteData?: BlockquoteDataNonNullableFields$1;
|
|
2740
|
+
captionData?: CaptionDataNonNullableFields$1;
|
|
2726
2741
|
type: NodeType$2;
|
|
2727
2742
|
_id: string;
|
|
2728
2743
|
nodes: NodeNonNullableFields$1[];
|
|
@@ -2897,7 +2912,7 @@ interface QueryPublishedContentSignature {
|
|
|
2897
2912
|
* `queryPublishedContent()` runs with the following `PublishedContentQueryBuilder` defaults which you can override:
|
|
2898
2913
|
*
|
|
2899
2914
|
* + [`limit(100)`](https://dev.wix.com/docs/sdk/backend-modules/multilingual/translation/translation-published-content/published-content-query-builder/limit)
|
|
2900
|
-
* + [`ascending('
|
|
2915
|
+
* + [`ascending('_id')`](https://dev.wix.com/docs/sdk/backend-modules/multilingual/translation/translation-published-content/published-content-query-builder/ascending)
|
|
2901
2916
|
*
|
|
2902
2917
|
* The following query filter fields are required:
|
|
2903
2918
|
*
|
|
@@ -2957,7 +2972,7 @@ declare const context$4_onPublishedContentDeleted: typeof onPublishedContentDele
|
|
|
2957
2972
|
declare const context$4_onPublishedContentUpdated: typeof onPublishedContentUpdated;
|
|
2958
2973
|
declare const context$4_queryPublishedContent: typeof queryPublishedContent;
|
|
2959
2974
|
declare namespace context$4 {
|
|
2960
|
-
export { type ActionEvent$2 as ActionEvent, Alignment$2 as Alignment, type AnchorData$2 as AnchorData, type AppEmbedData$2 as AppEmbedData, type AppEmbedDataAppDataOneOf$2 as AppEmbedDataAppDataOneOf, AppType$2 as AppType, type AudioData$2 as AudioData, type Background$2 as Background, type BackgroundBackgroundOneOf$2 as BackgroundBackgroundOneOf, BackgroundType$2 as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type BlockquoteData$2 as BlockquoteData, type BookingData$2 as BookingData, type Border$2 as Border, type BorderColors$2 as BorderColors, type BulletedListData$2 as BulletedListData, type ButtonData$2 as ButtonData, type CellStyle$2 as CellStyle, type CodeBlockData$2 as CodeBlockData, type CollapsibleListData$2 as CollapsibleListData, type ColorData$2 as ColorData, type Colors$2 as Colors, Crop$2 as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type Decoration$2 as Decoration, type DecorationDataOneOf$2 as DecorationDataOneOf, DecorationType$2 as DecorationType, type Design$2 as Design, type Dimensions$2 as Dimensions, Direction$2 as Direction, type DividerData$2 as DividerData, type DocumentStyle$2 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type EmbedData$2 as EmbedData, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$2 as EventData, type EventMetadata$2 as EventMetadata, type context$4_ExtendedFields as ExtendedFields, type FileData$2 as FileData, type FileSource$2 as FileSource, type FileSourceDataOneOf$2 as FileSourceDataOneOf, type FontSizeData$2 as FontSizeData, FontType$2 as FontType, type GIF$2 as GIF, type GIFData$2 as GIFData, type GalleryData$2 as GalleryData, type GalleryOptions$2 as GalleryOptions, type context$4_GetPublishedContentRequest as GetPublishedContentRequest, type context$4_GetPublishedContentResponse as GetPublishedContentResponse, type Gradient$2 as Gradient, type HTMLData$2 as HTMLData, type HTMLDataDataOneOf$2 as HTMLDataDataOneOf, type HeadingData$2 as HeadingData, type Height$2 as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$2 as Image, type ImageData$2 as ImageData, InitialExpandedItems$2 as InitialExpandedItems, type Item$2 as Item, type ItemDataOneOf$2 as ItemDataOneOf, type ItemStyle$2 as ItemStyle, type Layout$2 as Layout, LayoutType$2 as LayoutType, LineStyle$2 as LineStyle, type Link$2 as Link, type LinkData$2 as LinkData, type LinkDataOneOf$2 as LinkDataOneOf, type LinkPreviewData$2 as LinkPreviewData, type ListValue$2 as ListValue, type MapData$2 as MapData, type MapSettings$2 as MapSettings, MapType$2 as MapType, type Media$2 as Media, type MentionData$2 as MentionData, type MessageEnvelope$2 as MessageEnvelope, type Metadata$2 as Metadata, type Node$2 as Node, type NodeDataOneOf$2 as NodeDataOneOf, type NodeStyle$2 as NodeStyle, NodeType$2 as NodeType, NullValue$2 as NullValue, type Oembed$2 as Oembed, type Option$2 as Option, type OptionDesign$2 as OptionDesign, type OptionLayout$2 as OptionLayout, type OrderedListData$2 as OrderedListData, Orientation$2 as Orientation, type PDFSettings$2 as PDFSettings, type ParagraphData$2 as ParagraphData, type Permissions$2 as Permissions, type PlaybackOptions$2 as PlaybackOptions, type PluginContainerData$2 as PluginContainerData, PluginContainerDataAlignment$2 as PluginContainerDataAlignment, type PluginContainerDataWidth$2 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$2 as PluginContainerDataWidthDataOneOf, type Poll$2 as Poll, type PollData$2 as PollData, type PollDataLayout$2 as PollDataLayout, type PollDesign$2 as PollDesign, type PollLayout$2 as PollLayout, PollLayoutDirection$2 as PollLayoutDirection, PollLayoutType$2 as PollLayoutType, type context$4_PublishedContent as PublishedContent, type context$4_PublishedContentCreatedEnvelope as PublishedContentCreatedEnvelope, type context$4_PublishedContentDeletedEnvelope as PublishedContentDeletedEnvelope, type context$4_PublishedContentField as PublishedContentField, type context$4_PublishedContentFieldValueOneOf as PublishedContentFieldValueOneOf, type context$4_PublishedContentQueryBuilder as PublishedContentQueryBuilder, type context$4_PublishedContentQueryResult as PublishedContentQueryResult, type context$4_PublishedContentUpdatedEnvelope as PublishedContentUpdatedEnvelope, type context$4_QueryPublishedContentRequest as QueryPublishedContentRequest, type context$4_QueryPublishedContentResponse as QueryPublishedContentResponse, type context$4_QueryPublishedContentResponseNonNullableFields as QueryPublishedContentResponseNonNullableFields, type Rel$2 as Rel, type RestoreInfo$2 as RestoreInfo, type RichContent$2 as RichContent, type SchemaKey$1 as SchemaKey, SchemaScope$1 as SchemaScope, type Settings$2 as Settings, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$2 as Source, type Spoiler$2 as Spoiler, type SpoilerData$2 as SpoilerData, type Styles$2 as Styles, type TableCellData$2 as TableCellData, type TableData$2 as TableData, Target$2 as Target, TextAlignment$2 as TextAlignment, type TextData$2 as TextData, type TextNodeStyle$2 as TextNodeStyle, type TextStyle$2 as TextStyle, type Thumbnails$2 as Thumbnails, ThumbnailsAlignment$2 as ThumbnailsAlignment, Type$2 as Type, VerticalAlignment$2 as VerticalAlignment, type Video$2 as Video, type VideoData$2 as VideoData, type VideoResolution$1 as VideoResolution, ViewMode$2 as ViewMode, ViewRole$2 as ViewRole, VoteRole$2 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$2 as Width, WidthType$2 as WidthType, type context$4__publicOnPublishedContentCreatedType as _publicOnPublishedContentCreatedType, type context$4__publicOnPublishedContentDeletedType as _publicOnPublishedContentDeletedType, type context$4__publicOnPublishedContentUpdatedType as _publicOnPublishedContentUpdatedType, context$4_onPublishedContentCreated as onPublishedContentCreated, context$4_onPublishedContentDeleted as onPublishedContentDeleted, context$4_onPublishedContentUpdated as onPublishedContentUpdated, onPublishedContentCreated$1 as publicOnPublishedContentCreated, onPublishedContentDeleted$1 as publicOnPublishedContentDeleted, onPublishedContentUpdated$1 as publicOnPublishedContentUpdated, context$4_queryPublishedContent as queryPublishedContent };
|
|
2975
|
+
export { type ActionEvent$2 as ActionEvent, Alignment$2 as Alignment, type AnchorData$2 as AnchorData, type AppEmbedData$2 as AppEmbedData, type AppEmbedDataAppDataOneOf$2 as AppEmbedDataAppDataOneOf, AppType$2 as AppType, type AudioData$2 as AudioData, type Background$2 as Background, type BackgroundBackgroundOneOf$2 as BackgroundBackgroundOneOf, BackgroundType$2 as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type BlockquoteData$2 as BlockquoteData, type BookingData$2 as BookingData, type Border$2 as Border, type BorderColors$2 as BorderColors, type BulletedListData$2 as BulletedListData, type ButtonData$2 as ButtonData, type CaptionData$2 as CaptionData, type CellStyle$2 as CellStyle, type CodeBlockData$2 as CodeBlockData, type CollapsibleListData$2 as CollapsibleListData, type ColorData$2 as ColorData, type Colors$2 as Colors, Crop$2 as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type Decoration$2 as Decoration, type DecorationDataOneOf$2 as DecorationDataOneOf, DecorationType$2 as DecorationType, type Design$2 as Design, type Dimensions$2 as Dimensions, Direction$2 as Direction, type DividerData$2 as DividerData, type DocumentStyle$2 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type EmbedData$2 as EmbedData, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$2 as EventData, type EventMetadata$2 as EventMetadata, type context$4_ExtendedFields as ExtendedFields, type FileData$2 as FileData, type FileSource$2 as FileSource, type FileSourceDataOneOf$2 as FileSourceDataOneOf, type FontSizeData$2 as FontSizeData, FontType$2 as FontType, type GIF$2 as GIF, type GIFData$2 as GIFData, type GalleryData$2 as GalleryData, type GalleryOptions$2 as GalleryOptions, type context$4_GetPublishedContentRequest as GetPublishedContentRequest, type context$4_GetPublishedContentResponse as GetPublishedContentResponse, type Gradient$2 as Gradient, type HTMLData$2 as HTMLData, type HTMLDataDataOneOf$2 as HTMLDataDataOneOf, type HeadingData$2 as HeadingData, type Height$2 as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$2 as Image, type ImageData$2 as ImageData, InitialExpandedItems$2 as InitialExpandedItems, type Item$2 as Item, type ItemDataOneOf$2 as ItemDataOneOf, type ItemStyle$2 as ItemStyle, type Layout$2 as Layout, LayoutType$2 as LayoutType, LineStyle$2 as LineStyle, type Link$2 as Link, type LinkData$2 as LinkData, type LinkDataOneOf$2 as LinkDataOneOf, type LinkPreviewData$2 as LinkPreviewData, type ListValue$2 as ListValue, type MapData$2 as MapData, type MapSettings$2 as MapSettings, MapType$2 as MapType, type Media$2 as Media, type MentionData$2 as MentionData, type MessageEnvelope$2 as MessageEnvelope, type Metadata$2 as Metadata, type Node$2 as Node, type NodeDataOneOf$2 as NodeDataOneOf, type NodeStyle$2 as NodeStyle, NodeType$2 as NodeType, NullValue$2 as NullValue, type Oembed$2 as Oembed, type Option$2 as Option, type OptionDesign$2 as OptionDesign, type OptionLayout$2 as OptionLayout, type OrderedListData$2 as OrderedListData, Orientation$2 as Orientation, type PDFSettings$2 as PDFSettings, type ParagraphData$2 as ParagraphData, type Permissions$2 as Permissions, type PlaybackOptions$2 as PlaybackOptions, type PluginContainerData$2 as PluginContainerData, PluginContainerDataAlignment$2 as PluginContainerDataAlignment, type PluginContainerDataWidth$2 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$2 as PluginContainerDataWidthDataOneOf, type Poll$2 as Poll, type PollData$2 as PollData, type PollDataLayout$2 as PollDataLayout, type PollDesign$2 as PollDesign, type PollLayout$2 as PollLayout, PollLayoutDirection$2 as PollLayoutDirection, PollLayoutType$2 as PollLayoutType, type context$4_PublishedContent as PublishedContent, type context$4_PublishedContentCreatedEnvelope as PublishedContentCreatedEnvelope, type context$4_PublishedContentDeletedEnvelope as PublishedContentDeletedEnvelope, type context$4_PublishedContentField as PublishedContentField, type context$4_PublishedContentFieldValueOneOf as PublishedContentFieldValueOneOf, type context$4_PublishedContentQueryBuilder as PublishedContentQueryBuilder, type context$4_PublishedContentQueryResult as PublishedContentQueryResult, type context$4_PublishedContentUpdatedEnvelope as PublishedContentUpdatedEnvelope, type context$4_QueryPublishedContentRequest as QueryPublishedContentRequest, type context$4_QueryPublishedContentResponse as QueryPublishedContentResponse, type context$4_QueryPublishedContentResponseNonNullableFields as QueryPublishedContentResponseNonNullableFields, type Rel$2 as Rel, type RestoreInfo$2 as RestoreInfo, type RichContent$2 as RichContent, type SchemaKey$1 as SchemaKey, SchemaScope$1 as SchemaScope, type Settings$2 as Settings, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$2 as Source, type Spoiler$2 as Spoiler, type SpoilerData$2 as SpoilerData, type Styles$2 as Styles, type TableCellData$2 as TableCellData, type TableData$2 as TableData, Target$2 as Target, TextAlignment$2 as TextAlignment, type TextData$2 as TextData, type TextNodeStyle$2 as TextNodeStyle, type TextStyle$2 as TextStyle, type Thumbnails$2 as Thumbnails, ThumbnailsAlignment$2 as ThumbnailsAlignment, Type$2 as Type, VerticalAlignment$2 as VerticalAlignment, type Video$2 as Video, type VideoData$2 as VideoData, type VideoResolution$1 as VideoResolution, ViewMode$2 as ViewMode, ViewRole$2 as ViewRole, VoteRole$2 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$2 as Width, WidthType$2 as WidthType, type context$4__publicOnPublishedContentCreatedType as _publicOnPublishedContentCreatedType, type context$4__publicOnPublishedContentDeletedType as _publicOnPublishedContentDeletedType, type context$4__publicOnPublishedContentUpdatedType as _publicOnPublishedContentUpdatedType, context$4_onPublishedContentCreated as onPublishedContentCreated, context$4_onPublishedContentDeleted as onPublishedContentDeleted, context$4_onPublishedContentUpdated as onPublishedContentUpdated, onPublishedContentCreated$1 as publicOnPublishedContentCreated, onPublishedContentDeleted$1 as publicOnPublishedContentDeleted, onPublishedContentUpdated$1 as publicOnPublishedContentUpdated, context$4_queryPublishedContent as queryPublishedContent };
|
|
2961
2976
|
}
|
|
2962
2977
|
|
|
2963
2978
|
/**
|
|
@@ -3056,6 +3071,8 @@ interface Node$1 extends NodeDataOneOf$1 {
|
|
|
3056
3071
|
bulletedListData?: BulletedListData$1;
|
|
3057
3072
|
/** Data for a block quote node. */
|
|
3058
3073
|
blockquoteData?: BlockquoteData$1;
|
|
3074
|
+
/** Data for a caption node. */
|
|
3075
|
+
captionData?: CaptionData$1;
|
|
3059
3076
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
3060
3077
|
type?: NodeType$1;
|
|
3061
3078
|
/** Node ID. */
|
|
@@ -3117,6 +3134,8 @@ interface NodeDataOneOf$1 {
|
|
|
3117
3134
|
bulletedListData?: BulletedListData$1;
|
|
3118
3135
|
/** Data for a block quote node. */
|
|
3119
3136
|
blockquoteData?: BlockquoteData$1;
|
|
3137
|
+
/** Data for a caption node. */
|
|
3138
|
+
captionData?: CaptionData$1;
|
|
3120
3139
|
}
|
|
3121
3140
|
declare enum NodeType$1 {
|
|
3122
3141
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -3148,7 +3167,8 @@ declare enum NodeType$1 {
|
|
|
3148
3167
|
TABLE_CELL = "TABLE_CELL",
|
|
3149
3168
|
TABLE_ROW = "TABLE_ROW",
|
|
3150
3169
|
EXTERNAL = "EXTERNAL",
|
|
3151
|
-
AUDIO = "AUDIO"
|
|
3170
|
+
AUDIO = "AUDIO",
|
|
3171
|
+
CAPTION = "CAPTION"
|
|
3152
3172
|
}
|
|
3153
3173
|
interface NodeStyle$1 {
|
|
3154
3174
|
/** The top padding value in pixels. */
|
|
@@ -3638,7 +3658,10 @@ interface ImageData$1 {
|
|
|
3638
3658
|
disableExpand?: boolean | null;
|
|
3639
3659
|
/** Image's alternative text. */
|
|
3640
3660
|
altText?: string | null;
|
|
3641
|
-
/**
|
|
3661
|
+
/**
|
|
3662
|
+
* Deprecated: use Caption node instead.
|
|
3663
|
+
* @deprecated
|
|
3664
|
+
*/
|
|
3642
3665
|
caption?: string | null;
|
|
3643
3666
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
3644
3667
|
disableDownload?: boolean | null;
|
|
@@ -4183,6 +4206,9 @@ interface BlockquoteData$1 {
|
|
|
4183
4206
|
/** Indentation level from 1-4. */
|
|
4184
4207
|
indentation?: number;
|
|
4185
4208
|
}
|
|
4209
|
+
interface CaptionData$1 {
|
|
4210
|
+
textStyle?: TextStyle$1;
|
|
4211
|
+
}
|
|
4186
4212
|
interface Metadata$1 {
|
|
4187
4213
|
/** Schema version. */
|
|
4188
4214
|
version?: number;
|
|
@@ -4768,6 +4794,9 @@ interface BulletedListDataNonNullableFields {
|
|
|
4768
4794
|
interface BlockquoteDataNonNullableFields {
|
|
4769
4795
|
indentation: number;
|
|
4770
4796
|
}
|
|
4797
|
+
interface CaptionDataNonNullableFields {
|
|
4798
|
+
textStyle?: TextStyleNonNullableFields;
|
|
4799
|
+
}
|
|
4771
4800
|
interface NodeNonNullableFields {
|
|
4772
4801
|
buttonData?: ButtonDataNonNullableFields;
|
|
4773
4802
|
codeBlockData?: CodeBlockDataNonNullableFields;
|
|
@@ -4793,6 +4822,7 @@ interface NodeNonNullableFields {
|
|
|
4793
4822
|
orderedListData?: OrderedListDataNonNullableFields;
|
|
4794
4823
|
bulletedListData?: BulletedListDataNonNullableFields;
|
|
4795
4824
|
blockquoteData?: BlockquoteDataNonNullableFields;
|
|
4825
|
+
captionData?: CaptionDataNonNullableFields;
|
|
4796
4826
|
type: NodeType$1;
|
|
4797
4827
|
_id: string;
|
|
4798
4828
|
nodes: NodeNonNullableFields[];
|
|
@@ -4945,7 +4975,7 @@ type context$3_UnknownFormatError = UnknownFormatError;
|
|
|
4945
4975
|
declare const context$3_bulkMachineTranslate: typeof bulkMachineTranslate;
|
|
4946
4976
|
declare const context$3_machineTranslate: typeof machineTranslate;
|
|
4947
4977
|
declare namespace context$3 {
|
|
4948
|
-
export { Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$1 as ApplicationError, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, type Border$1 as Border, type BorderColors$1 as BorderColors, type BulkActionMetadata$1 as BulkActionMetadata, type context$3_BulkMachineTranslateOptions as BulkMachineTranslateOptions, type context$3_BulkMachineTranslateRequest as BulkMachineTranslateRequest, type context$3_BulkMachineTranslateResponse as BulkMachineTranslateResponse, type context$3_BulkMachineTranslateResponseNonNullableFields as BulkMachineTranslateResponseNonNullableFields, type context$3_BulkTranslateResult as BulkTranslateResult, type BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, type CellStyle$1 as CellStyle, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, Crop$1 as Crop, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type EmbedData$1 as EmbedData, type EventData$1 as EventData, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, context$3_Format as Format, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type Gradient$1 as Gradient, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type HeadingData$1 as HeadingData, type Height$1 as Height, type Image$1 as Image, type ImageData$1 as ImageData, InitialExpandedItems$1 as InitialExpandedItems, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type ItemStyle$1 as ItemStyle, type Layout$1 as Layout, LayoutType$1 as LayoutType, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, type ListValue$1 as ListValue, type context$3_MachineTranslateOptions as MachineTranslateOptions, type context$3_MachineTranslateRequest as MachineTranslateRequest, type context$3_MachineTranslateResponse as MachineTranslateResponse, type context$3_MachineTranslateResponseNonNullableFields as MachineTranslateResponseNonNullableFields, type MapData$1 as MapData, type MapSettings$1 as MapSettings, MapType$1 as MapType, type Media$1 as Media, type MentionData$1 as MentionData, type Metadata$1 as Metadata, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, type context$3_NotEnoughCreditsError as NotEnoughCreditsError, NullValue$1 as NullValue, type Oembed$1 as Oembed, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, type PDFSettings$1 as PDFSettings, type ParagraphData$1 as ParagraphData, type Permissions$1 as Permissions, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type Rel$1 as Rel, type RichContent$1 as RichContent, type context$3_SameLanguageArgumentsError as SameLanguageArgumentsError, type Settings$1 as Settings, Source$1 as Source, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Styles$1 as Styles, context$3_SupportedLanguage as SupportedLanguage, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Target$1 as Target, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type context$3_TextTooLongError as TextTooLongError, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, type context$3_TranslatableContent as TranslatableContent, type context$3_TranslatableContentContentOneOf as TranslatableContentContentOneOf, Type$1 as Type, type context$3_UnknownFormatError as UnknownFormatError, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, Width$1 as Width, WidthType$1 as WidthType, context$3_bulkMachineTranslate as bulkMachineTranslate, context$3_machineTranslate as machineTranslate };
|
|
4978
|
+
export { Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$1 as ApplicationError, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, type Border$1 as Border, type BorderColors$1 as BorderColors, type BulkActionMetadata$1 as BulkActionMetadata, type context$3_BulkMachineTranslateOptions as BulkMachineTranslateOptions, type context$3_BulkMachineTranslateRequest as BulkMachineTranslateRequest, type context$3_BulkMachineTranslateResponse as BulkMachineTranslateResponse, type context$3_BulkMachineTranslateResponseNonNullableFields as BulkMachineTranslateResponseNonNullableFields, type context$3_BulkTranslateResult as BulkTranslateResult, type BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, type CaptionData$1 as CaptionData, type CellStyle$1 as CellStyle, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, Crop$1 as Crop, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type EmbedData$1 as EmbedData, type EventData$1 as EventData, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, context$3_Format as Format, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type Gradient$1 as Gradient, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type HeadingData$1 as HeadingData, type Height$1 as Height, type Image$1 as Image, type ImageData$1 as ImageData, InitialExpandedItems$1 as InitialExpandedItems, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type ItemStyle$1 as ItemStyle, type Layout$1 as Layout, LayoutType$1 as LayoutType, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, type ListValue$1 as ListValue, type context$3_MachineTranslateOptions as MachineTranslateOptions, type context$3_MachineTranslateRequest as MachineTranslateRequest, type context$3_MachineTranslateResponse as MachineTranslateResponse, type context$3_MachineTranslateResponseNonNullableFields as MachineTranslateResponseNonNullableFields, type MapData$1 as MapData, type MapSettings$1 as MapSettings, MapType$1 as MapType, type Media$1 as Media, type MentionData$1 as MentionData, type Metadata$1 as Metadata, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, type context$3_NotEnoughCreditsError as NotEnoughCreditsError, NullValue$1 as NullValue, type Oembed$1 as Oembed, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, type PDFSettings$1 as PDFSettings, type ParagraphData$1 as ParagraphData, type Permissions$1 as Permissions, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type Rel$1 as Rel, type RichContent$1 as RichContent, type context$3_SameLanguageArgumentsError as SameLanguageArgumentsError, type Settings$1 as Settings, Source$1 as Source, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Styles$1 as Styles, context$3_SupportedLanguage as SupportedLanguage, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Target$1 as Target, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type context$3_TextTooLongError as TextTooLongError, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, type context$3_TranslatableContent as TranslatableContent, type context$3_TranslatableContentContentOneOf as TranslatableContentContentOneOf, Type$1 as Type, type context$3_UnknownFormatError as UnknownFormatError, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, Width$1 as Width, WidthType$1 as WidthType, context$3_bulkMachineTranslate as bulkMachineTranslate, context$3_machineTranslate as machineTranslate };
|
|
4949
4979
|
}
|
|
4950
4980
|
|
|
4951
4981
|
interface SiteTranslatableProperties {
|
|
@@ -5470,6 +5500,8 @@ interface Node extends NodeDataOneOf {
|
|
|
5470
5500
|
bulletedListData?: BulletedListData;
|
|
5471
5501
|
/** Data for a block quote node. */
|
|
5472
5502
|
blockquoteData?: BlockquoteData;
|
|
5503
|
+
/** Data for a caption node. */
|
|
5504
|
+
captionData?: CaptionData;
|
|
5473
5505
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
5474
5506
|
type?: NodeType;
|
|
5475
5507
|
/** Node ID. */
|
|
@@ -5531,6 +5563,8 @@ interface NodeDataOneOf {
|
|
|
5531
5563
|
bulletedListData?: BulletedListData;
|
|
5532
5564
|
/** Data for a block quote node. */
|
|
5533
5565
|
blockquoteData?: BlockquoteData;
|
|
5566
|
+
/** Data for a caption node. */
|
|
5567
|
+
captionData?: CaptionData;
|
|
5534
5568
|
}
|
|
5535
5569
|
declare enum NodeType {
|
|
5536
5570
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -5562,7 +5596,8 @@ declare enum NodeType {
|
|
|
5562
5596
|
TABLE_CELL = "TABLE_CELL",
|
|
5563
5597
|
TABLE_ROW = "TABLE_ROW",
|
|
5564
5598
|
EXTERNAL = "EXTERNAL",
|
|
5565
|
-
AUDIO = "AUDIO"
|
|
5599
|
+
AUDIO = "AUDIO",
|
|
5600
|
+
CAPTION = "CAPTION"
|
|
5566
5601
|
}
|
|
5567
5602
|
interface NodeStyle {
|
|
5568
5603
|
/** The top padding value in pixels. */
|
|
@@ -6052,7 +6087,10 @@ interface ImageData {
|
|
|
6052
6087
|
disableExpand?: boolean | null;
|
|
6053
6088
|
/** Image's alternative text. */
|
|
6054
6089
|
altText?: string | null;
|
|
6055
|
-
/**
|
|
6090
|
+
/**
|
|
6091
|
+
* Deprecated: use Caption node instead.
|
|
6092
|
+
* @deprecated
|
|
6093
|
+
*/
|
|
6056
6094
|
caption?: string | null;
|
|
6057
6095
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
6058
6096
|
disableDownload?: boolean | null;
|
|
@@ -6597,6 +6635,9 @@ interface BlockquoteData {
|
|
|
6597
6635
|
/** Indentation level from 1-4. */
|
|
6598
6636
|
indentation?: number;
|
|
6599
6637
|
}
|
|
6638
|
+
interface CaptionData {
|
|
6639
|
+
textStyle?: TextStyle;
|
|
6640
|
+
}
|
|
6600
6641
|
interface Metadata {
|
|
6601
6642
|
/** Schema version. */
|
|
6602
6643
|
version?: number;
|
|
@@ -8339,6 +8380,7 @@ type context$1_BulkUpdateContentResponseBulkContentResult = BulkUpdateContentRes
|
|
|
8339
8380
|
type context$1_BulkUpdateContentResponseNonNullableFields = BulkUpdateContentResponseNonNullableFields;
|
|
8340
8381
|
type context$1_BulletedListData = BulletedListData;
|
|
8341
8382
|
type context$1_ButtonData = ButtonData;
|
|
8383
|
+
type context$1_CaptionData = CaptionData;
|
|
8342
8384
|
type context$1_CellStyle = CellStyle;
|
|
8343
8385
|
type context$1_CodeBlockData = CodeBlockData;
|
|
8344
8386
|
type context$1_CollapsibleListData = CollapsibleListData;
|
|
@@ -8582,7 +8624,7 @@ declare const context$1_searchContents: typeof searchContents;
|
|
|
8582
8624
|
declare const context$1_updateContent: typeof updateContent;
|
|
8583
8625
|
declare const context$1_updateContentByKey: typeof updateContentByKey;
|
|
8584
8626
|
declare namespace context$1 {
|
|
8585
|
-
export { type ActionEvent$1 as ActionEvent, type context$1_Aggregation as Aggregation, type context$1_AggregationData as AggregationData, type context$1_AggregationKindOneOf as AggregationKindOneOf, type context$1_AggregationResults as AggregationResults, type context$1_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type context$1_AggregationResultsScalarResult as AggregationResultsScalarResult, context$1_AggregationType as AggregationType, context$1_Alignment as Alignment, type context$1_AnchorData as AnchorData, type context$1_AppEmbedData as AppEmbedData, type context$1_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$1_AppType as AppType, type context$1_ApplicationError as ApplicationError, type Asset$1 as Asset, type context$1_AudioData as AudioData, type context$1_Background as Background, type context$1_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$1_BackgroundType as BackgroundType, type BaseEventMetadata$1 as BaseEventMetadata, type context$1_BlockquoteData as BlockquoteData, type context$1_BookingData as BookingData, type context$1_Border as Border, type context$1_BorderColors as BorderColors, type context$1_BulkActionMetadata as BulkActionMetadata, type context$1_BulkContentResult as BulkContentResult, type context$1_BulkCreateContentOptions as BulkCreateContentOptions, type context$1_BulkCreateContentRequest as BulkCreateContentRequest, type context$1_BulkCreateContentResponse as BulkCreateContentResponse, type context$1_BulkCreateContentResponseNonNullableFields as BulkCreateContentResponseNonNullableFields, type context$1_BulkDeleteContentRequest as BulkDeleteContentRequest, type context$1_BulkDeleteContentResponse as BulkDeleteContentResponse, type context$1_BulkDeleteContentResponseBulkContentResult as BulkDeleteContentResponseBulkContentResult, type context$1_BulkDeleteContentResponseNonNullableFields as BulkDeleteContentResponseNonNullableFields, type context$1_BulkUpdateContentByKeyOptions as BulkUpdateContentByKeyOptions, type context$1_BulkUpdateContentByKeyRequest as BulkUpdateContentByKeyRequest, type context$1_BulkUpdateContentByKeyResponse as BulkUpdateContentByKeyResponse, type context$1_BulkUpdateContentByKeyResponseBulkContentResult as BulkUpdateContentByKeyResponseBulkContentResult, type context$1_BulkUpdateContentByKeyResponseNonNullableFields as BulkUpdateContentByKeyResponseNonNullableFields, type context$1_BulkUpdateContentOptions as BulkUpdateContentOptions, type context$1_BulkUpdateContentRequest as BulkUpdateContentRequest, type context$1_BulkUpdateContentRequestMaskedContent as BulkUpdateContentRequestMaskedContent, type context$1_BulkUpdateContentResponse as BulkUpdateContentResponse, type context$1_BulkUpdateContentResponseBulkContentResult as BulkUpdateContentResponseBulkContentResult, type context$1_BulkUpdateContentResponseNonNullableFields as BulkUpdateContentResponseNonNullableFields, type context$1_BulletedListData as BulletedListData, type context$1_ButtonData as ButtonData, type context$1_CellStyle as CellStyle, type context$1_CodeBlockData as CodeBlockData, type context$1_CollapsibleListData as CollapsibleListData, type context$1_ColorData as ColorData, type context$1_Colors as Colors, type context$1_Content as Content, type context$1_ContentCreatedEnvelope as ContentCreatedEnvelope, type context$1_ContentDeletedEnvelope as ContentDeletedEnvelope, type context$1_ContentField as ContentField, type context$1_ContentFieldValueOneOf as ContentFieldValueOneOf, type context$1_ContentNonNullableFields as ContentNonNullableFields, type context$1_ContentUpdatedEnvelope as ContentUpdatedEnvelope, type context$1_ContentsQueryBuilder as ContentsQueryBuilder, type context$1_ContentsQueryResult as ContentsQueryResult, type context$1_CreateContentRequest as CreateContentRequest, type context$1_CreateContentResponse as CreateContentResponse, type context$1_CreateContentResponseNonNullableFields as CreateContentResponseNonNullableFields, context$1_Crop as Crop, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type context$1_CursorSearch as CursorSearch, type context$1_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$1 as Cursors, type context$1_DateHistogramAggregation as DateHistogramAggregation, type context$1_DateHistogramResult as DateHistogramResult, type context$1_DateHistogramResults as DateHistogramResults, type context$1_Decoration as Decoration, type context$1_DecorationDataOneOf as DecorationDataOneOf, context$1_DecorationType as DecorationType, type context$1_DeleteContentRequest as DeleteContentRequest, type context$1_DeleteContentResponse as DeleteContentResponse, type DeleteContext$1 as DeleteContext, DeleteStatus$1 as DeleteStatus, type context$1_Design as Design, type context$1_Dimensions as Dimensions, context$1_Direction as Direction, type context$1_DividerData as DividerData, type context$1_DocumentStyle as DocumentStyle, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type context$1_EmbedData as EmbedData, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type context$1_EventData as EventData, type EventMetadata$1 as EventMetadata, type context$1_FileData as FileData, type context$1_FileSource as FileSource, type context$1_FileSourceDataOneOf as FileSourceDataOneOf, type context$1_FontSizeData as FontSizeData, context$1_FontType as FontType, type context$1_GIF as GIF, type context$1_GIFData as GIFData, type context$1_GalleryData as GalleryData, type context$1_GalleryOptions as GalleryOptions, type context$1_GetContentRequest as GetContentRequest, type context$1_GetContentResponse as GetContentResponse, type context$1_GetContentResponseNonNullableFields as GetContentResponseNonNullableFields, type context$1_Gradient as Gradient, type context$1_GroupByAggregation as GroupByAggregation, type context$1_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type context$1_GroupByValueResults as GroupByValueResults, type context$1_HTMLData as HTMLData, type context$1_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$1_HeadingData as HeadingData, type context$1_Height as Height, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type context$1_Image as Image, type context$1_ImageData as ImageData, type context$1_IncludeMissingValuesOptions as IncludeMissingValuesOptions, context$1_InitialExpandedItems as InitialExpandedItems, context$1_Interval as Interval, type context$1_Item as Item, type context$1_ItemDataOneOf as ItemDataOneOf, type context$1_ItemMetadata as ItemMetadata, type context$1_ItemStyle as ItemStyle, type context$1_Layout as Layout, context$1_LayoutType as LayoutType, context$1_LineStyle as LineStyle, type context$1_Link as Link, type context$1_LinkData as LinkData, type context$1_LinkDataOneOf as LinkDataOneOf, type context$1_LinkPreviewData as LinkPreviewData, type context$1_ListValue as ListValue, type context$1_MapData as MapData, type context$1_MapSettings as MapSettings, context$1_MapType as MapType, type context$1_MaskedContent as MaskedContent, type context$1_Media as Media, type context$1_MentionData as MentionData, type MessageEnvelope$1 as MessageEnvelope, type MetaSiteSpecialEvent$1 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$1 as MetaSiteSpecialEventPayloadOneOf, type context$1_Metadata as Metadata, context$1_MissingValues as MissingValues, context$1_Mode as Mode, Namespace$1 as Namespace, type NamespaceChanged$1 as NamespaceChanged, type context$1_NestedAggregation as NestedAggregation, type context$1_NestedAggregationItem as NestedAggregationItem, type context$1_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type context$1_NestedAggregationResults as NestedAggregationResults, type context$1_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, context$1_NestedAggregationType as NestedAggregationType, type context$1_NestedResultValue as NestedResultValue, type context$1_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type context$1_NestedResults as NestedResults, type context$1_NestedValueAggregationResult as NestedValueAggregationResult, type context$1_Node as Node, type context$1_NodeDataOneOf as NodeDataOneOf, type context$1_NodeStyle as NodeStyle, context$1_NodeType as NodeType, context$1_NullValue as NullValue, type context$1_Oembed as Oembed, type context$1_Option as Option, type context$1_OptionDesign as OptionDesign, type context$1_OptionLayout as OptionLayout, type context$1_OrderedListData as OrderedListData, context$1_Orientation as Orientation, type context$1_PDFSettings as PDFSettings, type context$1_Paging as Paging, type context$1_PagingMetadataV2 as PagingMetadataV2, type context$1_ParagraphData as ParagraphData, type context$1_Permissions as Permissions, type context$1_PermissiveBulkUpdateContentRequest as PermissiveBulkUpdateContentRequest, type context$1_PermissiveBulkUpdateContentRequestMaskedContent as PermissiveBulkUpdateContentRequestMaskedContent, type context$1_PermissiveBulkUpdateContentResponse as PermissiveBulkUpdateContentResponse, type context$1_PermissiveBulkUpdateContentResponseBulkContentResult as PermissiveBulkUpdateContentResponseBulkContentResult, type context$1_PlaybackOptions as PlaybackOptions, type context$1_PluginContainerData as PluginContainerData, context$1_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$1_PluginContainerDataWidth as PluginContainerDataWidth, type context$1_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$1_Poll as Poll, type context$1_PollData as PollData, type context$1_PollDataLayout as PollDataLayout, type context$1_PollDesign as PollDesign, type context$1_PollLayout as PollLayout, context$1_PollLayoutDirection as PollLayoutDirection, context$1_PollLayoutType as PollLayoutType, context$1_PublishStatus as PublishStatus, type context$1_QueryContentsLegacyRequest as QueryContentsLegacyRequest, type context$1_QueryContentsLegacyResponse as QueryContentsLegacyResponse, type context$1_QueryContentsOptions as QueryContentsOptions, type context$1_QueryContentsRequest as QueryContentsRequest, type context$1_QueryContentsResponse as QueryContentsResponse, type context$1_QueryContentsResponseNonNullableFields as QueryContentsResponseNonNullableFields, type context$1_QueryV2 as QueryV2, type context$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context$1_RangeAggregation as RangeAggregation, type context$1_RangeAggregationResult as RangeAggregationResult, type context$1_RangeBucket as RangeBucket, type context$1_RangeResult as RangeResult, type context$1_RangeResults as RangeResults, type context$1_Rel as Rel, type context$1_RemoveContentsByFilterRequest as RemoveContentsByFilterRequest, type context$1_RemoveContentsByFilterResponse as RemoveContentsByFilterResponse, type context$1_RepublishContentByFilterRequest as RepublishContentByFilterRequest, type context$1_RepublishContentByFilterResponse as RepublishContentByFilterResponse, type RestoreInfo$1 as RestoreInfo, type context$1_Results as Results, type context$1_RichContent as RichContent, type context$1_ScalarAggregation as ScalarAggregation, type context$1_ScalarResult as ScalarResult, context$1_ScalarType as ScalarType, type context$1_SearchContentsOptions as SearchContentsOptions, type context$1_SearchContentsRequest as SearchContentsRequest, type context$1_SearchContentsResponse as SearchContentsResponse, type context$1_SearchContentsResponseNonNullableFields as SearchContentsResponseNonNullableFields, type context$1_SearchDetails as SearchDetails, type ServiceProvisioned$1 as ServiceProvisioned, type ServiceRemoved$1 as ServiceRemoved, type context$1_Settings as Settings, type SiteCreated$1 as SiteCreated, SiteCreatedContext$1 as SiteCreatedContext, type SiteDeleted$1 as SiteDeleted, type SiteHardDeleted$1 as SiteHardDeleted, type SiteMarkedAsTemplate$1 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$1 as SiteMarkedAsWixSite, type SitePublished$1 as SitePublished, type SiteRenamed$1 as SiteRenamed, type SiteTransferred$1 as SiteTransferred, type SiteUndeleted$1 as SiteUndeleted, type SiteUnpublished$1 as SiteUnpublished, context$1_SortDirection as SortDirection, SortOrder$1 as SortOrder, context$1_SortType as SortType, type Sorting$1 as Sorting, context$1_Source as Source, type context$1_Spoiler as Spoiler, type context$1_SpoilerData as SpoilerData, State$1 as State, type StudioAssigned$1 as StudioAssigned, type StudioUnassigned$1 as StudioUnassigned, type context$1_Styles as Styles, type context$1_TableCellData as TableCellData, type context$1_TableData as TableData, context$1_Target as Target, context$1_TextAlignment as TextAlignment, type context$1_TextData as TextData, type context$1_TextNodeStyle as TextNodeStyle, type context$1_TextStyle as TextStyle, type context$1_Thumbnails as Thumbnails, context$1_ThumbnailsAlignment as ThumbnailsAlignment, context$1_Type as Type, type context$1_UpdateContent as UpdateContent, type context$1_UpdateContentByKeyRequest as UpdateContentByKeyRequest, type context$1_UpdateContentByKeyResponse as UpdateContentByKeyResponse, type context$1_UpdateContentByKeyResponseNonNullableFields as UpdateContentByKeyResponseNonNullableFields, type context$1_UpdateContentRequest as UpdateContentRequest, type context$1_UpdateContentResponse as UpdateContentResponse, type context$1_UpdateContentResponseNonNullableFields as UpdateContentResponseNonNullableFields, context$1_UpdaterIdentity as UpdaterIdentity, type context$1_ValueAggregation as ValueAggregation, type context$1_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type context$1_ValueAggregationResult as ValueAggregationResult, type context$1_ValueResult as ValueResult, type context$1_ValueResults as ValueResults, context$1_VerticalAlignment as VerticalAlignment, type context$1_Video as Video, type context$1_VideoData as VideoData, type context$1_VideoResolution as VideoResolution, context$1_ViewMode as ViewMode, context$1_ViewRole as ViewRole, context$1_VoteRole as VoteRole, WebhookIdentityType$1 as WebhookIdentityType, context$1_Width as Width, context$1_WidthType as WidthType, type context$1__publicOnContentCreatedType as _publicOnContentCreatedType, type context$1__publicOnContentDeletedType as _publicOnContentDeletedType, type context$1__publicOnContentUpdatedType as _publicOnContentUpdatedType, context$1_bulkCreateContent as bulkCreateContent, context$1_bulkDeleteContent as bulkDeleteContent, context$1_bulkUpdateContent as bulkUpdateContent, context$1_bulkUpdateContentByKey as bulkUpdateContentByKey, context$1_createContent as createContent, context$1_deleteContent as deleteContent, context$1_getContent as getContent, context$1_onContentCreated as onContentCreated, context$1_onContentDeleted as onContentDeleted, context$1_onContentUpdated as onContentUpdated, onContentCreated$1 as publicOnContentCreated, onContentDeleted$1 as publicOnContentDeleted, onContentUpdated$1 as publicOnContentUpdated, context$1_queryContents as queryContents, context$1_searchContents as searchContents, context$1_updateContent as updateContent, context$1_updateContentByKey as updateContentByKey };
|
|
8627
|
+
export { type ActionEvent$1 as ActionEvent, type context$1_Aggregation as Aggregation, type context$1_AggregationData as AggregationData, type context$1_AggregationKindOneOf as AggregationKindOneOf, type context$1_AggregationResults as AggregationResults, type context$1_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type context$1_AggregationResultsScalarResult as AggregationResultsScalarResult, context$1_AggregationType as AggregationType, context$1_Alignment as Alignment, type context$1_AnchorData as AnchorData, type context$1_AppEmbedData as AppEmbedData, type context$1_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$1_AppType as AppType, type context$1_ApplicationError as ApplicationError, type Asset$1 as Asset, type context$1_AudioData as AudioData, type context$1_Background as Background, type context$1_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$1_BackgroundType as BackgroundType, type BaseEventMetadata$1 as BaseEventMetadata, type context$1_BlockquoteData as BlockquoteData, type context$1_BookingData as BookingData, type context$1_Border as Border, type context$1_BorderColors as BorderColors, type context$1_BulkActionMetadata as BulkActionMetadata, type context$1_BulkContentResult as BulkContentResult, type context$1_BulkCreateContentOptions as BulkCreateContentOptions, type context$1_BulkCreateContentRequest as BulkCreateContentRequest, type context$1_BulkCreateContentResponse as BulkCreateContentResponse, type context$1_BulkCreateContentResponseNonNullableFields as BulkCreateContentResponseNonNullableFields, type context$1_BulkDeleteContentRequest as BulkDeleteContentRequest, type context$1_BulkDeleteContentResponse as BulkDeleteContentResponse, type context$1_BulkDeleteContentResponseBulkContentResult as BulkDeleteContentResponseBulkContentResult, type context$1_BulkDeleteContentResponseNonNullableFields as BulkDeleteContentResponseNonNullableFields, type context$1_BulkUpdateContentByKeyOptions as BulkUpdateContentByKeyOptions, type context$1_BulkUpdateContentByKeyRequest as BulkUpdateContentByKeyRequest, type context$1_BulkUpdateContentByKeyResponse as BulkUpdateContentByKeyResponse, type context$1_BulkUpdateContentByKeyResponseBulkContentResult as BulkUpdateContentByKeyResponseBulkContentResult, type context$1_BulkUpdateContentByKeyResponseNonNullableFields as BulkUpdateContentByKeyResponseNonNullableFields, type context$1_BulkUpdateContentOptions as BulkUpdateContentOptions, type context$1_BulkUpdateContentRequest as BulkUpdateContentRequest, type context$1_BulkUpdateContentRequestMaskedContent as BulkUpdateContentRequestMaskedContent, type context$1_BulkUpdateContentResponse as BulkUpdateContentResponse, type context$1_BulkUpdateContentResponseBulkContentResult as BulkUpdateContentResponseBulkContentResult, type context$1_BulkUpdateContentResponseNonNullableFields as BulkUpdateContentResponseNonNullableFields, type context$1_BulletedListData as BulletedListData, type context$1_ButtonData as ButtonData, type context$1_CaptionData as CaptionData, type context$1_CellStyle as CellStyle, type context$1_CodeBlockData as CodeBlockData, type context$1_CollapsibleListData as CollapsibleListData, type context$1_ColorData as ColorData, type context$1_Colors as Colors, type context$1_Content as Content, type context$1_ContentCreatedEnvelope as ContentCreatedEnvelope, type context$1_ContentDeletedEnvelope as ContentDeletedEnvelope, type context$1_ContentField as ContentField, type context$1_ContentFieldValueOneOf as ContentFieldValueOneOf, type context$1_ContentNonNullableFields as ContentNonNullableFields, type context$1_ContentUpdatedEnvelope as ContentUpdatedEnvelope, type context$1_ContentsQueryBuilder as ContentsQueryBuilder, type context$1_ContentsQueryResult as ContentsQueryResult, type context$1_CreateContentRequest as CreateContentRequest, type context$1_CreateContentResponse as CreateContentResponse, type context$1_CreateContentResponseNonNullableFields as CreateContentResponseNonNullableFields, context$1_Crop as Crop, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type context$1_CursorSearch as CursorSearch, type context$1_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$1 as Cursors, type context$1_DateHistogramAggregation as DateHistogramAggregation, type context$1_DateHistogramResult as DateHistogramResult, type context$1_DateHistogramResults as DateHistogramResults, type context$1_Decoration as Decoration, type context$1_DecorationDataOneOf as DecorationDataOneOf, context$1_DecorationType as DecorationType, type context$1_DeleteContentRequest as DeleteContentRequest, type context$1_DeleteContentResponse as DeleteContentResponse, type DeleteContext$1 as DeleteContext, DeleteStatus$1 as DeleteStatus, type context$1_Design as Design, type context$1_Dimensions as Dimensions, context$1_Direction as Direction, type context$1_DividerData as DividerData, type context$1_DocumentStyle as DocumentStyle, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type context$1_EmbedData as EmbedData, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type context$1_EventData as EventData, type EventMetadata$1 as EventMetadata, type context$1_FileData as FileData, type context$1_FileSource as FileSource, type context$1_FileSourceDataOneOf as FileSourceDataOneOf, type context$1_FontSizeData as FontSizeData, context$1_FontType as FontType, type context$1_GIF as GIF, type context$1_GIFData as GIFData, type context$1_GalleryData as GalleryData, type context$1_GalleryOptions as GalleryOptions, type context$1_GetContentRequest as GetContentRequest, type context$1_GetContentResponse as GetContentResponse, type context$1_GetContentResponseNonNullableFields as GetContentResponseNonNullableFields, type context$1_Gradient as Gradient, type context$1_GroupByAggregation as GroupByAggregation, type context$1_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type context$1_GroupByValueResults as GroupByValueResults, type context$1_HTMLData as HTMLData, type context$1_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$1_HeadingData as HeadingData, type context$1_Height as Height, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type context$1_Image as Image, type context$1_ImageData as ImageData, type context$1_IncludeMissingValuesOptions as IncludeMissingValuesOptions, context$1_InitialExpandedItems as InitialExpandedItems, context$1_Interval as Interval, type context$1_Item as Item, type context$1_ItemDataOneOf as ItemDataOneOf, type context$1_ItemMetadata as ItemMetadata, type context$1_ItemStyle as ItemStyle, type context$1_Layout as Layout, context$1_LayoutType as LayoutType, context$1_LineStyle as LineStyle, type context$1_Link as Link, type context$1_LinkData as LinkData, type context$1_LinkDataOneOf as LinkDataOneOf, type context$1_LinkPreviewData as LinkPreviewData, type context$1_ListValue as ListValue, type context$1_MapData as MapData, type context$1_MapSettings as MapSettings, context$1_MapType as MapType, type context$1_MaskedContent as MaskedContent, type context$1_Media as Media, type context$1_MentionData as MentionData, type MessageEnvelope$1 as MessageEnvelope, type MetaSiteSpecialEvent$1 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$1 as MetaSiteSpecialEventPayloadOneOf, type context$1_Metadata as Metadata, context$1_MissingValues as MissingValues, context$1_Mode as Mode, Namespace$1 as Namespace, type NamespaceChanged$1 as NamespaceChanged, type context$1_NestedAggregation as NestedAggregation, type context$1_NestedAggregationItem as NestedAggregationItem, type context$1_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type context$1_NestedAggregationResults as NestedAggregationResults, type context$1_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, context$1_NestedAggregationType as NestedAggregationType, type context$1_NestedResultValue as NestedResultValue, type context$1_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type context$1_NestedResults as NestedResults, type context$1_NestedValueAggregationResult as NestedValueAggregationResult, type context$1_Node as Node, type context$1_NodeDataOneOf as NodeDataOneOf, type context$1_NodeStyle as NodeStyle, context$1_NodeType as NodeType, context$1_NullValue as NullValue, type context$1_Oembed as Oembed, type context$1_Option as Option, type context$1_OptionDesign as OptionDesign, type context$1_OptionLayout as OptionLayout, type context$1_OrderedListData as OrderedListData, context$1_Orientation as Orientation, type context$1_PDFSettings as PDFSettings, type context$1_Paging as Paging, type context$1_PagingMetadataV2 as PagingMetadataV2, type context$1_ParagraphData as ParagraphData, type context$1_Permissions as Permissions, type context$1_PermissiveBulkUpdateContentRequest as PermissiveBulkUpdateContentRequest, type context$1_PermissiveBulkUpdateContentRequestMaskedContent as PermissiveBulkUpdateContentRequestMaskedContent, type context$1_PermissiveBulkUpdateContentResponse as PermissiveBulkUpdateContentResponse, type context$1_PermissiveBulkUpdateContentResponseBulkContentResult as PermissiveBulkUpdateContentResponseBulkContentResult, type context$1_PlaybackOptions as PlaybackOptions, type context$1_PluginContainerData as PluginContainerData, context$1_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$1_PluginContainerDataWidth as PluginContainerDataWidth, type context$1_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$1_Poll as Poll, type context$1_PollData as PollData, type context$1_PollDataLayout as PollDataLayout, type context$1_PollDesign as PollDesign, type context$1_PollLayout as PollLayout, context$1_PollLayoutDirection as PollLayoutDirection, context$1_PollLayoutType as PollLayoutType, context$1_PublishStatus as PublishStatus, type context$1_QueryContentsLegacyRequest as QueryContentsLegacyRequest, type context$1_QueryContentsLegacyResponse as QueryContentsLegacyResponse, type context$1_QueryContentsOptions as QueryContentsOptions, type context$1_QueryContentsRequest as QueryContentsRequest, type context$1_QueryContentsResponse as QueryContentsResponse, type context$1_QueryContentsResponseNonNullableFields as QueryContentsResponseNonNullableFields, type context$1_QueryV2 as QueryV2, type context$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context$1_RangeAggregation as RangeAggregation, type context$1_RangeAggregationResult as RangeAggregationResult, type context$1_RangeBucket as RangeBucket, type context$1_RangeResult as RangeResult, type context$1_RangeResults as RangeResults, type context$1_Rel as Rel, type context$1_RemoveContentsByFilterRequest as RemoveContentsByFilterRequest, type context$1_RemoveContentsByFilterResponse as RemoveContentsByFilterResponse, type context$1_RepublishContentByFilterRequest as RepublishContentByFilterRequest, type context$1_RepublishContentByFilterResponse as RepublishContentByFilterResponse, type RestoreInfo$1 as RestoreInfo, type context$1_Results as Results, type context$1_RichContent as RichContent, type context$1_ScalarAggregation as ScalarAggregation, type context$1_ScalarResult as ScalarResult, context$1_ScalarType as ScalarType, type context$1_SearchContentsOptions as SearchContentsOptions, type context$1_SearchContentsRequest as SearchContentsRequest, type context$1_SearchContentsResponse as SearchContentsResponse, type context$1_SearchContentsResponseNonNullableFields as SearchContentsResponseNonNullableFields, type context$1_SearchDetails as SearchDetails, type ServiceProvisioned$1 as ServiceProvisioned, type ServiceRemoved$1 as ServiceRemoved, type context$1_Settings as Settings, type SiteCreated$1 as SiteCreated, SiteCreatedContext$1 as SiteCreatedContext, type SiteDeleted$1 as SiteDeleted, type SiteHardDeleted$1 as SiteHardDeleted, type SiteMarkedAsTemplate$1 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$1 as SiteMarkedAsWixSite, type SitePublished$1 as SitePublished, type SiteRenamed$1 as SiteRenamed, type SiteTransferred$1 as SiteTransferred, type SiteUndeleted$1 as SiteUndeleted, type SiteUnpublished$1 as SiteUnpublished, context$1_SortDirection as SortDirection, SortOrder$1 as SortOrder, context$1_SortType as SortType, type Sorting$1 as Sorting, context$1_Source as Source, type context$1_Spoiler as Spoiler, type context$1_SpoilerData as SpoilerData, State$1 as State, type StudioAssigned$1 as StudioAssigned, type StudioUnassigned$1 as StudioUnassigned, type context$1_Styles as Styles, type context$1_TableCellData as TableCellData, type context$1_TableData as TableData, context$1_Target as Target, context$1_TextAlignment as TextAlignment, type context$1_TextData as TextData, type context$1_TextNodeStyle as TextNodeStyle, type context$1_TextStyle as TextStyle, type context$1_Thumbnails as Thumbnails, context$1_ThumbnailsAlignment as ThumbnailsAlignment, context$1_Type as Type, type context$1_UpdateContent as UpdateContent, type context$1_UpdateContentByKeyRequest as UpdateContentByKeyRequest, type context$1_UpdateContentByKeyResponse as UpdateContentByKeyResponse, type context$1_UpdateContentByKeyResponseNonNullableFields as UpdateContentByKeyResponseNonNullableFields, type context$1_UpdateContentRequest as UpdateContentRequest, type context$1_UpdateContentResponse as UpdateContentResponse, type context$1_UpdateContentResponseNonNullableFields as UpdateContentResponseNonNullableFields, context$1_UpdaterIdentity as UpdaterIdentity, type context$1_ValueAggregation as ValueAggregation, type context$1_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type context$1_ValueAggregationResult as ValueAggregationResult, type context$1_ValueResult as ValueResult, type context$1_ValueResults as ValueResults, context$1_VerticalAlignment as VerticalAlignment, type context$1_Video as Video, type context$1_VideoData as VideoData, type context$1_VideoResolution as VideoResolution, context$1_ViewMode as ViewMode, context$1_ViewRole as ViewRole, context$1_VoteRole as VoteRole, WebhookIdentityType$1 as WebhookIdentityType, context$1_Width as Width, context$1_WidthType as WidthType, type context$1__publicOnContentCreatedType as _publicOnContentCreatedType, type context$1__publicOnContentDeletedType as _publicOnContentDeletedType, type context$1__publicOnContentUpdatedType as _publicOnContentUpdatedType, context$1_bulkCreateContent as bulkCreateContent, context$1_bulkDeleteContent as bulkDeleteContent, context$1_bulkUpdateContent as bulkUpdateContent, context$1_bulkUpdateContentByKey as bulkUpdateContentByKey, context$1_createContent as createContent, context$1_deleteContent as deleteContent, context$1_getContent as getContent, context$1_onContentCreated as onContentCreated, context$1_onContentDeleted as onContentDeleted, context$1_onContentUpdated as onContentUpdated, onContentCreated$1 as publicOnContentCreated, onContentDeleted$1 as publicOnContentDeleted, onContentUpdated$1 as publicOnContentUpdated, context$1_queryContents as queryContents, context$1_searchContents as searchContents, context$1_updateContent as updateContent, context$1_updateContentByKey as updateContentByKey };
|
|
8586
8628
|
}
|
|
8587
8629
|
|
|
8588
8630
|
interface Schema {
|
|
@@ -1111,6 +1111,8 @@ interface Node$2 extends NodeDataOneOf$2 {
|
|
|
1111
1111
|
bulletedListData?: BulletedListData$2;
|
|
1112
1112
|
/** Data for a block quote node. */
|
|
1113
1113
|
blockquoteData?: BlockquoteData$2;
|
|
1114
|
+
/** Data for a caption node. */
|
|
1115
|
+
captionData?: CaptionData$2;
|
|
1114
1116
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
1115
1117
|
type?: NodeType$2;
|
|
1116
1118
|
/** Node ID. */
|
|
@@ -1172,6 +1174,8 @@ interface NodeDataOneOf$2 {
|
|
|
1172
1174
|
bulletedListData?: BulletedListData$2;
|
|
1173
1175
|
/** Data for a block quote node. */
|
|
1174
1176
|
blockquoteData?: BlockquoteData$2;
|
|
1177
|
+
/** Data for a caption node. */
|
|
1178
|
+
captionData?: CaptionData$2;
|
|
1175
1179
|
}
|
|
1176
1180
|
declare enum NodeType$2 {
|
|
1177
1181
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -1203,7 +1207,8 @@ declare enum NodeType$2 {
|
|
|
1203
1207
|
TABLE_CELL = "TABLE_CELL",
|
|
1204
1208
|
TABLE_ROW = "TABLE_ROW",
|
|
1205
1209
|
EXTERNAL = "EXTERNAL",
|
|
1206
|
-
AUDIO = "AUDIO"
|
|
1210
|
+
AUDIO = "AUDIO",
|
|
1211
|
+
CAPTION = "CAPTION"
|
|
1207
1212
|
}
|
|
1208
1213
|
interface NodeStyle$2 {
|
|
1209
1214
|
/** The top padding value in pixels. */
|
|
@@ -1693,7 +1698,10 @@ interface ImageData$2 {
|
|
|
1693
1698
|
disableExpand?: boolean | null;
|
|
1694
1699
|
/** Image's alternative text. */
|
|
1695
1700
|
altText?: string | null;
|
|
1696
|
-
/**
|
|
1701
|
+
/**
|
|
1702
|
+
* Deprecated: use Caption node instead.
|
|
1703
|
+
* @deprecated
|
|
1704
|
+
*/
|
|
1697
1705
|
caption?: string | null;
|
|
1698
1706
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
1699
1707
|
disableDownload?: boolean | null;
|
|
@@ -2238,6 +2246,9 @@ interface BlockquoteData$2 {
|
|
|
2238
2246
|
/** Indentation level from 1-4. */
|
|
2239
2247
|
indentation?: number;
|
|
2240
2248
|
}
|
|
2249
|
+
interface CaptionData$2 {
|
|
2250
|
+
textStyle?: TextStyle$2;
|
|
2251
|
+
}
|
|
2241
2252
|
interface Metadata$2 {
|
|
2242
2253
|
/** Schema version. */
|
|
2243
2254
|
version?: number;
|
|
@@ -2698,6 +2709,9 @@ interface BulletedListDataNonNullableFields$1 {
|
|
|
2698
2709
|
interface BlockquoteDataNonNullableFields$1 {
|
|
2699
2710
|
indentation: number;
|
|
2700
2711
|
}
|
|
2712
|
+
interface CaptionDataNonNullableFields$1 {
|
|
2713
|
+
textStyle?: TextStyleNonNullableFields$1;
|
|
2714
|
+
}
|
|
2701
2715
|
interface NodeNonNullableFields$1 {
|
|
2702
2716
|
buttonData?: ButtonDataNonNullableFields$1;
|
|
2703
2717
|
codeBlockData?: CodeBlockDataNonNullableFields$1;
|
|
@@ -2723,6 +2737,7 @@ interface NodeNonNullableFields$1 {
|
|
|
2723
2737
|
orderedListData?: OrderedListDataNonNullableFields$1;
|
|
2724
2738
|
bulletedListData?: BulletedListDataNonNullableFields$1;
|
|
2725
2739
|
blockquoteData?: BlockquoteDataNonNullableFields$1;
|
|
2740
|
+
captionData?: CaptionDataNonNullableFields$1;
|
|
2726
2741
|
type: NodeType$2;
|
|
2727
2742
|
_id: string;
|
|
2728
2743
|
nodes: NodeNonNullableFields$1[];
|
|
@@ -2897,7 +2912,7 @@ interface QueryPublishedContentSignature {
|
|
|
2897
2912
|
* `queryPublishedContent()` runs with the following `PublishedContentQueryBuilder` defaults which you can override:
|
|
2898
2913
|
*
|
|
2899
2914
|
* + [`limit(100)`](https://dev.wix.com/docs/sdk/backend-modules/multilingual/translation/translation-published-content/published-content-query-builder/limit)
|
|
2900
|
-
* + [`ascending('
|
|
2915
|
+
* + [`ascending('_id')`](https://dev.wix.com/docs/sdk/backend-modules/multilingual/translation/translation-published-content/published-content-query-builder/ascending)
|
|
2901
2916
|
*
|
|
2902
2917
|
* The following query filter fields are required:
|
|
2903
2918
|
*
|
|
@@ -2957,7 +2972,7 @@ declare const index_d$4_onPublishedContentDeleted: typeof onPublishedContentDele
|
|
|
2957
2972
|
declare const index_d$4_onPublishedContentUpdated: typeof onPublishedContentUpdated;
|
|
2958
2973
|
declare const index_d$4_queryPublishedContent: typeof queryPublishedContent;
|
|
2959
2974
|
declare namespace index_d$4 {
|
|
2960
|
-
export { type ActionEvent$2 as ActionEvent, Alignment$2 as Alignment, type AnchorData$2 as AnchorData, type AppEmbedData$2 as AppEmbedData, type AppEmbedDataAppDataOneOf$2 as AppEmbedDataAppDataOneOf, AppType$2 as AppType, type AudioData$2 as AudioData, type Background$2 as Background, type BackgroundBackgroundOneOf$2 as BackgroundBackgroundOneOf, BackgroundType$2 as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type BlockquoteData$2 as BlockquoteData, type BookingData$2 as BookingData, type Border$2 as Border, type BorderColors$2 as BorderColors, type BulletedListData$2 as BulletedListData, type ButtonData$2 as ButtonData, type CellStyle$2 as CellStyle, type CodeBlockData$2 as CodeBlockData, type CollapsibleListData$2 as CollapsibleListData, type ColorData$2 as ColorData, type Colors$2 as Colors, Crop$2 as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type Decoration$2 as Decoration, type DecorationDataOneOf$2 as DecorationDataOneOf, DecorationType$2 as DecorationType, type Design$2 as Design, type Dimensions$2 as Dimensions, Direction$2 as Direction, type DividerData$2 as DividerData, type DocumentStyle$2 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type EmbedData$2 as EmbedData, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$2 as EventData, type EventMetadata$2 as EventMetadata, type index_d$4_ExtendedFields as ExtendedFields, type FileData$2 as FileData, type FileSource$2 as FileSource, type FileSourceDataOneOf$2 as FileSourceDataOneOf, type FontSizeData$2 as FontSizeData, FontType$2 as FontType, type GIF$2 as GIF, type GIFData$2 as GIFData, type GalleryData$2 as GalleryData, type GalleryOptions$2 as GalleryOptions, type index_d$4_GetPublishedContentRequest as GetPublishedContentRequest, type index_d$4_GetPublishedContentResponse as GetPublishedContentResponse, type Gradient$2 as Gradient, type HTMLData$2 as HTMLData, type HTMLDataDataOneOf$2 as HTMLDataDataOneOf, type HeadingData$2 as HeadingData, type Height$2 as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$2 as Image, type ImageData$2 as ImageData, InitialExpandedItems$2 as InitialExpandedItems, type Item$2 as Item, type ItemDataOneOf$2 as ItemDataOneOf, type ItemStyle$2 as ItemStyle, type Layout$2 as Layout, LayoutType$2 as LayoutType, LineStyle$2 as LineStyle, type Link$2 as Link, type LinkData$2 as LinkData, type LinkDataOneOf$2 as LinkDataOneOf, type LinkPreviewData$2 as LinkPreviewData, type ListValue$2 as ListValue, type MapData$2 as MapData, type MapSettings$2 as MapSettings, MapType$2 as MapType, type Media$2 as Media, type MentionData$2 as MentionData, type MessageEnvelope$2 as MessageEnvelope, type Metadata$2 as Metadata, type Node$2 as Node, type NodeDataOneOf$2 as NodeDataOneOf, type NodeStyle$2 as NodeStyle, NodeType$2 as NodeType, NullValue$2 as NullValue, type Oembed$2 as Oembed, type Option$2 as Option, type OptionDesign$2 as OptionDesign, type OptionLayout$2 as OptionLayout, type OrderedListData$2 as OrderedListData, Orientation$2 as Orientation, type PDFSettings$2 as PDFSettings, type ParagraphData$2 as ParagraphData, type Permissions$2 as Permissions, type PlaybackOptions$2 as PlaybackOptions, type PluginContainerData$2 as PluginContainerData, PluginContainerDataAlignment$2 as PluginContainerDataAlignment, type PluginContainerDataWidth$2 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$2 as PluginContainerDataWidthDataOneOf, type Poll$2 as Poll, type PollData$2 as PollData, type PollDataLayout$2 as PollDataLayout, type PollDesign$2 as PollDesign, type PollLayout$2 as PollLayout, PollLayoutDirection$2 as PollLayoutDirection, PollLayoutType$2 as PollLayoutType, type index_d$4_PublishedContent as PublishedContent, type index_d$4_PublishedContentCreatedEnvelope as PublishedContentCreatedEnvelope, type index_d$4_PublishedContentDeletedEnvelope as PublishedContentDeletedEnvelope, type index_d$4_PublishedContentField as PublishedContentField, type index_d$4_PublishedContentFieldValueOneOf as PublishedContentFieldValueOneOf, type index_d$4_PublishedContentQueryBuilder as PublishedContentQueryBuilder, type index_d$4_PublishedContentQueryResult as PublishedContentQueryResult, type index_d$4_PublishedContentUpdatedEnvelope as PublishedContentUpdatedEnvelope, type index_d$4_QueryPublishedContentRequest as QueryPublishedContentRequest, type index_d$4_QueryPublishedContentResponse as QueryPublishedContentResponse, type index_d$4_QueryPublishedContentResponseNonNullableFields as QueryPublishedContentResponseNonNullableFields, type Rel$2 as Rel, type RestoreInfo$2 as RestoreInfo, type RichContent$2 as RichContent, type SchemaKey$1 as SchemaKey, SchemaScope$1 as SchemaScope, type Settings$2 as Settings, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$2 as Source, type Spoiler$2 as Spoiler, type SpoilerData$2 as SpoilerData, type Styles$2 as Styles, type TableCellData$2 as TableCellData, type TableData$2 as TableData, Target$2 as Target, TextAlignment$2 as TextAlignment, type TextData$2 as TextData, type TextNodeStyle$2 as TextNodeStyle, type TextStyle$2 as TextStyle, type Thumbnails$2 as Thumbnails, ThumbnailsAlignment$2 as ThumbnailsAlignment, Type$2 as Type, VerticalAlignment$2 as VerticalAlignment, type Video$2 as Video, type VideoData$2 as VideoData, type VideoResolution$1 as VideoResolution, ViewMode$2 as ViewMode, ViewRole$2 as ViewRole, VoteRole$2 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$2 as Width, WidthType$2 as WidthType, type index_d$4__publicOnPublishedContentCreatedType as _publicOnPublishedContentCreatedType, type index_d$4__publicOnPublishedContentDeletedType as _publicOnPublishedContentDeletedType, type index_d$4__publicOnPublishedContentUpdatedType as _publicOnPublishedContentUpdatedType, index_d$4_onPublishedContentCreated as onPublishedContentCreated, index_d$4_onPublishedContentDeleted as onPublishedContentDeleted, index_d$4_onPublishedContentUpdated as onPublishedContentUpdated, onPublishedContentCreated$1 as publicOnPublishedContentCreated, onPublishedContentDeleted$1 as publicOnPublishedContentDeleted, onPublishedContentUpdated$1 as publicOnPublishedContentUpdated, index_d$4_queryPublishedContent as queryPublishedContent };
|
|
2975
|
+
export { type ActionEvent$2 as ActionEvent, Alignment$2 as Alignment, type AnchorData$2 as AnchorData, type AppEmbedData$2 as AppEmbedData, type AppEmbedDataAppDataOneOf$2 as AppEmbedDataAppDataOneOf, AppType$2 as AppType, type AudioData$2 as AudioData, type Background$2 as Background, type BackgroundBackgroundOneOf$2 as BackgroundBackgroundOneOf, BackgroundType$2 as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type BlockquoteData$2 as BlockquoteData, type BookingData$2 as BookingData, type Border$2 as Border, type BorderColors$2 as BorderColors, type BulletedListData$2 as BulletedListData, type ButtonData$2 as ButtonData, type CaptionData$2 as CaptionData, type CellStyle$2 as CellStyle, type CodeBlockData$2 as CodeBlockData, type CollapsibleListData$2 as CollapsibleListData, type ColorData$2 as ColorData, type Colors$2 as Colors, Crop$2 as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type Decoration$2 as Decoration, type DecorationDataOneOf$2 as DecorationDataOneOf, DecorationType$2 as DecorationType, type Design$2 as Design, type Dimensions$2 as Dimensions, Direction$2 as Direction, type DividerData$2 as DividerData, type DocumentStyle$2 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type EmbedData$2 as EmbedData, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$2 as EventData, type EventMetadata$2 as EventMetadata, type index_d$4_ExtendedFields as ExtendedFields, type FileData$2 as FileData, type FileSource$2 as FileSource, type FileSourceDataOneOf$2 as FileSourceDataOneOf, type FontSizeData$2 as FontSizeData, FontType$2 as FontType, type GIF$2 as GIF, type GIFData$2 as GIFData, type GalleryData$2 as GalleryData, type GalleryOptions$2 as GalleryOptions, type index_d$4_GetPublishedContentRequest as GetPublishedContentRequest, type index_d$4_GetPublishedContentResponse as GetPublishedContentResponse, type Gradient$2 as Gradient, type HTMLData$2 as HTMLData, type HTMLDataDataOneOf$2 as HTMLDataDataOneOf, type HeadingData$2 as HeadingData, type Height$2 as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$2 as Image, type ImageData$2 as ImageData, InitialExpandedItems$2 as InitialExpandedItems, type Item$2 as Item, type ItemDataOneOf$2 as ItemDataOneOf, type ItemStyle$2 as ItemStyle, type Layout$2 as Layout, LayoutType$2 as LayoutType, LineStyle$2 as LineStyle, type Link$2 as Link, type LinkData$2 as LinkData, type LinkDataOneOf$2 as LinkDataOneOf, type LinkPreviewData$2 as LinkPreviewData, type ListValue$2 as ListValue, type MapData$2 as MapData, type MapSettings$2 as MapSettings, MapType$2 as MapType, type Media$2 as Media, type MentionData$2 as MentionData, type MessageEnvelope$2 as MessageEnvelope, type Metadata$2 as Metadata, type Node$2 as Node, type NodeDataOneOf$2 as NodeDataOneOf, type NodeStyle$2 as NodeStyle, NodeType$2 as NodeType, NullValue$2 as NullValue, type Oembed$2 as Oembed, type Option$2 as Option, type OptionDesign$2 as OptionDesign, type OptionLayout$2 as OptionLayout, type OrderedListData$2 as OrderedListData, Orientation$2 as Orientation, type PDFSettings$2 as PDFSettings, type ParagraphData$2 as ParagraphData, type Permissions$2 as Permissions, type PlaybackOptions$2 as PlaybackOptions, type PluginContainerData$2 as PluginContainerData, PluginContainerDataAlignment$2 as PluginContainerDataAlignment, type PluginContainerDataWidth$2 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$2 as PluginContainerDataWidthDataOneOf, type Poll$2 as Poll, type PollData$2 as PollData, type PollDataLayout$2 as PollDataLayout, type PollDesign$2 as PollDesign, type PollLayout$2 as PollLayout, PollLayoutDirection$2 as PollLayoutDirection, PollLayoutType$2 as PollLayoutType, type index_d$4_PublishedContent as PublishedContent, type index_d$4_PublishedContentCreatedEnvelope as PublishedContentCreatedEnvelope, type index_d$4_PublishedContentDeletedEnvelope as PublishedContentDeletedEnvelope, type index_d$4_PublishedContentField as PublishedContentField, type index_d$4_PublishedContentFieldValueOneOf as PublishedContentFieldValueOneOf, type index_d$4_PublishedContentQueryBuilder as PublishedContentQueryBuilder, type index_d$4_PublishedContentQueryResult as PublishedContentQueryResult, type index_d$4_PublishedContentUpdatedEnvelope as PublishedContentUpdatedEnvelope, type index_d$4_QueryPublishedContentRequest as QueryPublishedContentRequest, type index_d$4_QueryPublishedContentResponse as QueryPublishedContentResponse, type index_d$4_QueryPublishedContentResponseNonNullableFields as QueryPublishedContentResponseNonNullableFields, type Rel$2 as Rel, type RestoreInfo$2 as RestoreInfo, type RichContent$2 as RichContent, type SchemaKey$1 as SchemaKey, SchemaScope$1 as SchemaScope, type Settings$2 as Settings, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$2 as Source, type Spoiler$2 as Spoiler, type SpoilerData$2 as SpoilerData, type Styles$2 as Styles, type TableCellData$2 as TableCellData, type TableData$2 as TableData, Target$2 as Target, TextAlignment$2 as TextAlignment, type TextData$2 as TextData, type TextNodeStyle$2 as TextNodeStyle, type TextStyle$2 as TextStyle, type Thumbnails$2 as Thumbnails, ThumbnailsAlignment$2 as ThumbnailsAlignment, Type$2 as Type, VerticalAlignment$2 as VerticalAlignment, type Video$2 as Video, type VideoData$2 as VideoData, type VideoResolution$1 as VideoResolution, ViewMode$2 as ViewMode, ViewRole$2 as ViewRole, VoteRole$2 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$2 as Width, WidthType$2 as WidthType, type index_d$4__publicOnPublishedContentCreatedType as _publicOnPublishedContentCreatedType, type index_d$4__publicOnPublishedContentDeletedType as _publicOnPublishedContentDeletedType, type index_d$4__publicOnPublishedContentUpdatedType as _publicOnPublishedContentUpdatedType, index_d$4_onPublishedContentCreated as onPublishedContentCreated, index_d$4_onPublishedContentDeleted as onPublishedContentDeleted, index_d$4_onPublishedContentUpdated as onPublishedContentUpdated, onPublishedContentCreated$1 as publicOnPublishedContentCreated, onPublishedContentDeleted$1 as publicOnPublishedContentDeleted, onPublishedContentUpdated$1 as publicOnPublishedContentUpdated, index_d$4_queryPublishedContent as queryPublishedContent };
|
|
2961
2976
|
}
|
|
2962
2977
|
|
|
2963
2978
|
/**
|
|
@@ -3056,6 +3071,8 @@ interface Node$1 extends NodeDataOneOf$1 {
|
|
|
3056
3071
|
bulletedListData?: BulletedListData$1;
|
|
3057
3072
|
/** Data for a block quote node. */
|
|
3058
3073
|
blockquoteData?: BlockquoteData$1;
|
|
3074
|
+
/** Data for a caption node. */
|
|
3075
|
+
captionData?: CaptionData$1;
|
|
3059
3076
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
3060
3077
|
type?: NodeType$1;
|
|
3061
3078
|
/** Node ID. */
|
|
@@ -3117,6 +3134,8 @@ interface NodeDataOneOf$1 {
|
|
|
3117
3134
|
bulletedListData?: BulletedListData$1;
|
|
3118
3135
|
/** Data for a block quote node. */
|
|
3119
3136
|
blockquoteData?: BlockquoteData$1;
|
|
3137
|
+
/** Data for a caption node. */
|
|
3138
|
+
captionData?: CaptionData$1;
|
|
3120
3139
|
}
|
|
3121
3140
|
declare enum NodeType$1 {
|
|
3122
3141
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -3148,7 +3167,8 @@ declare enum NodeType$1 {
|
|
|
3148
3167
|
TABLE_CELL = "TABLE_CELL",
|
|
3149
3168
|
TABLE_ROW = "TABLE_ROW",
|
|
3150
3169
|
EXTERNAL = "EXTERNAL",
|
|
3151
|
-
AUDIO = "AUDIO"
|
|
3170
|
+
AUDIO = "AUDIO",
|
|
3171
|
+
CAPTION = "CAPTION"
|
|
3152
3172
|
}
|
|
3153
3173
|
interface NodeStyle$1 {
|
|
3154
3174
|
/** The top padding value in pixels. */
|
|
@@ -3638,7 +3658,10 @@ interface ImageData$1 {
|
|
|
3638
3658
|
disableExpand?: boolean | null;
|
|
3639
3659
|
/** Image's alternative text. */
|
|
3640
3660
|
altText?: string | null;
|
|
3641
|
-
/**
|
|
3661
|
+
/**
|
|
3662
|
+
* Deprecated: use Caption node instead.
|
|
3663
|
+
* @deprecated
|
|
3664
|
+
*/
|
|
3642
3665
|
caption?: string | null;
|
|
3643
3666
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
3644
3667
|
disableDownload?: boolean | null;
|
|
@@ -4183,6 +4206,9 @@ interface BlockquoteData$1 {
|
|
|
4183
4206
|
/** Indentation level from 1-4. */
|
|
4184
4207
|
indentation?: number;
|
|
4185
4208
|
}
|
|
4209
|
+
interface CaptionData$1 {
|
|
4210
|
+
textStyle?: TextStyle$1;
|
|
4211
|
+
}
|
|
4186
4212
|
interface Metadata$1 {
|
|
4187
4213
|
/** Schema version. */
|
|
4188
4214
|
version?: number;
|
|
@@ -4768,6 +4794,9 @@ interface BulletedListDataNonNullableFields {
|
|
|
4768
4794
|
interface BlockquoteDataNonNullableFields {
|
|
4769
4795
|
indentation: number;
|
|
4770
4796
|
}
|
|
4797
|
+
interface CaptionDataNonNullableFields {
|
|
4798
|
+
textStyle?: TextStyleNonNullableFields;
|
|
4799
|
+
}
|
|
4771
4800
|
interface NodeNonNullableFields {
|
|
4772
4801
|
buttonData?: ButtonDataNonNullableFields;
|
|
4773
4802
|
codeBlockData?: CodeBlockDataNonNullableFields;
|
|
@@ -4793,6 +4822,7 @@ interface NodeNonNullableFields {
|
|
|
4793
4822
|
orderedListData?: OrderedListDataNonNullableFields;
|
|
4794
4823
|
bulletedListData?: BulletedListDataNonNullableFields;
|
|
4795
4824
|
blockquoteData?: BlockquoteDataNonNullableFields;
|
|
4825
|
+
captionData?: CaptionDataNonNullableFields;
|
|
4796
4826
|
type: NodeType$1;
|
|
4797
4827
|
_id: string;
|
|
4798
4828
|
nodes: NodeNonNullableFields[];
|
|
@@ -4945,7 +4975,7 @@ type index_d$3_UnknownFormatError = UnknownFormatError;
|
|
|
4945
4975
|
declare const index_d$3_bulkMachineTranslate: typeof bulkMachineTranslate;
|
|
4946
4976
|
declare const index_d$3_machineTranslate: typeof machineTranslate;
|
|
4947
4977
|
declare namespace index_d$3 {
|
|
4948
|
-
export { Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$1 as ApplicationError, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, type Border$1 as Border, type BorderColors$1 as BorderColors, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$3_BulkMachineTranslateOptions as BulkMachineTranslateOptions, type index_d$3_BulkMachineTranslateRequest as BulkMachineTranslateRequest, type index_d$3_BulkMachineTranslateResponse as BulkMachineTranslateResponse, type index_d$3_BulkMachineTranslateResponseNonNullableFields as BulkMachineTranslateResponseNonNullableFields, type index_d$3_BulkTranslateResult as BulkTranslateResult, type BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, type CellStyle$1 as CellStyle, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, Crop$1 as Crop, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type EmbedData$1 as EmbedData, type EventData$1 as EventData, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, index_d$3_Format as Format, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type Gradient$1 as Gradient, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type HeadingData$1 as HeadingData, type Height$1 as Height, type Image$1 as Image, type ImageData$1 as ImageData, InitialExpandedItems$1 as InitialExpandedItems, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type ItemStyle$1 as ItemStyle, type Layout$1 as Layout, LayoutType$1 as LayoutType, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, type ListValue$1 as ListValue, type index_d$3_MachineTranslateOptions as MachineTranslateOptions, type index_d$3_MachineTranslateRequest as MachineTranslateRequest, type index_d$3_MachineTranslateResponse as MachineTranslateResponse, type index_d$3_MachineTranslateResponseNonNullableFields as MachineTranslateResponseNonNullableFields, type MapData$1 as MapData, type MapSettings$1 as MapSettings, MapType$1 as MapType, type Media$1 as Media, type MentionData$1 as MentionData, type Metadata$1 as Metadata, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, type index_d$3_NotEnoughCreditsError as NotEnoughCreditsError, NullValue$1 as NullValue, type Oembed$1 as Oembed, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, type PDFSettings$1 as PDFSettings, type ParagraphData$1 as ParagraphData, type Permissions$1 as Permissions, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type Rel$1 as Rel, type RichContent$1 as RichContent, type index_d$3_SameLanguageArgumentsError as SameLanguageArgumentsError, type Settings$1 as Settings, Source$1 as Source, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Styles$1 as Styles, index_d$3_SupportedLanguage as SupportedLanguage, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Target$1 as Target, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type index_d$3_TextTooLongError as TextTooLongError, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, type index_d$3_TranslatableContent as TranslatableContent, type index_d$3_TranslatableContentContentOneOf as TranslatableContentContentOneOf, Type$1 as Type, type index_d$3_UnknownFormatError as UnknownFormatError, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, Width$1 as Width, WidthType$1 as WidthType, index_d$3_bulkMachineTranslate as bulkMachineTranslate, index_d$3_machineTranslate as machineTranslate };
|
|
4978
|
+
export { Alignment$1 as Alignment, type AnchorData$1 as AnchorData, type AppEmbedData$1 as AppEmbedData, type AppEmbedDataAppDataOneOf$1 as AppEmbedDataAppDataOneOf, AppType$1 as AppType, type ApplicationError$1 as ApplicationError, type AudioData$1 as AudioData, type Background$1 as Background, type BackgroundBackgroundOneOf$1 as BackgroundBackgroundOneOf, BackgroundType$1 as BackgroundType, type BlockquoteData$1 as BlockquoteData, type BookingData$1 as BookingData, type Border$1 as Border, type BorderColors$1 as BorderColors, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$3_BulkMachineTranslateOptions as BulkMachineTranslateOptions, type index_d$3_BulkMachineTranslateRequest as BulkMachineTranslateRequest, type index_d$3_BulkMachineTranslateResponse as BulkMachineTranslateResponse, type index_d$3_BulkMachineTranslateResponseNonNullableFields as BulkMachineTranslateResponseNonNullableFields, type index_d$3_BulkTranslateResult as BulkTranslateResult, type BulletedListData$1 as BulletedListData, type ButtonData$1 as ButtonData, type CaptionData$1 as CaptionData, type CellStyle$1 as CellStyle, type CodeBlockData$1 as CodeBlockData, type CollapsibleListData$1 as CollapsibleListData, type ColorData$1 as ColorData, type Colors$1 as Colors, Crop$1 as Crop, type Decoration$1 as Decoration, type DecorationDataOneOf$1 as DecorationDataOneOf, DecorationType$1 as DecorationType, type Design$1 as Design, type Dimensions$1 as Dimensions, Direction$1 as Direction, type DividerData$1 as DividerData, type DocumentStyle$1 as DocumentStyle, type EmbedData$1 as EmbedData, type EventData$1 as EventData, type FileData$1 as FileData, type FileSource$1 as FileSource, type FileSourceDataOneOf$1 as FileSourceDataOneOf, type FontSizeData$1 as FontSizeData, FontType$1 as FontType, index_d$3_Format as Format, type GIF$1 as GIF, type GIFData$1 as GIFData, type GalleryData$1 as GalleryData, type GalleryOptions$1 as GalleryOptions, type Gradient$1 as Gradient, type HTMLData$1 as HTMLData, type HTMLDataDataOneOf$1 as HTMLDataDataOneOf, type HeadingData$1 as HeadingData, type Height$1 as Height, type Image$1 as Image, type ImageData$1 as ImageData, InitialExpandedItems$1 as InitialExpandedItems, type Item$1 as Item, type ItemDataOneOf$1 as ItemDataOneOf, type ItemMetadata$1 as ItemMetadata, type ItemStyle$1 as ItemStyle, type Layout$1 as Layout, LayoutType$1 as LayoutType, LineStyle$1 as LineStyle, type Link$1 as Link, type LinkData$1 as LinkData, type LinkDataOneOf$1 as LinkDataOneOf, type LinkPreviewData$1 as LinkPreviewData, type ListValue$1 as ListValue, type index_d$3_MachineTranslateOptions as MachineTranslateOptions, type index_d$3_MachineTranslateRequest as MachineTranslateRequest, type index_d$3_MachineTranslateResponse as MachineTranslateResponse, type index_d$3_MachineTranslateResponseNonNullableFields as MachineTranslateResponseNonNullableFields, type MapData$1 as MapData, type MapSettings$1 as MapSettings, MapType$1 as MapType, type Media$1 as Media, type MentionData$1 as MentionData, type Metadata$1 as Metadata, type Node$1 as Node, type NodeDataOneOf$1 as NodeDataOneOf, type NodeStyle$1 as NodeStyle, NodeType$1 as NodeType, type index_d$3_NotEnoughCreditsError as NotEnoughCreditsError, NullValue$1 as NullValue, type Oembed$1 as Oembed, type Option$1 as Option, type OptionDesign$1 as OptionDesign, type OptionLayout$1 as OptionLayout, type OrderedListData$1 as OrderedListData, Orientation$1 as Orientation, type PDFSettings$1 as PDFSettings, type ParagraphData$1 as ParagraphData, type Permissions$1 as Permissions, type PlaybackOptions$1 as PlaybackOptions, type PluginContainerData$1 as PluginContainerData, PluginContainerDataAlignment$1 as PluginContainerDataAlignment, type PluginContainerDataWidth$1 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$1 as PluginContainerDataWidthDataOneOf, type Poll$1 as Poll, type PollData$1 as PollData, type PollDataLayout$1 as PollDataLayout, type PollDesign$1 as PollDesign, type PollLayout$1 as PollLayout, PollLayoutDirection$1 as PollLayoutDirection, PollLayoutType$1 as PollLayoutType, type Rel$1 as Rel, type RichContent$1 as RichContent, type index_d$3_SameLanguageArgumentsError as SameLanguageArgumentsError, type Settings$1 as Settings, Source$1 as Source, type Spoiler$1 as Spoiler, type SpoilerData$1 as SpoilerData, type Styles$1 as Styles, index_d$3_SupportedLanguage as SupportedLanguage, type TableCellData$1 as TableCellData, type TableData$1 as TableData, Target$1 as Target, TextAlignment$1 as TextAlignment, type TextData$1 as TextData, type TextNodeStyle$1 as TextNodeStyle, type TextStyle$1 as TextStyle, type index_d$3_TextTooLongError as TextTooLongError, type Thumbnails$1 as Thumbnails, ThumbnailsAlignment$1 as ThumbnailsAlignment, type index_d$3_TranslatableContent as TranslatableContent, type index_d$3_TranslatableContentContentOneOf as TranslatableContentContentOneOf, Type$1 as Type, type index_d$3_UnknownFormatError as UnknownFormatError, VerticalAlignment$1 as VerticalAlignment, type Video$1 as Video, type VideoData$1 as VideoData, ViewMode$1 as ViewMode, ViewRole$1 as ViewRole, VoteRole$1 as VoteRole, Width$1 as Width, WidthType$1 as WidthType, index_d$3_bulkMachineTranslate as bulkMachineTranslate, index_d$3_machineTranslate as machineTranslate };
|
|
4949
4979
|
}
|
|
4950
4980
|
|
|
4951
4981
|
interface SiteTranslatableProperties {
|
|
@@ -5470,6 +5500,8 @@ interface Node extends NodeDataOneOf {
|
|
|
5470
5500
|
bulletedListData?: BulletedListData;
|
|
5471
5501
|
/** Data for a block quote node. */
|
|
5472
5502
|
blockquoteData?: BlockquoteData;
|
|
5503
|
+
/** Data for a caption node. */
|
|
5504
|
+
captionData?: CaptionData;
|
|
5473
5505
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
5474
5506
|
type?: NodeType;
|
|
5475
5507
|
/** Node ID. */
|
|
@@ -5531,6 +5563,8 @@ interface NodeDataOneOf {
|
|
|
5531
5563
|
bulletedListData?: BulletedListData;
|
|
5532
5564
|
/** Data for a block quote node. */
|
|
5533
5565
|
blockquoteData?: BlockquoteData;
|
|
5566
|
+
/** Data for a caption node. */
|
|
5567
|
+
captionData?: CaptionData;
|
|
5534
5568
|
}
|
|
5535
5569
|
declare enum NodeType {
|
|
5536
5570
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -5562,7 +5596,8 @@ declare enum NodeType {
|
|
|
5562
5596
|
TABLE_CELL = "TABLE_CELL",
|
|
5563
5597
|
TABLE_ROW = "TABLE_ROW",
|
|
5564
5598
|
EXTERNAL = "EXTERNAL",
|
|
5565
|
-
AUDIO = "AUDIO"
|
|
5599
|
+
AUDIO = "AUDIO",
|
|
5600
|
+
CAPTION = "CAPTION"
|
|
5566
5601
|
}
|
|
5567
5602
|
interface NodeStyle {
|
|
5568
5603
|
/** The top padding value in pixels. */
|
|
@@ -6052,7 +6087,10 @@ interface ImageData {
|
|
|
6052
6087
|
disableExpand?: boolean | null;
|
|
6053
6088
|
/** Image's alternative text. */
|
|
6054
6089
|
altText?: string | null;
|
|
6055
|
-
/**
|
|
6090
|
+
/**
|
|
6091
|
+
* Deprecated: use Caption node instead.
|
|
6092
|
+
* @deprecated
|
|
6093
|
+
*/
|
|
6056
6094
|
caption?: string | null;
|
|
6057
6095
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
6058
6096
|
disableDownload?: boolean | null;
|
|
@@ -6597,6 +6635,9 @@ interface BlockquoteData {
|
|
|
6597
6635
|
/** Indentation level from 1-4. */
|
|
6598
6636
|
indentation?: number;
|
|
6599
6637
|
}
|
|
6638
|
+
interface CaptionData {
|
|
6639
|
+
textStyle?: TextStyle;
|
|
6640
|
+
}
|
|
6600
6641
|
interface Metadata {
|
|
6601
6642
|
/** Schema version. */
|
|
6602
6643
|
version?: number;
|
|
@@ -8339,6 +8380,7 @@ type index_d$1_BulkUpdateContentResponseBulkContentResult = BulkUpdateContentRes
|
|
|
8339
8380
|
type index_d$1_BulkUpdateContentResponseNonNullableFields = BulkUpdateContentResponseNonNullableFields;
|
|
8340
8381
|
type index_d$1_BulletedListData = BulletedListData;
|
|
8341
8382
|
type index_d$1_ButtonData = ButtonData;
|
|
8383
|
+
type index_d$1_CaptionData = CaptionData;
|
|
8342
8384
|
type index_d$1_CellStyle = CellStyle;
|
|
8343
8385
|
type index_d$1_CodeBlockData = CodeBlockData;
|
|
8344
8386
|
type index_d$1_CollapsibleListData = CollapsibleListData;
|
|
@@ -8582,7 +8624,7 @@ declare const index_d$1_searchContents: typeof searchContents;
|
|
|
8582
8624
|
declare const index_d$1_updateContent: typeof updateContent;
|
|
8583
8625
|
declare const index_d$1_updateContentByKey: typeof updateContentByKey;
|
|
8584
8626
|
declare namespace index_d$1 {
|
|
8585
|
-
export { type ActionEvent$1 as ActionEvent, type index_d$1_Aggregation as Aggregation, type index_d$1_AggregationData as AggregationData, type index_d$1_AggregationKindOneOf as AggregationKindOneOf, type index_d$1_AggregationResults as AggregationResults, type index_d$1_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d$1_AggregationResultsScalarResult as AggregationResultsScalarResult, index_d$1_AggregationType as AggregationType, index_d$1_Alignment as Alignment, type index_d$1_AnchorData as AnchorData, type index_d$1_AppEmbedData as AppEmbedData, type index_d$1_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$1_AppType as AppType, type index_d$1_ApplicationError as ApplicationError, type Asset$1 as Asset, type index_d$1_AudioData as AudioData, type index_d$1_Background as Background, type index_d$1_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$1_BackgroundType as BackgroundType, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$1_BlockquoteData as BlockquoteData, type index_d$1_BookingData as BookingData, type index_d$1_Border as Border, type index_d$1_BorderColors as BorderColors, type index_d$1_BulkActionMetadata as BulkActionMetadata, type index_d$1_BulkContentResult as BulkContentResult, type index_d$1_BulkCreateContentOptions as BulkCreateContentOptions, type index_d$1_BulkCreateContentRequest as BulkCreateContentRequest, type index_d$1_BulkCreateContentResponse as BulkCreateContentResponse, type index_d$1_BulkCreateContentResponseNonNullableFields as BulkCreateContentResponseNonNullableFields, type index_d$1_BulkDeleteContentRequest as BulkDeleteContentRequest, type index_d$1_BulkDeleteContentResponse as BulkDeleteContentResponse, type index_d$1_BulkDeleteContentResponseBulkContentResult as BulkDeleteContentResponseBulkContentResult, type index_d$1_BulkDeleteContentResponseNonNullableFields as BulkDeleteContentResponseNonNullableFields, type index_d$1_BulkUpdateContentByKeyOptions as BulkUpdateContentByKeyOptions, type index_d$1_BulkUpdateContentByKeyRequest as BulkUpdateContentByKeyRequest, type index_d$1_BulkUpdateContentByKeyResponse as BulkUpdateContentByKeyResponse, type index_d$1_BulkUpdateContentByKeyResponseBulkContentResult as BulkUpdateContentByKeyResponseBulkContentResult, type index_d$1_BulkUpdateContentByKeyResponseNonNullableFields as BulkUpdateContentByKeyResponseNonNullableFields, type index_d$1_BulkUpdateContentOptions as BulkUpdateContentOptions, type index_d$1_BulkUpdateContentRequest as BulkUpdateContentRequest, type index_d$1_BulkUpdateContentRequestMaskedContent as BulkUpdateContentRequestMaskedContent, type index_d$1_BulkUpdateContentResponse as BulkUpdateContentResponse, type index_d$1_BulkUpdateContentResponseBulkContentResult as BulkUpdateContentResponseBulkContentResult, type index_d$1_BulkUpdateContentResponseNonNullableFields as BulkUpdateContentResponseNonNullableFields, type index_d$1_BulletedListData as BulletedListData, type index_d$1_ButtonData as ButtonData, type index_d$1_CellStyle as CellStyle, type index_d$1_CodeBlockData as CodeBlockData, type index_d$1_CollapsibleListData as CollapsibleListData, type index_d$1_ColorData as ColorData, type index_d$1_Colors as Colors, type index_d$1_Content as Content, type index_d$1_ContentCreatedEnvelope as ContentCreatedEnvelope, type index_d$1_ContentDeletedEnvelope as ContentDeletedEnvelope, type index_d$1_ContentField as ContentField, type index_d$1_ContentFieldValueOneOf as ContentFieldValueOneOf, type index_d$1_ContentNonNullableFields as ContentNonNullableFields, type index_d$1_ContentUpdatedEnvelope as ContentUpdatedEnvelope, type index_d$1_ContentsQueryBuilder as ContentsQueryBuilder, type index_d$1_ContentsQueryResult as ContentsQueryResult, type index_d$1_CreateContentRequest as CreateContentRequest, type index_d$1_CreateContentResponse as CreateContentResponse, type index_d$1_CreateContentResponseNonNullableFields as CreateContentResponseNonNullableFields, index_d$1_Crop as Crop, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type index_d$1_CursorSearch as CursorSearch, type index_d$1_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$1 as Cursors, type index_d$1_DateHistogramAggregation as DateHistogramAggregation, type index_d$1_DateHistogramResult as DateHistogramResult, type index_d$1_DateHistogramResults as DateHistogramResults, type index_d$1_Decoration as Decoration, type index_d$1_DecorationDataOneOf as DecorationDataOneOf, index_d$1_DecorationType as DecorationType, type index_d$1_DeleteContentRequest as DeleteContentRequest, type index_d$1_DeleteContentResponse as DeleteContentResponse, type DeleteContext$1 as DeleteContext, DeleteStatus$1 as DeleteStatus, type index_d$1_Design as Design, type index_d$1_Dimensions as Dimensions, index_d$1_Direction as Direction, type index_d$1_DividerData as DividerData, type index_d$1_DocumentStyle as DocumentStyle, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type index_d$1_EmbedData as EmbedData, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type index_d$1_EventData as EventData, type EventMetadata$1 as EventMetadata, type index_d$1_FileData as FileData, type index_d$1_FileSource as FileSource, type index_d$1_FileSourceDataOneOf as FileSourceDataOneOf, type index_d$1_FontSizeData as FontSizeData, index_d$1_FontType as FontType, type index_d$1_GIF as GIF, type index_d$1_GIFData as GIFData, type index_d$1_GalleryData as GalleryData, type index_d$1_GalleryOptions as GalleryOptions, type index_d$1_GetContentRequest as GetContentRequest, type index_d$1_GetContentResponse as GetContentResponse, type index_d$1_GetContentResponseNonNullableFields as GetContentResponseNonNullableFields, type index_d$1_Gradient as Gradient, type index_d$1_GroupByAggregation as GroupByAggregation, type index_d$1_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type index_d$1_GroupByValueResults as GroupByValueResults, type index_d$1_HTMLData as HTMLData, type index_d$1_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$1_HeadingData as HeadingData, type index_d$1_Height as Height, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type index_d$1_Image as Image, type index_d$1_ImageData as ImageData, type index_d$1_IncludeMissingValuesOptions as IncludeMissingValuesOptions, index_d$1_InitialExpandedItems as InitialExpandedItems, index_d$1_Interval as Interval, type index_d$1_Item as Item, type index_d$1_ItemDataOneOf as ItemDataOneOf, type index_d$1_ItemMetadata as ItemMetadata, type index_d$1_ItemStyle as ItemStyle, type index_d$1_Layout as Layout, index_d$1_LayoutType as LayoutType, index_d$1_LineStyle as LineStyle, type index_d$1_Link as Link, type index_d$1_LinkData as LinkData, type index_d$1_LinkDataOneOf as LinkDataOneOf, type index_d$1_LinkPreviewData as LinkPreviewData, type index_d$1_ListValue as ListValue, type index_d$1_MapData as MapData, type index_d$1_MapSettings as MapSettings, index_d$1_MapType as MapType, type index_d$1_MaskedContent as MaskedContent, type index_d$1_Media as Media, type index_d$1_MentionData as MentionData, type MessageEnvelope$1 as MessageEnvelope, type MetaSiteSpecialEvent$1 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$1 as MetaSiteSpecialEventPayloadOneOf, type index_d$1_Metadata as Metadata, index_d$1_MissingValues as MissingValues, index_d$1_Mode as Mode, Namespace$1 as Namespace, type NamespaceChanged$1 as NamespaceChanged, type index_d$1_NestedAggregation as NestedAggregation, type index_d$1_NestedAggregationItem as NestedAggregationItem, type index_d$1_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d$1_NestedAggregationResults as NestedAggregationResults, type index_d$1_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d$1_NestedAggregationType as NestedAggregationType, type index_d$1_NestedResultValue as NestedResultValue, type index_d$1_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d$1_NestedResults as NestedResults, type index_d$1_NestedValueAggregationResult as NestedValueAggregationResult, type index_d$1_Node as Node, type index_d$1_NodeDataOneOf as NodeDataOneOf, type index_d$1_NodeStyle as NodeStyle, index_d$1_NodeType as NodeType, index_d$1_NullValue as NullValue, type index_d$1_Oembed as Oembed, type index_d$1_Option as Option, type index_d$1_OptionDesign as OptionDesign, type index_d$1_OptionLayout as OptionLayout, type index_d$1_OrderedListData as OrderedListData, index_d$1_Orientation as Orientation, type index_d$1_PDFSettings as PDFSettings, type index_d$1_Paging as Paging, type index_d$1_PagingMetadataV2 as PagingMetadataV2, type index_d$1_ParagraphData as ParagraphData, type index_d$1_Permissions as Permissions, type index_d$1_PermissiveBulkUpdateContentRequest as PermissiveBulkUpdateContentRequest, type index_d$1_PermissiveBulkUpdateContentRequestMaskedContent as PermissiveBulkUpdateContentRequestMaskedContent, type index_d$1_PermissiveBulkUpdateContentResponse as PermissiveBulkUpdateContentResponse, type index_d$1_PermissiveBulkUpdateContentResponseBulkContentResult as PermissiveBulkUpdateContentResponseBulkContentResult, type index_d$1_PlaybackOptions as PlaybackOptions, type index_d$1_PluginContainerData as PluginContainerData, index_d$1_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$1_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$1_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$1_Poll as Poll, type index_d$1_PollData as PollData, type index_d$1_PollDataLayout as PollDataLayout, type index_d$1_PollDesign as PollDesign, type index_d$1_PollLayout as PollLayout, index_d$1_PollLayoutDirection as PollLayoutDirection, index_d$1_PollLayoutType as PollLayoutType, index_d$1_PublishStatus as PublishStatus, type index_d$1_QueryContentsLegacyRequest as QueryContentsLegacyRequest, type index_d$1_QueryContentsLegacyResponse as QueryContentsLegacyResponse, type index_d$1_QueryContentsOptions as QueryContentsOptions, type index_d$1_QueryContentsRequest as QueryContentsRequest, type index_d$1_QueryContentsResponse as QueryContentsResponse, type index_d$1_QueryContentsResponseNonNullableFields as QueryContentsResponseNonNullableFields, type index_d$1_QueryV2 as QueryV2, type index_d$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d$1_RangeAggregation as RangeAggregation, type index_d$1_RangeAggregationResult as RangeAggregationResult, type index_d$1_RangeBucket as RangeBucket, type index_d$1_RangeResult as RangeResult, type index_d$1_RangeResults as RangeResults, type index_d$1_Rel as Rel, type index_d$1_RemoveContentsByFilterRequest as RemoveContentsByFilterRequest, type index_d$1_RemoveContentsByFilterResponse as RemoveContentsByFilterResponse, type index_d$1_RepublishContentByFilterRequest as RepublishContentByFilterRequest, type index_d$1_RepublishContentByFilterResponse as RepublishContentByFilterResponse, type RestoreInfo$1 as RestoreInfo, type index_d$1_Results as Results, type index_d$1_RichContent as RichContent, type index_d$1_ScalarAggregation as ScalarAggregation, type index_d$1_ScalarResult as ScalarResult, index_d$1_ScalarType as ScalarType, type index_d$1_SearchContentsOptions as SearchContentsOptions, type index_d$1_SearchContentsRequest as SearchContentsRequest, type index_d$1_SearchContentsResponse as SearchContentsResponse, type index_d$1_SearchContentsResponseNonNullableFields as SearchContentsResponseNonNullableFields, type index_d$1_SearchDetails as SearchDetails, type ServiceProvisioned$1 as ServiceProvisioned, type ServiceRemoved$1 as ServiceRemoved, type index_d$1_Settings as Settings, type SiteCreated$1 as SiteCreated, SiteCreatedContext$1 as SiteCreatedContext, type SiteDeleted$1 as SiteDeleted, type SiteHardDeleted$1 as SiteHardDeleted, type SiteMarkedAsTemplate$1 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$1 as SiteMarkedAsWixSite, type SitePublished$1 as SitePublished, type SiteRenamed$1 as SiteRenamed, type SiteTransferred$1 as SiteTransferred, type SiteUndeleted$1 as SiteUndeleted, type SiteUnpublished$1 as SiteUnpublished, index_d$1_SortDirection as SortDirection, SortOrder$1 as SortOrder, index_d$1_SortType as SortType, type Sorting$1 as Sorting, index_d$1_Source as Source, type index_d$1_Spoiler as Spoiler, type index_d$1_SpoilerData as SpoilerData, State$1 as State, type StudioAssigned$1 as StudioAssigned, type StudioUnassigned$1 as StudioUnassigned, type index_d$1_Styles as Styles, type index_d$1_TableCellData as TableCellData, type index_d$1_TableData as TableData, index_d$1_Target as Target, index_d$1_TextAlignment as TextAlignment, type index_d$1_TextData as TextData, type index_d$1_TextNodeStyle as TextNodeStyle, type index_d$1_TextStyle as TextStyle, type index_d$1_Thumbnails as Thumbnails, index_d$1_ThumbnailsAlignment as ThumbnailsAlignment, index_d$1_Type as Type, type index_d$1_UpdateContent as UpdateContent, type index_d$1_UpdateContentByKeyRequest as UpdateContentByKeyRequest, type index_d$1_UpdateContentByKeyResponse as UpdateContentByKeyResponse, type index_d$1_UpdateContentByKeyResponseNonNullableFields as UpdateContentByKeyResponseNonNullableFields, type index_d$1_UpdateContentRequest as UpdateContentRequest, type index_d$1_UpdateContentResponse as UpdateContentResponse, type index_d$1_UpdateContentResponseNonNullableFields as UpdateContentResponseNonNullableFields, index_d$1_UpdaterIdentity as UpdaterIdentity, type index_d$1_ValueAggregation as ValueAggregation, type index_d$1_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d$1_ValueAggregationResult as ValueAggregationResult, type index_d$1_ValueResult as ValueResult, type index_d$1_ValueResults as ValueResults, index_d$1_VerticalAlignment as VerticalAlignment, type index_d$1_Video as Video, type index_d$1_VideoData as VideoData, type index_d$1_VideoResolution as VideoResolution, index_d$1_ViewMode as ViewMode, index_d$1_ViewRole as ViewRole, index_d$1_VoteRole as VoteRole, WebhookIdentityType$1 as WebhookIdentityType, index_d$1_Width as Width, index_d$1_WidthType as WidthType, type index_d$1__publicOnContentCreatedType as _publicOnContentCreatedType, type index_d$1__publicOnContentDeletedType as _publicOnContentDeletedType, type index_d$1__publicOnContentUpdatedType as _publicOnContentUpdatedType, index_d$1_bulkCreateContent as bulkCreateContent, index_d$1_bulkDeleteContent as bulkDeleteContent, index_d$1_bulkUpdateContent as bulkUpdateContent, index_d$1_bulkUpdateContentByKey as bulkUpdateContentByKey, index_d$1_createContent as createContent, index_d$1_deleteContent as deleteContent, index_d$1_getContent as getContent, index_d$1_onContentCreated as onContentCreated, index_d$1_onContentDeleted as onContentDeleted, index_d$1_onContentUpdated as onContentUpdated, onContentCreated$1 as publicOnContentCreated, onContentDeleted$1 as publicOnContentDeleted, onContentUpdated$1 as publicOnContentUpdated, index_d$1_queryContents as queryContents, index_d$1_searchContents as searchContents, index_d$1_updateContent as updateContent, index_d$1_updateContentByKey as updateContentByKey };
|
|
8627
|
+
export { type ActionEvent$1 as ActionEvent, type index_d$1_Aggregation as Aggregation, type index_d$1_AggregationData as AggregationData, type index_d$1_AggregationKindOneOf as AggregationKindOneOf, type index_d$1_AggregationResults as AggregationResults, type index_d$1_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d$1_AggregationResultsScalarResult as AggregationResultsScalarResult, index_d$1_AggregationType as AggregationType, index_d$1_Alignment as Alignment, type index_d$1_AnchorData as AnchorData, type index_d$1_AppEmbedData as AppEmbedData, type index_d$1_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$1_AppType as AppType, type index_d$1_ApplicationError as ApplicationError, type Asset$1 as Asset, type index_d$1_AudioData as AudioData, type index_d$1_Background as Background, type index_d$1_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$1_BackgroundType as BackgroundType, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$1_BlockquoteData as BlockquoteData, type index_d$1_BookingData as BookingData, type index_d$1_Border as Border, type index_d$1_BorderColors as BorderColors, type index_d$1_BulkActionMetadata as BulkActionMetadata, type index_d$1_BulkContentResult as BulkContentResult, type index_d$1_BulkCreateContentOptions as BulkCreateContentOptions, type index_d$1_BulkCreateContentRequest as BulkCreateContentRequest, type index_d$1_BulkCreateContentResponse as BulkCreateContentResponse, type index_d$1_BulkCreateContentResponseNonNullableFields as BulkCreateContentResponseNonNullableFields, type index_d$1_BulkDeleteContentRequest as BulkDeleteContentRequest, type index_d$1_BulkDeleteContentResponse as BulkDeleteContentResponse, type index_d$1_BulkDeleteContentResponseBulkContentResult as BulkDeleteContentResponseBulkContentResult, type index_d$1_BulkDeleteContentResponseNonNullableFields as BulkDeleteContentResponseNonNullableFields, type index_d$1_BulkUpdateContentByKeyOptions as BulkUpdateContentByKeyOptions, type index_d$1_BulkUpdateContentByKeyRequest as BulkUpdateContentByKeyRequest, type index_d$1_BulkUpdateContentByKeyResponse as BulkUpdateContentByKeyResponse, type index_d$1_BulkUpdateContentByKeyResponseBulkContentResult as BulkUpdateContentByKeyResponseBulkContentResult, type index_d$1_BulkUpdateContentByKeyResponseNonNullableFields as BulkUpdateContentByKeyResponseNonNullableFields, type index_d$1_BulkUpdateContentOptions as BulkUpdateContentOptions, type index_d$1_BulkUpdateContentRequest as BulkUpdateContentRequest, type index_d$1_BulkUpdateContentRequestMaskedContent as BulkUpdateContentRequestMaskedContent, type index_d$1_BulkUpdateContentResponse as BulkUpdateContentResponse, type index_d$1_BulkUpdateContentResponseBulkContentResult as BulkUpdateContentResponseBulkContentResult, type index_d$1_BulkUpdateContentResponseNonNullableFields as BulkUpdateContentResponseNonNullableFields, type index_d$1_BulletedListData as BulletedListData, type index_d$1_ButtonData as ButtonData, type index_d$1_CaptionData as CaptionData, type index_d$1_CellStyle as CellStyle, type index_d$1_CodeBlockData as CodeBlockData, type index_d$1_CollapsibleListData as CollapsibleListData, type index_d$1_ColorData as ColorData, type index_d$1_Colors as Colors, type index_d$1_Content as Content, type index_d$1_ContentCreatedEnvelope as ContentCreatedEnvelope, type index_d$1_ContentDeletedEnvelope as ContentDeletedEnvelope, type index_d$1_ContentField as ContentField, type index_d$1_ContentFieldValueOneOf as ContentFieldValueOneOf, type index_d$1_ContentNonNullableFields as ContentNonNullableFields, type index_d$1_ContentUpdatedEnvelope as ContentUpdatedEnvelope, type index_d$1_ContentsQueryBuilder as ContentsQueryBuilder, type index_d$1_ContentsQueryResult as ContentsQueryResult, type index_d$1_CreateContentRequest as CreateContentRequest, type index_d$1_CreateContentResponse as CreateContentResponse, type index_d$1_CreateContentResponseNonNullableFields as CreateContentResponseNonNullableFields, index_d$1_Crop as Crop, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type index_d$1_CursorSearch as CursorSearch, type index_d$1_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$1 as Cursors, type index_d$1_DateHistogramAggregation as DateHistogramAggregation, type index_d$1_DateHistogramResult as DateHistogramResult, type index_d$1_DateHistogramResults as DateHistogramResults, type index_d$1_Decoration as Decoration, type index_d$1_DecorationDataOneOf as DecorationDataOneOf, index_d$1_DecorationType as DecorationType, type index_d$1_DeleteContentRequest as DeleteContentRequest, type index_d$1_DeleteContentResponse as DeleteContentResponse, type DeleteContext$1 as DeleteContext, DeleteStatus$1 as DeleteStatus, type index_d$1_Design as Design, type index_d$1_Dimensions as Dimensions, index_d$1_Direction as Direction, type index_d$1_DividerData as DividerData, type index_d$1_DocumentStyle as DocumentStyle, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type index_d$1_EmbedData as EmbedData, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type index_d$1_EventData as EventData, type EventMetadata$1 as EventMetadata, type index_d$1_FileData as FileData, type index_d$1_FileSource as FileSource, type index_d$1_FileSourceDataOneOf as FileSourceDataOneOf, type index_d$1_FontSizeData as FontSizeData, index_d$1_FontType as FontType, type index_d$1_GIF as GIF, type index_d$1_GIFData as GIFData, type index_d$1_GalleryData as GalleryData, type index_d$1_GalleryOptions as GalleryOptions, type index_d$1_GetContentRequest as GetContentRequest, type index_d$1_GetContentResponse as GetContentResponse, type index_d$1_GetContentResponseNonNullableFields as GetContentResponseNonNullableFields, type index_d$1_Gradient as Gradient, type index_d$1_GroupByAggregation as GroupByAggregation, type index_d$1_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type index_d$1_GroupByValueResults as GroupByValueResults, type index_d$1_HTMLData as HTMLData, type index_d$1_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$1_HeadingData as HeadingData, type index_d$1_Height as Height, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type index_d$1_Image as Image, type index_d$1_ImageData as ImageData, type index_d$1_IncludeMissingValuesOptions as IncludeMissingValuesOptions, index_d$1_InitialExpandedItems as InitialExpandedItems, index_d$1_Interval as Interval, type index_d$1_Item as Item, type index_d$1_ItemDataOneOf as ItemDataOneOf, type index_d$1_ItemMetadata as ItemMetadata, type index_d$1_ItemStyle as ItemStyle, type index_d$1_Layout as Layout, index_d$1_LayoutType as LayoutType, index_d$1_LineStyle as LineStyle, type index_d$1_Link as Link, type index_d$1_LinkData as LinkData, type index_d$1_LinkDataOneOf as LinkDataOneOf, type index_d$1_LinkPreviewData as LinkPreviewData, type index_d$1_ListValue as ListValue, type index_d$1_MapData as MapData, type index_d$1_MapSettings as MapSettings, index_d$1_MapType as MapType, type index_d$1_MaskedContent as MaskedContent, type index_d$1_Media as Media, type index_d$1_MentionData as MentionData, type MessageEnvelope$1 as MessageEnvelope, type MetaSiteSpecialEvent$1 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$1 as MetaSiteSpecialEventPayloadOneOf, type index_d$1_Metadata as Metadata, index_d$1_MissingValues as MissingValues, index_d$1_Mode as Mode, Namespace$1 as Namespace, type NamespaceChanged$1 as NamespaceChanged, type index_d$1_NestedAggregation as NestedAggregation, type index_d$1_NestedAggregationItem as NestedAggregationItem, type index_d$1_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d$1_NestedAggregationResults as NestedAggregationResults, type index_d$1_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d$1_NestedAggregationType as NestedAggregationType, type index_d$1_NestedResultValue as NestedResultValue, type index_d$1_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d$1_NestedResults as NestedResults, type index_d$1_NestedValueAggregationResult as NestedValueAggregationResult, type index_d$1_Node as Node, type index_d$1_NodeDataOneOf as NodeDataOneOf, type index_d$1_NodeStyle as NodeStyle, index_d$1_NodeType as NodeType, index_d$1_NullValue as NullValue, type index_d$1_Oembed as Oembed, type index_d$1_Option as Option, type index_d$1_OptionDesign as OptionDesign, type index_d$1_OptionLayout as OptionLayout, type index_d$1_OrderedListData as OrderedListData, index_d$1_Orientation as Orientation, type index_d$1_PDFSettings as PDFSettings, type index_d$1_Paging as Paging, type index_d$1_PagingMetadataV2 as PagingMetadataV2, type index_d$1_ParagraphData as ParagraphData, type index_d$1_Permissions as Permissions, type index_d$1_PermissiveBulkUpdateContentRequest as PermissiveBulkUpdateContentRequest, type index_d$1_PermissiveBulkUpdateContentRequestMaskedContent as PermissiveBulkUpdateContentRequestMaskedContent, type index_d$1_PermissiveBulkUpdateContentResponse as PermissiveBulkUpdateContentResponse, type index_d$1_PermissiveBulkUpdateContentResponseBulkContentResult as PermissiveBulkUpdateContentResponseBulkContentResult, type index_d$1_PlaybackOptions as PlaybackOptions, type index_d$1_PluginContainerData as PluginContainerData, index_d$1_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$1_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$1_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$1_Poll as Poll, type index_d$1_PollData as PollData, type index_d$1_PollDataLayout as PollDataLayout, type index_d$1_PollDesign as PollDesign, type index_d$1_PollLayout as PollLayout, index_d$1_PollLayoutDirection as PollLayoutDirection, index_d$1_PollLayoutType as PollLayoutType, index_d$1_PublishStatus as PublishStatus, type index_d$1_QueryContentsLegacyRequest as QueryContentsLegacyRequest, type index_d$1_QueryContentsLegacyResponse as QueryContentsLegacyResponse, type index_d$1_QueryContentsOptions as QueryContentsOptions, type index_d$1_QueryContentsRequest as QueryContentsRequest, type index_d$1_QueryContentsResponse as QueryContentsResponse, type index_d$1_QueryContentsResponseNonNullableFields as QueryContentsResponseNonNullableFields, type index_d$1_QueryV2 as QueryV2, type index_d$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d$1_RangeAggregation as RangeAggregation, type index_d$1_RangeAggregationResult as RangeAggregationResult, type index_d$1_RangeBucket as RangeBucket, type index_d$1_RangeResult as RangeResult, type index_d$1_RangeResults as RangeResults, type index_d$1_Rel as Rel, type index_d$1_RemoveContentsByFilterRequest as RemoveContentsByFilterRequest, type index_d$1_RemoveContentsByFilterResponse as RemoveContentsByFilterResponse, type index_d$1_RepublishContentByFilterRequest as RepublishContentByFilterRequest, type index_d$1_RepublishContentByFilterResponse as RepublishContentByFilterResponse, type RestoreInfo$1 as RestoreInfo, type index_d$1_Results as Results, type index_d$1_RichContent as RichContent, type index_d$1_ScalarAggregation as ScalarAggregation, type index_d$1_ScalarResult as ScalarResult, index_d$1_ScalarType as ScalarType, type index_d$1_SearchContentsOptions as SearchContentsOptions, type index_d$1_SearchContentsRequest as SearchContentsRequest, type index_d$1_SearchContentsResponse as SearchContentsResponse, type index_d$1_SearchContentsResponseNonNullableFields as SearchContentsResponseNonNullableFields, type index_d$1_SearchDetails as SearchDetails, type ServiceProvisioned$1 as ServiceProvisioned, type ServiceRemoved$1 as ServiceRemoved, type index_d$1_Settings as Settings, type SiteCreated$1 as SiteCreated, SiteCreatedContext$1 as SiteCreatedContext, type SiteDeleted$1 as SiteDeleted, type SiteHardDeleted$1 as SiteHardDeleted, type SiteMarkedAsTemplate$1 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$1 as SiteMarkedAsWixSite, type SitePublished$1 as SitePublished, type SiteRenamed$1 as SiteRenamed, type SiteTransferred$1 as SiteTransferred, type SiteUndeleted$1 as SiteUndeleted, type SiteUnpublished$1 as SiteUnpublished, index_d$1_SortDirection as SortDirection, SortOrder$1 as SortOrder, index_d$1_SortType as SortType, type Sorting$1 as Sorting, index_d$1_Source as Source, type index_d$1_Spoiler as Spoiler, type index_d$1_SpoilerData as SpoilerData, State$1 as State, type StudioAssigned$1 as StudioAssigned, type StudioUnassigned$1 as StudioUnassigned, type index_d$1_Styles as Styles, type index_d$1_TableCellData as TableCellData, type index_d$1_TableData as TableData, index_d$1_Target as Target, index_d$1_TextAlignment as TextAlignment, type index_d$1_TextData as TextData, type index_d$1_TextNodeStyle as TextNodeStyle, type index_d$1_TextStyle as TextStyle, type index_d$1_Thumbnails as Thumbnails, index_d$1_ThumbnailsAlignment as ThumbnailsAlignment, index_d$1_Type as Type, type index_d$1_UpdateContent as UpdateContent, type index_d$1_UpdateContentByKeyRequest as UpdateContentByKeyRequest, type index_d$1_UpdateContentByKeyResponse as UpdateContentByKeyResponse, type index_d$1_UpdateContentByKeyResponseNonNullableFields as UpdateContentByKeyResponseNonNullableFields, type index_d$1_UpdateContentRequest as UpdateContentRequest, type index_d$1_UpdateContentResponse as UpdateContentResponse, type index_d$1_UpdateContentResponseNonNullableFields as UpdateContentResponseNonNullableFields, index_d$1_UpdaterIdentity as UpdaterIdentity, type index_d$1_ValueAggregation as ValueAggregation, type index_d$1_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d$1_ValueAggregationResult as ValueAggregationResult, type index_d$1_ValueResult as ValueResult, type index_d$1_ValueResults as ValueResults, index_d$1_VerticalAlignment as VerticalAlignment, type index_d$1_Video as Video, type index_d$1_VideoData as VideoData, type index_d$1_VideoResolution as VideoResolution, index_d$1_ViewMode as ViewMode, index_d$1_ViewRole as ViewRole, index_d$1_VoteRole as VoteRole, WebhookIdentityType$1 as WebhookIdentityType, index_d$1_Width as Width, index_d$1_WidthType as WidthType, type index_d$1__publicOnContentCreatedType as _publicOnContentCreatedType, type index_d$1__publicOnContentDeletedType as _publicOnContentDeletedType, type index_d$1__publicOnContentUpdatedType as _publicOnContentUpdatedType, index_d$1_bulkCreateContent as bulkCreateContent, index_d$1_bulkDeleteContent as bulkDeleteContent, index_d$1_bulkUpdateContent as bulkUpdateContent, index_d$1_bulkUpdateContentByKey as bulkUpdateContentByKey, index_d$1_createContent as createContent, index_d$1_deleteContent as deleteContent, index_d$1_getContent as getContent, index_d$1_onContentCreated as onContentCreated, index_d$1_onContentDeleted as onContentDeleted, index_d$1_onContentUpdated as onContentUpdated, onContentCreated$1 as publicOnContentCreated, onContentDeleted$1 as publicOnContentDeleted, onContentUpdated$1 as publicOnContentUpdated, index_d$1_queryContents as queryContents, index_d$1_searchContents as searchContents, index_d$1_updateContent as updateContent, index_d$1_updateContentByKey as updateContentByKey };
|
|
8586
8628
|
}
|
|
8587
8629
|
|
|
8588
8630
|
interface Schema {
|
|
@@ -176,6 +176,8 @@ interface Node$5 extends NodeDataOneOf$5 {
|
|
|
176
176
|
bulletedListData?: BulletedListData$5;
|
|
177
177
|
/** Data for a block quote node. */
|
|
178
178
|
blockquoteData?: BlockquoteData$5;
|
|
179
|
+
/** Data for a caption node. */
|
|
180
|
+
captionData?: CaptionData$5;
|
|
179
181
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
180
182
|
type?: NodeType$5;
|
|
181
183
|
/** Node ID. */
|
|
@@ -237,6 +239,8 @@ interface NodeDataOneOf$5 {
|
|
|
237
239
|
bulletedListData?: BulletedListData$5;
|
|
238
240
|
/** Data for a block quote node. */
|
|
239
241
|
blockquoteData?: BlockquoteData$5;
|
|
242
|
+
/** Data for a caption node. */
|
|
243
|
+
captionData?: CaptionData$5;
|
|
240
244
|
}
|
|
241
245
|
declare enum NodeType$5 {
|
|
242
246
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -268,7 +272,8 @@ declare enum NodeType$5 {
|
|
|
268
272
|
TABLE_CELL = "TABLE_CELL",
|
|
269
273
|
TABLE_ROW = "TABLE_ROW",
|
|
270
274
|
EXTERNAL = "EXTERNAL",
|
|
271
|
-
AUDIO = "AUDIO"
|
|
275
|
+
AUDIO = "AUDIO",
|
|
276
|
+
CAPTION = "CAPTION"
|
|
272
277
|
}
|
|
273
278
|
interface NodeStyle$5 {
|
|
274
279
|
/** The top padding value in pixels. */
|
|
@@ -758,7 +763,10 @@ interface ImageData$5 {
|
|
|
758
763
|
disableExpand?: boolean | null;
|
|
759
764
|
/** Image's alternative text. */
|
|
760
765
|
altText?: string | null;
|
|
761
|
-
/**
|
|
766
|
+
/**
|
|
767
|
+
* Deprecated: use Caption node instead.
|
|
768
|
+
* @deprecated
|
|
769
|
+
*/
|
|
762
770
|
caption?: string | null;
|
|
763
771
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
764
772
|
disableDownload?: boolean | null;
|
|
@@ -1284,6 +1292,9 @@ interface BlockquoteData$5 {
|
|
|
1284
1292
|
/** Indentation level from 1-4. */
|
|
1285
1293
|
indentation?: number;
|
|
1286
1294
|
}
|
|
1295
|
+
interface CaptionData$5 {
|
|
1296
|
+
textStyle?: TextStyle$5;
|
|
1297
|
+
}
|
|
1287
1298
|
interface Metadata$5 {
|
|
1288
1299
|
/** Schema version. */
|
|
1289
1300
|
version?: number;
|
|
@@ -1671,6 +1682,9 @@ interface BulletedListDataNonNullableFields$3 {
|
|
|
1671
1682
|
interface BlockquoteDataNonNullableFields$3 {
|
|
1672
1683
|
indentation: number;
|
|
1673
1684
|
}
|
|
1685
|
+
interface CaptionDataNonNullableFields$3 {
|
|
1686
|
+
textStyle?: TextStyleNonNullableFields$3;
|
|
1687
|
+
}
|
|
1674
1688
|
interface NodeNonNullableFields$3 {
|
|
1675
1689
|
buttonData?: ButtonDataNonNullableFields$3;
|
|
1676
1690
|
codeBlockData?: CodeBlockDataNonNullableFields$3;
|
|
@@ -1696,6 +1710,7 @@ interface NodeNonNullableFields$3 {
|
|
|
1696
1710
|
orderedListData?: OrderedListDataNonNullableFields$3;
|
|
1697
1711
|
bulletedListData?: BulletedListDataNonNullableFields$3;
|
|
1698
1712
|
blockquoteData?: BlockquoteDataNonNullableFields$3;
|
|
1713
|
+
captionData?: CaptionDataNonNullableFields$3;
|
|
1699
1714
|
type: NodeType$5;
|
|
1700
1715
|
id: string;
|
|
1701
1716
|
nodes: NodeNonNullableFields$3[];
|
|
@@ -1903,6 +1918,8 @@ interface Node$4 extends NodeDataOneOf$4 {
|
|
|
1903
1918
|
bulletedListData?: BulletedListData$4;
|
|
1904
1919
|
/** Data for a block quote node. */
|
|
1905
1920
|
blockquoteData?: BlockquoteData$4;
|
|
1921
|
+
/** Data for a caption node. */
|
|
1922
|
+
captionData?: CaptionData$4;
|
|
1906
1923
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
1907
1924
|
type?: NodeType$4;
|
|
1908
1925
|
/** Node ID. */
|
|
@@ -1964,6 +1981,8 @@ interface NodeDataOneOf$4 {
|
|
|
1964
1981
|
bulletedListData?: BulletedListData$4;
|
|
1965
1982
|
/** Data for a block quote node. */
|
|
1966
1983
|
blockquoteData?: BlockquoteData$4;
|
|
1984
|
+
/** Data for a caption node. */
|
|
1985
|
+
captionData?: CaptionData$4;
|
|
1967
1986
|
}
|
|
1968
1987
|
declare enum NodeType$4 {
|
|
1969
1988
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -1995,7 +2014,8 @@ declare enum NodeType$4 {
|
|
|
1995
2014
|
TABLE_CELL = "TABLE_CELL",
|
|
1996
2015
|
TABLE_ROW = "TABLE_ROW",
|
|
1997
2016
|
EXTERNAL = "EXTERNAL",
|
|
1998
|
-
AUDIO = "AUDIO"
|
|
2017
|
+
AUDIO = "AUDIO",
|
|
2018
|
+
CAPTION = "CAPTION"
|
|
1999
2019
|
}
|
|
2000
2020
|
interface NodeStyle$4 {
|
|
2001
2021
|
/** The top padding value in pixels. */
|
|
@@ -2485,7 +2505,10 @@ interface ImageData$4 {
|
|
|
2485
2505
|
disableExpand?: boolean | null;
|
|
2486
2506
|
/** Image's alternative text. */
|
|
2487
2507
|
altText?: string | null;
|
|
2488
|
-
/**
|
|
2508
|
+
/**
|
|
2509
|
+
* Deprecated: use Caption node instead.
|
|
2510
|
+
* @deprecated
|
|
2511
|
+
*/
|
|
2489
2512
|
caption?: string | null;
|
|
2490
2513
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
2491
2514
|
disableDownload?: boolean | null;
|
|
@@ -3011,6 +3034,9 @@ interface BlockquoteData$4 {
|
|
|
3011
3034
|
/** Indentation level from 1-4. */
|
|
3012
3035
|
indentation?: number;
|
|
3013
3036
|
}
|
|
3037
|
+
interface CaptionData$4 {
|
|
3038
|
+
textStyle?: TextStyle$4;
|
|
3039
|
+
}
|
|
3014
3040
|
interface Metadata$4 {
|
|
3015
3041
|
/** Schema version. */
|
|
3016
3042
|
version?: number;
|
|
@@ -3343,6 +3369,9 @@ interface BulletedListDataNonNullableFields$2 {
|
|
|
3343
3369
|
interface BlockquoteDataNonNullableFields$2 {
|
|
3344
3370
|
indentation: number;
|
|
3345
3371
|
}
|
|
3372
|
+
interface CaptionDataNonNullableFields$2 {
|
|
3373
|
+
textStyle?: TextStyleNonNullableFields$2;
|
|
3374
|
+
}
|
|
3346
3375
|
interface NodeNonNullableFields$2 {
|
|
3347
3376
|
buttonData?: ButtonDataNonNullableFields$2;
|
|
3348
3377
|
codeBlockData?: CodeBlockDataNonNullableFields$2;
|
|
@@ -3368,6 +3397,7 @@ interface NodeNonNullableFields$2 {
|
|
|
3368
3397
|
orderedListData?: OrderedListDataNonNullableFields$2;
|
|
3369
3398
|
bulletedListData?: BulletedListDataNonNullableFields$2;
|
|
3370
3399
|
blockquoteData?: BlockquoteDataNonNullableFields$2;
|
|
3400
|
+
captionData?: CaptionDataNonNullableFields$2;
|
|
3371
3401
|
type: NodeType$4;
|
|
3372
3402
|
_id: string;
|
|
3373
3403
|
nodes: NodeNonNullableFields$2[];
|
|
@@ -3526,6 +3556,8 @@ interface Node$3 extends NodeDataOneOf$3 {
|
|
|
3526
3556
|
bulletedListData?: BulletedListData$3;
|
|
3527
3557
|
/** Data for a block quote node. */
|
|
3528
3558
|
blockquoteData?: BlockquoteData$3;
|
|
3559
|
+
/** Data for a caption node. */
|
|
3560
|
+
captionData?: CaptionData$3;
|
|
3529
3561
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
3530
3562
|
type?: NodeType$3;
|
|
3531
3563
|
/** Node ID. */
|
|
@@ -3587,6 +3619,8 @@ interface NodeDataOneOf$3 {
|
|
|
3587
3619
|
bulletedListData?: BulletedListData$3;
|
|
3588
3620
|
/** Data for a block quote node. */
|
|
3589
3621
|
blockquoteData?: BlockquoteData$3;
|
|
3622
|
+
/** Data for a caption node. */
|
|
3623
|
+
captionData?: CaptionData$3;
|
|
3590
3624
|
}
|
|
3591
3625
|
declare enum NodeType$3 {
|
|
3592
3626
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -3618,7 +3652,8 @@ declare enum NodeType$3 {
|
|
|
3618
3652
|
TABLE_CELL = "TABLE_CELL",
|
|
3619
3653
|
TABLE_ROW = "TABLE_ROW",
|
|
3620
3654
|
EXTERNAL = "EXTERNAL",
|
|
3621
|
-
AUDIO = "AUDIO"
|
|
3655
|
+
AUDIO = "AUDIO",
|
|
3656
|
+
CAPTION = "CAPTION"
|
|
3622
3657
|
}
|
|
3623
3658
|
interface NodeStyle$3 {
|
|
3624
3659
|
/** The top padding value in pixels. */
|
|
@@ -4108,7 +4143,10 @@ interface ImageData$3 {
|
|
|
4108
4143
|
disableExpand?: boolean | null;
|
|
4109
4144
|
/** Image's alternative text. */
|
|
4110
4145
|
altText?: string | null;
|
|
4111
|
-
/**
|
|
4146
|
+
/**
|
|
4147
|
+
* Deprecated: use Caption node instead.
|
|
4148
|
+
* @deprecated
|
|
4149
|
+
*/
|
|
4112
4150
|
caption?: string | null;
|
|
4113
4151
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
4114
4152
|
disableDownload?: boolean | null;
|
|
@@ -4634,6 +4672,9 @@ interface BlockquoteData$3 {
|
|
|
4634
4672
|
/** Indentation level from 1-4. */
|
|
4635
4673
|
indentation?: number;
|
|
4636
4674
|
}
|
|
4675
|
+
interface CaptionData$3 {
|
|
4676
|
+
textStyle?: TextStyle$3;
|
|
4677
|
+
}
|
|
4637
4678
|
interface Metadata$3 {
|
|
4638
4679
|
/** Schema version. */
|
|
4639
4680
|
version?: number;
|
|
@@ -5203,6 +5244,9 @@ interface BulletedListDataNonNullableFields$1 {
|
|
|
5203
5244
|
interface BlockquoteDataNonNullableFields$1 {
|
|
5204
5245
|
indentation: number;
|
|
5205
5246
|
}
|
|
5247
|
+
interface CaptionDataNonNullableFields$1 {
|
|
5248
|
+
textStyle?: TextStyleNonNullableFields$1;
|
|
5249
|
+
}
|
|
5206
5250
|
interface NodeNonNullableFields$1 {
|
|
5207
5251
|
buttonData?: ButtonDataNonNullableFields$1;
|
|
5208
5252
|
codeBlockData?: CodeBlockDataNonNullableFields$1;
|
|
@@ -5228,6 +5272,7 @@ interface NodeNonNullableFields$1 {
|
|
|
5228
5272
|
orderedListData?: OrderedListDataNonNullableFields$1;
|
|
5229
5273
|
bulletedListData?: BulletedListDataNonNullableFields$1;
|
|
5230
5274
|
blockquoteData?: BlockquoteDataNonNullableFields$1;
|
|
5275
|
+
captionData?: CaptionDataNonNullableFields$1;
|
|
5231
5276
|
type: NodeType$3;
|
|
5232
5277
|
id: string;
|
|
5233
5278
|
nodes: NodeNonNullableFields$1[];
|
|
@@ -5382,6 +5427,8 @@ interface Node$2 extends NodeDataOneOf$2 {
|
|
|
5382
5427
|
bulletedListData?: BulletedListData$2;
|
|
5383
5428
|
/** Data for a block quote node. */
|
|
5384
5429
|
blockquoteData?: BlockquoteData$2;
|
|
5430
|
+
/** Data for a caption node. */
|
|
5431
|
+
captionData?: CaptionData$2;
|
|
5385
5432
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
5386
5433
|
type?: NodeType$2;
|
|
5387
5434
|
/** Node ID. */
|
|
@@ -5443,6 +5490,8 @@ interface NodeDataOneOf$2 {
|
|
|
5443
5490
|
bulletedListData?: BulletedListData$2;
|
|
5444
5491
|
/** Data for a block quote node. */
|
|
5445
5492
|
blockquoteData?: BlockquoteData$2;
|
|
5493
|
+
/** Data for a caption node. */
|
|
5494
|
+
captionData?: CaptionData$2;
|
|
5446
5495
|
}
|
|
5447
5496
|
declare enum NodeType$2 {
|
|
5448
5497
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -5474,7 +5523,8 @@ declare enum NodeType$2 {
|
|
|
5474
5523
|
TABLE_CELL = "TABLE_CELL",
|
|
5475
5524
|
TABLE_ROW = "TABLE_ROW",
|
|
5476
5525
|
EXTERNAL = "EXTERNAL",
|
|
5477
|
-
AUDIO = "AUDIO"
|
|
5526
|
+
AUDIO = "AUDIO",
|
|
5527
|
+
CAPTION = "CAPTION"
|
|
5478
5528
|
}
|
|
5479
5529
|
interface NodeStyle$2 {
|
|
5480
5530
|
/** The top padding value in pixels. */
|
|
@@ -5964,7 +6014,10 @@ interface ImageData$2 {
|
|
|
5964
6014
|
disableExpand?: boolean | null;
|
|
5965
6015
|
/** Image's alternative text. */
|
|
5966
6016
|
altText?: string | null;
|
|
5967
|
-
/**
|
|
6017
|
+
/**
|
|
6018
|
+
* Deprecated: use Caption node instead.
|
|
6019
|
+
* @deprecated
|
|
6020
|
+
*/
|
|
5968
6021
|
caption?: string | null;
|
|
5969
6022
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
5970
6023
|
disableDownload?: boolean | null;
|
|
@@ -6490,6 +6543,9 @@ interface BlockquoteData$2 {
|
|
|
6490
6543
|
/** Indentation level from 1-4. */
|
|
6491
6544
|
indentation?: number;
|
|
6492
6545
|
}
|
|
6546
|
+
interface CaptionData$2 {
|
|
6547
|
+
textStyle?: TextStyle$2;
|
|
6548
|
+
}
|
|
6493
6549
|
interface Metadata$2 {
|
|
6494
6550
|
/** Schema version. */
|
|
6495
6551
|
version?: number;
|
|
@@ -7059,6 +7115,9 @@ interface BulletedListDataNonNullableFields {
|
|
|
7059
7115
|
interface BlockquoteDataNonNullableFields {
|
|
7060
7116
|
indentation: number;
|
|
7061
7117
|
}
|
|
7118
|
+
interface CaptionDataNonNullableFields {
|
|
7119
|
+
textStyle?: TextStyleNonNullableFields;
|
|
7120
|
+
}
|
|
7062
7121
|
interface NodeNonNullableFields {
|
|
7063
7122
|
buttonData?: ButtonDataNonNullableFields;
|
|
7064
7123
|
codeBlockData?: CodeBlockDataNonNullableFields;
|
|
@@ -7084,6 +7143,7 @@ interface NodeNonNullableFields {
|
|
|
7084
7143
|
orderedListData?: OrderedListDataNonNullableFields;
|
|
7085
7144
|
bulletedListData?: BulletedListDataNonNullableFields;
|
|
7086
7145
|
blockquoteData?: BlockquoteDataNonNullableFields;
|
|
7146
|
+
captionData?: CaptionDataNonNullableFields;
|
|
7087
7147
|
type: NodeType$2;
|
|
7088
7148
|
_id: string;
|
|
7089
7149
|
nodes: NodeNonNullableFields[];
|
|
@@ -7969,6 +8029,8 @@ interface Node$1 extends NodeDataOneOf$1 {
|
|
|
7969
8029
|
bulletedListData?: BulletedListData$1;
|
|
7970
8030
|
/** Data for a block quote node. */
|
|
7971
8031
|
blockquoteData?: BlockquoteData$1;
|
|
8032
|
+
/** Data for a caption node. */
|
|
8033
|
+
captionData?: CaptionData$1;
|
|
7972
8034
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
7973
8035
|
type?: NodeType$1;
|
|
7974
8036
|
/** Node ID. */
|
|
@@ -8030,6 +8092,8 @@ interface NodeDataOneOf$1 {
|
|
|
8030
8092
|
bulletedListData?: BulletedListData$1;
|
|
8031
8093
|
/** Data for a block quote node. */
|
|
8032
8094
|
blockquoteData?: BlockquoteData$1;
|
|
8095
|
+
/** Data for a caption node. */
|
|
8096
|
+
captionData?: CaptionData$1;
|
|
8033
8097
|
}
|
|
8034
8098
|
declare enum NodeType$1 {
|
|
8035
8099
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -8061,7 +8125,8 @@ declare enum NodeType$1 {
|
|
|
8061
8125
|
TABLE_CELL = "TABLE_CELL",
|
|
8062
8126
|
TABLE_ROW = "TABLE_ROW",
|
|
8063
8127
|
EXTERNAL = "EXTERNAL",
|
|
8064
|
-
AUDIO = "AUDIO"
|
|
8128
|
+
AUDIO = "AUDIO",
|
|
8129
|
+
CAPTION = "CAPTION"
|
|
8065
8130
|
}
|
|
8066
8131
|
interface NodeStyle$1 {
|
|
8067
8132
|
/** The top padding value in pixels. */
|
|
@@ -8551,7 +8616,10 @@ interface ImageData$1 {
|
|
|
8551
8616
|
disableExpand?: boolean | null;
|
|
8552
8617
|
/** Image's alternative text. */
|
|
8553
8618
|
altText?: string | null;
|
|
8554
|
-
/**
|
|
8619
|
+
/**
|
|
8620
|
+
* Deprecated: use Caption node instead.
|
|
8621
|
+
* @deprecated
|
|
8622
|
+
*/
|
|
8555
8623
|
caption?: string | null;
|
|
8556
8624
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
8557
8625
|
disableDownload?: boolean | null;
|
|
@@ -9077,6 +9145,9 @@ interface BlockquoteData$1 {
|
|
|
9077
9145
|
/** Indentation level from 1-4. */
|
|
9078
9146
|
indentation?: number;
|
|
9079
9147
|
}
|
|
9148
|
+
interface CaptionData$1 {
|
|
9149
|
+
textStyle?: TextStyle$1;
|
|
9150
|
+
}
|
|
9080
9151
|
interface Metadata$1 {
|
|
9081
9152
|
/** Schema version. */
|
|
9082
9153
|
version?: number;
|
|
@@ -10126,6 +10197,8 @@ interface Node extends NodeDataOneOf {
|
|
|
10126
10197
|
bulletedListData?: BulletedListData;
|
|
10127
10198
|
/** Data for a block quote node. */
|
|
10128
10199
|
blockquoteData?: BlockquoteData;
|
|
10200
|
+
/** Data for a caption node. */
|
|
10201
|
+
captionData?: CaptionData;
|
|
10129
10202
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
10130
10203
|
type?: NodeType;
|
|
10131
10204
|
/** Node ID. */
|
|
@@ -10187,6 +10260,8 @@ interface NodeDataOneOf {
|
|
|
10187
10260
|
bulletedListData?: BulletedListData;
|
|
10188
10261
|
/** Data for a block quote node. */
|
|
10189
10262
|
blockquoteData?: BlockquoteData;
|
|
10263
|
+
/** Data for a caption node. */
|
|
10264
|
+
captionData?: CaptionData;
|
|
10190
10265
|
}
|
|
10191
10266
|
declare enum NodeType {
|
|
10192
10267
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -10218,7 +10293,8 @@ declare enum NodeType {
|
|
|
10218
10293
|
TABLE_CELL = "TABLE_CELL",
|
|
10219
10294
|
TABLE_ROW = "TABLE_ROW",
|
|
10220
10295
|
EXTERNAL = "EXTERNAL",
|
|
10221
|
-
AUDIO = "AUDIO"
|
|
10296
|
+
AUDIO = "AUDIO",
|
|
10297
|
+
CAPTION = "CAPTION"
|
|
10222
10298
|
}
|
|
10223
10299
|
interface NodeStyle {
|
|
10224
10300
|
/** The top padding value in pixels. */
|
|
@@ -10708,7 +10784,10 @@ interface ImageData {
|
|
|
10708
10784
|
disableExpand?: boolean | null;
|
|
10709
10785
|
/** Image's alternative text. */
|
|
10710
10786
|
altText?: string | null;
|
|
10711
|
-
/**
|
|
10787
|
+
/**
|
|
10788
|
+
* Deprecated: use Caption node instead.
|
|
10789
|
+
* @deprecated
|
|
10790
|
+
*/
|
|
10712
10791
|
caption?: string | null;
|
|
10713
10792
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
10714
10793
|
disableDownload?: boolean | null;
|
|
@@ -11234,6 +11313,9 @@ interface BlockquoteData {
|
|
|
11234
11313
|
/** Indentation level from 1-4. */
|
|
11235
11314
|
indentation?: number;
|
|
11236
11315
|
}
|
|
11316
|
+
interface CaptionData {
|
|
11317
|
+
textStyle?: TextStyle;
|
|
11318
|
+
}
|
|
11237
11319
|
interface Metadata {
|
|
11238
11320
|
/** Schema version. */
|
|
11239
11321
|
version?: number;
|