@wix/auto_sdk_bookings_multi-service-availability-time-slots 1.0.187 → 1.0.189

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.
@@ -9,7 +9,7 @@ import { NonNullablePaths } from '@wix/sdk-types';
9
9
  */
10
10
  interface TimeSlot {
11
11
  /**
12
- * Service ID ([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)).
12
+ * [Service ID] (https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/introduction).
13
13
  *
14
14
  * Available only for single-service bookings. For multi-service bookings, this field is empty and individual service IDs are provided in `nestedTimeSlots`.
15
15
  * @format GUID
@@ -32,7 +32,7 @@ interface TimeSlot {
32
32
  */
33
33
  localEndDate?: string | null;
34
34
  /**
35
- * Whether customers can book the slot according to the service's 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)).
35
+ * Whether customers can book the slot according to the service's [booking policies](https://dev.wix.com/docs/api-reference/business-solutions/bookings/policies/booking-policies/introduction).
36
36
  *
37
37
  * For multi-service bookings, this is `true` only when all services in the sequence comply with their respective booking policies.
38
38
  */
@@ -40,7 +40,7 @@ interface TimeSlot {
40
40
  /** Information about where the business provides the service to the customer. */
41
41
  location?: Location;
42
42
  /**
43
- * Information about the event ([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)) related to the slot.
43
+ * Information about the [event](https://dev.wix.com/docs/api-reference/business-management/calendar/events-v3/introduction) related to the slot.
44
44
  * Available only for classes. Not available for appointment-based services and courses.
45
45
  */
46
46
  eventInfo?: EventInfo;
@@ -75,7 +75,7 @@ interface TimeSlot {
75
75
  */
76
76
  bookingPolicyViolations?: BookingPolicyViolations;
77
77
  /**
78
- * List of 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)) available during the time slot.
78
+ * List of [resources](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/introduction) available during the time slot.
79
79
  *
80
80
  * Available only for single-service bookings. For multi-service bookings, resource information is provided in `nestedTimeSlots`.
81
81
  */
@@ -99,7 +99,7 @@ interface TimeSlot {
99
99
  }
100
100
  interface Location {
101
101
  /**
102
- * Location ID ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/locations/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/locations/introduction)).
102
+ * [Location ID](https://dev.wix.com/docs/api-reference/business-management/locations/introduction).
103
103
  * Available only for business locations.
104
104
  * @format GUID
105
105
  */
@@ -175,7 +175,7 @@ interface BookingPolicyViolations {
175
175
  }
176
176
  interface AvailableResources {
177
177
  /**
178
- * Resource type ID ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/resource-types/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resource-types-v2/introduction)).
178
+ * [Resource type ID](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resource-types-v2/introduction).
179
179
  * @format GUID
180
180
  */
181
181
  resourceTypeId?: string | null;
@@ -230,7 +230,7 @@ interface NestedTimeSlot {
230
230
  */
231
231
  localEndDate?: string;
232
232
  /**
233
- * List of 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)) available during the nested time slot.
233
+ * List of [resources](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/introduction) available during the nested time slot.
234
234
  * @maxSize 10
235
235
  */
236
236
  availableResources?: AvailableResources[];
@@ -286,7 +286,7 @@ interface ListMultiServiceAvailabilityTimeSlotsRequest {
286
286
  *
287
287
  * Required unless you specify `cursorPaging.cursor`.
288
288
  *
289
- * Default: `timeZone` specified in the business site properties ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/site-properties/get-site-properties) | [REST](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties)).
289
+ * Default: `timeZone` specified in the business [site properties](https://dev.wix.com/docs/api-reference/business-management/site-properties/properties/get-site-properties).
290
290
  * @minLength 1
291
291
  * @maxLength 150
292
292
  */
@@ -304,7 +304,7 @@ interface ListMultiServiceAvailabilityTimeSlotsRequest {
304
304
  bookable?: boolean | null;
305
305
  /**
306
306
  * Indicators for service's booking policy violations.
307
- * Allows filtering for time slots with specific violation types based on 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)). When you don't specify `bookingPolicyViolations` filters, all slots are returned regardless of their booking policy status.
307
+ * Allows filtering for time slots with specific violation types based on [booking policies](https://dev.wix.com/docs/api-reference/business-solutions/bookings/policies/booking-policies/introduction). When you don't specify `bookingPolicyViolations` filters, all slots are returned regardless of their booking policy status.
308
308
  */
309
309
  bookingPolicyViolations?: BookingPolicyViolations;
310
310
  /**
@@ -327,7 +327,7 @@ interface Service {
327
327
  */
328
328
  serviceId?: string;
329
329
  /**
330
- * Resource type IDs ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/resource-types/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resource-types-v2/introduction)) to include in returned time slots.
330
+ * Resource [type IDs](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resource-types-v2/introduction) to include in returned time slots.
331
331
  * This is in addition to the specifically requested resources.
332
332
  *
333
333
  * <blockquote>
@@ -383,7 +383,7 @@ interface V2CustomerChoices {
383
383
  }
384
384
  interface ResourceType {
385
385
  /**
386
- * Resource type ID ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/resource-types/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resource-types-v2/introduction)).
386
+ * [Resource type ID](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resource-types-v2/introduction).
387
387
  * @format GUID
388
388
  */
389
389
  resourceTypeId?: string | null;
@@ -394,6 +394,16 @@ interface ResourceType {
394
394
  * @maxSize 135
395
395
  */
396
396
  resourceIds?: string[] | null;
397
+ /**
398
+ * Whether to return resources of this type in a sorted order.
399
+ * + `true`: Resources are sorted using the relevant implementor of the [Resource Sorting service plugin](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resource-sorting-service-plugin/introduction).
400
+ * + `false`: Resources are returned in an unpredictable, but not entirely random, order.
401
+ * Sorting is not supported in the [List Availability Time Slots](https://dev.wix.com/docs/api-reference/business-solutions/bookings/time-slots/time-slots-v2/list-availability-time-slots) and [List Multi Service Availability Time Slots](https://dev.wix.com/docs/api-reference/business-solutions/bookings/time-slots/time-slots-v2/list-multi-service-availability-time-slots) methods.
402
+ *
403
+ * Default: `false`
404
+ * @internal
405
+ */
406
+ sorted?: boolean | null;
397
407
  }
398
408
  interface CursorPaging {
399
409
  /**
@@ -423,7 +433,7 @@ interface ListMultiServiceAvailabilityTimeSlotsResponse {
423
433
  /**
424
434
  * Time zone in [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database) for adjusting `fromLocalDate` and `toLocalDate`.
425
435
  * For example, `America/New_York` or `UTC`.
426
- * Default: `timeZone` specified in the business site properties ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/site-properties/get-site-properties) | [REST](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties)).
436
+ * Default: `timeZone` specified in the business [site properties](https://dev.wix.com/docs/api-reference/business-management/site-properties/properties/get-site-properties).
427
437
  * @minLength 1
428
438
  * @maxLength 150
429
439
  */
@@ -474,7 +484,7 @@ interface GetMultiServiceAvailabilityTimeSlotRequest {
474
484
  * Time zone in [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database) for adjusting `fromLocalDate` and `toLocalDate` values.
475
485
  * For example, `America/New_York` or `UTC`.
476
486
  *
477
- * Default: `timeZone` specified in the business site properties ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/site-properties/get-site-properties) | [REST](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties)).
487
+ * Default: `timeZone` specified in the business [site properties](https://dev.wix.com/docs/api-reference/business-management/site-properties/properties/get-site-properties).
478
488
  * @minLength 1
479
489
  * @maxLength 150
480
490
  */
@@ -492,7 +502,7 @@ interface GetMultiServiceAvailabilityTimeSlotResponse {
492
502
  /**
493
503
  * Time zone in [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database) for adjusting `fromLocalDate` and `toLocalDate`.
494
504
  * For example, `America/New_York` or `UTC`.
495
- * Default: `timeZone` specified in the business site properties ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/site-properties/get-site-properties) | [REST](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties)).
505
+ * Default: `timeZone` specified in the business [site properties](https://dev.wix.com/docs/api-reference/business-management/site-properties/properties/get-site-properties).
496
506
  * @minLength 1
497
507
  * @maxLength 150
498
508
  */
@@ -529,7 +539,7 @@ interface ListAvailabilityTimeSlotsRequest {
529
539
  * Time zone in [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database) for adjusting `fromLocalDate` and `toLocalDate`.
530
540
  * For example, `America/New_York` or `UTC`.
531
541
  *
532
- * Default: `timeZone` specified in the business site properties ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/site-properties/get-site-properties) | [REST](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties)).
542
+ * Default: `timeZone` specified in the business [site properties](https://dev.wix.com/docs/api-reference/business-management/site-properties/properties/get-site-properties).
533
543
  * @minLength 1
534
544
  * @maxLength 150
535
545
  */
@@ -555,7 +565,7 @@ interface ListAvailabilityTimeSlotsRequest {
555
565
  bookable?: boolean | null;
556
566
  /**
557
567
  * Indicators for service's booking policy violations.
558
- * Allows filtering for time slots with specific violation types based on 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)). When you don't specify `bookingPolicyViolations` filters, all slots are returned regardless of their booking policy status.
568
+ * Allows filtering for time slots with specific violation types based on [booking policies](https://dev.wix.com/docs/api-reference/business-solutions/bookings/policies/booking-policies/introduction)). When you don't specify `bookingPolicyViolations` filters, all slots are returned regardless of their booking policy status.
559
569
  */
560
570
  bookingPolicyViolations?: BookingPolicyViolations;
561
571
  /**
@@ -615,7 +625,7 @@ interface ListAvailabilityTimeSlotsResponse {
615
625
  * Time zone in [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database) for adjusting `fromLocalDate` and `toLocalDate`.
616
626
  * For example, `America/New_York` or `UTC`.
617
627
  *
618
- * Default: `timeZone` specified in the business site properties ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/site-properties/get-site-properties) | [REST](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties)).
628
+ * Default: `timeZone` specified in the business [site properties](https://dev.wix.com/docs/api-reference/business-management/site-properties/properties/get-site-properties).
619
629
  * @minLength 1
620
630
  * @maxLength 150
621
631
  */
@@ -649,7 +659,7 @@ interface GetAvailabilityTimeSlotRequest {
649
659
  * Time zone in [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database) for adjusting `fromLocalDate` and `toLocalDate`.
650
660
  * For example, `America/New_York` or `UTC`.
651
661
  *
652
- * Default: `timeZone` specified in the business site properties ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/site-properties/get-site-properties) | [REST](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties)).
662
+ * Default: `timeZone` specified in the business [site properties](https://dev.wix.com/docs/api-reference/business-management/site-properties/properties/get-site-properties).
653
663
  * @minLength 1
654
664
  * @maxLength 150
655
665
  */
@@ -662,7 +672,7 @@ interface GetAvailabilityTimeSlotRequest {
662
672
  */
663
673
  location?: Location;
664
674
  /**
665
- * IDs of the resource types ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/resource-types/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resource-types-v2/introduction)) to check availability for.
675
+ * IDs of the [resource types](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resource-types-v2/introduction) to check availability for.
666
676
  * @format GUID
667
677
  * @maxSize 100
668
678
  */
@@ -696,7 +706,7 @@ interface GetAvailabilityTimeSlotResponse {
696
706
  * Time zone in [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database) for adjusting `fromLocalDate` and `toLocalDate`.
697
707
  * For example, `America/New_York` or `UTC`.
698
708
  *
699
- * Default: `timeZone` specified in the business site properties ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/site-properties/get-site-properties) | [REST](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties)).
709
+ * Default: `timeZone` specified in the business [site properties](https://dev.wix.com/docs/api-reference/business-management/site-properties/properties/get-site-properties).
700
710
  * @minLength 1
701
711
  * @maxLength 150
702
712
  */
@@ -727,7 +737,7 @@ interface ListEventTimeSlotsRequest {
727
737
  * Time zone in [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database) for adjusting `fromLocalDate` and `toLocalDate` values.
728
738
  * For example, `America/New_York` or `UTC`.
729
739
  *
730
- * Default: `timeZone` specified in the business site properties ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/site-properties/get-site-properties) | [REST](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties)).
740
+ * Default: `timeZone` specified in the business [site properties](https://dev.wix.com/docs/api-reference/business-management/site-properties/properties/get-site-properties).
731
741
  * @maxLength 100
732
742
  */
733
743
  timeZone?: string | null;
@@ -773,7 +783,7 @@ interface ListEventTimeSlotsRequest {
773
783
  cursorPaging?: CursorPaging;
774
784
  /**
775
785
  * Indicators for service's booking policy violations.
776
- * Allows filtering for time slots with specific violation types based on 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)). When you don't specify `bookingPolicyViolations` filters, all slots are returned regardless of their booking policy status.
786
+ * Allows filtering for time slots with specific violation types based on [booking policies](https://dev.wix.com/docs/api-reference/business-solutions/bookings/policies/booking-policies/introduction). When you don't specify `bookingPolicyViolations` filters, all slots are returned regardless of their booking policy status.
777
787
  */
778
788
  bookingPolicyViolations?: BookingPolicyViolations;
779
789
  }
@@ -784,7 +794,7 @@ interface ListEventTimeSlotsResponse {
784
794
  * Time zone in [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database) for adjusting `fromLocalDate` and `toLocalDate` values.
785
795
  * For example, `America/New_York` or `UTC`.
786
796
  *
787
- * Default: `timeZone` specified in the business site properties ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/site-properties/get-site-properties) | [REST](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties)).
797
+ * Default: `timeZone` specified in the business [site properties](https://dev.wix.com/docs/api-reference/business-management/site-properties/properties/get-site-properties).
788
798
  * @minLength 1
789
799
  * @maxLength 150
790
800
  */
@@ -806,7 +816,7 @@ interface GetEventTimeSlotRequest {
806
816
  * Time zone in [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database) for adjusting `fromLocalDate` and `toLocalDate` values.
807
817
  * For example, `America/New_York` or `UTC`.
808
818
  *
809
- * Default: `timeZone` specified in the business site properties ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/site-properties/get-site-properties) | [REST](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties)).
819
+ * Default: `timeZone` specified in the business [site properties](https://dev.wix.com/docs/api-reference/business-management/site-properties/properties/get-site-properties).
810
820
  * @maxLength 100
811
821
  */
812
822
  timeZone?: string | null;
@@ -818,7 +828,7 @@ interface GetEventTimeSlotResponse {
818
828
  * Time zone in [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database) for adjusting `fromLocalDate` and `toLocalDate` values.
819
829
  * For example, `America/New_York` or `UTC`.
820
830
  *
821
- * Default: `timeZone` specified in the business site properties ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/site-properties/get-site-properties) | [REST](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties)).
831
+ * Default: `timeZone` specified in the business [site properties](https://dev.wix.com/docs/api-reference/business-management/site-properties/properties/get-site-properties).
822
832
  * @minLength 1
823
833
  * @maxLength 150
824
834
  */
@@ -886,11 +896,11 @@ type GetMultiServiceAvailabilityTimeSlotApplicationErrors = {
886
896
  *
887
897
  * Only appointment-type services are supported.
888
898
  *
889
- * To retrieve appointment availability for a single service, call List Availability Time Slots ([SDK](https://dev.wix.com/docs/api-reference/business-solutions/bookings/time-slots/time-slots-v2/list-availability-time-slots?apiView=SDK) | [REST](https://dev.wix.com/docs/api-reference/business-solutions/bookings/time-slots/time-slots-v2/list-availability-time-slots)).
899
+ * To retrieve appointment availability for a single service, call [List Availability Time Slots](https://dev.wix.com/docs/api-reference/business-solutions/bookings/time-slots/time-slots-v2/list-availability-time-slots).
890
900
  *
891
901
  * ### Booking policy filtering
892
902
  *
893
- * Use `bookingPolicyViolations` to filter slots based on booking restrictions defined in your 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)).
903
+ * Use `bookingPolicyViolations` to filter slots based on booking restrictions defined in your [booking policies](https://dev.wix.com/docs/api-reference/business-solutions/bookings/policies/booking-policies/introduction).
894
904
  *
895
905
  * *Default behavior**: When you don't specify any `bookingPolicyViolations` filters, all slots are returned regardless of their booking policy status.
896
906
  *
@@ -941,7 +951,7 @@ interface ListMultiServiceAvailabilityTimeSlotsOptions {
941
951
  *
942
952
  * Required unless you specify `cursorPaging.cursor`.
943
953
  *
944
- * Default: `timeZone` specified in the business site properties ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/site-properties/get-site-properties) | [REST](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties)).
954
+ * Default: `timeZone` specified in the business [site properties](https://dev.wix.com/docs/api-reference/business-management/site-properties/properties/get-site-properties).
945
955
  * @minLength 1
946
956
  * @maxLength 150
947
957
  */
@@ -959,7 +969,7 @@ interface ListMultiServiceAvailabilityTimeSlotsOptions {
959
969
  bookable?: boolean | null;
960
970
  /**
961
971
  * Indicators for service's booking policy violations.
962
- * Allows filtering for time slots with specific violation types based on 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)). When you don't specify `bookingPolicyViolations` filters, all slots are returned regardless of their booking policy status.
972
+ * Allows filtering for time slots with specific violation types based on [booking policies](https://dev.wix.com/docs/api-reference/business-solutions/bookings/policies/booking-policies/introduction). When you don't specify `bookingPolicyViolations` filters, all slots are returned regardless of their booking policy status.
963
973
  */
964
974
  bookingPolicyViolations?: BookingPolicyViolations;
965
975
  /**
@@ -992,7 +1002,7 @@ interface ListMultiServiceAvailabilityTimeSlotsOptions {
992
1002
  *
993
1003
  * Only appointment-type services are supported.
994
1004
  *
995
- * To retrieve appointment availability for a single service, call List Availability Time Slots ([SDK](https://dev.wix.com/docs/api-reference/business-solutions/bookings/time-slots/time-slots-v2/list-availability-time-slots?apiView=SDK) | [REST](https://dev.wix.com/docs/api-reference/business-solutions/bookings/time-slots/time-slots-v2/list-availability-time-slots)).
1005
+ * To retrieve appointment availability for a single service, call [List Availability Time Slots](https://dev.wix.com/docs/api-reference/business-solutions/bookings/time-slots/time-slots-v2/list-availability-time-slots).
996
1006
  * @param services - Services for which the multi-service time slots are returned.
997
1007
  * You can specify resource filters for each service.
998
1008
  * @param localStartDate - Local start date of the time slot in `YYYY-MM-DDThh:mm:ss` [ISO-8601 format](https://en.wikipedia.org/wiki/ISO_8601).
@@ -1002,7 +1012,7 @@ interface ListMultiServiceAvailabilityTimeSlotsOptions {
1002
1012
  * @param timeZone - Time zone in [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database) for adjusting `fromLocalDate` and `toLocalDate` values.
1003
1013
  * For example, `America/New_York` or `UTC`.
1004
1014
  *
1005
- * Default: `timeZone` specified in the business site properties ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/site-properties/get-site-properties) | [REST](https://dev.wix.com/docs/rest/business-management/site-properties/properties/get-site-properties)).
1015
+ * Default: `timeZone` specified in the business [site properties](https://dev.wix.com/docs/api-reference/business-management/site-properties/properties/get-site-properties).
1006
1016
  * @param location - Location for which the multi-service time slots are returned. If you filter by `{"type": "BUSINESS"}`, you must also specify a location ID. A filter for `location.name` is ignored.
1007
1017
  *
1008
1018
  * Required unless you specify `cursorPaging.cursor`.