@wix/auto_sdk_bookings_bookings 1.0.69 → 1.0.71
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 +0 -24
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +35 -3
- package/build/cjs/index.typings.js +0 -24
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +33 -1
- package/build/cjs/meta.js +0 -24
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +0 -24
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +35 -3
- package/build/es/index.typings.mjs +0 -24
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +33 -1
- package/build/es/meta.mjs +0 -24
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +0 -24
- 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 +0 -24
- 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 +0 -24
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +0 -24
- 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 +0 -24
- 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 +0 -24
- 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
|
*
|
|
@@ -38,10 +38,6 @@ function resolveComWixpressBookingsBookingsV2MultiServiceBookingsUrl(opts) {
|
|
|
38
38
|
{
|
|
39
39
|
srcPath: "/_api/bookings-service/v2/bulk/multi_service_bookings",
|
|
40
40
|
destPath: "/v2/bulk/multi_service_bookings"
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
srcPath: "/bookings/multiServiceBookings/v2/multi_service_bookings",
|
|
44
|
-
destPath: "/v2/multi_service_bookings"
|
|
45
41
|
}
|
|
46
42
|
],
|
|
47
43
|
"manage._base_domain_": [
|
|
@@ -78,10 +74,6 @@ function resolveComWixpressBookingsBookingsV2MultiServiceBookingsUrl(opts) {
|
|
|
78
74
|
{
|
|
79
75
|
srcPath: "/_api/bookings-service/v2/multi_service_bookings",
|
|
80
76
|
destPath: "/v2/multi_service_bookings"
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
srcPath: "/bookings/multiServiceBookings/v2/multi_service_bookings",
|
|
84
|
-
destPath: "/v2/multi_service_bookings"
|
|
85
77
|
}
|
|
86
78
|
],
|
|
87
79
|
"www._base_domain_": [
|
|
@@ -128,10 +120,6 @@ function resolveComWixpressBookingsBookingsV2MultiServiceBookingsUrl(opts) {
|
|
|
128
120
|
{
|
|
129
121
|
srcPath: "/_api/bookings-service",
|
|
130
122
|
destPath: "/v2/bookings"
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
srcPath: "/bookings/multiServiceBookings/v2/multi_service_bookings",
|
|
134
|
-
destPath: "/v2/multi_service_bookings"
|
|
135
123
|
}
|
|
136
124
|
]
|
|
137
125
|
};
|
|
@@ -155,10 +143,6 @@ function resolveComWixpressBookingsBookingsV2BookingsUrl(opts) {
|
|
|
155
143
|
{
|
|
156
144
|
srcPath: "/_api/bookings-service/v2/bulk/multi_service_bookings",
|
|
157
145
|
destPath: "/v2/bulk/multi_service_bookings"
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
srcPath: "/bookings/multiServiceBookings/v2/multi_service_bookings",
|
|
161
|
-
destPath: "/v2/multi_service_bookings"
|
|
162
146
|
}
|
|
163
147
|
],
|
|
164
148
|
"manage._base_domain_": [
|
|
@@ -195,10 +179,6 @@ function resolveComWixpressBookingsBookingsV2BookingsUrl(opts) {
|
|
|
195
179
|
{
|
|
196
180
|
srcPath: "/_api/bookings-service/v2/multi_service_bookings",
|
|
197
181
|
destPath: "/v2/multi_service_bookings"
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
srcPath: "/bookings/multiServiceBookings/v2/multi_service_bookings",
|
|
201
|
-
destPath: "/v2/multi_service_bookings"
|
|
202
182
|
}
|
|
203
183
|
],
|
|
204
184
|
"www._base_domain_": [
|
|
@@ -245,10 +225,6 @@ function resolveComWixpressBookingsBookingsV2BookingsUrl(opts) {
|
|
|
245
225
|
{
|
|
246
226
|
srcPath: "/_api/bookings-service",
|
|
247
227
|
destPath: "/v2/bookings"
|
|
248
|
-
},
|
|
249
|
-
{
|
|
250
|
-
srcPath: "/bookings/multiServiceBookings/v2/multi_service_bookings",
|
|
251
|
-
destPath: "/v2/multi_service_bookings"
|
|
252
228
|
}
|
|
253
229
|
]
|
|
254
230
|
};
|