@wix/auto_sdk_bookings_booking-policies 1.0.73 → 1.0.75

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.
@@ -384,8 +384,8 @@ declare enum SortingMethodType {
384
384
  /** Staff members are selected based on their priority ranking. */
385
385
  RANKING = "RANKING",
386
386
  /**
387
- * Staff members are selected using a custom method provided by StaffSelectionSPI.
388
- * This allows third-party apps to implement custom staff selection logic.
387
+ * Staff members are selected using a custom implementation provided by SortStaffSPI.
388
+ * This allows third-party apps to implement custom staff sorting logic.
389
389
  */
390
390
  CUSTOM = "CUSTOM"
391
391
  }
@@ -409,13 +409,13 @@ interface RankingOptions {
409
409
  */
410
410
  interface CustomOptions {
411
411
  /**
412
- * ID of the custom selection method implemented in StaffSelectionSPI.
412
+ * ID of the custom sorting method implemented in SortStaffSPI.
413
413
  * This identifies which custom sorting algorithm to use.
414
414
  * @format GUID
415
415
  */
416
- methodId?: string;
416
+ implementationId?: string;
417
417
  /**
418
- * ID of the app that provides the custom selection method.
418
+ * ID of the app that provides the custom sorting method.
419
419
  * @format GUID
420
420
  */
421
421
  appId?: string;