@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.
@@ -230,102 +230,83 @@ function resolveComWixpressBookingsAvailabilityV2MultiServiceAvailabilityTimeSlo
230
230
  return (0, metro_runtime_1.resolveUrl)(Object.assign(opts, { domainToMappings }));
231
231
  }
232
232
  /**
233
- * Retrieves a list of multiService `TimeSlot`'s that match the provided filters.
233
+ * Retrieves a list of multiService `TimeSlot`s that match the provided filters.
234
+ *
234
235
  * <blockquote class="important">
235
236
  * <p><strong>Important:</strong><br/>
236
- * Currently supported only for services of type `APPOINTMENT`.
237
- * </p>
237
+ * Currently supported only for services of type <code class="grey-background">APPOINTMENT</code>.</p>
238
238
  * </blockquote>
239
239
  *
240
- * The request body __must__ include one of:
241
- *
242
- * + All of the following filters: `serviceId`, `fromLocalDate`, `toLocalDate`, `location`, and `timeZone`. You may add additional filters as you wish.
240
+ * The request body __must__ include either:
241
+ * + All of the following filters: `service`.`serviceId`, `fromLocalDate`, `toLocalDate`, `location`, and `timeZone`. You may add additional filters as you wish.
243
242
  * + A `cursorPaging` with a valid `cursor` from previous response.
244
243
  *
245
244
  *
246
245
  * Each [TimeSlot](https://bo.wix.com/wix-docs/rest/all-apis/wix-service-availability/availability-time-slots/time-slot-object) in response
247
- * represents the availability of the given list of services in a specific location, within a given range of time.
246
+ * represents the availability of the given sequence of services in a specific order, location, and within a given range of time.
248
247
  *
249
248
  * Each `TimeSlot`.`NestedTimeSlot` represents a single service from the given list. The order of the `NestedTimeSlots` is the same as the order
250
249
  * of the given services in request.
251
- *
252
- * The first `NestedTimeSlot` has `localStartDate` within the given `fromLocalDate` and `toLocalDate` - exclusive,
250
+ * The first `NestedTimeSlot` has `localStartDate` within the given `fromLocalDate` and `toLocalDate` exclusive,
253
251
  * and each following `NestedTimeSlot` has a `localStartDate` that equals to the previous `NestedTimeSlot`'s `localEndDate`.
254
252
  *
253
+ * By default,
254
+ * the response contains at most 1000 results.
255
+ * If there are more than 1000 results, we return a `cursorPagingMetadata` with
256
+ * a cursor for the next page of results, regardless of whether a `cursorPaging`
257
+ * was provided in request.
258
+ *
255
259
  * > __Notes:__
256
260
  * > + All nested time slots share the same location.
257
261
  * > + You can pass up to 8 services in request.
258
262
  *
259
263
  * ### AvailableResources in response:
264
+ * The `TimeSlot`.`NestedTimeSlot`'s `AvailableResources` contains information about the resources that are available to provide the service
265
+ * within the `NestedTimeSlot` range of time. Each `AvailableResources` contains information about available resources of the same type.
266
+ *
260
267
  * <blockquote class="important">
261
268
  * <p><strong>Important:</strong><br/>
262
269
  * By default,
263
- * if you don't specify `service`.`includeResourceTypeIds` or `service`.`resourceIds` filters in request,
264
- * we return `TimeSlot`.`NestedTimeSlot`'s with an empty `AvailableResources`.
270
+ * if you don't specify <code class="grey-background">service</code>.<code class="grey-background">includeResourceTypeIds</code>
271
+ * or <code class="grey-background">service</code>.<code class="grey-background">resourceIds</code> filters in request,
272
+ * we return TimeSlots with <code class="grey-background">NestedTimeSlot</code>s with an empty <code class="grey-background">AvailableResources</code>.
273
+ * <br/><strong>Note:</strong><br/> Not specifying resources filters can be handy in case you want to avoid large response in flows that only
274
+ * 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)
275
+ * is an example for such flow.
265
276
  * </p>
266
277
  * </blockquote>
267
278
  *
279
+ *
268
280
  * If you wish to get a list of available resources for a `TimeSlot`.`NestedTimeSlot` you should either:
269
281
  * + provide `service`.`resourceIds` in request.
270
282
  * + provide `service`.`includeResourceTypeIds` in request.
271
283
  *
272
- * > __Notes:__
273
- * >
274
- * > + In both cases the returned `TimeSlot`.`NestedTimeSlot`'s contains __up__ to 10 `AvailableResources` that match the provided filters.
275
- * > Each `AvailableResources` contains __up__ to 10 available `resources` of the same type that match the provided filters.
276
- * >
277
- * > + If an `AvailableResources` has more available resources which are not listed within it,
278
- * > we return `AvailableResources`.`hasMoreAvailableResources` as true.
279
- * > + If you wish to get the full available resources list for all `NestedTimeSlot` of a specific `TimeSlot`,
280
- * > 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).
281
- *
284
+ * __Notes:__
285
+ * + 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.
286
+ * + If an `AvailableResources` has more available resources which are not listed within it, we return `AvailableResources`.`hasMoreAvailableResources` as true.
287
+ * + 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).
282
288
  *
283
- * ### Availability VS Bookability:
284
- * An available time slot is not necessarily bookable.
285
289
  *
290
+ * ### Availability VS Bookability
291
+ * An `available` time slot is not necessarily `bookable`.
286
292
  * The `bookable` field of a `TimeSlot` indicates whether the customer can book all of the of the services within the given time slot,
287
293
  * at a specific period of time.
288
294
  * 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).
289
295
  *
290
296
  * By default,
291
- * + The response does not contains unavailable `TimeSlot`'s.
292
- * For example,
293
- * if there are no available resources to provide the service from `2024-01-30T14:30:00` to `2024-01-30T15:30:00`,
294
- * we don't return `TimeSlot`'s with `localStartDate` within this range.
295
- * + The response contains both `bookable` and `un-bookable` `TimeSlot`'s.
296
- * For example,
297
- * if one of the services has a booking policy which enforces booking the service up to 10 minutes before the session starts,
298
- * we return `TimeSlot`'s with the violating `localStartDate` with `bookable` as false.
299
- * If you want to list only __bookable__ `TimeSlots` you should pass `bookable` as true.
300
- * + If booking one of the `NestedTimeSlot`'s violates one of the corresponding service's booking policies,
301
- * the `TimeSlot` returns with `bookable` as false. There is no indication which service's policy was violated.
297
+ * + 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.
298
+ * + 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`.
299
+ * + 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.
302
300
  *
303
301
  * <blockquote class="important">
304
- * <p><strong>Important:</strong><br/>
302
+ * <p><strong>Important:</strong>
305
303
  * Because of DST, there are edge cases where certain times either do not exist or exist twice for a local time zone.
306
- * 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)
307
- * </p>
304
+ * 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>
308
305
  * </blockquote>
309
306
  *
310
- *
311
- * ### Pagination:
312
- * You can specify how many `TimeSlot`'s will return in response by providing a `limit`
313
- * for the `cursorPaging` in request.
314
- *
315
- * If there are more `TimeSlot`s that match the provided filters, we return a `cursorPagingMetaData`
316
- * with `hasNext` = true and a `cursors`.`next` that points to the next page of results.
317
- * In order to retrieve the next page of results, you should only provide `cursorPaging` with a limit and the cursor
318
- * you got in previous call to `cursorPaging`.`cursor` in the request of the following call.
319
- *
320
- * By default,
321
- * the response contains at most 1000 results.
322
- * If there are more than 1000 results, we return a `cursorPagingMetadata` with
323
- * a cursor for the next page of results, regardless of whether a `cursorPaging`
324
- * was provided in request.
325
- *
326
- * #### ListAvailabilityTimeSlots runs with the following defaults:
327
- * + `cursorPaging`.`limit` is 1000.
307
+ * ### ListAvailabilityTimeSlots runs with the following defaults:
328
308
  * + `localStartDate` is sorted in `ASC` order.
309
+ * + `cursorPaging`.`limit` is `1000`.
329
310
  */
