@wix/auto_sdk_bookings_booking-policies 1.0.68 → 1.0.69
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 +24 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js +24 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.js +24 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +24 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs +24 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.mjs +24 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +24 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.js +24 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.js +24 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +24 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.mjs +24 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.mjs +24 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.js
CHANGED
|
@@ -112,6 +112,9 @@ function createBookingPolicy(payload) {
|
|
|
112
112
|
method: "POST",
|
|
113
113
|
methodFqn: "wix.bookings.v1.BookingPoliciesService.CreateBookingPolicy",
|
|
114
114
|
packageName: PACKAGE_NAME,
|
|
115
|
+
migrationOptions: {
|
|
116
|
+
optInTransformResponse: true
|
|
117
|
+
},
|
|
115
118
|
url: resolveWixBookingsV1BookingPoliciesServiceUrl({
|
|
116
119
|
protoPath: "/v1/booking-policies",
|
|
117
120
|
data: serializedData,
|
|
@@ -139,6 +142,9 @@ function getBookingPolicy(payload) {
|
|
|
139
142
|
method: "GET",
|
|
140
143
|
methodFqn: "wix.bookings.v1.BookingPoliciesService.GetBookingPolicy",
|
|
141
144
|
packageName: PACKAGE_NAME,
|
|
145
|
+
migrationOptions: {
|
|
146
|
+
optInTransformResponse: true
|
|
147
|
+
},
|
|
142
148
|
url: resolveWixBookingsV1BookingPoliciesServiceUrl({
|
|
143
149
|
protoPath: "/v1/booking-policies/{bookingPolicyId}",
|
|
144
150
|
data: payload,
|
|
@@ -166,6 +172,9 @@ function getStrictestBookingPolicy(payload) {
|
|
|
166
172
|
method: "POST",
|
|
167
173
|
methodFqn: "wix.bookings.v1.BookingPoliciesService.GetStrictestBookingPolicy",
|
|
168
174
|
packageName: PACKAGE_NAME,
|
|
175
|
+
migrationOptions: {
|
|
176
|
+
optInTransformResponse: true
|
|
177
|
+
},
|
|
169
178
|
url: resolveWixBookingsV1BookingPoliciesServiceUrl({
|
|
170
179
|
protoPath: "/v1/booking-policies/strictest",
|
|
171
180
|
data: payload,
|
|
@@ -206,6 +215,9 @@ function updateBookingPolicy(payload) {
|
|
|
206
215
|
method: "PATCH",
|
|
207
216
|
methodFqn: "wix.bookings.v1.BookingPoliciesService.UpdateBookingPolicy",
|
|
208
217
|
packageName: PACKAGE_NAME,
|
|
218
|
+
migrationOptions: {
|
|
219
|
+
optInTransformResponse: true
|
|
220
|
+
},
|
|
209
221
|
url: resolveWixBookingsV1BookingPoliciesServiceUrl({
|
|
210
222
|
protoPath: "/v1/booking-policies/{bookingPolicy.id}",
|
|
211
223
|
data: serializedData,
|
|
@@ -233,6 +245,9 @@ function setDefaultBookingPolicy(payload) {
|
|
|
233
245
|
method: "POST",
|
|
234
246
|
methodFqn: "wix.bookings.v1.BookingPoliciesService.SetDefaultBookingPolicy",
|
|
235
247
|
packageName: PACKAGE_NAME,
|
|
248
|
+
migrationOptions: {
|
|
249
|
+
optInTransformResponse: true
|
|
250
|
+
},
|
|
236
251
|
url: resolveWixBookingsV1BookingPoliciesServiceUrl({
|
|
237
252
|
protoPath: "/v1/booking-policies/{bookingPolicyId}:setDefault",
|
|
238
253
|
data: payload,
|
|
@@ -262,6 +277,9 @@ function deleteBookingPolicy(payload) {
|
|
|
262
277
|
method: "DELETE",
|
|
263
278
|
methodFqn: "wix.bookings.v1.BookingPoliciesService.DeleteBookingPolicy",
|
|
264
279
|
packageName: PACKAGE_NAME,
|
|
280
|
+
migrationOptions: {
|
|
281
|
+
optInTransformResponse: true
|
|
282
|
+
},
|
|
265
283
|
url: resolveWixBookingsV1BookingPoliciesServiceUrl({
|
|
266
284
|
protoPath: "/v1/booking-policies/{bookingPolicyId}",
|
|
267
285
|
data: payload,
|
|
@@ -280,6 +298,9 @@ function queryBookingPolicies(payload) {
|
|
|
280
298
|
method: "POST",
|
|
281
299
|
methodFqn: "wix.bookings.v1.BookingPoliciesService.QueryBookingPolicies",
|
|
282
300
|
packageName: PACKAGE_NAME,
|
|
301
|
+
migrationOptions: {
|
|
302
|
+
optInTransformResponse: true
|
|
303
|
+
},
|
|
283
304
|
url: resolveWixBookingsV1BookingPoliciesServiceUrl({
|
|
284
305
|
protoPath: "/v1/booking-policies/query",
|
|
285
306
|
data: payload,
|
|
@@ -307,6 +328,9 @@ function countBookingPolicies(payload) {
|
|
|
307
328
|
method: "POST",
|
|
308
329
|
methodFqn: "wix.bookings.v1.BookingPoliciesService.CountBookingPolicies",
|
|
309
330
|
packageName: PACKAGE_NAME,
|
|
331
|
+
migrationOptions: {
|
|
332
|
+
optInTransformResponse: true
|
|
333
|
+
},
|
|
310
334
|
url: resolveWixBookingsV1BookingPoliciesServiceUrl({
|
|
311
335
|
protoPath: "/v1/booking-policies/count",
|
|
312
336
|
data: payload,
|