@wix/auto_sdk_ecom_local-delivery-options 1.0.25 → 1.0.26
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 +33 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js +33 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.js +33 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +33 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs +33 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.mjs +33 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +33 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.js +33 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.js +33 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +33 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.mjs +33 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.mjs +33 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.js
CHANGED
|
@@ -113,6 +113,9 @@ function createLocalDeliveryOption(payload) {
|
|
|
113
113
|
method: "POST",
|
|
114
114
|
methodFqn: "com.wix.ecom.shipments.localdelivery.LocalDelivery.CreateLocalDeliveryOption",
|
|
115
115
|
packageName: PACKAGE_NAME,
|
|
116
|
+
migrationOptions: {
|
|
117
|
+
optInTransformResponse: true
|
|
118
|
+
},
|
|
116
119
|
url: resolveComWixEcomShipmentsLocaldeliveryLocalDeliveryUrl({
|
|
117
120
|
protoPath: "/v1/local-delivery-options",
|
|
118
121
|
data: serializedData,
|
|
@@ -159,6 +162,9 @@ function getLocalDeliveryOption(payload) {
|
|
|
159
162
|
method: "GET",
|
|
160
163
|
methodFqn: "com.wix.ecom.shipments.localdelivery.LocalDelivery.GetLocalDeliveryOption",
|
|
161
164
|
packageName: PACKAGE_NAME,
|
|
165
|
+
migrationOptions: {
|
|
166
|
+
optInTransformResponse: true
|
|
167
|
+
},
|
|
162
168
|
url: resolveComWixEcomShipmentsLocaldeliveryLocalDeliveryUrl({
|
|
163
169
|
protoPath: "/v1/local-delivery-options/{localDeliveryOptionId}",
|
|
164
170
|
data: payload,
|
|
@@ -216,6 +222,9 @@ function listLocalDeliveryOptions(payload) {
|
|
|
216
222
|
method: "GET",
|
|
217
223
|
methodFqn: "com.wix.ecom.shipments.localdelivery.LocalDelivery.ListLocalDeliveryOptions",
|
|
218
224
|
packageName: PACKAGE_NAME,
|
|
225
|
+
migrationOptions: {
|
|
226
|
+
optInTransformResponse: true
|
|
227
|
+
},
|
|
219
228
|
url: resolveComWixEcomShipmentsLocaldeliveryLocalDeliveryUrl({
|
|
220
229
|
protoPath: "/v1/localDeliveryOptions",
|
|
221
230
|
data: payload,
|
|
@@ -262,6 +271,9 @@ function queryLocalDeliveryOptions(payload) {
|
|
|
262
271
|
method: "POST",
|
|
263
272
|
methodFqn: "com.wix.ecom.shipments.localdelivery.LocalDelivery.QueryLocalDeliveryOptions",
|
|
264
273
|
packageName: PACKAGE_NAME,
|
|
274
|
+
migrationOptions: {
|
|
275
|
+
optInTransformResponse: true
|
|
276
|
+
},
|
|
265
277
|
url: resolveComWixEcomShipmentsLocaldeliveryLocalDeliveryUrl({
|
|
266
278
|
protoPath: "/v1/local-delivery-options/query",
|
|
267
279
|
data: payload,
|
|
@@ -334,6 +346,9 @@ function updateLocalDeliveryOption(payload) {
|
|
|
334
346
|
method: "PATCH",
|
|
335
347
|
methodFqn: "com.wix.ecom.shipments.localdelivery.LocalDelivery.UpdateLocalDeliveryOption",
|
|
336
348
|
packageName: PACKAGE_NAME,
|
|
349
|
+
migrationOptions: {
|
|
350
|
+
optInTransformResponse: true
|
|
351
|
+
},
|
|
337
352
|
url: resolveComWixEcomShipmentsLocaldeliveryLocalDeliveryUrl({
|
|
338
353
|
protoPath: "/v1/local-delivery-options/{localDeliveryOption.id}",
|
|
339
354
|
data: serializedData,
|
|
@@ -380,6 +395,9 @@ function deleteLocalDeliveryOption(payload) {
|
|
|
380
395
|
method: "DELETE",
|
|
381
396
|
methodFqn: "com.wix.ecom.shipments.localdelivery.LocalDelivery.DeleteLocalDeliveryOption",
|
|
382
397
|
packageName: PACKAGE_NAME,
|
|
398
|
+
migrationOptions: {
|
|
399
|
+
optInTransformResponse: true
|
|
400
|
+
},
|
|
383
401
|
url: resolveComWixEcomShipmentsLocaldeliveryLocalDeliveryUrl({
|
|
384
402
|
protoPath: "/v1/local-delivery-options/{localDeliveryOptionId}",
|
|
385
403
|
data: payload,
|
|
@@ -422,6 +440,9 @@ function bulkCreateLocalDeliveryOption(payload) {
|
|
|
422
440
|
method: "POST",
|
|
423
441
|
methodFqn: "com.wix.ecom.shipments.localdelivery.LocalDelivery.BulkCreateLocalDeliveryOption",
|
|
424
442
|
packageName: PACKAGE_NAME,
|
|
443
|
+
migrationOptions: {
|
|
444
|
+
optInTransformResponse: true
|
|
445
|
+
},
|
|
425
446
|
url: resolveComWixEcomShipmentsLocaldeliveryLocalDeliveryUrl({
|
|
426
447
|
protoPath: "/v1/bulk/local-delivery-options/create",
|
|
427
448
|
data: serializedData,
|
|
@@ -492,6 +513,9 @@ function bulkUpdateLocalDeliveryOption(payload) {
|
|
|
492
513
|
method: "PATCH",
|
|
493
514
|
methodFqn: "com.wix.ecom.shipments.localdelivery.LocalDelivery.BulkUpdateLocalDeliveryOption",
|
|
494
515
|
packageName: PACKAGE_NAME,
|
|
516
|
+
migrationOptions: {
|
|
517
|
+
optInTransformResponse: true
|
|
518
|
+
},
|
|
495
519
|
url: resolveComWixEcomShipmentsLocaldeliveryLocalDeliveryUrl({
|
|
496
520
|
protoPath: "/v1/bulk/local-delivery-options/update",
|
|
497
521
|
data: serializedData,
|
|
@@ -538,6 +562,9 @@ function bulkDeleteLocalDeliveryOption(payload) {
|
|
|
538
562
|
method: "DELETE",
|
|
539
563
|
methodFqn: "com.wix.ecom.shipments.localdelivery.LocalDelivery.BulkDeleteLocalDeliveryOption",
|
|
540
564
|
packageName: PACKAGE_NAME,
|
|
565
|
+
migrationOptions: {
|
|
566
|
+
optInTransformResponse: true
|
|
567
|
+
},
|
|
541
568
|
url: resolveComWixEcomShipmentsLocaldeliveryLocalDeliveryUrl({
|
|
542
569
|
protoPath: "/v1/bulk/local-delivery-options/delete",
|
|
543
570
|
data: payload,
|
|
@@ -556,6 +583,9 @@ function addDeliveryRegion(payload) {
|
|
|
556
583
|
method: "POST",
|
|
557
584
|
methodFqn: "com.wix.ecom.shipments.localdelivery.LocalDelivery.AddDeliveryRegion",
|
|
558
585
|
packageName: PACKAGE_NAME,
|
|
586
|
+
migrationOptions: {
|
|
587
|
+
optInTransformResponse: true
|
|
588
|
+
},
|
|
559
589
|
url: resolveComWixEcomShipmentsLocaldeliveryLocalDeliveryUrl({
|
|
560
590
|
protoPath: "/v1/local-delivery-options/add-delivery-region",
|
|
561
591
|
data: payload,
|
|
@@ -602,6 +632,9 @@ function removeDeliveryRegion(payload) {
|
|
|
602
632
|
method: "POST",
|
|
603
633
|
methodFqn: "com.wix.ecom.shipments.localdelivery.LocalDelivery.RemoveDeliveryRegion",
|
|
604
634
|
packageName: PACKAGE_NAME,
|
|
635
|
+
migrationOptions: {
|
|
636
|
+
optInTransformResponse: true
|
|
637
|
+
},
|
|
605
638
|
url: resolveComWixEcomShipmentsLocaldeliveryLocalDeliveryUrl({
|
|
606
639
|
protoPath: "/v1/local-delivery-options/remove-delivery-region",
|
|
607
640
|
data: payload,
|