@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
|
@@ -102,6 +102,9 @@ function createBookingPolicy(payload) {
|
|
|
102
102
|
method: "POST",
|
|
103
103
|
methodFqn: "wix.bookings.v1.BookingPoliciesService.CreateBookingPolicy",
|
|
104
104
|
packageName: PACKAGE_NAME,
|
|
105
|
+
migrationOptions: {
|
|
106
|
+
optInTransformResponse: true
|
|
107
|
+
},
|
|
105
108
|
url: resolveWixBookingsV1BookingPoliciesServiceUrl({
|
|
106
109
|
protoPath: "/v1/booking-policies",
|
|
107
110
|
data: serializedData,
|
|
@@ -129,6 +132,9 @@ function getBookingPolicy(payload) {
|
|
|
129
132
|
method: "GET",
|
|
130
133
|
methodFqn: "wix.bookings.v1.BookingPoliciesService.GetBookingPolicy",
|
|
131
134
|
packageName: PACKAGE_NAME,
|
|
135
|
+
migrationOptions: {
|
|
136
|
+
optInTransformResponse: true
|
|
137
|
+
},
|
|
132
138
|
url: resolveWixBookingsV1BookingPoliciesServiceUrl({
|
|
133
139
|
protoPath: "/v1/booking-policies/{bookingPolicyId}",
|
|
134
140
|
data: payload,
|
|
@@ -156,6 +162,9 @@ function getStrictestBookingPolicy(payload) {
|
|
|
156
162
|
method: "POST",
|
|
157
163
|
methodFqn: "wix.bookings.v1.BookingPoliciesService.GetStrictestBookingPolicy",
|
|
158
164
|
packageName: PACKAGE_NAME,
|
|
165
|
+
migrationOptions: {
|
|
166
|
+
optInTransformResponse: true
|
|
167
|
+
},
|
|
159
168
|
url: resolveWixBookingsV1BookingPoliciesServiceUrl({
|
|
160
169
|
protoPath: "/v1/booking-policies/strictest",
|
|
161
170
|
data: payload,
|
|
@@ -196,6 +205,9 @@ function updateBookingPolicy(payload) {
|
|
|
196
205
|
method: "PATCH",
|
|
197
206
|
methodFqn: "wix.bookings.v1.BookingPoliciesService.UpdateBookingPolicy",
|
|
198
207
|
packageName: PACKAGE_NAME,
|
|
208
|
+
migrationOptions: {
|
|
209
|
+
optInTransformResponse: true
|
|
210
|
+
},
|
|
199
211
|
url: resolveWixBookingsV1BookingPoliciesServiceUrl({
|
|
200
212
|
protoPath: "/v1/booking-policies/{bookingPolicy.id}",
|
|
201
213
|
data: serializedData,
|
|
@@ -223,6 +235,9 @@ function setDefaultBookingPolicy(payload) {
|
|
|
223
235
|
method: "POST",
|
|
224
236
|
methodFqn: "wix.bookings.v1.BookingPoliciesService.SetDefaultBookingPolicy",
|
|
225
237
|
packageName: PACKAGE_NAME,
|
|
238
|
+
migrationOptions: {
|
|
239
|
+
optInTransformResponse: true
|
|
240
|
+
},
|
|
226
241
|
url: resolveWixBookingsV1BookingPoliciesServiceUrl({
|
|
227
242
|
protoPath: "/v1/booking-policies/{bookingPolicyId}:setDefault",
|
|
228
243
|
data: payload,
|
|
@@ -252,6 +267,9 @@ function deleteBookingPolicy(payload) {
|
|
|
252
267
|
method: "DELETE",
|
|
253
268
|
methodFqn: "wix.bookings.v1.BookingPoliciesService.DeleteBookingPolicy",
|
|
254
269
|
packageName: PACKAGE_NAME,
|
|
270
|
+
migrationOptions: {
|
|
271
|
+
optInTransformResponse: true
|
|
272
|
+
},
|
|
255
273
|
url: resolveWixBookingsV1BookingPoliciesServiceUrl({
|
|
256
274
|
protoPath: "/v1/booking-policies/{bookingPolicyId}",
|
|
257
275
|
data: payload,
|
|
@@ -270,6 +288,9 @@ function queryBookingPolicies(payload) {
|
|
|
270
288
|
method: "POST",
|
|
271
289
|
methodFqn: "wix.bookings.v1.BookingPoliciesService.QueryBookingPolicies",
|
|
272
290
|
packageName: PACKAGE_NAME,
|
|
291
|
+
migrationOptions: {
|
|
292
|
+
optInTransformResponse: true
|
|
293
|
+
},
|
|
273
294
|
url: resolveWixBookingsV1BookingPoliciesServiceUrl({
|
|
274
295
|
protoPath: "/v1/booking-policies/query",
|
|
275
296
|
data: payload,
|
|
@@ -297,6 +318,9 @@ function countBookingPolicies(payload) {
|
|
|
297
318
|
method: "POST",
|
|
298
319
|
methodFqn: "wix.bookings.v1.BookingPoliciesService.CountBookingPolicies",
|
|
299
320
|
packageName: PACKAGE_NAME,
|
|
321
|
+
migrationOptions: {
|
|
322
|
+
optInTransformResponse: true
|
|
323
|
+
},
|
|
300
324
|
url: resolveWixBookingsV1BookingPoliciesServiceUrl({
|
|
301
325
|
protoPath: "/v1/booking-policies/count",
|
|
302
326
|
data: payload,
|