330
311
  function listMultiServiceAvailabilityTimeSlots(payload) {
331
312
  const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_listMultiServiceAvailabilityTimeSlotsRequest, {});
@@ -357,8 +338,7 @@ exports.listMultiServiceAvailabilityTimeSlots = listMultiServiceAvailabilityTime
357
338
  *
358
339
  * <blockquote class="important">
359
340
  * <p><strong>Important:</strong><br/>
360
- * Currently supported only for services of type `APPOINTMENT`.
361
- * </p>
341
+ * Currently supported only for services of type <code class="grey-background">APPOINTMENT</code>.</p>
362
342
  * </blockquote>
363
343
  *
364
344
  * By default,
@@ -374,6 +354,11 @@ exports.listMultiServiceAvailabilityTimeSlots = listMultiServiceAvailabilityTime
374
354
  * + Notes:
375
355
  * + All nested time slots share the same location.
376
356
  * + You can pass up to 8 services.
357
+ *
358
+ * <blockquote class="tip">
359
+ * <p><strong>Tip:</strong><br/>
360
+ * 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>
361
+ * </blockquote>
377
362
  */
378
363
  function getMultiServiceAvailabilityTimeSlot(payload) {
379
364
  const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_getMultiServiceAvailabilityTimeSlotRequest, {});
