@wix/bookings 1.0.443 → 1.0.445

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.443",
3
+ "version": "1.0.445",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -22,12 +22,12 @@
22
22
  "@wix/bookings_availability-calendar": "1.0.35",
23
23
  "@wix/bookings_availability-time-slots": "1.0.31",
24
24
  "@wix/bookings_booking-policies": "1.0.2",
25
- "@wix/bookings_bookings": "1.0.52",
25
+ "@wix/bookings_bookings": "1.0.54",
26
26
  "@wix/bookings_categories": "1.0.36",
27
- "@wix/bookings_extended-bookings": "1.0.45",
27
+ "@wix/bookings_extended-bookings": "1.0.46",
28
28
  "@wix/bookings_external-calendars": "1.0.33",
29
29
  "@wix/bookings_multi-service-availability-time-slots": "1.0.30",
30
- "@wix/bookings_pricing": "1.0.35",
30
+ "@wix/bookings_pricing": "1.0.36",
31
31
  "@wix/bookings_resource-types": "1.0.2",
32
32
  "@wix/bookings_resources": "1.0.40",
33
33
  "@wix/bookings_service-options-and-variants": "1.0.45",
@@ -57,5 +57,5 @@
57
57
  "fqdn": ""
58
58
  }
59
59
  },
60
- "falconPackageHash": "7e171706a5936b0bc471bae7460fe06008668bc40772ee93d0612295"
60
+ "falconPackageHash": "ebad2efd6f23fd9573702fab741f5552c0f6d5a962e5da750c923587"
61
61
  }
@@ -9451,7 +9451,6 @@ interface Booking$2 extends BookingParticipantsInfoOneOf$2 {
9451
9451
  * - `"PARTIALLY_PAID"` The booking is partially paid.
9452
9452
  * - `"REFUNDED"` The booking is refunded.
9453
9453
  * - `"EXEMPT"` The booking is free of charge.
9454
- * @readonly
9455
9454
  */
9456
9455
  paymentStatus?: PaymentStatus$2;
9457
9456
  /**
@@ -25980,7 +25979,6 @@ interface Booking$1 extends BookingParticipantsInfoOneOf$1 {
25980
25979
  * - `"PARTIALLY_PAID"` The booking is partially paid.
25981
25980
  * - `"REFUNDED"` The booking is refunded.
25982
25981
  * - `"EXEMPT"` The booking is free of charge.
25983
- * @readonly
25984
25982
  */
25985
25983
  paymentStatus?: PaymentStatus$1;
25986
25984
  /**
@@ -26949,6 +26947,23 @@ interface DeclineMultiServiceBookingRequest {
26949
26947
  doubleBooked?: boolean | null;
26950
26948
  /** Whether to return the declined bookings entities. */
26951
26949
  returnFullEntity?: boolean;
26950
+ /**
26951
+ * Information about whether specific procedures of the standard Wix Bookings
26952
+ * declining flow are changed. For example, whether to issue a refund.
26953
+ */
26954
+ flowControlSettings?: DeclineBookingFlowControlSettings;
26955
+ }
26956
+ interface DeclineBookingFlowControlSettings {
26957
+ /**
26958
+ * Whether to issue a refund when declining the booking.
26959
+ * The refund will be issued only if the booking is refundable.
26960
+ * Currently, booking is considered refundable when it was paid by membership.
26961
+ * If passing `true`, the booking flow control settings will be set with refund,
26962
+ * otherwise, either if `false` is passed or the field remains empty,
26963
+ * the booking flow control settings will be set with no refund.
26964
+ * Default: `false`.
26965
+ */
26966
+ withRefund?: boolean | null;
26952
26967
  }
