@wix/events 1.0.351 → 1.0.353
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 +12 -12
- package/type-bundles/context.bundle.d.ts +625 -513
- package/type-bundles/index.bundle.d.ts +625 -513
- package/type-bundles/meta.bundle.d.ts +73 -1
|
@@ -1808,7 +1808,7 @@ interface EventGuestNonNullableFields {
|
|
|
1808
1808
|
interface QueryEventGuestsResponseNonNullableFields {
|
|
1809
1809
|
guests: EventGuestNonNullableFields[];
|
|
1810
1810
|
}
|
|
1811
|
-
interface BaseEventMetadata$
|
|
1811
|
+
interface BaseEventMetadata$c {
|
|
1812
1812
|
/** App instance ID. */
|
|
1813
1813
|
instanceId?: string | null;
|
|
1814
1814
|
/** Event type. */
|
|
@@ -1816,7 +1816,7 @@ interface BaseEventMetadata$b {
|
|
|
1816
1816
|
/** The identification type and identity data. */
|
|
1817
1817
|
identity?: IdentificationData$d;
|
|
1818
1818
|
}
|
|
1819
|
-
interface EventMetadata$
|
|
1819
|
+
interface EventMetadata$7 extends BaseEventMetadata$c {
|
|
1820
1820
|
/**
|
|
1821
1821
|
* Unique event ID.
|
|
1822
1822
|
* Allows clients to ignore duplicate webhooks.
|
|
@@ -1856,31 +1856,31 @@ interface EventMetadata$6 extends BaseEventMetadata$b {
|
|
|
1856
1856
|
}
|
|
1857
1857
|
interface GuestCreatedEnvelope {
|
|
1858
1858
|
entity: EventGuest;
|
|
1859
|
-
metadata: EventMetadata$
|
|
1859
|
+
metadata: EventMetadata$7;
|
|
1860
|
+
}
|
|
1861
|
+
interface GuestUpdatedEnvelope {
|
|
1862
|
+
entity: EventGuest;
|
|
1863
|
+
metadata: EventMetadata$7;
|
|
1860
1864
|
}
|
|
1861
1865
|
interface GuestDeletedEnvelope {
|
|
1862
1866
|
entity: EventGuest;
|
|
1863
|
-
metadata: EventMetadata$
|
|
1867
|
+
metadata: EventMetadata$7;
|
|
1864
1868
|
}
|
|
1865
1869
|
interface GuestCheckedInEnvelope {
|
|
1866
1870
|
data: GuestCheckedIn;
|
|
1867
|
-
metadata: EventMetadata$
|
|
1871
|
+
metadata: EventMetadata$7;
|
|
1868
1872
|
}
|
|
1869
1873
|
interface GuestEventCanceledEnvelope {
|
|
1870
1874
|
data: GuestEventCanceled;
|
|
1871
|
-
metadata: EventMetadata$
|
|
1875
|
+
metadata: EventMetadata$7;
|
|
1872
1876
|
}
|
|
1873
1877
|
interface GuestEventStartsEnvelope {
|
|
1874
1878
|
data: GuestEventStarts;
|
|
1875
|
-
metadata: EventMetadata$
|
|
1879
|
+
metadata: EventMetadata$7;
|
|
1876
1880
|
}
|
|
1877
1881
|
interface GuestOrderCanceledEnvelope {
|
|
1878
1882
|
data: GuestOrderCanceled;
|
|
1879
|
-
metadata: EventMetadata$
|
|
1880
|
-
}
|
|
1881
|
-
interface GuestUpdatedEnvelope {
|
|
1882
|
-
entity: EventGuest;
|
|
1883
|
-
metadata: EventMetadata$6;
|
|
1883
|
+
metadata: EventMetadata$7;
|
|
1884
1884
|
}
|
|
1885
1885
|
interface QueryEventGuestsOptions {
|
|
1886
1886
|
/** Predefined sets of fields to return. */
|
|
@@ -1962,14 +1962,14 @@ interface QueryGuestsSignature {
|
|
|
1962
1962
|
(options?: QueryEventGuestsOptions | undefined): GuestsQueryBuilder;
|
|
1963
1963
|
}
|
|
1964
1964
|
declare const onGuestCreated$1: EventDefinition<GuestCreatedEnvelope, "wix.events.guests.v1.guest_created">;
|
|
1965
|
+
declare const onGuestUpdated$1: EventDefinition<GuestUpdatedEnvelope, "wix.events.guests.v1.guest_updated">;
|
|
1965
1966
|
declare const onGuestDeleted$1: EventDefinition<GuestDeletedEnvelope, "wix.events.guests.v1.guest_deleted">;
|
|
1966
1967
|
declare const onGuestCheckedIn$1: EventDefinition<GuestCheckedInEnvelope, "wix.events.guests.v1.guest_guest_checked_in">;
|
|
1967
1968
|
declare const onGuestEventCanceled$1: EventDefinition<GuestEventCanceledEnvelope, "wix.events.guests.v1.guest_guest_event_canceled">;
|
|
1968
1969
|
declare const onGuestEventStarts$1: EventDefinition<GuestEventStartsEnvelope, "wix.events.guests.v1.guest_guest_event_starts">;
|
|
1969
1970
|
declare const onGuestOrderCanceled$1: EventDefinition<GuestOrderCanceledEnvelope, "wix.events.guests.v1.guest_guest_order_canceled">;
|
|
1970
|
-
declare const onGuestUpdated$1: EventDefinition<GuestUpdatedEnvelope, "wix.events.guests.v1.guest_updated">;
|
|
1971
1971
|
|
|
1972
|
-
declare function createEventModule$
|
|
1972
|
+
declare function createEventModule$c<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
1973
1973
|
|
|
1974
1974
|
declare const queryGuests: MaybeContext<BuildRESTFunction<typeof queryGuests$1> & typeof queryGuests$1>;
|
|
1975
1975
|
|
|
@@ -1977,37 +1977,37 @@ type _publicOnGuestCreatedType = typeof onGuestCreated$1;
|
|
|
1977
1977
|
/**
|
|
1978
1978
|
* Triggered when a guest is created.
|
|
1979
1979
|
*/
|
|
1980
|
-
declare const onGuestCreated: ReturnType<typeof createEventModule$
|
|
1980
|
+
declare const onGuestCreated: ReturnType<typeof createEventModule$c<_publicOnGuestCreatedType>>;
|
|
1981
|
+
|
|
1982
|
+
type _publicOnGuestUpdatedType = typeof onGuestUpdated$1;
|
|
1983
|
+
/**
|
|
1984
|
+
* Triggered when a guest is updated. This webhook always fires together with [Event Guest Created](https://dev.wix.com/docs/rest/business-solutions/events/event-guests/event-guest-created) and [Event Guest Deleted](https://dev.wix.com/docs/rest/business-solutions/events/event-guests/event-guest-deleted) webhooks. When calling it, it might be triggered twice - make sure to explicitly add code to make sure parts of your code only run once.
|
|
1985
|
+
*/
|
|
1986
|
+
declare const onGuestUpdated: ReturnType<typeof createEventModule$c<_publicOnGuestUpdatedType>>;
|
|
1981
1987
|
|
|
1982
1988
|
type _publicOnGuestDeletedType = typeof onGuestDeleted$1;
|
|
1983
1989
|
/**
|
|
1984
1990
|
* Triggered when a guest is deleted.
|
|
1985
1991
|
*/
|
|
1986
|
-
declare const onGuestDeleted: ReturnType<typeof createEventModule$
|
|
1992
|
+
declare const onGuestDeleted: ReturnType<typeof createEventModule$c<_publicOnGuestDeletedType>>;
|
|
1987
1993
|
|
|
1988
1994
|
type _publicOnGuestCheckedInType = typeof onGuestCheckedIn$1;
|
|
1989
1995
|
/**
|
|
1990
1996
|
* Triggered when guest is checked in
|
|
1991
1997
|
*/
|
|
1992
|
-
declare const onGuestCheckedIn: ReturnType<typeof createEventModule$
|
|
1998
|
+
declare const onGuestCheckedIn: ReturnType<typeof createEventModule$c<_publicOnGuestCheckedInType>>;
|
|
1993
1999
|
|
|
1994
2000
|
type _publicOnGuestEventCanceledType = typeof onGuestEventCanceled$1;
|
|
1995
2001
|
/** */
|
|
1996
|
-
declare const onGuestEventCanceled: ReturnType<typeof createEventModule$
|
|
2002
|
+
declare const onGuestEventCanceled: ReturnType<typeof createEventModule$c<_publicOnGuestEventCanceledType>>;
|
|
1997
2003
|
|
|
1998
2004
|
type _publicOnGuestEventStartsType = typeof onGuestEventStarts$1;
|
|
1999
2005
|
/** */
|
|
2000
|
-
declare const onGuestEventStarts: ReturnType<typeof createEventModule$
|
|
2006
|
+
declare const onGuestEventStarts: ReturnType<typeof createEventModule$c<_publicOnGuestEventStartsType>>;
|
|
2001
2007
|
|
|
2002
2008
|
type _publicOnGuestOrderCanceledType = typeof onGuestOrderCanceled$1;
|
|
2003
2009
|
/** */
|
|
2004
|
-
declare const onGuestOrderCanceled: ReturnType<typeof createEventModule$
|
|
2005
|
-
|
|
2006
|
-
type _publicOnGuestUpdatedType = typeof onGuestUpdated$1;
|
|
2007
|
-
/**
|
|
2008
|
-
* Triggered when a guest is updated. This webhook always fires together with [Event Guest Created](https://dev.wix.com/docs/rest/business-solutions/events/event-guests/event-guest-created) and [Event Guest Deleted](https://dev.wix.com/docs/rest/business-solutions/events/event-guests/event-guest-deleted) webhooks. When calling it, it might be triggered twice - make sure to explicitly add code to make sure parts of your code only run once.
|
|
2009
|
-
*/
|
|
2010
|
-
declare const onGuestUpdated: ReturnType<typeof createEventModule$b<_publicOnGuestUpdatedType>>;
|
|
2010
|
+
declare const onGuestOrderCanceled: ReturnType<typeof createEventModule$c<_publicOnGuestOrderCanceledType>>;
|
|
2011
2011
|
|
|
2012
2012
|
type index_d$f_AttendanceStatus = AttendanceStatus;
|
|
2013
2013
|
declare const index_d$f_AttendanceStatus: typeof AttendanceStatus;
|
|
@@ -2075,7 +2075,7 @@ declare const index_d$f_onGuestOrderCanceled: typeof onGuestOrderCanceled;
|
|
|
2075
2075
|
declare const index_d$f_onGuestUpdated: typeof onGuestUpdated;
|
|
2076
2076
|
declare const index_d$f_queryGuests: typeof queryGuests;
|
|
2077
2077
|
declare namespace index_d$f {
|
|
2078
|
-
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$
|
|
2078
|
+
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$c 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$7 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$9 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 };
|
|
2079
2079
|
}
|
|
2080
2080
|
|
|
2081
2081
|
interface NotificationConfig {
|
|
@@ -3934,7 +3934,7 @@ interface ResolveNotificationConfigResponseNonNullableFields {
|
|
|
3934
3934
|
interface UpsertNotificationConfigResponseNonNullableFields {
|
|
3935
3935
|
notificationConfig?: NotificationConfigNonNullableFields;
|
|
3936
3936
|
}
|
|
3937
|
-
interface BaseEventMetadata$
|
|
3937
|
+
interface BaseEventMetadata$b {
|
|
3938
3938
|
/** App instance ID. */
|
|
3939
3939
|
instanceId?: string | null;
|
|
3940
3940
|
/** Event type. */
|
|
@@ -3942,7 +3942,7 @@ interface BaseEventMetadata$a {
|
|
|
3942
3942
|
/** The identification type and identity data. */
|
|
3943
3943
|
identity?: IdentificationData$c;
|
|
3944
3944
|
}
|
|
3945
|
-
interface EventMetadata$
|
|
3945
|
+
interface EventMetadata$6 extends BaseEventMetadata$b {
|
|
3946
3946
|
/**
|
|
3947
3947
|
* Unique event ID.
|
|
3948
3948
|
* Allows clients to ignore duplicate webhooks.
|
|
@@ -3982,11 +3982,11 @@ interface EventMetadata$5 extends BaseEventMetadata$a {
|
|
|
3982
3982
|
}
|
|
3983
3983
|
interface NotificationConfigCreatedEnvelope {
|
|
3984
3984
|
entity: NotificationConfig;
|
|
3985
|
-
metadata: EventMetadata$
|
|
3985
|
+
metadata: EventMetadata$6;
|
|
3986
3986
|
}
|
|
3987
3987
|
interface NotificationConfigUpdatedEnvelope {
|
|
3988
3988
|
entity: NotificationConfig;
|
|
3989
|
-
metadata: EventMetadata$
|
|
3989
|
+
metadata: EventMetadata$6;
|
|
3990
3990
|
}
|
|
3991
3991
|
interface TriggerNotificationOptions extends TriggerNotificationRequestNotificationOneOf, TriggerNotificationRequestGuestsOneOf {
|
|
3992
3992
|
/** Email notification type */
|
|
@@ -4061,7 +4061,7 @@ interface UpsertNotificationConfigSignature {
|
|
|
4061
4061
|
declare const onNotificationConfigCreated$1: EventDefinition<NotificationConfigCreatedEnvelope, "wix.events.notifications.v2.notification_config_created">;
|
|
4062
4062
|
declare const onNotificationConfigUpdated$1: EventDefinition<NotificationConfigUpdatedEnvelope, "wix.events.notifications.v2.notification_config_updated">;
|
|
4063
4063
|
|
|
4064
|
-
declare function createEventModule$
|
|
4064
|
+
declare function createEventModule$b<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
4065
4065
|
|
|
4066
4066
|
declare const triggerNotification: MaybeContext<BuildRESTFunction<typeof triggerNotification$1> & typeof triggerNotification$1>;
|
|
4067
4067
|
declare const resolveNotificationConfig: MaybeContext<BuildRESTFunction<typeof resolveNotificationConfig$1> & typeof resolveNotificationConfig$1>;
|
|
@@ -4069,11 +4069,11 @@ declare const upsertNotificationConfig: MaybeContext<BuildRESTFunction<typeof up
|
|
|
4069
4069
|
|
|
4070
4070
|
type _publicOnNotificationConfigCreatedType = typeof onNotificationConfigCreated$1;
|
|
4071
4071
|
/** */
|
|
4072
|
-
declare const onNotificationConfigCreated: ReturnType<typeof createEventModule$
|
|
4072
|
+
declare const onNotificationConfigCreated: ReturnType<typeof createEventModule$b<_publicOnNotificationConfigCreatedType>>;
|
|
4073
4073
|
|
|
4074
4074
|
type _publicOnNotificationConfigUpdatedType = typeof onNotificationConfigUpdated$1;
|
|
4075
4075
|
/** */
|
|
4076
|
-
declare const onNotificationConfigUpdated: ReturnType<typeof createEventModule$
|
|
4076
|
+
declare const onNotificationConfigUpdated: ReturnType<typeof createEventModule$b<_publicOnNotificationConfigUpdatedType>>;
|
|
4077
4077
|
|
|
4078
4078
|
type index_d$e_EmailNotificationConfig = EmailNotificationConfig;
|
|
4079
4079
|
type index_d$e_EmailNotificationReminderTime = EmailNotificationReminderTime;
|
|
@@ -4116,7 +4116,7 @@ declare const index_d$e_resolveNotificationConfig: typeof resolveNotificationCon
|
|
|
4116
4116
|
declare const index_d$e_triggerNotification: typeof triggerNotification;
|
|
4117
4117
|
declare const index_d$e_upsertNotificationConfig: typeof upsertNotificationConfig;
|
|
4118
4118
|
declare namespace index_d$e {
|
|
4119
|
-
export { type ActionEvent$8 as ActionEvent, type Address$9 as Address, type AddressLocation$9 as AddressLocation, type AddressStreetOneOf$9 as AddressStreetOneOf, type Agenda$4 as Agenda, type BaseEventMetadata$
|
|
4119
|
+
export { type ActionEvent$8 as ActionEvent, type Address$9 as Address, type AddressLocation$9 as AddressLocation, type AddressStreetOneOf$9 as AddressStreetOneOf, type Agenda$4 as Agenda, type BaseEventMetadata$b as BaseEventMetadata, type CalendarLinks$6 as CalendarLinks, type Category$5 as Category, type CategoryCounts$5 as CategoryCounts, type CheckIn$3 as CheckIn, type CheckoutFormMessages$4 as CheckoutFormMessages, type CommonAddress$3 as CommonAddress, type CommonAddressLocation$3 as CommonAddressLocation, type CommonAddressStreetOneOf$3 as CommonAddressStreetOneOf, type CommonStreetAddress$3 as CommonStreetAddress, type CommonSubdivision$3 as CommonSubdivision, ConferenceType$4 as ConferenceType, type CouponDiscount$1 as CouponDiscount, type Dashboard$6 as Dashboard, type Discount$1 as Discount, type DiscountItem$1 as DiscountItem, type DiscountItemDiscountOneOf$1 as DiscountItemDiscountOneOf, type DomainEvent$8 as DomainEvent, type DomainEventBodyOneOf$8 as DomainEventBodyOneOf, type index_d$e_EmailNotificationConfig as EmailNotificationConfig, index_d$e_EmailNotificationReminderTime as EmailNotificationReminderTime, index_d$e_EmailNotificationType as EmailNotificationType, type index_d$e_EmailTemplate as EmailTemplate, type Empty$5 as Empty, type EntityCreatedEvent$8 as EntityCreatedEvent, type EntityDeletedEvent$8 as EntityDeletedEvent, type EntityUpdatedEvent$8 as EntityUpdatedEvent, type Event$4 as Event, type EventCanceled$2 as EventCanceled, type EventCopied$3 as EventCopied, type EventDeleted$4 as EventDeleted, type EventDisplaySettings$4 as EventDisplaySettings, type EventEnded$2 as EventEnded, type index_d$e_EventGuests as EventGuests, type EventMetadata$6 as EventMetadata, type EventReminder$1 as EventReminder, type EventStarted$1 as EventStarted, EventStatus$6 as EventStatus, EventType$4 as EventType, type EventUpdated$3 as EventUpdated, type ExternalEvent$4 as ExternalEvent, type Fee$1 as Fee, FeeName$1 as FeeName, FeeType$2 as FeeType, type Feed$4 as Feed, type Form$4 as Form, type FormMessages$4 as FormMessages, type FormResponse$4 as FormResponse, type FormattedAddress$4 as FormattedAddress, type Guest$3 as Guest, type GuestListConfig$4 as GuestListConfig, type IdentificationData$c as IdentificationData, type IdentificationDataIdOneOf$c as IdentificationDataIdOneOf, type Input$4 as Input, type InputControl$4 as InputControl, InputControlType$4 as InputControlType, type InputValue$4 as InputValue, type Invoice$1 as Invoice, type Item$2 as Item, type Keyword$4 as Keyword, type Label$4 as Label, type LabellingSettings$4 as LabellingSettings, type Link$1 as Link, type Location$6 as Location, LocationType$6 as LocationType, type MapCoordinates$6 as MapCoordinates, type MessageEnvelope$c as MessageEnvelope, type Money$7 as Money, type Negative$4 as Negative, type NegativeResponseConfirmation$4 as NegativeResponseConfirmation, type index_d$e_NotificationConfig as NotificationConfig, type index_d$e_NotificationConfigCreatedEnvelope as NotificationConfigCreatedEnvelope, type index_d$e_NotificationConfigUpdatedEnvelope as NotificationConfigUpdatedEnvelope, type Occurrence$6 as Occurrence, type OnlineConferencing$4 as OnlineConferencing, type OnlineConferencingConfig$4 as OnlineConferencingConfig, type OnlineConferencingLogin$4 as OnlineConferencingLogin, type OnlineConferencingSession$4 as OnlineConferencingSession, type OptionSelection$4 as OptionSelection, type OptionSelectionSelectedOptionOneOf$4 as OptionSelectionSelectedOptionOneOf, type index_d$e_OrderCanceled as OrderCanceled, type OrderConfirmed$1 as OrderConfirmed, type index_d$e_OrderEmailAdded as OrderEmailAdded, type index_d$e_OrderGuest as OrderGuest, type OrderPaid$1 as OrderPaid, OrderStatus$2 as OrderStatus, type PaidPlanDiscount$1 as PaidPlanDiscount, type PaidPlanDiscountDiscountOneOf$1 as PaidPlanDiscountDiscountOneOf, type PercentDiscount$1 as PercentDiscount, type Positive$4 as Positive, type PositiveResponseConfirmation$4 as PositiveResponseConfirmation, index_d$e_PushNotificationType as PushNotificationType, type Recurrences$6 as Recurrences, type Registration$4 as Registration, type RegistrationClosedMessages$4 as RegistrationClosedMessages, RegistrationStatus$4 as RegistrationStatus, type index_d$e_ResolveEmailNotificationConfigRequest as ResolveEmailNotificationConfigRequest, type index_d$e_ResolveEmailNotificationConfigResponse as ResolveEmailNotificationConfigResponse, type index_d$e_ResolveNotificationConfigRequest as ResolveNotificationConfigRequest, type index_d$e_ResolveNotificationConfigResponse as ResolveNotificationConfigResponse, type index_d$e_ResolveNotificationConfigResponseNonNullableFields as ResolveNotificationConfigResponseNonNullableFields, type ResponseConfirmation$4 as ResponseConfirmation, type RestoreInfo$8 as RestoreInfo, type RsvpCollection$4 as RsvpCollection, type RsvpCollectionConfig$4 as RsvpCollectionConfig, type RsvpCreated$1 as RsvpCreated, type RsvpFormMessages$4 as RsvpFormMessages, type index_d$e_RsvpGuest as RsvpGuest, RsvpStatus$2 as RsvpStatus, RsvpStatusOptions$4 as RsvpStatusOptions, type RsvpSummary$5 as RsvpSummary, type RsvpUpdated$1 as RsvpUpdated, type ScheduleConfig$6 as ScheduleConfig, type Scheduling$4 as Scheduling, type SeoSchema$4 as SeoSchema, type SeoSettings$4 as SeoSettings, type Settings$5 as Settings, type SiteUrl$4 as SiteUrl, type StandardDetails$4 as StandardDetails, State$8 as State, Status$7 as Status, type StreetAddress$9 as StreetAddress, type Subdivision$9 as Subdivision, SubdivisionType$9 as SubdivisionType, type Tag$4 as Tag, type Tax$1 as Tax, type TaxConfig$4 as TaxConfig, TaxType$5 as TaxType, type Ticket$2 as Ticket, type index_d$e_TicketGuest as TicketGuest, type index_d$e_TicketPdfResolveDelayed as TicketPdfResolveDelayed, type index_d$e_TicketPdfResolved as TicketPdfResolved, type Ticketing$4 as Ticketing, type TicketingConfig$4 as TicketingConfig, type TicketingSummary$4 as TicketingSummary, type TicketsUnavailableMessages$4 as TicketsUnavailableMessages, type TimeDuration$1 as TimeDuration, type index_d$e_TriggerNotificationOptions as TriggerNotificationOptions, type index_d$e_TriggerNotificationRequest as TriggerNotificationRequest, type index_d$e_TriggerNotificationRequestGuestsOneOf as TriggerNotificationRequestGuestsOneOf, type index_d$e_TriggerNotificationRequestNotificationOneOf as TriggerNotificationRequestNotificationOneOf, type index_d$e_TriggerNotificationResponse as TriggerNotificationResponse, type index_d$e_UpsertNotificationConfig as UpsertNotificationConfig, type index_d$e_UpsertNotificationConfigRequest as UpsertNotificationConfigRequest, type index_d$e_UpsertNotificationConfigResponse as UpsertNotificationConfigResponse, type index_d$e_UpsertNotificationConfigResponseNonNullableFields as UpsertNotificationConfigResponseNonNullableFields, ValueType$4 as ValueType, VisitorType$4 as VisitorType, WebhookIdentityType$c as WebhookIdentityType, type index_d$e__publicOnNotificationConfigCreatedType as _publicOnNotificationConfigCreatedType, type index_d$e__publicOnNotificationConfigUpdatedType as _publicOnNotificationConfigUpdatedType, index_d$e_onNotificationConfigCreated as onNotificationConfigCreated, index_d$e_onNotificationConfigUpdated as onNotificationConfigUpdated, onNotificationConfigCreated$1 as publicOnNotificationConfigCreated, onNotificationConfigUpdated$1 as publicOnNotificationConfigUpdated, index_d$e_resolveNotificationConfig as resolveNotificationConfig, index_d$e_triggerNotification as triggerNotification, index_d$e_upsertNotificationConfig as upsertNotificationConfig };
|
|
4120
4120
|
}
|
|
4121
4121
|
|
|
4122
4122
|
/** Schedule item describes the schedule within an event. Each event may contain multiple schedule items. */
|
|
@@ -5587,7 +5587,7 @@ interface LoginStaffMemberResponseNonNullableFields {
|
|
|
5587
5587
|
interface AccessStaffMemberResponseNonNullableFields {
|
|
5588
5588
|
staffMember?: StaffMemberNonNullableFields;
|
|
5589
5589
|
}
|
|
5590
|
-
interface BaseEventMetadata$
|
|
5590
|
+
interface BaseEventMetadata$a {
|
|
5591
5591
|
/** App instance ID. */
|
|
5592
5592
|
instanceId?: string | null;
|
|
5593
5593
|
/** Event type. */
|
|
@@ -5595,7 +5595,7 @@ interface BaseEventMetadata$9 {
|
|
|
5595
5595
|
/** The identification type and identity data. */
|
|
5596
5596
|
identity?: IdentificationData$b;
|
|
5597
5597
|
}
|
|
5598
|
-
interface EventMetadata$
|
|
5598
|
+
interface EventMetadata$5 extends BaseEventMetadata$a {
|
|
5599
5599
|
/**
|
|
5600
5600
|
* Unique event ID.
|
|
5601
5601
|
* Allows clients to ignore duplicate webhooks.
|
|
@@ -5635,14 +5635,14 @@ interface EventMetadata$4 extends BaseEventMetadata$9 {
|
|
|
5635
5635
|
}
|
|
5636
5636
|
interface StaffMemberCreatedEnvelope {
|
|
5637
5637
|
entity: StaffMember;
|
|
5638
|
-
metadata: EventMetadata$
|
|
5639
|
-
}
|
|
5640
|
-
interface StaffMemberDeletedEnvelope {
|
|
5641
|
-
metadata: EventMetadata$4;
|
|
5638
|
+
metadata: EventMetadata$5;
|
|
5642
5639
|
}
|
|
5643
5640
|
interface StaffMemberUpdatedEnvelope {
|
|
5644
5641
|
entity: StaffMember;
|
|
5645
|
-
metadata: EventMetadata$
|
|
5642
|
+
metadata: EventMetadata$5;
|
|
5643
|
+
}
|
|
5644
|
+
interface StaffMemberDeletedEnvelope {
|
|
5645
|
+
metadata: EventMetadata$5;
|
|
5646
5646
|
}
|
|
5647
5647
|
interface GetStaffMemberOptions {
|
|
5648
5648
|
/**
|
|
@@ -5835,10 +5835,10 @@ interface AccessStaffMemberSignature {
|
|
|
5835
5835
|
(accessToken: string): Promise<AccessStaffMemberResponse & AccessStaffMemberResponseNonNullableFields>;
|
|
5836
5836
|
}
|
|
5837
5837
|
declare const onStaffMemberCreated$1: EventDefinition<StaffMemberCreatedEnvelope, "wix.events.staffmembers.v1.staff_member_created">;
|
|
5838
|
-
declare const onStaffMemberDeleted$1: EventDefinition<StaffMemberDeletedEnvelope, "wix.events.staffmembers.v1.staff_member_deleted">;
|
|
5839
5838
|
declare const onStaffMemberUpdated$1: EventDefinition<StaffMemberUpdatedEnvelope, "wix.events.staffmembers.v1.staff_member_updated">;
|
|
5839
|
+
declare const onStaffMemberDeleted$1: EventDefinition<StaffMemberDeletedEnvelope, "wix.events.staffmembers.v1.staff_member_deleted">;
|
|
5840
5840
|
|
|
5841
|
-
declare function createEventModule$
|
|
5841
|
+
declare function createEventModule$a<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
5842
5842
|
|
|
5843
5843
|
declare const createStaffMember: MaybeContext<BuildRESTFunction<typeof createStaffMember$1> & typeof createStaffMember$1>;
|
|
5844
5844
|
declare const getStaffMember: MaybeContext<BuildRESTFunction<typeof getStaffMember$1> & typeof getStaffMember$1>;
|
|
@@ -5851,15 +5851,15 @@ declare const accessStaffMember: MaybeContext<BuildRESTFunction<typeof accessSta
|
|
|
5851
5851
|
|
|
5852
5852
|
type _publicOnStaffMemberCreatedType = typeof onStaffMemberCreated$1;
|
|
5853
5853
|
/** */
|
|
5854
|
-
declare const onStaffMemberCreated: ReturnType<typeof createEventModule$
|
|
5854
|
+
declare const onStaffMemberCreated: ReturnType<typeof createEventModule$a<_publicOnStaffMemberCreatedType>>;
|
|
5855
5855
|
|
|
5856
|
-
type
|
|
5856
|
+
type _publicOnStaffMemberUpdatedType = typeof onStaffMemberUpdated$1;
|
|
5857
5857
|
/** */
|
|
5858
|
-
declare const
|
|
5858
|
+
declare const onStaffMemberUpdated: ReturnType<typeof createEventModule$a<_publicOnStaffMemberUpdatedType>>;
|
|
5859
5859
|
|
|
5860
|
-
type
|
|
5860
|
+
type _publicOnStaffMemberDeletedType = typeof onStaffMemberDeleted$1;
|
|
5861
5861
|
/** */
|
|
5862
|
-
declare const
|
|
5862
|
+
declare const onStaffMemberDeleted: ReturnType<typeof createEventModule$a<_publicOnStaffMemberDeletedType>>;
|
|
5863
5863
|
|
|
5864
5864
|
type index_d$b_AccessStaffMemberRequest = AccessStaffMemberRequest;
|
|
5865
5865
|
type index_d$b_AccessStaffMemberResponse = AccessStaffMemberResponse;
|
|
@@ -5918,7 +5918,7 @@ declare const index_d$b_onStaffMemberUpdated: typeof onStaffMemberUpdated;
|
|
|
5918
5918
|
declare const index_d$b_queryStaffMembers: typeof queryStaffMembers;
|
|
5919
5919
|
declare const index_d$b_updateStaffMember: typeof updateStaffMember;
|
|
5920
5920
|
declare namespace index_d$b {
|
|
5921
|
-
export { type index_d$b_AccessStaffMemberRequest as AccessStaffMemberRequest, type index_d$b_AccessStaffMemberResponse as AccessStaffMemberResponse, type index_d$b_AccessStaffMemberResponseNonNullableFields as AccessStaffMemberResponseNonNullableFields, type ActionEvent$7 as ActionEvent, type index_d$b_AllEvents as AllEvents, type BaseEventMetadata$
|
|
5921
|
+
export { type index_d$b_AccessStaffMemberRequest as AccessStaffMemberRequest, type index_d$b_AccessStaffMemberResponse as AccessStaffMemberResponse, type index_d$b_AccessStaffMemberResponseNonNullableFields as AccessStaffMemberResponseNonNullableFields, type ActionEvent$7 as ActionEvent, type index_d$b_AllEvents as AllEvents, type BaseEventMetadata$a as BaseEventMetadata, type index_d$b_CreateStaffMemberRequest as CreateStaffMemberRequest, type index_d$b_CreateStaffMemberResponse as CreateStaffMemberResponse, type index_d$b_CreateStaffMemberResponseNonNullableFields as CreateStaffMemberResponseNonNullableFields, type CursorPaging$6 as CursorPaging, type Cursors$7 as Cursors, type index_d$b_DeleteStaffMemberRequest as DeleteStaffMemberRequest, type index_d$b_DeleteStaffMemberResponse as DeleteStaffMemberResponse, type DomainEvent$7 as DomainEvent, type DomainEventBodyOneOf$7 as DomainEventBodyOneOf, type EntityCreatedEvent$7 as EntityCreatedEvent, type EntityDeletedEvent$7 as EntityDeletedEvent, type EntityUpdatedEvent$7 as EntityUpdatedEvent, type EventMetadata$5 as EventMetadata, type ExtendedFields$3 as ExtendedFields, index_d$b_Fieldset as Fieldset, type index_d$b_GetStaffMemberOptions as GetStaffMemberOptions, type index_d$b_GetStaffMemberRequest as GetStaffMemberRequest, type index_d$b_GetStaffMemberResponse as GetStaffMemberResponse, type index_d$b_GetStaffMemberResponseNonNullableFields as GetStaffMemberResponseNonNullableFields, type IdentificationData$b as IdentificationData, type IdentificationDataIdOneOf$b as IdentificationDataIdOneOf, type index_d$b_JoinStaffMemberRequest as JoinStaffMemberRequest, type index_d$b_JoinStaffMemberResponse as JoinStaffMemberResponse, type index_d$b_JoinStaffMemberResponseNonNullableFields as JoinStaffMemberResponseNonNullableFields, type index_d$b_LoginStaffMemberRequest as LoginStaffMemberRequest, type index_d$b_LoginStaffMemberResponse as LoginStaffMemberResponse, type index_d$b_LoginStaffMemberResponseNonNullableFields as LoginStaffMemberResponseNonNullableFields, type MessageEnvelope$b as MessageEnvelope, type Paging$6 as Paging, type PagingMetadataV2$6 as PagingMetadataV2, index_d$b_Permission as Permission, type index_d$b_QueryStaffMembersOptions as QueryStaffMembersOptions, type index_d$b_QueryStaffMembersRequest as QueryStaffMembersRequest, type index_d$b_QueryStaffMembersResponse as QueryStaffMembersResponse, type index_d$b_QueryStaffMembersResponseNonNullableFields as QueryStaffMembersResponseNonNullableFields, type QueryV2$5 as QueryV2, type QueryV2PagingMethodOneOf$5 as QueryV2PagingMethodOneOf, type RestoreInfo$7 as RestoreInfo, index_d$b_Scope as Scope, SortOrder$7 as SortOrder, type Sorting$7 as Sorting, type index_d$b_SpecificEvents as SpecificEvents, type index_d$b_StaffMember as StaffMember, type index_d$b_StaffMemberCreatedEnvelope as StaffMemberCreatedEnvelope, type index_d$b_StaffMemberDeletedEnvelope as StaffMemberDeletedEnvelope, type index_d$b_StaffMemberEventAccessOneOf as StaffMemberEventAccessOneOf, type index_d$b_StaffMemberNonNullableFields as StaffMemberNonNullableFields, type index_d$b_StaffMemberUpdatedEnvelope as StaffMemberUpdatedEnvelope, type index_d$b_StaffMembersQueryBuilder as StaffMembersQueryBuilder, type index_d$b_StaffMembersQueryResult as StaffMembersQueryResult, Status$6 as Status, type index_d$b_UpdateStaffMember as UpdateStaffMember, type index_d$b_UpdateStaffMemberRequest as UpdateStaffMemberRequest, type index_d$b_UpdateStaffMemberResponse as UpdateStaffMemberResponse, type index_d$b_UpdateStaffMemberResponseNonNullableFields as UpdateStaffMemberResponseNonNullableFields, WebhookIdentityType$b as WebhookIdentityType, type index_d$b__publicOnStaffMemberCreatedType as _publicOnStaffMemberCreatedType, type index_d$b__publicOnStaffMemberDeletedType as _publicOnStaffMemberDeletedType, type index_d$b__publicOnStaffMemberUpdatedType as _publicOnStaffMemberUpdatedType, index_d$b_accessStaffMember as accessStaffMember, index_d$b_createStaffMember as createStaffMember, index_d$b_deleteStaffMember as deleteStaffMember, index_d$b_getStaffMember as getStaffMember, index_d$b_joinStaffMember as joinStaffMember, index_d$b_loginStaffMember as loginStaffMember, index_d$b_onStaffMemberCreated as onStaffMemberCreated, index_d$b_onStaffMemberDeleted as onStaffMemberDeleted, index_d$b_onStaffMemberUpdated as onStaffMemberUpdated, onStaffMemberCreated$1 as publicOnStaffMemberCreated, onStaffMemberDeleted$1 as publicOnStaffMemberDeleted, onStaffMemberUpdated$1 as publicOnStaffMemberUpdated, index_d$b_queryStaffMembers as queryStaffMembers, index_d$b_updateStaffMember as updateStaffMember };
|
|
5922
5922
|
}
|
|
5923
5923
|
|
|
5924
5924
|
interface Category$4 {
|
|
@@ -8065,7 +8065,7 @@ interface UpdateMessagesResponseNonNullableFields {
|
|
|
8065
8065
|
interface PublishDraftResponseNonNullableFields {
|
|
8066
8066
|
form?: FormNonNullableFields$1;
|
|
8067
8067
|
}
|
|
8068
|
-
interface BaseEventMetadata$
|
|
8068
|
+
interface BaseEventMetadata$9 {
|
|
8069
8069
|
/** App instance ID. */
|
|
8070
8070
|
instanceId?: string | null;
|
|
8071
8071
|
/** Event type. */
|
|
@@ -8075,7 +8075,7 @@ interface BaseEventMetadata$8 {
|
|
|
8075
8075
|
}
|
|
8076
8076
|
interface FormEventUpdatedEnvelope {
|
|
8077
8077
|
data: EventUpdated$2;
|
|
8078
|
-
metadata: BaseEventMetadata$
|
|
8078
|
+
metadata: BaseEventMetadata$9;
|
|
8079
8079
|
}
|
|
8080
8080
|
interface AddControlOptions extends AddControlRequestControlOneOf {
|
|
8081
8081
|
/** Phone number input control. */
|
|
@@ -8201,7 +8201,7 @@ interface DiscardDraftSignature {
|
|
|
8201
8201
|
}
|
|
8202
8202
|
declare const onFormEventUpdated$1: EventDefinition<FormEventUpdatedEnvelope, "wix.events.events.EventUpdated">;
|
|
8203
8203
|
|
|
8204
|
-
declare function createEventModule$
|
|
8204
|
+
declare function createEventModule$9<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
8205
8205
|
|
|
8206
8206
|
declare const getForm: MaybeContext<BuildRESTFunction<typeof getForm$1> & typeof getForm$1>;
|
|
8207
8207
|
declare const addControl: MaybeContext<BuildRESTFunction<typeof addControl$1> & typeof addControl$1>;
|
|
@@ -8213,7 +8213,7 @@ declare const discardDraft: MaybeContext<BuildRESTFunction<typeof discardDraft$1
|
|
|
8213
8213
|
|
|
8214
8214
|
type _publicOnFormEventUpdatedType = typeof onFormEventUpdated$1;
|
|
8215
8215
|
/** */
|
|
8216
|
-
declare const onFormEventUpdated: ReturnType<typeof createEventModule$
|
|
8216
|
+
declare const onFormEventUpdated: ReturnType<typeof createEventModule$9<_publicOnFormEventUpdatedType>>;
|
|
8217
8217
|
|
|
8218
8218
|
type index_d$9_AddControlOptions = AddControlOptions;
|
|
8219
8219
|
type index_d$9_AddControlRequest = AddControlRequest;
|
|
@@ -8269,7 +8269,7 @@ declare const index_d$9_publishDraft: typeof publishDraft;
|
|
|
8269
8269
|
declare const index_d$9_updateControl: typeof updateControl;
|
|
8270
8270
|
declare const index_d$9_updateMessages: typeof updateMessages;
|
|
8271
8271
|
declare namespace index_d$9 {
|
|
8272
|
-
export { type ActionEvent$5 as ActionEvent, type index_d$9_AddControlOptions as AddControlOptions, type index_d$9_AddControlRequest as AddControlRequest, type index_d$9_AddControlRequestControlOneOf as AddControlRequestControlOneOf, type index_d$9_AddControlResponse as AddControlResponse, type index_d$9_AddControlResponseNonNullableFields as AddControlResponseNonNullableFields, type index_d$9_AdditionalGuestsControl as AdditionalGuestsControl, type Address$8 as Address, type index_d$9_AddressControl as AddressControl, type index_d$9_AddressControlLabels as AddressControlLabels, type AddressLocation$8 as AddressLocation, type AddressStreetOneOf$8 as AddressStreetOneOf, type Agenda$3 as Agenda, type BaseEventMetadata$
|
|
8272
|
+
export { type ActionEvent$5 as ActionEvent, type index_d$9_AddControlOptions as AddControlOptions, type index_d$9_AddControlRequest as AddControlRequest, type index_d$9_AddControlRequestControlOneOf as AddControlRequestControlOneOf, type index_d$9_AddControlResponse as AddControlResponse, type index_d$9_AddControlResponseNonNullableFields as AddControlResponseNonNullableFields, type index_d$9_AdditionalGuestsControl as AdditionalGuestsControl, type Address$8 as Address, type index_d$9_AddressControl as AddressControl, type index_d$9_AddressControlLabels as AddressControlLabels, type AddressLocation$8 as AddressLocation, type AddressStreetOneOf$8 as AddressStreetOneOf, type Agenda$3 as Agenda, type BaseEventMetadata$9 as BaseEventMetadata, type CalendarLinks$5 as CalendarLinks, type Category$3 as Category, type CategoryCounts$3 as CategoryCounts, type index_d$9_CheckboxControl as CheckboxControl, type CheckoutFormMessages$3 as CheckoutFormMessages, ConferenceType$3 as ConferenceType, type Dashboard$5 as Dashboard, type index_d$9_DateControl as DateControl, type index_d$9_DeleteControlIdentifiers as DeleteControlIdentifiers, type index_d$9_DeleteControlRequest as DeleteControlRequest, type index_d$9_DeleteControlResponse as DeleteControlResponse, type index_d$9_DeleteControlResponseNonNullableFields as DeleteControlResponseNonNullableFields, type index_d$9_DiscardDraftRequest as DiscardDraftRequest, type index_d$9_DiscardDraftResponse as DiscardDraftResponse, type DomainEvent$5 as DomainEvent, type DomainEventBodyOneOf$5 as DomainEventBodyOneOf, type index_d$9_DropdownControl as DropdownControl, type index_d$9_EmailControl as EmailControl, type EntityCreatedEvent$5 as EntityCreatedEvent, type EntityDeletedEvent$5 as EntityDeletedEvent, type EntityUpdatedEvent$5 as EntityUpdatedEvent, type Event$3 as Event, type EventDisplaySettings$3 as EventDisplaySettings, EventStatus$5 as EventStatus, EventType$3 as EventType, type EventUpdated$2 as EventUpdated, type ExternalEvent$3 as ExternalEvent, type Feed$3 as Feed, type Form$3 as Form, type index_d$9_FormEventUpdatedEnvelope as FormEventUpdatedEnvelope, type index_d$9_FormInputControlAdded as FormInputControlAdded, type index_d$9_FormInputControlDeleted as FormInputControlDeleted, type index_d$9_FormInputControlUpdated as FormInputControlUpdated, type FormMessages$3 as FormMessages, type FormNonNullableFields$1 as FormNonNullableFields, type index_d$9_GetFormRequest as GetFormRequest, type index_d$9_GetFormResponse as GetFormResponse, type index_d$9_GetFormResponseNonNullableFields as GetFormResponseNonNullableFields, type GuestListConfig$3 as GuestListConfig, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type Input$3 as Input, type InputControl$3 as InputControl, InputControlType$3 as InputControlType, type Keyword$3 as Keyword, type Label$3 as Label, type LabellingSettings$3 as LabellingSettings, type index_d$9_Labels as Labels, type Location$5 as Location, LocationType$5 as LocationType, type MapCoordinates$5 as MapCoordinates, type MessageEnvelope$9 as MessageEnvelope, type Money$6 as Money, type index_d$9_NameControl as NameControl, type index_d$9_NameControlLabels as NameControlLabels, type Negative$3 as Negative, type NegativeResponseConfirmation$3 as NegativeResponseConfirmation, type Occurrence$5 as Occurrence, type OnlineConferencing$3 as OnlineConferencing, type OnlineConferencingConfig$3 as OnlineConferencingConfig, type OnlineConferencingSession$3 as OnlineConferencingSession, type OptionSelection$3 as OptionSelection, type OptionSelectionSelectedOptionOneOf$3 as OptionSelectionSelectedOptionOneOf, type index_d$9_PhoneControl as PhoneControl, type Positive$3 as Positive, type PositiveResponseConfirmation$3 as PositiveResponseConfirmation, type index_d$9_PublishDraftRequest as PublishDraftRequest, type index_d$9_PublishDraftResponse as PublishDraftResponse, type index_d$9_PublishDraftResponseNonNullableFields as PublishDraftResponseNonNullableFields, type index_d$9_RadioButtonControl as RadioButtonControl, type Recurrences$5 as Recurrences, type Registration$3 as Registration, type RegistrationClosedMessages$3 as RegistrationClosedMessages, RegistrationStatus$3 as RegistrationStatus, RequestedFields$2 as RequestedFields, type ResponseConfirmation$3 as ResponseConfirmation, type RestoreInfo$5 as RestoreInfo, type RsvpCollection$3 as RsvpCollection, type RsvpCollectionConfig$3 as RsvpCollectionConfig, type RsvpFormMessages$3 as RsvpFormMessages, RsvpStatusOptions$3 as RsvpStatusOptions, type RsvpSummary$4 as RsvpSummary, type ScheduleConfig$5 as ScheduleConfig, type Scheduling$3 as Scheduling, type SeoSchema$3 as SeoSchema, type SeoSettings$3 as SeoSettings, type Settings$4 as Settings, type SiteUrl$3 as SiteUrl, State$6 as State, Status$5 as Status, type StreetAddress$8 as StreetAddress, type Subdivision$8 as Subdivision, SubdivisionType$8 as SubdivisionType, type Tag$3 as Tag, type TaxConfig$3 as TaxConfig, TaxType$4 as TaxType, type index_d$9_TextControl as TextControl, type Ticketing$3 as Ticketing, type TicketingConfig$3 as TicketingConfig, type TicketingSummary$3 as TicketingSummary, type TicketsUnavailableMessages$3 as TicketsUnavailableMessages, type index_d$9_UpdateControlIdentifiers as UpdateControlIdentifiers, type index_d$9_UpdateControlOptions as UpdateControlOptions, type index_d$9_UpdateControlRequest as UpdateControlRequest, type index_d$9_UpdateControlRequestControlOneOf as UpdateControlRequestControlOneOf, type index_d$9_UpdateControlResponse as UpdateControlResponse, type index_d$9_UpdateControlResponseNonNullableFields as UpdateControlResponseNonNullableFields, type index_d$9_UpdateMessagesOptions as UpdateMessagesOptions, type index_d$9_UpdateMessagesRequest as UpdateMessagesRequest, type index_d$9_UpdateMessagesResponse as UpdateMessagesResponse, type index_d$9_UpdateMessagesResponseNonNullableFields as UpdateMessagesResponseNonNullableFields, ValueType$3 as ValueType, VisitorType$3 as VisitorType, WebhookIdentityType$9 as WebhookIdentityType, type index_d$9__publicOnFormEventUpdatedType as _publicOnFormEventUpdatedType, index_d$9_addControl as addControl, index_d$9_deleteControl as deleteControl, index_d$9_discardDraft as discardDraft, index_d$9_getForm as getForm, index_d$9_onFormEventUpdated as onFormEventUpdated, onFormEventUpdated$1 as publicOnFormEventUpdated, index_d$9_publishDraft as publishDraft, index_d$9_updateControl as updateControl, index_d$9_updateMessages as updateMessages };
|
|
8273
8273
|
}
|
|
8274
8274
|
|
|
8275
8275
|
interface Order {
|
|
@@ -10165,7 +10165,7 @@ interface PosCheckoutResponseNonNullableFields {
|
|
|
10165
10165
|
order?: OrderNonNullableFields;
|
|
10166
10166
|
reservations: TicketReservationNonNullableFields[];
|
|
10167
10167
|
}
|
|
10168
|
-
interface BaseEventMetadata$
|
|
10168
|
+
interface BaseEventMetadata$8 {
|
|
10169
10169
|
/** App instance ID. */
|
|
10170
10170
|
instanceId?: string | null;
|
|
10171
10171
|
/** Event type. */
|
|
@@ -10175,27 +10175,27 @@ interface BaseEventMetadata$7 {
|
|
|
10175
10175
|
}
|
|
10176
10176
|
interface OrderDeletedEnvelope {
|
|
10177
10177
|
data: OrderDeleted;
|
|
10178
|
-
metadata: BaseEventMetadata$
|
|
10178
|
+
metadata: BaseEventMetadata$8;
|
|
10179
10179
|
}
|
|
10180
10180
|
interface OrderUpdatedEnvelope {
|
|
10181
10181
|
data: OrderUpdated$1;
|
|
10182
|
-
metadata: BaseEventMetadata$
|
|
10182
|
+
metadata: BaseEventMetadata$8;
|
|
10183
10183
|
}
|
|
10184
10184
|
interface OrderConfirmedEnvelope {
|
|
10185
10185
|
data: OrderConfirmed;
|
|
10186
|
-
metadata: BaseEventMetadata$
|
|
10186
|
+
metadata: BaseEventMetadata$8;
|
|
10187
10187
|
}
|
|
10188
10188
|
interface OrderInitiatedEnvelope {
|
|
10189
10189
|
data: OrderInitiated;
|
|
10190
|
-
metadata: BaseEventMetadata$
|
|
10190
|
+
metadata: BaseEventMetadata$8;
|
|
10191
10191
|
}
|
|
10192
10192
|
interface OrderReservationCreatedEnvelope {
|
|
10193
10193
|
data: ReservationCreated$1;
|
|
10194
|
-
metadata: BaseEventMetadata$
|
|
10194
|
+
metadata: BaseEventMetadata$8;
|
|
10195
10195
|
}
|
|
10196
10196
|
interface OrderReservationUpdatedEnvelope {
|
|
10197
10197
|
data: ReservationUpdated$1;
|
|
10198
|
-
metadata: BaseEventMetadata$
|
|
10198
|
+
metadata: BaseEventMetadata$8;
|
|
10199
10199
|
}
|
|
10200
10200
|
interface ListOrdersOptions {
|
|
10201
10201
|
/** Offset. */
|
|
@@ -10574,7 +10574,7 @@ declare const onOrderInitiated$1: EventDefinition<OrderInitiatedEnvelope, "wix.e
|
|
|
10574
10574
|
declare const onOrderReservationCreated$1: EventDefinition<OrderReservationCreatedEnvelope, "wix.events.ticketing.events.ReservationCreated">;
|
|
10575
10575
|
declare const onOrderReservationUpdated$1: EventDefinition<OrderReservationUpdatedEnvelope, "wix.events.ticketing.events.ReservationUpdated">;
|
|
10576
10576
|
|
|
10577
|
-
declare function createEventModule$
|
|
10577
|
+
declare function createEventModule$8<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
10578
10578
|
|
|
10579
10579
|
declare const listOrders: MaybeContext<BuildRESTFunction<typeof listOrders$1> & typeof listOrders$1>;
|
|
10580
10580
|
declare const getOrder: MaybeContext<BuildRESTFunction<typeof getOrder$1> & typeof getOrder$1>;
|
|
@@ -10598,27 +10598,27 @@ type _publicOnOrderDeletedType = typeof onOrderDeleted$1;
|
|
|
10598
10598
|
/**
|
|
10599
10599
|
* This event is triggered when an order is deleted via GDPR request.
|
|
10600
10600
|
*/
|
|
10601
|
-
declare const onOrderDeleted: ReturnType<typeof createEventModule$
|
|
10601
|
+
declare const onOrderDeleted: ReturnType<typeof createEventModule$8<_publicOnOrderDeletedType>>;
|
|
10602
10602
|
|
|
10603
10603
|
type _publicOnOrderUpdatedType = typeof onOrderUpdated$1;
|
|
10604
10604
|
/** */
|
|
10605
|
-
declare const onOrderUpdated: ReturnType<typeof createEventModule$
|
|
10605
|
+
declare const onOrderUpdated: ReturnType<typeof createEventModule$8<_publicOnOrderUpdatedType>>;
|
|
10606
10606
|
|
|
10607
10607
|
type _publicOnOrderConfirmedType = typeof onOrderConfirmed$1;
|
|
10608
10608
|
/** */
|
|
10609
|
-
declare const onOrderConfirmed: ReturnType<typeof createEventModule$
|
|
10609
|
+
declare const onOrderConfirmed: ReturnType<typeof createEventModule$8<_publicOnOrderConfirmedType>>;
|
|
10610
10610
|
|
|
10611
10611
|
type _publicOnOrderInitiatedType = typeof onOrderInitiated$1;
|
|
10612
10612
|
/** */
|
|
10613
|
-
declare const onOrderInitiated: ReturnType<typeof createEventModule$
|
|
10613
|
+
declare const onOrderInitiated: ReturnType<typeof createEventModule$8<_publicOnOrderInitiatedType>>;
|
|
10614
10614
|
|
|
10615
10615
|
type _publicOnOrderReservationCreatedType = typeof onOrderReservationCreated$1;
|
|
10616
10616
|
/** */
|
|
10617
|
-
declare const onOrderReservationCreated: ReturnType<typeof createEventModule$
|
|
10617
|
+
declare const onOrderReservationCreated: ReturnType<typeof createEventModule$8<_publicOnOrderReservationCreatedType>>;
|
|
10618
10618
|
|
|
10619
10619
|
type _publicOnOrderReservationUpdatedType = typeof onOrderReservationUpdated$1;
|
|
10620
10620
|
/** */
|
|
10621
|
-
declare const onOrderReservationUpdated: ReturnType<typeof createEventModule$
|
|
10621
|
+
declare const onOrderReservationUpdated: ReturnType<typeof createEventModule$8<_publicOnOrderReservationUpdatedType>>;
|
|
10622
10622
|
|
|
10623
10623
|
type index_d$8_Action = Action;
|
|
10624
10624
|
declare const index_d$8_Action: typeof Action;
|
|
@@ -10774,7 +10774,7 @@ declare const index_d$8_updateCheckout: typeof updateCheckout;
|
|
|
10774
10774
|
declare const index_d$8_updateOrder: typeof updateOrder;
|
|
10775
10775
|
declare const index_d$8_voidAuthorizedPayment: typeof voidAuthorizedPayment;
|
|
10776
10776
|
declare namespace index_d$8 {
|
|
10777
|
-
export { index_d$8_Action as Action, type Address$7 as Address, type AddressLocation$7 as AddressLocation, type AddressStreetOneOf$7 as AddressStreetOneOf, type index_d$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$7 as BaseEventMetadata, type index_d$8_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type index_d$8_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type index_d$8_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type index_d$8_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type index_d$8_Buyer as Buyer, type CalendarLinks$4 as CalendarLinks, type index_d$8_CancelReservationRequest as CancelReservationRequest, type index_d$8_CancelReservationResponse as CancelReservationResponse, type index_d$8_CaptureAuthorizedPaymentOptions as CaptureAuthorizedPaymentOptions, type index_d$8_CaptureAuthorizedPaymentRequest as CaptureAuthorizedPaymentRequest, type index_d$8_CaptureAuthorizedPaymentResponse as CaptureAuthorizedPaymentResponse, ChannelType$1 as ChannelType, type CheckIn$2 as CheckIn, type index_d$8_CheckoutOptions as CheckoutOptions, type index_d$8_CheckoutOptionsForRequest as CheckoutOptionsForRequest, type index_d$8_CheckoutRequest as CheckoutRequest, type index_d$8_CheckoutResponse as CheckoutResponse, type index_d$8_CheckoutResponseNonNullableFields as CheckoutResponseNonNullableFields, type index_d$8_ConfirmOrderOptions as ConfirmOrderOptions, type index_d$8_ConfirmOrderRequest as ConfirmOrderRequest, type index_d$8_ConfirmOrderResponse as ConfirmOrderResponse, type index_d$8_ConfirmOrderResponseNonNullableFields as ConfirmOrderResponseNonNullableFields, type Counts$2 as Counts, type index_d$8_CouponDiscount as CouponDiscount, type index_d$8_CreateReservationOptions as CreateReservationOptions, type index_d$8_CreateReservationRequest as CreateReservationRequest, type index_d$8_CreateReservationResponse as CreateReservationResponse, type index_d$8_CreateReservationResponseNonNullableFields as CreateReservationResponseNonNullableFields, type Dashboard$4 as Dashboard, type index_d$8_Discount as Discount, type index_d$8_DiscountErrors as DiscountErrors, type index_d$8_DiscountItem as DiscountItem, type index_d$8_DiscountItemDiscountOneOf as DiscountItemDiscountOneOf, type index_d$8_DiscountRequest as DiscountRequest, type index_d$8_Error as Error, type FacetCounts$5 as FacetCounts, type index_d$8_Fee as Fee, index_d$8_FeeName as FeeName, FeeType$1 as FeeType, type FormResponse$3 as FormResponse, type FormattedAddress$3 as FormattedAddress, type index_d$8_GetCheckoutOptionsRequest as GetCheckoutOptionsRequest, type index_d$8_GetCheckoutOptionsResponse as GetCheckoutOptionsResponse, type index_d$8_GetCheckoutOptionsResponseNonNullableFields as GetCheckoutOptionsResponseNonNullableFields, type index_d$8_GetInvoiceOptions as GetInvoiceOptions, type index_d$8_GetInvoicePreviewRequest as GetInvoicePreviewRequest, type index_d$8_GetInvoiceRequest as GetInvoiceRequest, type index_d$8_GetInvoiceResponse as GetInvoiceResponse, type index_d$8_GetInvoiceResponseNonNullableFields as GetInvoiceResponseNonNullableFields, type index_d$8_GetOrderIdentifiers as GetOrderIdentifiers, type index_d$8_GetOrderOptions as GetOrderOptions, type index_d$8_GetOrderRequest as GetOrderRequest, type index_d$8_GetOrderResponse as GetOrderResponse, type index_d$8_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type index_d$8_GetPaymentInfoRequest as GetPaymentInfoRequest, type index_d$8_GetPaymentInfoResponse as GetPaymentInfoResponse, type index_d$8_GetSummaryOptions as GetSummaryOptions, type index_d$8_GetSummaryRequest as GetSummaryRequest, type index_d$8_GetSummaryResponse as GetSummaryResponse, type index_d$8_GetSummaryResponseNonNullableFields as GetSummaryResponseNonNullableFields, type index_d$8_GiftCardErrors as GiftCardErrors, type index_d$8_GiftCardErrorsError as GiftCardErrorsError, type index_d$8_GiftCardPaymentDetails as GiftCardPaymentDetails, type Guest$2 as Guest, type GuestDetails$1 as GuestDetails, type index_d$8_HeadersEntry as HeadersEntry, type IdentificationData$8 as IdentificationData, type IdentificationDataIdOneOf$8 as IdentificationDataIdOneOf, type InputValue$3 as InputValue, type index_d$8_Invoice as Invoice, type Item$1 as Item, type index_d$8_ListAvailableTicketsOptions as ListAvailableTicketsOptions, type index_d$8_ListAvailableTicketsRequest as ListAvailableTicketsRequest, type index_d$8_ListAvailableTicketsResponse as ListAvailableTicketsResponse, type index_d$8_ListAvailableTicketsResponseNonNullableFields as ListAvailableTicketsResponseNonNullableFields, type index_d$8_ListOrdersOptions as ListOrdersOptions, type index_d$8_ListOrdersRequest as ListOrdersRequest, type index_d$8_ListOrdersResponse as ListOrdersResponse, type index_d$8_ListOrdersResponseNonNullableFields as ListOrdersResponseNonNullableFields, type MessageEnvelope$8 as MessageEnvelope, type Money$5 as Money, type OnlineConferencingLogin$3 as OnlineConferencingLogin, type index_d$8_Order as Order, type index_d$8_OrderConfirmed as OrderConfirmed, type index_d$8_OrderConfirmedEnvelope as OrderConfirmedEnvelope, type index_d$8_OrderDeleted as OrderDeleted, type index_d$8_OrderDeletedEnvelope as OrderDeletedEnvelope, type index_d$8_OrderFacetCounts as OrderFacetCounts, type index_d$8_OrderFacets as OrderFacets, index_d$8_OrderFieldset as OrderFieldset, type index_d$8_OrderInitiated as OrderInitiated, type index_d$8_OrderInitiatedEnvelope as OrderInitiatedEnvelope, type index_d$8_OrderNonNullableFields as OrderNonNullableFields, type index_d$8_OrderPageUrls as OrderPageUrls, type index_d$8_OrderPaid as OrderPaid, type index_d$8_OrderReservationCreatedEnvelope as OrderReservationCreatedEnvelope, type index_d$8_OrderReservationUpdatedEnvelope as OrderReservationUpdatedEnvelope, OrderStatus$1 as OrderStatus, index_d$8_OrderTag as OrderTag, index_d$8_OrderType as OrderType, type OrderUpdated$1 as OrderUpdated, type index_d$8_OrderUpdatedEnvelope as OrderUpdatedEnvelope, type index_d$8_PaidPlanBenefit as PaidPlanBenefit, type index_d$8_PaidPlanDiscount as PaidPlanDiscount, type index_d$8_PaidPlanDiscountDiscountOneOf as PaidPlanDiscountDiscountOneOf, type index_d$8_PaymentDetails as PaymentDetails, type index_d$8_PaymentTransaction as PaymentTransaction, type index_d$8_PaymentTransactionEvent as PaymentTransactionEvent, type index_d$8_PaymentTransactionSummary as PaymentTransactionSummary, type index_d$8_PercentDiscount as PercentDiscount, type index_d$8_PosCheckoutOptions as PosCheckoutOptions, type index_d$8_PosCheckoutRequest as PosCheckoutRequest, type index_d$8_PosCheckoutResponse as PosCheckoutResponse, type index_d$8_PosCheckoutResponseNonNullableFields as PosCheckoutResponseNonNullableFields, type PricingOption$1 as PricingOption, type PricingOptions$2 as PricingOptions, type index_d$8_QueryAvailableTicketsOptions as QueryAvailableTicketsOptions, type index_d$8_QueryAvailableTicketsRequest as QueryAvailableTicketsRequest, type index_d$8_QueryAvailableTicketsResponse as QueryAvailableTicketsResponse, type index_d$8_QueryAvailableTicketsResponseNonNullableFields as QueryAvailableTicketsResponseNonNullableFields, type index_d$8_RawHttpResponse as RawHttpResponse, type ReservationCount$1 as ReservationCount, type ReservationCreated$1 as ReservationCreated, ReservationStatus$1 as ReservationStatus, type ReservationUpdated$1 as ReservationUpdated, type ResponseMetaData$1 as ResponseMetaData, index_d$8_ScheduledActionEnumAction as ScheduledActionEnumAction, type StandardDetails$3 as StandardDetails, State$5 as State, type StreetAddress$7 as StreetAddress, type Subdivision$7 as Subdivision, SubdivisionType$7 as SubdivisionType, type index_d$8_Tax as Tax, TaxType$3 as TaxType, type Ticket$1 as Ticket, type TicketDefinition$2 as TicketDefinition, TicketDefinitionFieldset$1 as TicketDefinitionFieldset, type TicketDetails$1 as TicketDetails, type TicketPricing$1 as TicketPricing, type TicketPricingPriceOneOf$1 as TicketPricingPriceOneOf, type TicketQuantity$1 as TicketQuantity, type index_d$8_TicketReservation as TicketReservation, type index_d$8_TicketReservationQuantity as TicketReservationQuantity, type TicketSalePeriod$1 as TicketSalePeriod, TicketSaleStatus$1 as TicketSaleStatus, type index_d$8_TicketSales as TicketSales, type TicketingTicket$1 as TicketingTicket, Type$4 as Type, type index_d$8_UpdateCheckoutOptions as UpdateCheckoutOptions, type index_d$8_UpdateCheckoutRequest as UpdateCheckoutRequest, type index_d$8_UpdateCheckoutResponse as UpdateCheckoutResponse, type index_d$8_UpdateCheckoutResponseNonNullableFields as UpdateCheckoutResponseNonNullableFields, type index_d$8_UpdateOrderIdentifiers as UpdateOrderIdentifiers, type index_d$8_UpdateOrderOptions as UpdateOrderOptions, type index_d$8_UpdateOrderRequest as UpdateOrderRequest, type index_d$8_UpdateOrderResponse as UpdateOrderResponse, type index_d$8_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type index_d$8_VoidAuthorizedPaymentOptions as VoidAuthorizedPaymentOptions, type index_d$8_VoidAuthorizedPaymentRequest as VoidAuthorizedPaymentRequest, type index_d$8_VoidAuthorizedPaymentResponse as VoidAuthorizedPaymentResponse, WebhookIdentityType$8 as WebhookIdentityType, type WixFeeConfig$1 as WixFeeConfig, type index_d$8__publicOnOrderConfirmedType as _publicOnOrderConfirmedType, type index_d$8__publicOnOrderDeletedType as _publicOnOrderDeletedType, type index_d$8__publicOnOrderInitiatedType as _publicOnOrderInitiatedType, type index_d$8__publicOnOrderReservationCreatedType as _publicOnOrderReservationCreatedType, type index_d$8__publicOnOrderReservationUpdatedType as _publicOnOrderReservationUpdatedType, type index_d$8__publicOnOrderUpdatedType as _publicOnOrderUpdatedType, index_d$8_bulkUpdateOrders as bulkUpdateOrders, index_d$8_cancelReservation as cancelReservation, index_d$8_captureAuthorizedPayment as captureAuthorizedPayment, index_d$8_checkout as checkout, index_d$8_confirmOrder as confirmOrder, index_d$8_createReservation as createReservation, index_d$8_getCheckoutOptions as getCheckoutOptions, index_d$8_getInvoice as getInvoice, index_d$8_getOrder as getOrder, index_d$8_getSummary as getSummary, index_d$8_listAvailableTickets as listAvailableTickets, index_d$8_listOrders as listOrders, index_d$8_onOrderConfirmed as onOrderConfirmed, index_d$8_onOrderDeleted as onOrderDeleted, index_d$8_onOrderInitiated as onOrderInitiated, index_d$8_onOrderReservationCreated as onOrderReservationCreated, index_d$8_onOrderReservationUpdated as onOrderReservationUpdated, index_d$8_onOrderUpdated as onOrderUpdated, index_d$8_posCheckout as posCheckout, onOrderConfirmed$1 as publicOnOrderConfirmed, onOrderDeleted$1 as publicOnOrderDeleted, onOrderInitiated$1 as publicOnOrderInitiated, onOrderReservationCreated$1 as publicOnOrderReservationCreated, onOrderReservationUpdated$1 as publicOnOrderReservationUpdated, onOrderUpdated$1 as publicOnOrderUpdated, index_d$8_queryAvailableTickets as queryAvailableTickets, index_d$8_updateCheckout as updateCheckout, index_d$8_updateOrder as updateOrder, index_d$8_voidAuthorizedPayment as voidAuthorizedPayment };
|
|
10777
|
+
export { index_d$8_Action as Action, type Address$7 as Address, type AddressLocation$7 as AddressLocation, type AddressStreetOneOf$7 as AddressStreetOneOf, type index_d$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$8 as BaseEventMetadata, type index_d$8_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type index_d$8_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type index_d$8_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type index_d$8_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type index_d$8_Buyer as Buyer, type CalendarLinks$4 as CalendarLinks, type index_d$8_CancelReservationRequest as CancelReservationRequest, type index_d$8_CancelReservationResponse as CancelReservationResponse, type index_d$8_CaptureAuthorizedPaymentOptions as CaptureAuthorizedPaymentOptions, type index_d$8_CaptureAuthorizedPaymentRequest as CaptureAuthorizedPaymentRequest, type index_d$8_CaptureAuthorizedPaymentResponse as CaptureAuthorizedPaymentResponse, ChannelType$1 as ChannelType, type CheckIn$2 as CheckIn, type index_d$8_CheckoutOptions as CheckoutOptions, type index_d$8_CheckoutOptionsForRequest as CheckoutOptionsForRequest, type index_d$8_CheckoutRequest as CheckoutRequest, type index_d$8_CheckoutResponse as CheckoutResponse, type index_d$8_CheckoutResponseNonNullableFields as CheckoutResponseNonNullableFields, type index_d$8_ConfirmOrderOptions as ConfirmOrderOptions, type index_d$8_ConfirmOrderRequest as ConfirmOrderRequest, type index_d$8_ConfirmOrderResponse as ConfirmOrderResponse, type index_d$8_ConfirmOrderResponseNonNullableFields as ConfirmOrderResponseNonNullableFields, type Counts$2 as Counts, type index_d$8_CouponDiscount as CouponDiscount, type index_d$8_CreateReservationOptions as CreateReservationOptions, type index_d$8_CreateReservationRequest as CreateReservationRequest, type index_d$8_CreateReservationResponse as CreateReservationResponse, type index_d$8_CreateReservationResponseNonNullableFields as CreateReservationResponseNonNullableFields, type Dashboard$4 as Dashboard, type index_d$8_Discount as Discount, type index_d$8_DiscountErrors as DiscountErrors, type index_d$8_DiscountItem as DiscountItem, type index_d$8_DiscountItemDiscountOneOf as DiscountItemDiscountOneOf, type index_d$8_DiscountRequest as DiscountRequest, type index_d$8_Error as Error, type FacetCounts$5 as FacetCounts, type index_d$8_Fee as Fee, index_d$8_FeeName as FeeName, FeeType$1 as FeeType, type FormResponse$3 as FormResponse, type FormattedAddress$3 as FormattedAddress, type index_d$8_GetCheckoutOptionsRequest as GetCheckoutOptionsRequest, type index_d$8_GetCheckoutOptionsResponse as GetCheckoutOptionsResponse, type index_d$8_GetCheckoutOptionsResponseNonNullableFields as GetCheckoutOptionsResponseNonNullableFields, type index_d$8_GetInvoiceOptions as GetInvoiceOptions, type index_d$8_GetInvoicePreviewRequest as GetInvoicePreviewRequest, type index_d$8_GetInvoiceRequest as GetInvoiceRequest, type index_d$8_GetInvoiceResponse as GetInvoiceResponse, type index_d$8_GetInvoiceResponseNonNullableFields as GetInvoiceResponseNonNullableFields, type index_d$8_GetOrderIdentifiers as GetOrderIdentifiers, type index_d$8_GetOrderOptions as GetOrderOptions, type index_d$8_GetOrderRequest as GetOrderRequest, type index_d$8_GetOrderResponse as GetOrderResponse, type index_d$8_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type index_d$8_GetPaymentInfoRequest as GetPaymentInfoRequest, type index_d$8_GetPaymentInfoResponse as GetPaymentInfoResponse, type index_d$8_GetSummaryOptions as GetSummaryOptions, type index_d$8_GetSummaryRequest as GetSummaryRequest, type index_d$8_GetSummaryResponse as GetSummaryResponse, type index_d$8_GetSummaryResponseNonNullableFields as GetSummaryResponseNonNullableFields, type index_d$8_GiftCardErrors as GiftCardErrors, type index_d$8_GiftCardErrorsError as GiftCardErrorsError, type index_d$8_GiftCardPaymentDetails as GiftCardPaymentDetails, type Guest$2 as Guest, type GuestDetails$1 as GuestDetails, type index_d$8_HeadersEntry as HeadersEntry, type IdentificationData$8 as IdentificationData, type IdentificationDataIdOneOf$8 as IdentificationDataIdOneOf, type InputValue$3 as InputValue, type index_d$8_Invoice as Invoice, type Item$1 as Item, type index_d$8_ListAvailableTicketsOptions as ListAvailableTicketsOptions, type index_d$8_ListAvailableTicketsRequest as ListAvailableTicketsRequest, type index_d$8_ListAvailableTicketsResponse as ListAvailableTicketsResponse, type index_d$8_ListAvailableTicketsResponseNonNullableFields as ListAvailableTicketsResponseNonNullableFields, type index_d$8_ListOrdersOptions as ListOrdersOptions, type index_d$8_ListOrdersRequest as ListOrdersRequest, type index_d$8_ListOrdersResponse as ListOrdersResponse, type index_d$8_ListOrdersResponseNonNullableFields as ListOrdersResponseNonNullableFields, type MessageEnvelope$8 as MessageEnvelope, type Money$5 as Money, type OnlineConferencingLogin$3 as OnlineConferencingLogin, type index_d$8_Order as Order, type index_d$8_OrderConfirmed as OrderConfirmed, type index_d$8_OrderConfirmedEnvelope as OrderConfirmedEnvelope, type index_d$8_OrderDeleted as OrderDeleted, type index_d$8_OrderDeletedEnvelope as OrderDeletedEnvelope, type index_d$8_OrderFacetCounts as OrderFacetCounts, type index_d$8_OrderFacets as OrderFacets, index_d$8_OrderFieldset as OrderFieldset, type index_d$8_OrderInitiated as OrderInitiated, type index_d$8_OrderInitiatedEnvelope as OrderInitiatedEnvelope, type index_d$8_OrderNonNullableFields as OrderNonNullableFields, type index_d$8_OrderPageUrls as OrderPageUrls, type index_d$8_OrderPaid as OrderPaid, type index_d$8_OrderReservationCreatedEnvelope as OrderReservationCreatedEnvelope, type index_d$8_OrderReservationUpdatedEnvelope as OrderReservationUpdatedEnvelope, OrderStatus$1 as OrderStatus, index_d$8_OrderTag as OrderTag, index_d$8_OrderType as OrderType, type OrderUpdated$1 as OrderUpdated, type index_d$8_OrderUpdatedEnvelope as OrderUpdatedEnvelope, type index_d$8_PaidPlanBenefit as PaidPlanBenefit, type index_d$8_PaidPlanDiscount as PaidPlanDiscount, type index_d$8_PaidPlanDiscountDiscountOneOf as PaidPlanDiscountDiscountOneOf, type index_d$8_PaymentDetails as PaymentDetails, type index_d$8_PaymentTransaction as PaymentTransaction, type index_d$8_PaymentTransactionEvent as PaymentTransactionEvent, type index_d$8_PaymentTransactionSummary as PaymentTransactionSummary, type index_d$8_PercentDiscount as PercentDiscount, type index_d$8_PosCheckoutOptions as PosCheckoutOptions, type index_d$8_PosCheckoutRequest as PosCheckoutRequest, type index_d$8_PosCheckoutResponse as PosCheckoutResponse, type index_d$8_PosCheckoutResponseNonNullableFields as PosCheckoutResponseNonNullableFields, type PricingOption$1 as PricingOption, type PricingOptions$2 as PricingOptions, type index_d$8_QueryAvailableTicketsOptions as QueryAvailableTicketsOptions, type index_d$8_QueryAvailableTicketsRequest as QueryAvailableTicketsRequest, type index_d$8_QueryAvailableTicketsResponse as QueryAvailableTicketsResponse, type index_d$8_QueryAvailableTicketsResponseNonNullableFields as QueryAvailableTicketsResponseNonNullableFields, type index_d$8_RawHttpResponse as RawHttpResponse, type ReservationCount$1 as ReservationCount, type ReservationCreated$1 as ReservationCreated, ReservationStatus$1 as ReservationStatus, type ReservationUpdated$1 as ReservationUpdated, type ResponseMetaData$1 as ResponseMetaData, index_d$8_ScheduledActionEnumAction as ScheduledActionEnumAction, type StandardDetails$3 as StandardDetails, State$5 as State, type StreetAddress$7 as StreetAddress, type Subdivision$7 as Subdivision, SubdivisionType$7 as SubdivisionType, type index_d$8_Tax as Tax, TaxType$3 as TaxType, type Ticket$1 as Ticket, type TicketDefinition$2 as TicketDefinition, TicketDefinitionFieldset$1 as TicketDefinitionFieldset, type TicketDetails$1 as TicketDetails, type TicketPricing$1 as TicketPricing, type TicketPricingPriceOneOf$1 as TicketPricingPriceOneOf, type TicketQuantity$1 as TicketQuantity, type index_d$8_TicketReservation as TicketReservation, type index_d$8_TicketReservationQuantity as TicketReservationQuantity, type TicketSalePeriod$1 as TicketSalePeriod, TicketSaleStatus$1 as TicketSaleStatus, type index_d$8_TicketSales as TicketSales, type TicketingTicket$1 as TicketingTicket, Type$4 as Type, type index_d$8_UpdateCheckoutOptions as UpdateCheckoutOptions, type index_d$8_UpdateCheckoutRequest as UpdateCheckoutRequest, type index_d$8_UpdateCheckoutResponse as UpdateCheckoutResponse, type index_d$8_UpdateCheckoutResponseNonNullableFields as UpdateCheckoutResponseNonNullableFields, type index_d$8_UpdateOrderIdentifiers as UpdateOrderIdentifiers, type index_d$8_UpdateOrderOptions as UpdateOrderOptions, type index_d$8_UpdateOrderRequest as UpdateOrderRequest, type index_d$8_UpdateOrderResponse as UpdateOrderResponse, type index_d$8_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type index_d$8_VoidAuthorizedPaymentOptions as VoidAuthorizedPaymentOptions, type index_d$8_VoidAuthorizedPaymentRequest as VoidAuthorizedPaymentRequest, type index_d$8_VoidAuthorizedPaymentResponse as VoidAuthorizedPaymentResponse, WebhookIdentityType$8 as WebhookIdentityType, type WixFeeConfig$1 as WixFeeConfig, type index_d$8__publicOnOrderConfirmedType as _publicOnOrderConfirmedType, type index_d$8__publicOnOrderDeletedType as _publicOnOrderDeletedType, type index_d$8__publicOnOrderInitiatedType as _publicOnOrderInitiatedType, type index_d$8__publicOnOrderReservationCreatedType as _publicOnOrderReservationCreatedType, type index_d$8__publicOnOrderReservationUpdatedType as _publicOnOrderReservationUpdatedType, type index_d$8__publicOnOrderUpdatedType as _publicOnOrderUpdatedType, index_d$8_bulkUpdateOrders as bulkUpdateOrders, index_d$8_cancelReservation as cancelReservation, index_d$8_captureAuthorizedPayment as captureAuthorizedPayment, index_d$8_checkout as checkout, index_d$8_confirmOrder as confirmOrder, index_d$8_createReservation as createReservation, index_d$8_getCheckoutOptions as getCheckoutOptions, index_d$8_getInvoice as getInvoice, index_d$8_getOrder as getOrder, index_d$8_getSummary as getSummary, index_d$8_listAvailableTickets as listAvailableTickets, index_d$8_listOrders as listOrders, index_d$8_onOrderConfirmed as onOrderConfirmed, index_d$8_onOrderDeleted as onOrderDeleted, index_d$8_onOrderInitiated as onOrderInitiated, index_d$8_onOrderReservationCreated as onOrderReservationCreated, index_d$8_onOrderReservationUpdated as onOrderReservationUpdated, index_d$8_onOrderUpdated as onOrderUpdated, index_d$8_posCheckout as posCheckout, onOrderConfirmed$1 as publicOnOrderConfirmed, onOrderDeleted$1 as publicOnOrderDeleted, onOrderInitiated$1 as publicOnOrderInitiated, onOrderReservationCreated$1 as publicOnOrderReservationCreated, onOrderReservationUpdated$1 as publicOnOrderReservationUpdated, onOrderUpdated$1 as publicOnOrderUpdated, index_d$8_queryAvailableTickets as queryAvailableTickets, index_d$8_updateCheckout as updateCheckout, index_d$8_updateOrder as updateOrder, index_d$8_voidAuthorizedPayment as voidAuthorizedPayment };
|
|
10778
10778
|
}
|
|
10779
10779
|
|
|
10780
10780
|
interface RichContent {
|
|
@@ -12787,7 +12787,7 @@ interface QueryRichContentsResponseNonNullableFields {
|
|
|
12787
12787
|
interface QueryRichContentResponseNonNullableFields {
|
|
12788
12788
|
richContent: RichContentNonNullableFields[];
|
|
12789
12789
|
}
|
|
12790
|
-
interface BaseEventMetadata$
|
|
12790
|
+
interface BaseEventMetadata$7 {
|
|
12791
12791
|
/** App instance ID. */
|
|
12792
12792
|
instanceId?: string | null;
|
|
12793
12793
|
/** Event type. */
|
|
@@ -12795,7 +12795,7 @@ interface BaseEventMetadata$6 {
|
|
|
12795
12795
|
/** The identification type and identity data. */
|
|
12796
12796
|
identity?: IdentificationData$7;
|
|
12797
12797
|
}
|
|
12798
|
-
interface EventMetadata$
|
|
12798
|
+
interface EventMetadata$4 extends BaseEventMetadata$7 {
|
|
12799
12799
|
/**
|
|
12800
12800
|
* Unique event ID.
|
|
12801
12801
|
* Allows clients to ignore duplicate webhooks.
|
|
@@ -12835,15 +12835,15 @@ interface EventMetadata$3 extends BaseEventMetadata$6 {
|
|
|
12835
12835
|
}
|
|
12836
12836
|
interface RichContentCreatedEnvelope {
|
|
12837
12837
|
entity: RichContent;
|
|
12838
|
-
metadata: EventMetadata$
|
|
12838
|
+
metadata: EventMetadata$4;
|
|
12839
12839
|
}
|
|
12840
12840
|
interface RichContentDeletedEnvelope {
|
|
12841
12841
|
entity: RichContent;
|
|
12842
|
-
metadata: EventMetadata$
|
|
12842
|
+
metadata: EventMetadata$4;
|
|
12843
12843
|
}
|
|
12844
12844
|
interface RichContentUpdatedEnvelope {
|
|
12845
12845
|
entity: RichContent;
|
|
12846
|
-
metadata: EventMetadata$
|
|
12846
|
+
metadata: EventMetadata$4;
|
|
12847
12847
|
}
|
|
12848
12848
|
interface FindRichContentBySlugIdentifiers {
|
|
12849
12849
|
/** The event slug */
|
|
@@ -12909,6 +12909,38 @@ interface RichContentQueryResult extends QueryCursorResult$4 {
|
|
|
12909
12909
|
prev: () => Promise<RichContentQueryResult>;
|
|
12910
12910
|
}
|
|
12911
12911
|
interface RichContentQueryBuilder {
|
|
12912
|
+
/** @param propertyName - Property whose value is compared with `value`.
|
|
12913
|
+
* @param value - Value to compare against.
|
|
12914
|
+
* @documentationMaturity preview
|
|
12915
|
+
*/
|
|
12916
|
+
eq: (propertyName: '_id' | 'eventId' | 'fieldName', value: any) => RichContentQueryBuilder;
|
|
12917
|
+
/** @param propertyName - Property whose value is compared with `value`.
|
|
12918
|
+
* @param value - Value to compare against.
|
|
12919
|
+
* @documentationMaturity preview
|
|
12920
|
+
*/
|
|
12921
|
+
ne: (propertyName: '_id' | 'eventId' | 'fieldName', value: any) => RichContentQueryBuilder;
|
|
12922
|
+
/** @param propertyName - Property whose value is compared with `string`.
|
|
12923
|
+
* @param string - String to compare against. Case-insensitive.
|
|
12924
|
+
* @documentationMaturity preview
|
|
12925
|
+
*/
|
|
12926
|
+
startsWith: (propertyName: '_id' | 'eventId' | 'fieldName', value: string) => RichContentQueryBuilder;
|
|
12927
|
+
/** @param propertyName - Property whose value is compared with `values`.
|
|
12928
|
+
* @param values - List of values to compare against.
|
|
12929
|
+
* @documentationMaturity preview
|
|
12930
|
+
*/
|
|
12931
|
+
hasSome: (propertyName: '_id' | 'eventId' | 'fieldName', value: any[]) => RichContentQueryBuilder;
|
|
12932
|
+
/** @documentationMaturity preview */
|
|
12933
|
+
in: (propertyName: '_id' | 'eventId' | 'fieldName', value: any) => RichContentQueryBuilder;
|
|
12934
|
+
/** @documentationMaturity preview */
|
|
12935
|
+
exists: (propertyName: '_id' | 'eventId' | 'fieldName', value: boolean) => RichContentQueryBuilder;
|
|
12936
|
+
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
12937
|
+
* @documentationMaturity preview
|
|
12938
|
+
*/
|
|
12939
|
+
ascending: (...propertyNames: Array<'_id' | 'eventId' | 'fieldName'>) => RichContentQueryBuilder;
|
|
12940
|
+
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
12941
|
+
* @documentationMaturity preview
|
|
12942
|
+
*/
|
|
12943
|
+
descending: (...propertyNames: Array<'_id' | 'eventId' | 'fieldName'>) => RichContentQueryBuilder;
|
|
12912
12944
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
12913
12945
|
* @documentationMaturity preview
|
|
12914
12946
|
*/
|
|
@@ -12997,7 +13029,7 @@ declare const onRichContentCreated$1: EventDefinition<RichContentCreatedEnvelope
|
|
|
12997
13029
|
declare const onRichContentDeleted$1: EventDefinition<RichContentDeletedEnvelope, "wix.events.v1.rich_content_deleted">;
|
|
12998
13030
|
declare const onRichContentUpdated$1: EventDefinition<RichContentUpdatedEnvelope, "wix.events.v1.rich_content_updated">;
|
|
12999
13031
|
|
|
13000
|
-
declare function createEventModule$
|
|
13032
|
+
declare function createEventModule$7<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
13001
13033
|
|
|
13002
13034
|
declare const createRichContent: MaybeContext<BuildRESTFunction<typeof createRichContent$1> & typeof createRichContent$1>;
|
|
13003
13035
|
declare const getRichContent: MaybeContext<BuildRESTFunction<typeof getRichContent$1> & typeof getRichContent$1>;
|
|
@@ -13011,19 +13043,19 @@ type _publicOnRichContentCreatedType = typeof onRichContentCreated$1;
|
|
|
13011
13043
|
/**
|
|
13012
13044
|
* Triggered when rich content is created.
|
|
13013
13045
|
*/
|
|
13014
|
-
declare const onRichContentCreated: ReturnType<typeof createEventModule$
|
|
13046
|
+
declare const onRichContentCreated: ReturnType<typeof createEventModule$7<_publicOnRichContentCreatedType>>;
|
|
13015
13047
|
|
|
13016
13048
|
type _publicOnRichContentDeletedType = typeof onRichContentDeleted$1;
|
|
13017
13049
|
/**
|
|
13018
13050
|
* Triggered when rich content is deleted.
|
|
13019
13051
|
*/
|
|
13020
|
-
declare const onRichContentDeleted: ReturnType<typeof createEventModule$
|
|
13052
|
+
declare const onRichContentDeleted: ReturnType<typeof createEventModule$7<_publicOnRichContentDeletedType>>;
|
|
13021
13053
|
|
|
13022
13054
|
type _publicOnRichContentUpdatedType = typeof onRichContentUpdated$1;
|
|
13023
13055
|
/**
|
|
13024
13056
|
* Triggered when rich content is updated.
|
|
13025
13057
|
*/
|
|
13026
|
-
declare const onRichContentUpdated: ReturnType<typeof createEventModule$
|
|
13058
|
+
declare const onRichContentUpdated: ReturnType<typeof createEventModule$7<_publicOnRichContentUpdatedType>>;
|
|
13027
13059
|
|
|
13028
13060
|
type index_d$7_Alignment = Alignment;
|
|
13029
13061
|
declare const index_d$7_Alignment: typeof Alignment;
|
|
@@ -13213,7 +13245,7 @@ declare const index_d$7_queryRichContent: typeof queryRichContent;
|
|
|
13213
13245
|
declare const index_d$7_queryRichContents: typeof queryRichContents;
|
|
13214
13246
|
declare const index_d$7_updateRichContent: typeof updateRichContent;
|
|
13215
13247
|
declare namespace index_d$7 {
|
|
13216
|
-
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$
|
|
13248
|
+
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$7 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$4 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_QueryRichContentRequest as QueryRichContentRequest, type index_d$7_QueryRichContentResponse as QueryRichContentResponse, type index_d$7_QueryRichContentResponseNonNullableFields as QueryRichContentResponseNonNullableFields, type index_d$7_QueryRichContentsOptions as QueryRichContentsOptions, 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_RichContentQueryBuilder as RichContentQueryBuilder, type index_d$7_RichContentQueryResult as RichContentQueryResult, type index_d$7_RichContentUpdatedEnvelope as RichContentUpdatedEnvelope, 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_queryRichContent as queryRichContent, index_d$7_queryRichContents as queryRichContents, index_d$7_updateRichContent as updateRichContent };
|
|
13217
13249
|
}
|
|
13218
13250
|
|
|
13219
13251
|
interface RsvpRsvp {
|
|
@@ -13877,7 +13909,7 @@ interface CheckInRsvpResponseNonNullableFields {
|
|
|
13877
13909
|
interface DeleteRsvpCheckInResponseNonNullableFields {
|
|
13878
13910
|
rsvp?: RsvpRsvpNonNullableFields;
|
|
13879
13911
|
}
|
|
13880
|
-
interface BaseEventMetadata$
|
|
13912
|
+
interface BaseEventMetadata$6 {
|
|
13881
13913
|
/** App instance ID. */
|
|
13882
13914
|
instanceId?: string | null;
|
|
13883
13915
|
/** Event type. */
|
|
@@ -13885,17 +13917,17 @@ interface BaseEventMetadata$5 {
|
|
|
13885
13917
|
/** The identification type and identity data. */
|
|
13886
13918
|
identity?: IdentificationData$6;
|
|
13887
13919
|
}
|
|
13888
|
-
interface RsvpCreatedEnvelope {
|
|
13920
|
+
interface RsvpCreatedEnvelope$1 {
|
|
13889
13921
|
data: RsvpCreated;
|
|
13890
|
-
metadata: BaseEventMetadata$
|
|
13922
|
+
metadata: BaseEventMetadata$6;
|
|
13891
13923
|
}
|
|
13892
|
-
interface
|
|
13893
|
-
data: RsvpDeleted;
|
|
13894
|
-
metadata: BaseEventMetadata$5;
|
|
13895
|
-
}
|
|
13896
|
-
interface RsvpUpdatedEnvelope {
|
|
13924
|
+
interface RsvpUpdatedEnvelope$1 {
|
|
13897
13925
|
data: RsvpUpdated;
|
|
13898
|
-
metadata: BaseEventMetadata$
|
|
13926
|
+
metadata: BaseEventMetadata$6;
|
|
13927
|
+
}
|
|
13928
|
+
interface RsvpDeletedEnvelope$1 {
|
|
13929
|
+
data: RsvpDeleted;
|
|
13930
|
+
metadata: BaseEventMetadata$6;
|
|
13899
13931
|
}
|
|
13900
13932
|
interface ListRsvpOptions {
|
|
13901
13933
|
/** Number of items to skip. See [Pagination](https://dev.wix.com/api/rest/getting-started/pagination). */
|
|
@@ -14131,11 +14163,11 @@ interface DeleteRsvpCheckInSignature {
|
|
|
14131
14163
|
*/
|
|
14132
14164
|
(eventId: string, options?: DeleteRsvpCheckInOptions | undefined): Promise<DeleteRsvpCheckInResponse & DeleteRsvpCheckInResponseNonNullableFields>;
|
|
14133
14165
|
}
|
|
14134
|
-
declare const onRsvpCreated$
|
|
14135
|
-
declare const
|
|
14136
|
-
declare const
|
|
14166
|
+
declare const onRsvpCreated$3: EventDefinition<RsvpCreatedEnvelope$1, "wix.events.rsvp.events.RsvpCreated">;
|
|
14167
|
+
declare const onRsvpUpdated$3: EventDefinition<RsvpUpdatedEnvelope$1, "wix.events.rsvp.events.RsvpUpdated">;
|
|
14168
|
+
declare const onRsvpDeleted$3: EventDefinition<RsvpDeletedEnvelope$1, "wix.events.rsvp.events.RsvpDeleted">;
|
|
14137
14169
|
|
|
14138
|
-
declare function createEventModule$
|
|
14170
|
+
declare function createEventModule$6<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
14139
14171
|
|
|
14140
14172
|
declare const listRsvp: MaybeContext<BuildRESTFunction<typeof listRsvp$1> & typeof listRsvp$1>;
|
|
14141
14173
|
declare const queryRsvp: MaybeContext<BuildRESTFunction<typeof queryRsvp$1> & typeof queryRsvp$1>;
|
|
@@ -14147,17 +14179,17 @@ declare const deleteRsvp$2: MaybeContext<BuildRESTFunction<typeof deleteRsvp$3>
|
|
|
14147
14179
|
declare const checkInRsvp: MaybeContext<BuildRESTFunction<typeof checkInRsvp$1> & typeof checkInRsvp$1>;
|
|
14148
14180
|
declare const deleteRsvpCheckIn: MaybeContext<BuildRESTFunction<typeof deleteRsvpCheckIn$1> & typeof deleteRsvpCheckIn$1>;
|
|
14149
14181
|
|
|
14150
|
-
type _publicOnRsvpCreatedType = typeof onRsvpCreated$
|
|
14182
|
+
type _publicOnRsvpCreatedType$1 = typeof onRsvpCreated$3;
|
|
14151
14183
|
/** */
|
|
14152
|
-
declare const onRsvpCreated: ReturnType<typeof createEventModule$
|
|
14184
|
+
declare const onRsvpCreated$2: ReturnType<typeof createEventModule$6<_publicOnRsvpCreatedType>>;
|
|
14153
14185
|
|
|
14154
|
-
type
|
|
14186
|
+
type _publicOnRsvpUpdatedType$1 = typeof onRsvpUpdated$3;
|
|
14155
14187
|
/** */
|
|
14156
|
-
declare const
|
|
14188
|
+
declare const onRsvpUpdated$2: ReturnType<typeof createEventModule$6<_publicOnRsvpUpdatedType>>;
|
|
14157
14189
|
|
|
14158
|
-
type
|
|
14190
|
+
type _publicOnRsvpDeletedType$1 = typeof onRsvpDeleted$3;
|
|
14159
14191
|
/** */
|
|
14160
|
-
declare const
|
|
14192
|
+
declare const onRsvpDeleted$2: ReturnType<typeof createEventModule$6<_publicOnRsvpDeletedType>>;
|
|
14161
14193
|
|
|
14162
14194
|
type index_d$6_CheckInRsvpOptions = CheckInRsvpOptions;
|
|
14163
14195
|
type index_d$6_CheckInRsvpRequest = CheckInRsvpRequest;
|
|
@@ -14181,9 +14213,7 @@ type index_d$6_QueryRsvpRequest = QueryRsvpRequest;
|
|
|
14181
14213
|
type index_d$6_QueryRsvpResponse = QueryRsvpResponse;
|
|
14182
14214
|
type index_d$6_QueryRsvpResponseNonNullableFields = QueryRsvpResponseNonNullableFields;
|
|
14183
14215
|
type index_d$6_RsvpCreated = RsvpCreated;
|
|
14184
|
-
type index_d$6_RsvpCreatedEnvelope = RsvpCreatedEnvelope;
|
|
14185
14216
|
type index_d$6_RsvpDeleted = RsvpDeleted;
|
|
14186
|
-
type index_d$6_RsvpDeletedEnvelope = RsvpDeletedEnvelope;
|
|
14187
14217
|
type index_d$6_RsvpFacetCounts = RsvpFacetCounts;
|
|
14188
14218
|
type index_d$6_RsvpFacets = RsvpFacets;
|
|
14189
14219
|
type index_d$6_RsvpFieldset = RsvpFieldset;
|
|
@@ -14193,19 +14223,12 @@ type index_d$6_RsvpRsvpNonNullableFields = RsvpRsvpNonNullableFields;
|
|
|
14193
14223
|
type index_d$6_RsvpTag = RsvpTag;
|
|
14194
14224
|
declare const index_d$6_RsvpTag: typeof RsvpTag;
|
|
14195
14225
|
type index_d$6_RsvpUpdated = RsvpUpdated;
|
|
14196
|
-
type index_d$6_RsvpUpdatedEnvelope = RsvpUpdatedEnvelope;
|
|
14197
|
-
type index_d$6__publicOnRsvpCreatedType = _publicOnRsvpCreatedType;
|
|
14198
|
-
type index_d$6__publicOnRsvpDeletedType = _publicOnRsvpDeletedType;
|
|
14199
|
-
type index_d$6__publicOnRsvpUpdatedType = _publicOnRsvpUpdatedType;
|
|
14200
14226
|
declare const index_d$6_checkInRsvp: typeof checkInRsvp;
|
|
14201
14227
|
declare const index_d$6_deleteRsvpCheckIn: typeof deleteRsvpCheckIn;
|
|
14202
14228
|
declare const index_d$6_listRsvp: typeof listRsvp;
|
|
14203
|
-
declare const index_d$6_onRsvpCreated: typeof onRsvpCreated;
|
|
14204
|
-
declare const index_d$6_onRsvpDeleted: typeof onRsvpDeleted;
|
|
14205
|
-
declare const index_d$6_onRsvpUpdated: typeof onRsvpUpdated;
|
|
14206
14229
|
declare const index_d$6_queryRsvp: typeof queryRsvp;
|
|
14207
14230
|
declare namespace index_d$6 {
|
|
14208
|
-
export { type Address$5 as Address, type AddressLocation$5 as AddressLocation, type AddressStreetOneOf$5 as AddressStreetOneOf, type BaseEventMetadata$
|
|
14231
|
+
export { type Address$5 as Address, type AddressLocation$5 as AddressLocation, type AddressStreetOneOf$5 as AddressStreetOneOf, type BaseEventMetadata$6 as BaseEventMetadata, type BulkUpdateRsvpContactIdRequest$1 as BulkUpdateRsvpContactIdRequest, type BulkUpdateRsvpContactIdResponse$1 as BulkUpdateRsvpContactIdResponse, type BulkUpdateRsvpOptions$1 as BulkUpdateRsvpOptions, type BulkUpdateRsvpRequest$1 as BulkUpdateRsvpRequest, type BulkUpdateRsvpResponse$1 as BulkUpdateRsvpResponse, type BulkUpdateRsvpResponseNonNullableFields$1 as BulkUpdateRsvpResponseNonNullableFields, type CalendarLinks$3 as CalendarLinks, type CheckIn$1 as CheckIn, type index_d$6_CheckInRsvpOptions as CheckInRsvpOptions, type index_d$6_CheckInRsvpRequest as CheckInRsvpRequest, type index_d$6_CheckInRsvpResponse as CheckInRsvpResponse, type index_d$6_CheckInRsvpResponseNonNullableFields as CheckInRsvpResponseNonNullableFields, type index_d$6_CountRsvpAttendingGuestsRequest as CountRsvpAttendingGuestsRequest, type index_d$6_CountRsvpAttendingGuestsResponse as CountRsvpAttendingGuestsResponse, type Counts$1 as Counts, type CreateRsvpOptions$1 as CreateRsvpOptions, type CreateRsvpRequest$1 as CreateRsvpRequest, type CreateRsvpResponse$1 as CreateRsvpResponse, type CreateRsvpResponseNonNullableFields$1 as CreateRsvpResponseNonNullableFields, type index_d$6_DeleteRsvpCheckInOptions as DeleteRsvpCheckInOptions, type index_d$6_DeleteRsvpCheckInRequest as DeleteRsvpCheckInRequest, type index_d$6_DeleteRsvpCheckInResponse as DeleteRsvpCheckInResponse, type index_d$6_DeleteRsvpCheckInResponseNonNullableFields as DeleteRsvpCheckInResponseNonNullableFields, type index_d$6_DeleteRsvpOptions as DeleteRsvpOptions, type DeleteRsvpRequest$1 as DeleteRsvpRequest, type DeleteRsvpResponse$1 as DeleteRsvpResponse, type FacetCounts$4 as FacetCounts, type index_d$6_FindRsvpSummaryRequest as FindRsvpSummaryRequest, type index_d$6_FindRsvpSummaryResponse as FindRsvpSummaryResponse, type FormResponse$2 as FormResponse, type FormattedAddress$2 as FormattedAddress, type GetRsvpOptions$1 as GetRsvpOptions, type GetRsvpRequest$1 as GetRsvpRequest, type GetRsvpResponse$1 as GetRsvpResponse, type GetRsvpResponseNonNullableFields$1 as GetRsvpResponseNonNullableFields, type Guest$1 as Guest, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type InputValue$2 as InputValue, type index_d$6_ListRsvpOptions as ListRsvpOptions, type index_d$6_ListRsvpRequest as ListRsvpRequest, type index_d$6_ListRsvpResponse as ListRsvpResponse, type index_d$6_ListRsvpResponseNonNullableFields as ListRsvpResponseNonNullableFields, type MessageEnvelope$6 as MessageEnvelope, type ModificationOptions$1 as ModificationOptions, type OnlineConferencingLogin$2 as OnlineConferencingLogin, type index_d$6_QueryRsvpOptions as QueryRsvpOptions, type index_d$6_QueryRsvpRequest as QueryRsvpRequest, type index_d$6_QueryRsvpResponse as QueryRsvpResponse, type index_d$6_QueryRsvpResponseNonNullableFields as QueryRsvpResponseNonNullableFields, type Rsvp$1 as Rsvp, type index_d$6_RsvpCreated as RsvpCreated, type RsvpCreatedEnvelope$1 as RsvpCreatedEnvelope, type index_d$6_RsvpDeleted as RsvpDeleted, type RsvpDeletedEnvelope$1 as RsvpDeletedEnvelope, type index_d$6_RsvpFacetCounts as RsvpFacetCounts, type index_d$6_RsvpFacets as RsvpFacets, index_d$6_RsvpFieldset as RsvpFieldset, type index_d$6_RsvpRsvp as RsvpRsvp, type index_d$6_RsvpRsvpNonNullableFields as RsvpRsvpNonNullableFields, RsvpStatus$1 as RsvpStatus, type RsvpSummary$3 as RsvpSummary, index_d$6_RsvpTag as RsvpTag, type index_d$6_RsvpUpdated as RsvpUpdated, type RsvpUpdatedEnvelope$1 as RsvpUpdatedEnvelope, type StandardDetails$2 as StandardDetails, type StreetAddress$5 as StreetAddress, type Subdivision$5 as Subdivision, SubdivisionType$5 as SubdivisionType, type UpdateRsvpOptions$1 as UpdateRsvpOptions, type UpdateRsvpRequest$1 as UpdateRsvpRequest, type UpdateRsvpResponse$1 as UpdateRsvpResponse, type UpdateRsvpResponseNonNullableFields$1 as UpdateRsvpResponseNonNullableFields, WebhookIdentityType$6 as WebhookIdentityType, type _publicOnRsvpCreatedType$1 as _publicOnRsvpCreatedType, type _publicOnRsvpDeletedType$1 as _publicOnRsvpDeletedType, type _publicOnRsvpUpdatedType$1 as _publicOnRsvpUpdatedType, bulkUpdateRsvp$2 as bulkUpdateRsvp, index_d$6_checkInRsvp as checkInRsvp, createRsvp$2 as createRsvp, deleteRsvp$2 as deleteRsvp, index_d$6_deleteRsvpCheckIn as deleteRsvpCheckIn, getRsvp$2 as getRsvp, index_d$6_listRsvp as listRsvp, onRsvpCreated$2 as onRsvpCreated, onRsvpDeleted$2 as onRsvpDeleted, onRsvpUpdated$2 as onRsvpUpdated, onRsvpCreated$3 as publicOnRsvpCreated, onRsvpDeleted$3 as publicOnRsvpDeleted, onRsvpUpdated$3 as publicOnRsvpUpdated, index_d$6_queryRsvp as queryRsvp, updateRsvp$2 as updateRsvp };
|
|
14209
14232
|
}
|
|
14210
14233
|
|
|
14211
14234
|
interface TicketingTicket {
|
|
@@ -14852,7 +14875,7 @@ interface UpdateTicketResponseNonNullableFields {
|
|
|
14852
14875
|
interface BulkUpdateTicketsResponseNonNullableFields {
|
|
14853
14876
|
tickets: TicketingTicketNonNullableFields[];
|
|
14854
14877
|
}
|
|
14855
|
-
interface BaseEventMetadata$
|
|
14878
|
+
interface BaseEventMetadata$5 {
|
|
14856
14879
|
/** App instance ID. */
|
|
14857
14880
|
instanceId?: string | null;
|
|
14858
14881
|
/** Event type. */
|
|
@@ -14862,7 +14885,7 @@ interface BaseEventMetadata$4 {
|
|
|
14862
14885
|
}
|
|
14863
14886
|
interface TicketOrderUpdatedEnvelope {
|
|
14864
14887
|
data: OrderUpdated;
|
|
14865
|
-
metadata: BaseEventMetadata$
|
|
14888
|
+
metadata: BaseEventMetadata$5;
|
|
14866
14889
|
}
|
|
14867
14890
|
interface ListTicketsOptions {
|
|
14868
14891
|
/**
|
|
@@ -15022,7 +15045,7 @@ interface BulkUpdateTicketsSignature {
|
|
|
15022
15045
|
}
|
|
15023
15046
|
declare const onTicketOrderUpdated$1: EventDefinition<TicketOrderUpdatedEnvelope, "wix.events.ticketing.events.OrderUpdated">;
|
|
15024
15047
|
|
|
15025
|
-
declare function createEventModule$
|
|
15048
|
+
declare function createEventModule$5<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
15026
15049
|
|
|
15027
15050
|
declare const listTickets: MaybeContext<BuildRESTFunction<typeof listTickets$1> & typeof listTickets$1>;
|
|
15028
15051
|
declare const getTicket: MaybeContext<BuildRESTFunction<typeof getTicket$1> & typeof getTicket$1>;
|
|
@@ -15033,7 +15056,7 @@ declare const bulkUpdateTickets: MaybeContext<BuildRESTFunction<typeof bulkUpdat
|
|
|
15033
15056
|
|
|
15034
15057
|
type _publicOnTicketOrderUpdatedType = typeof onTicketOrderUpdated$1;
|
|
15035
15058
|
/** */
|
|
15036
|
-
declare const onTicketOrderUpdated: ReturnType<typeof createEventModule$
|
|
15059
|
+
declare const onTicketOrderUpdated: ReturnType<typeof createEventModule$5<_publicOnTicketOrderUpdatedType>>;
|
|
15037
15060
|
|
|
15038
15061
|
type index_d$5_BulkUpdateTicketsOptions = BulkUpdateTicketsOptions;
|
|
15039
15062
|
type index_d$5_BulkUpdateTicketsRequest = BulkUpdateTicketsRequest;
|
|
@@ -15090,7 +15113,7 @@ declare const index_d$5_listTickets: typeof listTickets;
|
|
|
15090
15113
|
declare const index_d$5_onTicketOrderUpdated: typeof onTicketOrderUpdated;
|
|
15091
15114
|
declare const index_d$5_updateTicket: typeof updateTicket;
|
|
15092
15115
|
declare namespace index_d$5 {
|
|
15093
|
-
export { type Address$4 as Address, type AddressLocation$4 as AddressLocation, type AddressStreetOneOf$4 as AddressStreetOneOf, type BaseEventMetadata$
|
|
15116
|
+
export { type Address$4 as Address, type AddressLocation$4 as AddressLocation, type AddressStreetOneOf$4 as AddressStreetOneOf, type BaseEventMetadata$5 as BaseEventMetadata, type index_d$5_BulkUpdateTicketsOptions as BulkUpdateTicketsOptions, type index_d$5_BulkUpdateTicketsRequest as BulkUpdateTicketsRequest, type index_d$5_BulkUpdateTicketsResponse as BulkUpdateTicketsResponse, type index_d$5_BulkUpdateTicketsResponseNonNullableFields as BulkUpdateTicketsResponseNonNullableFields, index_d$5_ChannelType as ChannelType, type index_d$5_CheckIn as CheckIn, type index_d$5_CheckInTicketRequest as CheckInTicketRequest, type index_d$5_CheckInTicketResponse as CheckInTicketResponse, type index_d$5_CheckInTicketResponseNonNullableFields as CheckInTicketResponseNonNullableFields, type index_d$5_CheckInTicketsOptions as CheckInTicketsOptions, type index_d$5_Counts as Counts, type index_d$5_DeleteTicketCheckInRequest as DeleteTicketCheckInRequest, type index_d$5_DeleteTicketCheckInResponse as DeleteTicketCheckInResponse, type index_d$5_DeleteTicketCheckInResponseNonNullableFields as DeleteTicketCheckInResponseNonNullableFields, type index_d$5_DeleteTicketCheckInsOptions as DeleteTicketCheckInsOptions, type FacetCounts$3 as FacetCounts, type FormResponse$1 as FormResponse, type FormattedAddress$1 as FormattedAddress, type index_d$5_GetDemoTicketRequest as GetDemoTicketRequest, type index_d$5_GetDemoTicketResponse as GetDemoTicketResponse, type index_d$5_GetTicketIdentifiers as GetTicketIdentifiers, type index_d$5_GetTicketOptions as GetTicketOptions, type index_d$5_GetTicketRequest as GetTicketRequest, type index_d$5_GetTicketResponse as GetTicketResponse, type index_d$5_GetTicketResponseNonNullableFields as GetTicketResponseNonNullableFields, type index_d$5_GuestDetails as GuestDetails, type index_d$5_GuestDetailsUpdate as GuestDetailsUpdate, type IdentificationData$5 as IdentificationData, type IdentificationDataIdOneOf$5 as IdentificationDataIdOneOf, type InputValue$1 as InputValue, type index_d$5_ListTicketsOptions as ListTicketsOptions, type index_d$5_ListTicketsRequest as ListTicketsRequest, type index_d$5_ListTicketsResponse as ListTicketsResponse, type index_d$5_ListTicketsResponseNonNullableFields as ListTicketsResponseNonNullableFields, type MessageEnvelope$5 as MessageEnvelope, type Money$4 as Money, type OnlineConferencingLogin$1 as OnlineConferencingLogin, index_d$5_OrderStatus as OrderStatus, type index_d$5_OrderUpdated as OrderUpdated, type StandardDetails$1 as StandardDetails, State$4 as State, type StreetAddress$4 as StreetAddress, type Subdivision$4 as Subdivision, SubdivisionType$4 as SubdivisionType, type index_d$5_Ticket as Ticket, type index_d$5_TicketDetails as TicketDetails, type index_d$5_TicketFacetCounts as TicketFacetCounts, type index_d$5_TicketFacets as TicketFacets, index_d$5_TicketFieldset as TicketFieldset, type index_d$5_TicketOrderUpdatedEnvelope as TicketOrderUpdatedEnvelope, type index_d$5_TicketingTicket as TicketingTicket, type index_d$5_TicketingTicketNonNullableFields as TicketingTicketNonNullableFields, type index_d$5_UpdateTicketIdentifiers as UpdateTicketIdentifiers, type index_d$5_UpdateTicketOptions as UpdateTicketOptions, type index_d$5_UpdateTicketRequest as UpdateTicketRequest, type index_d$5_UpdateTicketResponse as UpdateTicketResponse, type index_d$5_UpdateTicketResponseNonNullableFields as UpdateTicketResponseNonNullableFields, WebhookIdentityType$5 as WebhookIdentityType, type index_d$5__publicOnTicketOrderUpdatedType as _publicOnTicketOrderUpdatedType, index_d$5_bulkUpdateTickets as bulkUpdateTickets, index_d$5_checkInTickets as checkInTickets, index_d$5_deleteTicketCheckIns as deleteTicketCheckIns, index_d$5_getTicket as getTicket, index_d$5_listTickets as listTickets, index_d$5_onTicketOrderUpdated as onTicketOrderUpdated, onTicketOrderUpdated$1 as publicOnTicketOrderUpdated, index_d$5_updateTicket as updateTicket };
|
|
15094
15117
|
}
|
|
15095
15118
|
|
|
15096
15119
|
interface TicketDefinition$1 {
|
|
@@ -15708,7 +15731,7 @@ interface CreateTicketDefinitionResponseNonNullableFields$1 {
|
|
|
15708
15731
|
interface UpdateTicketDefinitionResponseNonNullableFields$1 {
|
|
15709
15732
|
definition?: TicketDefinitionNonNullableFields$1;
|
|
15710
15733
|
}
|
|
15711
|
-
interface BaseEventMetadata$
|
|
15734
|
+
interface BaseEventMetadata$4 {
|
|
15712
15735
|
/** App instance ID. */
|
|
15713
15736
|
instanceId?: string | null;
|
|
15714
15737
|
/** Event type. */
|
|
@@ -15718,15 +15741,15 @@ interface BaseEventMetadata$3 {
|
|
|
15718
15741
|
}
|
|
15719
15742
|
interface TicketDefinitionCreatedEnvelope$1 {
|
|
15720
15743
|
data: TicketDefinitionCreated;
|
|
15721
|
-
metadata: BaseEventMetadata$
|
|
15722
|
-
}
|
|
15723
|
-
interface TicketDefinitionDeletedEnvelope$1 {
|
|
15724
|
-
data: TicketDefinitionDeleted;
|
|
15725
|
-
metadata: BaseEventMetadata$3;
|
|
15744
|
+
metadata: BaseEventMetadata$4;
|
|
15726
15745
|
}
|
|
15727
15746
|
interface TicketDefinitionUpdatedEnvelope$1 {
|
|
15728
15747
|
data: TicketDefinitionUpdated;
|
|
15729
|
-
metadata: BaseEventMetadata$
|
|
15748
|
+
metadata: BaseEventMetadata$4;
|
|
15749
|
+
}
|
|
15750
|
+
interface TicketDefinitionDeletedEnvelope$1 {
|
|
15751
|
+
data: TicketDefinitionDeleted;
|
|
15752
|
+
metadata: BaseEventMetadata$4;
|
|
15730
15753
|
}
|
|
15731
15754
|
interface QueryTicketDefinitionsOptions$1 {
|
|
15732
15755
|
/** Offset. See [Pagination](https://dev.wix.com/api/rest/getting-started/pagination). */
|
|
@@ -16005,10 +16028,10 @@ interface ChangeCurrencySignature$1 {
|
|
|
16005
16028
|
(options?: ChangeCurrencyOptions$1 | undefined): Promise<void>;
|
|
16006
16029
|
}
|
|
16007
16030
|
declare const onTicketDefinitionCreated$3: EventDefinition<TicketDefinitionCreatedEnvelope$1, "wix.events.ticketing.events.TicketDefinitionCreated">;
|
|
16008
|
-
declare const onTicketDefinitionDeleted$3: EventDefinition<TicketDefinitionDeletedEnvelope$1, "wix.events.ticketing.events.TicketDefinitionDeleted">;
|
|
16009
16031
|
declare const onTicketDefinitionUpdated$3: EventDefinition<TicketDefinitionUpdatedEnvelope$1, "wix.events.ticketing.events.TicketDefinitionUpdated">;
|
|
16032
|
+
declare const onTicketDefinitionDeleted$3: EventDefinition<TicketDefinitionDeletedEnvelope$1, "wix.events.ticketing.events.TicketDefinitionDeleted">;
|
|
16010
16033
|
|
|
16011
|
-
declare function createEventModule$
|
|
16034
|
+
declare function createEventModule$4<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
16012
16035
|
|
|
16013
16036
|
declare const queryTicketDefinitions$2: MaybeContext<BuildRESTFunction<typeof queryTicketDefinitions$3> & typeof queryTicketDefinitions$3>;
|
|
16014
16037
|
declare const queryTicketDefinitionsV2: MaybeContext<BuildRESTFunction<typeof queryTicketDefinitionsV2$1> & typeof queryTicketDefinitionsV2$1>;
|
|
@@ -16021,15 +16044,15 @@ declare const changeCurrency$2: MaybeContext<BuildRESTFunction<typeof changeCurr
|
|
|
16021
16044
|
|
|
16022
16045
|
type _publicOnTicketDefinitionCreatedType$1 = typeof onTicketDefinitionCreated$3;
|
|
16023
16046
|
/** */
|
|
16024
|
-
declare const onTicketDefinitionCreated$2: ReturnType<typeof createEventModule$
|
|
16047
|
+
declare const onTicketDefinitionCreated$2: ReturnType<typeof createEventModule$4<_publicOnTicketDefinitionCreatedType>>;
|
|
16025
16048
|
|
|
16026
|
-
type
|
|
16049
|
+
type _publicOnTicketDefinitionUpdatedType$1 = typeof onTicketDefinitionUpdated$3;
|
|
16027
16050
|
/** */
|
|
16028
|
-
declare const
|
|
16051
|
+
declare const onTicketDefinitionUpdated$2: ReturnType<typeof createEventModule$4<_publicOnTicketDefinitionUpdatedType>>;
|
|
16029
16052
|
|
|
16030
|
-
type
|
|
16053
|
+
type _publicOnTicketDefinitionDeletedType$1 = typeof onTicketDefinitionDeleted$3;
|
|
16031
16054
|
/** */
|
|
16032
|
-
declare const
|
|
16055
|
+
declare const onTicketDefinitionDeleted$2: ReturnType<typeof createEventModule$4<_publicOnTicketDefinitionDeletedType>>;
|
|
16033
16056
|
|
|
16034
16057
|
type index_d$4_ById = ById;
|
|
16035
16058
|
type index_d$4_DefinitionsQueryBuilder = DefinitionsQueryBuilder;
|
|
@@ -16070,7 +16093,7 @@ type index_d$4_WixFeeConfig = WixFeeConfig;
|
|
|
16070
16093
|
declare const index_d$4_listTicketDefinitions: typeof listTicketDefinitions;
|
|
16071
16094
|
declare const index_d$4_queryTicketDefinitionsV2: typeof queryTicketDefinitionsV2;
|
|
16072
16095
|
declare namespace index_d$4 {
|
|
16073
|
-
export { type BaseEventMetadata$
|
|
16096
|
+
export { type BaseEventMetadata$4 as BaseEventMetadata, type BulkCopyTicketDefinitionsByEventIdRequest$1 as BulkCopyTicketDefinitionsByEventIdRequest, type BulkCopyTicketDefinitionsByEventIdResponse$1 as BulkCopyTicketDefinitionsByEventIdResponse, type index_d$4_ById as ById, type ChangeCurrencyOptions$1 as ChangeCurrencyOptions, type ChangeCurrencyRequest$1 as ChangeCurrencyRequest, type ChangeCurrencyResponse$1 as ChangeCurrencyResponse, type CopiedTicketDefinition$1 as CopiedTicketDefinition, type CreateTicketDefinitionOptions$1 as CreateTicketDefinitionOptions, type CreateTicketDefinitionRequest$1 as CreateTicketDefinitionRequest, type CreateTicketDefinitionResponse$1 as CreateTicketDefinitionResponse, type CreateTicketDefinitionResponseNonNullableFields$1 as CreateTicketDefinitionResponseNonNullableFields, type CursorPaging$4 as CursorPaging, type Cursors$4 as Cursors, type Dashboard$3 as Dashboard, type index_d$4_DefinitionsQueryBuilder as DefinitionsQueryBuilder, type index_d$4_DefinitionsQueryResult as DefinitionsQueryResult, type index_d$4_DeleteTicketDefinitionOptions as DeleteTicketDefinitionOptions, type DeleteTicketDefinitionRequest$1 as DeleteTicketDefinitionRequest, type index_d$4_DeleteTicketDefinitionRequestDeleteOneOf as DeleteTicketDefinitionRequestDeleteOneOf, type DeleteTicketDefinitionResponse$1 as DeleteTicketDefinitionResponse, type FacetCounts$2 as FacetCounts, index_d$4_FeeType as FeeType, type GetTicketDefinitionOptions$1 as GetTicketDefinitionOptions, type GetTicketDefinitionRequest$1 as GetTicketDefinitionRequest, type GetTicketDefinitionResponse$1 as GetTicketDefinitionResponse, type GetTicketDefinitionResponseNonNullableFields$1 as GetTicketDefinitionResponseNonNullableFields, index_d$4_GroupBy as GroupBy, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type index_d$4_ListTicketDefinitionsOptions as ListTicketDefinitionsOptions, type index_d$4_ListTicketDefinitionsRequest as ListTicketDefinitionsRequest, type index_d$4_ListTicketDefinitionsResponse as ListTicketDefinitionsResponse, type index_d$4_ListTicketDefinitionsResponseNonNullableFields as ListTicketDefinitionsResponseNonNullableFields, type MessageEnvelope$4 as MessageEnvelope, type Money$3 as Money, type index_d$4_OriginatedFrom as OriginatedFrom, type Paging$4 as Paging, type PagingMetadataV2$4 as PagingMetadataV2, type index_d$4_PaidTicketDefinitionExistsRequest as PaidTicketDefinitionExistsRequest, type index_d$4_PaidTicketDefinitionExistsResponse as PaidTicketDefinitionExistsResponse, type index_d$4_PricingOption as PricingOption, type PricingOptions$1 as PricingOptions, type QueryTicketDefinitionsOptions$1 as QueryTicketDefinitionsOptions, type QueryTicketDefinitionsRequest$1 as QueryTicketDefinitionsRequest, type QueryTicketDefinitionsResponse$1 as QueryTicketDefinitionsResponse, type QueryTicketDefinitionsResponseNonNullableFields$1 as QueryTicketDefinitionsResponseNonNullableFields, type index_d$4_QueryTicketDefinitionsV2Options as QueryTicketDefinitionsV2Options, type index_d$4_QueryTicketDefinitionsV2Request as QueryTicketDefinitionsV2Request, type index_d$4_QueryTicketDefinitionsV2Response as QueryTicketDefinitionsV2Response, type index_d$4_QueryTicketDefinitionsV2ResponseNonNullableFields as QueryTicketDefinitionsV2ResponseNonNullableFields, type QueryV2$3 as QueryV2, type QueryV2PagingMethodOneOf$3 as QueryV2PagingMethodOneOf, type index_d$4_ResponseMetaData as ResponseMetaData, SortOrder$4 as SortOrder, type Sorting$4 as Sorting, State$3 as State, type TicketDefinition$1 as TicketDefinition, type index_d$4_TicketDefinitionCreated as TicketDefinitionCreated, type TicketDefinitionCreatedEnvelope$1 as TicketDefinitionCreatedEnvelope, type index_d$4_TicketDefinitionData as TicketDefinitionData, type index_d$4_TicketDefinitionDeleted as TicketDefinitionDeleted, type TicketDefinitionDeletedEnvelope$1 as TicketDefinitionDeletedEnvelope, index_d$4_TicketDefinitionFieldset as TicketDefinitionFieldset, type TicketDefinitionNonNullableFields$1 as TicketDefinitionNonNullableFields, index_d$4_TicketDefinitionStateEnumState as TicketDefinitionStateEnumState, type index_d$4_TicketDefinitionUpdated as TicketDefinitionUpdated, type TicketDefinitionUpdatedEnvelope$1 as TicketDefinitionUpdatedEnvelope, type index_d$4_TicketPricing as TicketPricing, type index_d$4_TicketPricingPriceOneOf as TicketPricingPriceOneOf, type index_d$4_TicketSalePeriod as TicketSalePeriod, index_d$4_TicketSaleStatus as TicketSaleStatus, Type$2 as Type, type UpdateTicketDefinitionOptions$1 as UpdateTicketDefinitionOptions, type UpdateTicketDefinitionRequest$1 as UpdateTicketDefinitionRequest, type UpdateTicketDefinitionResponse$1 as UpdateTicketDefinitionResponse, type UpdateTicketDefinitionResponseNonNullableFields$1 as UpdateTicketDefinitionResponseNonNullableFields, WebhookIdentityType$4 as WebhookIdentityType, type index_d$4_WixFeeConfig as WixFeeConfig, type _publicOnTicketDefinitionCreatedType$1 as _publicOnTicketDefinitionCreatedType, type _publicOnTicketDefinitionDeletedType$1 as _publicOnTicketDefinitionDeletedType, type _publicOnTicketDefinitionUpdatedType$1 as _publicOnTicketDefinitionUpdatedType, changeCurrency$2 as changeCurrency, createTicketDefinition$2 as createTicketDefinition, deleteTicketDefinition$2 as deleteTicketDefinition, getTicketDefinition$2 as getTicketDefinition, index_d$4_listTicketDefinitions as listTicketDefinitions, onTicketDefinitionCreated$2 as onTicketDefinitionCreated, onTicketDefinitionDeleted$2 as onTicketDefinitionDeleted, onTicketDefinitionUpdated$2 as onTicketDefinitionUpdated, onTicketDefinitionCreated$3 as publicOnTicketDefinitionCreated, onTicketDefinitionDeleted$3 as publicOnTicketDefinitionDeleted, onTicketDefinitionUpdated$3 as publicOnTicketDefinitionUpdated, queryTicketDefinitions$2 as queryTicketDefinitions, index_d$4_queryTicketDefinitionsV2 as queryTicketDefinitionsV2, updateTicketDefinition$2 as updateTicketDefinition };
|
|
16074
16097
|
}
|
|
16075
16098
|
|
|
16076
16099
|
interface Policy {
|
|
@@ -16581,7 +16604,7 @@ interface ReorderEventPoliciesResponseNonNullableFields {
|
|
|
16581
16604
|
interface GetPolicyResponseNonNullableFields {
|
|
16582
16605
|
policy?: PolicyNonNullableFields;
|
|
16583
16606
|
}
|
|
16584
|
-
interface BaseEventMetadata$
|
|
16607
|
+
interface BaseEventMetadata$3 {
|
|
16585
16608
|
/** App instance ID. */
|
|
16586
16609
|
instanceId?: string | null;
|
|
16587
16610
|
/** Event type. */
|
|
@@ -16589,7 +16612,7 @@ interface BaseEventMetadata$2 {
|
|
|
16589
16612
|
/** The identification type and identity data. */
|
|
16590
16613
|
identity?: IdentificationData$3;
|
|
16591
16614
|
}
|
|
16592
|
-
interface EventMetadata$
|
|
16615
|
+
interface EventMetadata$3 extends BaseEventMetadata$3 {
|
|
16593
16616
|
/**
|
|
16594
16617
|
* Unique event ID.
|
|
16595
16618
|
* Allows clients to ignore duplicate webhooks.
|
|
@@ -16629,14 +16652,14 @@ interface EventMetadata$2 extends BaseEventMetadata$2 {
|
|
|
16629
16652
|
}
|
|
16630
16653
|
interface PolicyCreatedEnvelope {
|
|
16631
16654
|
entity: Policy;
|
|
16632
|
-
metadata: EventMetadata$
|
|
16633
|
-
}
|
|
16634
|
-
interface PolicyDeletedEnvelope {
|
|
16635
|
-
metadata: EventMetadata$2;
|
|
16655
|
+
metadata: EventMetadata$3;
|
|
16636
16656
|
}
|
|
16637
16657
|
interface PolicyUpdatedEnvelope {
|
|
16638
16658
|
entity: Policy;
|
|
16639
|
-
metadata: EventMetadata$
|
|
16659
|
+
metadata: EventMetadata$3;
|
|
16660
|
+
}
|
|
16661
|
+
interface PolicyDeletedEnvelope {
|
|
16662
|
+
metadata: EventMetadata$3;
|
|
16640
16663
|
}
|
|
16641
16664
|
interface UpdatePolicy {
|
|
16642
16665
|
/**
|
|
@@ -16846,10 +16869,10 @@ interface GetPolicySignature {
|
|
|
16846
16869
|
(policyId: string): Promise<Policy & PolicyNonNullableFields>;
|
|
16847
16870
|
}
|
|
16848
16871
|
declare const onPolicyCreated$1: EventDefinition<PolicyCreatedEnvelope, "wix.events.v2.policy_created">;
|
|
16849
|
-
declare const onPolicyDeleted$1: EventDefinition<PolicyDeletedEnvelope, "wix.events.v2.policy_deleted">;
|
|
16850
16872
|
declare const onPolicyUpdated$1: EventDefinition<PolicyUpdatedEnvelope, "wix.events.v2.policy_updated">;
|
|
16873
|
+
declare const onPolicyDeleted$1: EventDefinition<PolicyDeletedEnvelope, "wix.events.v2.policy_deleted">;
|
|
16851
16874
|
|
|
16852
|
-
declare function createEventModule$
|
|
16875
|
+
declare function createEventModule$3<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
16853
16876
|
|
|
16854
16877
|
declare const createPolicy: MaybeContext<BuildRESTFunction<typeof createPolicy$1> & typeof createPolicy$1>;
|
|
16855
16878
|
declare const updatePolicy: MaybeContext<BuildRESTFunction<typeof updatePolicy$1> & typeof updatePolicy$1>;
|
|
@@ -16862,19 +16885,19 @@ type _publicOnPolicyCreatedType = typeof onPolicyCreated$1;
|
|
|
16862
16885
|
/**
|
|
16863
16886
|
* Triggered when a policy is created.
|
|
16864
16887
|
*/
|
|
16865
|
-
declare const onPolicyCreated: ReturnType<typeof createEventModule$
|
|
16888
|
+
declare const onPolicyCreated: ReturnType<typeof createEventModule$3<_publicOnPolicyCreatedType>>;
|
|
16866
16889
|
|
|
16867
|
-
type
|
|
16890
|
+
type _publicOnPolicyUpdatedType = typeof onPolicyUpdated$1;
|
|
16868
16891
|
/**
|
|
16869
|
-
* Triggered when a policy is
|
|
16892
|
+
* Triggered when a policy is updated.
|
|
16870
16893
|
*/
|
|
16871
|
-
declare const
|
|
16894
|
+
declare const onPolicyUpdated: ReturnType<typeof createEventModule$3<_publicOnPolicyUpdatedType>>;
|
|
16872
16895
|
|
|
16873
|
-
type
|
|
16896
|
+
type _publicOnPolicyDeletedType = typeof onPolicyDeleted$1;
|
|
16874
16897
|
/**
|
|
16875
|
-
* Triggered when a policy is
|
|
16898
|
+
* Triggered when a policy is deleted.
|
|
16876
16899
|
*/
|
|
16877
|
-
declare const
|
|
16900
|
+
declare const onPolicyDeleted: ReturnType<typeof createEventModule$3<_publicOnPolicyDeletedType>>;
|
|
16878
16901
|
|
|
16879
16902
|
type index_d$3_CreatePolicyRequest = CreatePolicyRequest;
|
|
16880
16903
|
type index_d$3_CreatePolicyResponse = CreatePolicyResponse;
|
|
@@ -16920,7 +16943,7 @@ declare const index_d$3_queryPolicies: typeof queryPolicies;
|
|
|
16920
16943
|
declare const index_d$3_reorderEventPolicies: typeof reorderEventPolicies;
|
|
16921
16944
|
declare const index_d$3_updatePolicy: typeof updatePolicy;
|
|
16922
16945
|
declare namespace index_d$3 {
|
|
16923
|
-
export { type ActionEvent$3 as ActionEvent, type Address$3 as Address, type AddressLocation$3 as AddressLocation, type AddressStreetOneOf$3 as AddressStreetOneOf, type BaseEventMetadata$
|
|
16946
|
+
export { type ActionEvent$3 as ActionEvent, type Address$3 as Address, type AddressLocation$3 as AddressLocation, type AddressStreetOneOf$3 as AddressStreetOneOf, type BaseEventMetadata$3 as BaseEventMetadata, type index_d$3_CreatePolicyRequest as CreatePolicyRequest, type index_d$3_CreatePolicyResponse as CreatePolicyResponse, type index_d$3_CreatePolicyResponseNonNullableFields as CreatePolicyResponseNonNullableFields, type CursorPaging$3 as CursorPaging, type Cursors$3 as Cursors, type index_d$3_DeletePolicyRequest as DeletePolicyRequest, type index_d$3_DeletePolicyResponse as DeletePolicyResponse, type DomainEvent$3 as DomainEvent, type DomainEventBodyOneOf$3 as DomainEventBodyOneOf, type Empty$3 as Empty, type EntityCreatedEvent$3 as EntityCreatedEvent, type EntityDeletedEvent$3 as EntityDeletedEvent, type EntityUpdatedEvent$3 as EntityUpdatedEvent, type EventCopied$1 as EventCopied, type EventMetadata$3 as EventMetadata, EventStatus$3 as EventStatus, type index_d$3_GetPolicyFromTrashBinRequest as GetPolicyFromTrashBinRequest, type index_d$3_GetPolicyFromTrashBinResponse as GetPolicyFromTrashBinResponse, type index_d$3_GetPolicyRequest as GetPolicyRequest, type index_d$3_GetPolicyResponse as GetPolicyResponse, type index_d$3_GetPolicyResponseNonNullableFields as GetPolicyResponseNonNullableFields, type IdentificationData$3 as IdentificationData, type IdentificationDataIdOneOf$3 as IdentificationDataIdOneOf, type Location$3 as Location, LocationType$3 as LocationType, type MapCoordinates$3 as MapCoordinates, type MessageEnvelope$3 as MessageEnvelope, type Occurrence$3 as Occurrence, type Paging$3 as Paging, type PagingMetadataV2$3 as PagingMetadataV2, type index_d$3_PoliciesQueryBuilder as PoliciesQueryBuilder, type index_d$3_PoliciesQueryResult as PoliciesQueryResult, type index_d$3_Policy as Policy, type index_d$3_PolicyCreatedEnvelope as PolicyCreatedEnvelope, type index_d$3_PolicyDeletedEnvelope as PolicyDeletedEnvelope, type index_d$3_PolicyNonNullableFields as PolicyNonNullableFields, type index_d$3_PolicyUpdatedEnvelope as PolicyUpdatedEnvelope, type index_d$3_QueryPoliciesRequest as QueryPoliciesRequest, type index_d$3_QueryPoliciesResponse as QueryPoliciesResponse, type index_d$3_QueryPoliciesResponseNonNullableFields as QueryPoliciesResponseNonNullableFields, type QueryV2$2 as QueryV2, type QueryV2PagingMethodOneOf$2 as QueryV2PagingMethodOneOf, type Recurrences$3 as Recurrences, type index_d$3_ReorderEventPoliciesOptions as ReorderEventPoliciesOptions, type index_d$3_ReorderEventPoliciesRequest as ReorderEventPoliciesRequest, type index_d$3_ReorderEventPoliciesRequestReferencePolicyOneOf as ReorderEventPoliciesRequestReferencePolicyOneOf, type index_d$3_ReorderEventPoliciesResponse as ReorderEventPoliciesResponse, type index_d$3_ReorderEventPoliciesResponseNonNullableFields as ReorderEventPoliciesResponseNonNullableFields, type RestoreInfo$3 as RestoreInfo, type ScheduleConfig$3 as ScheduleConfig, SortOrder$3 as SortOrder, type Sorting$3 as Sorting, Status$3 as Status, type StreetAddress$3 as StreetAddress, type Subdivision$3 as Subdivision, SubdivisionType$3 as SubdivisionType, type index_d$3_UpdatePolicy as UpdatePolicy, type index_d$3_UpdatePolicyRequest as UpdatePolicyRequest, type index_d$3_UpdatePolicyResponse as UpdatePolicyResponse, type index_d$3_UpdatePolicyResponseNonNullableFields as UpdatePolicyResponseNonNullableFields, type index_d$3_UpdatePolicySortIndexRequest as UpdatePolicySortIndexRequest, type index_d$3_UpdatePolicySortIndexResponse as UpdatePolicySortIndexResponse, WebhookIdentityType$3 as WebhookIdentityType, type index_d$3__publicOnPolicyCreatedType as _publicOnPolicyCreatedType, type index_d$3__publicOnPolicyDeletedType as _publicOnPolicyDeletedType, type index_d$3__publicOnPolicyUpdatedType as _publicOnPolicyUpdatedType, index_d$3_createPolicy as createPolicy, index_d$3_deletePolicy as deletePolicy, index_d$3_getPolicy as getPolicy, index_d$3_onPolicyCreated as onPolicyCreated, index_d$3_onPolicyDeleted as onPolicyDeleted, index_d$3_onPolicyUpdated as onPolicyUpdated, onPolicyCreated$1 as publicOnPolicyCreated, onPolicyDeleted$1 as publicOnPolicyDeleted, onPolicyUpdated$1 as publicOnPolicyUpdated, index_d$3_queryPolicies as queryPolicies, index_d$3_reorderEventPolicies as reorderEventPolicies, index_d$3_updatePolicy as updatePolicy };
|
|
16924
16947
|
}
|
|
16925
16948
|
|
|
16926
16949
|
interface Rsvp {
|
|
@@ -17891,9 +17914,7 @@ interface CancelRsvpGuestsCheckInResponse {
|
|
|
17891
17914
|
}
|
|
17892
17915
|
interface ListRsvpSummaryRequest {
|
|
17893
17916
|
/** Event ID. */
|
|
17894
|
-
eventId
|
|
17895
|
-
/** Consistent read. */
|
|
17896
|
-
consistentRead?: boolean | null;
|
|
17917
|
+
eventId: string[] | null;
|
|
17897
17918
|
}
|
|
17898
17919
|
interface ListRsvpSummaryResponse {
|
|
17899
17920
|
/** Rsvp summaries. */
|
|
@@ -19081,6 +19102,64 @@ interface CheckInRsvpGuestsResponseNonNullableFields {
|
|
|
19081
19102
|
interface CancelRsvpGuestsCheckInResponseNonNullableFields {
|
|
19082
19103
|
rsvp?: RsvpNonNullableFields;
|
|
19083
19104
|
}
|
|
19105
|
+
interface BaseEventMetadata$2 {
|
|
19106
|
+
/** App instance ID. */
|
|
19107
|
+
instanceId?: string | null;
|
|
19108
|
+
/** Event type. */
|
|
19109
|
+
eventType?: string;
|
|
19110
|
+
/** The identification type and identity data. */
|
|
19111
|
+
identity?: IdentificationData$2;
|
|
19112
|
+
}
|
|
19113
|
+
interface EventMetadata$2 extends BaseEventMetadata$2 {
|
|
19114
|
+
/**
|
|
19115
|
+
* Unique event ID.
|
|
19116
|
+
* Allows clients to ignore duplicate webhooks.
|
|
19117
|
+
*/
|
|
19118
|
+
_id?: string;
|
|
19119
|
+
/**
|
|
19120
|
+
* Assumes actions are also always typed to an entity_type
|
|
19121
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
19122
|
+
*/
|
|
19123
|
+
entityFqdn?: string;
|
|
19124
|
+
/**
|
|
19125
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
19126
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
19127
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
19128
|
+
*/
|
|
19129
|
+
slug?: string;
|
|
19130
|
+
/** ID of the entity associated with the event. */
|
|
19131
|
+
entityId?: string;
|
|
19132
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
19133
|
+
eventTime?: Date | null;
|
|
19134
|
+
/**
|
|
19135
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
19136
|
+
* (for example, GDPR).
|
|
19137
|
+
*/
|
|
19138
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
19139
|
+
/** If present, indicates the action that triggered the event. */
|
|
19140
|
+
originatedFrom?: string | null;
|
|
19141
|
+
/**
|
|
19142
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
19143
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
19144
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
19145
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
19146
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
19147
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
19148
|
+
*/
|
|
19149
|
+
entityEventSequence?: string | null;
|
|
19150
|
+
}
|
|
19151
|
+
interface RsvpCreatedEnvelope {
|
|
19152
|
+
entity: Rsvp;
|
|
19153
|
+
metadata: EventMetadata$2;
|
|
19154
|
+
}
|
|
19155
|
+
interface RsvpDeletedEnvelope {
|
|
19156
|
+
entity: Rsvp;
|
|
19157
|
+
metadata: EventMetadata$2;
|
|
19158
|
+
}
|
|
19159
|
+
interface RsvpUpdatedEnvelope {
|
|
19160
|
+
entity: Rsvp;
|
|
19161
|
+
metadata: EventMetadata$2;
|
|
19162
|
+
}
|
|
19084
19163
|
interface SearchRsvpsOptions {
|
|
19085
19164
|
/** Search options. See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more details. */
|
|
19086
19165
|
search?: CursorSearch;
|
|
@@ -19119,54 +19198,44 @@ interface RsvpsQueryBuilder {
|
|
|
19119
19198
|
* @param value - Value to compare against.
|
|
19120
19199
|
* @documentationMaturity preview
|
|
19121
19200
|
*/
|
|
19122
|
-
eq: (propertyName: '_id' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | '
|
|
19201
|
+
eq: (propertyName: '_id' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'fullyCheckedIn', value: any) => RsvpsQueryBuilder;
|
|
19123
19202
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
19124
19203
|
* @param value - Value to compare against.
|
|
19125
19204
|
* @documentationMaturity preview
|
|
19126
19205
|
*/
|
|
19127
|
-
ne: (propertyName: '_id' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | '
|
|
19206
|
+
ne: (propertyName: '_id' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'fullyCheckedIn', value: any) => RsvpsQueryBuilder;
|
|
19128
19207
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
19129
19208
|
* @param value - Value to compare against.
|
|
19130
19209
|
* @documentationMaturity preview
|
|
19131
19210
|
*/
|
|
19132
|
-
ge: (propertyName: '_createdDate' | '_updatedDate'
|
|
19211
|
+
ge: (propertyName: '_createdDate' | '_updatedDate', value: any) => RsvpsQueryBuilder;
|
|
19133
19212
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
19134
19213
|
* @param value - Value to compare against.
|
|
19135
19214
|
* @documentationMaturity preview
|
|
19136
19215
|
*/
|
|
19137
|
-
gt: (propertyName: '_createdDate' | '_updatedDate'
|
|
19216
|
+
gt: (propertyName: '_createdDate' | '_updatedDate', value: any) => RsvpsQueryBuilder;
|
|
19138
19217
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
19139
19218
|
* @param value - Value to compare against.
|
|
19140
19219
|
* @documentationMaturity preview
|
|
19141
19220
|
*/
|
|
19142
|
-
le: (propertyName: '_createdDate' | '_updatedDate'
|
|
19221
|
+
le: (propertyName: '_createdDate' | '_updatedDate', value: any) => RsvpsQueryBuilder;
|
|
19143
19222
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
19144
19223
|
* @param value - Value to compare against.
|
|
19145
19224
|
* @documentationMaturity preview
|
|
19146
19225
|
*/
|
|
19147
|
-
lt: (propertyName: '_createdDate' | '_updatedDate'
|
|
19148
|
-
/** @param propertyName - Property whose value is compared with `string`.
|
|
19149
|
-
* @param string - String to compare against. Case-insensitive.
|
|
19150
|
-
* @documentationMaturity preview
|
|
19151
|
-
*/
|
|
19152
|
-
startsWith: (propertyName: '_id' | 'eventId' | 'memberId' | 'contactId', value: string) => RsvpsQueryBuilder;
|
|
19153
|
-
/** @param propertyName - Property whose value is compared with `values`.
|
|
19154
|
-
* @param values - List of values to compare against.
|
|
19155
|
-
* @documentationMaturity preview
|
|
19156
|
-
*/
|
|
19157
|
-
hasSome: (propertyName: '_id' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'fullyCheckedIn' | 'checkedInGuestCount' | 'anonymized', value: any[]) => RsvpsQueryBuilder;
|
|
19226
|
+
lt: (propertyName: '_createdDate' | '_updatedDate', value: any) => RsvpsQueryBuilder;
|
|
19158
19227
|
/** @documentationMaturity preview */
|
|
19159
|
-
in: (propertyName: '_id' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | '
|
|
19228
|
+
in: (propertyName: '_id' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'fullyCheckedIn', value: any) => RsvpsQueryBuilder;
|
|
19160
19229
|
/** @documentationMaturity preview */
|
|
19161
|
-
exists: (propertyName: '_id' | 'eventId' | '
|
|
19230
|
+
exists: (propertyName: '_id' | 'eventId' | 'memberId' | 'contactId', value: boolean) => RsvpsQueryBuilder;
|
|
19162
19231
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
19163
19232
|
* @documentationMaturity preview
|
|
19164
19233
|
*/
|
|
19165
|
-
ascending: (...propertyNames: Array<'
|
|
19234
|
+
ascending: (...propertyNames: Array<'_createdDate' | '_updatedDate' | 'status' | 'fullyCheckedIn'>) => RsvpsQueryBuilder;
|
|
19166
19235
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
19167
19236
|
* @documentationMaturity preview
|
|
19168
19237
|
*/
|
|
19169
|
-
descending: (...propertyNames: Array<'
|
|
19238
|
+
descending: (...propertyNames: Array<'_createdDate' | '_updatedDate' | 'status' | 'fullyCheckedIn'>) => RsvpsQueryBuilder;
|
|
19170
19239
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
19171
19240
|
* @documentationMaturity preview
|
|
19172
19241
|
*/
|
|
@@ -19351,7 +19420,14 @@ interface SearchRsvpsSignature {
|
|
|
19351
19420
|
}
|
|
19352
19421
|
declare function queryRsvps$1(httpClient: HttpClient): QueryRsvpsSignature;
|
|
19353
19422
|
interface QueryRsvpsSignature {
|
|
19354
|
-
/**
|
|
19423
|
+
/**
|
|
19424
|
+
* Returns list of rsvp by filter. Most optimal queries:
|
|
19425
|
+
* {"eventId" and "status"}
|
|
19426
|
+
* {"eventId" and "fullyCheckedIn"}
|
|
19427
|
+
* {"eventId" and "memberId"}
|
|
19428
|
+
* {"contactId" and "eventId"}
|
|
19429
|
+
* {"createdDate" and "eventId"}
|
|
19430
|
+
*/
|
|
19355
19431
|
(options?: QueryRsvpsOptions | undefined): RsvpsQueryBuilder;
|
|
19356
19432
|
}
|
|
19357
19433
|
declare function countRsvps$1(httpClient: HttpClient): CountRsvpsSignature;
|
|
@@ -19433,6 +19509,19 @@ interface CancelRsvpGuestsCheckInSignature {
|
|
|
19433
19509
|
*/
|
|
19434
19510
|
(rsvpId: string, options?: CancelRsvpGuestsCheckInOptions | undefined): Promise<CancelRsvpGuestsCheckInResponse & CancelRsvpGuestsCheckInResponseNonNullableFields>;
|
|
19435
19511
|
}
|
|
19512
|
+
declare function listRsvpSummary$1(httpClient: HttpClient): ListRsvpSummarySignature;
|
|
19513
|
+
interface ListRsvpSummarySignature {
|
|
19514
|
+
/**
|
|
19515
|
+
* Retrieves RSVP summary by ID.
|
|
19516
|
+
* @param - Event ID.
|
|
19517
|
+
*/
|
|
19518
|
+
(eventId: string[] | null): Promise<ListRsvpSummaryResponse>;
|
|
19519
|
+
}
|
|
19520
|
+
declare const onRsvpCreated$1: EventDefinition<RsvpCreatedEnvelope, "wix.events.v2.rsvp_created">;
|
|
19521
|
+
declare const onRsvpDeleted$1: EventDefinition<RsvpDeletedEnvelope, "wix.events.v2.rsvp_deleted">;
|
|
19522
|
+
declare const onRsvpUpdated$1: EventDefinition<RsvpUpdatedEnvelope, "wix.events.v2.rsvp_updated">;
|
|
19523
|
+
|
|
19524
|
+
declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
19436
19525
|
|
|
19437
19526
|
declare const searchRsvps: MaybeContext<BuildRESTFunction<typeof searchRsvps$1> & typeof searchRsvps$1>;
|
|
19438
19527
|
declare const queryRsvps: MaybeContext<BuildRESTFunction<typeof queryRsvps$1> & typeof queryRsvps$1>;
|
|
@@ -19445,14 +19534,27 @@ declare const bulkUpdateRsvp: MaybeContext<BuildRESTFunction<typeof bulkUpdateRs
|
|
|
19445
19534
|
declare const bulkDeleteRsvpsByFilter: MaybeContext<BuildRESTFunction<typeof bulkDeleteRsvpsByFilter$1> & typeof bulkDeleteRsvpsByFilter$1>;
|
|
19446
19535
|
declare const checkInRsvpGuests: MaybeContext<BuildRESTFunction<typeof checkInRsvpGuests$1> & typeof checkInRsvpGuests$1>;
|
|
19447
19536
|
declare const cancelRsvpGuestsCheckIn: MaybeContext<BuildRESTFunction<typeof cancelRsvpGuestsCheckIn$1> & typeof cancelRsvpGuestsCheckIn$1>;
|
|
19537
|
+
declare const listRsvpSummary: MaybeContext<BuildRESTFunction<typeof listRsvpSummary$1> & typeof listRsvpSummary$1>;
|
|
19448
19538
|
|
|
19449
|
-
type
|
|
19450
|
-
|
|
19451
|
-
|
|
19452
|
-
|
|
19453
|
-
type
|
|
19454
|
-
|
|
19455
|
-
|
|
19539
|
+
type _publicOnRsvpCreatedType = typeof onRsvpCreated$1;
|
|
19540
|
+
/** */
|
|
19541
|
+
declare const onRsvpCreated: ReturnType<typeof createEventModule$2<_publicOnRsvpCreatedType>>;
|
|
19542
|
+
|
|
19543
|
+
type _publicOnRsvpDeletedType = typeof onRsvpDeleted$1;
|
|
19544
|
+
/** */
|
|
19545
|
+
declare const onRsvpDeleted: ReturnType<typeof createEventModule$2<_publicOnRsvpDeletedType>>;
|
|
19546
|
+
|
|
19547
|
+
type _publicOnRsvpUpdatedType = typeof onRsvpUpdated$1;
|
|
19548
|
+
/** */
|
|
19549
|
+
declare const onRsvpUpdated: ReturnType<typeof createEventModule$2<_publicOnRsvpUpdatedType>>;
|
|
19550
|
+
|
|
19551
|
+
type index_d$2_AdditionalGuestDetails = AdditionalGuestDetails;
|
|
19552
|
+
type index_d$2_Aggregation = Aggregation;
|
|
19553
|
+
type index_d$2_AggregationData = AggregationData;
|
|
19554
|
+
type index_d$2_AggregationKindOneOf = AggregationKindOneOf;
|
|
19555
|
+
type index_d$2_AggregationResults = AggregationResults;
|
|
19556
|
+
type index_d$2_AggregationResultsResultOneOf = AggregationResultsResultOneOf;
|
|
19557
|
+
type index_d$2_AggregationResultsScalarResult = AggregationResultsScalarResult;
|
|
19456
19558
|
type index_d$2_AggregationType = AggregationType;
|
|
19457
19559
|
declare const index_d$2_AggregationType: typeof AggregationType;
|
|
19458
19560
|
type index_d$2_ApplicationError = ApplicationError;
|
|
@@ -19543,9 +19645,12 @@ type index_d$2_RangeResult = RangeResult;
|
|
|
19543
19645
|
type index_d$2_RangeResults = RangeResults;
|
|
19544
19646
|
type index_d$2_Results = Results;
|
|
19545
19647
|
type index_d$2_Rsvp = Rsvp;
|
|
19648
|
+
type index_d$2_RsvpCreatedEnvelope = RsvpCreatedEnvelope;
|
|
19649
|
+
type index_d$2_RsvpDeletedEnvelope = RsvpDeletedEnvelope;
|
|
19546
19650
|
type index_d$2_RsvpNonNullableFields = RsvpNonNullableFields;
|
|
19547
19651
|
type index_d$2_RsvpStatus = RsvpStatus;
|
|
19548
19652
|
declare const index_d$2_RsvpStatus: typeof RsvpStatus;
|
|
19653
|
+
type index_d$2_RsvpUpdatedEnvelope = RsvpUpdatedEnvelope;
|
|
19549
19654
|
type index_d$2_RsvpsQueryBuilder = RsvpsQueryBuilder;
|
|
19550
19655
|
type index_d$2_RsvpsQueryResult = RsvpsQueryResult;
|
|
19551
19656
|
type index_d$2_ScalarAggregation = ScalarAggregation;
|
|
@@ -19577,6 +19682,9 @@ type index_d$2_ValueAggregationOptionsOneOf = ValueAggregationOptionsOneOf;
|
|
|
19577
19682
|
type index_d$2_ValueAggregationResult = ValueAggregationResult;
|
|
19578
19683
|
type index_d$2_ValueResult = ValueResult;
|
|
19579
19684
|
type index_d$2_ValueResults = ValueResults;
|
|
19685
|
+
type index_d$2__publicOnRsvpCreatedType = _publicOnRsvpCreatedType;
|
|
19686
|
+
type index_d$2__publicOnRsvpDeletedType = _publicOnRsvpDeletedType;
|
|
19687
|
+
type index_d$2__publicOnRsvpUpdatedType = _publicOnRsvpUpdatedType;
|
|
19580
19688
|
declare const index_d$2_bulkDeleteRsvpsByFilter: typeof bulkDeleteRsvpsByFilter;
|
|
19581
19689
|
declare const index_d$2_bulkUpdateRsvp: typeof bulkUpdateRsvp;
|
|
19582
19690
|
declare const index_d$2_cancelRsvpGuestsCheckIn: typeof cancelRsvpGuestsCheckIn;
|
|
@@ -19585,11 +19693,15 @@ declare const index_d$2_countRsvps: typeof countRsvps;
|
|
|
19585
19693
|
declare const index_d$2_createRsvp: typeof createRsvp;
|
|
19586
19694
|
declare const index_d$2_deleteRsvp: typeof deleteRsvp;
|
|
19587
19695
|
declare const index_d$2_getRsvp: typeof getRsvp;
|
|
19696
|
+
declare const index_d$2_listRsvpSummary: typeof listRsvpSummary;
|
|
19697
|
+
declare const index_d$2_onRsvpCreated: typeof onRsvpCreated;
|
|
19698
|
+
declare const index_d$2_onRsvpDeleted: typeof onRsvpDeleted;
|
|
19699
|
+
declare const index_d$2_onRsvpUpdated: typeof onRsvpUpdated;
|
|
19588
19700
|
declare const index_d$2_queryRsvps: typeof queryRsvps;
|
|
19589
19701
|
declare const index_d$2_searchRsvps: typeof searchRsvps;
|
|
19590
19702
|
declare const index_d$2_updateRsvp: typeof updateRsvp;
|
|
19591
19703
|
declare namespace index_d$2 {
|
|
19592
|
-
export { type ActionEvent$2 as ActionEvent, type index_d$2_AdditionalGuestDetails as AdditionalGuestDetails, type Address$2 as Address, type AddressLocation$2 as AddressLocation, type AddressStreetOneOf$2 as AddressStreetOneOf, type Agenda$2 as Agenda, type index_d$2_Aggregation as Aggregation, type index_d$2_AggregationData as AggregationData, type index_d$2_AggregationKindOneOf as AggregationKindOneOf, type index_d$2_AggregationResults as AggregationResults, type index_d$2_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d$2_AggregationResultsScalarResult as AggregationResultsScalarResult, index_d$2_AggregationType as AggregationType, type index_d$2_ApplicationError as ApplicationError, type index_d$2_BulkActionMetadata as BulkActionMetadata, type index_d$2_BulkDeleteRsvpsByFilterOptions as BulkDeleteRsvpsByFilterOptions, type index_d$2_BulkDeleteRsvpsByFilterRequest as BulkDeleteRsvpsByFilterRequest, type index_d$2_BulkDeleteRsvpsByFilterResponse as BulkDeleteRsvpsByFilterResponse, type index_d$2_BulkDeleteRsvpsByFilterResponseNonNullableFields as BulkDeleteRsvpsByFilterResponseNonNullableFields, type index_d$2_BulkRsvpResult as BulkRsvpResult, type index_d$2_BulkUpdateRsvpContactIdRequest as BulkUpdateRsvpContactIdRequest, type index_d$2_BulkUpdateRsvpContactIdResponse as BulkUpdateRsvpContactIdResponse, type index_d$2_BulkUpdateRsvpOptions as BulkUpdateRsvpOptions, type index_d$2_BulkUpdateRsvpRequest as BulkUpdateRsvpRequest, type index_d$2_BulkUpdateRsvpResponse as BulkUpdateRsvpResponse, type index_d$2_BulkUpdateRsvpResponseNonNullableFields as BulkUpdateRsvpResponseNonNullableFields, type CalendarLinks$2 as CalendarLinks, type index_d$2_CancelRsvpGuestsCheckInOptions as CancelRsvpGuestsCheckInOptions, type index_d$2_CancelRsvpGuestsCheckInRequest as CancelRsvpGuestsCheckInRequest, type index_d$2_CancelRsvpGuestsCheckInResponse as CancelRsvpGuestsCheckInResponse, type index_d$2_CancelRsvpGuestsCheckInResponseNonNullableFields as CancelRsvpGuestsCheckInResponseNonNullableFields, type Category$2 as Category, type CategoryCounts$2 as CategoryCounts, type index_d$2_CheckInDetails as CheckInDetails, type index_d$2_CheckInRsvpGuestsOptions as CheckInRsvpGuestsOptions, type index_d$2_CheckInRsvpGuestsRequest as CheckInRsvpGuestsRequest, type index_d$2_CheckInRsvpGuestsResponse as CheckInRsvpGuestsResponse, type index_d$2_CheckInRsvpGuestsResponseNonNullableFields as CheckInRsvpGuestsResponseNonNullableFields, type CheckoutFormMessages$2 as CheckoutFormMessages, type CommonAddress$2 as CommonAddress, type CommonAddressLocation$2 as CommonAddressLocation, type CommonAddressStreetOneOf$2 as CommonAddressStreetOneOf, type CommonStreetAddress$2 as CommonStreetAddress, type CommonSubdivision$2 as CommonSubdivision, type index_d$2_CompareRsvpSummaryRequest as CompareRsvpSummaryRequest, type index_d$2_CompareRsvpSummaryResponse as CompareRsvpSummaryResponse, ConferenceType$2 as ConferenceType, type index_d$2_CountRsvpsOptions as CountRsvpsOptions, type index_d$2_CountRsvpsRequest as CountRsvpsRequest, type index_d$2_CountRsvpsResponse as CountRsvpsResponse, type index_d$2_CountRsvpsResponseNonNullableFields as CountRsvpsResponseNonNullableFields, type index_d$2_CreateRsvpOptions as CreateRsvpOptions, type index_d$2_CreateRsvpRequest as CreateRsvpRequest, type index_d$2_CreateRsvpResponse as CreateRsvpResponse, type index_d$2_CreateRsvpResponseNonNullableFields as CreateRsvpResponseNonNullableFields, type CursorPaging$2 as CursorPaging, type index_d$2_CursorPagingMetadata as CursorPagingMetadata, type index_d$2_CursorQuery as CursorQuery, type index_d$2_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type index_d$2_CursorSearch as CursorSearch, type index_d$2_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type Dashboard$2 as Dashboard, type index_d$2_DateHistogramAggregation as DateHistogramAggregation, type index_d$2_DateHistogramResult as DateHistogramResult, type index_d$2_DateHistogramResults as DateHistogramResults, type index_d$2_DeleteRsvpRequest as DeleteRsvpRequest, type index_d$2_DeleteRsvpResponse as DeleteRsvpResponse, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type Event$2 as Event, type EventCreated$2 as EventCreated, type EventDeleted$2 as EventDeleted, type EventDisplaySettings$2 as EventDisplaySettings, EventStatus$2 as EventStatus, EventType$2 as EventType, type ExtendedFields$1 as ExtendedFields, type ExternalEvent$2 as ExternalEvent, type Feed$2 as Feed, type Form$2 as Form, type FormMessages$2 as FormMessages, type index_d$2_FormResponse as FormResponse, type index_d$2_FormattedAddress as FormattedAddress, type index_d$2_GetRsvpOptions as GetRsvpOptions, type index_d$2_GetRsvpRequest as GetRsvpRequest, type index_d$2_GetRsvpResponse as GetRsvpResponse, type index_d$2_GetRsvpResponseNonNullableFields as GetRsvpResponseNonNullableFields, type index_d$2_GroupByValueResults as GroupByValueResults, type index_d$2_Guest as Guest, type index_d$2_GuestLimitExceededData as GuestLimitExceededData, type index_d$2_GuestList as GuestList, type GuestListConfig$2 as GuestListConfig, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type index_d$2_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type Input$2 as Input, type InputControl$2 as InputControl, InputControlType$2 as InputControlType, type index_d$2_InputValue as InputValue, index_d$2_Interval as Interval, type index_d$2_ItemMetadata as ItemMetadata, type Keyword$2 as Keyword, type Label$2 as Label, type LabellingSettings$2 as LabellingSettings, type index_d$2_ListRsvpSummaryRequest as ListRsvpSummaryRequest, type index_d$2_ListRsvpSummaryResponse as ListRsvpSummaryResponse, type Location$2 as Location, LocationType$2 as LocationType, type MapCoordinates$2 as MapCoordinates, type index_d$2_MaskedRsvp as MaskedRsvp, type MessageEnvelope$2 as MessageEnvelope, index_d$2_MissingValues as MissingValues, index_d$2_Mode as Mode, type index_d$2_ModificationOptions as ModificationOptions, type Money$2 as Money, type Negative$2 as Negative, type NegativeResponseConfirmation$2 as NegativeResponseConfirmation, type index_d$2_NestedAggregation as NestedAggregation, type index_d$2_NestedAggregationItem as NestedAggregationItem, type index_d$2_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d$2_NestedAggregationResults as NestedAggregationResults, type index_d$2_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d$2_NestedAggregationType as NestedAggregationType, type index_d$2_NestedResultValue as NestedResultValue, type index_d$2_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d$2_NestedResults as NestedResults, type index_d$2_NestedValueAggregationResult as NestedValueAggregationResult, type Occurrence$2 as Occurrence, type OnlineConferencing$2 as OnlineConferencing, type OnlineConferencingConfig$2 as OnlineConferencingConfig, type index_d$2_OnlineConferencingLogin as OnlineConferencingLogin, type OnlineConferencingSession$2 as OnlineConferencingSession, type OptionSelection$2 as OptionSelection, type OptionSelectionSelectedOptionOneOf$2 as OptionSelectionSelectedOptionOneOf, type Paging$2 as Paging, type PagingMetadataV2$2 as PagingMetadataV2, type Positive$2 as Positive, type PositiveResponseConfirmation$2 as PositiveResponseConfirmation, type index_d$2_QueryRsvpsOptions as QueryRsvpsOptions, type index_d$2_QueryRsvpsRequest as QueryRsvpsRequest, type index_d$2_QueryRsvpsResponse as QueryRsvpsResponse, type index_d$2_QueryRsvpsResponseNonNullableFields as QueryRsvpsResponseNonNullableFields, type index_d$2_RangeAggregation as RangeAggregation, type index_d$2_RangeAggregationResult as RangeAggregationResult, type index_d$2_RangeBucket as RangeBucket, type index_d$2_RangeResult as RangeResult, type index_d$2_RangeResults as RangeResults, type Recurrences$2 as Recurrences, type Registration$2 as Registration, type RegistrationClosedMessages$2 as RegistrationClosedMessages, RegistrationStatus$2 as RegistrationStatus, RequestedFields$1 as RequestedFields, type ResponseConfirmation$2 as ResponseConfirmation, type RestoreInfo$2 as RestoreInfo, type index_d$2_Results as Results, type index_d$2_Rsvp as Rsvp, type RsvpCollection$2 as RsvpCollection, type RsvpCollectionConfig$2 as RsvpCollectionConfig, type RsvpFormMessages$2 as RsvpFormMessages, type index_d$2_RsvpNonNullableFields as RsvpNonNullableFields, index_d$2_RsvpStatus as RsvpStatus, RsvpStatusOptions$2 as RsvpStatusOptions, type RsvpSummary$2 as RsvpSummary, type index_d$2_RsvpsQueryBuilder as RsvpsQueryBuilder, type index_d$2_RsvpsQueryResult as RsvpsQueryResult, type index_d$2_ScalarAggregation as ScalarAggregation, type index_d$2_ScalarResult as ScalarResult, index_d$2_ScalarType as ScalarType, type ScheduleConfig$2 as ScheduleConfig, type Scheduling$2 as Scheduling, type index_d$2_Search as Search, type index_d$2_SearchDetails as SearchDetails, type index_d$2_SearchPagingMethodOneOf as SearchPagingMethodOneOf, type index_d$2_SearchRsvpsOptions as SearchRsvpsOptions, type index_d$2_SearchRsvpsRequest as SearchRsvpsRequest, type index_d$2_SearchRsvpsResponse as SearchRsvpsResponse, type index_d$2_SearchRsvpsResponseNonNullableFields as SearchRsvpsResponseNonNullableFields, type index_d$2_SearchRsvpsWithOffsetRequest as SearchRsvpsWithOffsetRequest, type index_d$2_SearchRsvpsWithOffsetResponse as SearchRsvpsWithOffsetResponse, type SeoSchema$2 as SeoSchema, type SeoSettings$2 as SeoSettings, type Settings$2 as Settings, type SiteUrl$2 as SiteUrl, index_d$2_SortDirection as SortDirection, SortOrder$2 as SortOrder, index_d$2_SortType as SortType, type Sorting$2 as Sorting, type index_d$2_StandardDetails as StandardDetails, State$2 as State, Status$2 as Status, type StreetAddress$2 as StreetAddress, type Subdivision$2 as Subdivision, SubdivisionType$2 as SubdivisionType, type Tag$2 as Tag, type TaxConfig$2 as TaxConfig, TaxType$2 as TaxType, type Ticketing$2 as Ticketing, type TicketingConfig$2 as TicketingConfig, type TicketingSummary$2 as TicketingSummary, type TicketsUnavailableMessages$2 as TicketsUnavailableMessages, type index_d$2_UpdateRsvp as UpdateRsvp, type index_d$2_UpdateRsvpOptions as UpdateRsvpOptions, type index_d$2_UpdateRsvpRequest as UpdateRsvpRequest, type index_d$2_UpdateRsvpResponse as UpdateRsvpResponse, type index_d$2_UpdateRsvpResponseNonNullableFields as UpdateRsvpResponseNonNullableFields, type index_d$2_V2RsvpSummary as V2RsvpSummary, type index_d$2_ValueAggregation as ValueAggregation, type index_d$2_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d$2_ValueAggregationResult as ValueAggregationResult, type index_d$2_ValueResult as ValueResult, type index_d$2_ValueResults as ValueResults, ValueType$2 as ValueType, VisitorType$2 as VisitorType, WebhookIdentityType$2 as WebhookIdentityType, index_d$2_bulkDeleteRsvpsByFilter as bulkDeleteRsvpsByFilter, index_d$2_bulkUpdateRsvp as bulkUpdateRsvp, index_d$2_cancelRsvpGuestsCheckIn as cancelRsvpGuestsCheckIn, index_d$2_checkInRsvpGuests as checkInRsvpGuests, index_d$2_countRsvps as countRsvps, index_d$2_createRsvp as createRsvp, index_d$2_deleteRsvp as deleteRsvp, index_d$2_getRsvp as getRsvp, index_d$2_queryRsvps as queryRsvps, index_d$2_searchRsvps as searchRsvps, index_d$2_updateRsvp as updateRsvp };
|
|
19704
|
+
export { type ActionEvent$2 as ActionEvent, type index_d$2_AdditionalGuestDetails as AdditionalGuestDetails, type Address$2 as Address, type AddressLocation$2 as AddressLocation, type AddressStreetOneOf$2 as AddressStreetOneOf, type Agenda$2 as Agenda, type index_d$2_Aggregation as Aggregation, type index_d$2_AggregationData as AggregationData, type index_d$2_AggregationKindOneOf as AggregationKindOneOf, type index_d$2_AggregationResults as AggregationResults, type index_d$2_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d$2_AggregationResultsScalarResult as AggregationResultsScalarResult, index_d$2_AggregationType as AggregationType, type index_d$2_ApplicationError as ApplicationError, type BaseEventMetadata$2 as BaseEventMetadata, type index_d$2_BulkActionMetadata as BulkActionMetadata, type index_d$2_BulkDeleteRsvpsByFilterOptions as BulkDeleteRsvpsByFilterOptions, type index_d$2_BulkDeleteRsvpsByFilterRequest as BulkDeleteRsvpsByFilterRequest, type index_d$2_BulkDeleteRsvpsByFilterResponse as BulkDeleteRsvpsByFilterResponse, type index_d$2_BulkDeleteRsvpsByFilterResponseNonNullableFields as BulkDeleteRsvpsByFilterResponseNonNullableFields, type index_d$2_BulkRsvpResult as BulkRsvpResult, type index_d$2_BulkUpdateRsvpContactIdRequest as BulkUpdateRsvpContactIdRequest, type index_d$2_BulkUpdateRsvpContactIdResponse as BulkUpdateRsvpContactIdResponse, type index_d$2_BulkUpdateRsvpOptions as BulkUpdateRsvpOptions, type index_d$2_BulkUpdateRsvpRequest as BulkUpdateRsvpRequest, type index_d$2_BulkUpdateRsvpResponse as BulkUpdateRsvpResponse, type index_d$2_BulkUpdateRsvpResponseNonNullableFields as BulkUpdateRsvpResponseNonNullableFields, type CalendarLinks$2 as CalendarLinks, type index_d$2_CancelRsvpGuestsCheckInOptions as CancelRsvpGuestsCheckInOptions, type index_d$2_CancelRsvpGuestsCheckInRequest as CancelRsvpGuestsCheckInRequest, type index_d$2_CancelRsvpGuestsCheckInResponse as CancelRsvpGuestsCheckInResponse, type index_d$2_CancelRsvpGuestsCheckInResponseNonNullableFields as CancelRsvpGuestsCheckInResponseNonNullableFields, type Category$2 as Category, type CategoryCounts$2 as CategoryCounts, type index_d$2_CheckInDetails as CheckInDetails, type index_d$2_CheckInRsvpGuestsOptions as CheckInRsvpGuestsOptions, type index_d$2_CheckInRsvpGuestsRequest as CheckInRsvpGuestsRequest, type index_d$2_CheckInRsvpGuestsResponse as CheckInRsvpGuestsResponse, type index_d$2_CheckInRsvpGuestsResponseNonNullableFields as CheckInRsvpGuestsResponseNonNullableFields, type CheckoutFormMessages$2 as CheckoutFormMessages, type CommonAddress$2 as CommonAddress, type CommonAddressLocation$2 as CommonAddressLocation, type CommonAddressStreetOneOf$2 as CommonAddressStreetOneOf, type CommonStreetAddress$2 as CommonStreetAddress, type CommonSubdivision$2 as CommonSubdivision, type index_d$2_CompareRsvpSummaryRequest as CompareRsvpSummaryRequest, type index_d$2_CompareRsvpSummaryResponse as CompareRsvpSummaryResponse, ConferenceType$2 as ConferenceType, type index_d$2_CountRsvpsOptions as CountRsvpsOptions, type index_d$2_CountRsvpsRequest as CountRsvpsRequest, type index_d$2_CountRsvpsResponse as CountRsvpsResponse, type index_d$2_CountRsvpsResponseNonNullableFields as CountRsvpsResponseNonNullableFields, type index_d$2_CreateRsvpOptions as CreateRsvpOptions, type index_d$2_CreateRsvpRequest as CreateRsvpRequest, type index_d$2_CreateRsvpResponse as CreateRsvpResponse, type index_d$2_CreateRsvpResponseNonNullableFields as CreateRsvpResponseNonNullableFields, type CursorPaging$2 as CursorPaging, type index_d$2_CursorPagingMetadata as CursorPagingMetadata, type index_d$2_CursorQuery as CursorQuery, type index_d$2_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type index_d$2_CursorSearch as CursorSearch, type index_d$2_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type Dashboard$2 as Dashboard, type index_d$2_DateHistogramAggregation as DateHistogramAggregation, type index_d$2_DateHistogramResult as DateHistogramResult, type index_d$2_DateHistogramResults as DateHistogramResults, type index_d$2_DeleteRsvpRequest as DeleteRsvpRequest, type index_d$2_DeleteRsvpResponse as DeleteRsvpResponse, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type Empty$2 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type Event$2 as Event, type EventCreated$2 as EventCreated, type EventDeleted$2 as EventDeleted, type EventDisplaySettings$2 as EventDisplaySettings, type EventMetadata$2 as EventMetadata, EventStatus$2 as EventStatus, EventType$2 as EventType, type ExtendedFields$1 as ExtendedFields, type ExternalEvent$2 as ExternalEvent, type Feed$2 as Feed, type Form$2 as Form, type FormMessages$2 as FormMessages, type index_d$2_FormResponse as FormResponse, type index_d$2_FormattedAddress as FormattedAddress, type index_d$2_GetRsvpOptions as GetRsvpOptions, type index_d$2_GetRsvpRequest as GetRsvpRequest, type index_d$2_GetRsvpResponse as GetRsvpResponse, type index_d$2_GetRsvpResponseNonNullableFields as GetRsvpResponseNonNullableFields, type index_d$2_GroupByValueResults as GroupByValueResults, type index_d$2_Guest as Guest, type index_d$2_GuestLimitExceededData as GuestLimitExceededData, type index_d$2_GuestList as GuestList, type GuestListConfig$2 as GuestListConfig, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type index_d$2_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type Input$2 as Input, type InputControl$2 as InputControl, InputControlType$2 as InputControlType, type index_d$2_InputValue as InputValue, index_d$2_Interval as Interval, type index_d$2_ItemMetadata as ItemMetadata, type Keyword$2 as Keyword, type Label$2 as Label, type LabellingSettings$2 as LabellingSettings, type index_d$2_ListRsvpSummaryRequest as ListRsvpSummaryRequest, type index_d$2_ListRsvpSummaryResponse as ListRsvpSummaryResponse, type Location$2 as Location, LocationType$2 as LocationType, type MapCoordinates$2 as MapCoordinates, type index_d$2_MaskedRsvp as MaskedRsvp, type MessageEnvelope$2 as MessageEnvelope, index_d$2_MissingValues as MissingValues, index_d$2_Mode as Mode, type index_d$2_ModificationOptions as ModificationOptions, type Money$2 as Money, type Negative$2 as Negative, type NegativeResponseConfirmation$2 as NegativeResponseConfirmation, type index_d$2_NestedAggregation as NestedAggregation, type index_d$2_NestedAggregationItem as NestedAggregationItem, type index_d$2_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d$2_NestedAggregationResults as NestedAggregationResults, type index_d$2_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d$2_NestedAggregationType as NestedAggregationType, type index_d$2_NestedResultValue as NestedResultValue, type index_d$2_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d$2_NestedResults as NestedResults, type index_d$2_NestedValueAggregationResult as NestedValueAggregationResult, type Occurrence$2 as Occurrence, type OnlineConferencing$2 as OnlineConferencing, type OnlineConferencingConfig$2 as OnlineConferencingConfig, type index_d$2_OnlineConferencingLogin as OnlineConferencingLogin, type OnlineConferencingSession$2 as OnlineConferencingSession, type OptionSelection$2 as OptionSelection, type OptionSelectionSelectedOptionOneOf$2 as OptionSelectionSelectedOptionOneOf, type Paging$2 as Paging, type PagingMetadataV2$2 as PagingMetadataV2, type Positive$2 as Positive, type PositiveResponseConfirmation$2 as PositiveResponseConfirmation, type index_d$2_QueryRsvpsOptions as QueryRsvpsOptions, type index_d$2_QueryRsvpsRequest as QueryRsvpsRequest, type index_d$2_QueryRsvpsResponse as QueryRsvpsResponse, type index_d$2_QueryRsvpsResponseNonNullableFields as QueryRsvpsResponseNonNullableFields, type index_d$2_RangeAggregation as RangeAggregation, type index_d$2_RangeAggregationResult as RangeAggregationResult, type index_d$2_RangeBucket as RangeBucket, type index_d$2_RangeResult as RangeResult, type index_d$2_RangeResults as RangeResults, type Recurrences$2 as Recurrences, type Registration$2 as Registration, type RegistrationClosedMessages$2 as RegistrationClosedMessages, RegistrationStatus$2 as RegistrationStatus, RequestedFields$1 as RequestedFields, type ResponseConfirmation$2 as ResponseConfirmation, type RestoreInfo$2 as RestoreInfo, type index_d$2_Results as Results, type index_d$2_Rsvp as Rsvp, type RsvpCollection$2 as RsvpCollection, type RsvpCollectionConfig$2 as RsvpCollectionConfig, type index_d$2_RsvpCreatedEnvelope as RsvpCreatedEnvelope, type index_d$2_RsvpDeletedEnvelope as RsvpDeletedEnvelope, type RsvpFormMessages$2 as RsvpFormMessages, type index_d$2_RsvpNonNullableFields as RsvpNonNullableFields, index_d$2_RsvpStatus as RsvpStatus, RsvpStatusOptions$2 as RsvpStatusOptions, type RsvpSummary$2 as RsvpSummary, type index_d$2_RsvpUpdatedEnvelope as RsvpUpdatedEnvelope, type index_d$2_RsvpsQueryBuilder as RsvpsQueryBuilder, type index_d$2_RsvpsQueryResult as RsvpsQueryResult, type index_d$2_ScalarAggregation as ScalarAggregation, type index_d$2_ScalarResult as ScalarResult, index_d$2_ScalarType as ScalarType, type ScheduleConfig$2 as ScheduleConfig, type Scheduling$2 as Scheduling, type index_d$2_Search as Search, type index_d$2_SearchDetails as SearchDetails, type index_d$2_SearchPagingMethodOneOf as SearchPagingMethodOneOf, type index_d$2_SearchRsvpsOptions as SearchRsvpsOptions, type index_d$2_SearchRsvpsRequest as SearchRsvpsRequest, type index_d$2_SearchRsvpsResponse as SearchRsvpsResponse, type index_d$2_SearchRsvpsResponseNonNullableFields as SearchRsvpsResponseNonNullableFields, type index_d$2_SearchRsvpsWithOffsetRequest as SearchRsvpsWithOffsetRequest, type index_d$2_SearchRsvpsWithOffsetResponse as SearchRsvpsWithOffsetResponse, type SeoSchema$2 as SeoSchema, type SeoSettings$2 as SeoSettings, type Settings$2 as Settings, type SiteUrl$2 as SiteUrl, index_d$2_SortDirection as SortDirection, SortOrder$2 as SortOrder, index_d$2_SortType as SortType, type Sorting$2 as Sorting, type index_d$2_StandardDetails as StandardDetails, State$2 as State, Status$2 as Status, type StreetAddress$2 as StreetAddress, type Subdivision$2 as Subdivision, SubdivisionType$2 as SubdivisionType, type Tag$2 as Tag, type TaxConfig$2 as TaxConfig, TaxType$2 as TaxType, type Ticketing$2 as Ticketing, type TicketingConfig$2 as TicketingConfig, type TicketingSummary$2 as TicketingSummary, type TicketsUnavailableMessages$2 as TicketsUnavailableMessages, type index_d$2_UpdateRsvp as UpdateRsvp, type index_d$2_UpdateRsvpOptions as UpdateRsvpOptions, type index_d$2_UpdateRsvpRequest as UpdateRsvpRequest, type index_d$2_UpdateRsvpResponse as UpdateRsvpResponse, type index_d$2_UpdateRsvpResponseNonNullableFields as UpdateRsvpResponseNonNullableFields, type index_d$2_V2RsvpSummary as V2RsvpSummary, type index_d$2_ValueAggregation as ValueAggregation, type index_d$2_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d$2_ValueAggregationResult as ValueAggregationResult, type index_d$2_ValueResult as ValueResult, type index_d$2_ValueResults as ValueResults, ValueType$2 as ValueType, VisitorType$2 as VisitorType, WebhookIdentityType$2 as WebhookIdentityType, type index_d$2__publicOnRsvpCreatedType as _publicOnRsvpCreatedType, type index_d$2__publicOnRsvpDeletedType as _publicOnRsvpDeletedType, type index_d$2__publicOnRsvpUpdatedType as _publicOnRsvpUpdatedType, index_d$2_bulkDeleteRsvpsByFilter as bulkDeleteRsvpsByFilter, index_d$2_bulkUpdateRsvp as bulkUpdateRsvp, index_d$2_cancelRsvpGuestsCheckIn as cancelRsvpGuestsCheckIn, index_d$2_checkInRsvpGuests as checkInRsvpGuests, index_d$2_countRsvps as countRsvps, index_d$2_createRsvp as createRsvp, index_d$2_deleteRsvp as deleteRsvp, index_d$2_getRsvp as getRsvp, index_d$2_listRsvpSummary as listRsvpSummary, index_d$2_onRsvpCreated as onRsvpCreated, index_d$2_onRsvpDeleted as onRsvpDeleted, index_d$2_onRsvpUpdated as onRsvpUpdated, onRsvpCreated$1 as publicOnRsvpCreated, onRsvpDeleted$1 as publicOnRsvpDeleted, onRsvpUpdated$1 as publicOnRsvpUpdated, index_d$2_queryRsvps as queryRsvps, index_d$2_searchRsvps as searchRsvps, index_d$2_updateRsvp as updateRsvp };
|
|
19593
19705
|
}
|
|
19594
19706
|
|
|
19595
19707
|
interface V3Event {
|
|
@@ -23221,6 +23333,128 @@ declare enum Status {
|
|
|
23221
23333
|
/** Event is not public. */
|
|
23222
23334
|
DRAFT = "DRAFT"
|
|
23223
23335
|
}
|
|
23336
|
+
interface SalePeriodUpdated {
|
|
23337
|
+
/** Ticket definition sale period after update. */
|
|
23338
|
+
afterUpdate?: SalePeriod;
|
|
23339
|
+
}
|
|
23340
|
+
interface TicketDefinitionSaleStarted {
|
|
23341
|
+
/** Ticket definition. */
|
|
23342
|
+
ticketDefinition?: TicketDefinition;
|
|
23343
|
+
}
|
|
23344
|
+
interface TicketDefinitionSaleEnded {
|
|
23345
|
+
/** Ticket definition. */
|
|
23346
|
+
ticketDefinition?: TicketDefinition;
|
|
23347
|
+
}
|
|
23348
|
+
interface DomainEvent extends DomainEventBodyOneOf {
|
|
23349
|
+
createdEvent?: EntityCreatedEvent;
|
|
23350
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
23351
|
+
deletedEvent?: EntityDeletedEvent;
|
|
23352
|
+
actionEvent?: ActionEvent;
|
|
23353
|
+
/**
|
|
23354
|
+
* Unique event ID.
|
|
23355
|
+
* Allows clients to ignore duplicate webhooks.
|
|
23356
|
+
*/
|
|
23357
|
+
_id?: string;
|
|
23358
|
+
/**
|
|
23359
|
+
* Assumes actions are also always typed to an entity_type
|
|
23360
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
23361
|
+
*/
|
|
23362
|
+
entityFqdn?: string;
|
|
23363
|
+
/**
|
|
23364
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
23365
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
23366
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
23367
|
+
*/
|
|
23368
|
+
slug?: string;
|
|
23369
|
+
/** ID of the entity associated with the event. */
|
|
23370
|
+
entityId?: string;
|
|
23371
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
23372
|
+
eventTime?: Date | null;
|
|
23373
|
+
/**
|
|
23374
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
23375
|
+
* (for example, GDPR).
|
|
23376
|
+
*/
|
|
23377
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
23378
|
+
/** If present, indicates the action that triggered the event. */
|
|
23379
|
+
originatedFrom?: string | null;
|
|
23380
|
+
/**
|
|
23381
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
23382
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
23383
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
23384
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
23385
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
23386
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
23387
|
+
*/
|
|
23388
|
+
entityEventSequence?: string | null;
|
|
23389
|
+
}
|
|
23390
|
+
/** @oneof */
|
|
23391
|
+
interface DomainEventBodyOneOf {
|
|
23392
|
+
createdEvent?: EntityCreatedEvent;
|
|
23393
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
23394
|
+
deletedEvent?: EntityDeletedEvent;
|
|
23395
|
+
actionEvent?: ActionEvent;
|
|
23396
|
+
}
|
|
23397
|
+
interface EntityCreatedEvent {
|
|
23398
|
+
entity?: string;
|
|
23399
|
+
}
|
|
23400
|
+
interface RestoreInfo {
|
|
23401
|
+
deletedDate?: Date | null;
|
|
23402
|
+
}
|
|
23403
|
+
interface EntityUpdatedEvent {
|
|
23404
|
+
/**
|
|
23405
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
23406
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
23407
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
23408
|
+
*/
|
|
23409
|
+
currentEntity?: string;
|
|
23410
|
+
}
|
|
23411
|
+
interface EntityDeletedEvent {
|
|
23412
|
+
/** Entity that was deleted */
|
|
23413
|
+
deletedEntity?: string | null;
|
|
23414
|
+
}
|
|
23415
|
+
interface ActionEvent {
|
|
23416
|
+
body?: string;
|
|
23417
|
+
}
|
|
23418
|
+
interface MessageEnvelope {
|
|
23419
|
+
/** App instance ID. */
|
|
23420
|
+
instanceId?: string | null;
|
|
23421
|
+
/** Event type. */
|
|
23422
|
+
eventType?: string;
|
|
23423
|
+
/** The identification type and identity data. */
|
|
23424
|
+
identity?: IdentificationData;
|
|
23425
|
+
/** Stringify payload. */
|
|
23426
|
+
data?: string;
|
|
23427
|
+
}
|
|
23428
|
+
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
23429
|
+
/** ID of a site visitor that has not logged in to the site. */
|
|
23430
|
+
anonymousVisitorId?: string;
|
|
23431
|
+
/** ID of a site visitor that has logged in to the site. */
|
|
23432
|
+
memberId?: string;
|
|
23433
|
+
/** ID of a Wix user (site owner, contributor, etc.). */
|
|
23434
|
+
wixUserId?: string;
|
|
23435
|
+
/** ID of an app. */
|
|
23436
|
+
appId?: string;
|
|
23437
|
+
/** @readonly */
|
|
23438
|
+
identityType?: WebhookIdentityType;
|
|
23439
|
+
}
|
|
23440
|
+
/** @oneof */
|
|
23441
|
+
interface IdentificationDataIdOneOf {
|
|
23442
|
+
/** ID of a site visitor that has not logged in to the site. */
|
|
23443
|
+
anonymousVisitorId?: string;
|
|
23444
|
+
/** ID of a site visitor that has logged in to the site. */
|
|
23445
|
+
memberId?: string;
|
|
23446
|
+
/** ID of a Wix user (site owner, contributor, etc.). */
|
|
23447
|
+
wixUserId?: string;
|
|
23448
|
+
/** ID of an app. */
|
|
23449
|
+
appId?: string;
|
|
23450
|
+
}
|
|
23451
|
+
declare enum WebhookIdentityType {
|
|
23452
|
+
UNKNOWN = "UNKNOWN",
|
|
23453
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
23454
|
+
MEMBER = "MEMBER",
|
|
23455
|
+
WIX_USER = "WIX_USER",
|
|
23456
|
+
APP = "APP"
|
|
23457
|
+
}
|
|
23224
23458
|
interface InvalidateCache extends InvalidateCacheGetByOneOf {
|
|
23225
23459
|
/** Invalidate by msId. NOT recommended, as this will invalidate the entire site cache! */
|
|
23226
23460
|
metaSiteId?: string;
|
|
@@ -23279,45 +23513,209 @@ interface File {
|
|
|
23279
23513
|
/** Invalidate by filename (for media files such as PDFs) */
|
|
23280
23514
|
fileName?: string;
|
|
23281
23515
|
}
|
|
23282
|
-
interface
|
|
23283
|
-
/** Ticket definition
|
|
23284
|
-
|
|
23285
|
-
}
|
|
23286
|
-
interface TicketDefinitionSaleStarted {
|
|
23287
|
-
/** Ticket definition. */
|
|
23288
|
-
ticketDefinition?: TicketDefinition;
|
|
23516
|
+
interface GetTicketDefinitionSummaryRequest {
|
|
23517
|
+
/** Ticket definition id. */
|
|
23518
|
+
ticketDefinitionId?: string | null;
|
|
23289
23519
|
}
|
|
23290
|
-
interface
|
|
23291
|
-
/**
|
|
23292
|
-
|
|
23520
|
+
interface GetTicketDefinitionSummaryResponse {
|
|
23521
|
+
/** Summary. */
|
|
23522
|
+
summary?: TicketDefinitionSummary;
|
|
23293
23523
|
}
|
|
23294
|
-
interface
|
|
23295
|
-
/**
|
|
23296
|
-
|
|
23297
|
-
|
|
23298
|
-
|
|
23524
|
+
interface TicketDefinitionSummary {
|
|
23525
|
+
/**
|
|
23526
|
+
* Ticket definition ID.
|
|
23527
|
+
* @readonly
|
|
23528
|
+
*/
|
|
23529
|
+
definitionId?: string | null;
|
|
23530
|
+
/**
|
|
23531
|
+
* Event ID to which the ticket definition summary belongs.
|
|
23532
|
+
* @readonly
|
|
23533
|
+
*/
|
|
23534
|
+
eventId?: string | null;
|
|
23535
|
+
/**
|
|
23536
|
+
* Date and time of the ticket definition summary latest update in `yyyy-mm-ddThh:mm:sssZ` format.
|
|
23537
|
+
* @readonly
|
|
23538
|
+
*/
|
|
23539
|
+
_updatedDate?: Date | null;
|
|
23540
|
+
/**
|
|
23541
|
+
* Reserved count.
|
|
23542
|
+
* @readonly
|
|
23543
|
+
*/
|
|
23544
|
+
reservedCount?: number;
|
|
23545
|
+
/**
|
|
23546
|
+
* Sold count.
|
|
23547
|
+
* @readonly
|
|
23548
|
+
*/
|
|
23549
|
+
soldCount?: number;
|
|
23550
|
+
/**
|
|
23551
|
+
* Paid exists.
|
|
23552
|
+
* @readonly
|
|
23553
|
+
*/
|
|
23554
|
+
paidExists?: boolean;
|
|
23299
23555
|
}
|
|
23300
|
-
|
|
23301
|
-
/**
|
|
23302
|
-
|
|
23303
|
-
/** Returns `salesDetails` in the response. */
|
|
23304
|
-
SALES_DETAILS = "SALES_DETAILS",
|
|
23305
|
-
/** Returns `eventDetails` in the response. */
|
|
23306
|
-
EVENT_DETAILS = "EVENT_DETAILS"
|
|
23556
|
+
interface ListEventTicketingSummaryRequest {
|
|
23557
|
+
/** Event ID. */
|
|
23558
|
+
eventId?: string[];
|
|
23307
23559
|
}
|
|
23308
|
-
interface
|
|
23309
|
-
/**
|
|
23310
|
-
|
|
23560
|
+
interface ListEventTicketingSummaryResponse {
|
|
23561
|
+
/** Ticketing summaries. */
|
|
23562
|
+
summaries?: EventTicketingSummary[];
|
|
23311
23563
|
}
|
|
23312
|
-
interface
|
|
23313
|
-
/**
|
|
23314
|
-
|
|
23315
|
-
|
|
23316
|
-
|
|
23564
|
+
interface EventTicketingSummary {
|
|
23565
|
+
/**
|
|
23566
|
+
* Event ID to which the ticketing summary belongs.
|
|
23567
|
+
* @readonly
|
|
23568
|
+
*/
|
|
23569
|
+
eventId?: string | null;
|
|
23570
|
+
/**
|
|
23571
|
+
* Date and time of the ticketing summary latest update in `yyyy-mm-ddThh:mm:sssZ` format.
|
|
23572
|
+
* @readonly
|
|
23573
|
+
*/
|
|
23574
|
+
_updatedDate?: Date | null;
|
|
23575
|
+
/**
|
|
23576
|
+
* Whether all tickets are sold for this event.
|
|
23577
|
+
* @readonly
|
|
23578
|
+
*/
|
|
23579
|
+
soldOut?: boolean | null;
|
|
23580
|
+
/**
|
|
23581
|
+
* Price of lowest priced ticket.
|
|
23582
|
+
* @readonly
|
|
23583
|
+
*/
|
|
23584
|
+
lowestTicketPrice?: CommonMoney;
|
|
23585
|
+
/**
|
|
23586
|
+
* Price of highest priced ticket.
|
|
23587
|
+
* @readonly
|
|
23588
|
+
*/
|
|
23589
|
+
highestTicketPrice?: CommonMoney;
|
|
23590
|
+
/**
|
|
23591
|
+
* Currency used in event transactions.
|
|
23592
|
+
* @readonly
|
|
23593
|
+
*/
|
|
23594
|
+
currency?: string | null;
|
|
23595
|
+
/**
|
|
23596
|
+
* Formatted price of lowest priced ticket.
|
|
23597
|
+
* @readonly
|
|
23598
|
+
*/
|
|
23599
|
+
lowestTicketPriceFormatted?: string | null;
|
|
23600
|
+
/**
|
|
23601
|
+
* Formatted price of highest priced ticket.
|
|
23602
|
+
* @readonly
|
|
23603
|
+
*/
|
|
23604
|
+
highestTicketPriceFormatted?: string | null;
|
|
23317
23605
|
}
|
|
23318
|
-
interface
|
|
23319
|
-
|
|
23320
|
-
|
|
23606
|
+
interface Empty {
|
|
23607
|
+
}
|
|
23608
|
+
interface ReservationCreated {
|
|
23609
|
+
/** Reservation created timestamp in ISO UTC format. */
|
|
23610
|
+
timestamp?: Date | null;
|
|
23611
|
+
/** Event ID. */
|
|
23612
|
+
eventId?: string;
|
|
23613
|
+
/**
|
|
23614
|
+
* Reservation ID.
|
|
23615
|
+
* Can be used to retrieve a reservation invoice.
|
|
23616
|
+
*/
|
|
23617
|
+
reservationId?: string;
|
|
23618
|
+
/** Reservation expiration timestamp. */
|
|
23619
|
+
expires?: Date | null;
|
|
23620
|
+
/** Reservation status. */
|
|
23621
|
+
status?: ReservationStatus;
|
|
23622
|
+
/** Reservation ticket quantities. */
|
|
23623
|
+
quantities?: TicketQuantity[];
|
|
23624
|
+
/** Reservation update timestamp. */
|
|
23625
|
+
_updatedDate?: Date | null;
|
|
23626
|
+
/** Reservation counts. */
|
|
23627
|
+
counts?: ReservationCount[];
|
|
23628
|
+
}
|
|
23629
|
+
declare enum ReservationStatus {
|
|
23630
|
+
/** The Reservation is pending confirmation and will expire after the expiration due time. */
|
|
23631
|
+
RESERVATION_PENDING = "RESERVATION_PENDING",
|
|
23632
|
+
/** The reservation is confirmed and will not expire. */
|
|
23633
|
+
RESERVATION_CONFIRMED = "RESERVATION_CONFIRMED",
|
|
23634
|
+
/** The reservation is canceled because of non payment. */
|
|
23635
|
+
RESERVATION_CANCELED = "RESERVATION_CANCELED",
|
|
23636
|
+
/** The reservation is canceled manually by the buyer. */
|
|
23637
|
+
RESERVATION_CANCELED_MANUALLY = "RESERVATION_CANCELED_MANUALLY",
|
|
23638
|
+
/** The reservation is expired. */
|
|
23639
|
+
RESERVATION_EXPIRED = "RESERVATION_EXPIRED"
|
|
23640
|
+
}
|
|
23641
|
+
interface TicketQuantity {
|
|
23642
|
+
/** Ticket definition ID. */
|
|
23643
|
+
ticketDefinitionId?: string | null;
|
|
23644
|
+
/** Quantity. */
|
|
23645
|
+
quantity?: number | null;
|
|
23646
|
+
/** Quantity update timestamp. */
|
|
23647
|
+
_updatedDate?: Date | null;
|
|
23648
|
+
}
|
|
23649
|
+
interface ReservationCount {
|
|
23650
|
+
/** Reservation Count snapshot timestamp. */
|
|
23651
|
+
timestamp?: Date | null;
|
|
23652
|
+
/** Ticket Definition ID. */
|
|
23653
|
+
ticketDefinitionId?: string;
|
|
23654
|
+
/** Confirmed reservation count. */
|
|
23655
|
+
confirmedCount?: number;
|
|
23656
|
+
/** Pending reservation count. */
|
|
23657
|
+
pendingCount?: number;
|
|
23658
|
+
/** True if paid ticket reservation exist. */
|
|
23659
|
+
paidExists?: boolean;
|
|
23660
|
+
}
|
|
23661
|
+
interface ReservationUpdated {
|
|
23662
|
+
/** Reservation updated timestamp. */
|
|
23663
|
+
timestamp?: Date | null;
|
|
23664
|
+
/** Event ID. */
|
|
23665
|
+
eventId?: string;
|
|
23666
|
+
/**
|
|
23667
|
+
* Reservation ID.
|
|
23668
|
+
* Can be used to retrieve a reservation invoice.
|
|
23669
|
+
*/
|
|
23670
|
+
reservationId?: string;
|
|
23671
|
+
/** Reservation status. */
|
|
23672
|
+
status?: ReservationStatus;
|
|
23673
|
+
/** Reservation expiration timestamp. */
|
|
23674
|
+
expires?: Date | null;
|
|
23675
|
+
/** Reservation ticket quantities. */
|
|
23676
|
+
quantities?: TicketQuantity[];
|
|
23677
|
+
/** Reservation update timestamp. */
|
|
23678
|
+
_updatedDate?: Date | null;
|
|
23679
|
+
/** Reservation counts. */
|
|
23680
|
+
counts?: ReservationCount[];
|
|
23681
|
+
}
|
|
23682
|
+
interface EventDeleted {
|
|
23683
|
+
/** Event deleted timestamp in ISO UTC format. */
|
|
23684
|
+
timestamp?: Date | null;
|
|
23685
|
+
/** Event ID. */
|
|
23686
|
+
eventId?: string;
|
|
23687
|
+
/** Event title. */
|
|
23688
|
+
title?: string;
|
|
23689
|
+
/** Event creator user ID. */
|
|
23690
|
+
userId?: string | null;
|
|
23691
|
+
}
|
|
23692
|
+
interface CreateTicketDefinitionRequest {
|
|
23693
|
+
/** Ticket definition info. */
|
|
23694
|
+
ticketDefinition: TicketDefinition;
|
|
23695
|
+
/** Predefined sets of fields to return. */
|
|
23696
|
+
fields?: Field[];
|
|
23697
|
+
}
|
|
23698
|
+
declare enum Field {
|
|
23699
|
+
/** Unknown requested field. */
|
|
23700
|
+
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
23701
|
+
/** Returns `salesDetails` in the response. */
|
|
23702
|
+
SALES_DETAILS = "SALES_DETAILS",
|
|
23703
|
+
/** Returns `eventDetails` in the response. */
|
|
23704
|
+
EVENT_DETAILS = "EVENT_DETAILS"
|
|
23705
|
+
}
|
|
23706
|
+
interface CreateTicketDefinitionResponse {
|
|
23707
|
+
/** Created ticket definition. */
|
|
23708
|
+
ticketDefinition?: TicketDefinition;
|
|
23709
|
+
}
|
|
23710
|
+
interface UpdateTicketDefinitionRequest {
|
|
23711
|
+
/** Ticket definition to update. */
|
|
23712
|
+
ticketDefinition: TicketDefinition;
|
|
23713
|
+
/** Predefined sets of fields to return. */
|
|
23714
|
+
fields?: Field[];
|
|
23715
|
+
}
|
|
23716
|
+
interface UpdateTicketDefinitionResponse {
|
|
23717
|
+
/** The updated ticket definition. */
|
|
23718
|
+
ticketDefinition?: TicketDefinition;
|
|
23321
23719
|
}
|
|
23322
23720
|
interface GetTicketDefinitionRequest {
|
|
23323
23721
|
/** Ticket definition ID. */
|
|
@@ -23514,18 +23912,6 @@ interface CopiedTicketDefinition {
|
|
|
23514
23912
|
/** Ticket definition ID. */
|
|
23515
23913
|
ticketDefinitionId?: string;
|
|
23516
23914
|
}
|
|
23517
|
-
interface EventDeleted {
|
|
23518
|
-
/** Event deleted timestamp in ISO UTC format. */
|
|
23519
|
-
timestamp?: Date | null;
|
|
23520
|
-
/** Event ID. */
|
|
23521
|
-
eventId?: string;
|
|
23522
|
-
/** Event title. */
|
|
23523
|
-
title?: string;
|
|
23524
|
-
/** Event creator user ID. */
|
|
23525
|
-
userId?: string | null;
|
|
23526
|
-
}
|
|
23527
|
-
interface Empty {
|
|
23528
|
-
}
|
|
23529
23915
|
interface EventCanceled {
|
|
23530
23916
|
/** Event canceled timestamp in ISO UTC format. */
|
|
23531
23917
|
timestamp?: Date | null;
|
|
@@ -24499,76 +24885,6 @@ interface CategoryDetails {
|
|
|
24499
24885
|
*/
|
|
24500
24886
|
reserved?: number | null;
|
|
24501
24887
|
}
|
|
24502
|
-
interface DomainEvent extends DomainEventBodyOneOf {
|
|
24503
|
-
createdEvent?: EntityCreatedEvent;
|
|
24504
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
24505
|
-
deletedEvent?: EntityDeletedEvent;
|
|
24506
|
-
actionEvent?: ActionEvent;
|
|
24507
|
-
/**
|
|
24508
|
-
* Unique event ID.
|
|
24509
|
-
* Allows clients to ignore duplicate webhooks.
|
|
24510
|
-
*/
|
|
24511
|
-
_id?: string;
|
|
24512
|
-
/**
|
|
24513
|
-
* Assumes actions are also always typed to an entity_type
|
|
24514
|
-
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
24515
|
-
*/
|
|
24516
|
-
entityFqdn?: string;
|
|
24517
|
-
/**
|
|
24518
|
-
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
24519
|
-
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
24520
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
24521
|
-
*/
|
|
24522
|
-
slug?: string;
|
|
24523
|
-
/** ID of the entity associated with the event. */
|
|
24524
|
-
entityId?: string;
|
|
24525
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
24526
|
-
eventTime?: Date | null;
|
|
24527
|
-
/**
|
|
24528
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
24529
|
-
* (for example, GDPR).
|
|
24530
|
-
*/
|
|
24531
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
24532
|
-
/** If present, indicates the action that triggered the event. */
|
|
24533
|
-
originatedFrom?: string | null;
|
|
24534
|
-
/**
|
|
24535
|
-
* A sequence number defining the order of updates to the underlying entity.
|
|
24536
|
-
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
24537
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
24538
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
24539
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
24540
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
24541
|
-
*/
|
|
24542
|
-
entityEventSequence?: string | null;
|
|
24543
|
-
}
|
|
24544
|
-
/** @oneof */
|
|
24545
|
-
interface DomainEventBodyOneOf {
|
|
24546
|
-
createdEvent?: EntityCreatedEvent;
|
|
24547
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
24548
|
-
deletedEvent?: EntityDeletedEvent;
|
|
24549
|
-
actionEvent?: ActionEvent;
|
|
24550
|
-
}
|
|
24551
|
-
interface EntityCreatedEvent {
|
|
24552
|
-
entity?: string;
|
|
24553
|
-
}
|
|
24554
|
-
interface RestoreInfo {
|
|
24555
|
-
deletedDate?: Date | null;
|
|
24556
|
-
}
|
|
24557
|
-
interface EntityUpdatedEvent {
|
|
24558
|
-
/**
|
|
24559
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
24560
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
24561
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
24562
|
-
*/
|
|
24563
|
-
currentEntity?: string;
|
|
24564
|
-
}
|
|
24565
|
-
interface EntityDeletedEvent {
|
|
24566
|
-
/** Entity that was deleted */
|
|
24567
|
-
deletedEntity?: string | null;
|
|
24568
|
-
}
|
|
24569
|
-
interface ActionEvent {
|
|
24570
|
-
body?: string;
|
|
24571
|
-
}
|
|
24572
24888
|
interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
|
|
24573
24889
|
/** Emitted on a meta site creation. */
|
|
24574
24890
|
siteCreated?: SiteCreated;
|
|
@@ -24866,210 +25182,6 @@ interface ScheduleLegacyTimeCapsuleTaskRequest {
|
|
|
24866
25182
|
/** Definition ID. */
|
|
24867
25183
|
ticketDefinitionId?: string;
|
|
24868
25184
|
}
|
|
24869
|
-
interface MessageEnvelope {
|
|
24870
|
-
/** App instance ID. */
|
|
24871
|
-
instanceId?: string | null;
|
|
24872
|
-
/** Event type. */
|
|
24873
|
-
eventType?: string;
|
|
24874
|
-
/** The identification type and identity data. */
|
|
24875
|
-
identity?: IdentificationData;
|
|
24876
|
-
/** Stringify payload. */
|
|
24877
|
-
data?: string;
|
|
24878
|
-
}
|
|
24879
|
-
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
24880
|
-
/** ID of a site visitor that has not logged in to the site. */
|
|
24881
|
-
anonymousVisitorId?: string;
|
|
24882
|
-
/** ID of a site visitor that has logged in to the site. */
|
|
24883
|
-
memberId?: string;
|
|
24884
|
-
/** ID of a Wix user (site owner, contributor, etc.). */
|
|
24885
|
-
wixUserId?: string;
|
|
24886
|
-
/** ID of an app. */
|
|
24887
|
-
appId?: string;
|
|
24888
|
-
/** @readonly */
|
|
24889
|
-
identityType?: WebhookIdentityType;
|
|
24890
|
-
}
|
|
24891
|
-
/** @oneof */
|
|
24892
|
-
interface IdentificationDataIdOneOf {
|
|
24893
|
-
/** ID of a site visitor that has not logged in to the site. */
|
|
24894
|
-
anonymousVisitorId?: string;
|
|
24895
|
-
/** ID of a site visitor that has logged in to the site. */
|
|
24896
|
-
memberId?: string;
|
|
24897
|
-
/** ID of a Wix user (site owner, contributor, etc.). */
|
|
24898
|
-
wixUserId?: string;
|
|
24899
|
-
/** ID of an app. */
|
|
24900
|
-
appId?: string;
|
|
24901
|
-
}
|
|
24902
|
-
declare enum WebhookIdentityType {
|
|
24903
|
-
UNKNOWN = "UNKNOWN",
|
|
24904
|
-
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
24905
|
-
MEMBER = "MEMBER",
|
|
24906
|
-
WIX_USER = "WIX_USER",
|
|
24907
|
-
APP = "APP"
|
|
24908
|
-
}
|
|
24909
|
-
interface GetTicketDefinitionSummaryRequest {
|
|
24910
|
-
/** Ticket definition id. */
|
|
24911
|
-
ticketDefinitionId?: string | null;
|
|
24912
|
-
}
|
|
24913
|
-
interface GetTicketDefinitionSummaryResponse {
|
|
24914
|
-
/** Summary. */
|
|
24915
|
-
summary?: TicketDefinitionSummary;
|
|
24916
|
-
}
|
|
24917
|
-
interface TicketDefinitionSummary {
|
|
24918
|
-
/**
|
|
24919
|
-
* Ticket definition ID.
|
|
24920
|
-
* @readonly
|
|
24921
|
-
*/
|
|
24922
|
-
definitionId?: string | null;
|
|
24923
|
-
/**
|
|
24924
|
-
* Event ID to which the ticket definition summary belongs.
|
|
24925
|
-
* @readonly
|
|
24926
|
-
*/
|
|
24927
|
-
eventId?: string | null;
|
|
24928
|
-
/**
|
|
24929
|
-
* Date and time of the ticket definition summary latest update in `yyyy-mm-ddThh:mm:sssZ` format.
|
|
24930
|
-
* @readonly
|
|
24931
|
-
*/
|
|
24932
|
-
_updatedDate?: Date | null;
|
|
24933
|
-
/**
|
|
24934
|
-
* Reserved count.
|
|
24935
|
-
* @readonly
|
|
24936
|
-
*/
|
|
24937
|
-
reservedCount?: number;
|
|
24938
|
-
/**
|
|
24939
|
-
* Sold count.
|
|
24940
|
-
* @readonly
|
|
24941
|
-
*/
|
|
24942
|
-
soldCount?: number;
|
|
24943
|
-
/**
|
|
24944
|
-
* Paid exists.
|
|
24945
|
-
* @readonly
|
|
24946
|
-
*/
|
|
24947
|
-
paidExists?: boolean;
|
|
24948
|
-
}
|
|
24949
|
-
interface ListEventTicketingSummaryRequest {
|
|
24950
|
-
/** Event ID. */
|
|
24951
|
-
eventId?: string[];
|
|
24952
|
-
}
|
|
24953
|
-
interface ListEventTicketingSummaryResponse {
|
|
24954
|
-
/** Ticketing summaries. */
|
|
24955
|
-
summaries?: EventTicketingSummary[];
|
|
24956
|
-
}
|
|
24957
|
-
interface EventTicketingSummary {
|
|
24958
|
-
/**
|
|
24959
|
-
* Event ID to which the ticketing summary belongs.
|
|
24960
|
-
* @readonly
|
|
24961
|
-
*/
|
|
24962
|
-
eventId?: string | null;
|
|
24963
|
-
/**
|
|
24964
|
-
* Date and time of the ticketing summary latest update in `yyyy-mm-ddThh:mm:sssZ` format.
|
|
24965
|
-
* @readonly
|
|
24966
|
-
*/
|
|
24967
|
-
_updatedDate?: Date | null;
|
|
24968
|
-
/**
|
|
24969
|
-
* Whether all tickets are sold for this event.
|
|
24970
|
-
* @readonly
|
|
24971
|
-
*/
|
|
24972
|
-
soldOut?: boolean | null;
|
|
24973
|
-
/**
|
|
24974
|
-
* Price of lowest priced ticket.
|
|
24975
|
-
* @readonly
|
|
24976
|
-
*/
|
|
24977
|
-
lowestTicketPrice?: CommonMoney;
|
|
24978
|
-
/**
|
|
24979
|
-
* Price of highest priced ticket.
|
|
24980
|
-
* @readonly
|
|
24981
|
-
*/
|
|
24982
|
-
highestTicketPrice?: CommonMoney;
|
|
24983
|
-
/**
|
|
24984
|
-
* Currency used in event transactions.
|
|
24985
|
-
* @readonly
|
|
24986
|
-
*/
|
|
24987
|
-
currency?: string | null;
|
|
24988
|
-
/**
|
|
24989
|
-
* Formatted price of lowest priced ticket.
|
|
24990
|
-
* @readonly
|
|
24991
|
-
*/
|
|
24992
|
-
lowestTicketPriceFormatted?: string | null;
|
|
24993
|
-
/**
|
|
24994
|
-
* Formatted price of highest priced ticket.
|
|
24995
|
-
* @readonly
|
|
24996
|
-
*/
|
|
24997
|
-
highestTicketPriceFormatted?: string | null;
|
|
24998
|
-
}
|
|
24999
|
-
interface ReservationCreated {
|
|
25000
|
-
/** Reservation created timestamp in ISO UTC format. */
|
|
25001
|
-
timestamp?: Date | null;
|
|
25002
|
-
/** Event ID. */
|
|
25003
|
-
eventId?: string;
|
|
25004
|
-
/**
|
|
25005
|
-
* Reservation ID.
|
|
25006
|
-
* Can be used to retrieve a reservation invoice.
|
|
25007
|
-
*/
|
|
25008
|
-
reservationId?: string;
|
|
25009
|
-
/** Reservation expiration timestamp. */
|
|
25010
|
-
expires?: Date | null;
|
|
25011
|
-
/** Reservation status. */
|
|
25012
|
-
status?: ReservationStatus;
|
|
25013
|
-
/** Reservation ticket quantities. */
|
|
25014
|
-
quantities?: TicketQuantity[];
|
|
25015
|
-
/** Reservation update timestamp. */
|
|
25016
|
-
_updatedDate?: Date | null;
|
|
25017
|
-
/** Reservation counts. */
|
|
25018
|
-
counts?: ReservationCount[];
|
|
25019
|
-
}
|
|
25020
|
-
declare enum ReservationStatus {
|
|
25021
|
-
/** The Reservation is pending confirmation and will expire after the expiration due time. */
|
|
25022
|
-
RESERVATION_PENDING = "RESERVATION_PENDING",
|
|
25023
|
-
/** The reservation is confirmed and will not expire. */
|
|
25024
|
-
RESERVATION_CONFIRMED = "RESERVATION_CONFIRMED",
|
|
25025
|
-
/** The reservation is canceled because of non payment. */
|
|
25026
|
-
RESERVATION_CANCELED = "RESERVATION_CANCELED",
|
|
25027
|
-
/** The reservation is canceled manually by the buyer. */
|
|
25028
|
-
RESERVATION_CANCELED_MANUALLY = "RESERVATION_CANCELED_MANUALLY",
|
|
25029
|
-
/** The reservation is expired. */
|
|
25030
|
-
RESERVATION_EXPIRED = "RESERVATION_EXPIRED"
|
|
25031
|
-
}
|
|
25032
|
-
interface TicketQuantity {
|
|
25033
|
-
/** Ticket definition ID. */
|
|
25034
|
-
ticketDefinitionId?: string | null;
|
|
25035
|
-
/** Quantity. */
|
|
25036
|
-
quantity?: number | null;
|
|
25037
|
-
/** Quantity update timestamp. */
|
|
25038
|
-
_updatedDate?: Date | null;
|
|
25039
|
-
}
|
|
25040
|
-
interface ReservationCount {
|
|
25041
|
-
/** Reservation Count snapshot timestamp. */
|
|
25042
|
-
timestamp?: Date | null;
|
|
25043
|
-
/** Ticket Definition ID. */
|
|
25044
|
-
ticketDefinitionId?: string;
|
|
25045
|
-
/** Confirmed reservation count. */
|
|
25046
|
-
confirmedCount?: number;
|
|
25047
|
-
/** Pending reservation count. */
|
|
25048
|
-
pendingCount?: number;
|
|
25049
|
-
/** True if paid ticket reservation exist. */
|
|
25050
|
-
paidExists?: boolean;
|
|
25051
|
-
}
|
|
25052
|
-
interface ReservationUpdated {
|
|
25053
|
-
/** Reservation updated timestamp. */
|
|
25054
|
-
timestamp?: Date | null;
|
|
25055
|
-
/** Event ID. */
|
|
25056
|
-
eventId?: string;
|
|
25057
|
-
/**
|
|
25058
|
-
* Reservation ID.
|
|
25059
|
-
* Can be used to retrieve a reservation invoice.
|
|
25060
|
-
*/
|
|
25061
|
-
reservationId?: string;
|
|
25062
|
-
/** Reservation status. */
|
|
25063
|
-
status?: ReservationStatus;
|
|
25064
|
-
/** Reservation expiration timestamp. */
|
|
25065
|
-
expires?: Date | null;
|
|
25066
|
-
/** Reservation ticket quantities. */
|
|
25067
|
-
quantities?: TicketQuantity[];
|
|
25068
|
-
/** Reservation update timestamp. */
|
|
25069
|
-
_updatedDate?: Date | null;
|
|
25070
|
-
/** Reservation counts. */
|
|
25071
|
-
counts?: ReservationCount[];
|
|
25072
|
-
}
|
|
25073
25185
|
interface CommonMoneyNonNullableFields {
|
|
25074
25186
|
value: string;
|
|
25075
25187
|
currency: string;
|
|
@@ -25193,11 +25305,11 @@ interface TicketDefinitionCreatedEnvelope {
|
|
|
25193
25305
|
entity: TicketDefinition;
|
|
25194
25306
|
metadata: EventMetadata;
|
|
25195
25307
|
}
|
|
25196
|
-
interface
|
|
25308
|
+
interface TicketDefinitionUpdatedEnvelope {
|
|
25309
|
+
entity: TicketDefinition;
|
|
25197
25310
|
metadata: EventMetadata;
|
|
25198
25311
|
}
|
|
25199
|
-
interface
|
|
25200
|
-
data: TicketDefinitionSaleEnded;
|
|
25312
|
+
interface TicketDefinitionDeletedEnvelope {
|
|
25201
25313
|
metadata: EventMetadata;
|
|
25202
25314
|
}
|
|
25203
25315
|
interface TicketDefinitionSalePeriodUpdatedEnvelope {
|
|
@@ -25208,8 +25320,8 @@ interface TicketDefinitionSaleStartedEnvelope {
|
|
|
25208
25320
|
data: TicketDefinitionSaleStarted;
|
|
25209
25321
|
metadata: EventMetadata;
|
|
25210
25322
|
}
|
|
25211
|
-
interface
|
|
25212
|
-
|
|
25323
|
+
interface TicketDefinitionSaleEndedEnvelope {
|
|
25324
|
+
data: TicketDefinitionSaleEnded;
|
|
25213
25325
|
metadata: EventMetadata;
|
|
25214
25326
|
}
|
|
25215
25327
|
interface CreateTicketDefinitionOptions {
|
|
@@ -25519,11 +25631,11 @@ interface ChangeCurrencySignature {
|
|
|
25519
25631
|
(eventId: string, options: ChangeCurrencyOptions): Promise<void>;
|
|
25520
25632
|
}
|
|
25521
25633
|
declare const onTicketDefinitionCreated$1: EventDefinition<TicketDefinitionCreatedEnvelope, "wix.events.v3.ticket_definition_created">;
|
|
25634
|
+
declare const onTicketDefinitionUpdated$1: EventDefinition<TicketDefinitionUpdatedEnvelope, "wix.events.v3.ticket_definition_updated">;
|
|
25522
25635
|
declare const onTicketDefinitionDeleted$1: EventDefinition<TicketDefinitionDeletedEnvelope, "wix.events.v3.ticket_definition_deleted">;
|
|
25523
|
-
declare const onTicketDefinitionSaleEnded$1: EventDefinition<TicketDefinitionSaleEndedEnvelope, "wix.events.v3.ticket_definition_sale_ended">;
|
|
25524
25636
|
declare const onTicketDefinitionSalePeriodUpdated$1: EventDefinition<TicketDefinitionSalePeriodUpdatedEnvelope, "wix.events.v3.ticket_definition_sale_period_updated">;
|
|
25525
25637
|
declare const onTicketDefinitionSaleStarted$1: EventDefinition<TicketDefinitionSaleStartedEnvelope, "wix.events.v3.ticket_definition_sale_started">;
|
|
25526
|
-
declare const
|
|
25638
|
+
declare const onTicketDefinitionSaleEnded$1: EventDefinition<TicketDefinitionSaleEndedEnvelope, "wix.events.v3.ticket_definition_sale_ended">;
|
|
25527
25639
|
|
|
25528
25640
|
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
25529
25641
|
|
|
@@ -25545,17 +25657,17 @@ type _publicOnTicketDefinitionCreatedType = typeof onTicketDefinitionCreated$1;
|
|
|
25545
25657
|
*/
|
|
25546
25658
|
declare const onTicketDefinitionCreated: ReturnType<typeof createEventModule<_publicOnTicketDefinitionCreatedType>>;
|
|
25547
25659
|
|
|
25548
|
-
type
|
|
25660
|
+
type _publicOnTicketDefinitionUpdatedType = typeof onTicketDefinitionUpdated$1;
|
|
25549
25661
|
/**
|
|
25550
|
-
* Triggered when a ticket definition is
|
|
25662
|
+
* Triggered when a ticket definition is updated.
|
|
25551
25663
|
*/
|
|
25552
|
-
declare const
|
|
25664
|
+
declare const onTicketDefinitionUpdated: ReturnType<typeof createEventModule<_publicOnTicketDefinitionUpdatedType>>;
|
|
25553
25665
|
|
|
25554
|
-
type
|
|
25666
|
+
type _publicOnTicketDefinitionDeletedType = typeof onTicketDefinitionDeleted$1;
|
|
25555
25667
|
/**
|
|
25556
|
-
* Triggered when a ticket
|
|
25668
|
+
* Triggered when a ticket definition is deleted.
|
|
25557
25669
|
*/
|
|
25558
|
-
declare const
|
|
25670
|
+
declare const onTicketDefinitionDeleted: ReturnType<typeof createEventModule<_publicOnTicketDefinitionDeletedType>>;
|
|
25559
25671
|
|
|
25560
25672
|
type _publicOnTicketDefinitionSalePeriodUpdatedType = typeof onTicketDefinitionSalePeriodUpdated$1;
|
|
25561
25673
|
/**
|
|
@@ -25569,11 +25681,11 @@ type _publicOnTicketDefinitionSaleStartedType = typeof onTicketDefinitionSaleSta
|
|
|
25569
25681
|
*/
|
|
25570
25682
|
declare const onTicketDefinitionSaleStarted: ReturnType<typeof createEventModule<_publicOnTicketDefinitionSaleStartedType>>;
|
|
25571
25683
|
|
|
25572
|
-
type
|
|
25684
|
+
type _publicOnTicketDefinitionSaleEndedType = typeof onTicketDefinitionSaleEnded$1;
|
|
25573
25685
|
/**
|
|
25574
|
-
* Triggered when a ticket
|
|
25686
|
+
* Triggered when a ticket sale ends. Sales details are not included in the payload.
|
|
25575
25687
|
*/
|
|
25576
|
-
declare const
|
|
25688
|
+
declare const onTicketDefinitionSaleEnded: ReturnType<typeof createEventModule<_publicOnTicketDefinitionSaleEndedType>>;
|
|
25577
25689
|
|
|
25578
25690
|
type index_d_ActionEvent = ActionEvent;
|
|
25579
25691
|
type index_d_Address = Address;
|