@wix/events 1.0.327 → 1.0.329

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.327",
3
+ "version": "1.0.329",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -22,11 +22,11 @@
22
22
  "@wix/events_forms": "1.0.50",
23
23
  "@wix/events_guests": "1.0.74",
24
24
  "@wix/events_notifications": "1.0.37",
25
- "@wix/events_orders": "1.0.55",
25
+ "@wix/events_orders": "1.0.56",
26
26
  "@wix/events_policies": "1.0.45",
27
- "@wix/events_ricos": "1.0.10",
27
+ "@wix/events_ricos": "1.0.11",
28
28
  "@wix/events_rsvp": "1.0.48",
29
- "@wix/events_rsvp-v-2": "1.0.18",
29
+ "@wix/events_rsvp-v-2": "1.0.19",
30
30
  "@wix/events_schedule": "1.0.42",
31
31
  "@wix/events_schedule-bookmarks": "1.0.38",
32
32
  "@wix/events_staff-members": "1.0.19",
@@ -58,5 +58,5 @@
58
58
  "fqdn": ""
59
59
  }
60
60
  },
61
- "falconPackageHash": "a86ca602ce5dada837dae29ac09ed2d399485c693209bdeb5fc8df36"
61
+ "falconPackageHash": "3e348e7c15a73aa4c8267263587843d187b373663eb87e79354858be"
62
62
  }
@@ -10151,6 +10151,8 @@ interface GetInvoiceResponseNonNullableFields {
10151
10151
  reservationStatus: ReservationStatus$1;
10152
10152
  reservationOccupied: boolean;
10153
10153
  reservations: TicketReservationNonNullableFields[];
10154
+ giftCardPaymentDetails: GiftCardPaymentDetailsNonNullableFields[];
10155
+ balanceSummary?: BalanceSummaryNonNullableFields;
10154
10156
  }
