@wix/auto_sdk_bookings_bookings 1.0.70 → 1.0.72
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.d.ts +2 -2
- package/build/cjs/index.js +12 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +35 -3
- package/build/cjs/index.typings.js +12 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +33 -1
- package/build/cjs/meta.js +12 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +12 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +35 -3
- package/build/es/index.typings.mjs +12 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +33 -1
- package/build/es/meta.mjs +12 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +12 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +35 -3
- package/build/internal/cjs/index.typings.js +12 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +33 -1
- package/build/internal/cjs/meta.js +12 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +12 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +35 -3
- package/build/internal/es/index.typings.mjs +12 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +33 -1
- package/build/internal/es/meta.mjs +12 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -575,7 +575,7 @@ interface CreateMultiServiceBookingSignature {
|
|
|
575
575
|
*
|
|
576
576
|
* ### When to call this method
|
|
577
577
|
*
|
|
578
|
-
* Create sequential appointments where customers book related services together. For adding existing single-service bookings to an existing multi-service booking, call Add Bookings to Multi Service Booking ([SDK](https://dev.wix.com/docs/
|
|
578
|
+
* Create sequential appointments where customers book related services together. For adding existing single-service bookings to an existing multi-service booking, call Add Bookings to Multi Service Booking ([SDK](https://dev.wix.com/docs/api-reference/business-solutions/bookings/bookings/bookings-writer-v2/add-bookings-to-multi-service-booking?apiView=SDK) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/bookings/bookings-writer-v2/add-bookings-to-multi-service-booking)) instead.
|
|
579
579
|
*
|
|
580
580
|
* ### Requirements and behavior
|
|
581
581
|
*
|
|
@@ -583,7 +583,7 @@ interface CreateMultiServiceBookingSignature {
|
|
|
583
583
|
*
|
|
584
584
|
* __Timing specification__: You must provide complete `slot` details (`scheduleId`, `startDate`, `endDate`) for each single-service booking. Wix Bookings validates sequential timing but doesn't auto-calculate it.
|
|
585
585
|
*
|
|
586
|
-
* __Package pricing__: The total price equals the sum of individual services. Wix Bookings automatically syncs the payment status from the corresponding Wix eCommerce order ([SDK](https://dev.wix.com/docs/
|
|
586
|
+
* __Package pricing__: The total price equals the sum of individual services. Wix Bookings automatically syncs the payment status from the corresponding Wix eCommerce order ([SDK](https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/orders/introduction?apiView=SDK) | [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/orders/introduction)) if the customer paid via an eCommerce checkout ([SDK](https://dev.wix.com/docs/sdk/backend-modules/ecom/checkout/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/introduction)).
|
|
587
587
|
*
|
|
588
588
|
* __Package notifications__: Customers receive 1 unified notification for the entire multi-service booking. Wix Bookings doesn't send notifications for the package's individual single-service bookings.
|
|
589
589
|
*
|
|
@@ -121,6 +121,12 @@ function resolveComWixpressBookingsBookingsV2MultiServiceBookingsUrl(opts) {
|
|
|
121
121
|
srcPath: "/_api/bookings-service",
|
|
122
122
|
destPath: "/v2/bookings"
|
|
123
123
|
}
|
|
124
|
+
],
|
|
125
|
+
"api._api_base_domain_": [
|
|
126
|
+
{
|
|
127
|
+
srcPath: "/bookings-service",
|
|
128
|
+
destPath: ""
|
|
129
|
+
}
|
|
124
130
|
]
|
|
125
131
|
};
|
|
126
132
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
@@ -226,6 +232,12 @@ function resolveComWixpressBookingsBookingsV2BookingsUrl(opts) {
|
|
|
226
232
|
srcPath: "/_api/bookings-service",
|
|
227
233
|
destPath: "/v2/bookings"
|
|
228
234
|
}
|
|
235
|
+
],
|
|
236
|
+
"api._api_base_domain_": [
|
|
237
|
+
{
|
|
238
|
+
srcPath: "/bookings-service",
|
|
239
|
+
destPath: ""
|
|
240
|
+
}
|
|
229
241
|
]
|
|
230
242
|
};
|
|
231
243
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|