@wix/events 1.0.327 → 1.0.328
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/events",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.328",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@wix/events_notifications": "1.0.37",
|
|
25
25
|
"@wix/events_orders": "1.0.55",
|
|
26
26
|
"@wix/events_policies": "1.0.45",
|
|
27
|
-
"@wix/events_ricos": "1.0.
|
|
27
|
+
"@wix/events_ricos": "1.0.11",
|
|
28
28
|
"@wix/events_rsvp": "1.0.48",
|
|
29
29
|
"@wix/events_rsvp-v-2": "1.0.18",
|
|
30
30
|
"@wix/events_schedule": "1.0.42",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"fqdn": ""
|
|
59
59
|
}
|
|
60
60
|
},
|
|
61
|
-
"falconPackageHash": "
|
|
61
|
+
"falconPackageHash": "6405ee68a2087e8eb57c0a585435a56959b322b552037f0184390b28"
|
|
62
62
|
}
|
|
@@ -10868,6 +10868,8 @@ interface Node extends NodeDataOneOf {
|
|
|
10868
10868
|
bulletedListData?: BulletedListData;
|
|
10869
10869
|
/** Data for a block quote node. */
|
|
10870
10870
|
blockquoteData?: BlockquoteData;
|
|
10871
|
+
/** Data for a caption node. */
|
|
10872
|
+
captionData?: CaptionData;
|
|
10871
10873
|
/** 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. */
|
|
10872
10874
|
type?: NodeType;
|
|
10873
10875
|
/** Node ID. */
|
|
@@ -10929,6 +10931,8 @@ interface NodeDataOneOf {
|
|
|
10929
10931
|
bulletedListData?: BulletedListData;
|
|
10930
10932
|
/** Data for a block quote node. */
|
|
10931
10933
|
blockquoteData?: BlockquoteData;
|
|
10934
|
+
/** Data for a caption node. */
|
|
10935
|
+
captionData?: CaptionData;
|
|
10932
10936
|
}
|
|
10933
10937
|
declare enum NodeType {
|
|
10934
10938
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -10960,7 +10964,8 @@ declare enum NodeType {
|
|
|
10960
10964
|
TABLE_CELL = "TABLE_CELL",
|
|
10961
10965
|
TABLE_ROW = "TABLE_ROW",
|
|
10962
10966
|
EXTERNAL = "EXTERNAL",
|
|
10963
|
-
AUDIO = "AUDIO"
|
|
10967
|
+
AUDIO = "AUDIO",
|
|
10968
|
+
CAPTION = "CAPTION"
|
|
10964
10969
|
}
|
|
10965
10970
|
interface NodeStyle {
|
|
10966
10971
|
/** The top padding value in pixels. */
|
|
@@ -11450,7 +11455,10 @@ interface ImageData {
|
|
|
11450
11455
|
disableExpand?: boolean | null;
|
|
11451
11456
|
/** Image's alternative text. */
|
|
11452
11457
|
altText?: string | null;
|
|
11453
|
-
/**
|
|
11458
|
+
/**
|
|
11459
|
+
* Deprecated: use Caption node instead.
|
|
11460
|
+
* @deprecated
|
|
11461
|
+
*/
|
|
11454
11462
|
caption?: string | null;
|
|
11455
11463
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
11456
11464
|
disableDownload?: boolean | null;
|
|
@@ -11995,6 +12003,9 @@ interface BlockquoteData {
|
|
|
11995
12003
|
/** Indentation level from 1-4. */
|
|
11996
12004
|
indentation?: number;
|
|
11997
12005
|
}
|
|
12006
|
+
interface CaptionData {
|
|
12007
|
+
textStyle?: TextStyle;
|
|
12008
|
+
}
|
|
11998
12009
|
interface Metadata {
|
|
11999
12010
|
/** Schema version. */
|
|
12000
12011
|
version?: number;
|
|
@@ -12680,6 +12691,9 @@ interface BulletedListDataNonNullableFields {
|
|
|
12680
12691
|
interface BlockquoteDataNonNullableFields {
|
|
12681
12692
|
indentation: number;
|
|
12682
12693
|
}
|
|
12694
|
+
interface CaptionDataNonNullableFields {
|
|
12695
|
+
textStyle?: TextStyleNonNullableFields;
|
|
12696
|
+
}
|
|
12683
12697
|
interface NodeNonNullableFields {
|
|
12684
12698
|
buttonData?: ButtonDataNonNullableFields;
|
|
12685
12699
|
codeBlockData?: CodeBlockDataNonNullableFields;
|
|
@@ -12705,6 +12719,7 @@ interface NodeNonNullableFields {
|
|
|
12705
12719
|
orderedListData?: OrderedListDataNonNullableFields;
|
|
12706
12720
|
bulletedListData?: BulletedListDataNonNullableFields;
|
|
12707
12721
|
blockquoteData?: BlockquoteDataNonNullableFields;
|
|
12722
|
+
captionData?: CaptionDataNonNullableFields;
|
|
12708
12723
|
type: NodeType;
|
|
12709
12724
|
_id: string;
|
|
12710
12725
|
nodes: NodeNonNullableFields[];
|
|
@@ -13009,6 +13024,7 @@ type context$7_Border = Border;
|
|
|
13009
13024
|
type context$7_BorderColors = BorderColors;
|
|
13010
13025
|
type context$7_BulletedListData = BulletedListData;
|
|
13011
13026
|
type context$7_ButtonData = ButtonData;
|
|
13027
|
+
type context$7_CaptionData = CaptionData;
|
|
13012
13028
|
type context$7_CellStyle = CellStyle;
|
|
13013
13029
|
type context$7_CodeBlockData = CodeBlockData;
|
|
13014
13030
|
type context$7_CollapsibleListData = CollapsibleListData;
|
|
@@ -13173,7 +13189,7 @@ declare const context$7_onRichContentUpdated: typeof onRichContentUpdated;
|
|
|
13173
13189
|
declare const context$7_queryRichContents: typeof queryRichContents;
|
|
13174
13190
|
declare const context$7_updateRichContent: typeof updateRichContent;
|
|
13175
13191
|
declare namespace context$7 {
|
|
13176
|
-
export { type ActionEvent$4 as ActionEvent, type Address$6 as Address, type AddressLocation$6 as AddressLocation, type AddressStreetOneOf$6 as AddressStreetOneOf, context$7_Alignment as Alignment, type context$7_AnchorData as AnchorData, type context$7_AppEmbedData as AppEmbedData, type context$7_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$7_AppType as AppType, type context$7_AudioData as AudioData, type context$7_Background as Background, type context$7_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$7_BackgroundType as BackgroundType, type BaseEventMetadata$6 as BaseEventMetadata, type context$7_BlockquoteData as BlockquoteData, type context$7_BookingData as BookingData, type context$7_Border as Border, type context$7_BorderColors as BorderColors, type context$7_BulletedListData as BulletedListData, type context$7_ButtonData as ButtonData, type context$7_CellStyle as CellStyle, type context$7_CodeBlockData as CodeBlockData, type context$7_CollapsibleListData as CollapsibleListData, type context$7_ColorData as ColorData, type context$7_Colors as Colors, type context$7_CreateRichContentRequest as CreateRichContentRequest, type context$7_CreateRichContentResponse as CreateRichContentResponse, type context$7_CreateRichContentResponseNonNullableFields as CreateRichContentResponseNonNullableFields, context$7_Crop as Crop, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$5 as Cursors, type context$7_Decoration as Decoration, type context$7_DecorationDataOneOf as DecorationDataOneOf, context$7_DecorationType as DecorationType, type context$7_DeleteRichContentRequest as DeleteRichContentRequest, type context$7_DeleteRichContentResponse as DeleteRichContentResponse, type context$7_Design as Design, type context$7_Dimensions as Dimensions, context$7_Direction as Direction, type context$7_DividerData as DividerData, type context$7_DocumentStyle as DocumentStyle, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type context$7_EmbedData as EmbedData, type Empty$4 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventCopied$2 as EventCopied, type context$7_EventData as EventData, type EventDeleted$3 as EventDeleted, type EventMetadata$3 as EventMetadata, EventStatus$4 as EventStatus, type ExtendedFields$2 as ExtendedFields, type context$7_FileData as FileData, type context$7_FileSource as FileSource, type context$7_FileSourceDataOneOf as FileSourceDataOneOf, type context$7_FindRichContentBySlugIdentifiers as FindRichContentBySlugIdentifiers, type context$7_FindRichContentBySlugRequest as FindRichContentBySlugRequest, type context$7_FindRichContentBySlugResponse as FindRichContentBySlugResponse, type context$7_FindRichContentBySlugResponseNonNullableFields as FindRichContentBySlugResponseNonNullableFields, type context$7_FontSizeData as FontSizeData, context$7_FontType as FontType, type context$7_GIF as GIF, type context$7_GIFData as GIFData, type context$7_GalleryData as GalleryData, type context$7_GalleryOptions as GalleryOptions, type context$7_GetOrCreateRichContentRequest as GetOrCreateRichContentRequest, type context$7_GetOrCreateRichContentResponse as GetOrCreateRichContentResponse, type context$7_GetRichContentRequest as GetRichContentRequest, type context$7_GetRichContentResponse as GetRichContentResponse, type context$7_GetRichContentResponseNonNullableFields as GetRichContentResponseNonNullableFields, type context$7_Gradient as Gradient, type context$7_HTMLData as HTMLData, type context$7_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$7_HeadingData as HeadingData, type context$7_Height as Height, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, type context$7_Image as Image, type context$7_ImageData as ImageData, context$7_InitialExpandedItems as InitialExpandedItems, type context$7_Item as Item, type context$7_ItemDataOneOf as ItemDataOneOf, type context$7_ItemStyle as ItemStyle, type context$7_Layout as Layout, context$7_LayoutType as LayoutType, context$7_LineStyle as LineStyle, type context$7_Link as Link, type context$7_LinkData as LinkData, type context$7_LinkDataOneOf as LinkDataOneOf, type context$7_LinkPreviewData as LinkPreviewData, type context$7_ListValue as ListValue, type Location$4 as Location, LocationType$4 as LocationType, type MapCoordinates$4 as MapCoordinates, type context$7_MapData as MapData, type context$7_MapSettings as MapSettings, context$7_MapType as MapType, type context$7_Media as Media, type context$7_MentionData as MentionData, type MessageEnvelope$7 as MessageEnvelope, type context$7_Metadata as Metadata, type context$7_Node as Node, type context$7_NodeDataOneOf as NodeDataOneOf, type context$7_NodeStyle as NodeStyle, context$7_NodeType as NodeType, context$7_NullValue as NullValue, type Occurrence$4 as Occurrence, type context$7_Oembed as Oembed, type context$7_Option as Option, type context$7_OptionDesign as OptionDesign, type context$7_OptionLayout as OptionLayout, type context$7_OrderedListData as OrderedListData, context$7_Orientation as Orientation, type context$7_PDFSettings as PDFSettings, type context$7_ParagraphData as ParagraphData, type context$7_Permissions as Permissions, type context$7_PlaybackOptions as PlaybackOptions, type context$7_PluginContainerData as PluginContainerData, context$7_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$7_PluginContainerDataWidth as PluginContainerDataWidth, type context$7_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$7_Poll as Poll, type context$7_PollData as PollData, type context$7_PollDataLayout as PollDataLayout, type context$7_PollDesign as PollDesign, type context$7_PollLayout as PollLayout, context$7_PollLayoutDirection as PollLayoutDirection, context$7_PollLayoutType as PollLayoutType, type context$7_QueryRichContentsRequest as QueryRichContentsRequest, type context$7_QueryRichContentsResponse as QueryRichContentsResponse, type context$7_QueryRichContentsResponseNonNullableFields as QueryRichContentsResponseNonNullableFields, type Recurrences$4 as Recurrences, type context$7_Rel as Rel, type RestoreInfo$4 as RestoreInfo, type context$7_RichContent as RichContent, type context$7_RichContentCreatedEnvelope as RichContentCreatedEnvelope, type context$7_RichContentDeletedEnvelope as RichContentDeletedEnvelope, type context$7_RichContentNonNullableFields as RichContentNonNullableFields, type context$7_RichContentUpdatedEnvelope as RichContentUpdatedEnvelope, type context$7_RichContentsQueryBuilder as RichContentsQueryBuilder, type context$7_RichContentsQueryResult as RichContentsQueryResult, type ScheduleConfig$4 as ScheduleConfig, type Settings$3 as Settings, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, context$7_Source as Source, type context$7_Spoiler as Spoiler, type context$7_SpoilerData as SpoilerData, Status$4 as Status, type StreetAddress$6 as StreetAddress, type context$7_Styles as Styles, type Subdivision$6 as Subdivision, SubdivisionType$6 as SubdivisionType, type context$7_TableCellData as TableCellData, type context$7_TableData as TableData, context$7_Target as Target, context$7_TextAlignment as TextAlignment, type context$7_TextData as TextData, type context$7_TextNodeStyle as TextNodeStyle, type context$7_TextStyle as TextStyle, type context$7_Thumbnails as Thumbnails, context$7_ThumbnailsAlignment as ThumbnailsAlignment, Type$3 as Type, type context$7_UpdateRichContent as UpdateRichContent, type context$7_UpdateRichContentRequest as UpdateRichContentRequest, type context$7_UpdateRichContentResponse as UpdateRichContentResponse, type context$7_UpdateRichContentResponseNonNullableFields as UpdateRichContentResponseNonNullableFields, type context$7_V1RichContent as V1RichContent, context$7_VerticalAlignment as VerticalAlignment, type context$7_Video as Video, type context$7_VideoData as VideoData, context$7_ViewMode as ViewMode, context$7_ViewRole as ViewRole, context$7_VoteRole as VoteRole, WebhookIdentityType$7 as WebhookIdentityType, context$7_Width as Width, context$7_WidthType as WidthType, type context$7__publicOnRichContentCreatedType as _publicOnRichContentCreatedType, type context$7__publicOnRichContentDeletedType as _publicOnRichContentDeletedType, type context$7__publicOnRichContentUpdatedType as _publicOnRichContentUpdatedType, context$7_createRichContent as createRichContent, context$7_deleteRichContent as deleteRichContent, context$7_findRichContentBySlug as findRichContentBySlug, context$7_getRichContent as getRichContent, context$7_onRichContentCreated as onRichContentCreated, context$7_onRichContentDeleted as onRichContentDeleted, context$7_onRichContentUpdated as onRichContentUpdated, onRichContentCreated$1 as publicOnRichContentCreated, onRichContentDeleted$1 as publicOnRichContentDeleted, onRichContentUpdated$1 as publicOnRichContentUpdated, context$7_queryRichContents as queryRichContents, context$7_updateRichContent as updateRichContent };
|
|
13192
|
+
export { type ActionEvent$4 as ActionEvent, type Address$6 as Address, type AddressLocation$6 as AddressLocation, type AddressStreetOneOf$6 as AddressStreetOneOf, context$7_Alignment as Alignment, type context$7_AnchorData as AnchorData, type context$7_AppEmbedData as AppEmbedData, type context$7_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$7_AppType as AppType, type context$7_AudioData as AudioData, type context$7_Background as Background, type context$7_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$7_BackgroundType as BackgroundType, type BaseEventMetadata$6 as BaseEventMetadata, type context$7_BlockquoteData as BlockquoteData, type context$7_BookingData as BookingData, type context$7_Border as Border, type context$7_BorderColors as BorderColors, type context$7_BulletedListData as BulletedListData, type context$7_ButtonData as ButtonData, type context$7_CaptionData as CaptionData, type context$7_CellStyle as CellStyle, type context$7_CodeBlockData as CodeBlockData, type context$7_CollapsibleListData as CollapsibleListData, type context$7_ColorData as ColorData, type context$7_Colors as Colors, type context$7_CreateRichContentRequest as CreateRichContentRequest, type context$7_CreateRichContentResponse as CreateRichContentResponse, type context$7_CreateRichContentResponseNonNullableFields as CreateRichContentResponseNonNullableFields, context$7_Crop as Crop, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$5 as Cursors, type context$7_Decoration as Decoration, type context$7_DecorationDataOneOf as DecorationDataOneOf, context$7_DecorationType as DecorationType, type context$7_DeleteRichContentRequest as DeleteRichContentRequest, type context$7_DeleteRichContentResponse as DeleteRichContentResponse, type context$7_Design as Design, type context$7_Dimensions as Dimensions, context$7_Direction as Direction, type context$7_DividerData as DividerData, type context$7_DocumentStyle as DocumentStyle, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type context$7_EmbedData as EmbedData, type Empty$4 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventCopied$2 as EventCopied, type context$7_EventData as EventData, type EventDeleted$3 as EventDeleted, type EventMetadata$3 as EventMetadata, EventStatus$4 as EventStatus, type ExtendedFields$2 as ExtendedFields, type context$7_FileData as FileData, type context$7_FileSource as FileSource, type context$7_FileSourceDataOneOf as FileSourceDataOneOf, type context$7_FindRichContentBySlugIdentifiers as FindRichContentBySlugIdentifiers, type context$7_FindRichContentBySlugRequest as FindRichContentBySlugRequest, type context$7_FindRichContentBySlugResponse as FindRichContentBySlugResponse, type context$7_FindRichContentBySlugResponseNonNullableFields as FindRichContentBySlugResponseNonNullableFields, type context$7_FontSizeData as FontSizeData, context$7_FontType as FontType, type context$7_GIF as GIF, type context$7_GIFData as GIFData, type context$7_GalleryData as GalleryData, type context$7_GalleryOptions as GalleryOptions, type context$7_GetOrCreateRichContentRequest as GetOrCreateRichContentRequest, type context$7_GetOrCreateRichContentResponse as GetOrCreateRichContentResponse, type context$7_GetRichContentRequest as GetRichContentRequest, type context$7_GetRichContentResponse as GetRichContentResponse, type context$7_GetRichContentResponseNonNullableFields as GetRichContentResponseNonNullableFields, type context$7_Gradient as Gradient, type context$7_HTMLData as HTMLData, type context$7_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$7_HeadingData as HeadingData, type context$7_Height as Height, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, type context$7_Image as Image, type context$7_ImageData as ImageData, context$7_InitialExpandedItems as InitialExpandedItems, type context$7_Item as Item, type context$7_ItemDataOneOf as ItemDataOneOf, type context$7_ItemStyle as ItemStyle, type context$7_Layout as Layout, context$7_LayoutType as LayoutType, context$7_LineStyle as LineStyle, type context$7_Link as Link, type context$7_LinkData as LinkData, type context$7_LinkDataOneOf as LinkDataOneOf, type context$7_LinkPreviewData as LinkPreviewData, type context$7_ListValue as ListValue, type Location$4 as Location, LocationType$4 as LocationType, type MapCoordinates$4 as MapCoordinates, type context$7_MapData as MapData, type context$7_MapSettings as MapSettings, context$7_MapType as MapType, type context$7_Media as Media, type context$7_MentionData as MentionData, type MessageEnvelope$7 as MessageEnvelope, type context$7_Metadata as Metadata, type context$7_Node as Node, type context$7_NodeDataOneOf as NodeDataOneOf, type context$7_NodeStyle as NodeStyle, context$7_NodeType as NodeType, context$7_NullValue as NullValue, type Occurrence$4 as Occurrence, type context$7_Oembed as Oembed, type context$7_Option as Option, type context$7_OptionDesign as OptionDesign, type context$7_OptionLayout as OptionLayout, type context$7_OrderedListData as OrderedListData, context$7_Orientation as Orientation, type context$7_PDFSettings as PDFSettings, type context$7_ParagraphData as ParagraphData, type context$7_Permissions as Permissions, type context$7_PlaybackOptions as PlaybackOptions, type context$7_PluginContainerData as PluginContainerData, context$7_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$7_PluginContainerDataWidth as PluginContainerDataWidth, type context$7_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$7_Poll as Poll, type context$7_PollData as PollData, type context$7_PollDataLayout as PollDataLayout, type context$7_PollDesign as PollDesign, type context$7_PollLayout as PollLayout, context$7_PollLayoutDirection as PollLayoutDirection, context$7_PollLayoutType as PollLayoutType, type context$7_QueryRichContentsRequest as QueryRichContentsRequest, type context$7_QueryRichContentsResponse as QueryRichContentsResponse, type context$7_QueryRichContentsResponseNonNullableFields as QueryRichContentsResponseNonNullableFields, type Recurrences$4 as Recurrences, type context$7_Rel as Rel, type RestoreInfo$4 as RestoreInfo, type context$7_RichContent as RichContent, type context$7_RichContentCreatedEnvelope as RichContentCreatedEnvelope, type context$7_RichContentDeletedEnvelope as RichContentDeletedEnvelope, type context$7_RichContentNonNullableFields as RichContentNonNullableFields, type context$7_RichContentUpdatedEnvelope as RichContentUpdatedEnvelope, type context$7_RichContentsQueryBuilder as RichContentsQueryBuilder, type context$7_RichContentsQueryResult as RichContentsQueryResult, type ScheduleConfig$4 as ScheduleConfig, type Settings$3 as Settings, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, context$7_Source as Source, type context$7_Spoiler as Spoiler, type context$7_SpoilerData as SpoilerData, Status$4 as Status, type StreetAddress$6 as StreetAddress, type context$7_Styles as Styles, type Subdivision$6 as Subdivision, SubdivisionType$6 as SubdivisionType, type context$7_TableCellData as TableCellData, type context$7_TableData as TableData, context$7_Target as Target, context$7_TextAlignment as TextAlignment, type context$7_TextData as TextData, type context$7_TextNodeStyle as TextNodeStyle, type context$7_TextStyle as TextStyle, type context$7_Thumbnails as Thumbnails, context$7_ThumbnailsAlignment as ThumbnailsAlignment, Type$3 as Type, type context$7_UpdateRichContent as UpdateRichContent, type context$7_UpdateRichContentRequest as UpdateRichContentRequest, type context$7_UpdateRichContentResponse as UpdateRichContentResponse, type context$7_UpdateRichContentResponseNonNullableFields as UpdateRichContentResponseNonNullableFields, type context$7_V1RichContent as V1RichContent, context$7_VerticalAlignment as VerticalAlignment, type context$7_Video as Video, type context$7_VideoData as VideoData, context$7_ViewMode as ViewMode, context$7_ViewRole as ViewRole, context$7_VoteRole as VoteRole, WebhookIdentityType$7 as WebhookIdentityType, context$7_Width as Width, context$7_WidthType as WidthType, type context$7__publicOnRichContentCreatedType as _publicOnRichContentCreatedType, type context$7__publicOnRichContentDeletedType as _publicOnRichContentDeletedType, type context$7__publicOnRichContentUpdatedType as _publicOnRichContentUpdatedType, context$7_createRichContent as createRichContent, context$7_deleteRichContent as deleteRichContent, context$7_findRichContentBySlug as findRichContentBySlug, context$7_getRichContent as getRichContent, context$7_onRichContentCreated as onRichContentCreated, context$7_onRichContentDeleted as onRichContentDeleted, context$7_onRichContentUpdated as onRichContentUpdated, onRichContentCreated$1 as publicOnRichContentCreated, onRichContentDeleted$1 as publicOnRichContentDeleted, onRichContentUpdated$1 as publicOnRichContentUpdated, context$7_queryRichContents as queryRichContents, context$7_updateRichContent as updateRichContent };
|
|
13177
13193
|
}
|
|
13178
13194
|
|
|
13179
13195
|
interface RsvpRsvp {
|
|
@@ -10868,6 +10868,8 @@ interface Node extends NodeDataOneOf {
|
|
|
10868
10868
|
bulletedListData?: BulletedListData;
|
|
10869
10869
|
/** Data for a block quote node. */
|
|
10870
10870
|
blockquoteData?: BlockquoteData;
|
|
10871
|
+
/** Data for a caption node. */
|
|
10872
|
+
captionData?: CaptionData;
|
|
10871
10873
|
/** 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. */
|
|
10872
10874
|
type?: NodeType;
|
|
10873
10875
|
/** Node ID. */
|
|
@@ -10929,6 +10931,8 @@ interface NodeDataOneOf {
|
|
|
10929
10931
|
bulletedListData?: BulletedListData;
|
|
10930
10932
|
/** Data for a block quote node. */
|
|
10931
10933
|
blockquoteData?: BlockquoteData;
|
|
10934
|
+
/** Data for a caption node. */
|
|
10935
|
+
captionData?: CaptionData;
|
|
10932
10936
|
}
|
|
10933
10937
|
declare enum NodeType {
|
|
10934
10938
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -10960,7 +10964,8 @@ declare enum NodeType {
|
|
|
10960
10964
|
TABLE_CELL = "TABLE_CELL",
|
|
10961
10965
|
TABLE_ROW = "TABLE_ROW",
|
|
10962
10966
|
EXTERNAL = "EXTERNAL",
|
|
10963
|
-
AUDIO = "AUDIO"
|
|
10967
|
+
AUDIO = "AUDIO",
|
|
10968
|
+
CAPTION = "CAPTION"
|
|
10964
10969
|
}
|
|
10965
10970
|
interface NodeStyle {
|
|
10966
10971
|
/** The top padding value in pixels. */
|
|
@@ -11450,7 +11455,10 @@ interface ImageData {
|
|
|
11450
11455
|
disableExpand?: boolean | null;
|
|
11451
11456
|
/** Image's alternative text. */
|
|
11452
11457
|
altText?: string | null;
|
|
11453
|
-
/**
|
|
11458
|
+
/**
|
|
11459
|
+
* Deprecated: use Caption node instead.
|
|
11460
|
+
* @deprecated
|
|
11461
|
+
*/
|
|
11454
11462
|
caption?: string | null;
|
|
11455
11463
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
11456
11464
|
disableDownload?: boolean | null;
|
|
@@ -11995,6 +12003,9 @@ interface BlockquoteData {
|
|
|
11995
12003
|
/** Indentation level from 1-4. */
|
|
11996
12004
|
indentation?: number;
|
|
11997
12005
|
}
|
|
12006
|
+
interface CaptionData {
|
|
12007
|
+
textStyle?: TextStyle;
|
|
12008
|
+
}
|
|
11998
12009
|
interface Metadata {
|
|
11999
12010
|
/** Schema version. */
|
|
12000
12011
|
version?: number;
|
|
@@ -12680,6 +12691,9 @@ interface BulletedListDataNonNullableFields {
|
|
|
12680
12691
|
interface BlockquoteDataNonNullableFields {
|
|
12681
12692
|
indentation: number;
|
|
12682
12693
|
}
|
|
12694
|
+
interface CaptionDataNonNullableFields {
|
|
12695
|
+
textStyle?: TextStyleNonNullableFields;
|
|
12696
|
+
}
|
|
12683
12697
|
interface NodeNonNullableFields {
|
|
12684
12698
|
buttonData?: ButtonDataNonNullableFields;
|
|
12685
12699
|
codeBlockData?: CodeBlockDataNonNullableFields;
|
|
@@ -12705,6 +12719,7 @@ interface NodeNonNullableFields {
|
|
|
12705
12719
|
orderedListData?: OrderedListDataNonNullableFields;
|
|
12706
12720
|
bulletedListData?: BulletedListDataNonNullableFields;
|
|
12707
12721
|
blockquoteData?: BlockquoteDataNonNullableFields;
|
|
12722
|
+
captionData?: CaptionDataNonNullableFields;
|
|
12708
12723
|
type: NodeType;
|
|
12709
12724
|
_id: string;
|
|
12710
12725
|
nodes: NodeNonNullableFields[];
|
|
@@ -13009,6 +13024,7 @@ type index_d$7_Border = Border;
|
|
|
13009
13024
|
type index_d$7_BorderColors = BorderColors;
|
|
13010
13025
|
type index_d$7_BulletedListData = BulletedListData;
|
|
13011
13026
|
type index_d$7_ButtonData = ButtonData;
|
|
13027
|
+
type index_d$7_CaptionData = CaptionData;
|
|
13012
13028
|
type index_d$7_CellStyle = CellStyle;
|
|
13013
13029
|
type index_d$7_CodeBlockData = CodeBlockData;
|
|
13014
13030
|
type index_d$7_CollapsibleListData = CollapsibleListData;
|
|
@@ -13173,7 +13189,7 @@ declare const index_d$7_onRichContentUpdated: typeof onRichContentUpdated;
|
|
|
13173
13189
|
declare const index_d$7_queryRichContents: typeof queryRichContents;
|
|
13174
13190
|
declare const index_d$7_updateRichContent: typeof updateRichContent;
|
|
13175
13191
|
declare namespace index_d$7 {
|
|
13176
|
-
export { type ActionEvent$4 as ActionEvent, type Address$6 as Address, type AddressLocation$6 as AddressLocation, type AddressStreetOneOf$6 as AddressStreetOneOf, index_d$7_Alignment as Alignment, type index_d$7_AnchorData as AnchorData, type index_d$7_AppEmbedData as AppEmbedData, type index_d$7_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$7_AppType as AppType, type index_d$7_AudioData as AudioData, type index_d$7_Background as Background, type index_d$7_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$7_BackgroundType as BackgroundType, type BaseEventMetadata$6 as BaseEventMetadata, type index_d$7_BlockquoteData as BlockquoteData, type index_d$7_BookingData as BookingData, type index_d$7_Border as Border, type index_d$7_BorderColors as BorderColors, type index_d$7_BulletedListData as BulletedListData, type index_d$7_ButtonData as ButtonData, type index_d$7_CellStyle as CellStyle, type index_d$7_CodeBlockData as CodeBlockData, type index_d$7_CollapsibleListData as CollapsibleListData, type index_d$7_ColorData as ColorData, type index_d$7_Colors as Colors, type index_d$7_CreateRichContentRequest as CreateRichContentRequest, type index_d$7_CreateRichContentResponse as CreateRichContentResponse, type index_d$7_CreateRichContentResponseNonNullableFields as CreateRichContentResponseNonNullableFields, index_d$7_Crop as Crop, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$5 as Cursors, type index_d$7_Decoration as Decoration, type index_d$7_DecorationDataOneOf as DecorationDataOneOf, index_d$7_DecorationType as DecorationType, type index_d$7_DeleteRichContentRequest as DeleteRichContentRequest, type index_d$7_DeleteRichContentResponse as DeleteRichContentResponse, type index_d$7_Design as Design, type index_d$7_Dimensions as Dimensions, index_d$7_Direction as Direction, type index_d$7_DividerData as DividerData, type index_d$7_DocumentStyle as DocumentStyle, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type index_d$7_EmbedData as EmbedData, type Empty$4 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventCopied$2 as EventCopied, type index_d$7_EventData as EventData, type EventDeleted$3 as EventDeleted, type EventMetadata$3 as EventMetadata, EventStatus$4 as EventStatus, type ExtendedFields$2 as ExtendedFields, type index_d$7_FileData as FileData, type index_d$7_FileSource as FileSource, type index_d$7_FileSourceDataOneOf as FileSourceDataOneOf, type index_d$7_FindRichContentBySlugIdentifiers as FindRichContentBySlugIdentifiers, type index_d$7_FindRichContentBySlugRequest as FindRichContentBySlugRequest, type index_d$7_FindRichContentBySlugResponse as FindRichContentBySlugResponse, type index_d$7_FindRichContentBySlugResponseNonNullableFields as FindRichContentBySlugResponseNonNullableFields, type index_d$7_FontSizeData as FontSizeData, index_d$7_FontType as FontType, type index_d$7_GIF as GIF, type index_d$7_GIFData as GIFData, type index_d$7_GalleryData as GalleryData, type index_d$7_GalleryOptions as GalleryOptions, type index_d$7_GetOrCreateRichContentRequest as GetOrCreateRichContentRequest, type index_d$7_GetOrCreateRichContentResponse as GetOrCreateRichContentResponse, type index_d$7_GetRichContentRequest as GetRichContentRequest, type index_d$7_GetRichContentResponse as GetRichContentResponse, type index_d$7_GetRichContentResponseNonNullableFields as GetRichContentResponseNonNullableFields, type index_d$7_Gradient as Gradient, type index_d$7_HTMLData as HTMLData, type index_d$7_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$7_HeadingData as HeadingData, type index_d$7_Height as Height, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, type index_d$7_Image as Image, type index_d$7_ImageData as ImageData, index_d$7_InitialExpandedItems as InitialExpandedItems, type index_d$7_Item as Item, type index_d$7_ItemDataOneOf as ItemDataOneOf, type index_d$7_ItemStyle as ItemStyle, type index_d$7_Layout as Layout, index_d$7_LayoutType as LayoutType, index_d$7_LineStyle as LineStyle, type index_d$7_Link as Link, type index_d$7_LinkData as LinkData, type index_d$7_LinkDataOneOf as LinkDataOneOf, type index_d$7_LinkPreviewData as LinkPreviewData, type index_d$7_ListValue as ListValue, type Location$4 as Location, LocationType$4 as LocationType, type MapCoordinates$4 as MapCoordinates, type index_d$7_MapData as MapData, type index_d$7_MapSettings as MapSettings, index_d$7_MapType as MapType, type index_d$7_Media as Media, type index_d$7_MentionData as MentionData, type MessageEnvelope$7 as MessageEnvelope, type index_d$7_Metadata as Metadata, type index_d$7_Node as Node, type index_d$7_NodeDataOneOf as NodeDataOneOf, type index_d$7_NodeStyle as NodeStyle, index_d$7_NodeType as NodeType, index_d$7_NullValue as NullValue, type Occurrence$4 as Occurrence, type index_d$7_Oembed as Oembed, type index_d$7_Option as Option, type index_d$7_OptionDesign as OptionDesign, type index_d$7_OptionLayout as OptionLayout, type index_d$7_OrderedListData as OrderedListData, index_d$7_Orientation as Orientation, type index_d$7_PDFSettings as PDFSettings, type index_d$7_ParagraphData as ParagraphData, type index_d$7_Permissions as Permissions, type index_d$7_PlaybackOptions as PlaybackOptions, type index_d$7_PluginContainerData as PluginContainerData, index_d$7_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$7_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$7_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$7_Poll as Poll, type index_d$7_PollData as PollData, type index_d$7_PollDataLayout as PollDataLayout, type index_d$7_PollDesign as PollDesign, type index_d$7_PollLayout as PollLayout, index_d$7_PollLayoutDirection as PollLayoutDirection, index_d$7_PollLayoutType as PollLayoutType, type index_d$7_QueryRichContentsRequest as QueryRichContentsRequest, type index_d$7_QueryRichContentsResponse as QueryRichContentsResponse, type index_d$7_QueryRichContentsResponseNonNullableFields as QueryRichContentsResponseNonNullableFields, type Recurrences$4 as Recurrences, type index_d$7_Rel as Rel, type RestoreInfo$4 as RestoreInfo, type index_d$7_RichContent as RichContent, type index_d$7_RichContentCreatedEnvelope as RichContentCreatedEnvelope, type index_d$7_RichContentDeletedEnvelope as RichContentDeletedEnvelope, type index_d$7_RichContentNonNullableFields as RichContentNonNullableFields, type index_d$7_RichContentUpdatedEnvelope as RichContentUpdatedEnvelope, type index_d$7_RichContentsQueryBuilder as RichContentsQueryBuilder, type index_d$7_RichContentsQueryResult as RichContentsQueryResult, type ScheduleConfig$4 as ScheduleConfig, type Settings$3 as Settings, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, index_d$7_Source as Source, type index_d$7_Spoiler as Spoiler, type index_d$7_SpoilerData as SpoilerData, Status$4 as Status, type StreetAddress$6 as StreetAddress, type index_d$7_Styles as Styles, type Subdivision$6 as Subdivision, SubdivisionType$6 as SubdivisionType, type index_d$7_TableCellData as TableCellData, type index_d$7_TableData as TableData, index_d$7_Target as Target, index_d$7_TextAlignment as TextAlignment, type index_d$7_TextData as TextData, type index_d$7_TextNodeStyle as TextNodeStyle, type index_d$7_TextStyle as TextStyle, type index_d$7_Thumbnails as Thumbnails, index_d$7_ThumbnailsAlignment as ThumbnailsAlignment, Type$3 as Type, type index_d$7_UpdateRichContent as UpdateRichContent, type index_d$7_UpdateRichContentRequest as UpdateRichContentRequest, type index_d$7_UpdateRichContentResponse as UpdateRichContentResponse, type index_d$7_UpdateRichContentResponseNonNullableFields as UpdateRichContentResponseNonNullableFields, type index_d$7_V1RichContent as V1RichContent, index_d$7_VerticalAlignment as VerticalAlignment, type index_d$7_Video as Video, type index_d$7_VideoData as VideoData, index_d$7_ViewMode as ViewMode, index_d$7_ViewRole as ViewRole, index_d$7_VoteRole as VoteRole, WebhookIdentityType$7 as WebhookIdentityType, index_d$7_Width as Width, index_d$7_WidthType as WidthType, type index_d$7__publicOnRichContentCreatedType as _publicOnRichContentCreatedType, type index_d$7__publicOnRichContentDeletedType as _publicOnRichContentDeletedType, type index_d$7__publicOnRichContentUpdatedType as _publicOnRichContentUpdatedType, index_d$7_createRichContent as createRichContent, index_d$7_deleteRichContent as deleteRichContent, index_d$7_findRichContentBySlug as findRichContentBySlug, index_d$7_getRichContent as getRichContent, index_d$7_onRichContentCreated as onRichContentCreated, index_d$7_onRichContentDeleted as onRichContentDeleted, index_d$7_onRichContentUpdated as onRichContentUpdated, onRichContentCreated$1 as publicOnRichContentCreated, onRichContentDeleted$1 as publicOnRichContentDeleted, onRichContentUpdated$1 as publicOnRichContentUpdated, index_d$7_queryRichContents as queryRichContents, index_d$7_updateRichContent as updateRichContent };
|
|
13192
|
+
export { type ActionEvent$4 as ActionEvent, type Address$6 as Address, type AddressLocation$6 as AddressLocation, type AddressStreetOneOf$6 as AddressStreetOneOf, index_d$7_Alignment as Alignment, type index_d$7_AnchorData as AnchorData, type index_d$7_AppEmbedData as AppEmbedData, type index_d$7_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$7_AppType as AppType, type index_d$7_AudioData as AudioData, type index_d$7_Background as Background, type index_d$7_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$7_BackgroundType as BackgroundType, type BaseEventMetadata$6 as BaseEventMetadata, type index_d$7_BlockquoteData as BlockquoteData, type index_d$7_BookingData as BookingData, type index_d$7_Border as Border, type index_d$7_BorderColors as BorderColors, type index_d$7_BulletedListData as BulletedListData, type index_d$7_ButtonData as ButtonData, type index_d$7_CaptionData as CaptionData, type index_d$7_CellStyle as CellStyle, type index_d$7_CodeBlockData as CodeBlockData, type index_d$7_CollapsibleListData as CollapsibleListData, type index_d$7_ColorData as ColorData, type index_d$7_Colors as Colors, type index_d$7_CreateRichContentRequest as CreateRichContentRequest, type index_d$7_CreateRichContentResponse as CreateRichContentResponse, type index_d$7_CreateRichContentResponseNonNullableFields as CreateRichContentResponseNonNullableFields, index_d$7_Crop as Crop, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$5 as Cursors, type index_d$7_Decoration as Decoration, type index_d$7_DecorationDataOneOf as DecorationDataOneOf, index_d$7_DecorationType as DecorationType, type index_d$7_DeleteRichContentRequest as DeleteRichContentRequest, type index_d$7_DeleteRichContentResponse as DeleteRichContentResponse, type index_d$7_Design as Design, type index_d$7_Dimensions as Dimensions, index_d$7_Direction as Direction, type index_d$7_DividerData as DividerData, type index_d$7_DocumentStyle as DocumentStyle, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type index_d$7_EmbedData as EmbedData, type Empty$4 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventCopied$2 as EventCopied, type index_d$7_EventData as EventData, type EventDeleted$3 as EventDeleted, type EventMetadata$3 as EventMetadata, EventStatus$4 as EventStatus, type ExtendedFields$2 as ExtendedFields, type index_d$7_FileData as FileData, type index_d$7_FileSource as FileSource, type index_d$7_FileSourceDataOneOf as FileSourceDataOneOf, type index_d$7_FindRichContentBySlugIdentifiers as FindRichContentBySlugIdentifiers, type index_d$7_FindRichContentBySlugRequest as FindRichContentBySlugRequest, type index_d$7_FindRichContentBySlugResponse as FindRichContentBySlugResponse, type index_d$7_FindRichContentBySlugResponseNonNullableFields as FindRichContentBySlugResponseNonNullableFields, type index_d$7_FontSizeData as FontSizeData, index_d$7_FontType as FontType, type index_d$7_GIF as GIF, type index_d$7_GIFData as GIFData, type index_d$7_GalleryData as GalleryData, type index_d$7_GalleryOptions as GalleryOptions, type index_d$7_GetOrCreateRichContentRequest as GetOrCreateRichContentRequest, type index_d$7_GetOrCreateRichContentResponse as GetOrCreateRichContentResponse, type index_d$7_GetRichContentRequest as GetRichContentRequest, type index_d$7_GetRichContentResponse as GetRichContentResponse, type index_d$7_GetRichContentResponseNonNullableFields as GetRichContentResponseNonNullableFields, type index_d$7_Gradient as Gradient, type index_d$7_HTMLData as HTMLData, type index_d$7_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$7_HeadingData as HeadingData, type index_d$7_Height as Height, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, type index_d$7_Image as Image, type index_d$7_ImageData as ImageData, index_d$7_InitialExpandedItems as InitialExpandedItems, type index_d$7_Item as Item, type index_d$7_ItemDataOneOf as ItemDataOneOf, type index_d$7_ItemStyle as ItemStyle, type index_d$7_Layout as Layout, index_d$7_LayoutType as LayoutType, index_d$7_LineStyle as LineStyle, type index_d$7_Link as Link, type index_d$7_LinkData as LinkData, type index_d$7_LinkDataOneOf as LinkDataOneOf, type index_d$7_LinkPreviewData as LinkPreviewData, type index_d$7_ListValue as ListValue, type Location$4 as Location, LocationType$4 as LocationType, type MapCoordinates$4 as MapCoordinates, type index_d$7_MapData as MapData, type index_d$7_MapSettings as MapSettings, index_d$7_MapType as MapType, type index_d$7_Media as Media, type index_d$7_MentionData as MentionData, type MessageEnvelope$7 as MessageEnvelope, type index_d$7_Metadata as Metadata, type index_d$7_Node as Node, type index_d$7_NodeDataOneOf as NodeDataOneOf, type index_d$7_NodeStyle as NodeStyle, index_d$7_NodeType as NodeType, index_d$7_NullValue as NullValue, type Occurrence$4 as Occurrence, type index_d$7_Oembed as Oembed, type index_d$7_Option as Option, type index_d$7_OptionDesign as OptionDesign, type index_d$7_OptionLayout as OptionLayout, type index_d$7_OrderedListData as OrderedListData, index_d$7_Orientation as Orientation, type index_d$7_PDFSettings as PDFSettings, type index_d$7_ParagraphData as ParagraphData, type index_d$7_Permissions as Permissions, type index_d$7_PlaybackOptions as PlaybackOptions, type index_d$7_PluginContainerData as PluginContainerData, index_d$7_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$7_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$7_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$7_Poll as Poll, type index_d$7_PollData as PollData, type index_d$7_PollDataLayout as PollDataLayout, type index_d$7_PollDesign as PollDesign, type index_d$7_PollLayout as PollLayout, index_d$7_PollLayoutDirection as PollLayoutDirection, index_d$7_PollLayoutType as PollLayoutType, type index_d$7_QueryRichContentsRequest as QueryRichContentsRequest, type index_d$7_QueryRichContentsResponse as QueryRichContentsResponse, type index_d$7_QueryRichContentsResponseNonNullableFields as QueryRichContentsResponseNonNullableFields, type Recurrences$4 as Recurrences, type index_d$7_Rel as Rel, type RestoreInfo$4 as RestoreInfo, type index_d$7_RichContent as RichContent, type index_d$7_RichContentCreatedEnvelope as RichContentCreatedEnvelope, type index_d$7_RichContentDeletedEnvelope as RichContentDeletedEnvelope, type index_d$7_RichContentNonNullableFields as RichContentNonNullableFields, type index_d$7_RichContentUpdatedEnvelope as RichContentUpdatedEnvelope, type index_d$7_RichContentsQueryBuilder as RichContentsQueryBuilder, type index_d$7_RichContentsQueryResult as RichContentsQueryResult, type ScheduleConfig$4 as ScheduleConfig, type Settings$3 as Settings, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, index_d$7_Source as Source, type index_d$7_Spoiler as Spoiler, type index_d$7_SpoilerData as SpoilerData, Status$4 as Status, type StreetAddress$6 as StreetAddress, type index_d$7_Styles as Styles, type Subdivision$6 as Subdivision, SubdivisionType$6 as SubdivisionType, type index_d$7_TableCellData as TableCellData, type index_d$7_TableData as TableData, index_d$7_Target as Target, index_d$7_TextAlignment as TextAlignment, type index_d$7_TextData as TextData, type index_d$7_TextNodeStyle as TextNodeStyle, type index_d$7_TextStyle as TextStyle, type index_d$7_Thumbnails as Thumbnails, index_d$7_ThumbnailsAlignment as ThumbnailsAlignment, Type$3 as Type, type index_d$7_UpdateRichContent as UpdateRichContent, type index_d$7_UpdateRichContentRequest as UpdateRichContentRequest, type index_d$7_UpdateRichContentResponse as UpdateRichContentResponse, type index_d$7_UpdateRichContentResponseNonNullableFields as UpdateRichContentResponseNonNullableFields, type index_d$7_V1RichContent as V1RichContent, index_d$7_VerticalAlignment as VerticalAlignment, type index_d$7_Video as Video, type index_d$7_VideoData as VideoData, index_d$7_ViewMode as ViewMode, index_d$7_ViewRole as ViewRole, index_d$7_VoteRole as VoteRole, WebhookIdentityType$7 as WebhookIdentityType, index_d$7_Width as Width, index_d$7_WidthType as WidthType, type index_d$7__publicOnRichContentCreatedType as _publicOnRichContentCreatedType, type index_d$7__publicOnRichContentDeletedType as _publicOnRichContentDeletedType, type index_d$7__publicOnRichContentUpdatedType as _publicOnRichContentUpdatedType, index_d$7_createRichContent as createRichContent, index_d$7_deleteRichContent as deleteRichContent, index_d$7_findRichContentBySlug as findRichContentBySlug, index_d$7_getRichContent as getRichContent, index_d$7_onRichContentCreated as onRichContentCreated, index_d$7_onRichContentDeleted as onRichContentDeleted, index_d$7_onRichContentUpdated as onRichContentUpdated, onRichContentCreated$1 as publicOnRichContentCreated, onRichContentDeleted$1 as publicOnRichContentDeleted, onRichContentUpdated$1 as publicOnRichContentUpdated, index_d$7_queryRichContents as queryRichContents, index_d$7_updateRichContent as updateRichContent };
|
|
13177
13193
|
}
|
|
13178
13194
|
|
|
13179
13195
|
interface RsvpRsvp {
|
|
@@ -7301,6 +7301,8 @@ interface Node$1 extends NodeDataOneOf$1 {
|
|
|
7301
7301
|
bulletedListData?: BulletedListData$1;
|
|
7302
7302
|
/** Data for a block quote node. */
|
|
7303
7303
|
blockquoteData?: BlockquoteData$1;
|
|
7304
|
+
/** Data for a caption node. */
|
|
7305
|
+
captionData?: CaptionData$1;
|
|
7304
7306
|
/** 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. */
|
|
7305
7307
|
type?: NodeType$1;
|
|
7306
7308
|
/** Node ID. */
|
|
@@ -7362,6 +7364,8 @@ interface NodeDataOneOf$1 {
|
|
|
7362
7364
|
bulletedListData?: BulletedListData$1;
|
|
7363
7365
|
/** Data for a block quote node. */
|
|
7364
7366
|
blockquoteData?: BlockquoteData$1;
|
|
7367
|
+
/** Data for a caption node. */
|
|
7368
|
+
captionData?: CaptionData$1;
|
|
7365
7369
|
}
|
|
7366
7370
|
declare enum NodeType$1 {
|
|
7367
7371
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -7393,7 +7397,8 @@ declare enum NodeType$1 {
|
|
|
7393
7397
|
TABLE_CELL = "TABLE_CELL",
|
|
7394
7398
|
TABLE_ROW = "TABLE_ROW",
|
|
7395
7399
|
EXTERNAL = "EXTERNAL",
|
|
7396
|
-
AUDIO = "AUDIO"
|
|
7400
|
+
AUDIO = "AUDIO",
|
|
7401
|
+
CAPTION = "CAPTION"
|
|
7397
7402
|
}
|
|
7398
7403
|
interface NodeStyle$1 {
|
|
7399
7404
|
/** The top padding value in pixels. */
|
|
@@ -7883,7 +7888,10 @@ interface ImageData$1 {
|
|
|
7883
7888
|
disableExpand?: boolean | null;
|
|
7884
7889
|
/** Image's alternative text. */
|
|
7885
7890
|
altText?: string | null;
|
|
7886
|
-
/**
|
|
7891
|
+
/**
|
|
7892
|
+
* Deprecated: use Caption node instead.
|
|
7893
|
+
* @deprecated
|
|
7894
|
+
*/
|
|
7887
7895
|
caption?: string | null;
|
|
7888
7896
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
7889
7897
|
disableDownload?: boolean | null;
|
|
@@ -8409,6 +8417,9 @@ interface BlockquoteData$1 {
|
|
|
8409
8417
|
/** Indentation level from 1-4. */
|
|
8410
8418
|
indentation?: number;
|
|
8411
8419
|
}
|
|
8420
|
+
interface CaptionData$1 {
|
|
8421
|
+
textStyle?: TextStyle$1;
|
|
8422
|
+
}
|
|
8412
8423
|
interface Metadata$1 {
|
|
8413
8424
|
/** Schema version. */
|
|
8414
8425
|
version?: number;
|
|
@@ -8769,6 +8780,9 @@ interface BulletedListDataNonNullableFields$1 {
|
|
|
8769
8780
|
interface BlockquoteDataNonNullableFields$1 {
|
|
8770
8781
|
indentation: number;
|
|
8771
8782
|
}
|
|
8783
|
+
interface CaptionDataNonNullableFields$1 {
|
|
8784
|
+
textStyle?: TextStyleNonNullableFields$1;
|
|
8785
|
+
}
|
|
8772
8786
|
interface NodeNonNullableFields$1 {
|
|
8773
8787
|
buttonData?: ButtonDataNonNullableFields$1;
|
|
8774
8788
|
codeBlockData?: CodeBlockDataNonNullableFields$1;
|
|
@@ -8794,6 +8808,7 @@ interface NodeNonNullableFields$1 {
|
|
|
8794
8808
|
orderedListData?: OrderedListDataNonNullableFields$1;
|
|
8795
8809
|
bulletedListData?: BulletedListDataNonNullableFields$1;
|
|
8796
8810
|
blockquoteData?: BlockquoteDataNonNullableFields$1;
|
|
8811
|
+
captionData?: CaptionDataNonNullableFields$1;
|
|
8797
8812
|
type: NodeType$1;
|
|
8798
8813
|
id: string;
|
|
8799
8814
|
nodes: NodeNonNullableFields$1[];
|
|
@@ -8934,6 +8949,8 @@ interface Node extends NodeDataOneOf {
|
|
|
8934
8949
|
bulletedListData?: BulletedListData;
|
|
8935
8950
|
/** Data for a block quote node. */
|
|
8936
8951
|
blockquoteData?: BlockquoteData;
|
|
8952
|
+
/** Data for a caption node. */
|
|
8953
|
+
captionData?: CaptionData;
|
|
8937
8954
|
/** 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. */
|
|
8938
8955
|
type?: NodeType;
|
|
8939
8956
|
/** Node ID. */
|
|
@@ -8995,6 +9012,8 @@ interface NodeDataOneOf {
|
|
|
8995
9012
|
bulletedListData?: BulletedListData;
|
|
8996
9013
|
/** Data for a block quote node. */
|
|
8997
9014
|
blockquoteData?: BlockquoteData;
|
|
9015
|
+
/** Data for a caption node. */
|
|
9016
|
+
captionData?: CaptionData;
|
|
8998
9017
|
}
|
|
8999
9018
|
declare enum NodeType {
|
|
9000
9019
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -9026,7 +9045,8 @@ declare enum NodeType {
|
|
|
9026
9045
|
TABLE_CELL = "TABLE_CELL",
|
|
9027
9046
|
TABLE_ROW = "TABLE_ROW",
|
|
9028
9047
|
EXTERNAL = "EXTERNAL",
|
|
9029
|
-
AUDIO = "AUDIO"
|
|
9048
|
+
AUDIO = "AUDIO",
|
|
9049
|
+
CAPTION = "CAPTION"
|
|
9030
9050
|
}
|
|
9031
9051
|
interface NodeStyle {
|
|
9032
9052
|
/** The top padding value in pixels. */
|
|
@@ -9516,7 +9536,10 @@ interface ImageData {
|
|
|
9516
9536
|
disableExpand?: boolean | null;
|
|
9517
9537
|
/** Image's alternative text. */
|
|
9518
9538
|
altText?: string | null;
|
|
9519
|
-
/**
|
|
9539
|
+
/**
|
|
9540
|
+
* Deprecated: use Caption node instead.
|
|
9541
|
+
* @deprecated
|
|
9542
|
+
*/
|
|
9520
9543
|
caption?: string | null;
|
|
9521
9544
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
9522
9545
|
disableDownload?: boolean | null;
|
|
@@ -10042,6 +10065,9 @@ interface BlockquoteData {
|
|
|
10042
10065
|
/** Indentation level from 1-4. */
|
|
10043
10066
|
indentation?: number;
|
|
10044
10067
|
}
|
|
10068
|
+
interface CaptionData {
|
|
10069
|
+
textStyle?: TextStyle;
|
|
10070
|
+
}
|
|
10045
10071
|
interface Metadata {
|
|
10046
10072
|
/** Schema version. */
|
|
10047
10073
|
version?: number;
|
|
@@ -10402,6 +10428,9 @@ interface BulletedListDataNonNullableFields {
|
|
|
10402
10428
|
interface BlockquoteDataNonNullableFields {
|
|
10403
10429
|
indentation: number;
|
|
10404
10430
|
}
|
|
10431
|
+
interface CaptionDataNonNullableFields {
|
|
10432
|
+
textStyle?: TextStyleNonNullableFields;
|
|
10433
|
+
}
|
|
10405
10434
|
interface NodeNonNullableFields {
|
|
10406
10435
|
buttonData?: ButtonDataNonNullableFields;
|
|
10407
10436
|
codeBlockData?: CodeBlockDataNonNullableFields;
|
|
@@ -10427,6 +10456,7 @@ interface NodeNonNullableFields {
|
|
|
10427
10456
|
orderedListData?: OrderedListDataNonNullableFields;
|
|
10428
10457
|
bulletedListData?: BulletedListDataNonNullableFields;
|
|
10429
10458
|
blockquoteData?: BlockquoteDataNonNullableFields;
|
|
10459
|
+
captionData?: CaptionDataNonNullableFields;
|
|
10430
10460
|
type: NodeType;
|
|
10431
10461
|
_id: string;
|
|
10432
10462
|
nodes: NodeNonNullableFields[];
|