@wix/auto_sdk_bookings_bookings 1.0.114 → 1.0.115
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 +36 -36
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js +24 -24
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +5 -5
- package/build/cjs/meta.js +24 -24
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +36 -36
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs +24 -24
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +5 -5
- package/build/es/meta.mjs +24 -24
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +36 -36
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.js +24 -24
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +5 -5
- package/build/internal/cjs/meta.js +24 -24
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +36 -36
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.mjs +24 -24
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +5 -5
- package/build/internal/es/meta.mjs +24 -24
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1238,8 +1238,8 @@ function rescheduleBooking(payload) {
|
|
|
1238
1238
|
}
|
|
1239
1239
|
return __rescheduleBooking;
|
|
1240
1240
|
}
|
|
1241
|
-
function
|
|
1242
|
-
function
|
|
1241
|
+
function confirmBooking(payload) {
|
|
1242
|
+
function __confirmBooking({ host }) {
|
|
1243
1243
|
const metadata = {
|
|
1244
1244
|
entityFqdn: "wix.bookings.v2.booking",
|
|
1245
1245
|
method: "POST",
|
|
@@ -1276,7 +1276,7 @@ function bookingsConfirmBooking(payload) {
|
|
|
1276
1276
|
};
|
|
1277
1277
|
return metadata;
|
|
1278
1278
|
}
|
|
1279
|
-
return
|
|
1279
|
+
return __confirmBooking;
|
|
1280
1280
|
}
|
|
1281
1281
|
function setBookingSubmissionId(payload) {
|
|
1282
1282
|
function __setBookingSubmissionId({ host }) {
|
|
@@ -1339,8 +1339,8 @@ function updateExtendedFields(payload) {
|
|
|
1339
1339
|
}
|
|
1340
1340
|
return __updateExtendedFields;
|
|
1341
1341
|
}
|
|
1342
|
-
function
|
|
1343
|
-
function
|
|
1342
|
+
function declineBooking(payload) {
|
|
1343
|
+
function __declineBooking({ host }) {
|
|
1344
1344
|
const metadata = {
|
|
1345
1345
|
entityFqdn: "wix.bookings.v2.booking",
|
|
1346
1346
|
method: "POST",
|
|
@@ -1377,10 +1377,10 @@ function bookingsDeclineBooking(payload) {
|
|
|
1377
1377
|
};
|
|
1378
1378
|
return metadata;
|
|
1379
1379
|
}
|
|
1380
|
-
return
|
|
1380
|
+
return __declineBooking;
|
|
1381
1381
|
}
|
|
1382
|
-
function
|
|
1383
|
-
function
|
|
1382
|
+
function cancelBooking(payload) {
|
|
1383
|
+
function __cancelBooking({ host }) {
|
|
1384
1384
|
const metadata = {
|
|
1385
1385
|
entityFqdn: "wix.bookings.v2.booking",
|
|
1386
1386
|
method: "POST",
|
|
@@ -1417,10 +1417,10 @@ function bookingsCancelBooking(payload) {
|
|
|
1417
1417
|
};
|
|
1418
1418
|
return metadata;
|
|
1419
1419
|
}
|
|
1420
|
-
return
|
|
1420
|
+
return __cancelBooking;
|
|
1421
1421
|
}
|
|
1422
|
-
function
|
|
1423
|
-
function
|
|
1422
|
+
function updateNumberOfParticipants(payload) {
|
|
1423
|
+
function __updateNumberOfParticipants({ host }) {
|
|
1424
1424
|
const metadata = {
|
|
1425
1425
|
entityFqdn: "wix.bookings.v2.booking",
|
|
1426
1426
|
method: "POST",
|
|
@@ -1457,7 +1457,7 @@ function bookingsUpdateNumberOfParticipants(payload) {
|
|
|
1457
1457
|
};
|
|
1458
1458
|
return metadata;
|
|
1459
1459
|
}
|
|
1460
|
-
return
|
|
1460
|
+
return __updateNumberOfParticipants;
|
|
1461
1461
|
}
|
|
1462
1462
|
function bulkCalculateAllowedActions(payload) {
|
|
1463
1463
|
function __bulkCalculateAllowedActions({ host }) {
|
|
@@ -2308,7 +2308,7 @@ async function rescheduleBooking2(bookingId, slot, options) {
|
|
|
2308
2308
|
throw transformedError;
|
|
2309
2309
|
}
|
|
2310
2310
|
}
|
|
2311
|
-
async function
|
|
2311
|
+
async function confirmBooking2(bookingId, revision, options) {
|
|
2312
2312
|
const { httpClient, sideEffects } = arguments[3];
|
|
2313
2313
|
const payload = renameKeysFromSDKRequestToRESTRequest({
|
|
2314
2314
|
bookingId,
|
|
@@ -2319,7 +2319,7 @@ async function confirmBooking(bookingId, revision, options) {
|
|
|
2319
2319
|
doubleBooked: options?.doubleBooked,
|
|
2320
2320
|
flowControlSettings: options?.flowControlSettings
|
|
2321
2321
|
});
|
|
2322
|
-
const reqOpts =
|
|
2322
|
+
const reqOpts = confirmBooking(payload);
|
|
2323
2323
|
sideEffects?.onSiteCall?.();
|
|
2324
2324
|
try {
|
|
2325
2325
|
const result = await httpClient.request(reqOpts);
|
|
@@ -2404,7 +2404,7 @@ async function updateExtendedFields2(_id, namespace, options) {
|
|
|
2404
2404
|
throw transformedError;
|
|
2405
2405
|
}
|
|
2406
2406
|
}
|
|
2407
|
-
async function
|
|
2407
|
+
async function declineBooking2(bookingId, revision, options) {
|
|
2408
2408
|
const { httpClient, sideEffects } = arguments[3];
|
|
2409
2409
|
const payload = renameKeysFromSDKRequestToRESTRequest({
|
|
2410
2410
|
bookingId,
|
|
@@ -2414,7 +2414,7 @@ async function declineBooking(bookingId, revision, options) {
|
|
|
2414
2414
|
doubleBooked: options?.doubleBooked,
|
|
2415
2415
|
flowControlSettings: options?.flowControlSettings
|
|
2416
2416
|
});
|
|
2417
|
-
const reqOpts =
|
|
2417
|
+
const reqOpts = declineBooking(payload);
|
|
2418
2418
|
sideEffects?.onSiteCall?.();
|
|
2419
2419
|
try {
|
|
2420
2420
|
const result = await httpClient.request(reqOpts);
|
|
@@ -2441,7 +2441,7 @@ async function declineBooking(bookingId, revision, options) {
|
|
|
2441
2441
|
throw transformedError;
|
|
2442
2442
|
}
|
|
2443
2443
|
}
|
|
2444
|
-
async function
|
|
2444
|
+
async function cancelBooking2(bookingId, options) {
|
|
2445
2445
|
const { httpClient, sideEffects } = arguments[2];
|
|
2446
2446
|
const payload = renameKeysFromSDKRequestToRESTRequest({
|
|
2447
2447
|
bookingId,
|
|
@@ -2449,7 +2449,7 @@ async function cancelBooking(bookingId, options) {
|
|
|
2449
2449
|
flowControlSettings: options?.flowControlSettings,
|
|
2450
2450
|
revision: options?.revision
|
|
2451
2451
|
});
|
|
2452
|
-
const reqOpts =
|
|
2452
|
+
const reqOpts = cancelBooking(payload);
|
|
2453
2453
|
sideEffects?.onSiteCall?.();
|
|
2454
2454
|
try {
|
|
2455
2455
|
const result = await httpClient.request(reqOpts);
|
|
@@ -2474,7 +2474,7 @@ async function cancelBooking(bookingId, options) {
|
|
|
2474
2474
|
throw transformedError;
|
|
2475
2475
|
}
|
|
2476
2476
|
}
|
|
2477
|
-
async function
|
|
2477
|
+
async function updateNumberOfParticipants2(bookingId, options) {
|
|
2478
2478
|
const { httpClient, sideEffects } = arguments[2];
|
|
2479
2479
|
const payload = renameKeysFromSDKRequestToRESTRequest({
|
|
2480
2480
|
bookingId,
|
|
@@ -2482,7 +2482,7 @@ async function updateNumberOfParticipants(bookingId, options) {
|
|
|
2482
2482
|
totalParticipants: options?.totalParticipants,
|
|
2483
2483
|
participantsChoices: options?.participantsChoices
|
|
2484
2484
|
});
|
|
2485
|
-
const reqOpts =
|
|
2485
|
+
const reqOpts = updateNumberOfParticipants(payload);
|
|
2486
2486
|
sideEffects?.onSiteCall?.();
|
|
2487
2487
|
try {
|
|
2488
2488
|
const result = await httpClient.request(reqOpts);
|
|
@@ -2830,8 +2830,8 @@ function rescheduleBooking3(httpClient) {
|
|
|
2830
2830
|
{ httpClient }
|
|
2831
2831
|
);
|
|
2832
2832
|
}
|
|
2833
|
-
function
|
|
2834
|
-
return (bookingId, revision, options) =>
|
|
2833
|
+
function confirmBooking3(httpClient) {
|
|
2834
|
+
return (bookingId, revision, options) => confirmBooking2(
|
|
2835
2835
|
bookingId,
|
|
2836
2836
|
revision,
|
|
2837
2837
|
options,
|
|
@@ -2856,8 +2856,8 @@ function updateExtendedFields3(httpClient) {
|
|
|
2856
2856
|
{ httpClient }
|
|
2857
2857
|
);
|
|
2858
2858
|
}
|
|
2859
|
-
function
|
|
2860
|
-
return (bookingId, revision, options) =>
|
|
2859
|
+
function declineBooking3(httpClient) {
|
|
2860
|
+
return (bookingId, revision, options) => declineBooking2(
|
|
2861
2861
|
bookingId,
|
|
2862
2862
|
revision,
|
|
2863
2863
|
options,
|
|
@@ -2865,16 +2865,16 @@ function declineBooking2(httpClient) {
|
|
|
2865
2865
|
{ httpClient }
|
|
2866
2866
|
);
|
|
2867
2867
|
}
|
|
2868
|
-
function
|
|
2869
|
-
return (bookingId, options) =>
|
|
2868
|
+
function cancelBooking3(httpClient) {
|
|
2869
|
+
return (bookingId, options) => cancelBooking2(
|
|
2870
2870
|
bookingId,
|
|
2871
2871
|
options,
|
|
2872
2872
|
// @ts-ignore
|
|
2873
2873
|
{ httpClient }
|
|
2874
2874
|
);
|
|
2875
2875
|
}
|
|
2876
|
-
function
|
|
2877
|
-
return (bookingId, options) =>
|
|
2876
|
+
function updateNumberOfParticipants3(httpClient) {
|
|
2877
|
+
return (bookingId, options) => updateNumberOfParticipants2(
|
|
2878
2878
|
bookingId,
|
|
2879
2879
|
options,
|
|
2880
2880
|
// @ts-ignore
|
|
@@ -3202,12 +3202,12 @@ var removeBookingsFromMultiServiceBooking4 = /* @__PURE__ */ createRESTModule(re
|
|
|
3202
3202
|
var createBooking4 = /* @__PURE__ */ createRESTModule(createBooking3);
|
|
3203
3203
|
var bulkCreateBooking4 = /* @__PURE__ */ createRESTModule(bulkCreateBooking3);
|
|
3204
3204
|
var rescheduleBooking4 = /* @__PURE__ */ createRESTModule(rescheduleBooking3);
|
|
3205
|
-
var
|
|
3205
|
+
var confirmBooking4 = /* @__PURE__ */ createRESTModule(confirmBooking3);
|
|
3206
3206
|
var setBookingSubmissionId4 = /* @__PURE__ */ createRESTModule(setBookingSubmissionId3);
|
|
3207
3207
|
var updateExtendedFields4 = /* @__PURE__ */ createRESTModule(updateExtendedFields3);
|
|
3208
|
-
var
|
|
3209
|
-
var
|
|
3210
|
-
var
|
|
3208
|
+
var declineBooking4 = /* @__PURE__ */ createRESTModule(declineBooking3);
|
|
3209
|
+
var cancelBooking4 = /* @__PURE__ */ createRESTModule(cancelBooking3);
|
|
3210
|
+
var updateNumberOfParticipants4 = /* @__PURE__ */ createRESTModule(updateNumberOfParticipants3);
|
|
3211
3211
|
var bulkCalculateAllowedActions4 = /* @__PURE__ */ createRESTModule(bulkCalculateAllowedActions3);
|
|
3212
3212
|
var markBookingAsPending4 = /* @__PURE__ */ createRESTModule(markBookingAsPending3);
|
|
3213
3213
|
var getAnonymousActionDetails4 = /* @__PURE__ */ createRESTModule(getAnonymousActionDetails3);
|
|
@@ -3249,15 +3249,15 @@ export {
|
|
|
3249
3249
|
bulkConfirmOrDeclineBooking4 as bulkConfirmOrDeclineBooking,
|
|
3250
3250
|
bulkCreateBooking4 as bulkCreateBooking,
|
|
3251
3251
|
bulkGetMultiServiceBookingAllowedActions4 as bulkGetMultiServiceBookingAllowedActions,
|
|
3252
|
-
|
|
3252
|
+
cancelBooking4 as cancelBooking,
|
|
3253
3253
|
cancelBookingAnonymously4 as cancelBookingAnonymously,
|
|
3254
3254
|
cancelMultiServiceBooking4 as cancelMultiServiceBooking,
|
|
3255
|
-
|
|
3255
|
+
confirmBooking4 as confirmBooking,
|
|
3256
3256
|
confirmMultiServiceBooking4 as confirmMultiServiceBooking,
|
|
3257
3257
|
confirmOrDeclineBooking4 as confirmOrDeclineBooking,
|
|
3258
3258
|
createBooking4 as createBooking,
|
|
3259
3259
|
createMultiServiceBooking4 as createMultiServiceBooking,
|
|
3260
|
-
|
|
3260
|
+
declineBooking4 as declineBooking,
|
|
3261
3261
|
declineMultiServiceBooking4 as declineMultiServiceBooking,
|
|
3262
3262
|
getAnonymousActionDetails4 as getAnonymousActionDetails,
|
|
3263
3263
|
getBookingAnonymously4 as getBookingAnonymously,
|
|
@@ -3280,6 +3280,6 @@ export {
|
|
|
3280
3280
|
rescheduleMultiServiceBooking4 as rescheduleMultiServiceBooking,
|
|
3281
3281
|
setBookingSubmissionId4 as setBookingSubmissionId,
|
|
3282
3282
|
updateExtendedFields4 as updateExtendedFields,
|
|
3283
|
-
|
|
3283
|
+
updateNumberOfParticipants4 as updateNumberOfParticipants
|
|
3284
3284
|
};
|
|
3285
3285
|
//# sourceMappingURL=index.mjs.map
|