@wix/auto_sdk_bookings_bookings 1.0.71 → 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.js +12 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js +12 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.js +12 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +12 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs +12 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.mjs +12 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +12 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.js +12 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.js +12 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +12 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.mjs +12 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.mjs +12 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -114,6 +114,12 @@ function resolveComWixpressBookingsBookingsV2MultiServiceBookingsUrl(opts) {
|
|
|
114
114
|
srcPath: "/_api/bookings-service",
|
|
115
115
|
destPath: "/v2/bookings"
|
|
116
116
|
}
|
|
117
|
+
],
|
|
118
|
+
"api._api_base_domain_": [
|
|
119
|
+
{
|
|
120
|
+
srcPath: "/bookings-service",
|
|
121
|
+
destPath: ""
|
|
122
|
+
}
|
|
117
123
|
]
|
|
118
124
|
};
|
|
119
125
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
@@ -219,6 +225,12 @@ function resolveComWixpressBookingsBookingsV2BookingsUrl(opts) {
|
|
|
219
225
|
srcPath: "/_api/bookings-service",
|
|
220
226
|
destPath: "/v2/bookings"
|
|
221
227
|
}
|
|
228
|
+
],
|
|
229
|
+
"api._api_base_domain_": [
|
|
230
|
+
{
|
|
231
|
+
srcPath: "/bookings-service",
|
|
232
|
+
destPath: ""
|
|
233
|
+
}
|
|
222
234
|
]
|
|
223
235
|
};
|
|
224
236
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|