@wix/bookings 1.0.301 → 1.0.303

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.
@@ -43,102 +43,83 @@ const _listAvailabilityTimeSlotsResponse = {};
43
43
  const _listMultiServiceAvailabilityTimeSlotsRequest = {};
44
44
  const _listMultiServiceAvailabilityTimeSlotsResponse = {};
45
45
  /**
46
- * Retrieves a list of multiService `TimeSlot`'s that match the provided filters.
46
+ * Retrieves a list of multiService `TimeSlot`s that match the provided filters.
47
+ *
47
48
  * <blockquote class="important">
48
49
  * <p><strong>Important:</strong><br/>
49
- * Currently supported only for services of type `APPOINTMENT`.
50
- * </p>
50
+ * Currently supported only for services of type <code class="grey-background">APPOINTMENT</code>.</p>
51
51
  * </blockquote>
52
52
  *
53
- * The request body __must__ include one of:
54
- *
55
- * + All of the following filters: `serviceId`, `fromLocalDate`, `toLocalDate`, `location`, and `timeZone`. You may add additional filters as you wish.
53
+ * The request body __must__ include either:
54
+ * + All of the following filters: `service`.`serviceId`, `fromLocalDate`, `toLocalDate`, `location`, and `timeZone`. You may add additional filters as you wish.
56
55
  * + A `cursorPaging` with a valid `cursor` from previous response.
57
56
  *
58
57
  *
59
58
  * Each [TimeSlot](https://bo.wix.com/wix-docs/rest/all-apis/wix-service-availability/availability-time-slots/time-slot-object) in response
60
- * represents the availability of the given list of services in a specific location, within a given range of time.
59
+ * represents the availability of the given sequence of services in a specific order, location, and within a given range of time.
61
60
  *
62
61
  * Each `TimeSlot`.`NestedTimeSlot` represents a single service from the given list. The order of the `NestedTimeSlots` is the same as the order
63
62
  * of the given services in request.
64
- *
65
- * The first `NestedTimeSlot` has `localStartDate` within the given `fromLocalDate` and `toLocalDate` - exclusive,
63
+ * The first `NestedTimeSlot` has `localStartDate` within the given `fromLocalDate` and `toLocalDate` exclusive,
66
64
  * and each following `NestedTimeSlot` has a `localStartDate` that equals to the previous `NestedTimeSlot`'s `localEndDate`.
67
65
  *
66
+ * By default,
67
+ * the response contains at most 1000 results.
68
+ * If there are more than 1000 results, we return a `cursorPagingMetadata` with
69
+ * a cursor for the next page of results, regardless of whether a `cursorPaging`
70
+ * was provided in request.
71
+ *
68
72
  * > __Notes:__
69
73
  * > + All nested time slots share the same location.
70
74
  * > + You can pass up to 8 services in request.
71
75
  *
72
76
  * ### AvailableResources in response:
77
+ * The `TimeSlot`.`NestedTimeSlot`'s `AvailableResources` contains information about the resources that are available to provide the service
78
+ * within the `NestedTimeSlot` range of time. Each `AvailableResources` contains information about available resources of the same type.
79
+ *
73
80
  * <blockquote class="important">
74
81
  * <p><strong>Important:</strong><br/>
75
82
  * By default,
76
- * if you don't specify `service`.`includeResourceTypeIds` or `service`.`resourceIds` filters in request,
77
- * we return `TimeSlot`.`NestedTimeSlot`'s with an empty `AvailableResources`.
83
+ * if you don't specify <code class="grey-background">service</code>.<code class="grey-background">includeResourceTypeIds</code>
84
+ * or <code class="grey-background">service</code>.<code class="grey-background">resourceIds</code> filters in request,
85
+ * we return TimeSlots with <code class="grey-background">NestedTimeSlot</code>s with an empty <code class="grey-background">AvailableResources</code>.
86
+ * <br/><strong>Note:</strong><br/> Not specifying resources filters can be handy in case you want to avoid large response in flows that only
87
+ * interested of whether the time slots are available. [Finding the next available slot within the next 3 months](https://bo.wix.com/wix-docs/rest/all-apis/service-availability/multi-service-availability-time-slots/sample-flows?localViewerId=inbari#all-apis_service-availability_multi-service-availability-time-slots_sample-flows_find-the-first-date-within-the-next-3-months-that-all-selected-services-are-available-for)
88
+ * is an example for such flow.
78
89
  * </p>
79
90
  * </blockquote>
80
91
  *
92
+ *
81
93
  * If you wish to get a list of available resources for a `TimeSlot`.`NestedTimeSlot` you should either:
82
94
  * + provide `service`.`resourceIds` in request.
83
95
  * + provide `service`.`includeResourceTypeIds` in request.
84
96
  *
85
- * > __Notes:__
86
- * >
87
- * > + In both cases the returned `TimeSlot`.`NestedTimeSlot`'s contains __up__ to 10 `AvailableResources` that match the provided filters.
88
- * > Each `AvailableResources` contains __up__ to 10 available `resources` of the same type that match the provided filters.
89
- * >
90
- * > + If an `AvailableResources` has more available resources which are not listed within it,
91
- * > we return `AvailableResources`.`hasMoreAvailableResources` as true.
92
- * > + If you wish to get the full available resources list for all `NestedTimeSlot` of a specific `TimeSlot`,
93
- * > you can call [GetMultiServiceAvailabilityTimeSlot](https://bo.wix.com/wix-docs/rest/all-apis/wix-service-availability/multi-service-availability-time-slots/get-multi-service-availability-time-slot).
94
- *
97
+ * __Notes:__
98
+ * + In both cases the returned `TimeSlot`.`NestedTimeSlot` contains __up__ to 10 `AvailableResources` that match the provided filters. Each `AvailableResources` contains __up__ to 10 available `resources` of the same type that match the provided filters.
99
+ * + If an `AvailableResources` has more available resources which are not listed within it, we return `AvailableResources`.`hasMoreAvailableResources` as true.
100
+ * + If you wish to get the full available resources list for all `NestedTimeSlot` of a specific `TimeSlot`, you should call [GetMultiServiceAvailabilityTimeSlot](https://bo.wix.com/wix-docs/rest/all-apis/wix-service-availability/multi-service-availability-time-slots/get-multi-service-availability-time-slot).
95
101
  *
96
- * ### Availability VS Bookability:
97
- * An available time slot is not necessarily bookable.
98
102
  *
103
+ * ### Availability VS Bookability
104
+ * An `available` time slot is not necessarily `bookable`.
99
105
  * The `bookable` field of a `TimeSlot` indicates whether the customer can book all of the of the services within the given time slot,
100
106
  * at a specific period of time.
101
107
  * Read more about [Availability VS Bookability](https://bo.wix.com/wix-docs/rest/all-apis/wix-service-availability/multi-service-availability-time-slots/introduction#all-apis_wix-service-availability_multi-service-availability-time-slots_introduction_availability-vs-bookability).
102
108
  *
103
109
  * By default,
104
- * + The response does not contains unavailable `TimeSlot`'s.
105
- * For example,
106
- * if there are no available resources to provide the service from `2024-01-30T14:30:00` to `2024-01-30T15:30:00`,
107
- * we don't return `TimeSlot`'s with `localStartDate` within this range.
108
- * + The response contains both `bookable` and `un-bookable` `TimeSlot`'s.
109
- * For example,
110
- * if one of the services has a booking policy which enforces booking the service up to 10 minutes before the session starts,
111
- * we return `TimeSlot`'s with the violating `localStartDate` with `bookable` as false.
112
- * If you want to list only __bookable__ `TimeSlots` you should pass `bookable` as true.
113
- * + If booking one of the `NestedTimeSlot`'s violates one of the corresponding service's booking policies,
114
- * the `TimeSlot` returns with `bookable` as false. There is no indication which service's policy was violated.
110
+ * + The response does not contains `unavailable` TimeSlots.For example, if there are no available resources to provide one of the services from `2024-01-30T14:30:00` to `2024-01-30T15:30:00`, we don't return TimeSlots with `NestedTimeSlot`.`localStartDate` within this range for this service.
111
+ * + The response contains both `bookable` and `un-bookable` TimeSlots.For example, if one of the services has a booking policy which enforces booking the service up to 10 minutes before the session starts, we return TimeSlots with the violating `NestedTimeSlot`.`localStartDate`, with `bookable` as `false`. If you want to list only __bookable__ TimeSlots you should pass `bookable` as `true`.
112
+ * + If booking one of the `NestedTimeSlot`s violates one of the corresponding service's booking policies, the `TimeSlot` returns with `bookable` as false. There is no indication which service's policy was violated.
115
113
  *
116
114
  * <blockquote class="important">
117
- * <p><strong>Important:</strong><br/>
115
+ * <p><strong>Important:</strong>
118
116
  * Because of DST, there are edge cases where certain times either do not exist or exist twice for a local time zone.
119
- * Read about [DST Handling](https://bo.wix.com/wix-docs/rest/all-apis/wix-service-availability/multi-service-availability-time-slots/introduction#all-apis_wix-service-availability_multi-service-availability-time-slots_introduction_daylight-saving-time-dst-handling)
120
- * </p>
117
+ * Read more about <a href="https://bo.wix.com/wix-docs/rest/all-apis/wix-service-availability/multi-service-availability-time-slots/introduction#all-apis_wix-service-availability_multi-service-availability-time-slots_introduction_daylight-saving-time-dst-handling">DST Handling</a></p>
121
118
  * </blockquote>
122
119
  *
123
- *
124
- * ### Pagination:
125
- * You can specify how many `TimeSlot`'s will return in response by providing a `limit`
126
- * for the `cursorPaging` in request.
127
- *
128
- * If there are more `TimeSlot`s that match the provided filters, we return a `cursorPagingMetaData`
129
- * with `hasNext` = true and a `cursors`.`next` that points to the next page of results.
130
- * In order to retrieve the next page of results, you should only provide `cursorPaging` with a limit and the cursor
131
- * you got in previous call to `cursorPaging`.`cursor` in the request of the following call.
132
- *
133
- * By default,
134
- * the response contains at most 1000 results.
135
- * If there are more than 1000 results, we return a `cursorPagingMetadata` with
136
- * a cursor for the next page of results, regardless of whether a `cursorPaging`
137
- * was provided in request.
138
- *
139
- * #### ListAvailabilityTimeSlots runs with the following defaults:
140
- * + `cursorPaging`.`limit` is 1000.
120
+ * ### ListAvailabilityTimeSlots runs with the following defaults:
141
121
  * + `localStartDate` is sorted in `ASC` order.
122
+ * + `cursorPaging`.`limit` is `1000`.
142
123
  * @public
143
124
  * @documentationMaturity preview
144
125
  * @permissionScope Read Bookings - Public Data
@@ -211,8 +192,7 @@ export function listMultiServiceAvailabilityTimeSlots(options) {
211
192
  *
212
193
  * <blockquote class="important">
213
194
  * <p><strong>Important:</strong><br/>
214
- * Currently supported only for services of type `APPOINTMENT`.
215
- * </p>
195
+ * Currently supported only for services of type <code class="grey-background">APPOINTMENT</code>.</p>
216
196
  * </blockquote>
217
197
  *
218
198
  * By default,
@@ -228,7 +208,12 @@ export function listMultiServiceAvailabilityTimeSlots(options) {
228
208
  * + Notes:
229
209
  * + All nested time slots share the same location.
230
210
  * + You can pass up to 8 services.
231
- * @param services - Services for which the multiService time slots are being returned for.
211
+ *
212
+ * <blockquote class="tip">
213
+ * <p><strong>Tip:</strong><br/>
214
+ * Use this API in order to get the availability of a specific <code class="grey-background">TimeSlot</code> out of those returned from <code class="grey-background">ListMultiServiceAvailabilityTimeSlots</code> API.</p>
215
+ * </blockquote>
216
+ * @param services - Services for which the multiService TimeSlots are being returned for.
232
217
  * Each service contains its own resources filters within.
233
218
  *
234
219
  * MinSize: 2.
@@ -304,30 +289,43 @@ export function getMultiServiceAvailabilityTimeSlot(services, options) {
304
289
  });
305
290
  }
306
291
  /**
307
- * Retrieves a list of `TimeSlot`'s that match the provided filters.
292
+ * Retrieves a list of `TimeSlot`s that match the provided filters.
308
293
  *
309
294
  * <blockquote class="important">
310
- * <p><strong>Important:</strong><br/>
311
- * Currently supported only for services of type `APPOINTMENT`.
312
- * </p>
295
+ * <p><strong>Important:</strong>
296
+ * Currently supported only for services of type <code class="grey-background">APPOINTMENT</code>.</p>
313
297
  * </blockquote>
314
298
  *
315
- * The request body __must__ include one of:
316
- *
317
- * + All of the following filters: `serviceId`, `fromLocalDate`, `toLocalDate`, and `timeZone`. You may add additional filters as you wish.
299
+ * The request body __must__ include either:
300
+ * + All of the following filters: `serviceId`, `fromLocalDate`, `toLocalDate`, and `timeZone`.
301
+ * You may add additional filters as you wish.
318
302
  * + A `cursorPaging` with a valid `cursor` from previous response.
319
303
  *
304
+ *
320
305
  * Each [TimeSlot](https://bo.wix.com/wix-docs/rest/all-apis/wix-service-availability/availability-time-slots/time-slot-object) in response
321
306
  * represents the availability of the service in a specific location,
322
307
  * and has a `localStartDate` within the range of the provided `fromLocalDate` and `toLocalDate` exclusive.
308
+ * The `localEndDate` of a `TimeSlot` is calculated as the sum of the `TimeSlot`'s `localStartDate` and the duration of the service.
309
+ *
310
+ * By default,
311
+ * the response contains at most 1000 results.
312
+ * If there are more than 1000 results, we return a `cursorPagingMetadata` with
313
+ * a cursor for the next page of results, regardless of whether a `cursorPaging`
314
+ * was provided in request.
323
315
  *
316
+ * ### AvailableResources in response
317
+ * The `TimeSlot`'s `AvailableResources` contains information about the resources that are available to provide the service
318
+ * within the time slot. Each `AvailableResources` contains information about available resources of the same type.
324
319
  *
325
- * ### AvailableResources in response:
326
320
  * <blockquote class="important">
327
321
  * <p><strong>Important:</strong><br/>
328
322
  * By default,
329
- * if you don't specify `includeResourceTypeIds` or `resourceIds` filters in request,
330
- * we return `TimeSlot`'s with an empty `AvailableResources`.
323
+ * if you don't specify <code class="grey-background">includeResourceTypeIds</code>
324
+ * or <code class="grey-background">resourceIds</code> filters in request,
325
+ * we return TimeSlots with an empty <code class="grey-background">AvailableResources</code>.
326
+ * <br/><strong>Note:</strong><br/> Not specifying resources filters can be handy in case you want to avoid large response in flows that only
327
+ * interested of whether the time slots are available. [Finding the next available slot within the next 3 months](https://bo.wix.com/wix-docs/rest/all-apis/service-availability/availability-time-slots/sample-flows?localViewerId=inbari#all-apis_service-availability_availability-time-slots_sample-flows_find-the-first-date-within-the-next-3-months-that-the-selected-service-is-available-for)
328
+ * is an example for such flow.
331
329
  * </p>
332
330
  * </blockquote>
333
331
  *
@@ -335,61 +333,43 @@ export function getMultiServiceAvailabilityTimeSlot(services, options) {
335
333
  * + provide `resourceIds` in request.
336
334
  * + provide `includeResourceTypeIds` in request.
337
335
  *
338
- * > __Notes:__
339
- * >
340
- * > + In both cases the returned `TimeSlot`'s contains __up__ to 10 `AvailableResources` that match the provided filters.
341
- * > Each `AvailableResources` contains __up__ to 10 available `resources` of the same type that match the provided filters.
342
- * >
343
- * > + If an `AvailableResources` has more available resources which are not listed within it,
344
- * > we return `AvailableResources`.`hasMoreAvailableResources` as true.
345
- * > + If you wish to get the full available resources list for a specific `TimeSlot`,
346
- * > you can call [GetAvailabilityTimeSlot](https://bo.wix.com/wix-docs/rest/all-apis/wix-service-availability/service-availability-time-slots/get-availability-time-slot).
347
- *
336
+ * __Notes:__
337
+ * + In both cases the returned TimeSlots contains __up__ to 10 `AvailableResources` that match the provided filters.
338
+ * Each `AvailableResources` contains __up__ to 10 available `resources` of the same type that match the provided filters.
339
+ * + If an `AvailableResources` has more available resources which are not listed within it,
340
+ * we return `AvailableResources`.`hasMoreAvailableResources` as true.
341
+ * > __Note:__
342
+ * > If you wish to get the full available resources list for a specific `TimeSlot`,
343
+ * > you should call [GetAvailabilityTimeSlot](https://bo.wix.com/wix-docs/rest/all-apis/wix-service-availability/service-availability-time-slots/get-availability-time-slot).
348
344
  *
349
- * ### Availability VS Bookability:
350
- * An available time slot is not necessarily bookable.
351
345
  *
346
+ * ### Availability VS Bookability
347
+ * An `available` time slot is not necessarily `bookable`.
352
348
  * The `bookable` field of a `TimeSlot` indicates whether a customer can book the service within the given time slot,
353
349
  * at a specific period of time.
354
350
  * Read more about [Availability VS Bookability](https://bo.wix.com/wix-docs/rest/all-apis/wix-service-availability/service-availability-time-slots/introduction#all-apis_wix-service-availability_service-availability-time-slots_introduction_availability-vs-bookability).
355
351
  *
356
352
  * By default,
357
- * + The response does not contains unavailable `TimeSlot`'s.
353
+ * + The response does not contains `unavailable` TimeSlots.
358
354
  * For example,
359
355
  * if there are no available resources to provide the service from `2024-01-30T14:30:00` to `2024-01-30T15:30:00`,
360
- * we don't return `TimeSlot`'s with `localStartDate` within this range.
361
- * + The response contains both `bookable` and `un-bookable` `TimeSlot`'s.
356
+ * we don't return TimeSlots with `localStartDate` within this range.
357
+ * + The response contains both `bookable` and `un-bookable` TimeSlots.
362
358
  * For example,
363
359
  * if the service has a booking policy which enforces booking the service up to 10 minutes before the session starts,
364
- * we return `TimeSlot`'s with the violating `localStartDate` with `bookable` as false.
365
- * If you want to list only __bookable__ `TimeSlots` you should pass `bookable` as true.
360
+ * we return TimeSlots with the violating `localStartDate` with `bookable` as false.
361
+ * If you wish to list only available __bookable__ TimeSlots you should pass `bookable` filter as true.
366
362
  *
367
363
  * <blockquote class="important">
368
- * <p><strong>Important:</strong><br/>
364
+ * <p><strong>Important:</strong>
369
365
  * Because of DST, there are edge cases where certain times either do not exist or exist twice for a local time zone.
370
- * Read about [DST Handling](https://bo.wix.com/wix-docs/rest/all-apis/wix-service-availability/service-availability-time-slots/introduction#all-apis_wix-service-availability_service-availability-time-slots_introduction_daylight-saving-time-dst-handling)
371
- * </p>
366
+ * Read more about <a href="https://bo.wix.com/wix-docs/rest/all-apis/service-availability/availability-time-slots/introduction?localViewerId=inbari#all-apis_service-availability_availability-time-slots_introduction_daylight-saving-time-dst-handling">DST Handling</a></p>
372
367
  * </blockquote>
373
368
  *
374
369
  *
375
- * ### Pagination:
376
- * You can specify how many `TimeSlot`'s will return in response by providing a `limit`
377
- * for the `cursorPaging` in request.
378
- *
379
- * If there are more `TimeSlot`s that match the provided filters, we return a `cursorPagingMetaData`
380
- * with `hasNext` = true and a `cursors`.`next` that points to the next page of results.
381
- * In order to retrieve the next page of results, you should only provide `cursorPaging` with a limit and the cursor
382
- * you got in previous call to `cursorPaging`.`cursor` in the request of the following call.
383
- *
384
- * By default,
385
- * the response contains at most 1000 results.
386
- * If there are more than 1000 results, we return a `cursorPagingMetadata` with
387
- * a cursor for the next page of results, regardless of whether a `cursorPaging`
388
- * was provided in request.
389
- *
390
- * #### ListAvailabilityTimeSlots runs with the following defaults:
391
- * + `cursorPaging`.`limit` is 1000.
392
- * + `localStartDate` is sorted in `ASC` order.
370
+ * ### ListAvailabilityTimeSlots runs with the following defaults
371
+ * + `localStartDate` is sorted in `ASC` order
372
+ * + `cursorPaging`.`limit` is `1000`
393
373
  * @public
394
374
  * @documentationMaturity preview
395
375
  * @permissionScope Read Bookings - Public Data
@@ -464,8 +444,7 @@ export function listAvailabilityTimeSlots(options) {
464
444
  *
465
445
  * <blockquote class="important">
466
446
  * <p><strong>Important:</strong><br/>
467
- * Currently supported only for services of type `APPOINTMENT`.
468
- * </p>
447
+ * Currently supported only for services of type <code class="grey-background">APPOINTMENT</code>.</p>
469
448
  * </blockquote>
470
449
  *
471
450
  * By default,
@@ -477,8 +456,14 @@ export function listAvailabilityTimeSlots(options) {
477
456
  * the returned `TimeSlot` will contain only `AvailableResources` with at least one available resource
478
457
  * which match the given resources filters,
479
458
  * each contains all available resources out of those requested.
459
+ *
460
+ *
461
+ * <blockquote class="tip">
462
+ * <p><strong>Tip:</strong><br/>
463
+ * Use this API in order to get the availability of a specific <code class="grey-background">TimeSlot</code> out of those returned from <code class="grey-background">ListAvailabilityTimeSlots</code> API.</p>
464
+ * </blockquote>
480
465
  * @param serviceId - Service ID of the time slot.
481
- * Currently supports only services of type `Appointment`.
466
+ * Currently supported only for services of type `APPOINTMENT`.
482
467
  * @public
483
468
  * @documentationMaturity preview
484
469
  * @requiredField options.localEndDate
@@ -1 +1 @@
1
- {"version":3,"file":"bookings-availability-v2-time-slot.universal.js","sourceRoot":"","sources":["../../../src/bookings-availability-v2-time-slot.universal.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"bookings-availability-v2-time-slot.universal.js","sourceRoot":"","sources":["../../../src/bookings-availability-v2-time-slot.universal.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/bookings",
3
- "version": "1.0.301",
3
+ "version": "1.0.303",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -19,13 +19,8 @@
19
19
  "@wix/motion-edm-autogen-query-wrapper": "^1.0.0",
20
20
  "@wix/sdk-types": "^1.0.0"
21
21
  },
22
- "devDependencies": {
23
- "@wix/typescript-to-service-json": "^1.0.0"
24
- },
25
22
  "scripts": {
26
23
  "build": "tsc -b tsconfig.json tsconfig.esm.json",
27
- "autodocs": "ts-to-sj",
28
- "posttest": "npm run autodocs",
29
24
  "test": ":"
30
25
  },
31
26
  "wix": {
@@ -34,5 +29,5 @@
34
29
  "groupId": "com.wixpress.public-sdk-autogen"
35
30
  }
36
31
  },
37
- "falconPackageHash": "9b763367f774ba5eba31a37c7e1f98d4efc22f95d3779e6534be07cb"
32
+ "falconPackageHash": "b3e7b0b6dd8b10d67de2aea4bb9a94734d2062191976617ac50b0b8b"
38
33
  }