26953
26968
  interface DeclineMultiServiceBookingResponse {
26954
26969
  /** Declined multi service booking. */
@@ -26967,6 +26982,11 @@ interface BookingDeclined {
26967
26982
  previousStatus?: BookingStatus$1;
26968
26983
  /** The previous payment status of the booking. */
26969
26984
  previousPaymentStatus?: PaymentStatus$1;
26985
+ /**
26986
+ * Information about whether specific procedures of the standard Wix Bookings
26987
+ * declining flow are changed. For example, whether to issue a refund.
26988
+ */
26989
+ flowControlSettings?: DeclineBookingFlowControlSettings;
26970
26990
  }
26971
26991
  interface BulkGetMultiServiceBookingAllowedActionsRequest {
26972
26992
  /** The multi service booking ids to get the allowedActions for. */
@@ -27597,6 +27617,11 @@ interface DeclineBookingRequest {
27597
27617
  paymentStatus?: PaymentStatus$1;
27598
27618
  /** Whether this booking overlaps with another existing confirmed booking. */
27599
27619
  doubleBooked?: boolean | null;
27620
+ /**
27621
+ * Information about whether specific procedures of the standard Wix Bookings
27622
+ * declining flow are changed. For example, whether to issue a refund.
27623
+ */
27624
+ flowControlSettings?: DeclineBookingFlowControlSettings;
27600
27625
  }
27601
27626
  interface DeclineBookingResponse {
27602
27627
  /** eclined booking */
@@ -28553,6 +28578,11 @@ interface DeclineBookingOptions {
28553
28578
  paymentStatus?: PaymentStatus$1;
28554
28579
  /** Whether this booking overlaps with another existing confirmed booking. */
28555
28580
  doubleBooked?: boolean | null;
28581
+ /**
28582
+ * Information about whether specific procedures of the standard Wix Bookings
28583
+ * declining flow are changed. For example, whether to issue a refund.
28584
+ */
28585
+ flowControlSettings?: DeclineBookingFlowControlSettings;
28556
28586
  }
28557
28587
  interface CancelBookingOptions {
28558
28588
  /**
@@ -29005,6 +29035,7 @@ type context$1_CreateMultiServiceBookingRequest = CreateMultiServiceBookingReque
29005
29035
  type context$1_CreateMultiServiceBookingResponse = CreateMultiServiceBookingResponse;
29006
29036
  type context$1_CursorPaging = CursorPaging;
29007
29037
  type context$1_Cursors = Cursors;
29038
+ type context$1_DeclineBookingFlowControlSettings = DeclineBookingFlowControlSettings;
29008
29039
  type context$1_DeclineBookingOptions = DeclineBookingOptions;
29009
29040
  type context$1_DeclineBookingRequest = DeclineBookingRequest;
29010
29041
  type context$1_DeclineBookingResponse = DeclineBookingResponse;
@@ -29141,7 +29172,7 @@ declare const context$1_rescheduleBooking: typeof rescheduleBooking;
29141
29172
  declare const context$1_updateExtendedFields: typeof updateExtendedFields;
29142
29173
  declare const context$1_updateNumberOfParticipants: typeof updateNumberOfParticipants;
29143
29174
  declare namespace context$1 {
29144
- export { type context$1_ActionEvent as ActionEvent, Actor$1 as Actor, type context$1_AddBookingsToMultiServiceBookingRequest as AddBookingsToMultiServiceBookingRequest, type context$1_AddBookingsToMultiServiceBookingResponse as AddBookingsToMultiServiceBookingResponse, 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_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_CancelMultiServiceBookingRequest as CancelMultiServiceBookingRequest, type context$1_CancelMultiServiceBookingResponse as CancelMultiServiceBookingResponse, 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_ConfirmMultiServiceBookingRequest as ConfirmMultiServiceBookingRequest, type context$1_ConfirmMultiServiceBookingResponse as ConfirmMultiServiceBookingResponse, 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_CreateMultiServiceBookingRequest as CreateMultiServiceBookingRequest, type context$1_CreateMultiServiceBookingResponse as CreateMultiServiceBookingResponse, type context$1_CursorPaging as CursorPaging, type context$1_Cursors as Cursors, type CustomFormField$1 as CustomFormField, 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_DeclineMultiServiceBookingRequest as DeclineMultiServiceBookingRequest, type context$1_DeclineMultiServiceBookingResponse as DeclineMultiServiceBookingResponse, 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_GetMultiServiceBookingRequest as GetMultiServiceBookingRequest, type context$1_GetMultiServiceBookingResponse as GetMultiServiceBookingResponse, 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_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_MarkMultiServiceBookingAsPendingRequest as MarkMultiServiceBookingAsPendingRequest, type context$1_MarkMultiServiceBookingAsPendingResponse as MarkMultiServiceBookingAsPendingResponse, 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, 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_RemoveBookingsFromMultiServiceBookingRequest as RemoveBookingsFromMultiServiceBookingRequest, type context$1_RemoveBookingsFromMultiServiceBookingResponse as RemoveBookingsFromMultiServiceBookingResponse, 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_RescheduleMultiServiceBookingRequest as RescheduleMultiServiceBookingRequest, type context$1_RescheduleMultiServiceBookingResponse as RescheduleMultiServiceBookingResponse, 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_bulkCreateBooking as bulkCreateBooking, context$1_cancelBooking as cancelBooking, context$1_confirmBooking as confirmBooking, context$1_confirmOrDeclineBooking as confirmOrDeclineBooking, context$1_createBooking as createBooking, context$1_declineBooking as declineBooking, 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_rescheduleBooking as rescheduleBooking, context$1_updateExtendedFields as updateExtendedFields, context$1_updateNumberOfParticipants as updateNumberOfParticipants };
29175
+ export { type context$1_ActionEvent as ActionEvent, Actor$1 as Actor, type context$1_AddBookingsToMultiServiceBookingRequest as AddBookingsToMultiServiceBookingRequest, type context$1_AddBookingsToMultiServiceBookingResponse as AddBookingsToMultiServiceBookingResponse, 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_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_CancelMultiServiceBookingRequest as CancelMultiServiceBookingRequest, type context$1_CancelMultiServiceBookingResponse as CancelMultiServiceBookingResponse, 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_ConfirmMultiServiceBookingRequest as ConfirmMultiServiceBookingRequest, type context$1_ConfirmMultiServiceBookingResponse as ConfirmMultiServiceBookingResponse, 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_CreateMultiServiceBookingRequest as CreateMultiServiceBookingRequest, type context$1_CreateMultiServiceBookingResponse as CreateMultiServiceBookingResponse, 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_DeclineMultiServiceBookingRequest as DeclineMultiServiceBookingRequest, type context$1_DeclineMultiServiceBookingResponse as DeclineMultiServiceBookingResponse, 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_GetMultiServiceBookingRequest as GetMultiServiceBookingRequest, type context$1_GetMultiServiceBookingResponse as GetMultiServiceBookingResponse, 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_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_MarkMultiServiceBookingAsPendingRequest as MarkMultiServiceBookingAsPendingRequest, type context$1_MarkMultiServiceBookingAsPendingResponse as MarkMultiServiceBookingAsPendingResponse, 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, 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_RemoveBookingsFromMultiServiceBookingRequest as RemoveBookingsFromMultiServiceBookingRequest, type context$1_RemoveBookingsFromMultiServiceBookingResponse as RemoveBookingsFromMultiServiceBookingResponse, 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_RescheduleMultiServiceBookingRequest as RescheduleMultiServiceBookingRequest, type context$1_RescheduleMultiServiceBookingResponse as RescheduleMultiServiceBookingResponse, 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_bulkCreateBooking as bulkCreateBooking, context$1_cancelBooking as cancelBooking, context$1_confirmBooking as confirmBooking, context$1_confirmOrDeclineBooking as confirmOrDeclineBooking, context$1_createBooking as createBooking, context$1_declineBooking as declineBooking, 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_rescheduleBooking as rescheduleBooking, context$1_updateExtendedFields as updateExtendedFields, context$1_updateNumberOfParticipants as updateNumberOfParticipants };
29145
29176
  }
29146
29177
 
29147
29178
  type HostModule<T, H extends Host> = {
@@ -29729,7 +29760,6 @@ interface Booking extends BookingParticipantsInfoOneOf {
29729
29760
  * - `"PARTIALLY_PAID"` The booking is partially paid.
29730
29761
  * - `"REFUNDED"` The booking is refunded.
29731
29762
  * - `"EXEMPT"` The booking is free of charge.
29732
- * @readonly
29733
29763
  */
29734
29764
  paymentStatus?: PaymentStatus;
29735
29765
  /**
@@ -9451,7 +9451,6 @@ interface Booking$2 extends BookingParticipantsInfoOneOf$2 {
9451
9451
  * - `"PARTIALLY_PAID"` The booking is partially paid.
9452
9452
  * - `"REFUNDED"` The booking is refunded.
9453
9453
  * - `"EXEMPT"` The booking is free of charge.
9454
- * @readonly
9455
9454
  */
9456
9455
  paymentStatus?: PaymentStatus$2;
9457
9456
  /**
@@ -25980,7 +25979,6 @@ interface Booking$1 extends BookingParticipantsInfoOneOf$1 {
25980
25979
  * - `"PARTIALLY_PAID"` The booking is partially paid.
25981
25980
  * - `"REFUNDED"` The booking is refunded.
25982
25981
  * - `"EXEMPT"` The booking is free of charge.
25983
- * @readonly
25984
25982
  */
25985
25983
  paymentStatus?: PaymentStatus$1;
25986
25984
  /**
@@ -26949,6 +26947,23 @@ interface DeclineMultiServiceBookingRequest {
26949
26947
  doubleBooked?: boolean | null;
26950
26948
  /** Whether to return the declined bookings entities. */
26951
26949
  returnFullEntity?: boolean;
26950
+ /**
26951
+ * Information about whether specific procedures of the standard Wix Bookings
26952
+ * declining flow are changed. For example, whether to issue a refund.
26953
+ */
26954
+ flowControlSettings?: DeclineBookingFlowControlSettings;
26955
+ }
26956
+ interface DeclineBookingFlowControlSettings {
26957
+ /**
26958
+ * Whether to issue a refund when declining the booking.
26959
+ * The refund will be issued only if the booking is refundable.
26960
+ * Currently, booking is considered refundable when it was paid by membership.
26961
+ * If passing `true`, the booking flow control settings will be set with refund,
26962
+ * otherwise, either if `false` is passed or the field remains empty,
26963
+ * the booking flow control settings will be set with no refund.
26964
+ * Default: `false`.
26965
+ */
26966
+ withRefund?: boolean | null;
26952
26967
  }
26953
26968
  interface DeclineMultiServiceBookingResponse {
26954
26969
  /** Declined multi service booking. */
@@ -26967,6 +26982,11 @@ interface BookingDeclined {
26967
26982
  previousStatus?: BookingStatus$1;
26968
26983
  /** The previous payment status of the booking. */
26969
26984
  previousPaymentStatus?: PaymentStatus$1;
26985
+ /**
26986
+ * Information about whether specific procedures of the standard Wix Bookings
26987
+ * declining flow are changed. For example, whether to issue a refund.
26988
+ */
26989
+ flowControlSettings?: DeclineBookingFlowControlSettings;
26970
26990
  }
26971
26991
  interface BulkGetMultiServiceBookingAllowedActionsRequest {
26972
26992
  /** The multi service booking ids to get the allowedActions for. */
@@ -27597,6 +27617,11 @@ interface DeclineBookingRequest {
27597
27617
  paymentStatus?: PaymentStatus$1;
27598
27618
  /** Whether this booking overlaps with another existing confirmed booking. */
27599
27619
  doubleBooked?: boolean | null;
27620
+ /**
27621
+ * Information about whether specific procedures of the standard Wix Bookings
27622
+ * declining flow are changed. For example, whether to issue a refund.
27623
+ */
27624
+ flowControlSettings?: DeclineBookingFlowControlSettings;
27600
27625
  }
27601
27626
  interface DeclineBookingResponse {
27602
27627
  /** eclined booking */
@@ -28553,6 +28578,11 @@ interface DeclineBookingOptions {
28553
28578
  paymentStatus?: PaymentStatus$1;
28554
28579
  /** Whether this booking overlaps with another existing confirmed booking. */
28555
28580
  doubleBooked?: boolean | null;
28581
+ /**
28582
+ * Information about whether specific procedures of the standard Wix Bookings
28583
+ * declining flow are changed. For example, whether to issue a refund.
28584
+ */
28585
+ flowControlSettings?: DeclineBookingFlowControlSettings;
28556
28586
  }
28557
28587
  interface CancelBookingOptions {
28558
28588
  /**
@@ -29005,6 +29035,7 @@ type index_d$1_CreateMultiServiceBookingRequest = CreateMultiServiceBookingReque
29005
29035
  type index_d$1_CreateMultiServiceBookingResponse = CreateMultiServiceBookingResponse;
29006
29036
  type index_d$1_CursorPaging = CursorPaging;
29007
29037
  type index_d$1_Cursors = Cursors;
29038
+ type index_d$1_DeclineBookingFlowControlSettings = DeclineBookingFlowControlSettings;
29008
29039
  type index_d$1_DeclineBookingOptions = DeclineBookingOptions;
29009
29040
  type index_d$1_DeclineBookingRequest = DeclineBookingRequest;
29010
29041
  type index_d$1_DeclineBookingResponse = DeclineBookingResponse;
@@ -29141,7 +29172,7 @@ declare const index_d$1_rescheduleBooking: typeof rescheduleBooking;
29141
29172
  declare const index_d$1_updateExtendedFields: typeof updateExtendedFields;
29142
29173
  declare const index_d$1_updateNumberOfParticipants: typeof updateNumberOfParticipants;
29143
29174
  declare namespace index_d$1 {
29144
- 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_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 };
29175
+ 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 };
29145
29176
  }
29146
29177
 
29147
29178
  type HostModule<T, H extends Host> = {
@@ -29729,7 +29760,6 @@ interface Booking extends BookingParticipantsInfoOneOf {
29729
29760
  * - `"PARTIALLY_PAID"` The booking is partially paid.
29730
29761
  * - `"REFUNDED"` The booking is refunded.
29731
29762
  * - `"EXEMPT"` The booking is free of charge.
29732
- * @readonly
29733
29763
  */
29734
29764
  paymentStatus?: PaymentStatus;
29735
29765
  /**
@@ -4138,7 +4138,6 @@ interface Booking$5 extends BookingParticipantsInfoOneOf$5 {
4138
4138
  * - `"PARTIALLY_PAID"` The booking is partially paid.
4139
4139
  * - `"REFUNDED"` The booking is refunded.
4140
4140
  * - `"EXEMPT"` The booking is free of charge.
4141
- * @readonly
4142
4141
  */
4143
4142
  paymentStatus?: PaymentStatus$5;
4144
4143
  /**
@@ -4877,7 +4876,6 @@ interface Booking$4 extends BookingParticipantsInfoOneOf$4 {
4877
4876
  * - `"PARTIALLY_PAID"` The booking is partially paid.
4878
4877
  * - `"REFUNDED"` The booking is refunded.
4879
4878
  * - `"EXEMPT"` The booking is free of charge.
4880
- * @readonly
4881
4879
  */
4882
4880
  paymentStatus?: PaymentStatus$4;
4883
4881
  /**
@@ -15078,7 +15076,6 @@ interface Booking$3 extends BookingParticipantsInfoOneOf$3 {
15078
15076
  * - `"PARTIALLY_PAID"` The booking is partially paid.
15079
15077
  * - `"REFUNDED"` The booking is refunded.
15080
15078
  * - `"EXEMPT"` The booking is free of charge.
15081
- * @readonly
15082
15079
  */
15083
15080
  paymentStatus?: PaymentStatus$3;
15084
15081
  /**
@@ -15634,6 +15631,18 @@ interface ConfirmBookingFlowControlSettings$1 {
15634
15631
  */
15635
15632
  checkAvailabilityValidation?: boolean;
15636
15633
  }
15634
+ interface DeclineBookingFlowControlSettings$1 {
15635
+ /**
15636
+ * Whether to issue a refund when declining the booking.
15637
+ * The refund will be issued only if the booking is refundable.
15638
+ * Currently, booking is considered refundable when it was paid by membership.
15639
+ * If passing `true`, the booking flow control settings will be set with refund,
15640
+ * otherwise, either if `false` is passed or the field remains empty,
15641
+ * the booking flow control settings will be set with no refund.
15642
+ * Default: `false`.
15643
+ */
15644
+ withRefund?: boolean | null;
15645
+ }
15637
15646
  interface ItemMetadata$1 {
15638
15647
  /** Item ID. Should always be available, unless it's impossible (for example, when failing to create an item). */
15639
15648
  id?: string | null;
@@ -15860,6 +15869,11 @@ interface DeclineBookingRequest$1 {
15860
15869
  paymentStatus?: PaymentStatus$3;
15861
15870
  /** Whether this booking overlaps with another existing confirmed booking. */
15862
15871
  doubleBooked?: boolean | null;
15872
+ /**
15873
+ * Information about whether specific procedures of the standard Wix Bookings
15874
+ * declining flow are changed. For example, whether to issue a refund.
15875
+ */
15876
+ flowControlSettings?: DeclineBookingFlowControlSettings$1;
15863
15877
  }
15864
15878
  interface DeclineBookingResponse$1 {
15865
15879
  /** eclined booking */
@@ -16124,7 +16138,6 @@ interface Booking$2 extends BookingParticipantsInfoOneOf$2 {
16124
16138
  * - `"PARTIALLY_PAID"` The booking is partially paid.
16125
16139
  * - `"REFUNDED"` The booking is refunded.
16126
16140
  * - `"EXEMPT"` The booking is free of charge.
16127
- * @readonly
16128
16141
  */
16129
16142
  paymentStatus?: PaymentStatus$2;
16130
16143
  /**
@@ -16680,6 +16693,18 @@ interface ConfirmBookingFlowControlSettings {
16680
16693
  */
16681
16694
  checkAvailabilityValidation?: boolean;
16682
16695
  }
16696
+ interface DeclineBookingFlowControlSettings {
16697
+ /**
16698
+ * Whether to issue a refund when declining the booking.
16699
+ * The refund will be issued only if the booking is refundable.
16700
+ * Currently, booking is considered refundable when it was paid by membership.
16701
+ * If passing `true`, the booking flow control settings will be set with refund,
16702
+ * otherwise, either if `false` is passed or the field remains empty,
16703
+ * the booking flow control settings will be set with no refund.
16704
+ * Default: `false`.
16705
+ */
16706
+ withRefund?: boolean | null;
16707
+ }
16683
16708
  interface ItemMetadata {
16684
16709
  /** Item ID. Should always be available, unless it's impossible (for example, when failing to create an item). */
16685
16710
  _id?: string | null;
@@ -16906,6 +16931,11 @@ interface DeclineBookingRequest {
16906
16931
  paymentStatus?: PaymentStatus$2;
16907
16932
  /** Whether this booking overlaps with another existing confirmed booking. */
16908
16933
  doubleBooked?: boolean | null;
16934
+ /**
16935
+ * Information about whether specific procedures of the standard Wix Bookings
16936
+ * declining flow are changed. For example, whether to issue a refund.
16937
+ */
16938
+ flowControlSettings?: DeclineBookingFlowControlSettings;
16909
16939
  }
16910
16940
  interface DeclineBookingResponse {
16911
16941
  /** eclined booking */
@@ -17350,7 +17380,6 @@ interface Booking$1 extends BookingParticipantsInfoOneOf$1 {
17350
17380
  * - `"PARTIALLY_PAID"` The booking is partially paid.
17351
17381
  * - `"REFUNDED"` The booking is refunded.
17352
17382
  * - `"EXEMPT"` The booking is free of charge.
17353
- * @readonly
17354
17383
  */
17355
17384
  paymentStatus?: PaymentStatus$1;
17356
17385
  /**
@@ -17912,7 +17941,6 @@ interface Booking extends BookingParticipantsInfoOneOf {
17912
17941
  * - `"PARTIALLY_PAID"` The booking is partially paid.
17913
17942
  * - `"REFUNDED"` The booking is refunded.
17914
17943
  * - `"EXEMPT"` The booking is free of charge.
17915
- * @readonly
17916
17944
  */
17917
17945
  paymentStatus?: PaymentStatus;
17918
17946
  /**