@@ -399,30 +384,43 @@ function getMultiServiceAvailabilityTimeSlot(payload) {
399
384
  }
400
385
  exports.getMultiServiceAvailabilityTimeSlot = getMultiServiceAvailabilityTimeSlot;
401
386
  /**
402
- * Retrieves a list of `TimeSlot`'s that match the provided filters.
387
+ * Retrieves a list of `TimeSlot`s that match the provided filters.
403
388
  *
404
389
  * <blockquote class="important">
405
- * <p><strong>Important:</strong><br/>
406
- * Currently supported only for services of type `APPOINTMENT`.
407
- * </p>
390
+ * <p><strong>Important:</strong>
391
+ * Currently supported only for services of type <code class="grey-background">APPOINTMENT</code>.</p>
408
392
  * </blockquote>
409
393
  *
410
- * The request body __must__ include one of:
411
- *
412
- * + All of the following filters: `serviceId`, `fromLocalDate`, `toLocalDate`, and `timeZone`. You may add additional filters as you wish.
394
+ * The request body __must__ include either:
395
+ * + All of the following filters: `serviceId`, `fromLocalDate`, `toLocalDate`, and `timeZone`.
396
+ * You may add additional filters as you wish.
413
397
  * + A `cursorPaging` with a valid `cursor` from previous response.
414
398
  *
399
+ *
415
400
  * Each [TimeSlot](https://bo.wix.com/wix-docs/rest/all-apis/wix-service-availability/availability-time-slots/time-slot-object) in response
416
401
  * represents the availability of the service in a specific location,
417
402
  * and has a `localStartDate` within the range of the provided `fromLocalDate` and `toLocalDate` exclusive.
403
+ * The `localEndDate` of a `TimeSlot` is calculated as the sum of the `TimeSlot`'s `localStartDate` and the duration of the service.
418
404
  *
405
+ * By default,
406
+ * the response contains at most 1000 results.
407
+ * If there are more than 1000 results, we return a `cursorPagingMetadata` with
408
+ * a cursor for the next page of results, regardless of whether a `cursorPaging`
409
+ * was provided in request.
410
+ *
411
+ * ### AvailableResources in response
412
+ * The `TimeSlot`'s `AvailableResources` contains information about the resources that are available to provide the service
413
+ * within the time slot. Each `AvailableResources` contains information about available resources of the same type.
419
414
  *
420
- * ### AvailableResources in response:
421
415
  * <blockquote class="important">
422
416
  * <p><strong>Important:</strong><br/>
423
417
  * By default,
424
- * if you don't specify `includeResourceTypeIds` or `resourceIds` filters in request,
425
- * we return `TimeSlot`'s with an empty `AvailableResources`.
418
+ * if you don't specify <code class="grey-background">includeResourceTypeIds</code>
419
+ * or <code class="grey-background">resourceIds</code> filters in request,
420
+ * we return TimeSlots with an empty <code class="grey-background">AvailableResources</code>.
421
+ * <br/><strong>Note:</strong><br/> Not specifying resources filters can be handy in case you want to avoid large response in flows that only
422
+ * 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)
423
+ * is an example for such flow.
426
424
  * </p>
427
425
  * </blockquote>
428
426
  *
@@ -430,61 +428,43 @@ exports.getMultiServiceAvailabilityTimeSlot = getMultiServiceAvailabilityTimeSlo
430
428
  * + provide `resourceIds` in request.
431
429
  * + provide `includeResourceTypeIds` in request.
432
430
  *
433
- * > __Notes:__
434
- * >
435
- * > + In both cases the returned `TimeSlot`'s contains __up__ to 10 `AvailableResources` that match the provided filters.
436
- * > Each `AvailableResources` contains __up__ to 10 available `resources` of the same type that match the provided filters.
437
- * >
438
- * > + If an `AvailableResources` has more available resources which are not listed within it,
439
- * > we return `AvailableResources`.`hasMoreAvailableResources` as true.
440
- * > + If you wish to get the full available resources list for a specific `TimeSlot`,
441
- * > you can call [GetAvailabilityTimeSlot](https://bo.wix.com/wix-docs/rest/all-apis/wix-service-availability/service-availability-time-slots/get-availability-time-slot).
442
- *
431
+ * __Notes:__
432
+ * + In both cases the returned TimeSlots contains __up__ to 10 `AvailableResources` that match the provided filters.
433
+ * Each `AvailableResources` contains __up__ to 10 available `resources` of the same type that match the provided filters.
434
+ * + If an `AvailableResources` has more available resources which are not listed within it,
435
+ * we return `AvailableResources`.`hasMoreAvailableResources` as true.
436
+ * > __Note:__
437
+ * > If you wish to get the full available resources list for a specific `TimeSlot`,
438
+ * > you should call [GetAvailabilityTimeSlot](https://bo.wix.com/wix-docs/rest/all-apis/wix-service-availability/service-availability-time-slots/get-availability-time-slot).
443
439
  *
444
- * ### Availability VS Bookability:
445
- * An available time slot is not necessarily bookable.
446
440
  *
441
+ * ### Availability VS Bookability
442
+ * An `available` time slot is not necessarily `bookable`.
447
443
  * The `bookable` field of a `TimeSlot` indicates whether a customer can book the service within the given time slot,
448
444
  * at a specific period of time.
449
445
  * 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).
450
446
  *
451
447
  * By default,
452
- * + The response does not contains unavailable `TimeSlot`'s.
448
+ * + The response does not contains `unavailable` TimeSlots.
453
449
  * For example,
454
450
  * if there are no available resources to provide the service from `2024-01-30T14:30:00` to `2024-01-30T15:30:00`,
455
- * we don't return `TimeSlot`'s with `localStartDate` within this range.
456
- * + The response contains both `bookable` and `un-bookable` `TimeSlot`'s.
451
+ * we don't return TimeSlots with `localStartDate` within this range.
452
+ * + The response contains both `bookable` and `un-bookable` TimeSlots.
457
453
  * For example,
458
454
  * if the service has a booking policy which enforces booking the service up to 10 minutes before the session starts,
459
- * we return `TimeSlot`'s with the violating `localStartDate` with `bookable` as false.
460
- * If you want to list only __bookable__ `TimeSlots` you should pass `bookable` as true.
455
+ * we return TimeSlots with the violating `localStartDate` with `bookable` as false.
456
+ * If you wish to list only available __bookable__ TimeSlots you should pass `bookable` filter as true.
461
457
  *
462
458
  * <blockquote class="important">
463
- * <p><strong>Important:</strong><br/>
459
+ * <p><strong>Important:</strong>
464
460
  * Because of DST, there are edge cases where certain times either do not exist or exist twice for a local time zone.
465
- * 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)
466
- * </p>
461
+ * 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>
467
462
  * </blockquote>
468
463
  *
469
464
  *
470
- * ### Pagination:
471
- * You can specify how many `TimeSlot`'s will return in response by providing a `limit`
472
- * for the `cursorPaging` in request.
473
- *
474
- * If there are more `TimeSlot`s that match the provided filters, we return a `cursorPagingMetaData`
475
- * with `hasNext` = true and a `cursors`.`next` that points to the next page of results.
476
- * In order to retrieve the next page of results, you should only provide `cursorPaging` with a limit and the cursor
477
- * you got in previous call to `cursorPaging`.`cursor` in the request of the following call.
478
- *
479
- * By default,
480
- * the response contains at most 1000 results.
481
- * If there are more than 1000 results, we return a `cursorPagingMetadata` with
482
- * a cursor for the next page of results, regardless of whether a `cursorPaging`
483
- * was provided in request.
484
- *
485
- * #### ListAvailabilityTimeSlots runs with the following defaults:
486
- * + `cursorPaging`.`limit` is 1000.
487
- * + `localStartDate` is sorted in `ASC` order.
465
+ * ### ListAvailabilityTimeSlots runs with the following defaults
466
+ * + `localStartDate` is sorted in `ASC` order
467
+ * + `cursorPaging`.`limit` is `1000`
488
468
  */
