@wix/auto_sdk_bookings_services 1.0.238 → 1.0.239
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.
- package/build/cjs/index.js +12 -6
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js +12 -6
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.mjs +12 -6
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs +12 -6
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/{bookings-services-v2-service-services.universal-CPAFmU0b.d.ts → bookings-services-v2-service-services.universal-mc9Kk_qi.d.ts} +42 -0
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +12 -6
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +12 -6
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +1 -1
- package/build/internal/es/{bookings-services-v2-service-services.universal-CPAFmU0b.d.mts → bookings-services-v2-service-services.universal-mc9Kk_qi.d.mts} +42 -0
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +12 -6
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +12 -6
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +1 -1
- package/package.json +2 -2
package/build/cjs/index.js
CHANGED
|
@@ -2605,7 +2605,8 @@ async function deleteService2(serviceId, options) {
|
|
|
2605
2605
|
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
2606
2606
|
serviceId,
|
|
2607
2607
|
preserveFutureSessionsWithParticipants: options?.preserveFutureSessionsWithParticipants,
|
|
2608
|
-
participantNotification: options?.participantNotification
|
|
2608
|
+
participantNotification: options?.participantNotification,
|
|
2609
|
+
cancelSubscription: options?.cancelSubscription
|
|
2609
2610
|
});
|
|
2610
2611
|
const reqOpts = deleteService(payload);
|
|
2611
2612
|
sideEffects?.onSiteCall?.();
|
|
@@ -2620,7 +2621,8 @@ async function deleteService2(serviceId, options) {
|
|
|
2620
2621
|
explicitPathsToArguments: {
|
|
2621
2622
|
serviceId: "$[0]",
|
|
2622
2623
|
preserveFutureSessionsWithParticipants: "$[1].preserveFutureSessionsWithParticipants",
|
|
2623
|
-
participantNotification: "$[1].participantNotification"
|
|
2624
|
+
participantNotification: "$[1].participantNotification",
|
|
2625
|
+
cancelSubscription: "$[1].cancelSubscription"
|
|
2624
2626
|
},
|
|
2625
2627
|
singleArgumentUnchanged: false
|
|
2626
2628
|
},
|
|
@@ -2635,7 +2637,8 @@ async function bulkDeleteServices2(ids, options) {
|
|
|
2635
2637
|
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
2636
2638
|
ids,
|
|
2637
2639
|
preserveFutureSessionsWithParticipants: options?.preserveFutureSessionsWithParticipants,
|
|
2638
|
-
participantNotification: options?.participantNotification
|
|
2640
|
+
participantNotification: options?.participantNotification,
|
|
2641
|
+
cancelSubscription: options?.cancelSubscription
|
|
2639
2642
|
});
|
|
2640
2643
|
const reqOpts = bulkDeleteServices(payload);
|
|
2641
2644
|
sideEffects?.onSiteCall?.();
|
|
@@ -2682,7 +2685,8 @@ async function bulkDeleteServices2(ids, options) {
|
|
|
2682
2685
|
explicitPathsToArguments: {
|
|
2683
2686
|
ids: "$[0]",
|
|
2684
2687
|
preserveFutureSessionsWithParticipants: "$[1].preserveFutureSessionsWithParticipants",
|
|
2685
|
-
participantNotification: "$[1].participantNotification"
|
|
2688
|
+
participantNotification: "$[1].participantNotification",
|
|
2689
|
+
cancelSubscription: "$[1].cancelSubscription"
|
|
2686
2690
|
},
|
|
2687
2691
|
singleArgumentUnchanged: false
|
|
2688
2692
|
},
|
|
@@ -2697,7 +2701,8 @@ async function bulkDeleteServicesByFilter2(filter, options) {
|
|
|
2697
2701
|
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
2698
2702
|
filter,
|
|
2699
2703
|
preserveFutureSessionsWithParticipants: options?.preserveFutureSessionsWithParticipants,
|
|
2700
|
-
participantNotification: options?.participantNotification
|
|
2704
|
+
participantNotification: options?.participantNotification,
|
|
2705
|
+
cancelSubscription: options?.cancelSubscription
|
|
2701
2706
|
});
|
|
2702
2707
|
const reqOpts = bulkDeleteServicesByFilter(payload);
|
|
2703
2708
|
sideEffects?.onSiteCall?.();
|
|
@@ -2713,7 +2718,8 @@ async function bulkDeleteServicesByFilter2(filter, options) {
|
|
|
2713
2718
|
explicitPathsToArguments: {
|
|
2714
2719
|
filter: "$[0]",
|
|
2715
2720
|
preserveFutureSessionsWithParticipants: "$[1].preserveFutureSessionsWithParticipants",
|
|
2716
|
-
participantNotification: "$[1].participantNotification"
|
|
2721
|
+
participantNotification: "$[1].participantNotification",
|
|
2722
|
+
cancelSubscription: "$[1].cancelSubscription"
|
|
2717
2723
|
},
|
|
2718
2724
|
singleArgumentUnchanged: false
|
|
2719
2725
|
},
|