@wix/bookings 1.0.449 → 1.0.451

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/bookings",
3
- "version": "1.0.449",
3
+ "version": "1.0.451",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -24,7 +24,7 @@
24
24
  "@wix/bookings_booking-fees": "1.0.1",
25
25
  "@wix/bookings_booking-policies": "1.0.3",
26
26
  "@wix/bookings_booking-policy-snapshots": "1.0.1",
27
- "@wix/bookings_bookings": "1.0.56",
27
+ "@wix/bookings_bookings": "1.0.57",
28
28
  "@wix/bookings_categories": "1.0.37",
29
29
  "@wix/bookings_extended-bookings": "1.0.47",
30
30
  "@wix/bookings_external-calendars": "1.0.34",
@@ -34,7 +34,7 @@
34
34
  "@wix/bookings_resources": "1.0.41",
35
35
  "@wix/bookings_service-options-and-variants": "1.0.46",
36
36
  "@wix/bookings_services": "1.0.70",
37
- "@wix/bookings_staff-members": "1.0.6"
37
+ "@wix/bookings_staff-members": "1.0.7"
38
38
  },
39
39
  "devDependencies": {
40
40
  "glob": "^10.4.1",
@@ -59,5 +59,5 @@
59
59
  "fqdn": ""
60
60
  }
61
61
  },
62
- "falconPackageHash": "d86eec83e1674d4e27377f7dcc56dda1fcd6b8422a54d864587d462a"
62
+ "falconPackageHash": "92734cf41775811d192edc0d12fce14987cb25ee2ea9c967eb60c7d4"
63
63
  }
@@ -18214,7 +18214,10 @@ interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
18214
18214
  version?: string;
18215
18215
  /** A timestamp of the event. */
18216
18216
  timestamp?: string;
18217
- /** A list of "assets" (applications). The same as MetaSiteContext. */
18217
+ /**
18218
+ * TODO(meta-site): Change validation once validations are disabled for consumers
18219
+ * More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
18220
+ */
18218
18221
  assets?: Asset[];
18219
18222
  }
18220
18223
  /** @oneof */
@@ -23738,15 +23741,15 @@ interface V2CancelBookingResponse {
23738
23741
  }
23739
23742
  interface V2RescheduleBookingRequest extends V2RescheduleBookingRequestParticipantsInfoOneOf {
23740
23743
  /** Id of the booking to reschedule. */
23741
- bookingId: string;
23744
+ bookingId?: string;
23742
23745
  /** Information about the new slot. */
23743
- slot: Slot;
23746
+ slot?: Slot;
23744
23747
  /**
23745
23748
  * Revision number, which increments by 1 each time the booking is updated.
23746
23749
  * To prevent conflicting changes, the current revision must be passed when
23747
23750
  * managing the booking.
23748
23751
  */
23749
- revision: string | null;
23752
+ revision?: string | null;
23750
23753
  /**
23751
23754
  * Information about whether to notify the customer about the rescheduling and
23752
23755
  * the message to send.
@@ -24029,12 +24032,6 @@ interface UpdateNumberOfParticipantsResponseNonNullableFields {
24029
24032
  interface ConfirmOrDeclineBookingResponseNonNullableFields {
24030
24033
  booking?: BookingNonNullableFields;
24031
24034
  }
24032
- interface V2CreateBookingResponseNonNullableFields {
24033
- booking?: BookingNonNullableFields;
24034
- }
24035
- interface V2RescheduleBookingResponseNonNullableFields {
24036
- booking?: BookingNonNullableFields;
24037
- }
24038
24035
  interface BaseEventMetadata {
24039
24036
  /** App instance ID. */
24040
24037
  instanceId?: string | null;
@@ -24402,113 +24399,6 @@ interface ConfirmOrDeclineBookingOptions {
24402
24399
  */
24403
24400
  paymentStatus?: PaymentStatus$1;
24404
24401
  }
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
- }
24512
24402
 
24513
24403
  declare function createMultiServiceBooking$1(httpClient: HttpClient): CreateMultiServiceBookingSignature;
24514
24404
  interface CreateMultiServiceBookingSignature {
@@ -24867,99 +24757,6 @@ interface ConfirmOrDeclineBookingSignature {
24867
24757
  */
24868
24758
  (bookingId: string, options?: ConfirmOrDeclineBookingOptions | undefined): Promise<ConfirmOrDeclineBookingResponse & ConfirmOrDeclineBookingResponseNonNullableFields>;
24869
24759
  }
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
- * @deprecated
24918
- */
24919
- (options?: BookingsGatewayCreateBookingOptions | undefined): Promise<V2CreateBookingResponse & V2CreateBookingResponseNonNullableFields>;
24920
- }
24921
- declare function bookingsGatewayRescheduleBooking$1(httpClient: HttpClient): BookingsGatewayRescheduleBookingSignature;
24922
- interface BookingsGatewayRescheduleBookingSignature {
24923
- /**
24924
- * Reschedules a booking to a different slot or session.
24925
- *
24926
- *
24927
- * You can only reschedule bookings for appointments or classes, you can't
24928
- * reschedule course bookings.
24929
- *
24930
- * The old session is removed from the calendar and the new session is
24931
- * added.
24932
- *
24933
- * If you reschedule a booking for a class session the new session must be an
24934
- * existing session for the same class.
24935
- *
24936
- * You can pass a `participantNotification.message` to notify the customer of
24937
- * the rescheduling. You also need to pass `participantNotification.notifyParticipants`
24938
- * as `true` to actually send the message.
24939
- *
24940
- * In case the service has
24941
- * [variants](https://dev.wix.com/api/rest/wix-bookings/service-options-and-variants/introduction),
24942
- * you can call this endpoint to update the booking's `totalParticipants` or `participantsChoices`. If you
24943
- * provide `participantsChoices`, all of the provided choices must exist for
24944
- * the service. Otherwise the call returns an `INVALID_SERVICE_CHOICES` error.
24945
- * If you omit `participantsChoices` in the request, the existing choices are
24946
- * kept and not replaced with an empty object.
24947
- *
24948
- * <!-- INTERNAL PERMISSION COMMENT:
24949
- * You need to have the `BOOKINGS.NUMBER_OF_PARTICIPANTS_UPDATE` permission
24950
- * to reschedule bookings including `participantsInfo`.
24951
- * <!--END: INTERNAL PERMISSION COMMENT-->
24952
- *
24953
- * In case you want to reschedule a booking on behalf of a customer, we recommend
24954
- * to pass `flowControlSettings.ignoreReschedulePolicy` as `false`. This
24955
- * ensures that the rescheduling is validated against the service's rescheduling
24956
- * policy.
24957
- * @param - Id of the booking to reschedule.
24958
- * @param - Information about the new slot.
24959
- * @deprecated
24960
- */
24961
- (bookingId: string, slot: Slot, options?: BookingsGatewayRescheduleBookingOptions | undefined): Promise<V2RescheduleBookingResponse & V2RescheduleBookingResponseNonNullableFields>;
24962
- }
24963
24760
  declare const onBookingCreated$1: EventDefinition$8<BookingCreatedEnvelope, "wix.bookings.v2.booking_created">;
24964
24761
  declare const onBookingRescheduled$1: EventDefinition$8<BookingRescheduledEnvelope, "wix.bookings.v2.booking_rescheduled">;
