@wix/auto_sdk_bookings_bookings 1.0.76 → 1.0.78
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 +8 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +1 -0
- package/build/cjs/index.typings.js +8 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.js +8 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +8 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +1 -0
- package/build/es/index.typings.mjs +8 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.mjs +8 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +8 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +1 -0
- package/build/internal/cjs/index.typings.js +8 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.js +8 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +8 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +1 -0
- package/build/internal/es/index.typings.mjs +8 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.mjs +8 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -5153,6 +5153,7 @@ declare function getMultiServiceBooking(multiServiceBookingId: string): Promise<
|
|
|
5153
5153
|
* @requiredField options.bookings.bookingId
|
|
5154
5154
|
* @requiredField options.bookings.revision
|
|
5155
5155
|
* @permissionId MULTI_SERVICE_BOOKINGS.MULTI_SERVICE_BOOKING_ADD_BOOKINGS
|
|
5156
|
+
* @applicableIdentity APP
|
|
5156
5157
|
* @fqn com.wixpress.bookings.bookings.v2.MultiServiceBookings.AddBookingsToMultiServiceBooking
|
|
5157
5158
|
*/
|
|
5158
5159
|
declare function addBookingsToMultiServiceBooking(multiServiceBookingId: string, options?: NonNullablePaths<AddBookingsToMultiServiceBookingOptions, `bookings` | `bookings.${number}.bookingId` | `bookings.${number}.revision`, 4>): Promise<NonNullablePaths<AddBookingsToMultiServiceBookingResponse, `bookings` | `bookings.${number}.booking.totalParticipants` | `bookings.${number}.booking.status` | `bookings.${number}.booking.paymentStatus` | `bookings.${number}.booking.selectedPaymentOption` | `bookings.${number}.booking.createdBy.anonymousVisitorId` | `bookings.${number}.booking.createdBy.memberId` | `bookings.${number}.booking.createdBy.wixUserId` | `bookings.${number}.booking.createdBy.appId`, 6> & {
|
|
@@ -410,12 +410,20 @@ function resolveComWixpressBookingsConfirmatorV2ConfirmatorUrl(opts) {
|
|
|
410
410
|
{
|
|
411
411
|
srcPath: "/bookings/v2/confirmation",
|
|
412
412
|
destPath: "/v2/confirmation"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
srcPath: "/bookings/v2/bulk/bookings",
|
|
416
|
+
destPath: "/v2/bulk/bookings"
|
|
413
417
|
}
|
|
414
418
|
],
|
|
415
419
|
_: [
|
|
416
420
|
{
|
|
417
421
|
srcPath: "/bookings/v2/confirmation",
|
|
418
422
|
destPath: "/v2/confirmation"
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
srcPath: "/bookings/v2/bulk/bookings",
|
|
426
|
+
destPath: "/v2/bulk/bookings"
|
|
419
427
|
}
|
|
420
428
|
]
|
|
421
429
|
};
|