489
469
  function listAvailabilityTimeSlots(payload) {
490
470
  const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_listAvailabilityTimeSlotsRequest, {});
@@ -516,8 +496,7 @@ exports.listAvailabilityTimeSlots = listAvailabilityTimeSlots;
516
496
  *
517
497
  * <blockquote class="important">
518
498
  * <p><strong>Important:</strong><br/>
519
- * Currently supported only for services of type `APPOINTMENT`.
520
- * </p>
499
+ * Currently supported only for services of type <code class="grey-background">APPOINTMENT</code>.</p>
521
500
  * </blockquote>
522
501
  *
523
502
  * By default,
@@ -529,6 +508,12 @@ exports.listAvailabilityTimeSlots = listAvailabilityTimeSlots;
529
508
  * the returned `TimeSlot` will contain only `AvailableResources` with at least one available resource
530
509
  * which match the given resources filters,
531
510
  * each contains all available resources out of those requested.
511
+ *
512
+ *
513
+ * <blockquote class="tip">
514
+ * <p><strong>Tip:</strong><br/>
515
+ * 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>
516
+ * </blockquote>
532
517
  */
533
518
  function getAvailabilityTimeSlot(payload) {
534
519
  const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.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":";;;AAAA,8DAA2D;AAC3D,sDAAgD;AAkBhD,MAAM,+BAA+B,GAAG,EAAE,CAAC;AAC3C,MAAM,gCAAgC,GAAG,EAAE,CAAC;AAC5C,MAAM,2CAA2C,GAAG,EAAE,CAAC;AACvD,MAAM,4CAA4C,GAAG,EAAE,CAAC;AACxD,MAAM,iCAAiC,GAAG,EAAE,CAAC;AAC7C,MAAM,kCAAkC,GAAG,EAAE,CAAC;AAC9C,MAAM,6CAA6C,GAAG,EAAE,CAAC;AACzD,MAAM,8CAA8C,GAAG,EAAE,CAAC;AAE1D,SAAS,gEAAgE,CACvE,IAA8C;IAE9C,MAAM,gBAAgB,GAAG;QACvB,iBAAiB,EAAE;YACjB;gBACE,OAAO,EAAE,0CAA0C;gBACnD,QAAQ,EAAE,gBAAgB;aAC3B;YACD;gBACE,OAAO,EAAE,wDAAwD;gBACjE,QAAQ,EAAE,8BAA8B;aACzC;YACD;gBACE,OAAO,EAAE,qCAAqC;gBAC9C,QAAQ,EAAE,gBAAgB;aAC3B;YACD;gBACE,OAAO,EAAE,mDAAmD;gBAC5D,QAAQ,EAAE,8BAA8B;aACzC;SACF;QACD,oBAAoB,EAAE;YACpB;gBACE,OAAO,EAAE,0CAA0C;gBACnD,QAAQ,EAAE,gBAAgB;aAC3B;YACD;gBACE,OAAO,EAAE,wDAAwD;gBACjE,QAAQ,EAAE,8BAA8B;aACzC;YACD;gBACE,OAAO,EAAE,qCAAqC;gBAC9C,QAAQ,EAAE,gBAAgB;aAC3B;YACD;gBACE,OAAO,EAAE,mDAAmD;gBAC5D,QAAQ,EAAE,8BAA8B;aACzC;SACF;QACD,sBAAsB,EAAE;YACtB;gBACE,OAAO,EAAE,0CAA0C;gBACnD,QAAQ,EAAE,gBAAgB;aAC3B;YACD;gBACE,OAAO,EAAE,wDAAwD;gBACjE,QAAQ,EAAE,8BAA8B;aACzC;YACD;gBACE,OAAO,EAAE,mDAAmD;gBAC5D,QAAQ,EAAE,8BAA8B;aACzC;YACD;gBACE,OAAO,EAAE,qCAAqC;gBAC9C,QAAQ,EAAE,gBAAgB;aAC3B;SACF;QACD,mBAAmB,EAAE;YACnB;gBACE,OAAO,EAAE,0CAA0C;gBACnD,QAAQ,EAAE,gBAAgB;aAC3B;YACD;gBACE,OAAO,EAAE,wDAAwD;gBACjE,QAAQ,EAAE,8BAA8B;aACzC;SACF;QACD,CAAC,EAAE;YACD;gBACE,OAAO,EAAE,0CAA0C;gBACnD,QAAQ,EAAE,gBAAgB;aAC3B;YACD;gBACE,OAAO,EAAE,wDAAwD;gBACjE,QAAQ,EAAE,8BAA8B;aACzC;SACF;QACD,sBAAsB,EAAE;YACtB;gBACE,OAAO,EAAE,wDAAwD;gBACjE,QAAQ,EAAE,8BAA8B;aACzC;YACD;gBACE,OAAO,EAAE,0CAA0C;gBACnD,QAAQ,EAAE,gBAAgB;aAC3B;SACF;QACD,sBAAsB,EAAE;YACtB;gBACE,OAAO,EAAE,wDAAwD;gBACjE,QAAQ,EAAE,8BAA8B;aACzC;YACD;gBACE,OAAO,EAAE,0CAA0C;gBACnD,QAAQ,EAAE,gBAAgB;aAC3B;SACF;QACD,gBAAgB,EAAE;YAChB;gBACE,OAAO,EAAE,wDAAwD;gBACjE,QAAQ,EAAE,8BAA8B;aACzC;YACD;gBACE,OAAO,EAAE,0CAA0C;gBACnD,QAAQ,EAAE,gBAAgB;aAC3B;SACF;KACF,CAAC;IAEF,OAAO,IAAA,0BAAU,EAAC,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,EAAE,gBAAgB,EAAE,CAAC,CAAC,CAAC;AAC/D,CAAC;AAED,SAAS,4EAA4E,CACnF,IAA8C;IAE9C,MAAM,gBAAgB,GAAG;QACvB,iBAAiB,EAAE;YACjB;gBACE,OAAO,EAAE,0CAA0C;gBACnD,QAAQ,EAAE,gBAAgB;aAC3B;YACD;gBACE,OAAO,EAAE,wDAAwD;gBACjE,QAAQ,EAAE,8BAA8B;aACzC;YACD;gBACE,OAAO,EAAE,qCAAqC;gBAC9C,QAAQ,EAAE,gBAAgB;aAC3B;YACD;gBACE,OAAO,EAAE,mDAAmD;gBAC5D,QAAQ,EAAE,8BAA8B;aACzC;SACF;QACD,oBAAoB,EAAE;YACpB;gBACE,OAAO,EAAE,0CAA0C;gBACnD,QAAQ,EAAE,gBAAgB;aAC3B;YACD;gBACE,OAAO,EAAE,wDAAwD;gBACjE,QAAQ,EAAE,8BAA8B;aACzC;YACD;gBACE,OAAO,EAAE,qCAAqC;gBAC9C,QAAQ,EAAE,gBAAgB;aAC3B;YACD;gBACE,OAAO,EAAE,mDAAmD;gBAC5D,QAAQ,EAAE,8BAA8B;aACzC;SACF;QACD,sBAAsB,EAAE;YACtB;gBACE,OAAO,EAAE,0CAA0C;gBACnD,QAAQ,EAAE,gBAAgB;aAC3B;YACD;gBACE,OAAO,EAAE,wDAAwD;gBACjE,QAAQ,EAAE,8BAA8B;aACzC;YACD;gBACE,OAAO,EAAE,mDAAmD;gBAC5D,QAAQ,EAAE,8BAA8B;aACzC;YACD;gBACE,OAAO,EAAE,qCAAqC;gBAC9C,QAAQ,EAAE,gBAAgB;aAC3B;SACF;QACD,mBAAmB,EAAE;YACnB;gBACE,OAAO,EAAE,0CAA0C;gBACnD,QAAQ,EAAE,gBAAgB;aAC3B;YACD;gBACE,OAAO,EAAE,wDAAwD;gBACjE,QAAQ,EAAE,8BAA8B;aACzC;SACF;QACD,CAAC,EAAE;YACD;gBACE,OAAO,EAAE,0CAA0C;gBACnD,QAAQ,EAAE,gBAAgB;aAC3B;YACD;gBACE,OAAO,EAAE,wDAAwD;gBACjE,QAAQ,EAAE,8BAA8B;aACzC;SACF;QACD,sBAAsB,EAAE;YACtB;gBACE,OAAO,EAAE,wDAAwD;gBACjE,QAAQ,EAAE,8BAA8B;aACzC;YACD;gBACE,OAAO,EAAE,0CAA0C;gBACnD,QAAQ,EAAE,gBAAgB;aAC3B;SACF;QACD,sBAAsB,EAAE;YACtB;gBACE,OAAO,EAAE,wDAAwD;gBACjE,QAAQ,EAAE,8BAA8B;aACzC;YACD;gBACE,OAAO,EAAE,0CAA0C;gBACnD,QAAQ,EAAE,gBAAgB;aAC3B;SACF;QACD,gBAAgB,EAAE;YAChB;gBACE,OAAO,EAAE,wDAAwD;gBACjE,QAAQ,EAAE,8BAA8B;aACzC;YACD;gBACE,OAAO,EAAE,0CAA0C;gBACnD,QAAQ,EAAE,gBAAgB;aAC3B;SACF;KACF,CAAC;IAEF,OAAO,IAAA,0BAAU,EAAC,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,EAAE,gBAAgB,EAAE,CAAC,CAAC,CAAC;AAC/D,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8EG;AACH,SAAgB,qCAAqC,CACnD,OAAqD;IAKrD,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,OAAO,EAAE,GAAG,IAAA,uBAAU,EACrD,6CAA6C,EAC7C,EAAE,CACH,CAAC;IACF,MAAM,EAAE,QAAQ,EAAE,OAAO,EAAE,GAAG,IAAA,uBAAU,EACtC,8CAA8C,EAC9C,EAAE,CACH,CAAC;IAEF,SAAS,uCAAuC,CAAC,EAAE,IAAI,EAAO;QAC5D,MAAM,cAAc,GAAG,KAAK,CAAC,OAAO,CAAC,CAAC;QACtC,MAAM,QAAQ,GAAG;YACf,UAAU,EAAE,wCAAwC;YACpD,MAAM,EAAE,MAAa;YACrB,SAAS,EACP,+GAA+G;YACjH,GAAG,EAAE,4EAA4E,CAC/E;gBACE,SAAS,EAAE,8BAA8B;gBACzC,IAAI,EAAE,cAAc;gBACpB,IAAI;aACL,CACF;YACD,IAAI,EAAE,cAAc;YACpB,iBAAiB,EAAE,OAAO;SAC3B,CAAC;QAEF,OAAO,QAAQ,CAAC;IAClB,CAAC;IAED,uCAAuC,CAAC,OAAO,GAAG,OAAO,CAAC;IAE1D,OAAO,uCAAuC,CAAC;AACjD,CAAC;AAvCD,sFAuCC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,SAAgB,mCAAmC,CACjD,OAAmD;IAKnD,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,OAAO,EAAE,GAAG,IAAA,uBAAU,EACrD,2CAA2C,EAC3C,EAAE,CACH,CAAC;IACF,MAAM,EAAE,QAAQ,EAAE,OAAO,EAAE,GAAG,IAAA,uBAAU,EACtC,4CAA4C,EAC5C,EAAE,CACH,CAAC;IAEF,SAAS,qCAAqC,CAAC,EAAE,IAAI,EAAO;QAC1D,MAAM,cAAc,GAAG,KAAK,CAAC,OAAO,CAAC,CAAC;QACtC,MAAM,QAAQ,GAAG;YACf,UAAU,EAAE,wCAAwC;YACpD,MAAM,EAAE,MAAa;YACrB,SAAS,EACP,6GAA6G;YAC/G,GAAG,EAAE,4EAA4E,CAC/E;gBACE,SAAS,EAAE,kCAAkC;gBAC7C,IAAI,EAAE,cAAc;gBACpB,IAAI;aACL,CACF;YACD,IAAI,EAAE,cAAc;YACpB,iBAAiB,EAAE,OAAO;SAC3B,CAAC;QAEF,OAAO,QAAQ,CAAC;IAClB,CAAC;IAED,qCAAqC,CAAC,OAAO,GAAG,OAAO,CAAC;IAExD,OAAO,qCAAqC,CAAC;AAC/C,CAAC;AAvCD,kFAuCC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkFG;AACH,SAAgB,yBAAyB,CACvC,OAAyC;IAKzC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,OAAO,EAAE,GAAG,IAAA,uBAAU,EACrD,iCAAiC,EACjC,EAAE,CACH,CAAC;IACF,MAAM,EAAE,QAAQ,EAAE,OAAO,EAAE,GAAG,IAAA,uBAAU,EACtC,kCAAkC,EAClC,EAAE,CACH,CAAC;IAEF,SAAS,2BAA2B,CAAC,EAAE,IAAI,EAAO;QAChD,MAAM,cAAc,GAAG,KAAK,CAAC,OAAO,CAAC,CAAC;QACtC,MAAM,QAAQ,GAAG;YACf,UAAU,EAAE,wCAAwC;YACpD,MAAM,EAAE,MAAa;YACrB,SAAS,EACP,uFAAuF;YACzF,GAAG,EAAE,gEAAgE,CAAC;gBACpE,SAAS,EAAE,gBAAgB;gBAC3B,IAAI,EAAE,cAAc;gBACpB,IAAI;aACL,CAAC;YACF,IAAI,EAAE,cAAc;YACpB,iBAAiB,EAAE,OAAO;SAC3B,CAAC;QAEF,OAAO,QAAQ,CAAC;IAClB,CAAC;IAED,2BAA2B,CAAC,OAAO,GAAG,OAAO,CAAC;IAE9C,OAAO,2BAA2B,CAAC;AACrC,CAAC;AArCD,8DAqCC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,SAAgB,uBAAuB,CACrC,OAAuC;IAKvC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,OAAO,EAAE,GAAG,IAAA,uBAAU,EACrD,+BAA+B,EAC/B,EAAE,CACH,CAAC;IACF,MAAM,EAAE,QAAQ,EAAE,OAAO,EAAE,GAAG,IAAA,uBAAU,EACtC,gCAAgC,EAChC,EAAE,CACH,CAAC;IAEF,SAAS,yBAAyB,CAAC,EAAE,IAAI,EAAO;QAC9C,MAAM,cAAc,GAAG,KAAK,CAAC,OAAO,CAAC,CAAC;QACtC,MAAM,QAAQ,GAAG;YACf,UAAU,EAAE,wCAAwC;YACpD,MAAM,EAAE,MAAa;YACrB,SAAS,EACP,qFAAqF;YACvF,GAAG,EAAE,gEAAgE,CAAC;gBACpE,SAAS,EAAE,oBAAoB;gBAC/B,IAAI,EAAE,cAAc;gBACpB,IAAI;aACL,CAAC;YACF,IAAI,EAAE,cAAc;YACpB,iBAAiB,EAAE,OAAO;SAC3B,CAAC;QAEF,OAAO,QAAQ,CAAC;IAClB,CAAC;IAED,yBAAyB,CAAC,OAAO,GAAG,OAAO,CAAC;IAE5C,OAAO,yBAAyB,CAAC;AACnC,CAAC;AArCD,0DAqCC"}