@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.
@@ -227,102 +227,83 @@ function resolveComWixpressBookingsAvailabilityV2MultiServiceAvailabilityTimeSlo
227
227
  return resolveUrl(Object.assign(opts, { domainToMappings }));
228
228
  }
229
229
  /**
230
- * Retrieves a list of multiService `TimeSlot`'s that match the provided filters.
230
+ * Retrieves a list of multiService `TimeSlot`s that match the provided filters.
231
+ *
231
232
  * <blockquote class="important">
232
233
  * <p><strong>Important:</strong><br/>
233
- * Currently supported only for services of type `APPOINTMENT`.
234
- * </p>
234
+ * Currently supported only for services of type <code class="grey-background">APPOINTMENT</code>.</p>
235
235
  * </blockquote>
236
236
  *
237
- * The request body __must__ include one of:
238
- *
239
- * + All of the following filters: `serviceId`, `fromLocalDate`, `toLocalDate`, `location`, and `timeZone`. You may add additional filters as you wish.
237
+ * The request body __must__ include either:
238
+ * + All of the following filters: `service`.`serviceId`, `fromLocalDate`, `toLocalDate`, `location`, and `timeZone`. You may add additional filters as you wish.
240
239
  * + A `cursorPaging` with a valid `cursor` from previous response.
241
240
  *
242
241
  *
243
242
  * Each [TimeSlot](https://bo.wix.com/wix-docs/rest/all-apis/wix-service-availability/availability-time-slots/time-slot-object) in response
244
- * represents the availability of the given list of services in a specific location, within a given range of time.
243
+ * represents the availability of the given sequence of services in a specific order, location, and within a given range of time.
245
244
  *
246
245
  * Each `TimeSlot`.`NestedTimeSlot` represents a single service from the given list. The order of the `NestedTimeSlots` is the same as the order
247
246
  * of the given services in request.
248
- *
249
- * The first `NestedTimeSlot` has `localStartDate` within the given `fromLocalDate` and `toLocalDate` - exclusive,
247
+ * The first `NestedTimeSlot` has `localStartDate` within the given `fromLocalDate` and `toLocalDate` exclusive,
250
248
  * and each following `NestedTimeSlot` has a `localStartDate` that equals to the previous `NestedTimeSlot`'s `localEndDate`.
251
249
  *
250
+ * By default,
251
+ * the response contains at most 1000 results.
252
+ * If there are more than 1000 results, we return a `cursorPagingMetadata` with
253
+ * a cursor for the next page of results, regardless of whether a `cursorPaging`
254
+ * was provided in request.
255
+ *
252
256
  * > __Notes:__
253
257
  * > + All nested time slots share the same location.
254
258
  * > + You can pass up to 8 services in request.
255
259
  *
256
260
  * ### AvailableResources in response:
261
+ * The `TimeSlot`.`NestedTimeSlot`'s `AvailableResources` contains information about the resources that are available to provide the service
262
+ * within the `NestedTimeSlot` range of time. Each `AvailableResources` contains information about available resources of the same type.
263
+ *
257
264
  * <blockquote class="important">
258
265
  * <p><strong>Important:</strong><br/>
259
266
  * By default,
260
- * if you don't specify `service`.`includeResourceTypeIds` or `service`.`resourceIds` filters in request,
261
- * we return `TimeSlot`.`NestedTimeSlot`'s with an empty `AvailableResources`.
267
+ * if you don't specify <code class="grey-background">service</code>.<code class="grey-background">includeResourceTypeIds</code>
268
+ * or <code class="grey-background">service</code>.<code class="grey-background">resourceIds</code> filters in request,
269
+ * we return TimeSlots with <code class="grey-background">NestedTimeSlot</code>s with an empty <code class="grey-background">AvailableResources</code>.
270
+ * <br/><strong>Note:</strong><br/> Not specifying resources filters can be handy in case you want to avoid large response in flows that only
271
+ * 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)
272
+ * is an example for such flow.
262
273
  * </p>
263
274
  * </blockquote>
264
275
  *
276
+ *
265
277
  * If you wish to get a list of available resources for a `TimeSlot`.`NestedTimeSlot` you should either:
266
278
  * + provide `service`.`resourceIds` in request.
267
279
  * + provide `service`.`includeResourceTypeIds` in request.
268
280
  *
269
- * > __Notes:__
270
- * >
271
- * > + In both cases the returned `TimeSlot`.`NestedTimeSlot`'s contains __up__ to 10 `AvailableResources` that match the provided filters.
272
- * > Each `AvailableResources` contains __up__ to 10 available `resources` of the same type that match the provided filters.
273
- * >
274
- * > + If an `AvailableResources` has more available resources which are not listed within it,
275
- * > we return `AvailableResources`.`hasMoreAvailableResources` as true.
276
- * > + If you wish to get the full available resources list for all `NestedTimeSlot` of a specific `TimeSlot`,
277
- * > 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).
278
- *
281
+ * __Notes:__
282
+ * + 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.
283
+ * + If an `AvailableResources` has more available resources which are not listed within it, we return `AvailableResources`.`hasMoreAvailableResources` as true.
284
+ * + 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).
279
285
  *
280
- * ### Availability VS Bookability:
281
- * An available time slot is not necessarily bookable.
282
286
  *
287
+ * ### Availability VS Bookability
288
+ * An `available` time slot is not necessarily `bookable`.
283
289
  * The `bookable` field of a `TimeSlot` indicates whether the customer can book all of the of the services within the given time slot,
284
290
  * at a specific period of time.
285
291
  * 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).
286
292
  *
287
293
  * By default,
288
- * + The response does not contains unavailable `TimeSlot`'s.
289
- * For example,
290
- * if there are no available resources to provide the service from `2024-01-30T14:30:00` to `2024-01-30T15:30:00`,
291
- * we don't return `TimeSlot`'s with `localStartDate` within this range.
292
- * + The response contains both `bookable` and `un-bookable` `TimeSlot`'s.
293
- * For example,
294
- * if one of the services has a booking policy which enforces booking the service up to 10 minutes before the session starts,
295
- * we return `TimeSlot`'s with the violating `localStartDate` with `bookable` as false.
296
- * If you want to list only __bookable__ `TimeSlots` you should pass `bookable` as true.
297
- * + If booking one of the `NestedTimeSlot`'s violates one of the corresponding service's booking policies,
298
- * the `TimeSlot` returns with `bookable` as false. There is no indication which service's policy was violated.
294
+ * + 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.
295
+ * + 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`.
296
+ * + 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.
299
297
  *
300
298
  * <blockquote class="important">
301
- * <p><strong>Important:</strong><br/>
299
+ * <p><strong>Important:</strong>
302
300
  * Because of DST, there are edge cases where certain times either do not exist or exist twice for a local time zone.
303
- * 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)
304
- * </p>
301
+ * 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>
305
302
  * </blockquote>
306
303
  *
307
- *
308
- * ### Pagination:
309
- * You can specify how many `TimeSlot`'s will return in response by providing a `limit`
310
- * for the `cursorPaging` in request.
311
- *
312
- * If there are more `TimeSlot`s that match the provided filters, we return a `cursorPagingMetaData`
313
- * with `hasNext` = true and a `cursors`.`next` that points to the next page of results.
314
- * In order to retrieve the next page of results, you should only provide `cursorPaging` with a limit and the cursor
315
- * you got in previous call to `cursorPaging`.`cursor` in the request of the following call.
316
- *
317
- * By default,
318
- * the response contains at most 1000 results.
319
- * If there are more than 1000 results, we return a `cursorPagingMetadata` with
320
- * a cursor for the next page of results, regardless of whether a `cursorPaging`
321
- * was provided in request.
322
- *
323
- * #### ListAvailabilityTimeSlots runs with the following defaults:
324
- * + `cursorPaging`.`limit` is 1000.
304
+ * ### ListAvailabilityTimeSlots runs with the following defaults:
325
305
  * + `localStartDate` is sorted in `ASC` order.
306
+ * + `cursorPaging`.`limit` is `1000`.
326
307
  */
