@wix/multilingual 1.0.71 → 1.0.73
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 +8 -8
- package/type-bundles/context.bundle.d.ts +79 -37
- package/type-bundles/index.bundle.d.ts +79 -37
- package/type-bundles/meta.bundle.d.ts +114 -32
|
@@ -567,7 +567,7 @@ interface DomainEvent$3 extends DomainEventBodyOneOf$3 {
|
|
|
567
567
|
/** ID of the entity associated with the event. */
|
|
568
568
|
entityId?: string;
|
|
569
569
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
570
|
-
eventTime?: Date;
|
|
570
|
+
eventTime?: Date | null;
|
|
571
571
|
/**
|
|
572
572
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
573
573
|
* (for example, GDPR).
|
|
@@ -596,7 +596,7 @@ interface EntityCreatedEvent$3 {
|
|
|
596
596
|
entity?: string;
|
|
597
597
|
}
|
|
598
598
|
interface RestoreInfo$3 {
|
|
599
|
-
deletedDate?: Date;
|
|
599
|
+
deletedDate?: Date | null;
|
|
600
600
|
}
|
|
601
601
|
interface EntityUpdatedEvent$3 {
|
|
602
602
|
/**
|
|
@@ -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;
|
|
@@ -2246,12 +2257,12 @@ interface Metadata$2 {
|
|
|
2246
2257
|
* @readonly
|
|
2247
2258
|
* @deprecated
|
|
2248
2259
|
*/
|
|
2249
|
-
createdTimestamp?: Date;
|
|
2260
|
+
createdTimestamp?: Date | null;
|
|
2250
2261
|
/**
|
|
2251
2262
|
* When the object was most recently updated.
|
|
2252
2263
|
* @deprecated
|
|
2253
2264
|
*/
|
|
2254
|
-
updatedTimestamp?: Date;
|
|
2265
|
+
updatedTimestamp?: Date | null;
|
|
2255
2266
|
/** Object ID. */
|
|
2256
2267
|
_id?: string | null;
|
|
2257
2268
|
}
|
|
@@ -2415,7 +2426,7 @@ interface DomainEvent$2 extends DomainEventBodyOneOf$2 {
|
|
|
2415
2426
|
/** ID of the entity associated with the event. */
|
|
2416
2427
|
entityId?: string;
|
|
2417
2428
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
2418
|
-
eventTime?: Date;
|
|
2429
|
+
eventTime?: Date | null;
|
|
2419
2430
|
/**
|
|
2420
2431
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
2421
2432
|
* (for example, GDPR).
|
|
@@ -2444,7 +2455,7 @@ interface EntityCreatedEvent$2 {
|
|
|
2444
2455
|
entity?: string;
|
|
2445
2456
|
}
|
|
2446
2457
|
interface RestoreInfo$2 {
|
|
2447
|
-
deletedDate?: Date;
|
|
2458
|
+
deletedDate?: Date | null;
|
|
2448
2459
|
}
|
|
2449
2460
|
interface EntityUpdatedEvent$2 {
|
|
2450
2461
|
/**
|
|
@@ -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[];
|
|
@@ -2795,7 +2810,7 @@ interface EventMetadata$2 extends BaseEventMetadata$2 {
|
|
|
2795
2810
|
/** ID of the entity associated with the event. */
|
|
2796
2811
|
entityId?: string;
|
|
2797
2812
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
2798
|
-
eventTime?: Date;
|
|
2813
|
+
eventTime?: Date | null;
|
|
2799
2814
|
/**
|
|
2800
2815
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
2801
2816
|
* (for example, GDPR).
|
|
@@ -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;
|
|
@@ -4191,12 +4217,12 @@ interface Metadata$1 {
|
|
|
4191
4217
|
* @readonly
|
|
4192
4218
|
* @deprecated
|
|
4193
4219
|
*/
|
|
4194
|
-
createdTimestamp?: Date;
|
|
4220
|
+
createdTimestamp?: Date | null;
|
|
4195
4221
|
/**
|
|
4196
4222
|
* When the object was most recently updated.
|
|
4197
4223
|
* @deprecated
|
|
4198
4224
|
*/
|
|
4199
|
-
updatedTimestamp?: Date;
|
|
4225
|
+
updatedTimestamp?: Date | null;
|
|
4200
4226
|
/** Object ID. */
|
|
4201
4227
|
_id?: string | null;
|
|
4202
4228
|
}
|
|
@@ -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 {
|
|
@@ -5342,12 +5372,12 @@ interface Content {
|
|
|
5342
5372
|
* Date and time the translation content was created.
|
|
5343
5373
|
* @readonly
|
|
5344
5374
|
*/
|
|
5345
|
-
_createdDate?: Date;
|
|
5375
|
+
_createdDate?: Date | null;
|
|
5346
5376
|
/**
|
|
5347
5377
|
* Date and time the translation content was updated.
|
|
5348
5378
|
* @readonly
|
|
5349
5379
|
*/
|
|
5350
|
-
_updatedDate?: Date;
|
|
5380
|
+
_updatedDate?: Date | null;
|
|
5351
5381
|
}
|
|
5352
5382
|
interface ContentField extends ContentFieldValueOneOf {
|
|
5353
5383
|
/** Plain text. Use this field if the corresponding schema `fields.type` is `SHORT_TEXT`, `LONG_TEXT`, `HTML`, or `IMAGE_LINK`. */
|
|
@@ -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;
|
|
@@ -6605,12 +6646,12 @@ interface Metadata {
|
|
|
6605
6646
|
* @readonly
|
|
6606
6647
|
* @deprecated
|
|
6607
6648
|
*/
|
|
6608
|
-
createdTimestamp?: Date;
|
|
6649
|
+
createdTimestamp?: Date | null;
|
|
6609
6650
|
/**
|
|
6610
6651
|
* When the object was most recently updated.
|
|
6611
6652
|
* @deprecated
|
|
6612
6653
|
*/
|
|
6613
|
-
updatedTimestamp?: Date;
|
|
6654
|
+
updatedTimestamp?: Date | null;
|
|
6614
6655
|
/** Object ID. */
|
|
6615
6656
|
_id?: string | null;
|
|
6616
6657
|
}
|
|
@@ -7601,7 +7642,7 @@ interface SiteDeleted$1 {
|
|
|
7601
7642
|
}
|
|
7602
7643
|
interface DeleteContext$1 {
|
|
7603
7644
|
/** When the meta site was deleted. */
|
|
7604
|
-
dateDeleted?: Date;
|
|
7645
|
+
dateDeleted?: Date | null;
|
|
7605
7646
|
/** A status. */
|
|
7606
7647
|
deleteStatus?: DeleteStatus$1;
|
|
7607
7648
|
/** A reason (flow). */
|
|
@@ -7703,7 +7744,7 @@ interface DomainEvent$1 extends DomainEventBodyOneOf$1 {
|
|
|
7703
7744
|
/** ID of the entity associated with the event. */
|
|
7704
7745
|
entityId?: string;
|
|
7705
7746
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
7706
|
-
eventTime?: Date;
|
|
7747
|
+
eventTime?: Date | null;
|
|
7707
7748
|
/**
|
|
7708
7749
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
7709
7750
|
* (for example, GDPR).
|
|
@@ -7732,7 +7773,7 @@ interface EntityCreatedEvent$1 {
|
|
|
7732
7773
|
entity?: string;
|
|
7733
7774
|
}
|
|
7734
7775
|
interface RestoreInfo$1 {
|
|
7735
|
-
deletedDate?: Date;
|
|
7776
|
+
deletedDate?: Date | null;
|
|
7736
7777
|
}
|
|
7737
7778
|
interface EntityUpdatedEvent$1 {
|
|
7738
7779
|
/**
|
|
@@ -7953,7 +7994,7 @@ interface EventMetadata$1 extends BaseEventMetadata$1 {
|
|
|
7953
7994
|
/** ID of the entity associated with the event. */
|
|
7954
7995
|
entityId?: string;
|
|
7955
7996
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
7956
|
-
eventTime?: Date;
|
|
7997
|
+
eventTime?: Date | null;
|
|
7957
7998
|
/**
|
|
7958
7999
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
7959
8000
|
* (for example, GDPR).
|
|
@@ -8018,12 +8059,12 @@ interface UpdateContent {
|
|
|
8018
8059
|
* Date and time the translation content was created.
|
|
8019
8060
|
* @readonly
|
|
8020
8061
|
*/
|
|
8021
|
-
_createdDate?: Date;
|
|
8062
|
+
_createdDate?: Date | null;
|
|
8022
8063
|
/**
|
|
8023
8064
|
* Date and time the translation content was updated.
|
|
8024
8065
|
* @readonly
|
|
8025
8066
|
*/
|
|
8026
|
-
_updatedDate?: Date;
|
|
8067
|
+
_updatedDate?: Date | null;
|
|
8027
8068
|
}
|
|
8028
8069
|
interface QueryContentsOptions {
|
|
8029
8070
|
}
|
|
@@ -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 {
|
|
@@ -8616,12 +8658,12 @@ interface Schema {
|
|
|
8616
8658
|
* Date and time the translation schema was created.
|
|
8617
8659
|
* @readonly
|
|
8618
8660
|
*/
|
|
8619
|
-
_createdDate?: Date;
|
|
8661
|
+
_createdDate?: Date | null;
|
|
8620
8662
|
/**
|
|
8621
8663
|
* Date and time the translation schema was updated.
|
|
8622
8664
|
* @readonly
|
|
8623
8665
|
*/
|
|
8624
|
-
_updatedDate?: Date;
|
|
8666
|
+
_updatedDate?: Date | null;
|
|
8625
8667
|
/**
|
|
8626
8668
|
* Whether to duplicate the translated content when a site containing the translation schema and content is duplicated.
|
|
8627
8669
|
*
|
|
@@ -9061,7 +9103,7 @@ interface SiteDeleted {
|
|
|
9061
9103
|
}
|
|
9062
9104
|
interface DeleteContext {
|
|
9063
9105
|
/** When the meta site was deleted. */
|
|
9064
|
-
dateDeleted?: Date;
|
|
9106
|
+
dateDeleted?: Date | null;
|
|
9065
9107
|
/** A status. */
|
|
9066
9108
|
deleteStatus?: DeleteStatus;
|
|
9067
9109
|
/** A reason (flow). */
|
|
@@ -9163,7 +9205,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
9163
9205
|
/** ID of the entity associated with the event. */
|
|
9164
9206
|
entityId?: string;
|
|
9165
9207
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
9166
|
-
eventTime?: Date;
|
|
9208
|
+
eventTime?: Date | null;
|
|
9167
9209
|
/**
|
|
9168
9210
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
9169
9211
|
* (for example, GDPR).
|
|
@@ -9192,7 +9234,7 @@ interface EntityCreatedEvent {
|
|
|
9192
9234
|
entity?: string;
|
|
9193
9235
|
}
|
|
9194
9236
|
interface RestoreInfo {
|
|
9195
|
-
deletedDate?: Date;
|
|
9237
|
+
deletedDate?: Date | null;
|
|
9196
9238
|
}
|
|
9197
9239
|
interface EntityUpdatedEvent {
|
|
9198
9240
|
/**
|
|
@@ -9303,7 +9345,7 @@ interface EventMetadata extends BaseEventMetadata {
|
|
|
9303
9345
|
/** ID of the entity associated with the event. */
|
|
9304
9346
|
entityId?: string;
|
|
9305
9347
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
9306
|
-
eventTime?: Date;
|
|
9348
|
+
eventTime?: Date | null;
|
|
9307
9349
|
/**
|
|
9308
9350
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
9309
9351
|
* (for example, GDPR).
|
|
@@ -9379,12 +9421,12 @@ interface UpdateSchema {
|
|
|
9379
9421
|
* Date and time the translation schema was created.
|
|
9380
9422
|
* @readonly
|
|
9381
9423
|
*/
|
|
9382
|
-
_createdDate?: Date;
|
|
9424
|
+
_createdDate?: Date | null;
|
|
9383
9425
|
/**
|
|
9384
9426
|
* Date and time the translation schema was updated.
|
|
9385
9427
|
* @readonly
|
|
9386
9428
|
*/
|
|
9387
|
-
_updatedDate?: Date;
|
|
9429
|
+
_updatedDate?: Date | null;
|
|
9388
9430
|
/**
|
|
9389
9431
|
* Whether to duplicate the translated content when a site containing the translation schema and content is duplicated.
|
|
9390
9432
|
*
|