@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
|
@@ -107,6 +107,12 @@ function resolveComWixpressBookingsBookingsV2MultiServiceBookingsUrl(opts) {
|
|
|
107
107
|
srcPath: "/_api/bookings-service",
|
|
108
108
|
destPath: "/v2/bookings"
|
|
109
109
|
}
|
|
110
|
+
],
|
|
111
|
+
"api._api_base_domain_": [
|
|
112
|
+
{
|
|
113
|
+
srcPath: "/bookings-service",
|
|
114
|
+
destPath: ""
|
|
115
|
+
}
|
|
110
116
|
]
|
|
111
117
|
};
|
|
112
118
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
@@ -212,6 +218,12 @@ function resolveComWixpressBookingsBookingsV2BookingsUrl(opts) {
|
|
|
212
218
|
srcPath: "/_api/bookings-service",
|
|
213
219
|
destPath: "/v2/bookings"
|
|
214
220
|
}
|
|
221
|
+
],
|
|
222
|
+
"api._api_base_domain_": [
|
|
223
|
+
{
|
|
224
|
+
srcPath: "/bookings-service",
|
|
225
|
+
destPath: ""
|
|
226
|
+
}
|
|
215
227
|
]
|
|
216
228
|
};
|
|
217
229
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|