10155
10157
  interface CheckoutResponseNonNullableFields {
10156
10158
  order?: OrderNonNullableFields;
@@ -10868,6 +10870,8 @@ interface Node extends NodeDataOneOf {
10868
10870
  bulletedListData?: BulletedListData;
10869
10871
  /** Data for a block quote node. */
10870
10872
  blockquoteData?: BlockquoteData;
10873
+ /** Data for a caption node. */
10874
+ captionData?: CaptionData;
10871
10875
  /** 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
10876
  type?: NodeType;
10873
10877
  /** Node ID. */
@@ -10929,6 +10933,8 @@ interface NodeDataOneOf {
10929
10933
  bulletedListData?: BulletedListData;
10930
10934
  /** Data for a block quote node. */
10931
10935
  blockquoteData?: BlockquoteData;
10936
+ /** Data for a caption node. */
10937
+ captionData?: CaptionData;
10932
10938
  }
10933
10939
  declare enum NodeType {
10934
10940
  PARAGRAPH = "PARAGRAPH",
@@ -10960,7 +10966,8 @@ declare enum NodeType {
10960
10966
  TABLE_CELL = "TABLE_CELL",
10961
10967
  TABLE_ROW = "TABLE_ROW",
10962
10968
  EXTERNAL = "EXTERNAL",
10963
- AUDIO = "AUDIO"
10969
+ AUDIO = "AUDIO",
10970
+ CAPTION = "CAPTION"
10964
10971
  }
10965
10972
  interface NodeStyle {
10966
10973
  /** The top padding value in pixels. */
@@ -11450,7 +11457,10 @@ interface ImageData {
11450
11457
  disableExpand?: boolean | null;
11451
11458
  /** Image's alternative text. */
11452
11459
  altText?: string | null;
11453
- /** Image caption. */
11460
+ /**
11461
+ * Deprecated: use Caption node instead.
11462
+ * @deprecated
11463
+ */
11454
11464
  caption?: string | null;
11455
11465
  /** Sets whether the image's download button is disabled. Defaults to `false`. */
11456
11466
  disableDownload?: boolean | null;
@@ -11995,6 +12005,9 @@ interface BlockquoteData {
11995
12005
  /** Indentation level from 1-4. */
11996
12006
  indentation?: number;
11997
12007
  }
12008
+ interface CaptionData {
12009
+ textStyle?: TextStyle;
12010
+ }
11998
12011
  interface Metadata {
11999
12012
  /** Schema version. */
12000
12013
  version?: number;
@@ -12680,6 +12693,9 @@ interface BulletedListDataNonNullableFields {
12680
12693
  interface BlockquoteDataNonNullableFields {
12681
12694
  indentation: number;
12682
12695
  }
12696
+ interface CaptionDataNonNullableFields {
12697
+ textStyle?: TextStyleNonNullableFields;
12698
+ }
12683
12699
  interface NodeNonNullableFields {
12684
12700
  buttonData?: ButtonDataNonNullableFields;
12685
12701
  codeBlockData?: CodeBlockDataNonNullableFields;
@@ -12705,6 +12721,7 @@ interface NodeNonNullableFields {
12705
12721
  orderedListData?: OrderedListDataNonNullableFields;
12706
12722
  bulletedListData?: BulletedListDataNonNullableFields;
12707
12723
  blockquoteData?: BlockquoteDataNonNullableFields;
12724
+ captionData?: CaptionDataNonNullableFields;
12708
12725
  type: NodeType;
12709
12726
  _id: string;
12710
12727
  nodes: NodeNonNullableFields[];
@@ -13009,6 +13026,7 @@ type context$7_Border = Border;
13009
13026
  type context$7_BorderColors = BorderColors;
13010
13027
  type context$7_BulletedListData = BulletedListData;
13011
13028
  type context$7_ButtonData = ButtonData;
13029
+ type context$7_CaptionData = CaptionData;
13012
13030
  type context$7_CellStyle = CellStyle;
13013
13031
  type context$7_CodeBlockData = CodeBlockData;
13014
13032
  type context$7_CollapsibleListData = CollapsibleListData;
@@ -13173,7 +13191,7 @@ declare const context$7_onRichContentUpdated: typeof onRichContentUpdated;
13173
13191
  declare const context$7_queryRichContents: typeof queryRichContents;
13174
13192
  declare const context$7_updateRichContent: typeof updateRichContent;
13175
13193
  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 };
13194
+ 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
13195
  }
13178
13196
 
13179
13197
  interface RsvpRsvp {
@@ -19293,7 +19311,15 @@ interface CancelRsvpGuestsCheckInOptions {
19293
19311
 
19294
19312
  declare function searchRsvps$1(httpClient: HttpClient): SearchRsvpsSignature;
19295
19313
  interface SearchRsvpsSignature {
19296
- /** */
19314
+ /**
19315
+ * Retrieves a list of RSVPs with aggregation data, given the provided paging, filtering, and sorting.
19316
+ * Search RSVP runs with these defaults, which you can override:
19317
+ * - `createdDate` is sorted in `ASC` order
19318
+ * - `paging.limit` is `100`
19319
+ * - `paging.offset` is `0`
19320
+ * For field support for filters and sorting, see [RSVP v2: Supported Filters and Sorting]().
19321
+ * To learn about working with _Search_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language), [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/pagination), and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
19322
+ */
19297
19323
  (options?: SearchRsvpsOptions | undefined): Promise<SearchRsvpsResponse & SearchRsvpsResponseNonNullableFields>;
19298
19324
  }
19299
19325
  declare function queryRsvps$1(httpClient: HttpClient): QueryRsvpsSignature;
@@ -10151,6 +10151,8 @@ interface GetInvoiceResponseNonNullableFields {
10151
10151
  reservationStatus: ReservationStatus$1;
10152
10152
  reservationOccupied: boolean;
10153
10153
  reservations: TicketReservationNonNullableFields[];
10154
+ giftCardPaymentDetails: GiftCardPaymentDetailsNonNullableFields[];
10155
+ balanceSummary?: BalanceSummaryNonNullableFields;
10154
10156
  }
10155
10157
  interface CheckoutResponseNonNullableFields {
10156
10158
  order?: OrderNonNullableFields;
@@ -10868,6 +10870,8 @@ interface Node extends NodeDataOneOf {
10868
10870
  bulletedListData?: BulletedListData;
10869
10871
  /** Data for a block quote node. */
10870
10872
  blockquoteData?: BlockquoteData;
10873
+ /** Data for a caption node. */
10874
+ captionData?: CaptionData;
10871
10875
  /** 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
10876
  type?: NodeType;
10873
10877
  /** Node ID. */
@@ -10929,6 +10933,8 @@ interface NodeDataOneOf {
10929
10933
  bulletedListData?: BulletedListData;
10930
10934
  /** Data for a block quote node. */
10931
10935
  blockquoteData?: BlockquoteData;
10936
+ /** Data for a caption node. */
10937
+ captionData?: CaptionData;
10932
10938
  }
10933
10939
  declare enum NodeType {
10934
10940
  PARAGRAPH = "PARAGRAPH",
@@ -10960,7 +10966,8 @@ declare enum NodeType {
10960
10966
  TABLE_CELL = "TABLE_CELL",
10961
10967
  TABLE_ROW = "TABLE_ROW",
10962
10968
  EXTERNAL = "EXTERNAL",
10963
- AUDIO = "AUDIO"
10969
+ AUDIO = "AUDIO",
10970
+ CAPTION = "CAPTION"
10964
10971
  }
10965
10972
  interface NodeStyle {
10966
10973
  /** The top padding value in pixels. */
@@ -11450,7 +11457,10 @@ interface ImageData {
11450
11457
  disableExpand?: boolean | null;
11451
11458
  /** Image's alternative text. */
11452
11459
  altText?: string | null;
11453
- /** Image caption. */
11460
+ /**
11461
+ * Deprecated: use Caption node instead.
11462
+ * @deprecated
11463
+ */
11454
11464
  caption?: string | null;
11455
11465
  /** Sets whether the image's download button is disabled. Defaults to `false`. */
11456
11466
  disableDownload?: boolean | null;
@@ -11995,6 +12005,9 @@ interface BlockquoteData {
11995
12005
  /** Indentation level from 1-4. */
11996
12006
  indentation?: number;
11997
12007
  }
12008
+ interface CaptionData {
12009
+ textStyle?: TextStyle;
12010
+ }
11998
12011
  interface Metadata {
11999
12012
  /** Schema version. */
12000
12013
  version?: number;
@@ -12680,6 +12693,9 @@ interface BulletedListDataNonNullableFields {
12680
12693
  interface BlockquoteDataNonNullableFields {
12681
12694
  indentation: number;
12682
12695
  }
12696
+ interface CaptionDataNonNullableFields {
12697
+ textStyle?: TextStyleNonNullableFields;
12698
+ }
12683
12699
  interface NodeNonNullableFields {
12684
12700
  buttonData?: ButtonDataNonNullableFields;
12685
12701
  codeBlockData?: CodeBlockDataNonNullableFields;
@@ -12705,6 +12721,7 @@ interface NodeNonNullableFields {
12705
12721
  orderedListData?: OrderedListDataNonNullableFields;
12706
12722
  bulletedListData?: BulletedListDataNonNullableFields;
12707
12723
  blockquoteData?: BlockquoteDataNonNullableFields;
12724
+ captionData?: CaptionDataNonNullableFields;
12708
12725
  type: NodeType;
12709
12726
  _id: string;
12710
12727
  nodes: NodeNonNullableFields[];
@@ -13009,6 +13026,7 @@ type index_d$7_Border = Border;
13009
13026
  type index_d$7_BorderColors = BorderColors;
13010
13027
  type index_d$7_BulletedListData = BulletedListData;
13011
13028
  type index_d$7_ButtonData = ButtonData;
13029
+ type index_d$7_CaptionData = CaptionData;
13012
13030
  type index_d$7_CellStyle = CellStyle;
13013
13031
  type index_d$7_CodeBlockData = CodeBlockData;
13014
13032
  type index_d$7_CollapsibleListData = CollapsibleListData;
@@ -13173,7 +13191,7 @@ declare const index_d$7_onRichContentUpdated: typeof onRichContentUpdated;
13173
13191
  declare const index_d$7_queryRichContents: typeof queryRichContents;
13174
13192
  declare const index_d$7_updateRichContent: typeof updateRichContent;
13175
13193
  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 };
13194
+ 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
13195
  }
13178
13196
 
13179
13197
  interface RsvpRsvp {
@@ -19293,7 +19311,15 @@ interface CancelRsvpGuestsCheckInOptions {
19293
19311
 
19294
19312
  declare function searchRsvps$1(httpClient: HttpClient): SearchRsvpsSignature;
19295
19313
  interface SearchRsvpsSignature {
19296
- /** */
19314
+ /**
19315
+ * Retrieves a list of RSVPs with aggregation data, given the provided paging, filtering, and sorting.
19316
+ * Search RSVP runs with these defaults, which you can override:
19317
+ * - `createdDate` is sorted in `ASC` order
19318
+ * - `paging.limit` is `100`
19319
+ * - `paging.offset` is `0`
19320
+ * For field support for filters and sorting, see [RSVP v2: Supported Filters and Sorting]().
19321
+ * To learn about working with _Search_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language), [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/pagination), and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
19322
+ */
19297
19323
  (options?: SearchRsvpsOptions | undefined): Promise<SearchRsvpsResponse & SearchRsvpsResponseNonNullableFields>;
19298
19324
  }
19299
19325
  declare function queryRsvps$1(httpClient: HttpClient): QueryRsvpsSignature;
@@ -5797,6 +5797,8 @@ interface GetInvoiceResponseNonNullableFields$1 {
5797
5797
  reservationStatus: ReservationStatus$1;
5798
5798
  reservationOccupied: boolean;
5799
5799
  reservations: TicketReservationNonNullableFields$1[];
5800
+ giftCardPaymentDetails: GiftCardPaymentDetailsNonNullableFields$1[];
5801
+ balanceSummary?: BalanceSummaryNonNullableFields$1;
5800
5802
  }
5801
5803
  interface CheckoutResponseNonNullableFields$1 {
5802
5804
  order?: OrderNonNullableFields$1;
@@ -7124,6 +7126,8 @@ interface GetInvoiceResponseNonNullableFields {
7124
7126
  reservationStatus: ReservationStatus;
7125
7127
  reservationOccupied: boolean;
7126
7128
  reservations: TicketReservationNonNullableFields[];
7129
+ giftCardPaymentDetails: GiftCardPaymentDetailsNonNullableFields[];
7130
+ balanceSummary?: BalanceSummaryNonNullableFields;
7127
7131
  }
7128
7132
  interface CheckoutResponseNonNullableFields {
7129
7133
  order?: OrderNonNullableFields;
@@ -7301,6 +7305,8 @@ interface Node$1 extends NodeDataOneOf$1 {
7301
7305
  bulletedListData?: BulletedListData$1;
7302
7306
  /** Data for a block quote node. */
7303
7307
  blockquoteData?: BlockquoteData$1;
7308
+ /** Data for a caption node. */
7309
+ captionData?: CaptionData$1;
7304
7310
  /** 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
7311
  type?: NodeType$1;
7306
7312
  /** Node ID. */
@@ -7362,6 +7368,8 @@ interface NodeDataOneOf$1 {
7362
7368
  bulletedListData?: BulletedListData$1;
7363
7369
  /** Data for a block quote node. */
7364
7370
  blockquoteData?: BlockquoteData$1;
7371
+ /** Data for a caption node. */
7372
+ captionData?: CaptionData$1;
7365
7373
  }
7366
7374
  declare enum NodeType$1 {
7367
7375
  PARAGRAPH = "PARAGRAPH",
@@ -7393,7 +7401,8 @@ declare enum NodeType$1 {
7393
7401
  TABLE_CELL = "TABLE_CELL",
7394
7402
  TABLE_ROW = "TABLE_ROW",
7395
7403
  EXTERNAL = "EXTERNAL",
7396
- AUDIO = "AUDIO"
7404
+ AUDIO = "AUDIO",
7405
+ CAPTION = "CAPTION"
7397
7406
  }
7398
7407
  interface NodeStyle$1 {
7399
7408
  /** The top padding value in pixels. */
@@ -7883,7 +7892,10 @@ interface ImageData$1 {
7883
7892
  disableExpand?: boolean | null;
7884
7893
  /** Image's alternative text. */
7885
7894
  altText?: string | null;
7886
- /** Image caption. */
7895
+ /**
7896
+ * Deprecated: use Caption node instead.
7897
+ * @deprecated
7898
+ */
7887
7899
  caption?: string | null;
7888
7900
  /** Sets whether the image's download button is disabled. Defaults to `false`. */
7889
7901
  disableDownload?: boolean | null;
@@ -8409,6 +8421,9 @@ interface BlockquoteData$1 {
8409
8421
  /** Indentation level from 1-4. */
8410
8422
  indentation?: number;
8411
8423
  }
8424
+ interface CaptionData$1 {
8425
+ textStyle?: TextStyle$1;
8426
+ }
8412
8427
  interface Metadata$1 {
8413
8428
  /** Schema version. */
8414
8429
  version?: number;
@@ -8769,6 +8784,9 @@ interface BulletedListDataNonNullableFields$1 {
8769
8784
  interface BlockquoteDataNonNullableFields$1 {
8770
8785
  indentation: number;
8771
8786
  }
8787
+ interface CaptionDataNonNullableFields$1 {
8788
+ textStyle?: TextStyleNonNullableFields$1;
8789
+ }
8772
8790
  interface NodeNonNullableFields$1 {
8773
8791
  buttonData?: ButtonDataNonNullableFields$1;
8774
8792
  codeBlockData?: CodeBlockDataNonNullableFields$1;
@@ -8794,6 +8812,7 @@ interface NodeNonNullableFields$1 {
8794
8812
  orderedListData?: OrderedListDataNonNullableFields$1;
8795
8813
  bulletedListData?: BulletedListDataNonNullableFields$1;
8796
8814
  blockquoteData?: BlockquoteDataNonNullableFields$1;
8815
+ captionData?: CaptionDataNonNullableFields$1;
8797
8816
  type: NodeType$1;
8798
8817
  id: string;
8799
8818
  nodes: NodeNonNullableFields$1[];
@@ -8934,6 +8953,8 @@ interface Node extends NodeDataOneOf {
8934
8953
  bulletedListData?: BulletedListData;
8935
8954
  /** Data for a block quote node. */
8936
8955
  blockquoteData?: BlockquoteData;
8956
+ /** Data for a caption node. */
8957
+ captionData?: CaptionData;
8937
8958
  /** 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
8959
  type?: NodeType;
8939
8960
  /** Node ID. */
@@ -8995,6 +9016,8 @@ interface NodeDataOneOf {
8995
9016
  bulletedListData?: BulletedListData;
8996
9017
  /** Data for a block quote node. */
8997
9018
  blockquoteData?: BlockquoteData;
9019
+ /** Data for a caption node. */
9020
+ captionData?: CaptionData;
8998
9021
  }
8999
9022
  declare enum NodeType {
9000
9023
  PARAGRAPH = "PARAGRAPH",
@@ -9026,7 +9049,8 @@ declare enum NodeType {
9026
9049
  TABLE_CELL = "TABLE_CELL",
9027
9050
  TABLE_ROW = "TABLE_ROW",
9028
9051
  EXTERNAL = "EXTERNAL",
9029
- AUDIO = "AUDIO"
9052
+ AUDIO = "AUDIO",
9053
+ CAPTION = "CAPTION"
9030
9054
  }
9031
9055
  interface NodeStyle {
9032
9056
  /** The top padding value in pixels. */
@@ -9516,7 +9540,10 @@ interface ImageData {
9516
9540
  disableExpand?: boolean | null;
9517
9541
  /** Image's alternative text. */
9518
9542
  altText?: string | null;
9519
- /** Image caption. */
9543
+ /**
9544
+ * Deprecated: use Caption node instead.
9545
+ * @deprecated
9546
+ */
9520
9547
  caption?: string | null;
9521
9548
  /** Sets whether the image's download button is disabled. Defaults to `false`. */
9522
9549
  disableDownload?: boolean | null;
@@ -10042,6 +10069,9 @@ interface BlockquoteData {
10042
10069
  /** Indentation level from 1-4. */
10043
10070
  indentation?: number;
10044
10071
  }
10072
+ interface CaptionData {
10073
+ textStyle?: TextStyle;
10074
+ }
10045
10075
  interface Metadata {
10046
10076
  /** Schema version. */
10047
10077
  version?: number;
@@ -10402,6 +10432,9 @@ interface BulletedListDataNonNullableFields {
10402
10432
  interface BlockquoteDataNonNullableFields {
10403
10433
  indentation: number;
10404
10434
  }
10435
+ interface CaptionDataNonNullableFields {
10436
+ textStyle?: TextStyleNonNullableFields;
10437
+ }
10405
10438
  interface NodeNonNullableFields {
10406
10439
  buttonData?: ButtonDataNonNullableFields;
10407
10440
  codeBlockData?: CodeBlockDataNonNullableFields;
@@ -10427,6 +10460,7 @@ interface NodeNonNullableFields {
10427
10460
  orderedListData?: OrderedListDataNonNullableFields;
10428
10461
  bulletedListData?: BulletedListDataNonNullableFields;
10429
10462
  blockquoteData?: BlockquoteDataNonNullableFields;
10463
+ captionData?: CaptionDataNonNullableFields;
10430
10464
  type: NodeType;
10431
10465
  _id: string;
10432
10466
  nodes: NodeNonNullableFields[];