24965
24762
  declare const onBookingCanceled$1: EventDefinition$8<BookingCanceledEnvelope, "wix.bookings.v2.booking_canceled">;
@@ -25009,8 +24806,6 @@ declare const declineBooking: MaybeContext<BuildRESTFunction<typeof declineBooki
25009
24806
  declare const cancelBooking: MaybeContext<BuildRESTFunction<typeof cancelBooking$1> & typeof cancelBooking$1>;
25010
24807
  declare const updateNumberOfParticipants: MaybeContext<BuildRESTFunction<typeof updateNumberOfParticipants$1> & typeof updateNumberOfParticipants$1>;
25011
24808
  declare const confirmOrDeclineBooking: MaybeContext<BuildRESTFunction<typeof confirmOrDeclineBooking$1> & typeof confirmOrDeclineBooking$1>;
25012
- declare const bookingsGatewayCreateBooking: MaybeContext<BuildRESTFunction<typeof bookingsGatewayCreateBooking$1> & typeof bookingsGatewayCreateBooking$1>;
25013
- declare const bookingsGatewayRescheduleBooking: MaybeContext<BuildRESTFunction<typeof bookingsGatewayRescheduleBooking$1> & typeof bookingsGatewayRescheduleBooking$1>;
25014
24809
 
25015
24810
  type _publicOnBookingCreatedType = typeof onBookingCreated$1;
