@wix/auto_sdk_table-reservations_reservations 1.0.34 → 1.0.35
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 +36 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js +36 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +435 -1
- package/build/cjs/meta.js +220 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +36 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs +36 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +435 -1
- package/build/es/meta.mjs +200 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +36 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.js +36 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +435 -1
- package/build/internal/cjs/meta.js +220 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +36 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.mjs +36 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +435 -1
- package/build/internal/es/meta.mjs +200 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +3 -3
package/build/cjs/index.js
CHANGED
|
@@ -192,6 +192,9 @@ function createReservation(payload) {
|
|
|
192
192
|
method: "POST",
|
|
193
193
|
methodFqn: "wix.table_reservations.reservation.v1.ReservationsService.CreateReservation",
|
|
194
194
|
packageName: PACKAGE_NAME,
|
|
195
|
+
migrationOptions: {
|
|
196
|
+
optInTransformResponse: true
|
|
197
|
+
},
|
|
195
198
|
url: resolveWixTableReservationsReservationV1ReservationsServiceUrl({
|
|
196
199
|
protoPath: "/v1/reservations",
|
|
197
200
|
data: serializedData,
|
|
@@ -221,6 +224,9 @@ function getReservation(payload) {
|
|
|
221
224
|
method: "GET",
|
|
222
225
|
methodFqn: "wix.table_reservations.reservation.v1.ReservationsService.GetReservation",
|
|
223
226
|
packageName: PACKAGE_NAME,
|
|
227
|
+
migrationOptions: {
|
|
228
|
+
optInTransformResponse: true
|
|
229
|
+
},
|
|
224
230
|
url: resolveWixTableReservationsReservationV1ReservationsServiceUrl({
|
|
225
231
|
protoPath: "/v1/reservations/{reservationId}",
|
|
226
232
|
data: payload,
|
|
@@ -265,6 +271,9 @@ function updateReservation(payload) {
|
|
|
265
271
|
method: "PATCH",
|
|
266
272
|
methodFqn: "wix.table_reservations.reservation.v1.ReservationsService.UpdateReservation",
|
|
267
273
|
packageName: PACKAGE_NAME,
|
|
274
|
+
migrationOptions: {
|
|
275
|
+
optInTransformResponse: true
|
|
276
|
+
},
|
|
268
277
|
url: resolveWixTableReservationsReservationV1ReservationsServiceUrl({
|
|
269
278
|
protoPath: "/v1/reservations/{reservation.id}",
|
|
270
279
|
data: serializedData,
|
|
@@ -300,6 +309,9 @@ function createHeldReservation(payload) {
|
|
|
300
309
|
method: "POST",
|
|
301
310
|
methodFqn: "wix.table_reservations.reservation.v1.ReservationsService.CreateHeldReservation",
|
|
302
311
|
packageName: PACKAGE_NAME,
|
|
312
|
+
migrationOptions: {
|
|
313
|
+
optInTransformResponse: true
|
|
314
|
+
},
|
|
303
315
|
url: resolveWixTableReservationsReservationV1ReservationsServiceUrl({
|
|
304
316
|
protoPath: "/v1/reservations/hold",
|
|
305
317
|
data: serializedData,
|
|
@@ -329,6 +341,9 @@ function reserveReservation(payload) {
|
|
|
329
341
|
method: "POST",
|
|
330
342
|
methodFqn: "wix.table_reservations.reservation.v1.ReservationsService.ReserveReservation",
|
|
331
343
|
packageName: PACKAGE_NAME,
|
|
344
|
+
migrationOptions: {
|
|
345
|
+
optInTransformResponse: true
|
|
346
|
+
},
|
|
332
347
|
url: resolveWixTableReservationsReservationV1ReservationsServiceUrl({
|
|
333
348
|
protoPath: "/v1/reservations/{reservationId}/reserve",
|
|
334
349
|
data: payload,
|
|
@@ -358,6 +373,9 @@ function cancelReservation(payload) {
|
|
|
358
373
|
method: "POST",
|
|
359
374
|
methodFqn: "wix.table_reservations.reservation.v1.ReservationsService.CancelReservation",
|
|
360
375
|
packageName: PACKAGE_NAME,
|
|
376
|
+
migrationOptions: {
|
|
377
|
+
optInTransformResponse: true
|
|
378
|
+
},
|
|
361
379
|
url: resolveWixTableReservationsReservationV1ReservationsServiceUrl({
|
|
362
380
|
protoPath: "/v1/reservations/{reservationId}/cancel",
|
|
363
381
|
data: payload,
|
|
@@ -387,6 +405,9 @@ function deleteReservation(payload) {
|
|
|
387
405
|
method: "DELETE",
|
|
388
406
|
methodFqn: "wix.table_reservations.reservation.v1.ReservationsService.DeleteReservation",
|
|
389
407
|
packageName: PACKAGE_NAME,
|
|
408
|
+
migrationOptions: {
|
|
409
|
+
optInTransformResponse: true
|
|
410
|
+
},
|
|
390
411
|
url: resolveWixTableReservationsReservationV1ReservationsServiceUrl({
|
|
391
412
|
protoPath: "/v1/reservations/{reservationId}",
|
|
392
413
|
data: payload,
|
|
@@ -411,6 +432,9 @@ function listReservations(payload) {
|
|
|
411
432
|
method: "GET",
|
|
412
433
|
methodFqn: "wix.table_reservations.reservation.v1.ReservationsService.ListReservations",
|
|
413
434
|
packageName: PACKAGE_NAME,
|
|
435
|
+
migrationOptions: {
|
|
436
|
+
optInTransformResponse: true
|
|
437
|
+
},
|
|
414
438
|
url: resolveWixTableReservationsReservationV1ReservationsServiceUrl({
|
|
415
439
|
protoPath: "/v1/reservations",
|
|
416
440
|
data: serializedData,
|
|
@@ -440,6 +464,9 @@ function queryReservations(payload) {
|
|
|
440
464
|
method: "POST",
|
|
441
465
|
methodFqn: "wix.table_reservations.reservation.v1.ReservationsService.QueryReservations",
|
|
442
466
|
packageName: PACKAGE_NAME,
|
|
467
|
+
migrationOptions: {
|
|
468
|
+
optInTransformResponse: true
|
|
469
|
+
},
|
|
443
470
|
url: resolveWixTableReservationsReservationV1ReservationsServiceUrl({
|
|
444
471
|
protoPath: "/v1/reservations/query",
|
|
445
472
|
data: payload,
|
|
@@ -484,6 +511,9 @@ function searchReservations(payload) {
|
|
|
484
511
|
method: "POST",
|
|
485
512
|
methodFqn: "wix.table_reservations.reservation.v1.ReservationsService.SearchReservations",
|
|
486
513
|
packageName: PACKAGE_NAME,
|
|
514
|
+
migrationOptions: {
|
|
515
|
+
optInTransformResponse: true
|
|
516
|
+
},
|
|
487
517
|
url: resolveWixTableReservationsReservationV1ReservationsServiceUrl({
|
|
488
518
|
protoPath: "/v1/reservations/search",
|
|
489
519
|
data: serializedData,
|
|
@@ -539,6 +569,9 @@ function bulkArchiveReservations(payload) {
|
|
|
539
569
|
method: "POST",
|
|
540
570
|
methodFqn: "wix.table_reservations.reservation.v1.ReservationsService.BulkArchiveReservations",
|
|
541
571
|
packageName: PACKAGE_NAME,
|
|
572
|
+
migrationOptions: {
|
|
573
|
+
optInTransformResponse: true
|
|
574
|
+
},
|
|
542
575
|
url: resolveWixTableReservationsReservationV1ReservationsServiceUrl({
|
|
543
576
|
protoPath: "/v1/bulk/reservations/archive",
|
|
544
577
|
data: payload,
|
|
@@ -557,6 +590,9 @@ function bulkUnarchiveReservations(payload) {
|
|
|
557
590
|
method: "POST",
|
|
558
591
|
methodFqn: "wix.table_reservations.reservation.v1.ReservationsService.BulkUnarchiveReservations",
|
|
559
592
|
packageName: PACKAGE_NAME,
|
|
593
|
+
migrationOptions: {
|
|
594
|
+
optInTransformResponse: true
|
|
595
|
+
},
|
|
560
596
|
url: resolveWixTableReservationsReservationV1ReservationsServiceUrl({
|
|
561
597
|
protoPath: "/v1/bulk/reservations/unarchive",
|
|
562
598
|
data: payload,
|