@wix/auto_sdk_seatings_seating-plan 1.0.19 → 1.0.21
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.d.ts +19 -17
- package/build/cjs/index.js +39 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +266 -166
- package/build/cjs/index.typings.js +39 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +456 -119
- package/build/cjs/meta.js +140 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +19 -17
- package/build/es/index.mjs +39 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +266 -166
- package/build/es/index.typings.mjs +39 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +456 -119
- package/build/es/meta.mjs +131 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +19 -17
- package/build/internal/cjs/index.js +39 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +266 -166
- package/build/internal/cjs/index.typings.js +39 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +456 -119
- package/build/internal/cjs/meta.js +140 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +19 -17
- package/build/internal/es/index.mjs +39 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +266 -166
- package/build/internal/es/index.typings.mjs +39 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +456 -119
- package/build/internal/es/meta.mjs +131 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -76,6 +76,12 @@ function resolveComWixpressSeatingSeatingPlanThumbnailServiceUrl(opts) {
|
|
|
76
76
|
srcPath: "/_api/seating-plans",
|
|
77
77
|
destPath: ""
|
|
78
78
|
}
|
|
79
|
+
],
|
|
80
|
+
"www.wixapis.com": [
|
|
81
|
+
{
|
|
82
|
+
srcPath: "/seating/v1/plans",
|
|
83
|
+
destPath: "/v1/plans"
|
|
84
|
+
}
|
|
79
85
|
]
|
|
80
86
|
};
|
|
81
87
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
@@ -141,6 +147,12 @@ function resolveComWixpressSeatingSeatingPlanManagementUrl(opts) {
|
|
|
141
147
|
srcPath: "/_api/seating-plans",
|
|
142
148
|
destPath: ""
|
|
143
149
|
}
|
|
150
|
+
],
|
|
151
|
+
"www.wixapis.com": [
|
|
152
|
+
{
|
|
153
|
+
srcPath: "/seating/v1/plans",
|
|
154
|
+
destPath: "/v1/plans"
|
|
155
|
+
}
|
|
144
156
|
]
|
|
145
157
|
};
|
|
146
158
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
@@ -188,6 +200,9 @@ function createSeatingPlan(payload) {
|
|
|
188
200
|
method: "POST",
|
|
189
201
|
methodFqn: "com.wixpress.seating.SeatingPlanManagement.CreateSeatingPlan",
|
|
190
202
|
packageName: PACKAGE_NAME,
|
|
203
|
+
migrationOptions: {
|
|
204
|
+
optInTransformResponse: true
|
|
205
|
+
},
|
|
191
206
|
url: resolveComWixpressSeatingSeatingPlanManagementUrl({
|
|
192
207
|
protoPath: "/v1/plans",
|
|
193
208
|
data: serializedData,
|
|
@@ -284,6 +299,9 @@ function updateSeatingPlan(payload) {
|
|
|
284
299
|
method: "PUT",
|
|
285
300
|
methodFqn: "com.wixpress.seating.SeatingPlanManagement.UpdateSeatingPlan",
|
|
286
301
|
packageName: PACKAGE_NAME,
|
|
302
|
+
migrationOptions: {
|
|
303
|
+
optInTransformResponse: true
|
|
304
|
+
},
|
|
287
305
|
url: resolveComWixpressSeatingSeatingPlanManagementUrl({
|
|
288
306
|
protoPath: "/v1/plans",
|
|
289
307
|
data: serializedData,
|
|
@@ -341,6 +359,9 @@ function copySeatingPlan(payload) {
|
|
|
341
359
|
method: "POST",
|
|
342
360
|
methodFqn: "com.wixpress.seating.SeatingPlanManagement.CopySeatingPlan",
|
|
343
361
|
packageName: PACKAGE_NAME,
|
|
362
|
+
migrationOptions: {
|
|
363
|
+
optInTransformResponse: true
|
|
364
|
+
},
|
|
344
365
|
url: resolveComWixpressSeatingSeatingPlanManagementUrl({
|
|
345
366
|
protoPath: "/v1/plans/copy",
|
|
346
367
|
data: payload,
|
|
@@ -398,6 +419,9 @@ function querySeatingPlan(payload) {
|
|
|
398
419
|
method: "POST",
|
|
399
420
|
methodFqn: "com.wixpress.seating.SeatingPlanManagement.QuerySeatingPlan",
|
|
400
421
|
packageName: PACKAGE_NAME,
|
|
422
|
+
migrationOptions: {
|
|
423
|
+
optInTransformResponse: true
|
|
424
|
+
},
|
|
401
425
|
url: resolveComWixpressSeatingSeatingPlanManagementUrl({
|
|
402
426
|
protoPath: "/v1/plans/query",
|
|
403
427
|
data: payload,
|
|
@@ -458,6 +482,9 @@ function getSeatingPlan(payload) {
|
|
|
458
482
|
method: "GET",
|
|
459
483
|
methodFqn: "com.wixpress.seating.SeatingPlanManagement.GetSeatingPlan",
|
|
460
484
|
packageName: PACKAGE_NAME,
|
|
485
|
+
migrationOptions: {
|
|
486
|
+
optInTransformResponse: true
|
|
487
|
+
},
|
|
461
488
|
url: resolveComWixpressSeatingSeatingPlanManagementUrl({
|
|
462
489
|
protoPath: "/v1/plans/{id}",
|
|
463
490
|
data: payload,
|
|
@@ -515,6 +542,9 @@ function findSeatingPlan(payload) {
|
|
|
515
542
|
method: "POST",
|
|
516
543
|
methodFqn: "com.wixpress.seating.SeatingPlanManagement.FindSeatingPlan",
|
|
517
544
|
packageName: PACKAGE_NAME,
|
|
545
|
+
migrationOptions: {
|
|
546
|
+
optInTransformResponse: true
|
|
547
|
+
},
|
|
518
548
|
url: resolveComWixpressSeatingSeatingPlanManagementUrl({
|
|
519
549
|
protoPath: "/v1/plans/find",
|
|
520
550
|
data: payload,
|
|
@@ -572,6 +602,9 @@ function deleteSeatingPlan(payload) {
|
|
|
572
602
|
method: "DELETE",
|
|
573
603
|
methodFqn: "com.wixpress.seating.SeatingPlanManagement.DeleteSeatingPlan",
|
|
574
604
|
packageName: PACKAGE_NAME,
|
|
605
|
+
migrationOptions: {
|
|
606
|
+
optInTransformResponse: true
|
|
607
|
+
},
|
|
575
608
|
url: resolveComWixpressSeatingSeatingPlanManagementUrl({
|
|
576
609
|
protoPath: "/v1/plans/{id}",
|
|
577
610
|
data: payload,
|
|
@@ -629,6 +662,9 @@ function updateSeatingPlanThumbnail(payload) {
|
|
|
629
662
|
method: "POST",
|
|
630
663
|
methodFqn: "com.wixpress.seating.SeatingPlanThumbnailService.UpdateSeatingPlanThumbnail",
|
|
631
664
|
packageName: PACKAGE_NAME,
|
|
665
|
+
migrationOptions: {
|
|
666
|
+
optInTransformResponse: true
|
|
667
|
+
},
|
|
632
668
|
url: resolveComWixpressSeatingSeatingPlanThumbnailServiceUrl({
|
|
633
669
|
protoPath: "/v1/plan-thumbnails",
|
|
634
670
|
data: payload,
|
|
@@ -647,6 +683,9 @@ function getSeatingPlanThumbnail(payload) {
|
|
|
647
683
|
method: "GET",
|
|
648
684
|
methodFqn: "com.wixpress.seating.SeatingPlanThumbnailService.GetSeatingPlanThumbnail",
|
|
649
685
|
packageName: PACKAGE_NAME,
|
|
686
|
+
migrationOptions: {
|
|
687
|
+
optInTransformResponse: true
|
|
688
|
+
},
|
|
650
689
|
url: resolveComWixpressSeatingSeatingPlanThumbnailServiceUrl({
|
|
651
690
|
protoPath: "/v1/plan-thumbnails",
|
|
652
691
|
data: payload,
|