25016
24811
  /**
@@ -25081,8 +24876,6 @@ type context$1_BookingRescheduledEnvelope = BookingRescheduledEnvelope;
25081
24876
  type context$1_BookingRescheduledPreviousParticipantsInfoOneOf = BookingRescheduledPreviousParticipantsInfoOneOf;
25082
24877
  type context$1_BookingResult = BookingResult;
25083
24878
  type context$1_BookingUpdatedEnvelope = BookingUpdatedEnvelope;
25084
- type context$1_BookingsGatewayCreateBookingOptions = BookingsGatewayCreateBookingOptions;
25085
- type context$1_BookingsGatewayRescheduleBookingOptions = BookingsGatewayRescheduleBookingOptions;
25086
24879
  type context$1_BulkActionMetadata = BulkActionMetadata;
25087
24880
  type context$1_BulkBookingResult = BulkBookingResult;
25088
24881
  type context$1_BulkCalculateAllowedActionsRequest = BulkCalculateAllowedActionsRequest;
@@ -25261,13 +25054,11 @@ type context$1_V2CreateBookingRequest = V2CreateBookingRequest;
25261
25054
  type context$1_V2CreateBookingRequestBookableItemOneOf = V2CreateBookingRequestBookableItemOneOf;
25262
25055
  type context$1_V2CreateBookingRequestParticipantsInfoOneOf = V2CreateBookingRequestParticipantsInfoOneOf;
25263
25056
  type context$1_V2CreateBookingResponse = V2CreateBookingResponse;
25264
- type context$1_V2CreateBookingResponseNonNullableFields = V2CreateBookingResponseNonNullableFields;
25265
25057
  type context$1_V2DeclineBookingRequest = V2DeclineBookingRequest;
25266
25058
  type context$1_V2DeclineBookingResponse = V2DeclineBookingResponse;
25267
25059
  type context$1_V2RescheduleBookingRequest = V2RescheduleBookingRequest;
25268
25060
  type context$1_V2RescheduleBookingRequestParticipantsInfoOneOf = V2RescheduleBookingRequestParticipantsInfoOneOf;
25269
25061
  type context$1_V2RescheduleBookingResponse = V2RescheduleBookingResponse;
25270
- type context$1_V2RescheduleBookingResponseNonNullableFields = V2RescheduleBookingResponseNonNullableFields;
25271
25062
  type context$1_V2Slot = V2Slot;
25272
25063
  type context$1_V2UpdateNumberOfParticipantsRequest = V2UpdateNumberOfParticipantsRequest;
25273
25064
  type context$1_V2UpdateNumberOfParticipantsRequestParticipantsInfoOneOf = V2UpdateNumberOfParticipantsRequestParticipantsInfoOneOf;
@@ -25285,8 +25076,6 @@ type context$1__publicOnBookingNumberOfParticipantsUpdatedType = _publicOnBookin
25285
25076
  type context$1__publicOnBookingRescheduledType = _publicOnBookingRescheduledType;
25286
25077
  type context$1__publicOnBookingUpdatedType = _publicOnBookingUpdatedType;
25287
25078
  declare const context$1_addBookingsToMultiServiceBooking: typeof addBookingsToMultiServiceBooking;
25288
- declare const context$1_bookingsGatewayCreateBooking: typeof bookingsGatewayCreateBooking;
25289
- declare const context$1_bookingsGatewayRescheduleBooking: typeof bookingsGatewayRescheduleBooking;
25290
25079
  declare const context$1_bulkCreateBooking: typeof bulkCreateBooking;
25291
25080
  declare const context$1_bulkGetMultiServiceBookingAllowedActions: typeof bulkGetMultiServiceBookingAllowedActions;
25292
25081
  declare const context$1_cancelBooking: typeof cancelBooking;
@@ -25315,7 +25104,7 @@ declare const context$1_rescheduleMultiServiceBooking: typeof rescheduleMultiSer
25315
25104
  declare const context$1_updateExtendedFields: typeof updateExtendedFields;
25316
25105
  declare const context$1_updateNumberOfParticipants: typeof updateNumberOfParticipants;
25317
25106
  declare namespace context$1 {
25318
- export { type context$1_ActionEvent as ActionEvent, Actor$1 as Actor, type context$1_AddBookingsToMultiServiceBookingOptions as AddBookingsToMultiServiceBookingOptions, type context$1_AddBookingsToMultiServiceBookingRequest as AddBookingsToMultiServiceBookingRequest, type context$1_AddBookingsToMultiServiceBookingResponse as AddBookingsToMultiServiceBookingResponse, type context$1_AddBookingsToMultiServiceBookingResponseNonNullableFields as AddBookingsToMultiServiceBookingResponseNonNullableFields, type Address$1 as Address, type AddressLocation$1 as AddressLocation, type AddressStreetOneOf$1 as AddressStreetOneOf, type context$1_AllowedActions as AllowedActions, type context$1_ApplicationError as ApplicationError, type context$1_AvailableResources as AvailableResources, type context$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 context$1_BookingCanceled as BookingCanceled, type context$1_BookingCanceledEnvelope as BookingCanceledEnvelope, type context$1_BookingChanged as BookingChanged, type context$1_BookingConfirmed as BookingConfirmed, type context$1_BookingConfirmedEnvelope as BookingConfirmedEnvelope, type context$1_BookingCreatedEnvelope as BookingCreatedEnvelope, type context$1_BookingDeclined as BookingDeclined, type context$1_BookingDeclinedEnvelope as BookingDeclinedEnvelope, type context$1_BookingDetails as BookingDetails, type context$1_BookingIdAndRevision as BookingIdAndRevision, type context$1_BookingInfo as BookingInfo, type context$1_BookingMarkedAsPending as BookingMarkedAsPending, type context$1_BookingNumberOfParticipantsUpdatedEnvelope as BookingNumberOfParticipantsUpdatedEnvelope, type BookingParticipantsInfoOneOf$1 as BookingParticipantsInfoOneOf, type context$1_BookingPolicySettings as BookingPolicySettings, type context$1_BookingPolicyViolations as BookingPolicyViolations, type context$1_BookingRescheduled as BookingRescheduled, type context$1_BookingRescheduledEnvelope as BookingRescheduledEnvelope, type context$1_BookingRescheduledPreviousParticipantsInfoOneOf as BookingRescheduledPreviousParticipantsInfoOneOf, type context$1_BookingResult as BookingResult, type BookingSource$1 as BookingSource, BookingStatus$1 as BookingStatus, type context$1_BookingUpdatedEnvelope as BookingUpdatedEnvelope, type context$1_BookingsGatewayCreateBookingOptions as BookingsGatewayCreateBookingOptions, type context$1_BookingsGatewayRescheduleBookingOptions as BookingsGatewayRescheduleBookingOptions, type context$1_BulkActionMetadata as BulkActionMetadata, type context$1_BulkBookingResult as BulkBookingResult, type context$1_BulkCalculateAllowedActionsRequest as BulkCalculateAllowedActionsRequest, type context$1_BulkCalculateAllowedActionsResponse as BulkCalculateAllowedActionsResponse, type context$1_BulkCalculateAllowedActionsResult as BulkCalculateAllowedActionsResult, type context$1_BulkConfirmOrDeclineBookingRequest as BulkConfirmOrDeclineBookingRequest, type context$1_BulkConfirmOrDeclineBookingRequestBookingDetails as BulkConfirmOrDeclineBookingRequestBookingDetails, type context$1_BulkConfirmOrDeclineBookingResponse as BulkConfirmOrDeclineBookingResponse, type context$1_BulkCreateBookingOptions as BulkCreateBookingOptions, type context$1_BulkCreateBookingRequest as BulkCreateBookingRequest, type context$1_BulkCreateBookingResponse as BulkCreateBookingResponse, type context$1_BulkCreateBookingResponseNonNullableFields as BulkCreateBookingResponseNonNullableFields, type context$1_BulkGetMultiServiceBookingAllowedActionsRequest as BulkGetMultiServiceBookingAllowedActionsRequest, type context$1_BulkGetMultiServiceBookingAllowedActionsResponse as BulkGetMultiServiceBookingAllowedActionsResponse, type context$1_BulkGetMultiServiceBookingAllowedActionsResponseNonNullableFields as BulkGetMultiServiceBookingAllowedActionsResponseNonNullableFields, type context$1_BulkRescheduleBookingRequest as BulkRescheduleBookingRequest, type context$1_BulkRescheduleBookingRequestBooking as BulkRescheduleBookingRequestBooking, type context$1_BulkRescheduleBookingResponse as BulkRescheduleBookingResponse, type context$1_BulkUpdateBookedScheduleRequest as BulkUpdateBookedScheduleRequest, type context$1_BulkUpdateBookedScheduleResponse as BulkUpdateBookedScheduleResponse, type context$1_BulkUpdateBookingRequest as BulkUpdateBookingRequest, type context$1_BulkUpdateBookingResponse as BulkUpdateBookingResponse, type context$1_CalculateAllowedActionsRequest as CalculateAllowedActionsRequest, type context$1_CalculateAllowedActionsResponse as CalculateAllowedActionsResponse, type context$1_CancelBookingFlowControlSettings as CancelBookingFlowControlSettings, type context$1_CancelBookingOptions as CancelBookingOptions, type context$1_CancelBookingRequest as CancelBookingRequest, type context$1_CancelBookingRequestFlowControlSettings as CancelBookingRequestFlowControlSettings, type context$1_CancelBookingResponse as CancelBookingResponse, type context$1_CancelBookingResponseNonNullableFields as CancelBookingResponseNonNullableFields, type context$1_CancelMultiServiceBookingOptions as CancelMultiServiceBookingOptions, type context$1_CancelMultiServiceBookingRequest as CancelMultiServiceBookingRequest, type context$1_CancelMultiServiceBookingResponse as CancelMultiServiceBookingResponse, type context$1_CancelMultiServiceBookingResponseNonNullableFields as CancelMultiServiceBookingResponseNonNullableFields, type context$1_Clash as Clash, type context$1_CommonIdentificationData as CommonIdentificationData, type context$1_CommonIdentificationDataIdOneOf as CommonIdentificationDataIdOneOf, type context$1_ConfirmBookingFlowControlSettings as ConfirmBookingFlowControlSettings, type context$1_ConfirmBookingOptions as ConfirmBookingOptions, type context$1_ConfirmBookingRequest as ConfirmBookingRequest, type context$1_ConfirmBookingResponse as ConfirmBookingResponse, type context$1_ConfirmBookingResponseNonNullableFields as ConfirmBookingResponseNonNullableFields, type context$1_ConfirmMultiServiceBookingOptions as ConfirmMultiServiceBookingOptions, type context$1_ConfirmMultiServiceBookingRequest as ConfirmMultiServiceBookingRequest, type context$1_ConfirmMultiServiceBookingResponse as ConfirmMultiServiceBookingResponse, type context$1_ConfirmMultiServiceBookingResponseNonNullableFields as ConfirmMultiServiceBookingResponseNonNullableFields, type context$1_ConfirmOrDeclineBookingOptions as ConfirmOrDeclineBookingOptions, type context$1_ConfirmOrDeclineBookingRequest as ConfirmOrDeclineBookingRequest, type context$1_ConfirmOrDeclineBookingResponse as ConfirmOrDeclineBookingResponse, type context$1_ConfirmOrDeclineBookingResponseNonNullableFields as ConfirmOrDeclineBookingResponseNonNullableFields, type context$1_ConfirmRequest as ConfirmRequest, type context$1_ConfirmResponse as ConfirmResponse, type context$1_ConsistentQueryBookingsRequest as ConsistentQueryBookingsRequest, type context$1_ConsistentQueryBookingsResponse as ConsistentQueryBookingsResponse, type ContactDetails$1 as ContactDetails, type context$1_CreateBookingFlowControlSettings as CreateBookingFlowControlSettings, type context$1_CreateBookingInfo as CreateBookingInfo, type context$1_CreateBookingOptions as CreateBookingOptions, type context$1_CreateBookingRequest as CreateBookingRequest, type context$1_CreateBookingRequestFlowControlSettings as CreateBookingRequestFlowControlSettings, type context$1_CreateBookingResponse as CreateBookingResponse, type context$1_CreateBookingResponseNonNullableFields as CreateBookingResponseNonNullableFields, type context$1_CreateMultiServiceBookingOptions as CreateMultiServiceBookingOptions, type context$1_CreateMultiServiceBookingRequest as CreateMultiServiceBookingRequest, type context$1_CreateMultiServiceBookingResponse as CreateMultiServiceBookingResponse, type context$1_CreateMultiServiceBookingResponseNonNullableFields as CreateMultiServiceBookingResponseNonNullableFields, type context$1_CursorPaging as CursorPaging, type context$1_Cursors as Cursors, type CustomFormField$1 as CustomFormField, type context$1_DeclineBookingFlowControlSettings as DeclineBookingFlowControlSettings, type context$1_DeclineBookingOptions as DeclineBookingOptions, type context$1_DeclineBookingRequest as DeclineBookingRequest, type context$1_DeclineBookingResponse as DeclineBookingResponse, type context$1_DeclineBookingResponseNonNullableFields as DeclineBookingResponseNonNullableFields, type context$1_DeclineMultiServiceBookingOptions as DeclineMultiServiceBookingOptions, type context$1_DeclineMultiServiceBookingRequest as DeclineMultiServiceBookingRequest, type context$1_DeclineMultiServiceBookingResponse as DeclineMultiServiceBookingResponse, type context$1_DeclineMultiServiceBookingResponseNonNullableFields as DeclineMultiServiceBookingResponseNonNullableFields, type context$1_DomainEvent as DomainEvent, type context$1_DomainEventBodyOneOf as DomainEventBodyOneOf, type context$1_EntityCreatedEvent as EntityCreatedEvent, type context$1_EntityDeletedEvent as EntityDeletedEvent, type context$1_EntityUpdatedEvent as EntityUpdatedEvent, type context$1_EventMetadata as EventMetadata, type ExtendedFields$1 as ExtendedFields, type FlowControlSettings$1 as FlowControlSettings, type context$1_GetMultiServiceBookingAvailabilityRequest as GetMultiServiceBookingAvailabilityRequest, type context$1_GetMultiServiceBookingAvailabilityResponse as GetMultiServiceBookingAvailabilityResponse, type context$1_GetMultiServiceBookingAvailabilityResponseBookingInfo as GetMultiServiceBookingAvailabilityResponseBookingInfo, type context$1_GetMultiServiceBookingAvailabilityResponseNonNullableFields as GetMultiServiceBookingAvailabilityResponseNonNullableFields, type context$1_GetMultiServiceBookingRequest as GetMultiServiceBookingRequest, type context$1_GetMultiServiceBookingResponse as GetMultiServiceBookingResponse, type context$1_GetMultiServiceBookingResponseNonNullableFields as GetMultiServiceBookingResponseNonNullableFields, type context$1_GetScheduleAvailabilityRequest as GetScheduleAvailabilityRequest, type context$1_GetScheduleAvailabilityResponse as GetScheduleAvailabilityResponse, type context$1_GetSlotAvailabilityRequest as GetSlotAvailabilityRequest, type context$1_GetSlotAvailabilityResponse as GetSlotAvailabilityResponse, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, context$1_IdentificationDataIdentityType as IdentificationDataIdentityType, IdentityType$1 as IdentityType, type context$1_ItemMetadata as ItemMetadata, type context$1_LegacyCreateBookingRequest as LegacyCreateBookingRequest, type context$1_LegacyCreateBookingResponse as LegacyCreateBookingResponse, type Location$1 as Location, context$1_LocationLocationType as LocationLocationType, LocationType$1 as LocationType, type context$1_MarkAsMultiServiceBookingOptions as MarkAsMultiServiceBookingOptions, type context$1_MarkAsMultiServiceBookingRequest as MarkAsMultiServiceBookingRequest, type context$1_MarkAsMultiServiceBookingResponse as MarkAsMultiServiceBookingResponse, type context$1_MarkBookingAsPendingFlowControlSettings as MarkBookingAsPendingFlowControlSettings, type context$1_MarkBookingAsPendingRequest as MarkBookingAsPendingRequest, type context$1_MarkBookingAsPendingResponse as MarkBookingAsPendingResponse, type context$1_MarkMultiServiceBookingAsPendingOptions as MarkMultiServiceBookingAsPendingOptions, type context$1_MarkMultiServiceBookingAsPendingRequest as MarkMultiServiceBookingAsPendingRequest, type context$1_MarkMultiServiceBookingAsPendingResponse as MarkMultiServiceBookingAsPendingResponse, type context$1_MarkMultiServiceBookingAsPendingResponseNonNullableFields as MarkMultiServiceBookingAsPendingResponseNonNullableFields, type context$1_MaskedBooking as MaskedBooking, type context$1_MessageEnvelope as MessageEnvelope, type context$1_MigrationCheckIfClashesWithBlockedTimeRequest as MigrationCheckIfClashesWithBlockedTimeRequest, type context$1_MigrationCheckIfClashesWithBlockedTimeResponse as MigrationCheckIfClashesWithBlockedTimeResponse, type context$1_MsidAndBookingId as MsidAndBookingId, type context$1_MultiServiceBooking as MultiServiceBooking, type MultiServiceBookingInfo$1 as MultiServiceBookingInfo, type context$1_MultiServiceBookingMetadata as MultiServiceBookingMetadata, type context$1_MultiServiceBookingNonNullableFields as MultiServiceBookingNonNullableFields, MultiServiceBookingType$1 as MultiServiceBookingType, type context$1_NumberOfParticipantsUpdated as NumberOfParticipantsUpdated, type context$1_NumberOfParticipantsUpdatedPreviousParticipantsInfoOneOf as NumberOfParticipantsUpdatedPreviousParticipantsInfoOneOf, type context$1_Paging as Paging, type context$1_PagingMetadataV2 as PagingMetadataV2, type ParticipantChoices$1 as ParticipantChoices, type ParticipantNotification$1 as ParticipantNotification, type context$1_PartySizeRequest as PartySizeRequest, type context$1_PartySizeRequestPartySizeForOneOf as PartySizeRequestPartySizeForOneOf, type context$1_PartySizeResponse as PartySizeResponse, PaymentStatus$1 as PaymentStatus, Platform$1 as Platform, type context$1_QueryBookingsRequest as QueryBookingsRequest, type context$1_QueryBookingsResponse as QueryBookingsResponse, type context$1_QueryV2 as QueryV2, type context$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context$1_RemoveBookingsFromMultiServiceBookingOptions as RemoveBookingsFromMultiServiceBookingOptions, type context$1_RemoveBookingsFromMultiServiceBookingRequest as RemoveBookingsFromMultiServiceBookingRequest, type context$1_RemoveBookingsFromMultiServiceBookingResponse as RemoveBookingsFromMultiServiceBookingResponse, type context$1_RemoveBookingsFromMultiServiceBookingResponseNonNullableFields as RemoveBookingsFromMultiServiceBookingResponseNonNullableFields, type context$1_RescheduleBookingFlowControlSettings as RescheduleBookingFlowControlSettings, type context$1_RescheduleBookingInfo as RescheduleBookingInfo, type context$1_RescheduleBookingInfoParticipantsInfoOneOf as RescheduleBookingInfoParticipantsInfoOneOf, type context$1_RescheduleBookingOptions as RescheduleBookingOptions, type context$1_RescheduleBookingRequest as RescheduleBookingRequest, type context$1_RescheduleBookingRequestFlowControlSettings as RescheduleBookingRequestFlowControlSettings, type context$1_RescheduleBookingRequestParticipantsInfoOneOf as RescheduleBookingRequestParticipantsInfoOneOf, type context$1_RescheduleBookingResponse as RescheduleBookingResponse, type context$1_RescheduleBookingResponseNonNullableFields as RescheduleBookingResponseNonNullableFields, type context$1_RescheduleMultiServiceBookingOptions as RescheduleMultiServiceBookingOptions, type context$1_RescheduleMultiServiceBookingRequest as RescheduleMultiServiceBookingRequest, type context$1_RescheduleMultiServiceBookingResponse as RescheduleMultiServiceBookingResponse, type context$1_RescheduleMultiServiceBookingResponseNonNullableFields as RescheduleMultiServiceBookingResponseNonNullableFields, type context$1_RestoreInfo as RestoreInfo, type context$1_ScheduleAvailability as ScheduleAvailability, SelectedPaymentOption$1 as SelectedPaymentOption, type ServiceChoice$1 as ServiceChoice, type ServiceChoiceChoiceOneOf$1 as ServiceChoiceChoiceOneOf, type ServiceChoices$1 as ServiceChoices, type context$1_SetBookingSessionIdRequest as SetBookingSessionIdRequest, type context$1_SetBookingSessionIdResponse as SetBookingSessionIdResponse, type context$1_Slot as Slot, type context$1_SlotAvailability as SlotAvailability, type context$1_SlotBookings as SlotBookings, type context$1_SlotLocation as SlotLocation, type context$1_SlotResource as SlotResource, type context$1_SlotSlotResource as SlotSlotResource, context$1_SortOrder as SortOrder, type context$1_Sorting as Sorting, type StreetAddress$1 as StreetAddress, type Subdivision$1 as Subdivision, type context$1_UpdateBookingRequest as UpdateBookingRequest, type context$1_UpdateBookingResponse as UpdateBookingResponse, type context$1_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$1_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$1_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$1_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type context$1_UpdateNumberOfParticipantsOptions as UpdateNumberOfParticipantsOptions, type context$1_UpdateNumberOfParticipantsRequest as UpdateNumberOfParticipantsRequest, type context$1_UpdateNumberOfParticipantsRequestParticipantsInfoOneOf as UpdateNumberOfParticipantsRequestParticipantsInfoOneOf, type context$1_UpdateNumberOfParticipantsResponse as UpdateNumberOfParticipantsResponse, type context$1_UpdateNumberOfParticipantsResponseNonNullableFields as UpdateNumberOfParticipantsResponseNonNullableFields, type context$1_V2CancelBookingRequest as V2CancelBookingRequest, type context$1_V2CancelBookingResponse as V2CancelBookingResponse, type context$1_V2ConfirmBookingRequest as V2ConfirmBookingRequest, type context$1_V2ConfirmBookingResponse as V2ConfirmBookingResponse, type context$1_V2CreateBookingRequest as V2CreateBookingRequest, type context$1_V2CreateBookingRequestBookableItemOneOf as V2CreateBookingRequestBookableItemOneOf, type context$1_V2CreateBookingRequestParticipantsInfoOneOf as V2CreateBookingRequestParticipantsInfoOneOf, type context$1_V2CreateBookingResponse as V2CreateBookingResponse, type context$1_V2CreateBookingResponseNonNullableFields as V2CreateBookingResponseNonNullableFields, type context$1_V2DeclineBookingRequest as V2DeclineBookingRequest, type context$1_V2DeclineBookingResponse as V2DeclineBookingResponse, type context$1_V2RescheduleBookingRequest as V2RescheduleBookingRequest, type context$1_V2RescheduleBookingRequestParticipantsInfoOneOf as V2RescheduleBookingRequestParticipantsInfoOneOf, type context$1_V2RescheduleBookingResponse as V2RescheduleBookingResponse, type context$1_V2RescheduleBookingResponseNonNullableFields as V2RescheduleBookingResponseNonNullableFields, type context$1_V2Slot as V2Slot, type context$1_V2UpdateNumberOfParticipantsRequest as V2UpdateNumberOfParticipantsRequest, type context$1_V2UpdateNumberOfParticipantsRequestParticipantsInfoOneOf as V2UpdateNumberOfParticipantsRequestParticipantsInfoOneOf, type context$1_V2UpdateNumberOfParticipantsResponse as V2UpdateNumberOfParticipantsResponse, ValueType$1 as ValueType, type context$1_WaitingList as WaitingList, context$1_WebhookIdentityType as WebhookIdentityType, type context$1_WebhooksIdentificationData as WebhooksIdentificationData, type context$1_WebhooksIdentificationDataIdOneOf as WebhooksIdentificationDataIdOneOf, type context$1__publicOnBookingCanceledType as _publicOnBookingCanceledType, type context$1__publicOnBookingConfirmedType as _publicOnBookingConfirmedType, type context$1__publicOnBookingCreatedType as _publicOnBookingCreatedType, type context$1__publicOnBookingDeclinedType as _publicOnBookingDeclinedType, type context$1__publicOnBookingNumberOfParticipantsUpdatedType as _publicOnBookingNumberOfParticipantsUpdatedType, type context$1__publicOnBookingRescheduledType as _publicOnBookingRescheduledType, type context$1__publicOnBookingUpdatedType as _publicOnBookingUpdatedType, context$1_addBookingsToMultiServiceBooking as addBookingsToMultiServiceBooking, context$1_bookingsGatewayCreateBooking as bookingsGatewayCreateBooking, context$1_bookingsGatewayRescheduleBooking as bookingsGatewayRescheduleBooking, context$1_bulkCreateBooking as bulkCreateBooking, context$1_bulkGetMultiServiceBookingAllowedActions as bulkGetMultiServiceBookingAllowedActions, context$1_cancelBooking as cancelBooking, context$1_cancelMultiServiceBooking as cancelMultiServiceBooking, context$1_confirmBooking as confirmBooking, context$1_confirmMultiServiceBooking as confirmMultiServiceBooking, context$1_confirmOrDeclineBooking as confirmOrDeclineBooking, context$1_createBooking as createBooking, context$1_createMultiServiceBooking as createMultiServiceBooking, context$1_declineBooking as declineBooking, context$1_declineMultiServiceBooking as declineMultiServiceBooking, context$1_getMultiServiceBooking as getMultiServiceBooking, context$1_getMultiServiceBookingAvailability as getMultiServiceBookingAvailability, context$1_markAsMultiServiceBooking as markAsMultiServiceBooking, context$1_markMultiServiceBookingAsPending as markMultiServiceBookingAsPending, context$1_onBookingCanceled as onBookingCanceled, context$1_onBookingConfirmed as onBookingConfirmed, context$1_onBookingCreated as onBookingCreated, context$1_onBookingDeclined as onBookingDeclined, context$1_onBookingNumberOfParticipantsUpdated as onBookingNumberOfParticipantsUpdated, context$1_onBookingRescheduled as onBookingRescheduled, context$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, context$1_removeBookingsFromMultiServiceBooking as removeBookingsFromMultiServiceBooking, context$1_rescheduleBooking as rescheduleBooking, context$1_rescheduleMultiServiceBooking as rescheduleMultiServiceBooking, context$1_updateExtendedFields as updateExtendedFields, context$1_updateNumberOfParticipants as updateNumberOfParticipants };
25107
+ export { type context$1_ActionEvent as ActionEvent, Actor$1 as Actor, type context$1_AddBookingsToMultiServiceBookingOptions as AddBookingsToMultiServiceBookingOptions, type context$1_AddBookingsToMultiServiceBookingRequest as AddBookingsToMultiServiceBookingRequest, type context$1_AddBookingsToMultiServiceBookingResponse as AddBookingsToMultiServiceBookingResponse, type context$1_AddBookingsToMultiServiceBookingResponseNonNullableFields as AddBookingsToMultiServiceBookingResponseNonNullableFields, type Address$1 as Address, type AddressLocation$1 as AddressLocation, type AddressStreetOneOf$1 as AddressStreetOneOf, type context$1_AllowedActions as AllowedActions, type context$1_ApplicationError as ApplicationError, type context$1_AvailableResources as AvailableResources, type context$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 context$1_BookingCanceled as BookingCanceled, type context$1_BookingCanceledEnvelope as BookingCanceledEnvelope, type context$1_BookingChanged as BookingChanged, type context$1_BookingConfirmed as BookingConfirmed, type context$1_BookingConfirmedEnvelope as BookingConfirmedEnvelope, type context$1_BookingCreatedEnvelope as BookingCreatedEnvelope, type context$1_BookingDeclined as BookingDeclined, type context$1_BookingDeclinedEnvelope as BookingDeclinedEnvelope, type context$1_BookingDetails as BookingDetails, type context$1_BookingIdAndRevision as BookingIdAndRevision, type context$1_BookingInfo as BookingInfo, type context$1_BookingMarkedAsPending as BookingMarkedAsPending, type context$1_BookingNumberOfParticipantsUpdatedEnvelope as BookingNumberOfParticipantsUpdatedEnvelope, type BookingParticipantsInfoOneOf$1 as BookingParticipantsInfoOneOf, type context$1_BookingPolicySettings as BookingPolicySettings, type context$1_BookingPolicyViolations as BookingPolicyViolations, type context$1_BookingRescheduled as BookingRescheduled, type context$1_BookingRescheduledEnvelope as BookingRescheduledEnvelope, type context$1_BookingRescheduledPreviousParticipantsInfoOneOf as BookingRescheduledPreviousParticipantsInfoOneOf, type context$1_BookingResult as BookingResult, type BookingSource$1 as BookingSource, BookingStatus$1 as BookingStatus, type context$1_BookingUpdatedEnvelope as BookingUpdatedEnvelope, type context$1_BulkActionMetadata as BulkActionMetadata, type context$1_BulkBookingResult as BulkBookingResult, type context$1_BulkCalculateAllowedActionsRequest as BulkCalculateAllowedActionsRequest, type context$1_BulkCalculateAllowedActionsResponse as BulkCalculateAllowedActionsResponse, type context$1_BulkCalculateAllowedActionsResult as BulkCalculateAllowedActionsResult, type context$1_BulkConfirmOrDeclineBookingRequest as BulkConfirmOrDeclineBookingRequest, type context$1_BulkConfirmOrDeclineBookingRequestBookingDetails as BulkConfirmOrDeclineBookingRequestBookingDetails, type context$1_BulkConfirmOrDeclineBookingResponse as BulkConfirmOrDeclineBookingResponse, type context$1_BulkCreateBookingOptions as BulkCreateBookingOptions, type context$1_BulkCreateBookingRequest as BulkCreateBookingRequest, type context$1_BulkCreateBookingResponse as BulkCreateBookingResponse, type context$1_BulkCreateBookingResponseNonNullableFields as BulkCreateBookingResponseNonNullableFields, type context$1_BulkGetMultiServiceBookingAllowedActionsRequest as BulkGetMultiServiceBookingAllowedActionsRequest, type context$1_BulkGetMultiServiceBookingAllowedActionsResponse as BulkGetMultiServiceBookingAllowedActionsResponse, type context$1_BulkGetMultiServiceBookingAllowedActionsResponseNonNullableFields as BulkGetMultiServiceBookingAllowedActionsResponseNonNullableFields, type context$1_BulkRescheduleBookingRequest as BulkRescheduleBookingRequest, type context$1_BulkRescheduleBookingRequestBooking as BulkRescheduleBookingRequestBooking, type context$1_BulkRescheduleBookingResponse as BulkRescheduleBookingResponse, type context$1_BulkUpdateBookedScheduleRequest as BulkUpdateBookedScheduleRequest, type context$1_BulkUpdateBookedScheduleResponse as BulkUpdateBookedScheduleResponse, type context$1_BulkUpdateBookingRequest as BulkUpdateBookingRequest, type context$1_BulkUpdateBookingResponse as BulkUpdateBookingResponse, type context$1_CalculateAllowedActionsRequest as CalculateAllowedActionsRequest, type context$1_CalculateAllowedActionsResponse as CalculateAllowedActionsResponse, type context$1_CancelBookingFlowControlSettings as CancelBookingFlowControlSettings, type context$1_CancelBookingOptions as CancelBookingOptions, type context$1_CancelBookingRequest as CancelBookingRequest, type context$1_CancelBookingRequestFlowControlSettings as CancelBookingRequestFlowControlSettings, type context$1_CancelBookingResponse as CancelBookingResponse, type context$1_CancelBookingResponseNonNullableFields as CancelBookingResponseNonNullableFields, type context$1_CancelMultiServiceBookingOptions as CancelMultiServiceBookingOptions, type context$1_CancelMultiServiceBookingRequest as CancelMultiServiceBookingRequest, type context$1_CancelMultiServiceBookingResponse as CancelMultiServiceBookingResponse, type context$1_CancelMultiServiceBookingResponseNonNullableFields as CancelMultiServiceBookingResponseNonNullableFields, type context$1_Clash as Clash, type context$1_CommonIdentificationData as CommonIdentificationData, type context$1_CommonIdentificationDataIdOneOf as CommonIdentificationDataIdOneOf, type context$1_ConfirmBookingFlowControlSettings as ConfirmBookingFlowControlSettings, type context$1_ConfirmBookingOptions as ConfirmBookingOptions, type context$1_ConfirmBookingRequest as ConfirmBookingRequest, type context$1_ConfirmBookingResponse as ConfirmBookingResponse, type context$1_ConfirmBookingResponseNonNullableFields as ConfirmBookingResponseNonNullableFields, type context$1_ConfirmMultiServiceBookingOptions as ConfirmMultiServiceBookingOptions, type context$1_ConfirmMultiServiceBookingRequest as ConfirmMultiServiceBookingRequest, type context$1_ConfirmMultiServiceBookingResponse as ConfirmMultiServiceBookingResponse, type context$1_ConfirmMultiServiceBookingResponseNonNullableFields as ConfirmMultiServiceBookingResponseNonNullableFields, type context$1_ConfirmOrDeclineBookingOptions as ConfirmOrDeclineBookingOptions, type context$1_ConfirmOrDeclineBookingRequest as ConfirmOrDeclineBookingRequest, type context$1_ConfirmOrDeclineBookingResponse as ConfirmOrDeclineBookingResponse, type context$1_ConfirmOrDeclineBookingResponseNonNullableFields as ConfirmOrDeclineBookingResponseNonNullableFields, type context$1_ConfirmRequest as ConfirmRequest, type context$1_ConfirmResponse as ConfirmResponse, type context$1_ConsistentQueryBookingsRequest as ConsistentQueryBookingsRequest, type context$1_ConsistentQueryBookingsResponse as ConsistentQueryBookingsResponse, type ContactDetails$1 as ContactDetails, type context$1_CreateBookingFlowControlSettings as CreateBookingFlowControlSettings, type context$1_CreateBookingInfo as CreateBookingInfo, type context$1_CreateBookingOptions as CreateBookingOptions, type context$1_CreateBookingRequest as CreateBookingRequest, type context$1_CreateBookingRequestFlowControlSettings as CreateBookingRequestFlowControlSettings, type context$1_CreateBookingResponse as CreateBookingResponse, type context$1_CreateBookingResponseNonNullableFields as CreateBookingResponseNonNullableFields, type context$1_CreateMultiServiceBookingOptions as CreateMultiServiceBookingOptions, type context$1_CreateMultiServiceBookingRequest as CreateMultiServiceBookingRequest, type context$1_CreateMultiServiceBookingResponse as CreateMultiServiceBookingResponse, type context$1_CreateMultiServiceBookingResponseNonNullableFields as CreateMultiServiceBookingResponseNonNullableFields, type context$1_CursorPaging as CursorPaging, type context$1_Cursors as Cursors, type CustomFormField$1 as CustomFormField, type context$1_DeclineBookingFlowControlSettings as DeclineBookingFlowControlSettings, type context$1_DeclineBookingOptions as DeclineBookingOptions, type context$1_DeclineBookingRequest as DeclineBookingRequest, type context$1_DeclineBookingResponse as DeclineBookingResponse, type context$1_DeclineBookingResponseNonNullableFields as DeclineBookingResponseNonNullableFields, type context$1_DeclineMultiServiceBookingOptions as DeclineMultiServiceBookingOptions, type context$1_DeclineMultiServiceBookingRequest as DeclineMultiServiceBookingRequest, type context$1_DeclineMultiServiceBookingResponse as DeclineMultiServiceBookingResponse, type context$1_DeclineMultiServiceBookingResponseNonNullableFields as DeclineMultiServiceBookingResponseNonNullableFields, type context$1_DomainEvent as DomainEvent, type context$1_DomainEventBodyOneOf as DomainEventBodyOneOf, type context$1_EntityCreatedEvent as EntityCreatedEvent, type context$1_EntityDeletedEvent as EntityDeletedEvent, type context$1_EntityUpdatedEvent as EntityUpdatedEvent, type context$1_EventMetadata as EventMetadata, type ExtendedFields$1 as ExtendedFields, type FlowControlSettings$1 as FlowControlSettings, type context$1_GetMultiServiceBookingAvailabilityRequest as GetMultiServiceBookingAvailabilityRequest, type context$1_GetMultiServiceBookingAvailabilityResponse as GetMultiServiceBookingAvailabilityResponse, type context$1_GetMultiServiceBookingAvailabilityResponseBookingInfo as GetMultiServiceBookingAvailabilityResponseBookingInfo, type context$1_GetMultiServiceBookingAvailabilityResponseNonNullableFields as GetMultiServiceBookingAvailabilityResponseNonNullableFields, type context$1_GetMultiServiceBookingRequest as GetMultiServiceBookingRequest, type context$1_GetMultiServiceBookingResponse as GetMultiServiceBookingResponse, type context$1_GetMultiServiceBookingResponseNonNullableFields as GetMultiServiceBookingResponseNonNullableFields, type context$1_GetScheduleAvailabilityRequest as GetScheduleAvailabilityRequest, type context$1_GetScheduleAvailabilityResponse as GetScheduleAvailabilityResponse, type context$1_GetSlotAvailabilityRequest as GetSlotAvailabilityRequest, type context$1_GetSlotAvailabilityResponse as GetSlotAvailabilityResponse, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, context$1_IdentificationDataIdentityType as IdentificationDataIdentityType, IdentityType$1 as IdentityType, type context$1_ItemMetadata as ItemMetadata, type context$1_LegacyCreateBookingRequest as LegacyCreateBookingRequest, type context$1_LegacyCreateBookingResponse as LegacyCreateBookingResponse, type Location$1 as Location, context$1_LocationLocationType as LocationLocationType, LocationType$1 as LocationType, type context$1_MarkAsMultiServiceBookingOptions as MarkAsMultiServiceBookingOptions, type context$1_MarkAsMultiServiceBookingRequest as MarkAsMultiServiceBookingRequest, type context$1_MarkAsMultiServiceBookingResponse as MarkAsMultiServiceBookingResponse, type context$1_MarkBookingAsPendingFlowControlSettings as MarkBookingAsPendingFlowControlSettings, type context$1_MarkBookingAsPendingRequest as MarkBookingAsPendingRequest, type context$1_MarkBookingAsPendingResponse as MarkBookingAsPendingResponse, type context$1_MarkMultiServiceBookingAsPendingOptions as MarkMultiServiceBookingAsPendingOptions, type context$1_MarkMultiServiceBookingAsPendingRequest as MarkMultiServiceBookingAsPendingRequest, type context$1_MarkMultiServiceBookingAsPendingResponse as MarkMultiServiceBookingAsPendingResponse, type context$1_MarkMultiServiceBookingAsPendingResponseNonNullableFields as MarkMultiServiceBookingAsPendingResponseNonNullableFields, type context$1_MaskedBooking as MaskedBooking, type context$1_MessageEnvelope as MessageEnvelope, type context$1_MigrationCheckIfClashesWithBlockedTimeRequest as MigrationCheckIfClashesWithBlockedTimeRequest, type context$1_MigrationCheckIfClashesWithBlockedTimeResponse as MigrationCheckIfClashesWithBlockedTimeResponse, type context$1_MsidAndBookingId as MsidAndBookingId, type context$1_MultiServiceBooking as MultiServiceBooking, type MultiServiceBookingInfo$1 as MultiServiceBookingInfo, type context$1_MultiServiceBookingMetadata as MultiServiceBookingMetadata, type context$1_MultiServiceBookingNonNullableFields as MultiServiceBookingNonNullableFields, MultiServiceBookingType$1 as MultiServiceBookingType, type context$1_NumberOfParticipantsUpdated as NumberOfParticipantsUpdated, type context$1_NumberOfParticipantsUpdatedPreviousParticipantsInfoOneOf as NumberOfParticipantsUpdatedPreviousParticipantsInfoOneOf, type context$1_Paging as Paging, type context$1_PagingMetadataV2 as PagingMetadataV2, type ParticipantChoices$1 as ParticipantChoices, type ParticipantNotification$1 as ParticipantNotification, type context$1_PartySizeRequest as PartySizeRequest, type context$1_PartySizeRequestPartySizeForOneOf as PartySizeRequestPartySizeForOneOf, type context$1_PartySizeResponse as PartySizeResponse, PaymentStatus$1 as PaymentStatus, Platform$1 as Platform, type context$1_QueryBookingsRequest as QueryBookingsRequest, type context$1_QueryBookingsResponse as QueryBookingsResponse, type context$1_QueryV2 as QueryV2, type context$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context$1_RemoveBookingsFromMultiServiceBookingOptions as RemoveBookingsFromMultiServiceBookingOptions, type context$1_RemoveBookingsFromMultiServiceBookingRequest as RemoveBookingsFromMultiServiceBookingRequest, type context$1_RemoveBookingsFromMultiServiceBookingResponse as RemoveBookingsFromMultiServiceBookingResponse, type context$1_RemoveBookingsFromMultiServiceBookingResponseNonNullableFields as RemoveBookingsFromMultiServiceBookingResponseNonNullableFields, type context$1_RescheduleBookingFlowControlSettings as RescheduleBookingFlowControlSettings, type context$1_RescheduleBookingInfo as RescheduleBookingInfo, type context$1_RescheduleBookingInfoParticipantsInfoOneOf as RescheduleBookingInfoParticipantsInfoOneOf, type context$1_RescheduleBookingOptions as RescheduleBookingOptions, type context$1_RescheduleBookingRequest as RescheduleBookingRequest, type context$1_RescheduleBookingRequestFlowControlSettings as RescheduleBookingRequestFlowControlSettings, type context$1_RescheduleBookingRequestParticipantsInfoOneOf as RescheduleBookingRequestParticipantsInfoOneOf, type context$1_RescheduleBookingResponse as RescheduleBookingResponse, type context$1_RescheduleBookingResponseNonNullableFields as RescheduleBookingResponseNonNullableFields, type context$1_RescheduleMultiServiceBookingOptions as RescheduleMultiServiceBookingOptions, type context$1_RescheduleMultiServiceBookingRequest as RescheduleMultiServiceBookingRequest, type context$1_RescheduleMultiServiceBookingResponse as RescheduleMultiServiceBookingResponse, type context$1_RescheduleMultiServiceBookingResponseNonNullableFields as RescheduleMultiServiceBookingResponseNonNullableFields, type context$1_RestoreInfo as RestoreInfo, type context$1_ScheduleAvailability as ScheduleAvailability, SelectedPaymentOption$1 as SelectedPaymentOption, type ServiceChoice$1 as ServiceChoice, type ServiceChoiceChoiceOneOf$1 as ServiceChoiceChoiceOneOf, type ServiceChoices$1 as ServiceChoices, type context$1_SetBookingSessionIdRequest as SetBookingSessionIdRequest, type context$1_SetBookingSessionIdResponse as SetBookingSessionIdResponse, type context$1_Slot as Slot, type context$1_SlotAvailability as SlotAvailability, type context$1_SlotBookings as SlotBookings, type context$1_SlotLocation as SlotLocation, type context$1_SlotResource as SlotResource, type context$1_SlotSlotResource as SlotSlotResource, context$1_SortOrder as SortOrder, type context$1_Sorting as Sorting, type StreetAddress$1 as StreetAddress, type Subdivision$1 as Subdivision, type context$1_UpdateBookingRequest as UpdateBookingRequest, type context$1_UpdateBookingResponse as UpdateBookingResponse, type context$1_UpdateExtendedFieldsOptions as UpdateExtendedFieldsOptions, type context$1_UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequest, type context$1_UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponse, type context$1_UpdateExtendedFieldsResponseNonNullableFields as UpdateExtendedFieldsResponseNonNullableFields, type context$1_UpdateNumberOfParticipantsOptions as UpdateNumberOfParticipantsOptions, type context$1_UpdateNumberOfParticipantsRequest as UpdateNumberOfParticipantsRequest, type context$1_UpdateNumberOfParticipantsRequestParticipantsInfoOneOf as UpdateNumberOfParticipantsRequestParticipantsInfoOneOf, type context$1_UpdateNumberOfParticipantsResponse as UpdateNumberOfParticipantsResponse, type context$1_UpdateNumberOfParticipantsResponseNonNullableFields as UpdateNumberOfParticipantsResponseNonNullableFields, type context$1_V2CancelBookingRequest as V2CancelBookingRequest, type context$1_V2CancelBookingResponse as V2CancelBookingResponse, type context$1_V2ConfirmBookingRequest as V2ConfirmBookingRequest, type context$1_V2ConfirmBookingResponse as V2ConfirmBookingResponse, type context$1_V2CreateBookingRequest as V2CreateBookingRequest, type context$1_V2CreateBookingRequestBookableItemOneOf as V2CreateBookingRequestBookableItemOneOf, type context$1_V2CreateBookingRequestParticipantsInfoOneOf as V2CreateBookingRequestParticipantsInfoOneOf, type context$1_V2CreateBookingResponse as V2CreateBookingResponse, type context$1_V2DeclineBookingRequest as V2DeclineBookingRequest, type context$1_V2DeclineBookingResponse as V2DeclineBookingResponse, type context$1_V2RescheduleBookingRequest as V2RescheduleBookingRequest, type context$1_V2RescheduleBookingRequestParticipantsInfoOneOf as V2RescheduleBookingRequestParticipantsInfoOneOf, type context$1_V2RescheduleBookingResponse as V2RescheduleBookingResponse, type context$1_V2Slot as V2Slot, type context$1_V2UpdateNumberOfParticipantsRequest as V2UpdateNumberOfParticipantsRequest, type context$1_V2UpdateNumberOfParticipantsRequestParticipantsInfoOneOf as V2UpdateNumberOfParticipantsRequestParticipantsInfoOneOf, type context$1_V2UpdateNumberOfParticipantsResponse as V2UpdateNumberOfParticipantsResponse, ValueType$1 as ValueType, type context$1_WaitingList as WaitingList, context$1_WebhookIdentityType as WebhookIdentityType, type context$1_WebhooksIdentificationData as WebhooksIdentificationData, type context$1_WebhooksIdentificationDataIdOneOf as WebhooksIdentificationDataIdOneOf, type context$1__publicOnBookingCanceledType as _publicOnBookingCanceledType, type context$1__publicOnBookingConfirmedType as _publicOnBookingConfirmedType, type context$1__publicOnBookingCreatedType as _publicOnBookingCreatedType, type context$1__publicOnBookingDeclinedType as _publicOnBookingDeclinedType, type context$1__publicOnBookingNumberOfParticipantsUpdatedType as _publicOnBookingNumberOfParticipantsUpdatedType, type context$1__publicOnBookingRescheduledType as _publicOnBookingRescheduledType, type context$1__publicOnBookingUpdatedType as _publicOnBookingUpdatedType, context$1_addBookingsToMultiServiceBooking as addBookingsToMultiServiceBooking, context$1_bulkCreateBooking as bulkCreateBooking, context$1_bulkGetMultiServiceBookingAllowedActions as bulkGetMultiServiceBookingAllowedActions, context$1_cancelBooking as cancelBooking, context$1_cancelMultiServiceBooking as cancelMultiServiceBooking, context$1_confirmBooking as confirmBooking, context$1_confirmMultiServiceBooking as confirmMultiServiceBooking, context$1_confirmOrDeclineBooking as confirmOrDeclineBooking, context$1_createBooking as createBooking, context$1_createMultiServiceBooking as createMultiServiceBooking, context$1_declineBooking as declineBooking, context$1_declineMultiServiceBooking as declineMultiServiceBooking, context$1_getMultiServiceBooking as getMultiServiceBooking, context$1_getMultiServiceBookingAvailability as getMultiServiceBookingAvailability, context$1_markAsMultiServiceBooking as markAsMultiServiceBooking, context$1_markMultiServiceBookingAsPending as markMultiServiceBookingAsPending, context$1_onBookingCanceled as onBookingCanceled, context$1_onBookingConfirmed as onBookingConfirmed, context$1_onBookingCreated as onBookingCreated, context$1_onBookingDeclined as onBookingDeclined, context$1_onBookingNumberOfParticipantsUpdated as onBookingNumberOfParticipantsUpdated, context$1_onBookingRescheduled as onBookingRescheduled, context$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, context$1_removeBookingsFromMultiServiceBooking as removeBookingsFromMultiServiceBooking, context$1_rescheduleBooking as rescheduleBooking, context$1_rescheduleMultiServiceBooking as rescheduleMultiServiceBooking, context$1_updateExtendedFields as updateExtendedFields, context$1_updateNumberOfParticipants as updateNumberOfParticipants };
25319
25108
  }
25320
25109
 
25321
25110
  interface PriceInfo extends PriceInfoTotalPriceOneOf {