@wix/events 1.0.313 → 1.0.315

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.313",
3
+ "version": "1.0.315",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -20,7 +20,7 @@
20
20
  "dependencies": {
21
21
  "@wix/events_categories": "1.0.45",
22
22
  "@wix/events_forms": "1.0.47",
23
- "@wix/events_guests": "1.0.70",
23
+ "@wix/events_guests": "1.0.72",
24
24
  "@wix/events_notifications": "1.0.34",
25
25
  "@wix/events_orders": "1.0.52",
26
26
  "@wix/events_policies": "1.0.43",
@@ -58,5 +58,5 @@
58
58
  "fqdn": ""
59
59
  }
60
60
  },
61
- "falconPackageHash": "eb99a2c67a7c3be5374973225dfb90c9b1d68ad10d25dfbeeb901254"
61
+ "falconPackageHash": "a65825ea36ef22e4ad843df407a9ed84513f7c151c04a265ba97b7df"
62
62
  }
@@ -1132,6 +1132,28 @@ declare enum FeeType$3 {
1132
1132
  /** Fee is added to the ticket price at checkout. */
1133
1133
  FEE_ADDED_AT_CHECKOUT = "FEE_ADDED_AT_CHECKOUT"
1134
1134
  }
1135
+ interface GuestEventCanceled {
1136
+ /** Event guest. */
1137
+ guest?: EventGuest;
1138
+ /** Event context. */
1139
+ event?: EventDetails$1;
1140
+ }
1141
+ interface GuestEventStarts {
1142
+ /** Event guest. */
1143
+ guest?: EventGuest;
1144
+ /** Event context. */
1145
+ event?: EventDetails$1;
1146
+ /** Timing */
1147
+ timing?: Timing;
1148
+ }
1149
+ interface GuestOrderCanceled {
1150
+ /** Event guest. */
1151
+ guest?: EventGuest;
1152
+ /** Event context. */
1153
+ event?: EventDetails$1;
1154
+ /** Order context. */
1155
+ order?: OrderDetails;
1156
+ }
1135
1157
  interface DomainEvent$9 extends DomainEventBodyOneOf$9 {
1136
1158
  createdEvent?: EntityCreatedEvent$9;
1137
1159
  updatedEvent?: EntityUpdatedEvent$9;
@@ -1790,6 +1812,18 @@ interface GuestCheckedInEnvelope {
1790
1812
  data: GuestCheckedIn;
1791
1813
  metadata: EventMetadata$6;
1792
1814
  }
1815
+ interface GuestEventCanceledEnvelope {
1816
+ data: GuestEventCanceled;
1817
+ metadata: EventMetadata$6;
1818
+ }
1819
+ interface GuestEventStartsEnvelope {
1820
+ data: GuestEventStarts;
1821
+ metadata: EventMetadata$6;
1822
+ }
1823
+ interface GuestOrderCanceledEnvelope {
1824
+ data: GuestOrderCanceled;
1825
+ metadata: EventMetadata$6;
1826
+ }
1793
1827
  interface QueryEventGuestsOptions {
1794
1828
  /**
1795
1829
  * Predefined sets of fields to return.
@@ -1877,6 +1911,9 @@ declare const onGuestCreated$1: EventDefinition$c<GuestCreatedEnvelope, "wix.eve
1877
1911
  declare const onGuestUpdated$1: EventDefinition$c<GuestUpdatedEnvelope, "wix.events.guests.v1.guest_updated">;
1878
1912
  declare const onGuestDeleted$1: EventDefinition$c<GuestDeletedEnvelope, "wix.events.guests.v1.guest_deleted">;
1879
1913
  declare const onGuestCheckedIn$1: EventDefinition$c<GuestCheckedInEnvelope, "wix.events.guests.v1.guest_guest_checked_in">;
1914
+ declare const onGuestEventCanceled$1: EventDefinition$c<GuestEventCanceledEnvelope, "wix.events.guests.v1.guest_guest_event_canceled">;
1915
+ declare const onGuestEventStarts$1: EventDefinition$c<GuestEventStartsEnvelope, "wix.events.guests.v1.guest_guest_event_starts">;
1916
+ declare const onGuestOrderCanceled$1: EventDefinition$c<GuestOrderCanceledEnvelope, "wix.events.guests.v1.guest_guest_order_canceled">;
1880
1917
 
1881
1918
  type EventDefinition$b<Payload = unknown, Type extends string = string> = {
1882
1919
  __type: 'event-definition';
@@ -1924,6 +1961,18 @@ type _publicOnGuestCheckedInType = typeof onGuestCheckedIn$1;
1924
1961
  */
1925
1962
  declare const onGuestCheckedIn: ReturnType<typeof createEventModule$b<_publicOnGuestCheckedInType>>;
1926
1963
 
1964
+ type _publicOnGuestEventCanceledType = typeof onGuestEventCanceled$1;
1965
+ /** */
1966
+ declare const onGuestEventCanceled: ReturnType<typeof createEventModule$b<_publicOnGuestEventCanceledType>>;
1967
+
1968
+ type _publicOnGuestEventStartsType = typeof onGuestEventStarts$1;
1969
+ /** */
1970
+ declare const onGuestEventStarts: ReturnType<typeof createEventModule$b<_publicOnGuestEventStartsType>>;
1971
+
1972
+ type _publicOnGuestOrderCanceledType = typeof onGuestOrderCanceled$1;
1973
+ /** */
1974
+ declare const onGuestOrderCanceled: ReturnType<typeof createEventModule$b<_publicOnGuestOrderCanceledType>>;
1975
+
1927
1976
  type context$f_AttendanceStatus = AttendanceStatus;
1928
1977
  declare const context$f_AttendanceStatus: typeof AttendanceStatus;
1929
1978
  type context$f_ContactEventStatusUpdated = ContactEventStatusUpdated;
@@ -1935,7 +1984,13 @@ type context$f_GuestCountUpdate = GuestCountUpdate;
1935
1984
  type context$f_GuestCountUpdated = GuestCountUpdated;
1936
1985
  type context$f_GuestCreatedEnvelope = GuestCreatedEnvelope;
1937
1986
  type context$f_GuestDeletedEnvelope = GuestDeletedEnvelope;
1987
+ type context$f_GuestEventCanceled = GuestEventCanceled;
1988
+ type context$f_GuestEventCanceledEnvelope = GuestEventCanceledEnvelope;
1989
+ type context$f_GuestEventStarts = GuestEventStarts;
1990
+ type context$f_GuestEventStartsEnvelope = GuestEventStartsEnvelope;
1938
1991
  type context$f_GuestListPreview = GuestListPreview;
1992
+ type context$f_GuestOrderCanceled = GuestOrderCanceled;
1993
+ type context$f_GuestOrderCanceledEnvelope = GuestOrderCanceledEnvelope;
1939
1994
  type context$f_GuestType = GuestType;
1940
1995
  declare const context$f_GuestType: typeof GuestType;
1941
1996
  type context$f_GuestUpdatedEnvelope = GuestUpdatedEnvelope;
@@ -1971,14 +2026,20 @@ type context$f_UpdateGuestResponse = UpdateGuestResponse;
1971
2026
  type context$f__publicOnGuestCheckedInType = _publicOnGuestCheckedInType;
1972
2027
  type context$f__publicOnGuestCreatedType = _publicOnGuestCreatedType;
1973
2028
  type context$f__publicOnGuestDeletedType = _publicOnGuestDeletedType;
2029
+ type context$f__publicOnGuestEventCanceledType = _publicOnGuestEventCanceledType;
2030
+ type context$f__publicOnGuestEventStartsType = _publicOnGuestEventStartsType;
2031
+ type context$f__publicOnGuestOrderCanceledType = _publicOnGuestOrderCanceledType;
1974
2032
  type context$f__publicOnGuestUpdatedType = _publicOnGuestUpdatedType;
1975
2033
  declare const context$f_onGuestCheckedIn: typeof onGuestCheckedIn;
1976
2034
  declare const context$f_onGuestCreated: typeof onGuestCreated;
1977
2035
  declare const context$f_onGuestDeleted: typeof onGuestDeleted;
2036
+ declare const context$f_onGuestEventCanceled: typeof onGuestEventCanceled;
2037
+ declare const context$f_onGuestEventStarts: typeof onGuestEventStarts;
2038
+ declare const context$f_onGuestOrderCanceled: typeof onGuestOrderCanceled;
1978
2039
  declare const context$f_onGuestUpdated: typeof onGuestUpdated;
1979
2040
  declare const context$f_queryGuests: typeof queryGuests;
1980
2041
  declare namespace context$f {
1981
- export { type ActionEvent$9 as ActionEvent, type Address$a as Address, type AddressLocation$a as AddressLocation, type AddressStreetOneOf$a as AddressStreetOneOf, context$f_AttendanceStatus as AttendanceStatus, type BaseEventMetadata$b as BaseEventMetadata, type CheckIn$4 as CheckIn, type CommonAddress$4 as CommonAddress, type CommonAddressLocation$4 as CommonAddressLocation, type CommonAddressStreetOneOf$4 as CommonAddressStreetOneOf, type CommonStreetAddress$4 as CommonStreetAddress, type CommonSubdivision$4 as CommonSubdivision, type context$f_ContactEventStatusUpdated as ContactEventStatusUpdated, type CouponDiscount$2 as CouponDiscount, type CursorPaging$7 as CursorPaging, type Cursors$a as Cursors, type DateAndTimeSettings$2 as DateAndTimeSettings, type Discount$2 as Discount, type DiscountItem$2 as DiscountItem, type DiscountItemDiscountOneOf$2 as DiscountItemDiscountOneOf, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type Empty$6 as Empty, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type EventDeleted$5 as EventDeleted, type EventDetails$1 as EventDetails, type context$f_EventGuest as EventGuest, type EventGuests$1 as EventGuests, type EventMetadata$6 as EventMetadata, EventType$5 as EventType, type Fee$2 as Fee, FeeName$2 as FeeName, FeeType$3 as FeeType, type FormResponse$5 as FormResponse, type Formatted$2 as Formatted, type FormattedAddress$5 as FormattedAddress, type Guest$4 as Guest, type context$f_GuestCheckedIn as GuestCheckedIn, type context$f_GuestCheckedInEnvelope as GuestCheckedInEnvelope, type context$f_GuestCount as GuestCount, type context$f_GuestCountUpdate as GuestCountUpdate, type context$f_GuestCountUpdated as GuestCountUpdated, type context$f_GuestCreatedEnvelope as GuestCreatedEnvelope, type context$f_GuestDeletedEnvelope as GuestDeletedEnvelope, type GuestDetails$2 as GuestDetails, type context$f_GuestListPreview as GuestListPreview, context$f_GuestType as GuestType, type context$f_GuestUpdatedEnvelope as GuestUpdatedEnvelope, type context$f_GuestsQueryBuilder as GuestsQueryBuilder, type context$f_GuestsQueryResult as GuestsQueryResult, type IdentificationData$d as IdentificationData, type IdentificationDataIdOneOf$d as IdentificationDataIdOneOf, type InputValue$5 as InputValue, type Invoice$2 as Invoice, type Item$3 as Item, type context$f_Language as Language, type context$f_ListGuestListPreviewsRequest as ListGuestListPreviewsRequest, type context$f_ListGuestListPreviewsResponse as ListGuestListPreviewsResponse, type Location$7 as Location, LocationType$7 as LocationType, type context$f_MemberEventStatusUpdated as MemberEventStatusUpdated, context$f_MemberEventStatusUpdatedEventType as MemberEventStatusUpdatedEventType, type MessageEnvelope$d as MessageEnvelope, type Money$8 as Money, context$f_NotifyActionType as NotifyActionType, type context$f_NotifyGuestAction as NotifyGuestAction, type Occurrence$7 as Occurrence, type OnlineConferencingLogin$5 as OnlineConferencingLogin, type OrderConfirmed$2 as OrderConfirmed, type OrderDeleted$1 as OrderDeleted, type context$f_OrderDetails as OrderDetails, OrderStatus$3 as OrderStatus, OrderType$1 as OrderType, type OrderUpdated$2 as OrderUpdated, type Paging$9 as Paging, type PagingMetadataV2$9 as PagingMetadataV2, type PaidPlanDiscount$2 as PaidPlanDiscount, type PaidPlanDiscountDiscountOneOf$2 as PaidPlanDiscountDiscountOneOf, type PercentDiscount$2 as PercentDiscount, type context$f_QueryEventGuestsOptions as QueryEventGuestsOptions, type context$f_QueryEventGuestsRequest as QueryEventGuestsRequest, type context$f_QueryEventGuestsResponse as QueryEventGuestsResponse, type context$f_QueryEventGuestsResponseNonNullableFields as QueryEventGuestsResponseNonNullableFields, type QueryV2$8 as QueryV2, type QueryV2PagingMethodOneOf$8 as QueryV2PagingMethodOneOf, RecurrenceStatusStatus$2 as RecurrenceStatusStatus, type Recurrences$7 as Recurrences, RequestedFields$3 as RequestedFields, context$f_RequestedFieldsEnumRequestedFields as RequestedFieldsEnumRequestedFields, type RestoreInfo$8 as RestoreInfo, type RsvpCreated$2 as RsvpCreated, type RsvpDeleted$1 as RsvpDeleted, RsvpStatus$3 as RsvpStatus, type RsvpUpdated$2 as RsvpUpdated, type context$f_SecondaryLanguagesRequest as SecondaryLanguagesRequest, type context$f_SecondaryLanguagesResponse as SecondaryLanguagesResponse, SortOrder$a as SortOrder, type Sorting$a as Sorting, type StandardDetails$5 as StandardDetails, Status$8 as Status, type context$f_StreamEventGuestsRequest as StreamEventGuestsRequest, type StreetAddress$a as StreetAddress, type Subdivision$a as Subdivision, SubdivisionSubdivisionType$2 as SubdivisionSubdivisionType, SubdivisionType$a as SubdivisionType, type context$f_Task as Task, type context$f_TaskContext as TaskContext, type context$f_TaskKey as TaskKey, type Tax$2 as Tax, TaxType$6 as TaxType, type Ticket$3 as Ticket, type TicketDetails$2 as TicketDetails, type context$f_TicketGuestDetails as TicketGuestDetails, context$f_Timing as Timing, type context$f_UpdateGuestRequest as UpdateGuestRequest, type context$f_UpdateGuestResponse as UpdateGuestResponse, WebhookIdentityType$d as WebhookIdentityType, type context$f__publicOnGuestCheckedInType as _publicOnGuestCheckedInType, type context$f__publicOnGuestCreatedType as _publicOnGuestCreatedType, type context$f__publicOnGuestDeletedType as _publicOnGuestDeletedType, type context$f__publicOnGuestUpdatedType as _publicOnGuestUpdatedType, context$f_onGuestCheckedIn as onGuestCheckedIn, context$f_onGuestCreated as onGuestCreated, context$f_onGuestDeleted as onGuestDeleted, context$f_onGuestUpdated as onGuestUpdated, onGuestCheckedIn$1 as publicOnGuestCheckedIn, onGuestCreated$1 as publicOnGuestCreated, onGuestDeleted$1 as publicOnGuestDeleted, onGuestUpdated$1 as publicOnGuestUpdated, context$f_queryGuests as queryGuests };
2042
+ export { type ActionEvent$9 as ActionEvent, type Address$a as Address, type AddressLocation$a as AddressLocation, type AddressStreetOneOf$a as AddressStreetOneOf, context$f_AttendanceStatus as AttendanceStatus, type BaseEventMetadata$b as BaseEventMetadata, type CheckIn$4 as CheckIn, type CommonAddress$4 as CommonAddress, type CommonAddressLocation$4 as CommonAddressLocation, type CommonAddressStreetOneOf$4 as CommonAddressStreetOneOf, type CommonStreetAddress$4 as CommonStreetAddress, type CommonSubdivision$4 as CommonSubdivision, type context$f_ContactEventStatusUpdated as ContactEventStatusUpdated, type CouponDiscount$2 as CouponDiscount, type CursorPaging$7 as CursorPaging, type Cursors$a as Cursors, type DateAndTimeSettings$2 as DateAndTimeSettings, type Discount$2 as Discount, type DiscountItem$2 as DiscountItem, type DiscountItemDiscountOneOf$2 as DiscountItemDiscountOneOf, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type Empty$6 as Empty, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type EventDeleted$5 as EventDeleted, type EventDetails$1 as EventDetails, type context$f_EventGuest as EventGuest, type EventGuests$1 as EventGuests, type EventMetadata$6 as EventMetadata, EventType$5 as EventType, type Fee$2 as Fee, FeeName$2 as FeeName, FeeType$3 as FeeType, type FormResponse$5 as FormResponse, type Formatted$2 as Formatted, type FormattedAddress$5 as FormattedAddress, type Guest$4 as Guest, type context$f_GuestCheckedIn as GuestCheckedIn, type context$f_GuestCheckedInEnvelope as GuestCheckedInEnvelope, type context$f_GuestCount as GuestCount, type context$f_GuestCountUpdate as GuestCountUpdate, type context$f_GuestCountUpdated as GuestCountUpdated, type context$f_GuestCreatedEnvelope as GuestCreatedEnvelope, type context$f_GuestDeletedEnvelope as GuestDeletedEnvelope, type GuestDetails$2 as GuestDetails, type context$f_GuestEventCanceled as GuestEventCanceled, type context$f_GuestEventCanceledEnvelope as GuestEventCanceledEnvelope, type context$f_GuestEventStarts as GuestEventStarts, type context$f_GuestEventStartsEnvelope as GuestEventStartsEnvelope, type context$f_GuestListPreview as GuestListPreview, type context$f_GuestOrderCanceled as GuestOrderCanceled, type context$f_GuestOrderCanceledEnvelope as GuestOrderCanceledEnvelope, context$f_GuestType as GuestType, type context$f_GuestUpdatedEnvelope as GuestUpdatedEnvelope, type context$f_GuestsQueryBuilder as GuestsQueryBuilder, type context$f_GuestsQueryResult as GuestsQueryResult, type IdentificationData$d as IdentificationData, type IdentificationDataIdOneOf$d as IdentificationDataIdOneOf, type InputValue$5 as InputValue, type Invoice$2 as Invoice, type Item$3 as Item, type context$f_Language as Language, type context$f_ListGuestListPreviewsRequest as ListGuestListPreviewsRequest, type context$f_ListGuestListPreviewsResponse as ListGuestListPreviewsResponse, type Location$7 as Location, LocationType$7 as LocationType, type context$f_MemberEventStatusUpdated as MemberEventStatusUpdated, context$f_MemberEventStatusUpdatedEventType as MemberEventStatusUpdatedEventType, type MessageEnvelope$d as MessageEnvelope, type Money$8 as Money, context$f_NotifyActionType as NotifyActionType, type context$f_NotifyGuestAction as NotifyGuestAction, type Occurrence$7 as Occurrence, type OnlineConferencingLogin$5 as OnlineConferencingLogin, type OrderConfirmed$2 as OrderConfirmed, type OrderDeleted$1 as OrderDeleted, type context$f_OrderDetails as OrderDetails, OrderStatus$3 as OrderStatus, OrderType$1 as OrderType, type OrderUpdated$2 as OrderUpdated, type Paging$9 as Paging, type PagingMetadataV2$9 as PagingMetadataV2, type PaidPlanDiscount$2 as PaidPlanDiscount, type PaidPlanDiscountDiscountOneOf$2 as PaidPlanDiscountDiscountOneOf, type PercentDiscount$2 as PercentDiscount, type context$f_QueryEventGuestsOptions as QueryEventGuestsOptions, type context$f_QueryEventGuestsRequest as QueryEventGuestsRequest, type context$f_QueryEventGuestsResponse as QueryEventGuestsResponse, type context$f_QueryEventGuestsResponseNonNullableFields as QueryEventGuestsResponseNonNullableFields, type QueryV2$8 as QueryV2, type QueryV2PagingMethodOneOf$8 as QueryV2PagingMethodOneOf, RecurrenceStatusStatus$2 as RecurrenceStatusStatus, type Recurrences$7 as Recurrences, RequestedFields$3 as RequestedFields, context$f_RequestedFieldsEnumRequestedFields as RequestedFieldsEnumRequestedFields, type RestoreInfo$8 as RestoreInfo, type RsvpCreated$2 as RsvpCreated, type RsvpDeleted$1 as RsvpDeleted, RsvpStatus$3 as RsvpStatus, type RsvpUpdated$2 as RsvpUpdated, type context$f_SecondaryLanguagesRequest as SecondaryLanguagesRequest, type context$f_SecondaryLanguagesResponse as SecondaryLanguagesResponse, SortOrder$a as SortOrder, type Sorting$a as Sorting, type StandardDetails$5 as StandardDetails, Status$8 as Status, type context$f_StreamEventGuestsRequest as StreamEventGuestsRequest, type StreetAddress$a as StreetAddress, type Subdivision$a as Subdivision, SubdivisionSubdivisionType$2 as SubdivisionSubdivisionType, SubdivisionType$a as SubdivisionType, type context$f_Task as Task, type context$f_TaskContext as TaskContext, type context$f_TaskKey as TaskKey, type Tax$2 as Tax, TaxType$6 as TaxType, type Ticket$3 as Ticket, type TicketDetails$2 as TicketDetails, type context$f_TicketGuestDetails as TicketGuestDetails, context$f_Timing as Timing, type context$f_UpdateGuestRequest as UpdateGuestRequest, type context$f_UpdateGuestResponse as UpdateGuestResponse, WebhookIdentityType$d as WebhookIdentityType, type context$f__publicOnGuestCheckedInType as _publicOnGuestCheckedInType, type context$f__publicOnGuestCreatedType as _publicOnGuestCreatedType, type context$f__publicOnGuestDeletedType as _publicOnGuestDeletedType, type context$f__publicOnGuestEventCanceledType as _publicOnGuestEventCanceledType, type context$f__publicOnGuestEventStartsType as _publicOnGuestEventStartsType, type context$f__publicOnGuestOrderCanceledType as _publicOnGuestOrderCanceledType, type context$f__publicOnGuestUpdatedType as _publicOnGuestUpdatedType, context$f_onGuestCheckedIn as onGuestCheckedIn, context$f_onGuestCreated as onGuestCreated, context$f_onGuestDeleted as onGuestDeleted, context$f_onGuestEventCanceled as onGuestEventCanceled, context$f_onGuestEventStarts as onGuestEventStarts, context$f_onGuestOrderCanceled as onGuestOrderCanceled, context$f_onGuestUpdated as onGuestUpdated, onGuestCheckedIn$1 as publicOnGuestCheckedIn, onGuestCreated$1 as publicOnGuestCreated, onGuestDeleted$1 as publicOnGuestDeleted, onGuestEventCanceled$1 as publicOnGuestEventCanceled, onGuestEventStarts$1 as publicOnGuestEventStarts, onGuestOrderCanceled$1 as publicOnGuestOrderCanceled, onGuestUpdated$1 as publicOnGuestUpdated, context$f_queryGuests as queryGuests };
1982
2043
  }
1983
2044
 
1984
2045
  interface NotificationConfig {
@@ -1132,6 +1132,28 @@ declare enum FeeType$3 {
1132
1132
  /** Fee is added to the ticket price at checkout. */
1133
1133
  FEE_ADDED_AT_CHECKOUT = "FEE_ADDED_AT_CHECKOUT"
1134
1134
  }
1135
+ interface GuestEventCanceled {
1136
+ /** Event guest. */
1137
+ guest?: EventGuest;
1138
+ /** Event context. */
1139
+ event?: EventDetails$1;
1140
+ }
1141
+ interface GuestEventStarts {
1142
+ /** Event guest. */
1143
+ guest?: EventGuest;
1144
+ /** Event context. */
1145
+ event?: EventDetails$1;
1146
+ /** Timing */
1147
+ timing?: Timing;
1148
+ }
1149
+ interface GuestOrderCanceled {
1150
+ /** Event guest. */
1151
+ guest?: EventGuest;
1152
+ /** Event context. */
1153
+ event?: EventDetails$1;
1154
+ /** Order context. */
1155
+ order?: OrderDetails;
1156
+ }
1135
1157
  interface DomainEvent$9 extends DomainEventBodyOneOf$9 {
1136
1158
  createdEvent?: EntityCreatedEvent$9;
1137
1159
  updatedEvent?: EntityUpdatedEvent$9;
@@ -1790,6 +1812,18 @@ interface GuestCheckedInEnvelope {
1790
1812
  data: GuestCheckedIn;
1791
1813
  metadata: EventMetadata$6;
1792
1814
  }
1815
+ interface GuestEventCanceledEnvelope {
1816
+ data: GuestEventCanceled;
1817
+ metadata: EventMetadata$6;
1818
+ }
1819
+ interface GuestEventStartsEnvelope {
1820
+ data: GuestEventStarts;
1821
+ metadata: EventMetadata$6;
1822
+ }
1823
+ interface GuestOrderCanceledEnvelope {
1824
+ data: GuestOrderCanceled;
1825
+ metadata: EventMetadata$6;
1826
+ }
1793
1827
  interface QueryEventGuestsOptions {
1794
1828
  /**
1795
1829
  * Predefined sets of fields to return.
@@ -1877,6 +1911,9 @@ declare const onGuestCreated$1: EventDefinition$c<GuestCreatedEnvelope, "wix.eve
1877
1911
  declare const onGuestUpdated$1: EventDefinition$c<GuestUpdatedEnvelope, "wix.events.guests.v1.guest_updated">;
1878
1912
  declare const onGuestDeleted$1: EventDefinition$c<GuestDeletedEnvelope, "wix.events.guests.v1.guest_deleted">;
1879
1913
  declare const onGuestCheckedIn$1: EventDefinition$c<GuestCheckedInEnvelope, "wix.events.guests.v1.guest_guest_checked_in">;
1914
+ declare const onGuestEventCanceled$1: EventDefinition$c<GuestEventCanceledEnvelope, "wix.events.guests.v1.guest_guest_event_canceled">;
1915
+ declare const onGuestEventStarts$1: EventDefinition$c<GuestEventStartsEnvelope, "wix.events.guests.v1.guest_guest_event_starts">;
1916
+ declare const onGuestOrderCanceled$1: EventDefinition$c<GuestOrderCanceledEnvelope, "wix.events.guests.v1.guest_guest_order_canceled">;
1880
1917
 
1881
1918
  type EventDefinition$b<Payload = unknown, Type extends string = string> = {
1882
1919
  __type: 'event-definition';
@@ -1924,6 +1961,18 @@ type _publicOnGuestCheckedInType = typeof onGuestCheckedIn$1;
1924
1961
  */
1925
1962
  declare const onGuestCheckedIn: ReturnType<typeof createEventModule$b<_publicOnGuestCheckedInType>>;
1926
1963
 
1964
+ type _publicOnGuestEventCanceledType = typeof onGuestEventCanceled$1;
1965
+ /** */
1966
+ declare const onGuestEventCanceled: ReturnType<typeof createEventModule$b<_publicOnGuestEventCanceledType>>;
1967
+
1968
+ type _publicOnGuestEventStartsType = typeof onGuestEventStarts$1;
1969
+ /** */
1970
+ declare const onGuestEventStarts: ReturnType<typeof createEventModule$b<_publicOnGuestEventStartsType>>;
1971
+
1972
+ type _publicOnGuestOrderCanceledType = typeof onGuestOrderCanceled$1;
1973
+ /** */
1974
+ declare const onGuestOrderCanceled: ReturnType<typeof createEventModule$b<_publicOnGuestOrderCanceledType>>;
1975
+
1927
1976
  type index_d$f_AttendanceStatus = AttendanceStatus;
1928
1977
  declare const index_d$f_AttendanceStatus: typeof AttendanceStatus;
1929
1978
  type index_d$f_ContactEventStatusUpdated = ContactEventStatusUpdated;
@@ -1935,7 +1984,13 @@ type index_d$f_GuestCountUpdate = GuestCountUpdate;
1935
1984
  type index_d$f_GuestCountUpdated = GuestCountUpdated;
1936
1985
  type index_d$f_GuestCreatedEnvelope = GuestCreatedEnvelope;
1937
1986
  type index_d$f_GuestDeletedEnvelope = GuestDeletedEnvelope;
1987
+ type index_d$f_GuestEventCanceled = GuestEventCanceled;
1988
+ type index_d$f_GuestEventCanceledEnvelope = GuestEventCanceledEnvelope;
1989
+ type index_d$f_GuestEventStarts = GuestEventStarts;
1990
+ type index_d$f_GuestEventStartsEnvelope = GuestEventStartsEnvelope;
1938
1991
  type index_d$f_GuestListPreview = GuestListPreview;
1992
+ type index_d$f_GuestOrderCanceled = GuestOrderCanceled;
1993
+ type index_d$f_GuestOrderCanceledEnvelope = GuestOrderCanceledEnvelope;
1939
1994
  type index_d$f_GuestType = GuestType;
1940
1995
  declare const index_d$f_GuestType: typeof GuestType;
1941
1996
  type index_d$f_GuestUpdatedEnvelope = GuestUpdatedEnvelope;
@@ -1971,14 +2026,20 @@ type index_d$f_UpdateGuestResponse = UpdateGuestResponse;
1971
2026
  type index_d$f__publicOnGuestCheckedInType = _publicOnGuestCheckedInType;
1972
2027
  type index_d$f__publicOnGuestCreatedType = _publicOnGuestCreatedType;
1973
2028
  type index_d$f__publicOnGuestDeletedType = _publicOnGuestDeletedType;
2029
+ type index_d$f__publicOnGuestEventCanceledType = _publicOnGuestEventCanceledType;
2030
+ type index_d$f__publicOnGuestEventStartsType = _publicOnGuestEventStartsType;
2031
+ type index_d$f__publicOnGuestOrderCanceledType = _publicOnGuestOrderCanceledType;
1974
2032
  type index_d$f__publicOnGuestUpdatedType = _publicOnGuestUpdatedType;
1975
2033
  declare const index_d$f_onGuestCheckedIn: typeof onGuestCheckedIn;
1976
2034
  declare const index_d$f_onGuestCreated: typeof onGuestCreated;
1977
2035
  declare const index_d$f_onGuestDeleted: typeof onGuestDeleted;
2036
+ declare const index_d$f_onGuestEventCanceled: typeof onGuestEventCanceled;
2037
+ declare const index_d$f_onGuestEventStarts: typeof onGuestEventStarts;
2038
+ declare const index_d$f_onGuestOrderCanceled: typeof onGuestOrderCanceled;
1978
2039
  declare const index_d$f_onGuestUpdated: typeof onGuestUpdated;
1979
2040
  declare const index_d$f_queryGuests: typeof queryGuests;
1980
2041
  declare namespace index_d$f {
1981
- export { type ActionEvent$9 as ActionEvent, type Address$a as Address, type AddressLocation$a as AddressLocation, type AddressStreetOneOf$a as AddressStreetOneOf, index_d$f_AttendanceStatus as AttendanceStatus, type BaseEventMetadata$b as BaseEventMetadata, type CheckIn$4 as CheckIn, type CommonAddress$4 as CommonAddress, type CommonAddressLocation$4 as CommonAddressLocation, type CommonAddressStreetOneOf$4 as CommonAddressStreetOneOf, type CommonStreetAddress$4 as CommonStreetAddress, type CommonSubdivision$4 as CommonSubdivision, type index_d$f_ContactEventStatusUpdated as ContactEventStatusUpdated, type CouponDiscount$2 as CouponDiscount, type CursorPaging$7 as CursorPaging, type Cursors$a as Cursors, type DateAndTimeSettings$2 as DateAndTimeSettings, type Discount$2 as Discount, type DiscountItem$2 as DiscountItem, type DiscountItemDiscountOneOf$2 as DiscountItemDiscountOneOf, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type Empty$6 as Empty, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type EventDeleted$5 as EventDeleted, type EventDetails$1 as EventDetails, type index_d$f_EventGuest as EventGuest, type EventGuests$1 as EventGuests, type EventMetadata$6 as EventMetadata, EventType$5 as EventType, type Fee$2 as Fee, FeeName$2 as FeeName, FeeType$3 as FeeType, type FormResponse$5 as FormResponse, type Formatted$2 as Formatted, type FormattedAddress$5 as FormattedAddress, type Guest$4 as Guest, type index_d$f_GuestCheckedIn as GuestCheckedIn, type index_d$f_GuestCheckedInEnvelope as GuestCheckedInEnvelope, type index_d$f_GuestCount as GuestCount, type index_d$f_GuestCountUpdate as GuestCountUpdate, type index_d$f_GuestCountUpdated as GuestCountUpdated, type index_d$f_GuestCreatedEnvelope as GuestCreatedEnvelope, type index_d$f_GuestDeletedEnvelope as GuestDeletedEnvelope, type GuestDetails$2 as GuestDetails, type index_d$f_GuestListPreview as GuestListPreview, index_d$f_GuestType as GuestType, type index_d$f_GuestUpdatedEnvelope as GuestUpdatedEnvelope, type index_d$f_GuestsQueryBuilder as GuestsQueryBuilder, type index_d$f_GuestsQueryResult as GuestsQueryResult, type IdentificationData$d as IdentificationData, type IdentificationDataIdOneOf$d as IdentificationDataIdOneOf, type InputValue$5 as InputValue, type Invoice$2 as Invoice, type Item$3 as Item, type index_d$f_Language as Language, type index_d$f_ListGuestListPreviewsRequest as ListGuestListPreviewsRequest, type index_d$f_ListGuestListPreviewsResponse as ListGuestListPreviewsResponse, type Location$7 as Location, LocationType$7 as LocationType, type index_d$f_MemberEventStatusUpdated as MemberEventStatusUpdated, index_d$f_MemberEventStatusUpdatedEventType as MemberEventStatusUpdatedEventType, type MessageEnvelope$d as MessageEnvelope, type Money$8 as Money, index_d$f_NotifyActionType as NotifyActionType, type index_d$f_NotifyGuestAction as NotifyGuestAction, type Occurrence$7 as Occurrence, type OnlineConferencingLogin$5 as OnlineConferencingLogin, type OrderConfirmed$2 as OrderConfirmed, type OrderDeleted$1 as OrderDeleted, type index_d$f_OrderDetails as OrderDetails, OrderStatus$3 as OrderStatus, OrderType$1 as OrderType, type OrderUpdated$2 as OrderUpdated, type Paging$9 as Paging, type PagingMetadataV2$9 as PagingMetadataV2, type PaidPlanDiscount$2 as PaidPlanDiscount, type PaidPlanDiscountDiscountOneOf$2 as PaidPlanDiscountDiscountOneOf, type PercentDiscount$2 as PercentDiscount, type index_d$f_QueryEventGuestsOptions as QueryEventGuestsOptions, type index_d$f_QueryEventGuestsRequest as QueryEventGuestsRequest, type index_d$f_QueryEventGuestsResponse as QueryEventGuestsResponse, type index_d$f_QueryEventGuestsResponseNonNullableFields as QueryEventGuestsResponseNonNullableFields, type QueryV2$8 as QueryV2, type QueryV2PagingMethodOneOf$8 as QueryV2PagingMethodOneOf, RecurrenceStatusStatus$2 as RecurrenceStatusStatus, type Recurrences$7 as Recurrences, RequestedFields$3 as RequestedFields, index_d$f_RequestedFieldsEnumRequestedFields as RequestedFieldsEnumRequestedFields, type RestoreInfo$8 as RestoreInfo, type RsvpCreated$2 as RsvpCreated, type RsvpDeleted$1 as RsvpDeleted, RsvpStatus$3 as RsvpStatus, type RsvpUpdated$2 as RsvpUpdated, type index_d$f_SecondaryLanguagesRequest as SecondaryLanguagesRequest, type index_d$f_SecondaryLanguagesResponse as SecondaryLanguagesResponse, SortOrder$a as SortOrder, type Sorting$a as Sorting, type StandardDetails$5 as StandardDetails, Status$8 as Status, type index_d$f_StreamEventGuestsRequest as StreamEventGuestsRequest, type StreetAddress$a as StreetAddress, type Subdivision$a as Subdivision, SubdivisionSubdivisionType$2 as SubdivisionSubdivisionType, SubdivisionType$a as SubdivisionType, type index_d$f_Task as Task, type index_d$f_TaskContext as TaskContext, type index_d$f_TaskKey as TaskKey, type Tax$2 as Tax, TaxType$6 as TaxType, type Ticket$3 as Ticket, type TicketDetails$2 as TicketDetails, type index_d$f_TicketGuestDetails as TicketGuestDetails, index_d$f_Timing as Timing, type index_d$f_UpdateGuestRequest as UpdateGuestRequest, type index_d$f_UpdateGuestResponse as UpdateGuestResponse, WebhookIdentityType$d as WebhookIdentityType, type index_d$f__publicOnGuestCheckedInType as _publicOnGuestCheckedInType, type index_d$f__publicOnGuestCreatedType as _publicOnGuestCreatedType, type index_d$f__publicOnGuestDeletedType as _publicOnGuestDeletedType, type index_d$f__publicOnGuestUpdatedType as _publicOnGuestUpdatedType, index_d$f_onGuestCheckedIn as onGuestCheckedIn, index_d$f_onGuestCreated as onGuestCreated, index_d$f_onGuestDeleted as onGuestDeleted, index_d$f_onGuestUpdated as onGuestUpdated, onGuestCheckedIn$1 as publicOnGuestCheckedIn, onGuestCreated$1 as publicOnGuestCreated, onGuestDeleted$1 as publicOnGuestDeleted, onGuestUpdated$1 as publicOnGuestUpdated, index_d$f_queryGuests as queryGuests };
2042
+ export { type ActionEvent$9 as ActionEvent, type Address$a as Address, type AddressLocation$a as AddressLocation, type AddressStreetOneOf$a as AddressStreetOneOf, index_d$f_AttendanceStatus as AttendanceStatus, type BaseEventMetadata$b as BaseEventMetadata, type CheckIn$4 as CheckIn, type CommonAddress$4 as CommonAddress, type CommonAddressLocation$4 as CommonAddressLocation, type CommonAddressStreetOneOf$4 as CommonAddressStreetOneOf, type CommonStreetAddress$4 as CommonStreetAddress, type CommonSubdivision$4 as CommonSubdivision, type index_d$f_ContactEventStatusUpdated as ContactEventStatusUpdated, type CouponDiscount$2 as CouponDiscount, type CursorPaging$7 as CursorPaging, type Cursors$a as Cursors, type DateAndTimeSettings$2 as DateAndTimeSettings, type Discount$2 as Discount, type DiscountItem$2 as DiscountItem, type DiscountItemDiscountOneOf$2 as DiscountItemDiscountOneOf, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type Empty$6 as Empty, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type EventDeleted$5 as EventDeleted, type EventDetails$1 as EventDetails, type index_d$f_EventGuest as EventGuest, type EventGuests$1 as EventGuests, type EventMetadata$6 as EventMetadata, EventType$5 as EventType, type Fee$2 as Fee, FeeName$2 as FeeName, FeeType$3 as FeeType, type FormResponse$5 as FormResponse, type Formatted$2 as Formatted, type FormattedAddress$5 as FormattedAddress, type Guest$4 as Guest, type index_d$f_GuestCheckedIn as GuestCheckedIn, type index_d$f_GuestCheckedInEnvelope as GuestCheckedInEnvelope, type index_d$f_GuestCount as GuestCount, type index_d$f_GuestCountUpdate as GuestCountUpdate, type index_d$f_GuestCountUpdated as GuestCountUpdated, type index_d$f_GuestCreatedEnvelope as GuestCreatedEnvelope, type index_d$f_GuestDeletedEnvelope as GuestDeletedEnvelope, type GuestDetails$2 as GuestDetails, type index_d$f_GuestEventCanceled as GuestEventCanceled, type index_d$f_GuestEventCanceledEnvelope as GuestEventCanceledEnvelope, type index_d$f_GuestEventStarts as GuestEventStarts, type index_d$f_GuestEventStartsEnvelope as GuestEventStartsEnvelope, type index_d$f_GuestListPreview as GuestListPreview, type index_d$f_GuestOrderCanceled as GuestOrderCanceled, type index_d$f_GuestOrderCanceledEnvelope as GuestOrderCanceledEnvelope, index_d$f_GuestType as GuestType, type index_d$f_GuestUpdatedEnvelope as GuestUpdatedEnvelope, type index_d$f_GuestsQueryBuilder as GuestsQueryBuilder, type index_d$f_GuestsQueryResult as GuestsQueryResult, type IdentificationData$d as IdentificationData, type IdentificationDataIdOneOf$d as IdentificationDataIdOneOf, type InputValue$5 as InputValue, type Invoice$2 as Invoice, type Item$3 as Item, type index_d$f_Language as Language, type index_d$f_ListGuestListPreviewsRequest as ListGuestListPreviewsRequest, type index_d$f_ListGuestListPreviewsResponse as ListGuestListPreviewsResponse, type Location$7 as Location, LocationType$7 as LocationType, type index_d$f_MemberEventStatusUpdated as MemberEventStatusUpdated, index_d$f_MemberEventStatusUpdatedEventType as MemberEventStatusUpdatedEventType, type MessageEnvelope$d as MessageEnvelope, type Money$8 as Money, index_d$f_NotifyActionType as NotifyActionType, type index_d$f_NotifyGuestAction as NotifyGuestAction, type Occurrence$7 as Occurrence, type OnlineConferencingLogin$5 as OnlineConferencingLogin, type OrderConfirmed$2 as OrderConfirmed, type OrderDeleted$1 as OrderDeleted, type index_d$f_OrderDetails as OrderDetails, OrderStatus$3 as OrderStatus, OrderType$1 as OrderType, type OrderUpdated$2 as OrderUpdated, type Paging$9 as Paging, type PagingMetadataV2$9 as PagingMetadataV2, type PaidPlanDiscount$2 as PaidPlanDiscount, type PaidPlanDiscountDiscountOneOf$2 as PaidPlanDiscountDiscountOneOf, type PercentDiscount$2 as PercentDiscount, type index_d$f_QueryEventGuestsOptions as QueryEventGuestsOptions, type index_d$f_QueryEventGuestsRequest as QueryEventGuestsRequest, type index_d$f_QueryEventGuestsResponse as QueryEventGuestsResponse, type index_d$f_QueryEventGuestsResponseNonNullableFields as QueryEventGuestsResponseNonNullableFields, type QueryV2$8 as QueryV2, type QueryV2PagingMethodOneOf$8 as QueryV2PagingMethodOneOf, RecurrenceStatusStatus$2 as RecurrenceStatusStatus, type Recurrences$7 as Recurrences, RequestedFields$3 as RequestedFields, index_d$f_RequestedFieldsEnumRequestedFields as RequestedFieldsEnumRequestedFields, type RestoreInfo$8 as RestoreInfo, type RsvpCreated$2 as RsvpCreated, type RsvpDeleted$1 as RsvpDeleted, RsvpStatus$3 as RsvpStatus, type RsvpUpdated$2 as RsvpUpdated, type index_d$f_SecondaryLanguagesRequest as SecondaryLanguagesRequest, type index_d$f_SecondaryLanguagesResponse as SecondaryLanguagesResponse, SortOrder$a as SortOrder, type Sorting$a as Sorting, type StandardDetails$5 as StandardDetails, Status$8 as Status, type index_d$f_StreamEventGuestsRequest as StreamEventGuestsRequest, type StreetAddress$a as StreetAddress, type Subdivision$a as Subdivision, SubdivisionSubdivisionType$2 as SubdivisionSubdivisionType, SubdivisionType$a as SubdivisionType, type index_d$f_Task as Task, type index_d$f_TaskContext as TaskContext, type index_d$f_TaskKey as TaskKey, type Tax$2 as Tax, TaxType$6 as TaxType, type Ticket$3 as Ticket, type TicketDetails$2 as TicketDetails, type index_d$f_TicketGuestDetails as TicketGuestDetails, index_d$f_Timing as Timing, type index_d$f_UpdateGuestRequest as UpdateGuestRequest, type index_d$f_UpdateGuestResponse as UpdateGuestResponse, WebhookIdentityType$d as WebhookIdentityType, type index_d$f__publicOnGuestCheckedInType as _publicOnGuestCheckedInType, type index_d$f__publicOnGuestCreatedType as _publicOnGuestCreatedType, type index_d$f__publicOnGuestDeletedType as _publicOnGuestDeletedType, type index_d$f__publicOnGuestEventCanceledType as _publicOnGuestEventCanceledType, type index_d$f__publicOnGuestEventStartsType as _publicOnGuestEventStartsType, type index_d$f__publicOnGuestOrderCanceledType as _publicOnGuestOrderCanceledType, type index_d$f__publicOnGuestUpdatedType as _publicOnGuestUpdatedType, index_d$f_onGuestCheckedIn as onGuestCheckedIn, index_d$f_onGuestCreated as onGuestCreated, index_d$f_onGuestDeleted as onGuestDeleted, index_d$f_onGuestEventCanceled as onGuestEventCanceled, index_d$f_onGuestEventStarts as onGuestEventStarts, index_d$f_onGuestOrderCanceled as onGuestOrderCanceled, index_d$f_onGuestUpdated as onGuestUpdated, onGuestCheckedIn$1 as publicOnGuestCheckedIn, onGuestCreated$1 as publicOnGuestCreated, onGuestDeleted$1 as publicOnGuestDeleted, onGuestEventCanceled$1 as publicOnGuestEventCanceled, onGuestEventStarts$1 as publicOnGuestEventStarts, onGuestOrderCanceled$1 as publicOnGuestOrderCanceled, onGuestUpdated$1 as publicOnGuestUpdated, index_d$f_queryGuests as queryGuests };
1982
2043
  }
1983
2044
 
1984
2045
  interface NotificationConfig {