@wix/bookings 1.0.447 → 1.0.448
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 +19 -19
- package/type-bundles/context.bundle.d.ts +583 -23
- package/type-bundles/index.bundle.d.ts +583 -23
- package/type-bundles/meta.bundle.d.ts +1401 -69
|
@@ -9087,7 +9087,7 @@ interface BookingNonNullableFields$1 {
|
|
|
9087
9087
|
flowControlSettings?: FlowControlSettingsNonNullableFields$1;
|
|
9088
9088
|
multiServiceBookingInfo?: MultiServiceBookingInfoNonNullableFields$1;
|
|
9089
9089
|
}
|
|
9090
|
-
interface AllowedActionsNonNullableFields {
|
|
9090
|
+
interface AllowedActionsNonNullableFields$1 {
|
|
9091
9091
|
cancel: boolean;
|
|
9092
9092
|
reschedule: boolean;
|
|
9093
9093
|
bookAnother: boolean;
|
|
@@ -9102,7 +9102,7 @@ interface BookingFeeDetailsNonNullableFields {
|
|
|
9102
9102
|
}
|
|
9103
9103
|
interface ExtendedBookingNonNullableFields {
|
|
9104
9104
|
booking?: BookingNonNullableFields$1;
|
|
9105
|
-
allowedActions?: AllowedActionsNonNullableFields;
|
|
9105
|
+
allowedActions?: AllowedActionsNonNullableFields$1;
|
|
9106
9106
|
attendance?: AttendanceNonNullableFields$1;
|
|
9107
9107
|
bookingFeeDetails?: BookingFeeDetailsNonNullableFields;
|
|
9108
9108
|
}
|
|
@@ -22033,7 +22033,7 @@ interface MultiServiceBookingInfo$1 {
|
|
|
22033
22033
|
}
|
|
22034
22034
|
interface CreateMultiServiceBookingRequest {
|
|
22035
22035
|
/** The bookings to create as multi service booking. */
|
|
22036
|
-
bookings
|
|
22036
|
+
bookings: Booking$1[];
|
|
22037
22037
|
/** Information about a message to send to the customer. */
|
|
22038
22038
|
participantNotification?: ParticipantNotification$1;
|
|
22039
22039
|
/**
|
|
@@ -22106,9 +22106,9 @@ interface BookingResult {
|
|
|
22106
22106
|
}
|
|
22107
22107
|
interface RescheduleMultiServiceBookingRequest {
|
|
22108
22108
|
/** ID of the multi service booking to reschedule it's related bookings. */
|
|
22109
|
-
multiServiceBookingId
|
|
22109
|
+
multiServiceBookingId: string | null;
|
|
22110
22110
|
/** Bookings to reschedule. */
|
|
22111
|
-
rescheduleBookingsInfo
|
|
22111
|
+
rescheduleBookingsInfo: RescheduleBookingInfo[];
|
|
22112
22112
|
/** Information about whether to notify the customer about the rescheduling and the message to send. */
|
|
22113
22113
|
participantNotification?: ParticipantNotification$1;
|
|
22114
22114
|
/**
|
|
@@ -22315,7 +22315,7 @@ declare enum IdentityType$1 {
|
|
|
22315
22315
|
APP = "APP"
|
|
22316
22316
|
}
|
|
22317
22317
|
interface GetMultiServiceBookingAvailabilityRequest {
|
|
22318
|
-
multiServiceBookingId
|
|
22318
|
+
multiServiceBookingId: string | null;
|
|
22319
22319
|
}
|
|
22320
22320
|
interface GetMultiServiceBookingAvailabilityResponse {
|
|
22321
22321
|
/** Whether these bookings are bookable. */
|
|
@@ -22349,7 +22349,7 @@ interface GetMultiServiceBookingAvailabilityResponseBookingInfo {
|
|
|
22349
22349
|
}
|
|
22350
22350
|
interface CancelMultiServiceBookingRequest {
|
|
22351
22351
|
/** ID of the multi service booking to cancel it's related bookings. */
|
|
22352
|
-
multiServiceBookingId
|
|
22352
|
+
multiServiceBookingId: string | null;
|
|
22353
22353
|
/** Information about whether to notify the customer about the cancelation and the message to send. */
|
|
22354
22354
|
participantNotification?: ParticipantNotification$1;
|
|
22355
22355
|
/**
|
|
@@ -22404,7 +22404,7 @@ interface BookingCanceled {
|
|
|
22404
22404
|
}
|
|
22405
22405
|
interface MarkMultiServiceBookingAsPendingRequest {
|
|
22406
22406
|
/** ID of the multi service booking to mark as pending it's related bookings. */
|
|
22407
|
-
multiServiceBookingId
|
|
22407
|
+
multiServiceBookingId: string | null;
|
|
22408
22408
|
/** Bookings to mark as pending. */
|
|
22409
22409
|
markAsPendingBookingsInfo?: BookingInfo[];
|
|
22410
22410
|
/** Information about whether to notify the customer upon manual confirmation and the message to send. */
|
|
@@ -22465,7 +22465,7 @@ interface MarkMultiServiceBookingAsPendingResponse {
|
|
|
22465
22465
|
}
|
|
22466
22466
|
interface ConfirmMultiServiceBookingRequest {
|
|
22467
22467
|
/** ID of the multi service booking to confirm it's related bookings. */
|
|
22468
|
-
multiServiceBookingId
|
|
22468
|
+
multiServiceBookingId: string | null;
|
|
22469
22469
|
/** Bookings to confirm. */
|
|
22470
22470
|
confirmBookingsInfo?: BookingInfo[];
|
|
22471
22471
|
/** Information about whether to notify the customer about the confirmation and the message to send. */
|
|
@@ -22519,7 +22519,7 @@ interface BookingConfirmed {
|
|
|
22519
22519
|
}
|
|
22520
22520
|
interface DeclineMultiServiceBookingRequest {
|
|
22521
22521
|
/** ID of the multi service booking to decline it's related bookings. */
|
|
22522
|
-
multiServiceBookingId
|
|
22522
|
+
multiServiceBookingId: string | null;
|
|
22523
22523
|
/** Bookings to decline. */
|
|
22524
22524
|
declineBookingsInfo?: BookingInfo[];
|
|
22525
22525
|
/** Information about whether to notify the customer about the decline and the message to send. */
|
|
@@ -22571,7 +22571,7 @@ interface BookingDeclined {
|
|
|
22571
22571
|
}
|
|
22572
22572
|
interface BulkGetMultiServiceBookingAllowedActionsRequest {
|
|
22573
22573
|
/** The multi service booking ids to get the allowedActions for. */
|
|
22574
|
-
multiServiceBookingIds
|
|
22574
|
+
multiServiceBookingIds: string[] | null;
|
|
22575
22575
|
}
|
|
22576
22576
|
interface BulkGetMultiServiceBookingAllowedActionsResponse {
|
|
22577
22577
|
results?: BulkCalculateAllowedActionsResult[];
|
|
@@ -22617,7 +22617,7 @@ interface BulkActionMetadata {
|
|
|
22617
22617
|
}
|
|
22618
22618
|
interface MarkAsMultiServiceBookingRequest {
|
|
22619
22619
|
/** IDs of the bookings to mark as multi service booking. */
|
|
22620
|
-
bookingIds
|
|
22620
|
+
bookingIds: string[] | null;
|
|
22621
22621
|
/**
|
|
22622
22622
|
* Multi service booking type.
|
|
22623
22623
|
* One of:
|
|
@@ -22633,7 +22633,7 @@ interface MarkAsMultiServiceBookingResponse {
|
|
|
22633
22633
|
}
|
|
22634
22634
|
interface GetMultiServiceBookingRequest {
|
|
22635
22635
|
/** Multi service booking ID. */
|
|
22636
|
-
multiServiceBookingId
|
|
22636
|
+
multiServiceBookingId: string | null;
|
|
22637
22637
|
}
|
|
22638
22638
|
interface GetMultiServiceBookingResponse {
|
|
22639
22639
|
/** Multi service booking. */
|
|
@@ -22649,9 +22649,9 @@ interface MultiServiceBookingMetadata {
|
|
|
22649
22649
|
}
|
|
22650
22650
|
interface AddBookingsToMultiServiceBookingRequest {
|
|
22651
22651
|
/** ID of the multi service booking. */
|
|
22652
|
-
multiServiceBookingId
|
|
22652
|
+
multiServiceBookingId: string | null;
|
|
22653
22653
|
/** List of bookings ids and their revisions to add to the multi service booking. */
|
|
22654
|
-
bookings
|
|
22654
|
+
bookings: BookingIdAndRevision[];
|
|
22655
22655
|
/** Whether to return the bookings entities. */
|
|
22656
22656
|
returnFullEntity?: boolean;
|
|
22657
22657
|
}
|
|
@@ -22671,7 +22671,7 @@ interface AddBookingsToMultiServiceBookingResponse {
|
|
|
22671
22671
|
}
|
|
22672
22672
|
interface RemoveBookingsFromMultiServiceBookingRequest {
|
|
22673
22673
|
/** ID of the multi service booking. */
|
|
22674
|
-
multiServiceBookingId
|
|
22674
|
+
multiServiceBookingId: string | null;
|
|
22675
22675
|
/** List of bookings ids and their revisions to remove from the multi service booking. */
|
|
22676
22676
|
bookings?: BookingIdAndRevision[];
|
|
22677
22677
|
/** Whether to return the bookings entities. */
|
|
@@ -23738,15 +23738,15 @@ interface V2CancelBookingResponse {
|
|
|
23738
23738
|
}
|
|
23739
23739
|
interface V2RescheduleBookingRequest extends V2RescheduleBookingRequestParticipantsInfoOneOf {
|
|
23740
23740
|
/** Id of the booking to reschedule. */
|
|
23741
|
-
bookingId
|
|
23741
|
+
bookingId: string;
|
|
23742
23742
|
/** Information about the new slot. */
|
|
23743
|
-
slot
|
|
23743
|
+
slot: Slot;
|
|
23744
23744
|
/**
|
|
23745
23745
|
* Revision number, which increments by 1 each time the booking is updated.
|
|
23746
23746
|
* To prevent conflicting changes, the current revision must be passed when
|
|
23747
23747
|
* managing the booking.
|
|
23748
23748
|
*/
|
|
23749
|
-
revision
|
|
23749
|
+
revision: string | null;
|
|
23750
23750
|
/**
|
|
23751
23751
|
* Information about whether to notify the customer about the rescheduling and
|
|
23752
23752
|
* the message to send.
|
|
@@ -23934,9 +23934,33 @@ interface BookingNonNullableFields {
|
|
|
23934
23934
|
flowControlSettings?: FlowControlSettingsNonNullableFields;
|
|
23935
23935
|
multiServiceBookingInfo?: MultiServiceBookingInfoNonNullableFields;
|
|
23936
23936
|
}
|
|
23937
|
-
interface
|
|
23937
|
+
interface BookingResultNonNullableFields {
|
|
23938
23938
|
booking?: BookingNonNullableFields;
|
|
23939
23939
|
}
|
|
23940
|
+
interface MultiServiceBookingNonNullableFields {
|
|
23941
|
+
bookings: BookingResultNonNullableFields[];
|
|
23942
|
+
}
|
|
23943
|
+
interface CreateMultiServiceBookingResponseNonNullableFields {
|
|
23944
|
+
multiServiceBooking?: MultiServiceBookingNonNullableFields;
|
|
23945
|
+
}
|
|
23946
|
+
interface RescheduleMultiServiceBookingResponseNonNullableFields {
|
|
23947
|
+
multiServiceBooking?: MultiServiceBookingNonNullableFields;
|
|
23948
|
+
}
|
|
23949
|
+
interface GetMultiServiceBookingAvailabilityResponseNonNullableFields {
|
|
23950
|
+
bookable: boolean;
|
|
23951
|
+
}
|
|
23952
|
+
interface CancelMultiServiceBookingResponseNonNullableFields {
|
|
23953
|
+
multiServiceBooking?: MultiServiceBookingNonNullableFields;
|
|
23954
|
+
}
|
|
23955
|
+
interface MarkMultiServiceBookingAsPendingResponseNonNullableFields {
|
|
23956
|
+
multiServiceBooking?: MultiServiceBookingNonNullableFields;
|
|
23957
|
+
}
|
|
23958
|
+
interface ConfirmMultiServiceBookingResponseNonNullableFields {
|
|
23959
|
+
multiServiceBooking?: MultiServiceBookingNonNullableFields;
|
|
23960
|
+
}
|
|
23961
|
+
interface DeclineMultiServiceBookingResponseNonNullableFields {
|
|
23962
|
+
multiServiceBooking?: MultiServiceBookingNonNullableFields;
|
|
23963
|
+
}
|
|
23940
23964
|
interface ApplicationErrorNonNullableFields {
|
|
23941
23965
|
code: string;
|
|
23942
23966
|
description: string;
|
|
@@ -23946,15 +23970,40 @@ interface ItemMetadataNonNullableFields {
|
|
|
23946
23970
|
success: boolean;
|
|
23947
23971
|
error?: ApplicationErrorNonNullableFields;
|
|
23948
23972
|
}
|
|
23949
|
-
interface
|
|
23973
|
+
interface AllowedActionsNonNullableFields {
|
|
23974
|
+
cancel: boolean;
|
|
23975
|
+
reschedule: boolean;
|
|
23976
|
+
bookAnother: boolean;
|
|
23977
|
+
}
|
|
23978
|
+
interface BulkCalculateAllowedActionsResultNonNullableFields {
|
|
23950
23979
|
itemMetadata?: ItemMetadataNonNullableFields;
|
|
23951
|
-
item?:
|
|
23980
|
+
item?: AllowedActionsNonNullableFields;
|
|
23952
23981
|
}
|
|
23953
23982
|
interface BulkActionMetadataNonNullableFields {
|
|
23954
23983
|
totalSuccesses: number;
|
|
23955
23984
|
totalFailures: number;
|
|
23956
23985
|
undetailedFailures: number;
|
|
23957
23986
|
}
|
|
23987
|
+
interface BulkGetMultiServiceBookingAllowedActionsResponseNonNullableFields {
|
|
23988
|
+
results: BulkCalculateAllowedActionsResultNonNullableFields[];
|
|
23989
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
23990
|
+
}
|
|
23991
|
+
interface GetMultiServiceBookingResponseNonNullableFields {
|
|
23992
|
+
multiServiceBooking?: MultiServiceBookingNonNullableFields;
|
|
23993
|
+
}
|
|
23994
|
+
interface AddBookingsToMultiServiceBookingResponseNonNullableFields {
|
|
23995
|
+
bookings: BookingResultNonNullableFields[];
|
|
23996
|
+
}
|
|
23997
|
+
interface RemoveBookingsFromMultiServiceBookingResponseNonNullableFields {
|
|
23998
|
+
bookings: BookingResultNonNullableFields[];
|
|
23999
|
+
}
|
|
24000
|
+
interface CreateBookingResponseNonNullableFields {
|
|
24001
|
+
booking?: BookingNonNullableFields;
|
|
24002
|
+
}
|
|
24003
|
+
interface BulkBookingResultNonNullableFields {
|
|
24004
|
+
itemMetadata?: ItemMetadataNonNullableFields;
|
|
24005
|
+
item?: BookingNonNullableFields;
|
|
24006
|
+
}
|
|
23958
24007
|
interface BulkCreateBookingResponseNonNullableFields {
|
|
23959
24008
|
results: BulkBookingResultNonNullableFields[];
|
|
23960
24009
|
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
@@ -23980,6 +24029,12 @@ interface UpdateNumberOfParticipantsResponseNonNullableFields {
|
|
|
23980
24029
|
interface ConfirmOrDeclineBookingResponseNonNullableFields {
|
|
23981
24030
|
booking?: BookingNonNullableFields;
|
|
23982
24031
|
}
|
|
24032
|
+
interface V2CreateBookingResponseNonNullableFields {
|
|
24033
|
+
booking?: BookingNonNullableFields;
|
|
24034
|
+
}
|
|
24035
|
+
interface V2RescheduleBookingResponseNonNullableFields {
|
|
24036
|
+
booking?: BookingNonNullableFields;
|
|
24037
|
+
}
|
|
23983
24038
|
interface BaseEventMetadata {
|
|
23984
24039
|
/** App instance ID. */
|
|
23985
24040
|
instanceId?: string | null;
|
|
@@ -24054,6 +24109,138 @@ interface BookingNumberOfParticipantsUpdatedEnvelope {
|
|
|
24054
24109
|
data: NumberOfParticipantsUpdated;
|
|
24055
24110
|
metadata: EventMetadata;
|
|
24056
24111
|
}
|
|
24112
|
+
interface CreateMultiServiceBookingOptions {
|
|
24113
|
+
/** Information about a message to send to the customer. */
|
|
24114
|
+
participantNotification?: ParticipantNotification$1;
|
|
24115
|
+
/**
|
|
24116
|
+
* Whether to send an SMS reminder to the customer 24 hours before the
|
|
24117
|
+
* session starts. The phone number is taken from `contactDetails.phone`.
|
|
24118
|
+
* Default: `true`.
|
|
24119
|
+
*/
|
|
24120
|
+
sendSmsReminder?: boolean | null;
|
|
24121
|
+
/**
|
|
24122
|
+
* Information about whether specific procedures of the standard Wix Bookings
|
|
24123
|
+
* creation flow are changed. For example, whether the availability is
|
|
24124
|
+
* checked before creating the booking or if additional payment options are
|
|
24125
|
+
* accepted.
|
|
24126
|
+
*/
|
|
24127
|
+
flowControlSettings?: CreateBookingFlowControlSettings;
|
|
24128
|
+
/** Whether to return the created bookings entities. */
|
|
24129
|
+
returnFullEntity?: boolean;
|
|
24130
|
+
/**
|
|
24131
|
+
* Multi service booking type.
|
|
24132
|
+
* One of:
|
|
24133
|
+
* - `"SEQUENTIAL_BOOKINGS"` Multi service booking will be considered available if its bookings are available as returned from ListMultiServiceAvailabilityTimeSlots API.
|
|
24134
|
+
* - `"SEPARATE_BOOKINGS"` Not supported yet.
|
|
24135
|
+
* - `"PARALLEL_BOOKINGS"` Not supported yet.
|
|
24136
|
+
*/
|
|
24137
|
+
multiServiceBookingType?: MultiServiceBookingType$1;
|
|
24138
|
+
}
|
|
24139
|
+
interface RescheduleMultiServiceBookingOptions {
|
|
24140
|
+
/** Information about whether to notify the customer about the rescheduling and the message to send. */
|
|
24141
|
+
participantNotification?: ParticipantNotification$1;
|
|
24142
|
+
/**
|
|
24143
|
+
* Information about whether specific procedures of the standard Wix Bookings
|
|
24144
|
+
* rescheduling flow are changed. For example, whether the availability of
|
|
24145
|
+
* the new slot is checked before rescheduling the booking or if you can
|
|
24146
|
+
* reschedule the booking even though the rescheduling policy doesn't allow it.
|
|
24147
|
+
*/
|
|
24148
|
+
flowControlSettings?: RescheduleBookingFlowControlSettings;
|
|
24149
|
+
/** Whether to return the rescheduled bookings entities. */
|
|
24150
|
+
returnFullEntity?: boolean;
|
|
24151
|
+
}
|
|
24152
|
+
interface CancelMultiServiceBookingOptions {
|
|
24153
|
+
/** Information about whether to notify the customer about the cancelation and the message to send. */
|
|
24154
|
+
participantNotification?: ParticipantNotification$1;
|
|
24155
|
+
/**
|
|
24156
|
+
* Information about whether specific procedures of the standard Wix Bookings
|
|
24157
|
+
* cancelation flow are changed. For example, whether the you can cancel
|
|
24158
|
+
* a booking even though the cancelation policy doesn't allow it or whether
|
|
24159
|
+
* to issue a refund.
|
|
24160
|
+
*/
|
|
24161
|
+
flowControlSettings?: CancelBookingFlowControlSettings;
|
|
24162
|
+
/** Whether to return the canceled bookings entities. */
|
|
24163
|
+
returnFullEntity?: boolean;
|
|
24164
|
+
}
|
|
24165
|
+
interface MarkMultiServiceBookingAsPendingOptions {
|
|
24166
|
+
/** Bookings to mark as pending. */
|
|
24167
|
+
markAsPendingBookingsInfo?: BookingInfo[];
|
|
24168
|
+
/** Information about whether to notify the customer upon manual confirmation and the message to send. */
|
|
24169
|
+
participantNotification?: ParticipantNotification$1;
|
|
24170
|
+
/**
|
|
24171
|
+
* Whether to send an SMS reminder to the customer 24 hours before the
|
|
24172
|
+
* session starts. The phone number is taken from `contactDetails.phone`.
|
|
24173
|
+
*/
|
|
24174
|
+
sendSmsReminder?: boolean | null;
|
|
24175
|
+
/** Whether this booking overlaps with another existing confirmed booking. */
|
|
24176
|
+
doubleBooked?: boolean | null;
|
|
24177
|
+
/** Whether to return the pending bookings entities. */
|
|
24178
|
+
returnFullEntity?: boolean;
|
|
24179
|
+
/**
|
|
24180
|
+
* Information about whether specific procedures of the standard Wix Bookings
|
|
24181
|
+
* creation flow are changed. For example, whether the availability is
|
|
24182
|
+
* checked before updating the booking.
|
|
24183
|
+
*/
|
|
24184
|
+
flowControlSettings?: MarkBookingAsPendingFlowControlSettings;
|
|
24185
|
+
}
|
|
24186
|
+
interface ConfirmMultiServiceBookingOptions {
|
|
24187
|
+
/** Bookings to confirm. */
|
|
24188
|
+
confirmBookingsInfo?: BookingInfo[];
|
|
24189
|
+
/** Information about whether to notify the customer about the confirmation and the message to send. */
|
|
24190
|
+
participantNotification?: ParticipantNotification$1;
|
|
24191
|
+
/**
|
|
24192
|
+
* Whether to send an SMS reminder to the customer 24 hours before the
|
|
24193
|
+
* session starts. The phone number is taken from `contactDetails.phone`.
|
|
24194
|
+
*/
|
|
24195
|
+
sendSmsReminder?: boolean | null;
|
|
24196
|
+
/** Whether this booking overlaps with another existing confirmed booking. */
|
|
24197
|
+
doubleBooked?: boolean | null;
|
|
24198
|
+
/** Whether to return the confirmed bookings entities. */
|
|
24199
|
+
returnFullEntity?: boolean;
|
|
24200
|
+
/**
|
|
24201
|
+
* Information about whether specific procedures of the standard Wix Bookings
|
|
24202
|
+
* confirmation flow are changed. For example, whether the availability is
|
|
24203
|
+
* checked before confirming the booking.
|
|
24204
|
+
*/
|
|
24205
|
+
flowControlSettings?: ConfirmBookingFlowControlSettings;
|
|
24206
|
+
}
|
|
24207
|
+
interface DeclineMultiServiceBookingOptions {
|
|
24208
|
+
/** Bookings to decline. */
|
|
24209
|
+
declineBookingsInfo?: BookingInfo[];
|
|
24210
|
+
/** Information about whether to notify the customer about the decline and the message to send. */
|
|
24211
|
+
participantNotification?: ParticipantNotification$1;
|
|
24212
|
+
/** Whether this booking overlaps with another existing confirmed booking. */
|
|
24213
|
+
doubleBooked?: boolean | null;
|
|
24214
|
+
/** Whether to return the declined bookings entities. */
|
|
24215
|
+
returnFullEntity?: boolean;
|
|
24216
|
+
/**
|
|
24217
|
+
* Information about whether specific procedures of the standard Wix Bookings
|
|
24218
|
+
* declining flow are changed. For example, whether to issue a refund.
|
|
24219
|
+
*/
|
|
24220
|
+
flowControlSettings?: DeclineBookingFlowControlSettings;
|
|
24221
|
+
}
|
|
24222
|
+
interface MarkAsMultiServiceBookingOptions {
|
|
24223
|
+
/**
|
|
24224
|
+
* Multi service booking type.
|
|
24225
|
+
* One of:
|
|
24226
|
+
* - `"SEQUENTIAL_BOOKINGS"` Multi service booking will be considered available if its bookings are available as returned from ListMultiServiceAvailabilityTimeSlots API.
|
|
24227
|
+
* - `"SEPARATE_BOOKINGS"` Not supported yet.
|
|
24228
|
+
* - `"PARALLEL_BOOKINGS"` Not supported yet.
|
|
24229
|
+
*/
|
|
24230
|
+
multiServiceBookingType?: MultiServiceBookingType$1;
|
|
24231
|
+
}
|
|
24232
|
+
interface AddBookingsToMultiServiceBookingOptions {
|
|
24233
|
+
/** List of bookings ids and their revisions to add to the multi service booking. */
|
|
24234
|
+
bookings: BookingIdAndRevision[];
|
|
24235
|
+
/** Whether to return the bookings entities. */
|
|
24236
|
+
returnFullEntity?: boolean;
|
|
24237
|
+
}
|
|
24238
|
+
interface RemoveBookingsFromMultiServiceBookingOptions {
|
|
24239
|
+
/** List of bookings ids and their revisions to remove from the multi service booking. */
|
|
24240
|
+
bookings?: BookingIdAndRevision[];
|
|
24241
|
+
/** Whether to return the bookings entities. */
|
|
24242
|
+
returnFullEntity?: boolean;
|
|
24243
|
+
}
|
|
24057
24244
|
interface CreateBookingOptions {
|
|
24058
24245
|
/** Information about a message to send to the customer. */
|
|
24059
24246
|
participantNotification?: ParticipantNotification$1;
|
|
@@ -24215,7 +24402,236 @@ interface ConfirmOrDeclineBookingOptions {
|
|
|
24215
24402
|
*/
|
|
24216
24403
|
paymentStatus?: PaymentStatus$1;
|
|
24217
24404
|
}
|
|
24405
|
+
interface BookingsGatewayCreateBookingOptions extends V2CreateBookingRequestBookableItemOneOf, V2CreateBookingRequestParticipantsInfoOneOf {
|
|
24406
|
+
/**
|
|
24407
|
+
* Information about the slot to create a booking for.
|
|
24408
|
+
* If you set `slot.location.locationType` to `CUSTOM`, the created slot's
|
|
24409
|
+
* location is set to `slot.location.formattedAddress` when provided.
|
|
24410
|
+
* Otherwise it's set to `contactDetails.fullAddress.formattedAddress`.
|
|
24411
|
+
*/
|
|
24412
|
+
slot?: Slot;
|
|
24413
|
+
/** Information about the schedule to create a booking for. */
|
|
24414
|
+
schedule?: BookedSchedule$1;
|
|
24415
|
+
/** Contact details of the customer booking the service. */
|
|
24416
|
+
contactDetails?: ContactDetails$1;
|
|
24417
|
+
/**
|
|
24418
|
+
* Booking status.
|
|
24419
|
+
* One of:
|
|
24420
|
+
* - `"CREATED"` - The booking was created.
|
|
24421
|
+
* - `"UPDATED"` - The booking was updated.
|
|
24422
|
+
* - `"CONFIRMED"` - The booking has been confirmed and appears on the bookings calendar.
|
|
24423
|
+
* Booking can be manually confirmed using the Set As Confirmed endpoint.
|
|
24424
|
+
* Booking can be automatically confirmed when the following requirements are met:
|
|
24425
|
+
* + The service is configured as automatically confirmed.
|
|
24426
|
+
* + Invoking eCommerce checkout API and an order has been created.
|
|
24427
|
+
* - `"CANCELED"` - The booking has been canceled and synced to bookings calendar.
|
|
24428
|
+
* The booking can be canceled using cancel API.
|
|
24429
|
+
* - `"PENDING"` - The booking waiting to be confirmed or declined buy the owner and is synced to bookings calendar.
|
|
24430
|
+
* Bookings can be manually set as pending using setAsPending API, requires manage booking status permissions.
|
|
24431
|
+
* Booking can be automatically set as pending when the following requirements are met:
|
|
24432
|
+
* + The Service is configured as manually confirmed.
|
|
24433
|
+
* + Invoking the eCommerce checkout API and an order has been created.
|
|
24434
|
+
* - `"WAITING_LIST"` - The booking is pending on a waiting list.
|
|
24435
|
+
* Booking can be created with this status when invoking waiting list join API.
|
|
24436
|
+
* - `"DECLINED"` - The booking was declined by the owner and synced to bookings calendar.
|
|
24437
|
+
* Booking can be manually declined using decline API and requires manage booking permissions.
|
|
24438
|
+
* Booking can be automatically declined when the following requirements are met:
|
|
24439
|
+
* + Invoking eCommerce checkout API and the order declined event has been sent.
|
|
24440
|
+
* + Invoking eCommerce checkout API and order approved event has been sent, but the booking is offline and the booking causes a double booking.
|
|
24441
|
+
*/
|
|
24442
|
+
status?: BookingStatus$1;
|
|
24443
|
+
/**
|
|
24444
|
+
* Additional custom fields of the booking form. The customer must provide
|
|
24445
|
+
* information for each field when booking the service. For example, that they
|
|
24446
|
+
* bring their own towels or whether they use a wheelchair.
|
|
24447
|
+
*
|
|
24448
|
+
* Max: 100 fields
|
|
24449
|
+
*/
|
|
24450
|
+
additionalFields?: CustomFormField$1[];
|
|
24451
|
+
/**
|
|
24452
|
+
* Total number of participants. Available only when the service doesn't have
|
|
24453
|
+
* [variants](https://dev.wix.com/api/rest/wix-bookings/service-options-and-variants/introduction).
|
|
24454
|
+
*
|
|
24455
|
+
* Max: `20`
|
|
24456
|
+
*/
|
|
24457
|
+
numberOfParticipants?: number | null;
|
|
24458
|
+
/**
|
|
24459
|
+
* Internal business note. Not visible to the customer.
|
|
24460
|
+
*
|
|
24461
|
+
* Max: 200 characters
|
|
24462
|
+
*/
|
|
24463
|
+
internalBusinessNote?: string | null;
|
|
24464
|
+
/**
|
|
24465
|
+
* Payment option the customer intends to use.
|
|
24466
|
+
* Must be one of the payment options defined for the service, unless
|
|
24467
|
+
* you pass `flowControlSettings.skipSelectedPaymentOptionValidation` as `true`.
|
|
24468
|
+
*/
|
|
24469
|
+
selectedPaymentOption?: SelectedPaymentOption$1;
|
|
24470
|
+
/**
|
|
24471
|
+
* Identifies the source (platform, actor and app) that created this booking.
|
|
24472
|
+
* This property of the booking cannot be changed.
|
|
24473
|
+
* The app_def_id and app_name will be resolved automatically.
|
|
24474
|
+
* TODO GAP See if we need this - might be able to get this data from the headers?
|
|
24475
|
+
*/
|
|
24476
|
+
bookingSource?: BookingSource$1;
|
|
24477
|
+
/**
|
|
24478
|
+
* A user identifier of an external application user that initiated the book request.
|
|
24479
|
+
* Allows an external application to later identify its own bookings and correlate to its own internal users
|
|
24480
|
+
*/
|
|
24481
|
+
externalUserId?: string | null;
|
|
24482
|
+
/** Information about a message to send to the customer. */
|
|
24483
|
+
participantNotification?: ParticipantNotification$1;
|
|
24484
|
+
/**
|
|
24485
|
+
* Whether to send an SMS reminder to the customer 24 hours before the
|
|
24486
|
+
* session starts. The phone number is taken from `contactDetails.phone`.
|
|
24487
|
+
*
|
|
24488
|
+
* Default: `true`.
|
|
24489
|
+
*/
|
|
24490
|
+
sendSmsReminder?: boolean | null;
|
|
24491
|
+
/**
|
|
24492
|
+
* Information about whether specific procedures of the standard Wix Bookings
|
|
24493
|
+
* creation flow are changed. For example, whether the availability is
|
|
24494
|
+
* checked before creating the booking or if additional payment options are
|
|
24495
|
+
* accepted.
|
|
24496
|
+
*/
|
|
24497
|
+
flowControlSettings?: CreateBookingRequestFlowControlSettings;
|
|
24498
|
+
}
|
|
24499
|
+
interface BookingsGatewayRescheduleBookingOptions extends V2RescheduleBookingRequestParticipantsInfoOneOf {
|
|
24500
|
+
/**
|
|
24501
|
+
* Revision number, which increments by 1 each time the booking is updated.
|
|
24502
|
+
* To prevent conflicting changes, the current revision must be passed when
|
|
24503
|
+
* managing the booking.
|
|
24504
|
+
*/
|
|
24505
|
+
revision: string | null;
|
|
24506
|
+
/**
|
|
24507
|
+
* Information about whether to notify the customer about the rescheduling and
|
|
24508
|
+
* the message to send.
|
|
24509
|
+
*/
|
|
24510
|
+
participantNotification?: ParticipantNotification$1;
|
|
24511
|
+
}
|
|
24218
24512
|
|
|
24513
|
+
declare function createMultiServiceBooking$1(httpClient: HttpClient): CreateMultiServiceBookingSignature;
|
|
24514
|
+
interface CreateMultiServiceBookingSignature {
|
|
24515
|
+
/**
|
|
24516
|
+
* Creates multi service booking.
|
|
24517
|
+
*
|
|
24518
|
+
* See [Create Booking](/bookings-v2/bookings-v2-and-confirmation/bookings-create-booking) documentation.
|
|
24519
|
+
* @param - The bookings to create as multi service booking.
|
|
24520
|
+
*/
|
|
24521
|
+
(bookings: Booking$1[], options?: CreateMultiServiceBookingOptions | undefined): Promise<CreateMultiServiceBookingResponse & CreateMultiServiceBookingResponseNonNullableFields>;
|
|
24522
|
+
}
|
|
24523
|
+
declare function rescheduleMultiServiceBooking$1(httpClient: HttpClient): RescheduleMultiServiceBookingSignature;
|
|
24524
|
+
interface RescheduleMultiServiceBookingSignature {
|
|
24525
|
+
/**
|
|
24526
|
+
* Reschedules the multi service booking.
|
|
24527
|
+
* Validates all the bookings were passed.
|
|
24528
|
+
* Throws an exception if there is reschedule policy violation for any of the bookings or if the requested slots are not available.
|
|
24529
|
+
* See [Reschedule Booking](https://dev.wix.com/api/rest/wix-bookings/bookings-v2/reschedule-booking) documentation.
|
|
24530
|
+
* @param - ID of the multi service booking to reschedule it's related bookings.
|
|
24531
|
+
* @param - Bookings to reschedule.
|
|
24532
|
+
*/
|
|
24533
|
+
(multiServiceBookingId: string | null, rescheduleBookingsInfo: RescheduleBookingInfo[], options?: RescheduleMultiServiceBookingOptions | undefined): Promise<RescheduleMultiServiceBookingResponse & RescheduleMultiServiceBookingResponseNonNullableFields>;
|
|
24534
|
+
}
|
|
24535
|
+
declare function getMultiServiceBookingAvailability$1(httpClient: HttpClient): GetMultiServiceBookingAvailabilitySignature;
|
|
24536
|
+
interface GetMultiServiceBookingAvailabilitySignature {
|
|
24537
|
+
/**
|
|
24538
|
+
* Get multi service booking availability.
|
|
24539
|
+
* If the multi service booking is of type SEQUENTIAL_BOOKINGS, its availability is checked through ListMultiServiceAvailabilityTimeSlots API.
|
|
24540
|
+
*/
|
|
24541
|
+
(multiServiceBookingId: string | null): Promise<GetMultiServiceBookingAvailabilityResponse & GetMultiServiceBookingAvailabilityResponseNonNullableFields>;
|
|
24542
|
+
}
|
|
24543
|
+
declare function cancelMultiServiceBooking$1(httpClient: HttpClient): CancelMultiServiceBookingSignature;
|
|
24544
|
+
interface CancelMultiServiceBookingSignature {
|
|
24545
|
+
/**
|
|
24546
|
+
* Cancels the multi service booking.
|
|
24547
|
+
* Each booking within this multi service booking is being canceled.
|
|
24548
|
+
* @param - ID of the multi service booking to cancel it's related bookings.
|
|
24549
|
+
*/
|
|
24550
|
+
(multiServiceBookingId: string | null, options?: CancelMultiServiceBookingOptions | undefined): Promise<CancelMultiServiceBookingResponse & CancelMultiServiceBookingResponseNonNullableFields>;
|
|
24551
|
+
}
|
|
24552
|
+
declare function markMultiServiceBookingAsPending$1(httpClient: HttpClient): MarkMultiServiceBookingAsPendingSignature;
|
|
24553
|
+
interface MarkMultiServiceBookingAsPendingSignature {
|
|
24554
|
+
/**
|
|
24555
|
+
* Mark the multi service booking as PENDING.
|
|
24556
|
+
* Changes the status of each of the bookings within the multi service booking to PENDING
|
|
24557
|
+
* Validates all the bookings were passed.
|
|
24558
|
+
* See [MarkBookingAsPending](https://dev.wix.com/api/rest/wix-bookings/bookings-v2/mark-booking-as-pending) documentation.
|
|
24559
|
+
* @param - ID of the multi service booking to mark as pending it's related bookings.
|
|
24560
|
+
*/
|
|
24561
|
+
(multiServiceBookingId: string | null, options?: MarkMultiServiceBookingAsPendingOptions | undefined): Promise<MarkMultiServiceBookingAsPendingResponse & MarkMultiServiceBookingAsPendingResponseNonNullableFields>;
|
|
24562
|
+
}
|
|
24563
|
+
declare function confirmMultiServiceBooking$1(httpClient: HttpClient): ConfirmMultiServiceBookingSignature;
|
|
24564
|
+
interface ConfirmMultiServiceBookingSignature {
|
|
24565
|
+
/**
|
|
24566
|
+
* Confirms the multi service booking.
|
|
24567
|
+
* Each booking within this multi service booking is being confirmed.
|
|
24568
|
+
* Validates all the bookings were passed.
|
|
24569
|
+
* See [Confirm Booking](https://dev.wix.com/api/rest/wix-bookings/bookings-v2/confirm-booking) documentation.
|
|
24570
|
+
* @param - ID of the multi service booking to confirm it's related bookings.
|
|
24571
|
+
*/
|
|
24572
|
+
(multiServiceBookingId: string | null, options?: ConfirmMultiServiceBookingOptions | undefined): Promise<ConfirmMultiServiceBookingResponse & ConfirmMultiServiceBookingResponseNonNullableFields>;
|
|
24573
|
+
}
|
|
24574
|
+
declare function declineMultiServiceBooking$1(httpClient: HttpClient): DeclineMultiServiceBookingSignature;
|
|
24575
|
+
interface DeclineMultiServiceBookingSignature {
|
|
24576
|
+
/**
|
|
24577
|
+
* Declines the multi service booking.
|
|
24578
|
+
* Each booking within this multi service booking is being declined.
|
|
24579
|
+
* Validates all the bookings were passed.
|
|
24580
|
+
* See [Decline Booking](https://dev.wix.com/api/rest/wix-bookings/bookings-v2/decline-booking) documentation.
|
|
24581
|
+
* @param - ID of the multi service booking to decline it's related bookings.
|
|
24582
|
+
*/
|
|
24583
|
+
(multiServiceBookingId: string | null, options?: DeclineMultiServiceBookingOptions | undefined): Promise<DeclineMultiServiceBookingResponse & DeclineMultiServiceBookingResponseNonNullableFields>;
|
|
24584
|
+
}
|
|
24585
|
+
declare function bulkGetMultiServiceBookingAllowedActions$1(httpClient: HttpClient): BulkGetMultiServiceBookingAllowedActionsSignature;
|
|
24586
|
+
interface BulkGetMultiServiceBookingAllowedActionsSignature {
|
|
24587
|
+
/**
|
|
24588
|
+
* Get the allowed actions for a given multi service bookings by a list of multi service booking ids
|
|
24589
|
+
* @param - The multi service booking ids to get the allowedActions for.
|
|
24590
|
+
*/
|
|
24591
|
+
(multiServiceBookingIds: string[] | null): Promise<BulkGetMultiServiceBookingAllowedActionsResponse & BulkGetMultiServiceBookingAllowedActionsResponseNonNullableFields>;
|
|
24592
|
+
}
|
|
24593
|
+
declare function markAsMultiServiceBooking$1(httpClient: HttpClient): MarkAsMultiServiceBookingSignature;
|
|
24594
|
+
interface MarkAsMultiServiceBookingSignature {
|
|
24595
|
+
/**
|
|
24596
|
+
* Mark multiple existing bookings as multi service booking.
|
|
24597
|
+
* Throws if one of the bookings are already part of multi service booking.
|
|
24598
|
+
* @param - IDs of the bookings to mark as multi service booking.
|
|
24599
|
+
*/
|
|
24600
|
+
(bookingIds: string[] | null, options?: MarkAsMultiServiceBookingOptions | undefined): Promise<MarkAsMultiServiceBookingResponse>;
|
|
24601
|
+
}
|
|
24602
|
+
declare function getMultiServiceBooking$1(httpClient: HttpClient): GetMultiServiceBookingSignature;
|
|
24603
|
+
interface GetMultiServiceBookingSignature {
|
|
24604
|
+
/**
|
|
24605
|
+
* Retrieves the bookings of a given multi service booking id.
|
|
24606
|
+
* In case the caller have permissions to read only part of a bookings, only the permitted bookings would be
|
|
24607
|
+
* retrieved, but the total amount of bookings would be returned on response.
|
|
24608
|
+
* @param - Multi service booking ID.
|
|
24609
|
+
* @returns Multi service booking.
|
|
24610
|
+
*/
|
|
24611
|
+
(multiServiceBookingId: string | null): Promise<MultiServiceBooking & MultiServiceBookingNonNullableFields>;
|
|
24612
|
+
}
|
|
24613
|
+
declare function addBookingsToMultiServiceBooking$1(httpClient: HttpClient): AddBookingsToMultiServiceBookingSignature;
|
|
24614
|
+
interface AddBookingsToMultiServiceBookingSignature {
|
|
24615
|
+
/**
|
|
24616
|
+
* Adds existing bookings to a multi service booking.
|
|
24617
|
+
* @param - ID of the multi service booking.
|
|
24618
|
+
*/
|
|
24619
|
+
(multiServiceBookingId: string | null, options?: AddBookingsToMultiServiceBookingOptions | undefined): Promise<AddBookingsToMultiServiceBookingResponse & AddBookingsToMultiServiceBookingResponseNonNullableFields>;
|
|
24620
|
+
}
|
|
24621
|
+
declare function removeBookingsFromMultiServiceBooking$1(httpClient: HttpClient): RemoveBookingsFromMultiServiceBookingSignature;
|
|
24622
|
+
interface RemoveBookingsFromMultiServiceBookingSignature {
|
|
24623
|
+
/**
|
|
24624
|
+
* Removes existing bookings from a multi service booking.
|
|
24625
|
+
* If request.bookings is empty, all the bookings that the caller is authorized to read will be removed from the multi booking service.
|
|
24626
|
+
* Otherwise only the bookings in the request will be removed.
|
|
24627
|
+
* Throws an exception if the multi booking service is not found or one of the bookings in the request if present.
|
|
24628
|
+
* If the removal of the bookings was successful, the response will contain the bookings that were removed.
|
|
24629
|
+
* In case that the removal of the bookings will result in a multi bookings service with only one booking, the multi booking service will be deleted,
|
|
24630
|
+
* meaning also the last booking will be removed from the multi booking service.
|
|
24631
|
+
* @param - ID of the multi service booking.
|
|
24632
|
+
*/
|
|
24633
|
+
(multiServiceBookingId: string | null, options?: RemoveBookingsFromMultiServiceBookingOptions | undefined): Promise<RemoveBookingsFromMultiServiceBookingResponse & RemoveBookingsFromMultiServiceBookingResponseNonNullableFields>;
|
|
24634
|
+
}
|
|
24219
24635
|
declare function createBooking$1(httpClient: HttpClient): CreateBookingSignature;
|
|
24220
24636
|
interface CreateBookingSignature {
|
|
24221
24637
|
/**
|
|
@@ -24451,6 +24867,97 @@ interface ConfirmOrDeclineBookingSignature {
|
|
|
24451
24867
|
*/
|
|
24452
24868
|
(bookingId: string, options?: ConfirmOrDeclineBookingOptions | undefined): Promise<ConfirmOrDeclineBookingResponse & ConfirmOrDeclineBookingResponseNonNullableFields>;
|
|
24453
24869
|
}
|
|
24870
|
+
declare function bookingsGatewayCreateBooking$1(httpClient: HttpClient): BookingsGatewayCreateBookingSignature;
|
|
24871
|
+
interface BookingsGatewayCreateBookingSignature {
|
|
24872
|
+
/**
|
|
24873
|
+
* Creates a booking.
|
|
24874
|
+
*
|
|
24875
|
+
*
|
|
24876
|
+
* To create a booking for an appointment or a session of a class, pass the
|
|
24877
|
+
* relevant `slot` in the body of the request. You can use the
|
|
24878
|
+
* [Get Slot Availability](https://bo.wix.com/wix-docs/rest/bookings/availabilitycalendar---wip/get-slot-availability)
|
|
24879
|
+
* endpoint to check the availability of the session beforehand.
|
|
24880
|
+
*
|
|
24881
|
+
* To create a booking for the entire course, pass the relevant `schedule` in
|
|
24882
|
+
* the body of the request. You can use the
|
|
24883
|
+
* [Get Schedule Availability](https://bo.wix.com/wix-docs/rest/bookings/availabilitycalendar---wip/get-schedule-availability)
|
|
24884
|
+
* endpoint to check the availability of the course beforehand.
|
|
24885
|
+
*
|
|
24886
|
+
* Bookings are created with a status of `CREATED`. `CREATED` bookings don't
|
|
24887
|
+
* appear on the business calendar and don't affect a related schedule's
|
|
24888
|
+
* availability.
|
|
24889
|
+
*
|
|
24890
|
+
* If you create a booking for an existing session, we recommend that you
|
|
24891
|
+
* only pass `slot.sessionId`. Then, any specified slot details are
|
|
24892
|
+
* calculated.
|
|
24893
|
+
*
|
|
24894
|
+
* If you create a booking for a new session, we recommend to call
|
|
24895
|
+
* [Get Slot Availability](https://bo.wix.com/wix-docs/rest/bookings/availabilitycalendar---wip/get-slot-availability)
|
|
24896
|
+
* first. Then, pass the retrieved `availability.slot` object in the body of
|
|
24897
|
+
* the Create Booking request.
|
|
24898
|
+
*
|
|
24899
|
+
* If you create a booking for a course, we recommend that you pass only
|
|
24900
|
+
* `schedule.scheduleId` and not the entire `schedule` object. Then, all
|
|
24901
|
+
* schedule details are automatically calculated.
|
|
24902
|
+
*
|
|
24903
|
+
* When creating a booking you must pass either `participantsChoices` or
|
|
24904
|
+
* `totalParticipants`. If you pass `participantsChoices`, all of the
|
|
24905
|
+
* provided choices must exist for the service. Otherwise the call returns an
|
|
24906
|
+
* `INVALID_SERVICE_CHOICES` error.
|
|
24907
|
+
*
|
|
24908
|
+
* When creating a booking, you can pass a `selectedPaymentOption`. This specifies
|
|
24909
|
+
* which payment method the customer intends to use. But it's possible for
|
|
24910
|
+
* them to later use another supported payment method.
|
|
24911
|
+
*
|
|
24912
|
+
* After you have created the booking, you can use the
|
|
24913
|
+
* [Wix eCommerce APIs](https://bo.wix.com/wix-docs/rest/ecommerce/checkout/introduction)
|
|
24914
|
+
* for the [checkout](https://bo.wix.com/wix-docs/rest/ecommerce/checkout/create-checkout)
|
|
24915
|
+
* and [order](https://bo.wix.com/wix-docs/rest/ecommerce/checkout/create-order-from-checkout)
|
|
24916
|
+
* steps of the payment flow.
|
|
24917
|
+
*/
|
|
24918
|
+
(options?: BookingsGatewayCreateBookingOptions | undefined): Promise<V2CreateBookingResponse & V2CreateBookingResponseNonNullableFields>;
|
|
24919
|
+
}
|
|
24920
|
+
declare function bookingsGatewayRescheduleBooking$1(httpClient: HttpClient): BookingsGatewayRescheduleBookingSignature;
|
|
24921
|
+
interface BookingsGatewayRescheduleBookingSignature {
|
|
24922
|
+
/**
|
|
24923
|
+
* Reschedules a booking to a different slot or session.
|
|
24924
|
+
*
|
|
24925
|
+
*
|
|
24926
|
+
* You can only reschedule bookings for appointments or classes, you can't
|
|
24927
|
+
* reschedule course bookings.
|
|
24928
|
+
*
|
|
24929
|
+
* The old session is removed from the calendar and the new session is
|
|
24930
|
+
* added.
|
|
24931
|
+
*
|
|
24932
|
+
* If you reschedule a booking for a class session the new session must be an
|
|
24933
|
+
* existing session for the same class.
|
|
24934
|
+
*
|
|
24935
|
+
* You can pass a `participantNotification.message` to notify the customer of
|
|
24936
|
+
* the rescheduling. You also need to pass `participantNotification.notifyParticipants`
|
|
24937
|
+
* as `true` to actually send the message.
|
|
24938
|
+
*
|
|
24939
|
+
* In case the service has
|
|
24940
|
+
* [variants](https://dev.wix.com/api/rest/wix-bookings/service-options-and-variants/introduction),
|
|
24941
|
+
* you can call this endpoint to update the booking's `totalParticipants` or `participantsChoices`. If you
|
|
24942
|
+
* provide `participantsChoices`, all of the provided choices must exist for
|
|
24943
|
+
* the service. Otherwise the call returns an `INVALID_SERVICE_CHOICES` error.
|
|
24944
|
+
* If you omit `participantsChoices` in the request, the existing choices are
|
|
24945
|
+
* kept and not replaced with an empty object.
|
|
24946
|
+
*
|
|
24947
|
+
* <!-- INTERNAL PERMISSION COMMENT:
|
|
24948
|
+
* You need to have the `BOOKINGS.NUMBER_OF_PARTICIPANTS_UPDATE` permission
|
|
24949
|
+
* to reschedule bookings including `participantsInfo`.
|
|
24950
|
+
* <!--END: INTERNAL PERMISSION COMMENT-->
|
|
24951
|
+
*
|
|
24952
|
+
* In case you want to reschedule a booking on behalf of a customer, we recommend
|
|
24953
|
+
* to pass `flowControlSettings.ignoreReschedulePolicy` as `false`. This
|
|
24954
|
+
* ensures that the rescheduling is validated against the service's rescheduling
|
|
24955
|
+
* policy.
|
|
24956
|
+
* @param - Id of the booking to reschedule.
|
|
24957
|
+
* @param - Information about the new slot.
|
|
24958
|
+
*/
|
|
24959
|
+
(bookingId: string, slot: Slot, options?: BookingsGatewayRescheduleBookingOptions | undefined): Promise<V2RescheduleBookingResponse & V2RescheduleBookingResponseNonNullableFields>;
|
|
24960
|
+
}
|
|
24454
24961
|
declare const onBookingCreated$1: EventDefinition$8<BookingCreatedEnvelope, "wix.bookings.v2.booking_created">;
|
|
24455
24962
|
declare const onBookingRescheduled$1: EventDefinition$8<BookingRescheduledEnvelope, "wix.bookings.v2.booking_rescheduled">;
|
|
24456
24963
|
declare const onBookingCanceled$1: EventDefinition$8<BookingCanceledEnvelope, "wix.bookings.v2.booking_canceled">;
|
|
@@ -24479,6 +24986,18 @@ declare global {
|
|
|
24479
24986
|
|
|
24480
24987
|
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
24481
24988
|
|
|
24989
|
+
declare const createMultiServiceBooking: MaybeContext<BuildRESTFunction<typeof createMultiServiceBooking$1> & typeof createMultiServiceBooking$1>;
|
|
24990
|
+
declare const rescheduleMultiServiceBooking: MaybeContext<BuildRESTFunction<typeof rescheduleMultiServiceBooking$1> & typeof rescheduleMultiServiceBooking$1>;
|
|
24991
|
+
declare const getMultiServiceBookingAvailability: MaybeContext<BuildRESTFunction<typeof getMultiServiceBookingAvailability$1> & typeof getMultiServiceBookingAvailability$1>;
|
|
24992
|
+
declare const cancelMultiServiceBooking: MaybeContext<BuildRESTFunction<typeof cancelMultiServiceBooking$1> & typeof cancelMultiServiceBooking$1>;
|
|
24993
|
+
declare const markMultiServiceBookingAsPending: MaybeContext<BuildRESTFunction<typeof markMultiServiceBookingAsPending$1> & typeof markMultiServiceBookingAsPending$1>;
|
|
24994
|
+
declare const confirmMultiServiceBooking: MaybeContext<BuildRESTFunction<typeof confirmMultiServiceBooking$1> & typeof confirmMultiServiceBooking$1>;
|
|
24995
|
+
declare const declineMultiServiceBooking: MaybeContext<BuildRESTFunction<typeof declineMultiServiceBooking$1> & typeof declineMultiServiceBooking$1>;
|
|
24996
|
+
declare const bulkGetMultiServiceBookingAllowedActions: MaybeContext<BuildRESTFunction<typeof bulkGetMultiServiceBookingAllowedActions$1> & typeof bulkGetMultiServiceBookingAllowedActions$1>;
|
|
24997
|
+
declare const markAsMultiServiceBooking: MaybeContext<BuildRESTFunction<typeof markAsMultiServiceBooking$1> & typeof markAsMultiServiceBooking$1>;
|
|
24998
|
+
declare const getMultiServiceBooking: MaybeContext<BuildRESTFunction<typeof getMultiServiceBooking$1> & typeof getMultiServiceBooking$1>;
|
|
24999
|
+
declare const addBookingsToMultiServiceBooking: MaybeContext<BuildRESTFunction<typeof addBookingsToMultiServiceBooking$1> & typeof addBookingsToMultiServiceBooking$1>;
|
|
25000
|
+
declare const removeBookingsFromMultiServiceBooking: MaybeContext<BuildRESTFunction<typeof removeBookingsFromMultiServiceBooking$1> & typeof removeBookingsFromMultiServiceBooking$1>;
|
|
24482
25001
|
declare const createBooking: MaybeContext<BuildRESTFunction<typeof createBooking$1> & typeof createBooking$1>;
|
|
24483
25002
|
declare const bulkCreateBooking: MaybeContext<BuildRESTFunction<typeof bulkCreateBooking$1> & typeof bulkCreateBooking$1>;
|
|
24484
25003
|
declare const rescheduleBooking: MaybeContext<BuildRESTFunction<typeof rescheduleBooking$1> & typeof rescheduleBooking$1>;
|
|
@@ -24488,6 +25007,8 @@ declare const declineBooking: MaybeContext<BuildRESTFunction<typeof declineBooki
|
|
|
24488
25007
|
declare const cancelBooking: MaybeContext<BuildRESTFunction<typeof cancelBooking$1> & typeof cancelBooking$1>;
|
|
24489
25008
|
declare const updateNumberOfParticipants: MaybeContext<BuildRESTFunction<typeof updateNumberOfParticipants$1> & typeof updateNumberOfParticipants$1>;
|
|
24490
25009
|
declare const confirmOrDeclineBooking: MaybeContext<BuildRESTFunction<typeof confirmOrDeclineBooking$1> & typeof confirmOrDeclineBooking$1>;
|
|
25010
|
+
declare const bookingsGatewayCreateBooking: MaybeContext<BuildRESTFunction<typeof bookingsGatewayCreateBooking$1> & typeof bookingsGatewayCreateBooking$1>;
|
|
25011
|
+
declare const bookingsGatewayRescheduleBooking: MaybeContext<BuildRESTFunction<typeof bookingsGatewayRescheduleBooking$1> & typeof bookingsGatewayRescheduleBooking$1>;
|
|
24491
25012
|
|
|
24492
25013
|
type _publicOnBookingCreatedType = typeof onBookingCreated$1;
|
|
24493
25014
|
/**
|
|
@@ -24530,8 +25051,10 @@ type _publicOnBookingNumberOfParticipantsUpdatedType = typeof onBookingNumberOfP
|
|
|
24530
25051
|
declare const onBookingNumberOfParticipantsUpdated: ReturnType<typeof createEventModule<_publicOnBookingNumberOfParticipantsUpdatedType>>;
|
|
24531
25052
|
|
|
24532
25053
|
type index_d$1_ActionEvent = ActionEvent;
|
|
25054
|
+
type index_d$1_AddBookingsToMultiServiceBookingOptions = AddBookingsToMultiServiceBookingOptions;
|
|
24533
25055
|
type index_d$1_AddBookingsToMultiServiceBookingRequest = AddBookingsToMultiServiceBookingRequest;
|
|
24534
25056
|
type index_d$1_AddBookingsToMultiServiceBookingResponse = AddBookingsToMultiServiceBookingResponse;
|
|
25057
|
+
type index_d$1_AddBookingsToMultiServiceBookingResponseNonNullableFields = AddBookingsToMultiServiceBookingResponseNonNullableFields;
|
|
24535
25058
|
type index_d$1_AllowedActions = AllowedActions;
|
|
24536
25059
|
type index_d$1_ApplicationError = ApplicationError;
|
|
24537
25060
|
type index_d$1_AvailableResources = AvailableResources;
|
|
@@ -24556,6 +25079,8 @@ type index_d$1_BookingRescheduledEnvelope = BookingRescheduledEnvelope;
|
|
|
24556
25079
|
type index_d$1_BookingRescheduledPreviousParticipantsInfoOneOf = BookingRescheduledPreviousParticipantsInfoOneOf;
|
|
24557
25080
|
type index_d$1_BookingResult = BookingResult;
|
|
24558
25081
|
type index_d$1_BookingUpdatedEnvelope = BookingUpdatedEnvelope;
|
|
25082
|
+
type index_d$1_BookingsGatewayCreateBookingOptions = BookingsGatewayCreateBookingOptions;
|
|
25083
|
+
type index_d$1_BookingsGatewayRescheduleBookingOptions = BookingsGatewayRescheduleBookingOptions;
|
|
24559
25084
|
type index_d$1_BulkActionMetadata = BulkActionMetadata;
|
|
24560
25085
|
type index_d$1_BulkBookingResult = BulkBookingResult;
|
|
24561
25086
|
type index_d$1_BulkCalculateAllowedActionsRequest = BulkCalculateAllowedActionsRequest;
|
|
@@ -24570,6 +25095,7 @@ type index_d$1_BulkCreateBookingResponse = BulkCreateBookingResponse;
|
|
|
24570
25095
|
type index_d$1_BulkCreateBookingResponseNonNullableFields = BulkCreateBookingResponseNonNullableFields;
|
|
24571
25096
|
type index_d$1_BulkGetMultiServiceBookingAllowedActionsRequest = BulkGetMultiServiceBookingAllowedActionsRequest;
|
|
24572
25097
|
type index_d$1_BulkGetMultiServiceBookingAllowedActionsResponse = BulkGetMultiServiceBookingAllowedActionsResponse;
|
|
25098
|
+
type index_d$1_BulkGetMultiServiceBookingAllowedActionsResponseNonNullableFields = BulkGetMultiServiceBookingAllowedActionsResponseNonNullableFields;
|
|
24573
25099
|
type index_d$1_BulkRescheduleBookingRequest = BulkRescheduleBookingRequest;
|
|
24574
25100
|
type index_d$1_BulkRescheduleBookingRequestBooking = BulkRescheduleBookingRequestBooking;
|
|
24575
25101
|
type index_d$1_BulkRescheduleBookingResponse = BulkRescheduleBookingResponse;
|
|
@@ -24585,8 +25111,10 @@ type index_d$1_CancelBookingRequest = CancelBookingRequest;
|
|
|
24585
25111
|
type index_d$1_CancelBookingRequestFlowControlSettings = CancelBookingRequestFlowControlSettings;
|
|
24586
25112
|
type index_d$1_CancelBookingResponse = CancelBookingResponse;
|
|
24587
25113
|
type index_d$1_CancelBookingResponseNonNullableFields = CancelBookingResponseNonNullableFields;
|
|
25114
|
+
type index_d$1_CancelMultiServiceBookingOptions = CancelMultiServiceBookingOptions;
|
|
24588
25115
|
type index_d$1_CancelMultiServiceBookingRequest = CancelMultiServiceBookingRequest;
|
|
24589
25116
|
type index_d$1_CancelMultiServiceBookingResponse = CancelMultiServiceBookingResponse;
|
|
25117
|
+
type index_d$1_CancelMultiServiceBookingResponseNonNullableFields = CancelMultiServiceBookingResponseNonNullableFields;
|
|
24590
25118
|
type index_d$1_Clash = Clash;
|
|
24591
25119
|
type index_d$1_CommonIdentificationData = CommonIdentificationData;
|
|
24592
25120
|
type index_d$1_CommonIdentificationDataIdOneOf = CommonIdentificationDataIdOneOf;
|
|
@@ -24595,8 +25123,10 @@ type index_d$1_ConfirmBookingOptions = ConfirmBookingOptions;
|
|
|
24595
25123
|
type index_d$1_ConfirmBookingRequest = ConfirmBookingRequest;
|
|
24596
25124
|
type index_d$1_ConfirmBookingResponse = ConfirmBookingResponse;
|
|
24597
25125
|
type index_d$1_ConfirmBookingResponseNonNullableFields = ConfirmBookingResponseNonNullableFields;
|
|
25126
|
+
type index_d$1_ConfirmMultiServiceBookingOptions = ConfirmMultiServiceBookingOptions;
|
|
24598
25127
|
type index_d$1_ConfirmMultiServiceBookingRequest = ConfirmMultiServiceBookingRequest;
|
|
24599
25128
|
type index_d$1_ConfirmMultiServiceBookingResponse = ConfirmMultiServiceBookingResponse;
|
|
25129
|
+
type index_d$1_ConfirmMultiServiceBookingResponseNonNullableFields = ConfirmMultiServiceBookingResponseNonNullableFields;
|
|
24600
25130
|
type index_d$1_ConfirmOrDeclineBookingOptions = ConfirmOrDeclineBookingOptions;
|
|
24601
25131
|
type index_d$1_ConfirmOrDeclineBookingRequest = ConfirmOrDeclineBookingRequest;
|
|
24602
25132
|
type index_d$1_ConfirmOrDeclineBookingResponse = ConfirmOrDeclineBookingResponse;
|
|
@@ -24612,8 +25142,10 @@ type index_d$1_CreateBookingRequest = CreateBookingRequest;
|
|
|
24612
25142
|
type index_d$1_CreateBookingRequestFlowControlSettings = CreateBookingRequestFlowControlSettings;
|
|
24613
25143
|
type index_d$1_CreateBookingResponse = CreateBookingResponse;
|
|
24614
25144
|
type index_d$1_CreateBookingResponseNonNullableFields = CreateBookingResponseNonNullableFields;
|
|
25145
|
+
type index_d$1_CreateMultiServiceBookingOptions = CreateMultiServiceBookingOptions;
|
|
24615
25146
|
type index_d$1_CreateMultiServiceBookingRequest = CreateMultiServiceBookingRequest;
|
|
24616
25147
|
type index_d$1_CreateMultiServiceBookingResponse = CreateMultiServiceBookingResponse;
|
|
25148
|
+
type index_d$1_CreateMultiServiceBookingResponseNonNullableFields = CreateMultiServiceBookingResponseNonNullableFields;
|
|
24617
25149
|
type index_d$1_CursorPaging = CursorPaging;
|
|
24618
25150
|
type index_d$1_Cursors = Cursors;
|
|
24619
25151
|
type index_d$1_DeclineBookingFlowControlSettings = DeclineBookingFlowControlSettings;
|
|
@@ -24621,8 +25153,10 @@ type index_d$1_DeclineBookingOptions = DeclineBookingOptions;
|
|
|
24621
25153
|
type index_d$1_DeclineBookingRequest = DeclineBookingRequest;
|
|
24622
25154
|
type index_d$1_DeclineBookingResponse = DeclineBookingResponse;
|
|
24623
25155
|
type index_d$1_DeclineBookingResponseNonNullableFields = DeclineBookingResponseNonNullableFields;
|
|
25156
|
+
type index_d$1_DeclineMultiServiceBookingOptions = DeclineMultiServiceBookingOptions;
|
|
24624
25157
|
type index_d$1_DeclineMultiServiceBookingRequest = DeclineMultiServiceBookingRequest;
|
|
24625
25158
|
type index_d$1_DeclineMultiServiceBookingResponse = DeclineMultiServiceBookingResponse;
|
|
25159
|
+
type index_d$1_DeclineMultiServiceBookingResponseNonNullableFields = DeclineMultiServiceBookingResponseNonNullableFields;
|
|
24626
25160
|
type index_d$1_DomainEvent = DomainEvent;
|
|
24627
25161
|
type index_d$1_DomainEventBodyOneOf = DomainEventBodyOneOf;
|
|
24628
25162
|
type index_d$1_EntityCreatedEvent = EntityCreatedEvent;
|
|
@@ -24632,8 +25166,10 @@ type index_d$1_EventMetadata = EventMetadata;
|
|
|
24632
25166
|
type index_d$1_GetMultiServiceBookingAvailabilityRequest = GetMultiServiceBookingAvailabilityRequest;
|
|
24633
25167
|
type index_d$1_GetMultiServiceBookingAvailabilityResponse = GetMultiServiceBookingAvailabilityResponse;
|
|
24634
25168
|
type index_d$1_GetMultiServiceBookingAvailabilityResponseBookingInfo = GetMultiServiceBookingAvailabilityResponseBookingInfo;
|
|
25169
|
+
type index_d$1_GetMultiServiceBookingAvailabilityResponseNonNullableFields = GetMultiServiceBookingAvailabilityResponseNonNullableFields;
|
|
24635
25170
|
type index_d$1_GetMultiServiceBookingRequest = GetMultiServiceBookingRequest;
|
|
24636
25171
|
type index_d$1_GetMultiServiceBookingResponse = GetMultiServiceBookingResponse;
|
|
25172
|
+
type index_d$1_GetMultiServiceBookingResponseNonNullableFields = GetMultiServiceBookingResponseNonNullableFields;
|
|
24637
25173
|
type index_d$1_GetScheduleAvailabilityRequest = GetScheduleAvailabilityRequest;
|
|
24638
25174
|
type index_d$1_GetScheduleAvailabilityResponse = GetScheduleAvailabilityResponse;
|
|
24639
25175
|
type index_d$1_GetSlotAvailabilityRequest = GetSlotAvailabilityRequest;
|
|
@@ -24645,13 +25181,16 @@ type index_d$1_LegacyCreateBookingRequest = LegacyCreateBookingRequest;
|
|
|
24645
25181
|
type index_d$1_LegacyCreateBookingResponse = LegacyCreateBookingResponse;
|
|
24646
25182
|
type index_d$1_LocationLocationType = LocationLocationType;
|
|
24647
25183
|
declare const index_d$1_LocationLocationType: typeof LocationLocationType;
|
|
25184
|
+
type index_d$1_MarkAsMultiServiceBookingOptions = MarkAsMultiServiceBookingOptions;
|
|
24648
25185
|
type index_d$1_MarkAsMultiServiceBookingRequest = MarkAsMultiServiceBookingRequest;
|
|
24649
25186
|
type index_d$1_MarkAsMultiServiceBookingResponse = MarkAsMultiServiceBookingResponse;
|
|
24650
25187
|
type index_d$1_MarkBookingAsPendingFlowControlSettings = MarkBookingAsPendingFlowControlSettings;
|
|
24651
25188
|
type index_d$1_MarkBookingAsPendingRequest = MarkBookingAsPendingRequest;
|
|
24652
25189
|
type index_d$1_MarkBookingAsPendingResponse = MarkBookingAsPendingResponse;
|
|
25190
|
+
type index_d$1_MarkMultiServiceBookingAsPendingOptions = MarkMultiServiceBookingAsPendingOptions;
|
|
24653
25191
|
type index_d$1_MarkMultiServiceBookingAsPendingRequest = MarkMultiServiceBookingAsPendingRequest;
|
|
24654
25192
|
type index_d$1_MarkMultiServiceBookingAsPendingResponse = MarkMultiServiceBookingAsPendingResponse;
|
|
25193
|
+
type index_d$1_MarkMultiServiceBookingAsPendingResponseNonNullableFields = MarkMultiServiceBookingAsPendingResponseNonNullableFields;
|
|
24655
25194
|
type index_d$1_MaskedBooking = MaskedBooking;
|
|
24656
25195
|
type index_d$1_MessageEnvelope = MessageEnvelope;
|
|
24657
25196
|
type index_d$1_MigrationCheckIfClashesWithBlockedTimeRequest = MigrationCheckIfClashesWithBlockedTimeRequest;
|
|
@@ -24659,6 +25198,7 @@ type index_d$1_MigrationCheckIfClashesWithBlockedTimeResponse = MigrationCheckIf
|
|
|
24659
25198
|
type index_d$1_MsidAndBookingId = MsidAndBookingId;
|
|
24660
25199
|
type index_d$1_MultiServiceBooking = MultiServiceBooking;
|
|
24661
25200
|
type index_d$1_MultiServiceBookingMetadata = MultiServiceBookingMetadata;
|
|
25201
|
+
type index_d$1_MultiServiceBookingNonNullableFields = MultiServiceBookingNonNullableFields;
|
|
24662
25202
|
type index_d$1_NumberOfParticipantsUpdated = NumberOfParticipantsUpdated;
|
|
24663
25203
|
type index_d$1_NumberOfParticipantsUpdatedPreviousParticipantsInfoOneOf = NumberOfParticipantsUpdatedPreviousParticipantsInfoOneOf;
|
|
24664
25204
|
type index_d$1_Paging = Paging;
|
|
@@ -24670,8 +25210,10 @@ type index_d$1_QueryBookingsRequest = QueryBookingsRequest;
|
|
|
24670
25210
|
type index_d$1_QueryBookingsResponse = QueryBookingsResponse;
|
|
24671
25211
|
type index_d$1_QueryV2 = QueryV2;
|
|
24672
25212
|
type index_d$1_QueryV2PagingMethodOneOf = QueryV2PagingMethodOneOf;
|
|
25213
|
+
type index_d$1_RemoveBookingsFromMultiServiceBookingOptions = RemoveBookingsFromMultiServiceBookingOptions;
|
|
24673
25214
|
type index_d$1_RemoveBookingsFromMultiServiceBookingRequest = RemoveBookingsFromMultiServiceBookingRequest;
|
|
24674
25215
|
type index_d$1_RemoveBookingsFromMultiServiceBookingResponse = RemoveBookingsFromMultiServiceBookingResponse;
|
|
25216
|
+
type index_d$1_RemoveBookingsFromMultiServiceBookingResponseNonNullableFields = RemoveBookingsFromMultiServiceBookingResponseNonNullableFields;
|
|
24675
25217
|
type index_d$1_RescheduleBookingFlowControlSettings = RescheduleBookingFlowControlSettings;
|
|
24676
25218
|
type index_d$1_RescheduleBookingInfo = RescheduleBookingInfo;
|
|
24677
25219
|
type index_d$1_RescheduleBookingInfoParticipantsInfoOneOf = RescheduleBookingInfoParticipantsInfoOneOf;
|
|
@@ -24681,8 +25223,10 @@ type index_d$1_RescheduleBookingRequestFlowControlSettings = RescheduleBookingRe
|
|
|
24681
25223
|
type index_d$1_RescheduleBookingRequestParticipantsInfoOneOf = RescheduleBookingRequestParticipantsInfoOneOf;
|
|
24682
25224
|
type index_d$1_RescheduleBookingResponse = RescheduleBookingResponse;
|
|
24683
25225
|
type index_d$1_RescheduleBookingResponseNonNullableFields = RescheduleBookingResponseNonNullableFields;
|
|
25226
|
+
type index_d$1_RescheduleMultiServiceBookingOptions = RescheduleMultiServiceBookingOptions;
|
|
24684
25227
|
type index_d$1_RescheduleMultiServiceBookingRequest = RescheduleMultiServiceBookingRequest;
|
|
24685
25228
|
type index_d$1_RescheduleMultiServiceBookingResponse = RescheduleMultiServiceBookingResponse;
|
|
25229
|
+
type index_d$1_RescheduleMultiServiceBookingResponseNonNullableFields = RescheduleMultiServiceBookingResponseNonNullableFields;
|
|
24686
25230
|
type index_d$1_RestoreInfo = RestoreInfo;
|
|
24687
25231
|
type index_d$1_ScheduleAvailability = ScheduleAvailability;
|
|
24688
25232
|
type index_d$1_SetBookingSessionIdRequest = SetBookingSessionIdRequest;
|
|
@@ -24715,11 +25259,13 @@ type index_d$1_V2CreateBookingRequest = V2CreateBookingRequest;
|
|
|
24715
25259
|
type index_d$1_V2CreateBookingRequestBookableItemOneOf = V2CreateBookingRequestBookableItemOneOf;
|
|
24716
25260
|
type index_d$1_V2CreateBookingRequestParticipantsInfoOneOf = V2CreateBookingRequestParticipantsInfoOneOf;
|
|
24717
25261
|
type index_d$1_V2CreateBookingResponse = V2CreateBookingResponse;
|
|
25262
|
+
type index_d$1_V2CreateBookingResponseNonNullableFields = V2CreateBookingResponseNonNullableFields;
|
|
24718
25263
|
type index_d$1_V2DeclineBookingRequest = V2DeclineBookingRequest;
|
|
24719
25264
|
type index_d$1_V2DeclineBookingResponse = V2DeclineBookingResponse;
|
|
24720
25265
|
type index_d$1_V2RescheduleBookingRequest = V2RescheduleBookingRequest;
|
|
24721
25266
|
type index_d$1_V2RescheduleBookingRequestParticipantsInfoOneOf = V2RescheduleBookingRequestParticipantsInfoOneOf;
|
|
24722
25267
|
type index_d$1_V2RescheduleBookingResponse = V2RescheduleBookingResponse;
|
|
25268
|
+
type index_d$1_V2RescheduleBookingResponseNonNullableFields = V2RescheduleBookingResponseNonNullableFields;
|
|
24723
25269
|
type index_d$1_V2Slot = V2Slot;
|
|
24724
25270
|
type index_d$1_V2UpdateNumberOfParticipantsRequest = V2UpdateNumberOfParticipantsRequest;
|
|
24725
25271
|
type index_d$1_V2UpdateNumberOfParticipantsRequestParticipantsInfoOneOf = V2UpdateNumberOfParticipantsRequestParticipantsInfoOneOf;
|
|
@@ -24736,12 +25282,24 @@ type index_d$1__publicOnBookingDeclinedType = _publicOnBookingDeclinedType;
|
|
|
24736
25282
|
type index_d$1__publicOnBookingNumberOfParticipantsUpdatedType = _publicOnBookingNumberOfParticipantsUpdatedType;
|
|
24737
25283
|
type index_d$1__publicOnBookingRescheduledType = _publicOnBookingRescheduledType;
|
|
24738
25284
|
type index_d$1__publicOnBookingUpdatedType = _publicOnBookingUpdatedType;
|
|
25285
|
+
declare const index_d$1_addBookingsToMultiServiceBooking: typeof addBookingsToMultiServiceBooking;
|
|
25286
|
+
declare const index_d$1_bookingsGatewayCreateBooking: typeof bookingsGatewayCreateBooking;
|
|
25287
|
+
declare const index_d$1_bookingsGatewayRescheduleBooking: typeof bookingsGatewayRescheduleBooking;
|
|
24739
25288
|
declare const index_d$1_bulkCreateBooking: typeof bulkCreateBooking;
|
|
25289
|
+
declare const index_d$1_bulkGetMultiServiceBookingAllowedActions: typeof bulkGetMultiServiceBookingAllowedActions;
|
|
24740
25290
|
declare const index_d$1_cancelBooking: typeof cancelBooking;
|
|
25291
|
+
declare const index_d$1_cancelMultiServiceBooking: typeof cancelMultiServiceBooking;
|
|
24741
25292
|
declare const index_d$1_confirmBooking: typeof confirmBooking;
|
|
25293
|
+
declare const index_d$1_confirmMultiServiceBooking: typeof confirmMultiServiceBooking;
|
|
24742
25294
|
declare const index_d$1_confirmOrDeclineBooking: typeof confirmOrDeclineBooking;
|
|
24743
25295
|
declare const index_d$1_createBooking: typeof createBooking;
|
|
25296
|
+
declare const index_d$1_createMultiServiceBooking: typeof createMultiServiceBooking;
|
|
24744
25297
|
declare const index_d$1_declineBooking: typeof declineBooking;
|
|
25298
|
+
declare const index_d$1_declineMultiServiceBooking: typeof declineMultiServiceBooking;
|
|
25299
|
+
declare const index_d$1_getMultiServiceBooking: typeof getMultiServiceBooking;
|
|
25300
|
+
declare const index_d$1_getMultiServiceBookingAvailability: typeof getMultiServiceBookingAvailability;
|
|
25301
|
+
declare const index_d$1_markAsMultiServiceBooking: typeof markAsMultiServiceBooking;
|
|
25302
|
+
declare const index_d$1_markMultiServiceBookingAsPending: typeof markMultiServiceBookingAsPending;
|
|
24745
25303
|
declare const index_d$1_onBookingCanceled: typeof onBookingCanceled;
|
|
24746
25304
|
declare const index_d$1_onBookingConfirmed: typeof onBookingConfirmed;
|
|
24747
25305
|
declare const index_d$1_onBookingCreated: typeof onBookingCreated;
|
|
@@ -24749,11 +25307,13 @@ declare const index_d$1_onBookingDeclined: typeof onBookingDeclined;
|
|
|
24749
25307
|
declare const index_d$1_onBookingNumberOfParticipantsUpdated: typeof onBookingNumberOfParticipantsUpdated;
|
|
24750
25308
|
declare const index_d$1_onBookingRescheduled: typeof onBookingRescheduled;
|
|
24751
25309
|
declare const index_d$1_onBookingUpdated: typeof onBookingUpdated;
|
|
25310
|
+
declare const index_d$1_removeBookingsFromMultiServiceBooking: typeof removeBookingsFromMultiServiceBooking;
|
|
24752
25311
|
declare const index_d$1_rescheduleBooking: typeof rescheduleBooking;
|
|
25312
|
+
declare const index_d$1_rescheduleMultiServiceBooking: typeof rescheduleMultiServiceBooking;
|
|
24753
25313
|
declare const index_d$1_updateExtendedFields: typeof updateExtendedFields;
|
|
24754
25314
|
declare const index_d$1_updateNumberOfParticipants: typeof updateNumberOfParticipants;
|
|
24755
25315
|
declare namespace index_d$1 {
|
|
24756
|
-
export { type index_d$1_ActionEvent as ActionEvent, Actor$1 as Actor, type index_d$1_AddBookingsToMultiServiceBookingRequest as AddBookingsToMultiServiceBookingRequest, type index_d$1_AddBookingsToMultiServiceBookingResponse as AddBookingsToMultiServiceBookingResponse, type Address$1 as Address, type AddressLocation$1 as AddressLocation, type AddressStreetOneOf$1 as AddressStreetOneOf, type index_d$1_AllowedActions as AllowedActions, type index_d$1_ApplicationError as ApplicationError, type index_d$1_AvailableResources as AvailableResources, type index_d$1_BaseEventMetadata as BaseEventMetadata, type BookedEntity$1 as BookedEntity, type BookedEntityItemOneOf$1 as BookedEntityItemOneOf, type BookedResource$1 as BookedResource, type BookedSchedule$1 as BookedSchedule, type BookedSlot$1 as BookedSlot, type Booking$1 as Booking, type index_d$1_BookingCanceled as BookingCanceled, type index_d$1_BookingCanceledEnvelope as BookingCanceledEnvelope, type index_d$1_BookingChanged as BookingChanged, type index_d$1_BookingConfirmed as BookingConfirmed, type index_d$1_BookingConfirmedEnvelope as BookingConfirmedEnvelope, type index_d$1_BookingCreatedEnvelope as BookingCreatedEnvelope, type index_d$1_BookingDeclined as BookingDeclined, type index_d$1_BookingDeclinedEnvelope as BookingDeclinedEnvelope, type index_d$1_BookingDetails as BookingDetails, type index_d$1_BookingIdAndRevision as BookingIdAndRevision, type index_d$1_BookingInfo as BookingInfo, type index_d$1_BookingMarkedAsPending as BookingMarkedAsPending, type index_d$1_BookingNumberOfParticipantsUpdatedEnvelope as BookingNumberOfParticipantsUpdatedEnvelope, type BookingParticipantsInfoOneOf$1 as BookingParticipantsInfoOneOf, type index_d$1_BookingPolicySettings as BookingPolicySettings, type index_d$1_BookingPolicyViolations as BookingPolicyViolations, type index_d$1_BookingRescheduled as BookingRescheduled, type index_d$1_BookingRescheduledEnvelope as BookingRescheduledEnvelope, type index_d$1_BookingRescheduledPreviousParticipantsInfoOneOf as BookingRescheduledPreviousParticipantsInfoOneOf, type index_d$1_BookingResult as BookingResult, type BookingSource$1 as BookingSource, BookingStatus$1 as BookingStatus, type index_d$1_BookingUpdatedEnvelope as BookingUpdatedEnvelope, type index_d$1_BulkActionMetadata as BulkActionMetadata, type index_d$1_BulkBookingResult as BulkBookingResult, type index_d$1_BulkCalculateAllowedActionsRequest as BulkCalculateAllowedActionsRequest, type index_d$1_BulkCalculateAllowedActionsResponse as BulkCalculateAllowedActionsResponse, type index_d$1_BulkCalculateAllowedActionsResult as BulkCalculateAllowedActionsResult, type index_d$1_BulkConfirmOrDeclineBookingRequest as BulkConfirmOrDeclineBookingRequest, type index_d$1_BulkConfirmOrDeclineBookingRequestBookingDetails as BulkConfirmOrDeclineBookingRequestBookingDetails, type index_d$1_BulkConfirmOrDeclineBookingResponse as BulkConfirmOrDeclineBookingResponse, type index_d$1_BulkCreateBookingOptions as BulkCreateBookingOptions, type index_d$1_BulkCreateBookingRequest as BulkCreateBookingRequest, type index_d$1_BulkCreateBookingResponse as BulkCreateBookingResponse, type index_d$1_BulkCreateBookingResponseNonNullableFields as BulkCreateBookingResponseNonNullableFields, type index_d$1_BulkGetMultiServiceBookingAllowedActionsRequest as BulkGetMultiServiceBookingAllowedActionsRequest, type index_d$1_BulkGetMultiServiceBookingAllowedActionsResponse as BulkGetMultiServiceBookingAllowedActionsResponse, type index_d$1_BulkRescheduleBookingRequest as BulkRescheduleBookingRequest, type index_d$1_BulkRescheduleBookingRequestBooking as BulkRescheduleBookingRequestBooking, type index_d$1_BulkRescheduleBookingResponse as BulkRescheduleBookingResponse, type index_d$1_BulkUpdateBookedScheduleRequest as BulkUpdateBookedScheduleRequest, type index_d$1_BulkUpdateBookedScheduleResponse as BulkUpdateBookedScheduleResponse, type index_d$1_BulkUpdateBookingRequest as BulkUpdateBookingRequest, type index_d$1_BulkUpdateBookingResponse as BulkUpdateBookingResponse, type index_d$1_CalculateAllowedActionsRequest as CalculateAllowedActionsRequest, type index_d$1_CalculateAllowedActionsResponse as CalculateAllowedActionsResponse, type index_d$1_CancelBookingFlowControlSettings as CancelBookingFlowControlSettings, type index_d$1_CancelBookingOptions as CancelBookingOptions, type index_d$1_CancelBookingRequest as CancelBookingRequest, type index_d$1_CancelBookingRequestFlowControlSettings as CancelBookingRequestFlowControlSettings, type index_d$1_CancelBookingResponse as CancelBookingResponse, type index_d$1_CancelBookingResponseNonNullableFields as CancelBookingResponseNonNullableFields, type index_d$1_CancelMultiServiceBookingRequest as CancelMultiServiceBookingRequest, type index_d$1_CancelMultiServiceBookingResponse as CancelMultiServiceBookingResponse, type index_d$1_Clash as Clash, type index_d$1_CommonIdentificationData as CommonIdentificationData, type index_d$1_CommonIdentificationDataIdOneOf as CommonIdentificationDataIdOneOf, type index_d$1_ConfirmBookingFlowControlSettings as ConfirmBookingFlowControlSettings, type index_d$1_ConfirmBookingOptions as ConfirmBookingOptions, type index_d$1_ConfirmBookingRequest as ConfirmBookingRequest, type index_d$1_ConfirmBookingResponse as ConfirmBookingResponse, type index_d$1_ConfirmBookingResponseNonNullableFields as ConfirmBookingResponseNonNullableFields, type index_d$1_ConfirmMultiServiceBookingRequest as ConfirmMultiServiceBookingRequest, type index_d$1_ConfirmMultiServiceBookingResponse as ConfirmMultiServiceBookingResponse, type index_d$1_ConfirmOrDeclineBookingOptions as ConfirmOrDeclineBookingOptions, type index_d$1_ConfirmOrDeclineBookingRequest as ConfirmOrDeclineBookingRequest, type index_d$1_ConfirmOrDeclineBookingResponse as ConfirmOrDeclineBookingResponse, type index_d$1_ConfirmOrDeclineBookingResponseNonNullableFields as ConfirmOrDeclineBookingResponseNonNullableFields, type index_d$1_ConfirmRequest as ConfirmRequest, type index_d$1_ConfirmResponse as ConfirmResponse, type index_d$1_ConsistentQueryBookingsRequest as ConsistentQueryBookingsRequest, type index_d$1_ConsistentQueryBookingsResponse as ConsistentQueryBookingsResponse, type ContactDetails$1 as ContactDetails, type index_d$1_CreateBookingFlowControlSettings as CreateBookingFlowControlSettings, type index_d$1_CreateBookingInfo as CreateBookingInfo, type index_d$1_CreateBookingOptions as CreateBookingOptions, type index_d$1_CreateBookingRequest as CreateBookingRequest, type index_d$1_CreateBookingRequestFlowControlSettings as CreateBookingRequestFlowControlSettings, type index_d$1_CreateBookingResponse as CreateBookingResponse, type index_d$1_CreateBookingResponseNonNullableFields as CreateBookingResponseNonNullableFields, type index_d$1_CreateMultiServiceBookingRequest as CreateMultiServiceBookingRequest, type index_d$1_CreateMultiServiceBookingResponse as CreateMultiServiceBookingResponse, type index_d$1_CursorPaging as CursorPaging, type index_d$1_Cursors as Cursors, type CustomFormField$1 as CustomFormField, type index_d$1_DeclineBookingFlowControlSettings as DeclineBookingFlowControlSettings, type index_d$1_DeclineBookingOptions as DeclineBookingOptions, type index_d$1_DeclineBookingRequest as DeclineBookingRequest, type index_d$1_DeclineBookingResponse as DeclineBookingResponse, type index_d$1_DeclineBookingResponseNonNullableFields as DeclineBookingResponseNonNullableFields, type index_d$1_DeclineMultiServiceBookingRequest as DeclineMultiServiceBookingRequest, type index_d$1_DeclineMultiServiceBookingResponse as DeclineMultiServiceBookingResponse, type index_d$1_DomainEvent as DomainEvent, type index_d$1_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d$1_EntityCreatedEvent as EntityCreatedEvent, type index_d$1_EntityDeletedEvent as EntityDeletedEvent, type index_d$1_EntityUpdatedEvent as EntityUpdatedEvent, type index_d$1_EventMetadata as EventMetadata, type ExtendedFields$1 as ExtendedFields, type FlowControlSettings$1 as FlowControlSettings, type index_d$1_GetMultiServiceBookingAvailabilityRequest as GetMultiServiceBookingAvailabilityRequest, type index_d$1_GetMultiServiceBookingAvailabilityResponse as GetMultiServiceBookingAvailabilityResponse, type index_d$1_GetMultiServiceBookingAvailabilityResponseBookingInfo as GetMultiServiceBookingAvailabilityResponseBookingInfo, type index_d$1_GetMultiServiceBookingRequest as GetMultiServiceBookingRequest, type index_d$1_GetMultiServiceBookingResponse as GetMultiServiceBookingResponse, type index_d$1_GetScheduleAvailabilityRequest as GetScheduleAvailabilityRequest, type index_d$1_GetScheduleAvailabilityResponse as GetScheduleAvailabilityResponse, type index_d$1_GetSlotAvailabilityRequest as GetSlotAvailabilityRequest, type index_d$1_GetSlotAvailabilityResponse as GetSlotAvailabilityResponse, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, index_d$1_IdentificationDataIdentityType as IdentificationDataIdentityType, IdentityType$1 as IdentityType, type index_d$1_ItemMetadata as ItemMetadata, type index_d$1_LegacyCreateBookingRequest as LegacyCreateBookingRequest, type index_d$1_LegacyCreateBookingResponse as LegacyCreateBookingResponse, type Location$1 as Location, index_d$1_LocationLocationType as LocationLocationType, LocationType$1 as LocationType, type index_d$1_MarkAsMultiServiceBookingRequest as MarkAsMultiServiceBookingRequest, type index_d$1_MarkAsMultiServiceBookingResponse as MarkAsMultiServiceBookingResponse, type index_d$1_MarkBookingAsPendingFlowControlSettings as MarkBookingAsPendingFlowControlSettings, type index_d$1_MarkBookingAsPendingRequest as MarkBookingAsPendingRequest, type index_d$1_MarkBookingAsPendingResponse as MarkBookingAsPendingResponse, type index_d$1_MarkMultiServiceBookingAsPendingRequest as MarkMultiServiceBookingAsPendingRequest, type index_d$1_MarkMultiServiceBookingAsPendingResponse as MarkMultiServiceBookingAsPendingResponse, type index_d$1_MaskedBooking as MaskedBooking, type index_d$1_MessageEnvelope as MessageEnvelope, type index_d$1_MigrationCheckIfClashesWithBlockedTimeRequest as MigrationCheckIfClashesWithBlockedTimeRequest, type index_d$1_MigrationCheckIfClashesWithBlockedTimeResponse as MigrationCheckIfClashesWithBlockedTimeResponse, type index_d$1_MsidAndBookingId as MsidAndBookingId, type index_d$1_MultiServiceBooking as MultiServiceBooking, type MultiServiceBookingInfo$1 as MultiServiceBookingInfo, type index_d$1_MultiServiceBookingMetadata as MultiServiceBookingMetadata, MultiServiceBookingType$1 as MultiServiceBookingType, type index_d$1_NumberOfParticipantsUpdated as NumberOfParticipantsUpdated, type index_d$1_NumberOfParticipantsUpdatedPreviousParticipantsInfoOneOf as NumberOfParticipantsUpdatedPreviousParticipantsInfoOneOf, type index_d$1_Paging as Paging, type index_d$1_PagingMetadataV2 as PagingMetadataV2, type ParticipantChoices$1 as ParticipantChoices, type ParticipantNotification$1 as ParticipantNotification, type index_d$1_PartySizeRequest as PartySizeRequest, type index_d$1_PartySizeRequestPartySizeForOneOf as PartySizeRequestPartySizeForOneOf, type index_d$1_PartySizeResponse as PartySizeResponse, PaymentStatus$1 as PaymentStatus, Platform$1 as Platform, type index_d$1_QueryBookingsRequest as QueryBookingsRequest, type index_d$1_QueryBookingsResponse as QueryBookingsResponse, type index_d$1_QueryV2 as QueryV2, type index_d$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d$1_RemoveBookingsFromMultiServiceBookingRequest as RemoveBookingsFromMultiServiceBookingRequest, type index_d$1_RemoveBookingsFromMultiServiceBookingResponse as RemoveBookingsFromMultiServiceBookingResponse, type index_d$1_RescheduleBookingFlowControlSettings as RescheduleBookingFlowControlSettings, type index_d$1_RescheduleBookingInfo as RescheduleBookingInfo, type index_d$1_RescheduleBookingInfoParticipantsInfoOneOf as RescheduleBookingInfoParticipantsInfoOneOf, type index_d$1_RescheduleBookingOptions as RescheduleBookingOptions, type index_d$1_RescheduleBookingRequest as RescheduleBookingRequest, type index_d$1_RescheduleBookingRequestFlowControlSettings as RescheduleBookingRequestFlowControlSettings, type index_d$1_RescheduleBookingRequestParticipantsInfoOneOf as RescheduleBookingRequestParticipantsInfoOneOf, type index_d$1_RescheduleBookingResponse as RescheduleBookingResponse, type index_d$1_RescheduleBookingResponseNonNullableFields as RescheduleBookingResponseNonNullableFields, type index_d$1_RescheduleMultiServiceBookingRequest as RescheduleMultiServiceBookingRequest, type index_d$1_RescheduleMultiServiceBookingResponse as RescheduleMultiServiceBookingResponse, type index_d$1_RestoreInfo as RestoreInfo, type index_d$1_ScheduleAvailability as ScheduleAvailability, SelectedPaymentOption$1 as SelectedPaymentOption, type ServiceChoice$1 as ServiceChoice, type ServiceChoiceChoiceOneOf$1 as ServiceChoiceChoiceOneOf, type ServiceChoices$1 as ServiceChoices, type index_d$1_SetBookingSessionIdRequest as SetBookingSessionIdRequest, type index_d$1_SetBookingSessionIdResponse as SetBookingSessionIdResponse, type index_d$1_Slot as Slot, type index_d$1_SlotAvailability as SlotAvailability, type index_d$1_SlotBookings as SlotBookings, type index_d$1_SlotLocation as SlotLocation, type index_d$1_SlotResource as SlotResource, type index_d$1_SlotSlotResource as SlotSlotResource, index_d$1_SortOrder as SortOrder, type index_d$1_Sorting as Sorting, type StreetAddress$1 as StreetAddress, type Subdivision$1 as Subdivision, type index_d$1_UpdateBookingRequest as UpdateBookingRequest, type index_d$1_UpdateBookingResponse as UpdateBookingResponse, type index_d$1_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type index_d$1_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$1_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$1_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type index_d$1_UpdateNumberOfParticipantsOptions as UpdateNumberOfParticipantsOptions, type index_d$1_UpdateNumberOfParticipantsRequest as UpdateNumberOfParticipantsRequest, type index_d$1_UpdateNumberOfParticipantsRequestParticipantsInfoOneOf as UpdateNumberOfParticipantsRequestParticipantsInfoOneOf, type index_d$1_UpdateNumberOfParticipantsResponse as UpdateNumberOfParticipantsResponse, type index_d$1_UpdateNumberOfParticipantsResponseNonNullableFields as UpdateNumberOfParticipantsResponseNonNullableFields, type index_d$1_V2CancelBookingRequest as V2CancelBookingRequest, type index_d$1_V2CancelBookingResponse as V2CancelBookingResponse, type index_d$1_V2ConfirmBookingRequest as V2ConfirmBookingRequest, type index_d$1_V2ConfirmBookingResponse as V2ConfirmBookingResponse, type index_d$1_V2CreateBookingRequest as V2CreateBookingRequest, type index_d$1_V2CreateBookingRequestBookableItemOneOf as V2CreateBookingRequestBookableItemOneOf, type index_d$1_V2CreateBookingRequestParticipantsInfoOneOf as V2CreateBookingRequestParticipantsInfoOneOf, type index_d$1_V2CreateBookingResponse as V2CreateBookingResponse, type index_d$1_V2DeclineBookingRequest as V2DeclineBookingRequest, type index_d$1_V2DeclineBookingResponse as V2DeclineBookingResponse, type index_d$1_V2RescheduleBookingRequest as V2RescheduleBookingRequest, type index_d$1_V2RescheduleBookingRequestParticipantsInfoOneOf as V2RescheduleBookingRequestParticipantsInfoOneOf, type index_d$1_V2RescheduleBookingResponse as V2RescheduleBookingResponse, type index_d$1_V2Slot as V2Slot, type index_d$1_V2UpdateNumberOfParticipantsRequest as V2UpdateNumberOfParticipantsRequest, type index_d$1_V2UpdateNumberOfParticipantsRequestParticipantsInfoOneOf as V2UpdateNumberOfParticipantsRequestParticipantsInfoOneOf, type index_d$1_V2UpdateNumberOfParticipantsResponse as V2UpdateNumberOfParticipantsResponse, ValueType$1 as ValueType, type index_d$1_WaitingList as WaitingList, index_d$1_WebhookIdentityType as WebhookIdentityType, type index_d$1_WebhooksIdentificationData as WebhooksIdentificationData, type index_d$1_WebhooksIdentificationDataIdOneOf as WebhooksIdentificationDataIdOneOf, type index_d$1__publicOnBookingCanceledType as _publicOnBookingCanceledType, type index_d$1__publicOnBookingConfirmedType as _publicOnBookingConfirmedType, type index_d$1__publicOnBookingCreatedType as _publicOnBookingCreatedType, type index_d$1__publicOnBookingDeclinedType as _publicOnBookingDeclinedType, type index_d$1__publicOnBookingNumberOfParticipantsUpdatedType as _publicOnBookingNumberOfParticipantsUpdatedType, type index_d$1__publicOnBookingRescheduledType as _publicOnBookingRescheduledType, type index_d$1__publicOnBookingUpdatedType as _publicOnBookingUpdatedType, index_d$1_bulkCreateBooking as bulkCreateBooking, index_d$1_cancelBooking as cancelBooking, index_d$1_confirmBooking as confirmBooking, index_d$1_confirmOrDeclineBooking as confirmOrDeclineBooking, index_d$1_createBooking as createBooking, index_d$1_declineBooking as declineBooking, index_d$1_onBookingCanceled as onBookingCanceled, index_d$1_onBookingConfirmed as onBookingConfirmed, index_d$1_onBookingCreated as onBookingCreated, index_d$1_onBookingDeclined as onBookingDeclined, index_d$1_onBookingNumberOfParticipantsUpdated as onBookingNumberOfParticipantsUpdated, index_d$1_onBookingRescheduled as onBookingRescheduled, index_d$1_onBookingUpdated as onBookingUpdated, onBookingCanceled$1 as publicOnBookingCanceled, onBookingConfirmed$1 as publicOnBookingConfirmed, onBookingCreated$1 as publicOnBookingCreated, onBookingDeclined$1 as publicOnBookingDeclined, onBookingNumberOfParticipantsUpdated$1 as publicOnBookingNumberOfParticipantsUpdated, onBookingRescheduled$1 as publicOnBookingRescheduled, onBookingUpdated$1 as publicOnBookingUpdated, index_d$1_rescheduleBooking as rescheduleBooking, index_d$1_updateExtendedFields as updateExtendedFields, index_d$1_updateNumberOfParticipants as updateNumberOfParticipants };
|
|
25316
|
+
export { type index_d$1_ActionEvent as ActionEvent, Actor$1 as Actor, type index_d$1_AddBookingsToMultiServiceBookingOptions as AddBookingsToMultiServiceBookingOptions, type index_d$1_AddBookingsToMultiServiceBookingRequest as AddBookingsToMultiServiceBookingRequest, type index_d$1_AddBookingsToMultiServiceBookingResponse as AddBookingsToMultiServiceBookingResponse, type index_d$1_AddBookingsToMultiServiceBookingResponseNonNullableFields as AddBookingsToMultiServiceBookingResponseNonNullableFields, type Address$1 as Address, type AddressLocation$1 as AddressLocation, type AddressStreetOneOf$1 as AddressStreetOneOf, type index_d$1_AllowedActions as AllowedActions, type index_d$1_ApplicationError as ApplicationError, type index_d$1_AvailableResources as AvailableResources, type index_d$1_BaseEventMetadata as BaseEventMetadata, type BookedEntity$1 as BookedEntity, type BookedEntityItemOneOf$1 as BookedEntityItemOneOf, type BookedResource$1 as BookedResource, type BookedSchedule$1 as BookedSchedule, type BookedSlot$1 as BookedSlot, type Booking$1 as Booking, type index_d$1_BookingCanceled as BookingCanceled, type index_d$1_BookingCanceledEnvelope as BookingCanceledEnvelope, type index_d$1_BookingChanged as BookingChanged, type index_d$1_BookingConfirmed as BookingConfirmed, type index_d$1_BookingConfirmedEnvelope as BookingConfirmedEnvelope, type index_d$1_BookingCreatedEnvelope as BookingCreatedEnvelope, type index_d$1_BookingDeclined as BookingDeclined, type index_d$1_BookingDeclinedEnvelope as BookingDeclinedEnvelope, type index_d$1_BookingDetails as BookingDetails, type index_d$1_BookingIdAndRevision as BookingIdAndRevision, type index_d$1_BookingInfo as BookingInfo, type index_d$1_BookingMarkedAsPending as BookingMarkedAsPending, type index_d$1_BookingNumberOfParticipantsUpdatedEnvelope as BookingNumberOfParticipantsUpdatedEnvelope, type BookingParticipantsInfoOneOf$1 as BookingParticipantsInfoOneOf, type index_d$1_BookingPolicySettings as BookingPolicySettings, type index_d$1_BookingPolicyViolations as BookingPolicyViolations, type index_d$1_BookingRescheduled as BookingRescheduled, type index_d$1_BookingRescheduledEnvelope as BookingRescheduledEnvelope, type index_d$1_BookingRescheduledPreviousParticipantsInfoOneOf as BookingRescheduledPreviousParticipantsInfoOneOf, type index_d$1_BookingResult as BookingResult, type BookingSource$1 as BookingSource, BookingStatus$1 as BookingStatus, type index_d$1_BookingUpdatedEnvelope as BookingUpdatedEnvelope, type index_d$1_BookingsGatewayCreateBookingOptions as BookingsGatewayCreateBookingOptions, type index_d$1_BookingsGatewayRescheduleBookingOptions as BookingsGatewayRescheduleBookingOptions, type index_d$1_BulkActionMetadata as BulkActionMetadata, type index_d$1_BulkBookingResult as BulkBookingResult, type index_d$1_BulkCalculateAllowedActionsRequest as BulkCalculateAllowedActionsRequest, type index_d$1_BulkCalculateAllowedActionsResponse as BulkCalculateAllowedActionsResponse, type index_d$1_BulkCalculateAllowedActionsResult as BulkCalculateAllowedActionsResult, type index_d$1_BulkConfirmOrDeclineBookingRequest as BulkConfirmOrDeclineBookingRequest, type index_d$1_BulkConfirmOrDeclineBookingRequestBookingDetails as BulkConfirmOrDeclineBookingRequestBookingDetails, type index_d$1_BulkConfirmOrDeclineBookingResponse as BulkConfirmOrDeclineBookingResponse, type index_d$1_BulkCreateBookingOptions as BulkCreateBookingOptions, type index_d$1_BulkCreateBookingRequest as BulkCreateBookingRequest, type index_d$1_BulkCreateBookingResponse as BulkCreateBookingResponse, type index_d$1_BulkCreateBookingResponseNonNullableFields as BulkCreateBookingResponseNonNullableFields, type index_d$1_BulkGetMultiServiceBookingAllowedActionsRequest as BulkGetMultiServiceBookingAllowedActionsRequest, type index_d$1_BulkGetMultiServiceBookingAllowedActionsResponse as BulkGetMultiServiceBookingAllowedActionsResponse, type index_d$1_BulkGetMultiServiceBookingAllowedActionsResponseNonNullableFields as BulkGetMultiServiceBookingAllowedActionsResponseNonNullableFields, type index_d$1_BulkRescheduleBookingRequest as BulkRescheduleBookingRequest, type index_d$1_BulkRescheduleBookingRequestBooking as BulkRescheduleBookingRequestBooking, type index_d$1_BulkRescheduleBookingResponse as BulkRescheduleBookingResponse, type index_d$1_BulkUpdateBookedScheduleRequest as BulkUpdateBookedScheduleRequest, type index_d$1_BulkUpdateBookedScheduleResponse as BulkUpdateBookedScheduleResponse, type index_d$1_BulkUpdateBookingRequest as BulkUpdateBookingRequest, type index_d$1_BulkUpdateBookingResponse as BulkUpdateBookingResponse, type index_d$1_CalculateAllowedActionsRequest as CalculateAllowedActionsRequest, type index_d$1_CalculateAllowedActionsResponse as CalculateAllowedActionsResponse, type index_d$1_CancelBookingFlowControlSettings as CancelBookingFlowControlSettings, type index_d$1_CancelBookingOptions as CancelBookingOptions, type index_d$1_CancelBookingRequest as CancelBookingRequest, type index_d$1_CancelBookingRequestFlowControlSettings as CancelBookingRequestFlowControlSettings, type index_d$1_CancelBookingResponse as CancelBookingResponse, type index_d$1_CancelBookingResponseNonNullableFields as CancelBookingResponseNonNullableFields, type index_d$1_CancelMultiServiceBookingOptions as CancelMultiServiceBookingOptions, type index_d$1_CancelMultiServiceBookingRequest as CancelMultiServiceBookingRequest, type index_d$1_CancelMultiServiceBookingResponse as CancelMultiServiceBookingResponse, type index_d$1_CancelMultiServiceBookingResponseNonNullableFields as CancelMultiServiceBookingResponseNonNullableFields, type index_d$1_Clash as Clash, type index_d$1_CommonIdentificationData as CommonIdentificationData, type index_d$1_CommonIdentificationDataIdOneOf as CommonIdentificationDataIdOneOf, type index_d$1_ConfirmBookingFlowControlSettings as ConfirmBookingFlowControlSettings, type index_d$1_ConfirmBookingOptions as ConfirmBookingOptions, type index_d$1_ConfirmBookingRequest as ConfirmBookingRequest, type index_d$1_ConfirmBookingResponse as ConfirmBookingResponse, type index_d$1_ConfirmBookingResponseNonNullableFields as ConfirmBookingResponseNonNullableFields, type index_d$1_ConfirmMultiServiceBookingOptions as ConfirmMultiServiceBookingOptions, type index_d$1_ConfirmMultiServiceBookingRequest as ConfirmMultiServiceBookingRequest, type index_d$1_ConfirmMultiServiceBookingResponse as ConfirmMultiServiceBookingResponse, type index_d$1_ConfirmMultiServiceBookingResponseNonNullableFields as ConfirmMultiServiceBookingResponseNonNullableFields, type index_d$1_ConfirmOrDeclineBookingOptions as ConfirmOrDeclineBookingOptions, type index_d$1_ConfirmOrDeclineBookingRequest as ConfirmOrDeclineBookingRequest, type index_d$1_ConfirmOrDeclineBookingResponse as ConfirmOrDeclineBookingResponse, type index_d$1_ConfirmOrDeclineBookingResponseNonNullableFields as ConfirmOrDeclineBookingResponseNonNullableFields, type index_d$1_ConfirmRequest as ConfirmRequest, type index_d$1_ConfirmResponse as ConfirmResponse, type index_d$1_ConsistentQueryBookingsRequest as ConsistentQueryBookingsRequest, type index_d$1_ConsistentQueryBookingsResponse as ConsistentQueryBookingsResponse, type ContactDetails$1 as ContactDetails, type index_d$1_CreateBookingFlowControlSettings as CreateBookingFlowControlSettings, type index_d$1_CreateBookingInfo as CreateBookingInfo, type index_d$1_CreateBookingOptions as CreateBookingOptions, type index_d$1_CreateBookingRequest as CreateBookingRequest, type index_d$1_CreateBookingRequestFlowControlSettings as CreateBookingRequestFlowControlSettings, type index_d$1_CreateBookingResponse as CreateBookingResponse, type index_d$1_CreateBookingResponseNonNullableFields as CreateBookingResponseNonNullableFields, type index_d$1_CreateMultiServiceBookingOptions as CreateMultiServiceBookingOptions, type index_d$1_CreateMultiServiceBookingRequest as CreateMultiServiceBookingRequest, type index_d$1_CreateMultiServiceBookingResponse as CreateMultiServiceBookingResponse, type index_d$1_CreateMultiServiceBookingResponseNonNullableFields as CreateMultiServiceBookingResponseNonNullableFields, type index_d$1_CursorPaging as CursorPaging, type index_d$1_Cursors as Cursors, type CustomFormField$1 as CustomFormField, type index_d$1_DeclineBookingFlowControlSettings as DeclineBookingFlowControlSettings, type index_d$1_DeclineBookingOptions as DeclineBookingOptions, type index_d$1_DeclineBookingRequest as DeclineBookingRequest, type index_d$1_DeclineBookingResponse as DeclineBookingResponse, type index_d$1_DeclineBookingResponseNonNullableFields as DeclineBookingResponseNonNullableFields, type index_d$1_DeclineMultiServiceBookingOptions as DeclineMultiServiceBookingOptions, type index_d$1_DeclineMultiServiceBookingRequest as DeclineMultiServiceBookingRequest, type index_d$1_DeclineMultiServiceBookingResponse as DeclineMultiServiceBookingResponse, type index_d$1_DeclineMultiServiceBookingResponseNonNullableFields as DeclineMultiServiceBookingResponseNonNullableFields, type index_d$1_DomainEvent as DomainEvent, type index_d$1_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d$1_EntityCreatedEvent as EntityCreatedEvent, type index_d$1_EntityDeletedEvent as EntityDeletedEvent, type index_d$1_EntityUpdatedEvent as EntityUpdatedEvent, type index_d$1_EventMetadata as EventMetadata, type ExtendedFields$1 as ExtendedFields, type FlowControlSettings$1 as FlowControlSettings, type index_d$1_GetMultiServiceBookingAvailabilityRequest as GetMultiServiceBookingAvailabilityRequest, type index_d$1_GetMultiServiceBookingAvailabilityResponse as GetMultiServiceBookingAvailabilityResponse, type index_d$1_GetMultiServiceBookingAvailabilityResponseBookingInfo as GetMultiServiceBookingAvailabilityResponseBookingInfo, type index_d$1_GetMultiServiceBookingAvailabilityResponseNonNullableFields as GetMultiServiceBookingAvailabilityResponseNonNullableFields, type index_d$1_GetMultiServiceBookingRequest as GetMultiServiceBookingRequest, type index_d$1_GetMultiServiceBookingResponse as GetMultiServiceBookingResponse, type index_d$1_GetMultiServiceBookingResponseNonNullableFields as GetMultiServiceBookingResponseNonNullableFields, type index_d$1_GetScheduleAvailabilityRequest as GetScheduleAvailabilityRequest, type index_d$1_GetScheduleAvailabilityResponse as GetScheduleAvailabilityResponse, type index_d$1_GetSlotAvailabilityRequest as GetSlotAvailabilityRequest, type index_d$1_GetSlotAvailabilityResponse as GetSlotAvailabilityResponse, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, index_d$1_IdentificationDataIdentityType as IdentificationDataIdentityType, IdentityType$1 as IdentityType, type index_d$1_ItemMetadata as ItemMetadata, type index_d$1_LegacyCreateBookingRequest as LegacyCreateBookingRequest, type index_d$1_LegacyCreateBookingResponse as LegacyCreateBookingResponse, type Location$1 as Location, index_d$1_LocationLocationType as LocationLocationType, LocationType$1 as LocationType, type index_d$1_MarkAsMultiServiceBookingOptions as MarkAsMultiServiceBookingOptions, type index_d$1_MarkAsMultiServiceBookingRequest as MarkAsMultiServiceBookingRequest, type index_d$1_MarkAsMultiServiceBookingResponse as MarkAsMultiServiceBookingResponse, type index_d$1_MarkBookingAsPendingFlowControlSettings as MarkBookingAsPendingFlowControlSettings, type index_d$1_MarkBookingAsPendingRequest as MarkBookingAsPendingRequest, type index_d$1_MarkBookingAsPendingResponse as MarkBookingAsPendingResponse, type index_d$1_MarkMultiServiceBookingAsPendingOptions as MarkMultiServiceBookingAsPendingOptions, type index_d$1_MarkMultiServiceBookingAsPendingRequest as MarkMultiServiceBookingAsPendingRequest, type index_d$1_MarkMultiServiceBookingAsPendingResponse as MarkMultiServiceBookingAsPendingResponse, type index_d$1_MarkMultiServiceBookingAsPendingResponseNonNullableFields as MarkMultiServiceBookingAsPendingResponseNonNullableFields, type index_d$1_MaskedBooking as MaskedBooking, type index_d$1_MessageEnvelope as MessageEnvelope, type index_d$1_MigrationCheckIfClashesWithBlockedTimeRequest as MigrationCheckIfClashesWithBlockedTimeRequest, type index_d$1_MigrationCheckIfClashesWithBlockedTimeResponse as MigrationCheckIfClashesWithBlockedTimeResponse, type index_d$1_MsidAndBookingId as MsidAndBookingId, type index_d$1_MultiServiceBooking as MultiServiceBooking, type MultiServiceBookingInfo$1 as MultiServiceBookingInfo, type index_d$1_MultiServiceBookingMetadata as MultiServiceBookingMetadata, type index_d$1_MultiServiceBookingNonNullableFields as MultiServiceBookingNonNullableFields, MultiServiceBookingType$1 as MultiServiceBookingType, type index_d$1_NumberOfParticipantsUpdated as NumberOfParticipantsUpdated, type index_d$1_NumberOfParticipantsUpdatedPreviousParticipantsInfoOneOf as NumberOfParticipantsUpdatedPreviousParticipantsInfoOneOf, type index_d$1_Paging as Paging, type index_d$1_PagingMetadataV2 as PagingMetadataV2, type ParticipantChoices$1 as ParticipantChoices, type ParticipantNotification$1 as ParticipantNotification, type index_d$1_PartySizeRequest as PartySizeRequest, type index_d$1_PartySizeRequestPartySizeForOneOf as PartySizeRequestPartySizeForOneOf, type index_d$1_PartySizeResponse as PartySizeResponse, PaymentStatus$1 as PaymentStatus, Platform$1 as Platform, type index_d$1_QueryBookingsRequest as QueryBookingsRequest, type index_d$1_QueryBookingsResponse as QueryBookingsResponse, type index_d$1_QueryV2 as QueryV2, type index_d$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d$1_RemoveBookingsFromMultiServiceBookingOptions as RemoveBookingsFromMultiServiceBookingOptions, type index_d$1_RemoveBookingsFromMultiServiceBookingRequest as RemoveBookingsFromMultiServiceBookingRequest, type index_d$1_RemoveBookingsFromMultiServiceBookingResponse as RemoveBookingsFromMultiServiceBookingResponse, type index_d$1_RemoveBookingsFromMultiServiceBookingResponseNonNullableFields as RemoveBookingsFromMultiServiceBookingResponseNonNullableFields, type index_d$1_RescheduleBookingFlowControlSettings as RescheduleBookingFlowControlSettings, type index_d$1_RescheduleBookingInfo as RescheduleBookingInfo, type index_d$1_RescheduleBookingInfoParticipantsInfoOneOf as RescheduleBookingInfoParticipantsInfoOneOf, type index_d$1_RescheduleBookingOptions as RescheduleBookingOptions, type index_d$1_RescheduleBookingRequest as RescheduleBookingRequest, type index_d$1_RescheduleBookingRequestFlowControlSettings as RescheduleBookingRequestFlowControlSettings, type index_d$1_RescheduleBookingRequestParticipantsInfoOneOf as RescheduleBookingRequestParticipantsInfoOneOf, type index_d$1_RescheduleBookingResponse as RescheduleBookingResponse, type index_d$1_RescheduleBookingResponseNonNullableFields as RescheduleBookingResponseNonNullableFields, type index_d$1_RescheduleMultiServiceBookingOptions as RescheduleMultiServiceBookingOptions, type index_d$1_RescheduleMultiServiceBookingRequest as RescheduleMultiServiceBookingRequest, type index_d$1_RescheduleMultiServiceBookingResponse as RescheduleMultiServiceBookingResponse, type index_d$1_RescheduleMultiServiceBookingResponseNonNullableFields as RescheduleMultiServiceBookingResponseNonNullableFields, type index_d$1_RestoreInfo as RestoreInfo, type index_d$1_ScheduleAvailability as ScheduleAvailability, SelectedPaymentOption$1 as SelectedPaymentOption, type ServiceChoice$1 as ServiceChoice, type ServiceChoiceChoiceOneOf$1 as ServiceChoiceChoiceOneOf, type ServiceChoices$1 as ServiceChoices, type index_d$1_SetBookingSessionIdRequest as SetBookingSessionIdRequest, type index_d$1_SetBookingSessionIdResponse as SetBookingSessionIdResponse, type index_d$1_Slot as Slot, type index_d$1_SlotAvailability as SlotAvailability, type index_d$1_SlotBookings as SlotBookings, type index_d$1_SlotLocation as SlotLocation, type index_d$1_SlotResource as SlotResource, type index_d$1_SlotSlotResource as SlotSlotResource, index_d$1_SortOrder as SortOrder, type index_d$1_Sorting as Sorting, type StreetAddress$1 as StreetAddress, type Subdivision$1 as Subdivision, type index_d$1_UpdateBookingRequest as UpdateBookingRequest, type index_d$1_UpdateBookingResponse as UpdateBookingResponse, type index_d$1_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type index_d$1_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type index_d$1_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type index_d$1_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type index_d$1_UpdateNumberOfParticipantsOptions as UpdateNumberOfParticipantsOptions, type index_d$1_UpdateNumberOfParticipantsRequest as UpdateNumberOfParticipantsRequest, type index_d$1_UpdateNumberOfParticipantsRequestParticipantsInfoOneOf as UpdateNumberOfParticipantsRequestParticipantsInfoOneOf, type index_d$1_UpdateNumberOfParticipantsResponse as UpdateNumberOfParticipantsResponse, type index_d$1_UpdateNumberOfParticipantsResponseNonNullableFields as UpdateNumberOfParticipantsResponseNonNullableFields, type index_d$1_V2CancelBookingRequest as V2CancelBookingRequest, type index_d$1_V2CancelBookingResponse as V2CancelBookingResponse, type index_d$1_V2ConfirmBookingRequest as V2ConfirmBookingRequest, type index_d$1_V2ConfirmBookingResponse as V2ConfirmBookingResponse, type index_d$1_V2CreateBookingRequest as V2CreateBookingRequest, type index_d$1_V2CreateBookingRequestBookableItemOneOf as V2CreateBookingRequestBookableItemOneOf, type index_d$1_V2CreateBookingRequestParticipantsInfoOneOf as V2CreateBookingRequestParticipantsInfoOneOf, type index_d$1_V2CreateBookingResponse as V2CreateBookingResponse, type index_d$1_V2CreateBookingResponseNonNullableFields as V2CreateBookingResponseNonNullableFields, type index_d$1_V2DeclineBookingRequest as V2DeclineBookingRequest, type index_d$1_V2DeclineBookingResponse as V2DeclineBookingResponse, type index_d$1_V2RescheduleBookingRequest as V2RescheduleBookingRequest, type index_d$1_V2RescheduleBookingRequestParticipantsInfoOneOf as V2RescheduleBookingRequestParticipantsInfoOneOf, type index_d$1_V2RescheduleBookingResponse as V2RescheduleBookingResponse, type index_d$1_V2RescheduleBookingResponseNonNullableFields as V2RescheduleBookingResponseNonNullableFields, type index_d$1_V2Slot as V2Slot, type index_d$1_V2UpdateNumberOfParticipantsRequest as V2UpdateNumberOfParticipantsRequest, type index_d$1_V2UpdateNumberOfParticipantsRequestParticipantsInfoOneOf as V2UpdateNumberOfParticipantsRequestParticipantsInfoOneOf, type index_d$1_V2UpdateNumberOfParticipantsResponse as V2UpdateNumberOfParticipantsResponse, ValueType$1 as ValueType, type index_d$1_WaitingList as WaitingList, index_d$1_WebhookIdentityType as WebhookIdentityType, type index_d$1_WebhooksIdentificationData as WebhooksIdentificationData, type index_d$1_WebhooksIdentificationDataIdOneOf as WebhooksIdentificationDataIdOneOf, type index_d$1__publicOnBookingCanceledType as _publicOnBookingCanceledType, type index_d$1__publicOnBookingConfirmedType as _publicOnBookingConfirmedType, type index_d$1__publicOnBookingCreatedType as _publicOnBookingCreatedType, type index_d$1__publicOnBookingDeclinedType as _publicOnBookingDeclinedType, type index_d$1__publicOnBookingNumberOfParticipantsUpdatedType as _publicOnBookingNumberOfParticipantsUpdatedType, type index_d$1__publicOnBookingRescheduledType as _publicOnBookingRescheduledType, type index_d$1__publicOnBookingUpdatedType as _publicOnBookingUpdatedType, index_d$1_addBookingsToMultiServiceBooking as addBookingsToMultiServiceBooking, index_d$1_bookingsGatewayCreateBooking as bookingsGatewayCreateBooking, index_d$1_bookingsGatewayRescheduleBooking as bookingsGatewayRescheduleBooking, index_d$1_bulkCreateBooking as bulkCreateBooking, index_d$1_bulkGetMultiServiceBookingAllowedActions as bulkGetMultiServiceBookingAllowedActions, index_d$1_cancelBooking as cancelBooking, index_d$1_cancelMultiServiceBooking as cancelMultiServiceBooking, index_d$1_confirmBooking as confirmBooking, index_d$1_confirmMultiServiceBooking as confirmMultiServiceBooking, index_d$1_confirmOrDeclineBooking as confirmOrDeclineBooking, index_d$1_createBooking as createBooking, index_d$1_createMultiServiceBooking as createMultiServiceBooking, index_d$1_declineBooking as declineBooking, index_d$1_declineMultiServiceBooking as declineMultiServiceBooking, index_d$1_getMultiServiceBooking as getMultiServiceBooking, index_d$1_getMultiServiceBookingAvailability as getMultiServiceBookingAvailability, index_d$1_markAsMultiServiceBooking as markAsMultiServiceBooking, index_d$1_markMultiServiceBookingAsPending as markMultiServiceBookingAsPending, index_d$1_onBookingCanceled as onBookingCanceled, index_d$1_onBookingConfirmed as onBookingConfirmed, index_d$1_onBookingCreated as onBookingCreated, index_d$1_onBookingDeclined as onBookingDeclined, index_d$1_onBookingNumberOfParticipantsUpdated as onBookingNumberOfParticipantsUpdated, index_d$1_onBookingRescheduled as onBookingRescheduled, index_d$1_onBookingUpdated as onBookingUpdated, onBookingCanceled$1 as publicOnBookingCanceled, onBookingConfirmed$1 as publicOnBookingConfirmed, onBookingCreated$1 as publicOnBookingCreated, onBookingDeclined$1 as publicOnBookingDeclined, onBookingNumberOfParticipantsUpdated$1 as publicOnBookingNumberOfParticipantsUpdated, onBookingRescheduled$1 as publicOnBookingRescheduled, onBookingUpdated$1 as publicOnBookingUpdated, index_d$1_removeBookingsFromMultiServiceBooking as removeBookingsFromMultiServiceBooking, index_d$1_rescheduleBooking as rescheduleBooking, index_d$1_rescheduleMultiServiceBooking as rescheduleMultiServiceBooking, index_d$1_updateExtendedFields as updateExtendedFields, index_d$1_updateNumberOfParticipants as updateNumberOfParticipants };
|
|
24757
25317
|
}
|
|
24758
25318
|
|
|
24759
25319
|
interface PriceInfo extends PriceInfoTotalPriceOneOf {
|