@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
|
@@ -2594,7 +2594,8 @@ async function deleteService2(serviceId, options) {
|
|
|
2594
2594
|
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
2595
2595
|
serviceId,
|
|
2596
2596
|
preserveFutureSessionsWithParticipants: options?.preserveFutureSessionsWithParticipants,
|
|
2597
|
-
participantNotification: options?.participantNotification
|
|
2597
|
+
participantNotification: options?.participantNotification,
|
|
2598
|
+
cancelSubscription: options?.cancelSubscription
|
|
2598
2599
|
});
|
|
2599
2600
|
const reqOpts = deleteService(payload);
|
|
2600
2601
|
sideEffects?.onSiteCall?.();
|
|
@@ -2609,7 +2610,8 @@ async function deleteService2(serviceId, options) {
|
|
|
2609
2610
|
explicitPathsToArguments: {
|
|
2610
2611
|
serviceId: "$[0]",
|
|
2611
2612
|
preserveFutureSessionsWithParticipants: "$[1].preserveFutureSessionsWithParticipants",
|
|
2612
|
-
participantNotification: "$[1].participantNotification"
|
|
2613
|
+
participantNotification: "$[1].participantNotification",
|
|
2614
|
+
cancelSubscription: "$[1].cancelSubscription"
|
|
2613
2615
|
},
|
|
2614
2616
|
singleArgumentUnchanged: false
|
|
2615
2617
|
},
|
|
@@ -2624,7 +2626,8 @@ async function bulkDeleteServices2(ids, options) {
|
|
|
2624
2626
|
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
2625
2627
|
ids,
|
|
2626
2628
|
preserveFutureSessionsWithParticipants: options?.preserveFutureSessionsWithParticipants,
|
|
2627
|
-
participantNotification: options?.participantNotification
|
|
2629
|
+
participantNotification: options?.participantNotification,
|
|
2630
|
+
cancelSubscription: options?.cancelSubscription
|
|
2628
2631
|
});
|
|
2629
2632
|
const reqOpts = bulkDeleteServices(payload);
|
|
2630
2633
|
sideEffects?.onSiteCall?.();
|
|
@@ -2671,7 +2674,8 @@ async function bulkDeleteServices2(ids, options) {
|
|
|
2671
2674
|
explicitPathsToArguments: {
|
|
2672
2675
|
ids: "$[0]",
|
|
2673
2676
|
preserveFutureSessionsWithParticipants: "$[1].preserveFutureSessionsWithParticipants",
|
|
2674
|
-
participantNotification: "$[1].participantNotification"
|
|
2677
|
+
participantNotification: "$[1].participantNotification",
|
|
2678
|
+
cancelSubscription: "$[1].cancelSubscription"
|
|
2675
2679
|
},
|
|
2676
2680
|
singleArgumentUnchanged: false
|
|
2677
2681
|
},
|
|
@@ -2686,7 +2690,8 @@ async function bulkDeleteServicesByFilter2(filter, options) {
|
|
|
2686
2690
|
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
2687
2691
|
filter,
|
|
2688
2692
|
preserveFutureSessionsWithParticipants: options?.preserveFutureSessionsWithParticipants,
|
|
2689
|
-
participantNotification: options?.participantNotification
|
|
2693
|
+
participantNotification: options?.participantNotification,
|
|
2694
|
+
cancelSubscription: options?.cancelSubscription
|
|
2690
2695
|
});
|
|
2691
2696
|
const reqOpts = bulkDeleteServicesByFilter(payload);
|
|
2692
2697
|
sideEffects?.onSiteCall?.();
|
|
@@ -2702,7 +2707,8 @@ async function bulkDeleteServicesByFilter2(filter, options) {
|
|
|
2702
2707
|
explicitPathsToArguments: {
|
|
2703
2708
|
filter: "$[0]",
|
|
2704
2709
|
preserveFutureSessionsWithParticipants: "$[1].preserveFutureSessionsWithParticipants",
|
|
2705
|
-
participantNotification: "$[1].participantNotification"
|
|
2710
|
+
participantNotification: "$[1].participantNotification",
|
|
2711
|
+
cancelSubscription: "$[1].cancelSubscription"
|
|
2706
2712
|
},
|
|
2707
2713
|
singleArgumentUnchanged: false
|
|
2708
2714
|
},
|