327
308
  export function listMultiServiceAvailabilityTimeSlots(payload) {
328
309
  const { toJSON: toReq, fromJSON: fromReq } = serializer(_listMultiServiceAvailabilityTimeSlotsRequest, {});
@@ -353,8 +334,7 @@ export function listMultiServiceAvailabilityTimeSlots(payload) {
353
334
  *
354
335
  * <blockquote class="important">
355
336
  * <p><strong>Important:</strong><br/>
356
- * Currently supported only for services of type `APPOINTMENT`.
357
- * </p>
337
+ * Currently supported only for services of type <code class="grey-background">APPOINTMENT</code>.</p>
358
338
  * </blockquote>
359
339
  *
360
340
  * By default,
@@ -370,6 +350,11 @@ export function listMultiServiceAvailabilityTimeSlots(payload) {
370
350
  * + Notes:
371
351
  * + All nested time slots share the same location.
372
352
  * + You can pass up to 8 services.
353
+ *
354
+ * <blockquote class="tip">
355
+ * <p><strong>Tip:</strong><br/>
356
+ * 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>
357
+ * </blockquote>
373
358
  */
374
359
  export function getMultiServiceAvailabilityTimeSlot(payload) {
375
360
  const { toJSON: toReq, fromJSON: fromReq } = serializer(_getMultiServiceAvailabilityTimeSlotRequest, {});
@@ -394,30 +379,43 @@ export function getMultiServiceAvailabilityTimeSlot(payload) {
394
379
  return __getMultiServiceAvailabilityTimeSlot;
395
380
  }
396
381
  /**
397
- * Retrieves a list of `TimeSlot`'s that match the provided filters.
382
+ * Retrieves a list of `TimeSlot`s that match the provided filters.
398
383
  *
399
384
  * <blockquote class="important">
400
- * <p><strong>Important:</strong><br/>
401
- * Currently supported only for services of type `APPOINTMENT`.
402
- * </p>
385
+ * <p><strong>Important:</strong>
386
+ * Currently supported only for services of type <code class="grey-background">APPOINTMENT</code>.</p>
403
387
  * </blockquote>
404
388
  *
405
- * The request body __must__ include one of:
406
- *
407
- * + All of the following filters: `serviceId`, `fromLocalDate`, `toLocalDate`, and `timeZone`. You may add additional filters as you wish.
389
+ * The request body __must__ include either:
390
+ * + All of the following filters: `serviceId`, `fromLocalDate`, `toLocalDate`, and `timeZone`.
391
+ * You may add additional filters as you wish.
408
392
  * + A `cursorPaging` with a valid `cursor` from previous response.
409
393
  *
394
+ *
410
395
  * Each [TimeSlot](https://bo.wix.com/wix-docs/rest/all-apis/wix-service-availability/availability-time-slots/time-slot-object) in response
411
396
  * represents the availability of the service in a specific location,
412
397
  * and has a `localStartDate` within the range of the provided `fromLocalDate` and `toLocalDate` exclusive.
398
+ * The `localEndDate` of a `TimeSlot` is calculated as the sum of the `TimeSlot`'s `localStartDate` and the duration of the service.
413
399
  *
400
+ * By default,
401
+ * the response contains at most 1000 results.
402
+ * If there are more than 1000 results, we return a `cursorPagingMetadata` with
403
+ * a cursor for the next page of results, regardless of whether a `cursorPaging`
404
+ * was provided in request.
405
+ *
406
+ * ### AvailableResources in response
407
+ * The `TimeSlot`'s `AvailableResources` contains information about the resources that are available to provide the service
408
+ * within the time slot. Each `AvailableResources` contains information about available resources of the same type.
414
409
  *
415
- * ### AvailableResources in response:
416
410
  * <blockquote class="important">
417
411
  * <p><strong>Important:</strong><br/>
418
412
  * By default,
419
- * if you don't specify `includeResourceTypeIds` or `resourceIds` filters in request,
420
- * we return `TimeSlot`'s with an empty `AvailableResources`.
413
+ * if you don't specify <code class="grey-background">includeResourceTypeIds</code>
414
+ * or <code class="grey-background">resourceIds</code> filters in request,
415
+ * we return TimeSlots with an empty <code class="grey-background">AvailableResources</code>.
416
+ * <br/><strong>Note:</strong><br/> Not specifying resources filters can be handy in case you want to avoid large response in flows that only
417
+ * 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)
418
+ * is an example for such flow.
421
419
  * </p>
422
420
  * </blockquote>
423
421
  *
@@ -425,61 +423,43 @@ export function getMultiServiceAvailabilityTimeSlot(payload) {
425
423
  * + provide `resourceIds` in request.
426
424
  * + provide `includeResourceTypeIds` in request.
427
425
  *
428
- * > __Notes:__
429
- * >
430
- * > + In both cases the returned `TimeSlot`'s contains __up__ to 10 `AvailableResources` that match the provided filters.
431
- * > Each `AvailableResources` contains __up__ to 10 available `resources` of the same type that match the provided filters.
432
- * >
433
- * > + If an `AvailableResources` has more available resources which are not listed within it,
434
- * > we return `AvailableResources`.`hasMoreAvailableResources` as true.
435
- * > + If you wish to get the full available resources list for a specific `TimeSlot`,
436
- * > you can call [GetAvailabilityTimeSlot](https://bo.wix.com/wix-docs/rest/all-apis/wix-service-availability/service-availability-time-slots/get-availability-time-slot).
437
- *
426
+ * __Notes:__
427
+ * + In both cases the returned TimeSlots contains __up__ to 10 `AvailableResources` that match the provided filters.
428
+ * Each `AvailableResources` contains __up__ to 10 available `resources` of the same type that match the provided filters.
429
+ * + If an `AvailableResources` has more available resources which are not listed within it,
430
+ * we return `AvailableResources`.`hasMoreAvailableResources` as true.
431
+ * > __Note:__
432
+ * > If you wish to get the full available resources list for a specific `TimeSlot`,
433
+ * > you should call [GetAvailabilityTimeSlot](https://bo.wix.com/wix-docs/rest/all-apis/wix-service-availability/service-availability-time-slots/get-availability-time-slot).
438
434
  *
439
- * ### Availability VS Bookability:
440
- * An available time slot is not necessarily bookable.
441
435
  *
436
+ * ### Availability VS Bookability
437
+ * An `available` time slot is not necessarily `bookable`.
442
438
  * The `bookable` field of a `TimeSlot` indicates whether a customer can book the service within the given time slot,
443
439
  * at a specific period of time.
444
440
  * 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).
445
441
  *
446
442
  * By default,
447
- * + The response does not contains unavailable `TimeSlot`'s.
443
+ * + The response does not contains `unavailable` TimeSlots.
448
444
  * For example,
449
445
  * if there are no available resources to provide the service from `2024-01-30T14:30:00` to `2024-01-30T15:30:00`,
450
- * we don't return `TimeSlot`'s with `localStartDate` within this range.
451
- * + The response contains both `bookable` and `un-bookable` `TimeSlot`'s.
446
+ * we don't return TimeSlots with `localStartDate` within this range.
447
+ * + The response contains both `bookable` and `un-bookable` TimeSlots.
452
448
  * For example,
453
449
  * if the service has a booking policy which enforces booking the service up to 10 minutes before the session starts,
454
- * we return `TimeSlot`'s with the violating `localStartDate` with `bookable` as false.
455
- * If you want to list only __bookable__ `TimeSlots` you should pass `bookable` as true.
450
+ * we return TimeSlots with the violating `localStartDate` with `bookable` as false.
451
+ * If you wish to list only available __bookable__ TimeSlots you should pass `bookable` filter as true.
456
452
  *
457
453
  * <blockquote class="important">
458
- * <p><strong>Important:</strong><br/>
454
+ * <p><strong>Important:</strong>
459
455
  * Because of DST, there are edge cases where certain times either do not exist or exist twice for a local time zone.
460
- * 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)
461
- * </p>
456
+ * 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>
462
457
  * </blockquote>
463
458
  *
464
459
  *
465
- * ### Pagination:
466
- * You can specify how many `TimeSlot`'s will return in response by providing a `limit`
467
- * for the `cursorPaging` in request.
468
- *
469
- * If there are more `TimeSlot`s that match the provided filters, we return a `cursorPagingMetaData`
470
- * with `hasNext` = true and a `cursors`.`next` that points to the next page of results.
471
- * In order to retrieve the next page of results, you should only provide `cursorPaging` with a limit and the cursor
472
- * you got in previous call to `cursorPaging`.`cursor` in the request of the following call.
473
- *
474
- * By default,
475
- * the response contains at most 1000 results.
476
- * If there are more than 1000 results, we return a `cursorPagingMetadata` with
477
- * a cursor for the next page of results, regardless of whether a `cursorPaging`
478
- * was provided in request.
479
- *
480
- * #### ListAvailabilityTimeSlots runs with the following defaults:
481
- * + `cursorPaging`.`limit` is 1000.
482
- * + `localStartDate` is sorted in `ASC` order.
460
+ * ### ListAvailabilityTimeSlots runs with the following defaults
461
+ * + `localStartDate` is sorted in `ASC` order
462
+ * + `cursorPaging`.`limit` is `1000`
483
463
  */
484
464
  export function listAvailabilityTimeSlots(payload) {
485
465
  const { toJSON: toReq, fromJSON: fromReq } = serializer(_listAvailabilityTimeSlotsRequest, {});
@@ -510,8 +490,7 @@ export function listAvailabilityTimeSlots(payload) {
510
490
  *
511
491
  * <blockquote class="important">
512
492
  * <p><strong>Important:</strong><br/>
513
- * Currently supported only for services of type `APPOINTMENT`.
514
- * </p>
493
+ * Currently supported only for services of type <code class="grey-background">APPOINTMENT</code>.</p>
515
494
  * </blockquote>
516
495
  *
517
496
  * By default,
@@ -523,6 +502,12 @@ export function listAvailabilityTimeSlots(payload) {
523
502
  * the returned `TimeSlot` will contain only `AvailableResources` with at least one available resource
524
503
  * which match the given resources filters,
525
504
  * each contains all available resources out of those requested.
505
+ *
506
+ *
507
+ * <blockquote class="tip">
508
+ * <p><strong>Tip:</strong><br/>
509
+ * 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>
510
+ * </blockquote>
526
511
  */
527
512
  export function getAvailabilityTimeSlot(payload) {
528
513
  const { toJSON: toReq, fromJSON: fromReq } = serializer(_getAvailabilityTimeSlotRequest, {});
@@ -1 +1 @@
1
- {"version":3,"file":"bookings-availability-v2-time-slot.http.js","sourceRoot":"","sources":["../../../src/bookings-availability-v2-time-slot.http.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"bookings-availability-v2-time-slot.http.js","sourceRoot":"","sources":["../../../src/bookings-availability-v2-time-slot.http.ts"],"names":[],"mappings":"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"}