@wix/auto_sdk_bookings_bookings 1.0.82 → 1.0.84

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.
@@ -4,14 +4,13 @@ import { NonNullablePaths } from '@wix/sdk-types';
4
4
  interface Booking extends BookingParticipantsInfoOneOf {
5
5
  /**
6
6
  * Total number of participants.
7
- * When creating a booking, use this field only if the relevant service has fixed pricing and doesn't offer variants and options ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/service-options-and-variants/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction)).
7
+ * When creating a booking, use this field only if the relevant service has fixed pricing and doesn't offer [variants and options](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction).
8
8
  * @min 1
9
9
  */
10
10
  totalParticipants?: number;
11
11
  /**
12
12
  * Information about the booked service choices and participant count for each choice.
13
- * When creating a booking, use this field only if the booking includes multiple service variants
14
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/service-options-and-variants/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction)).
13
+ * When creating a booking, use this field only if the booking includes multiple [service variants](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction).
15
14
  *
16
15
  * For example, use this for a spa package booking that includes different service levels:
17
16
  * - 2 participants chose "Standard Package".
@@ -42,8 +41,7 @@ interface Booking extends BookingParticipantsInfoOneOf {
42
41
  */
43
42
  bookedEntity?: BookedEntity;
44
43
  /**
45
- * Contact details of the site visitor or member
46
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/members/members/introduction) | [REST](https://dev.wix.com/docs/rest/crm/members-contacts/members/members/introduction))
44
+ * Contact details of the site visitor or [member](https://dev.wix.com/docs/api-reference/crm/members-contacts/members/members/introduction))
47
45
  * making the booking.
48
46
  */
49
47
  contactDetails?: ContactDetails;
@@ -69,8 +67,7 @@ interface Booking extends BookingParticipantsInfoOneOf {
69
67
  status?: BookingStatusWithLiterals;
70
68
  /**
71
69
  * The payment status of the booking. This field automatically syncs with the
72
- * `paymentStatus` of the corresponding eCommerce order
73
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/ecom/orders/setup)| [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/orders/introduction))
70
+ * `paymentStatus` of the corresponding [eCommerce order](https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/orders/introduction)
74
71
  * when customers use Wix eCommerce checkout.
75
72
  *
76
73
  * ### Integration patterns
@@ -78,17 +75,17 @@ interface Booking extends BookingParticipantsInfoOneOf {
78
75
  * __When using Wix eCommerce checkout__: Wix Bookings automatically syncs the payment status based on the eCommerce order's payment status.
79
76
  * Do not manually update this field.
80
77
  *
81
- * __When using custom payment flows__: You can manually update the payment status with Confirm Booking or Decline Booking ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/bookings/confirm-or-decline-booking) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/confirm-or-decline-booking)) to reflect the customer's payment state.
78
+ * __When using custom payment flows__: You can manually update the payment status with [Confirm Booking or Decline Booking](https://dev.wix.com/docs/api-reference/business-solutions/bookings/bookings/bookings-writer-v2/confirm-or-decline-booking) to reflect the customer's payment state.
82
79
  *
83
- * __For membership/pricing plan payments__: Wix Bookings automatically manages the payment status when customers pay with an active pricing plan ([SDK](https://dev.wix.com/docs/sdk/backend-modules/pricing-plans/plans/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/pricing-plans/pricing-plans/introduction)) subscription.
80
+ * __For membership/pricing plan payments__: Wix Bookings automatically manages the payment status when customers pay with an active [pricing plan](https://dev.wix.com/docs/api-reference/business-solutions/pricing-plans/pricing-plans/introduction) subscription.
84
81
  *
85
82
  * All payment statuses are supported for every booking `status`.
86
83
  */
87
84
  paymentStatus?: PaymentStatusWithLiterals;
88
85
  /**
89
- * Payment option selected by the customer. If the customer hasn't completed their checkout, they may still change the payment method. Must be one of the payment options offered by the service ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/services/setup) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/services/services-v2/introduction)), unless `skipSelectedPaymentOptionValidation` is `true`.
86
+ * Payment option selected by the customer. If the customer hasn't completed their checkout, they may still change the payment method. Must be one of the payment options offered by the [service](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/introduction), unless `skipSelectedPaymentOptionValidation` is `true`.
90
87
  *
91
- * When undefined during an eCommerce checkout ([SDK](https://dev.wix.com/docs/sdk/backend-modules/ecom/checkout/setup) | [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/introduction)), Wix Bookings uses the service's default payment option
88
+ * When undefined during an [eCommerce checkout](https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/checkout/introduction), Wix Bookings uses the service's default payment option
92
89
  */
93
90
  selectedPaymentOption?: SelectedPaymentOptionWithLiterals;
94
91
  /**
@@ -138,15 +135,13 @@ interface Booking extends BookingParticipantsInfoOneOf {
138
135
  */
139
136
  doubleBooked?: boolean | null;
140
137
  /**
141
- * ID of the form submission
142
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/forms/submissions/introduction) | [REST](https://dev.wix.com/docs/rest/crm/forms/form-submissions/introduction))
138
+ * ID of the [form submission](https://dev.wix.com/docs/rest/crm/forms/form-submissions/introduction)
143
139
  * associated with this booking.
144
140
  * @format GUID
145
141
  */
146
142
  formSubmissionId?: string | null;
147
143
  /**
148
- * ID of the form
149
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/forms/introduction) | [REST](https://dev.wix.com/docs/rest/crm/forms/form-schemas/form-object))
144
+ * ID of the [form](https://dev.wix.com/docs/rest/crm/forms/form-schemas/form-object)
150
145
  * associated with this booking. The value depends on how the
151
146
  * booking was created:
152
147
  * - For bookings created with Create Booking or Bulk Create Booking, `formId`
@@ -163,14 +158,13 @@ interface Booking extends BookingParticipantsInfoOneOf {
163
158
  interface BookingParticipantsInfoOneOf {
164
159
  /**
165
160
  * Total number of participants.
166
- * When creating a booking, use this field only if the relevant service has fixed pricing and doesn't offer variants and options ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/service-options-and-variants/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction)).
161
+ * When creating a booking, use this field only if the relevant service has fixed pricing and doesn't offer [variants and options](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction).
167
162
  * @min 1
168
163
  */
169
164
  totalParticipants?: number;
170
165
  /**
171
166
  * Information about the booked service choices and participant count for each choice.
172
- * When creating a booking, use this field only if the booking includes multiple service variants
173
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/service-options-and-variants/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction)).
167
+ * When creating a booking, use this field only if the booking includes multiple [service variants](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction).
174
168
  *
175
169
  * For example, use this for a spa package booking that includes different service levels:
176
170
  * - 2 participants chose "Standard Package".
@@ -196,8 +190,7 @@ declare enum MultiServiceBookingType {
196
190
  type MultiServiceBookingTypeWithLiterals = MultiServiceBookingType | 'SEQUENTIAL_BOOKINGS' | 'SEPARATE_BOOKINGS' | 'PARALLEL_BOOKINGS';
197
191
  interface BookedEntity extends BookedEntityItemOneOf {
198
192
  /**
199
- * Booked slot
200
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/availability-calendar/query-availability) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings-and-time-slots/time-slots/availability-calendar/query-availability)).
193
+ * [Booked slot](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings-and-time-slots/time-slots/availability-calendar/query-availability).
201
194
  *
202
195
  * Specify `slot` when creating bookings for:
203
196
  * - __Appointment-based services__: Individual sessions with service providers (consultations, treatments).
@@ -209,8 +202,7 @@ interface BookedEntity extends BookedEntityItemOneOf {
209
202
  */
210
203
  slot?: BookedSlot;
211
204
  /**
212
- * Booked schedule
213
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/calendar/schedules/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction)).
205
+ * [Booked schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction).
214
206
  *
215
207
  * Specify `schedule` when creating bookings for:
216
208
  * - __Course services__: Multi-session offerings spanning weeks or months (educational courses, training programs).
@@ -236,8 +228,7 @@ interface BookedEntity extends BookedEntityItemOneOf {
236
228
  /** @oneof */
237
229
  interface BookedEntityItemOneOf {
238
230
  /**
239
- * Booked slot
240
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/availability-calendar/query-availability) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings-and-time-slots/time-slots/availability-calendar/query-availability)).
231
+ * [Booked slot](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings-and-time-slots/time-slots/availability-calendar/query-availability).
241
232
  *
242
233
  * Specify `slot` when creating bookings for:
243
234
  * - __Appointment-based services__: Individual sessions with service providers (consultations, treatments).
@@ -249,8 +240,7 @@ interface BookedEntityItemOneOf {
249
240
  */
250
241
  slot?: BookedSlot;
251
242
  /**
252
- * Booked schedule
253
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/calendar/schedules/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction)).
243
+ * [Booked schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction).
254
244
  *
255
245
  * Specify `schedule` when creating bookings for:
256
246
  * - __Course services__: Multi-session offerings spanning weeks or months (educational courses, training programs).
@@ -259,15 +249,27 @@ interface BookedEntityItemOneOf {
259
249
  schedule?: BookedSchedule;
260
250
  }
261
251
  interface BookedSlot {
262
- /** Session ID. */
252
+ /**
253
+ * Session ID. For class bookings, this is the ID of the existing session.
254
+ * For appointment bookings, this field is typically empty during booking creation and gets populated when the booking is confirmed.
255
+ *
256
+ * __Migration Guidance__: Replace usage of this field with `eventId` from the [Time Slots V2 API](https://dev.wix.com/docs/api-reference/business-solutions/bookings/time-slots/time-slots-v2/introduction).
257
+ * You can follow [these sample flows](https://dev.wix.com/docs/api-reference/business-solutions/bookings/end-to-end-booking-flows) for step-by-step guidance about determining availability and creating bookings.
258
+ * @deprecated Session ID. For class bookings, this is the ID of the existing session.
259
+ * For appointment bookings, this field is typically empty during booking creation and gets populated when the booking is confirmed.
260
+ *
261
+ * __Migration Guidance__: Replace usage of this field with `eventId` from the [Time Slots V2 API](https://dev.wix.com/docs/api-reference/business-solutions/bookings/time-slots/time-slots-v2/introduction).
262
+ * You can follow [these sample flows](https://dev.wix.com/docs/api-reference/business-solutions/bookings/end-to-end-booking-flows) for step-by-step guidance about determining availability and creating bookings.
263
+ * @replacedBy event_id
264
+ * @targetRemovalDate 2026-03-31
265
+ */
263
266
  sessionId?: string | null;
264
267
  /** Service ID. */
265
268
  serviceId?: string;
266
269
  /** Schedule ID. */
267
270
  scheduleId?: string;
268
271
  /**
269
- * ID of the corresponding event
270
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/calendar/events/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/introduction)).
272
+ * ID of the corresponding [event](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/introduction).
271
273
  * Available for both appointment and class bookings, not available for course bookings.
272
274
  * For appointment-based services, Wix Bookings automatically populates `eventId` when the booking `status` changes to `CONFIRMED`.
273
275
  * For class bookings, Wix Bookings automatically populates `eventId` upon booking creation.
@@ -285,9 +287,8 @@ interface BookedSlot {
285
287
  */
286
288
  timezone?: string | null;
287
289
  /**
288
- * Primary resource
289
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/resources/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resources-v2/introduction)) for the booking.
290
- * For example, the staff member ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/introduction)) providing the service.
290
+ * [Primary resource](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resources-v2/introduction) for the booking.
291
+ * For example, the [staff member](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/introduction) providing the service.
291
292
  */
292
293
  resource?: BookedResource;
293
294
  /** Location where the session takes place. */
@@ -380,7 +381,7 @@ declare enum SelectionMethod {
380
381
  /** @enumType */
381
382
  type SelectionMethodWithLiterals = SelectionMethod | 'UNKNOWN_SELECTION_METHOD' | 'SPECIFIC_RESOURCE' | 'ANY_RESOURCE' | 'NO_SELECTION';
382
383
  interface BookedSchedule {
383
- /** Schedule ID ([SDK](https://dev.wix.com/docs/sdk/backend-modules/calendar/schedules/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction)). */
384
+ /** [Schedule ID](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction). */
384
385
  scheduleId?: string;
385
386
  /**
386
387
  * Booked service ID.
@@ -388,7 +389,7 @@ interface BookedSchedule {
388
389
  */
389
390
  serviceId?: string | null;
390
391
  /**
391
- * Location ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/locations/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/locations/introduction)) where the schedule's sessions take place.
392
+ * [Location](https://dev.wix.com/docs/rest/business-management/locations/introduction) where the schedule's sessions take place.
392
393
  * @readonly
393
394
  */
394
395
  location?: Location;
@@ -532,26 +533,18 @@ type ValueTypeWithLiterals = ValueType | 'SHORT_TEXT' | 'LONG_TEXT' | 'CHECK_BOX
532
533
  declare enum BookingStatus {
533
534
  /** The booking was created, but the customer hasn't completed the related eCommerce order yet. */
534
535
  CREATED = "CREATED",
535
- /**
536
- * The merchant has confirmed the booking and it appears in the business calendar. Merchants can set up their services
537
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/services/setup) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/services/services-v2/introduction)) to automatically confirm all `PENDING` bookings.
538
- */
536
+ /** The merchant has confirmed the booking and it appears in the business calendar. Merchants can set up their [services](https://dev.wix.com/docs/rest/business-solutions/bookings/services/services-v2/introduction) to automatically confirm all `PENDING` bookings. */
539
537
  CONFIRMED = "CONFIRMED",
540
538
  /**
541
- * The customer has canceled the booking. Depending on the relevant service's policy snapshot
542
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/booking-policy-snapshots/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/policies/booking-policy-snapshots/introduction))
543
- * they may have to pay a cancellation fee ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/booking-fees/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/pricing/booking-fees/introduction)).
539
+ * The customer has canceled the booking. Depending on the relevant service's [policy snapshot](https://dev.wix.com/docs/rest/business-solutions/bookings/policies/booking-policy-snapshots/introduction)
540
+ * they may have to pay a [cancellation fee](https://dev.wix.com/docs/rest/business-solutions/bookings/pricing/booking-fees/introduction).
544
541
  */
545
542
  CANCELED = "CANCELED",
546
543
  /** The merchant must manually confirm the booking before it appears in the business calendar. */
547
544
  PENDING = "PENDING",
548
545
  /** The merchant has declined the booking before the customer was charged. */
549
546
  DECLINED = "DECLINED",
550
- /**
551
- * The booking is on a waitlist.
552
- * Currently, you can't call Register to Waitlist ([REST](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/waitlist/register-to-waitlist)) for course or appointment bookings, even though this is supported in live sites.
553
- * You can call Register to Waitlist only for class session bookings.
554
- */
547
+ /** Currently, you can't call [Register to Waitlist](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/waitlist/register-to-waitlist) for course or appointment bookings, even though this is supported in live sites. */
555
548
  WAITING_LIST = "WAITING_LIST"
556
549
  }
557
550
  /** @enumType */
@@ -718,8 +711,7 @@ interface FlowControlSettings {
718
711
  skipAvailabilityValidation?: boolean;
719
712
  /**
720
713
  * Whether the booking's `status` is automatically updated to `CONFIRMED` when
721
- * the customer completes the eCommerce checkout
722
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/ecom/checkout/setup) | [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/introduction)),
714
+ * the customer completes the [eCommerce checkout](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/introduction),
723
715
  * regardless of whether the relevant service requires manual business confirmation.
724
716
  */
725
717
  skipBusinessConfirmation?: boolean;
@@ -756,7 +748,7 @@ interface ParticipantChoices {
756
748
  }
757
749
  interface ServiceChoices {
758
750
  /**
759
- * Number of participants for this variant ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/service-options-and-variants/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction)).
751
+ * Number of participants for this [variant](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction).
760
752
  * @min 1
761
753
  */
762
754
  numberOfParticipants?: number | null;
@@ -1635,8 +1627,7 @@ interface ConfirmOrDeclineBookingRequest {
1635
1627
  bookingId: string;
1636
1628
  /**
1637
1629
  * Current payment status of the booking when using a custom checkout page and
1638
- * not the *eCommerce checkout*
1639
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/ecom/checkout/setup) | [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/introduction)).
1630
+ * not the [eCommerce checkout](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/introduction).
1640
1631
  *
1641
1632
  * The booking is declined if there is a double booking conflict and you provide
1642
1633
  * one of these payment statuses: `UNDEFINED`, `NOT_PAID`, `REFUNDED`, or `EXEMPT`.
@@ -1665,8 +1656,7 @@ interface BulkConfirmOrDeclineBookingRequestBookingDetails {
1665
1656
  bookingId?: string;
1666
1657
  /**
1667
1658
  * Current payment status of the booking when using a custom checkout page and
1668
- * not the *eCommerce checkout*
1669
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/ecom/checkout/setup) | [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/introduction)).
1659
+ * not the [eCommerce checkout](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/introduction).
1670
1660
  *
1671
1661
  * The booking is declined if there is a double booking conflict and you provide
1672
1662
  * one of these payment statuses: `UNDEFINED`, `NOT_PAID`, `REFUNDED`, or `EXEMPT`.
@@ -2887,12 +2877,12 @@ interface RescheduleMultiServiceBookingRequest {
2887
2877
  }
2888
2878
  interface RescheduleBookingInfo extends RescheduleBookingInfoParticipantsInfoOneOf {
2889
2879
  /**
2890
- * Total number of participants. Available only for services with variants ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/service-options-and-variants/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction)).
2880
+ * Total number of participants. Available only for services with [variants](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction).
2891
2881
  * Specify when all participants book the same variant.
2892
2882
  */
2893
2883
  totalParticipants?: number;
2894
2884
  /**
2895
- * Information about the service choices to book. Available only for services with variants ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/service-options-and-variants/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction)).
2885
+ * Information about the service choices to book. Available only for services with [variants](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction).
2896
2886
  * Specify when not all participants book the same variant.
2897
2887
  */
2898
2888
  participantsChoices?: ParticipantChoices;
@@ -2912,12 +2902,12 @@ interface RescheduleBookingInfo extends RescheduleBookingInfoParticipantsInfoOne
2912
2902
  /** @oneof */
2913
2903
  interface RescheduleBookingInfoParticipantsInfoOneOf {
2914
2904
  /**
2915
- * Total number of participants. Available only for services with variants ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/service-options-and-variants/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction)).
2905
+ * Total number of participants. Available only for services with [variants](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction).
2916
2906
  * Specify when all participants book the same variant.
2917
2907
  */
2918
2908
  totalParticipants?: number;
2919
2909
  /**
2920
- * Information about the service choices to book. Available only for services with variants ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/service-options-and-variants/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction)).
2910
+ * Information about the service choices to book. Available only for services with [variants](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction).
2921
2911
  * Specify when not all participants book the same variant.
2922
2912
  */
2923
2913
  participantsChoices?: ParticipantChoices;
@@ -4047,11 +4037,9 @@ declare function getBookingAnonymously(token: string): Promise<NonNullablePaths<
4047
4037
  * ### eCommerce checkout restriction
4048
4038
  *
4049
4039
  * Call this method only when using a custom checkout page. Don't
4050
- * call it when using a *Wix eCommerce checkout*
4051
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/ecom/orders/setup) | [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/introduction)).
4040
+ * call it when using a [Wix eCommerce checkout](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/introduction).
4052
4041
  * In such cases, Wix automatically updates the booking status based on
4053
- * the `paymentStatus` of the corresponding *Wix eCommerce order*
4054
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/ecom/checkout/setup) | [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/orders/introduction)).
4042
+ * the `paymentStatus` of the corresponding [Wix eCommerce order](https://dev.wix.com/docs/rest/business-solutions/e-commerce/orders/introduction).
4055
4043
  *
4056
4044
  * ### New booking status
4057
4045
  *
@@ -4093,8 +4081,7 @@ declare function confirmOrDeclineBooking(bookingId: string, options?: ConfirmOrD
4093
4081
  interface ConfirmOrDeclineBookingOptions {
4094
4082
  /**
4095
4083
  * Current payment status of the booking when using a custom checkout page and
4096
- * not the *eCommerce checkout*
4097
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/ecom/checkout/setup) | [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/introduction)).
4084
+ * not the [eCommerce checkout](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/introduction).
4098
4085
  *
4099
4086
  * The booking is declined if there is a double booking conflict and you provide
4100
4087
  * one of these payment statuses: `UNDEFINED`, `NOT_PAID`, `REFUNDED`, or `EXEMPT`.
@@ -4105,8 +4092,7 @@ interface ConfirmOrDeclineBookingOptions {
4105
4092
  * Confirms or declines up to 300 bookings.
4106
4093
  *
4107
4094
  *
4108
- * See *Confirm Or Decline Booking*
4109
- * ([SDK](https://dev.wix.com/docs/velo/api-reference/wix-bookings-v2/bookings/confirm-or-decline-booking) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/confirm-or-decline-booking))
4095
+ * See [Confirm Or Decline Booking](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/confirm-or-decline-booking)
4110
4096
  * for details about when a booking is confirmed or declined.
4111
4097
  * @param details - Bookings to confirm or decline.
4112
4098
  * @public
@@ -4129,23 +4115,19 @@ interface BulkConfirmOrDeclineBookingOptions {
4129
4115
  *
4130
4116
  * ### Appointment booking
4131
4117
  *
4132
- * For appointment-based services, specify the relevant `slot` in
4133
- * `bookedEntity.slot`. We recommend specifying the complete
4134
- * `availabilityEntries.slot` returned in Query Availability
4135
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/availability-calendar/query-availability) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/time-slots/availability-calendar/query-availability))
4136
- * in your call's request to avoid failed calls due to unavailability.
4118
+ * For appointment-based services, specify the relevant time slot in `bookedEntity.slot`.
4119
+ *
4120
+ * We recommend following the [appointment booking sample flow](https://dev.wix.com/docs/api-reference/business-solutions/bookings/bookings/bookings-writer-v2/sample-flows#book-an-appointment) using Time Slots V2.
4121
+ * Specify the slot's `startDate`, `endDate`, `resource`, and `location` in `booking.bookedEntity.slot`.
4137
4122
  *
4138
4123
  * ### Class session booking
4139
4124
  *
4140
- * For class services, specify the relevant event ID
4141
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/calendar/events/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/introduction))
4142
- * as `bookedEntity.slot.eventId`.
4143
- * We recommend retrieving the event ID from Query Availability's
4144
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/availability-calendar/query-availability) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/time-slots/availability-calendar/query-availability))
4145
- * `availabilityEntries.slot.eventId` to avoid failed calls due to unavailability.
4146
- * Specifying an event ID leads to automatic calculations of `slot.startDate`, `slot.endDate`,
4147
- * `slot.timezone`, `slot.resource`, and `slot.location`. All manually specified
4148
- * values are overridden.
4125
+ * For class services, specify the relevant event ID as `bookedEntity.slot.eventId`.
4126
+ *
4127
+ * We recommend following the [class session booking sample flow](https://dev.wix.com/docs/api-reference/business-solutions/bookings/bookings/bookings-writer-v2/sample-flows#book-a-class-session) using Time Slots V2.
4128
+ * Specify the `eventId` from the selected time slot in `booking.bookedEntity.slot.eventId`.
4129
+ *
4130
+ * When you specify `eventId`, Wix Bookings automatically derives `startDate`, `endDate`, `timezone`, `resource`, and `location` based on the event details. Manually specified values are ignored.
4149
4131
  *
4150
4132
  * ### Course booking
4151
4133
  *
@@ -4170,8 +4152,7 @@ interface BulkConfirmOrDeclineBookingOptions {
4170
4152
  *
4171
4153
  * You must specify either `participantsChoices` or `totalParticipants`.
4172
4154
  * The call fails if the specified `participantsChoices` aren't among the supported
4173
- * _service options and variants_
4174
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/service-options-and-variants/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction)).
4155
+ * [service options and variants](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction).
4175
4156
  *
4176
4157
  * ### Notify customers
4177
4158
  *
@@ -4190,9 +4171,9 @@ interface BulkConfirmOrDeclineBookingOptions {
4190
4171
  *
4191
4172
  * All bookings are created with `paymentStatus=UNDEFINED`, ignoring the payment status you specify.
4192
4173
  *
4193
- * For customers paying with a Wix eCommerce checkout ([SDK](https://dev.wix.com/docs/sdk/backend-modules/ecom/checkout/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/purchase-flow/checkout/checkout/introduction)), Wix Bookings automatically syncs the booking's payment status from the corresponding eCommerce order ([SDK](https://dev.wix.com/docs/sdk/backend-modules/ecom/orders/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/orders/introduction)).
4174
+ * For customers paying with a [Wix eCommerce checkout](https://dev.wix.com/docs/rest/business-solutions/e-commerce/purchase-flow/checkout/checkout/introduction), Wix Bookings automatically syncs the booking's payment status from the corresponding [eCommerce order](https://dev.wix.com/docs/rest/business-solutions/e-commerce/orders/introduction).
4194
4175
  *
4195
- * For customers using a custom checkout, call Confirm or Decline Booking ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/bookings/confirm-or-decline-booking) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/confirm-or-decline-booking)) to update booking's payment status manually.
4176
+ * For customers using a custom checkout, call [Confirm or Decline Booking](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/confirm-or-decline-booking) to update booking's payment status manually.
4196
4177
  *
4197
4178
  * ### Booking form data
4198
4179
  *
@@ -4203,6 +4184,8 @@ interface BulkConfirmOrDeclineBookingOptions {
4203
4184
  * don't match, Create Booking fails. Therefore, we recommend specifying
4204
4185
  * only `booking.contactDetails.contactId` when providing `formSubmission`.
4205
4186
  *
4187
+ * You can follow [this sample flow](https://dev.wix.com/docs/api-reference/business-solutions/bookings/wix-forms-integration#create-a-booking-with-a-filled-out-booking-form) to create bookings with booking form submissions.
4188
+ *
4206
4189
  * ### Admin overwrites
4207
4190
  *
4208
4191
  * There are small but important differences when you specify special
@@ -4263,8 +4246,7 @@ interface CreateBookingOptions {
4263
4246
  * Creates up to 8 bookings.
4264
4247
  *
4265
4248
  *
4266
- * See Create Booking
4267
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/bookings/create-booking) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/create-booking))
4249
+ * See [Create Booking](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/create-booking)
4268
4250
  * for more information.
4269
4251
  *
4270
4252
  * If any of the specified bookings is missing a required field the entire call
@@ -4304,16 +4286,14 @@ interface BulkCreateBookingOptions {
4304
4286
  * ### Appointment sessions
4305
4287
  *
4306
4288
  * For appointments, the old session is removed from the business calendar
4307
- * while a new session is added. We recommend calling Query Availability
4308
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/availability-calendar/query-availability) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/time-slots/availability-calendar/query-availability))
4289
+ * while a new session is added. We recommend calling [Query Availability](https://dev.wix.com/docs/rest/business-solutions/bookings/time-slots/availability-calendar/query-availability)
4309
4290
  * first and specifying the entire retrieved `slot`.
4310
4291
  *
4311
4292
  * ### Class sessions
4312
4293
  *
4313
4294
  * For classes, the new session must be an existing session belonging to the
4314
4295
  * same class. We recommend retrieving `availabilityEntries.slot.eventId`
4315
- * from Query Availability
4316
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/availability-calendar/query-availability) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/time-slots/availability-calendar/query-availability))
4296
+ * from [Query Availability](https://dev.wix.com/docs/rest/business-solutions/bookings/time-slots/availability-calendar/query-availability)
4317
4297
  * to avoid failed Reschedule Booking calls due to unavailability. Specify
4318
4298
  * only `slot.eventId` instead of the entire `slot` object.
4319
4299
  *
@@ -4414,16 +4394,14 @@ interface RescheduleBookingOptionsParticipantsInfoOneOf {
4414
4394
  * ### eCommerce checkout restriction
4415
4395
  *
4416
4396
  * Call this method only when using a custom checkout page. Don't
4417
- * call it when using a Wix eCommerce checkout
4418
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/ecom/orders/setup) | [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/introduction)).
4397
+ * call it when using a [Wix eCommerce checkout](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/introduction).
4419
4398
  * In such cases, Wix automatically updates the booking status based on
4420
- * the `paymentStatus` of the corresponding Wix eCommerce order
4421
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/ecom/checkout/setup) | [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/orders/introduction)).
4399
+ * the `paymentStatus` of the corresponding [Wix eCommerce order](https://dev.wix.com/docs/rest/business-solutions/e-commerce/orders/introduction).
4422
4400
  *
4423
4401
  * ### When to call Confirm Or Decline Booking instead
4424
4402
  *
4425
4403
  * Confirm Booking doesn't check whether a slot or schedule is still available.
4426
- * For these checks, call Confirm or Decline Booking ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/bookings/confirm-or-decline-booking) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/confirm-or-decline-booking)) instead.
4404
+ * For these checks, call [Confirm or Decline Booking](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/confirm-or-decline-booking) instead.
4427
4405
  *
4428
4406
  * ### Original status validation
4429
4407
  *
@@ -4546,17 +4524,14 @@ interface UpdateExtendedFieldsOptions {
4546
4524
  * ### eCommerce checkout restriction
4547
4525
  *
4548
4526
  * Call this method only when using a custom checkout page. Don't
4549
- * call it when using a Wix eCommerce checkout
4550
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/ecom/orders/setup) | [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/introduction)).
4527
+ * call it when using a [Wix eCommerce checkout](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/introduction).
4551
4528
  * In such cases, Wix automatically updates the booking status based on
4552
- * the `paymentStatus` of the corresponding Wix eCommerce order
4553
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/ecom/checkout/setup) | [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/orders/introduction)).
4529
+ * the `paymentStatus` of the corresponding [Wix eCommerce order](https://dev.wix.com/docs/rest/business-solutions/e-commerce/orders/introduction).
4554
4530
  *
4555
4531
  * ### When to call Confirm Or Decline Booking instead
4556
4532
  *
4557
4533
  * The method doesn't check whether a slot or schedule is still available. For
4558
- * these checks you can call Confirm or Decline Booking
4559
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/bookings/confirm-or-decline-booking) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/confirm-or-decline-booking)).
4534
+ * these checks you can call [Confirm or Decline Booking](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/confirm-or-decline-booking).
4560
4535
  *
4561
4536
  * ### Original status validation
4562
4537
  *
@@ -4697,8 +4672,7 @@ interface CancelBookingOptions {
4697
4672
  *
4698
4673
  * You must specify either `participantsChoices` or `totalParticipants`.
4699
4674
  * The call fails if the specified `participantsChoices` aren't among the
4700
- * supported service options and variants
4701
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/service-options-and-variants/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction)).
4675
+ * supported [service options and variants](https://dev.wix.com/docs/rest/business-solutions/bookings/services/service-options-and-variants/introduction).
4702
4676
  * @param bookingId - ID of the booking to update the number of participants for.
4703
4677
  * @public
4704
4678
  * @requiredField bookingId
@@ -4748,7 +4722,7 @@ interface UpdateNumberOfParticipantsOptionsParticipantsInfoOneOf {
4748
4722
  *
4749
4723
  * ### Service requirement
4750
4724
  *
4751
- * By default, this method only works for services ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/services/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/services/services-v2/introduction)) with `service.onlineBooking.requireManualApproval` set to `true`.
4725
+ * By default, this method only works for [services](https://dev.wix.com/docs/rest/business-solutions/bookings/services/services-v2/introduction) with `service.onlineBooking.requireManualApproval` set to `true`.
4752
4726
  * If you attempt to mark a booking as pending for a service that doesn't require approval, the call fails unless you use the `skipPendingApprovalServiceValidation` admin overwrite.
4753
4727
  *
4754
4728
  * ### Status requirements
@@ -4758,15 +4732,15 @@ interface UpdateNumberOfParticipantsOptionsParticipantsInfoOneOf {
4758
4732
  *
4759
4733
  * ### Checkout restrictions
4760
4734
  *
4761
- * Only call this method if the customer paid via a custom checkout. For Wix eCommerce checkouts ([SDK](https://dev.wix.com/docs/sdk/backend-modules/ecom/checkout/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/purchase-flow/checkout/introduction)), Wix Bookings automatically manages the bookings' statuses based on payment processing.
4735
+ * Only call this method if the customer paid via a custom checkout. For [Wix eCommerce checkouts](https://dev.wix.com/docs/rest/business-solutions/e-commerce/purchase-flow/checkout/introduction), Wix Bookings automatically manages the bookings' statuses based on payment processing.
4762
4736
  *
4763
4737
  * When using custom checkouts, you can also update the booking's `paymentStatus` by specifying a new payment status.
4764
4738
  *
4765
4739
  * ### Business workflow
4766
4740
  *
4767
4741
  * After marking a booking as `PENDING`, the business must manually approve or reject it. You can call these methods:
4768
- * - Confirm Booking ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/bookings/confirm-booking) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/confirm-booking)).
4769
- * - Decline Booking ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/bookings/decline-booking) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/decline-booking)).
4742
+ * - [Confirm Booking](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/confirm-booking).
4743
+ * - [Decline Booking](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/decline-booking).
4770
4744
  *
4771
4745
  * ### Resource availability and scheduling
4772
4746
  *
@@ -4774,7 +4748,7 @@ interface UpdateNumberOfParticipantsOptionsParticipantsInfoOneOf {
4774
4748
  *
4775
4749
  * - **Calendar impact**: The booking appears on the business calendar.
4776
4750
  * - **Availability**: The time slot becomes unavailable for other bookings, even while pending approval.
4777
- * - **Resource assignment**: Available resources ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/resources/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resources-v2/introduction)) are automatically assigned if none were explicitly selected during booking creation.
4751
+ * - **Resource assignment**: Available [resources](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resources-v2/introduction) are automatically assigned if none were explicitly selected during booking creation.
4778
4752
  *
4779
4753
  * ### Double bookings
4780
4754
  *
@@ -4847,7 +4821,7 @@ interface MarkBookingAsPendingOptions {
4847
4821
  *
4848
4822
  * ### When to call this method
4849
4823
  *
4850
- * Create sequential appointments where customers book related services together. For adding existing single-service bookings to an existing multi-service booking, call Add Bookings to Multi Service Booking ([SDK](https://dev.wix.com/docs/api-reference/business-solutions/bookings/bookings/bookings-writer-v2/add-bookings-to-multi-service-booking?apiView=SDK) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/add-bookings-to-multi-service-booking)) instead.
4824
+ * Create sequential appointments where customers book related services together. For adding existing single-service bookings to an existing multi-service booking, call [Add Bookings to Multi Service Booking](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/add-bookings-to-multi-service-booking) instead.
4851
4825
  *
4852
4826
  * ### Requirements and behavior
4853
4827
  *
@@ -4855,15 +4829,15 @@ interface MarkBookingAsPendingOptions {
4855
4829
  *
4856
4830
  * __Timing specification__: You must provide complete `slot` details (`scheduleId`, `startDate`, `endDate`) for each single-service booking. Wix Bookings validates sequential timing but doesn't auto-calculate it.
4857
4831
  *
4858
- * __Package pricing__: The total price equals the sum of individual services. Wix Bookings automatically syncs the payment status from the corresponding Wix eCommerce order ([SDK](https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/orders/introduction?apiView=SDK) | [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/orders/introduction)) if the customer paid via an eCommerce checkout ([SDK](https://dev.wix.com/docs/sdk/backend-modules/ecom/checkout/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/introduction)).
4832
+ * __Package pricing__: The total price equals the sum of individual services. Wix Bookings automatically syncs the payment status from the corresponding [Wix eCommerce order](https://dev.wix.com/docs/rest/business-solutions/e-commerce/orders/introduction) if the customer paid via an [eCommerce checkout](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/introduction).
4859
4833
  *
4860
4834
  * __Package notifications__: Customers receive 1 unified notification for the entire multi-service booking. Wix Bookings doesn't send notifications for the package's individual single-service bookings.
4861
4835
  *
4862
4836
  * ### Related methods
4863
4837
  *
4864
- * Verify availability first with List Multi Service Availability Time Slots ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/time-slots/multi-service-availability-time-slots/list-multi-service-availability-time-slots) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/time-slots/time-slots-v2/list-multi-service-availability-time-slots)).
4838
+ * Verify availability first with [List Multi Service Availability Time Slots](https://dev.wix.com/docs/rest/business-solutions/bookings/time-slots/time-slots-v2/list-multi-service-availability-time-slots).
4865
4839
  *
4866
- * See Create Booking ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/bookings/create-booking) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/create-booking)) for more details about constraints and effects of creating single-service bookings.
4840
+ * See [Create Booking](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/create-booking) for more details about constraints and effects of creating single-service bookings.
4867
4841
  * @param bookings - Between 2 to 8 new single-service booking specifications to create and combine in a multi-service booking.
4868
4842
  *
4869
4843
  * Each single-service booking specification must include `slot` details (`scheduleId`, `startDate`, and `endDate`).
@@ -4920,7 +4894,7 @@ interface CreateMultiServiceBookingOptions {
4920
4894
  *
4921
4895
  * This method fails if it can't reschedule at least 1 single-service booking. You must provide the current revision number for each single-service booking you're rescheduling to prevent conflicting changes.
4922
4896
  *
4923
- * See Reschedule Booking ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/bookings/reschedule-booking) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/reschedule-booking)) for single-service booking rescheduling details.
4897
+ * See [Reschedule Booking](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/reschedule-booking) for single-service booking rescheduling details.
4924
4898
  * @param multiServiceBookingId - ID of the multi-service booking to reschedule.
4925
4899
  * @param rescheduleBookingsInfo - Information about the single-service bookings to reschedule.
4926
4900
  * @public
@@ -4954,14 +4928,13 @@ interface RescheduleMultiServiceBookingOptions {
4954
4928
  *
4955
4929
  *
4956
4930
  * Wix Bookings considers:
4957
- * - The relevant services' booking policies ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/booking-policies/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/policies/booking-policies/introduction)).
4958
- * - The availability of all required resources ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/resources/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resources-v2/introduction)).
4931
+ * - The relevant services' [booking policies](https://dev.wix.com/docs/rest/business-solutions/bookings/policies/booking-policies/introduction).
4932
+ * - The availability of all required [resources](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resources-v2/introduction).
4959
4933
  *
4960
4934
  * Call this method to check if an existing multi-service booking is still valid after business configuration changes.
4961
4935
  * For example, staff changes, policy updates, or capacity modifications.
4962
4936
  *
4963
- * For checking availability before creating new multi-service bookings, call List Multi Service Availability Time Slots
4964
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/time-slots/multi-service-availability-time-slots/list-multi-service-availability-time-slots) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/time-slots/time-slots-v2/list-multi-service-availability-time-slots)) instead.
4937
+ * For checking availability before creating new multi-service bookings, call [List Multi Service Availability Time Slots](https://dev.wix.com/docs/rest/business-solutions/bookings/time-slots/time-slots-v2/list-multi-service-availability-time-slots) instead.
4965
4938
  * @param multiServiceBookingId - ID of the multi-service booking to retrieve.
4966
4939
  * @public
4967
4940
  * @documentationMaturity preview
@@ -4980,7 +4953,7 @@ declare function getMultiServiceBookingAvailability(multiServiceBookingId: strin
4980
4953
  * Cancels the entire multi-service booking, updating the status of all single-service bookings to `CANCELED`.
4981
4954
  * The call fails if all single-service bookings are already canceled or declined.
4982
4955
  *
4983
- * See Cancel Booking ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/bookings/cancel-booking) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/cancel-booking)) for single-service booking cancellation details.
4956
+ * See [Cancel Booking](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/cancel-booking) for single-service booking cancellation details.
4984
4957
  * @param multiServiceBookingId - ID of the multi-service booking to cancel.
4985
4958
  * @public
4986
4959
  * @documentationMaturity preview
@@ -5026,7 +4999,7 @@ interface CancelMultiServiceBookingOptions {
5026
4999
  * - __Customer notifications__: Send messages using `participantNotification`.
5027
5000
  * - __Revision control__: Requires current revision numbers for all single-service bookings.
5028
5001
  *
5029
- * See Mark Booking as Pending ([SDK](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/mark-booking-as-pending) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/mark-booking-as-pending)) for more details about marking single-service bookings as pending.
5002
+ * See [Mark Booking as Pending](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/mark-booking-as-pending) for more details about marking single-service bookings as pending.
5030
5003
  * @param multiServiceBookingId - ID of the multi-service booking to mark as `PENDING`.
5031
5004
  * @public
5032
5005
  * @documentationMaturity preview
@@ -5086,7 +5059,7 @@ interface MarkMultiServiceBookingAsPendingOptions {
5086
5059
  * - __Customer notifications__: Send messages using `participantNotification`.
5087
5060
  * - __Revision control__: Requires current revision numbers for all single-service bookings.
5088
5061
  *
5089
- * See Confirm Booking ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/bookings/confirm-booking) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/confirm-booking)) for more details about confirming single-service bookings.
5062
+ * See [Confirm Booking](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/confirm-booking) for more details about confirming single-service bookings.
5090
5063
  * @param multiServiceBookingId - ID of the multi-service booking to confirm its related bookings.
5091
5064
  * @public
5092
5065
  * @documentationMaturity preview
@@ -5142,7 +5115,7 @@ interface ConfirmMultiServiceBookingOptions {
5142
5115
  * - __Customer notifications__: Send messages using `participantNotification`.
5143
5116
  * - __Revision control__: Requires current revision numbers for all single-service bookings.
5144
5117
  *
5145
- * Refer to Decline Booking ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/bookings/decline-booking) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/decline-booking)) for more details about declining single-service bookings.
5118
+ * Refer to [Decline Booking](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/decline-booking) for more details about declining single-service bookings.
5146
5119
  * @param multiServiceBookingId - ID of the multi-service booking to decline.
5147
5120
  * @public
5148
5121
  * @documentationMaturity preview
@@ -5179,7 +5152,7 @@ interface DeclineMultiServiceBookingOptions {
5179
5152
  *
5180
5153
  * Bear the following considerations in mind when calling this method:
5181
5154
  *
5182
- * __Real-time validation__: Wix Bookings calculates allowed actions based on current multi-service booking status, booking policies ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/booking-policies/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/policies/booking-policies/introduction)), and available resources ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/resources/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resources-v2/introduction)) at the time of the call.
5155
+ * __Real-time validation__: Wix Bookings calculates allowed actions based on current multi-service booking status, [booking policies](https://dev.wix.com/docs/rest/business-solutions/bookings/policies/booking-policies/introduction), and [available resources](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resources-v2/introduction) at the time of the call.
5183
5156
  *
5184
5157
  * __Permission context__: Depending on the permissions of the calling [identity](https://dev.wix.com/docs/build-apps/develop-your-app/access/about-identities), you may see different allowed actions for the same multi-service booking. For example, if the identity has permissions to read only part of the multi-service booking, the response indicates which single-service bookings the identity can read.
5185
5158
  *
@@ -5203,7 +5176,7 @@ declare function bulkGetMultiServiceBookingAllowedActions(multiServiceBookingIds
5203
5176
  * If you call on behalf of an [identity](https://dev.wix.com/docs/build-apps/develop-your-app/access/about-identities) with permissions to read only part of the multi-service booking, only the permitted single-service bookings are retrieved.
5204
5177
  * The returned total number includes single-service bookings for which you don't have permissions.
5205
5178
  *
5206
- * See Query Extended Bookings ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/extended-bookings/query-extended-bookings) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-reader-v2/query-extended-bookings)) for details about retrieving individual single-service bookings and additional metadata.
5179
+ * See [Query Extended Bookings](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-reader-v2/query-extended-bookings) for details about retrieving individual single-service bookings and additional metadata.
5207
5180
  * @param multiServiceBookingId - ID of the multi-service booking.
5208
5181
  * @public
5209
5182
  * @documentationMaturity preview
@@ -5221,7 +5194,7 @@ declare function getMultiServiceBooking(multiServiceBookingId: string): Promise<
5221
5194
  * ### When to call this method
5222
5195
  *
5223
5196
  * Call this method to add 1 or more existing single-service bookings to an existing multi-service booking.
5224
- * For creating a new multi-service booking with new single-service bookings, call Create Multi Service Booking ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/bookings/create-multi-service-booking) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/create-multi-service-booking)) instead.
5197
+ * For creating a new multi-service booking with new single-service bookings, call [Create Multi Service Booking](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/create-multi-service-booking) instead.
5225
5198
  *
5226
5199
  * ### Package integration
5227
5200
  *
@@ -5270,7 +5243,7 @@ interface AddBookingsToMultiServiceBookingOptions {
5270
5243
  *
5271
5244
  * __Selective removal__: Specify single-service booking IDs and revisions to remove only specific single-service bookings from the package.
5272
5245
  *
5273
- * __Sequential scheduling__: To maintain sequential scheduling, remove only first or last single-service bookings. For middle bookings, first reschedule all relevant single-service bookings to eliminate gaps. To do so, call Reschedule Multi Service Booking ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/bookings/reschedule-multi-service-booking) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/reschedule-multi-service-booking)) before removing the unwanted bookings.
5246
+ * __Sequential scheduling__: To maintain sequential scheduling, remove only first or last single-service bookings. For middle bookings, first reschedule all relevant single-service bookings to eliminate gaps. To do so, call [Reschedule Multi Service Booking](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/reschedule-multi-service-booking) before removing the unwanted bookings.
5274
5247
  *
5275
5248
  * ### Removal behavior
5276
5249
  *