@wix/auto_sdk_bookings_booking-policies 1.0.86 → 1.0.87

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.
@@ -374,16 +374,20 @@ declare enum RankingOrder {
374
374
  }
375
375
  /** @enumType */
376
376
  type RankingOrderWithLiterals = RankingOrder | 'UNKNOWN_RANKING_ORDER' | 'LOWEST_TO_HIGHEST' | 'HIGHEST_TO_LOWEST';
377
- /** Method used to sort and select staff members. */
377
+ /**
378
+ * Method used to sort staff members in the [Time Slots V2 API](https://dev.wix.com/docs/api-reference/business-solutions/bookings/time-slots/time-slots-v2/introduction) API.
379
+ * When creating a booking, Wix Bookings assigns the first available staff member from the sorted list.
380
+ */
378
381
  declare enum SortingMethodType {
382
+ /** There is no information about the sorting method. */
379
383
  UNKNOWN_SORTING_METHOD_TYPE = "UNKNOWN_SORTING_METHOD_TYPE",
380
- /** Staff members are selected randomly from available options. */
384
+ /** Available staff members are returned in random order. */
381
385
  RANDOM = "RANDOM",
382
- /** Staff members are selected based on their priority ranking. */
386
+ /** Available staff members are returned in order of their priority ranking. */
383
387
  RANKING = "RANKING",
384
388
  /**
385
- * Staff members are selected using a custom implementation provided by SortStaffSPI.
386
- * This allows third-party apps to implement custom staff sorting logic.
389
+ * Staff members are returned in the order provided by the relevant implementation of the [Staff Sorting service plugin](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/staff-sorting-service-plugin/introduction).
390
+ * For each policy, business owners can choose a different implementation in their site's dashboard.
387
391
  */
388
392
  CUSTOM = "CUSTOM"
389
393
  }