@wix/auto_sdk_ecom_local-delivery-options 1.0.24 → 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.d.ts +2 -0
- 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.d.mts +2 -0
- 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.d.ts +2 -0
- 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.d.mts +2 -0
- 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
|
@@ -630,11 +630,13 @@ declare enum WebhookIdentityType {
|
|
|
630
630
|
}
|
|
631
631
|
/** @enumType */
|
|
632
632
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
633
|
+
/** @docsIgnore */
|
|
633
634
|
type CreateLocalDeliveryOptionApplicationErrors = {
|
|
634
635
|
code?: 'LIMIT_OF_OPTIONS_PER_EXTERNAL_ID_EXCEEDED';
|
|
635
636
|
description?: string;
|
|
636
637
|
data?: Record<string, any>;
|
|
637
638
|
};
|
|
639
|
+
/** @docsIgnore */
|
|
638
640
|
type BulkCreateLocalDeliveryOptionApplicationErrors = {
|
|
639
641
|
code?: 'LIMIT_OF_OPTIONS_PER_DELIVERY_REGION_EXCEEDED';
|
|
640
642
|
description?: string;
|
|
@@ -74,6 +74,9 @@ function createLocalDeliveryOption(payload) {
|
|
|
74
74
|
method: "POST",
|
|
75
75
|
methodFqn: "com.wix.ecom.shipments.localdelivery.LocalDelivery.CreateLocalDeliveryOption",
|
|
76
76
|
packageName: PACKAGE_NAME,
|
|
77
|
+
migrationOptions: {
|
|
78
|
+
optInTransformResponse: true
|
|
79
|
+
},
|
|
77
80
|
url: resolveComWixEcomShipmentsLocaldeliveryLocalDeliveryUrl({
|
|
78
81
|
protoPath: "/v1/local-delivery-options",
|
|
79
82
|
data: serializedData,
|
|
@@ -120,6 +123,9 @@ function getLocalDeliveryOption(payload) {
|
|
|
120
123
|
method: "GET",
|
|
121
124
|
methodFqn: "com.wix.ecom.shipments.localdelivery.LocalDelivery.GetLocalDeliveryOption",
|
|
122
125
|
packageName: PACKAGE_NAME,
|
|
126
|
+
migrationOptions: {
|
|
127
|
+
optInTransformResponse: true
|
|
128
|
+
},
|
|
123
129
|
url: resolveComWixEcomShipmentsLocaldeliveryLocalDeliveryUrl({
|
|
124
130
|
protoPath: "/v1/local-delivery-options/{localDeliveryOptionId}",
|
|
125
131
|
data: payload,
|
|
@@ -177,6 +183,9 @@ function listLocalDeliveryOptions(payload) {
|
|
|
177
183
|
method: "GET",
|
|
178
184
|
methodFqn: "com.wix.ecom.shipments.localdelivery.LocalDelivery.ListLocalDeliveryOptions",
|
|
179
185
|
packageName: PACKAGE_NAME,
|
|
186
|
+
migrationOptions: {
|
|
187
|
+
optInTransformResponse: true
|
|
188
|
+
},
|
|
180
189
|
url: resolveComWixEcomShipmentsLocaldeliveryLocalDeliveryUrl({
|
|
181
190
|
protoPath: "/v1/localDeliveryOptions",
|
|
182
191
|
data: payload,
|
|
@@ -223,6 +232,9 @@ function queryLocalDeliveryOptions(payload) {
|
|
|
223
232
|
method: "POST",
|
|
224
233
|
methodFqn: "com.wix.ecom.shipments.localdelivery.LocalDelivery.QueryLocalDeliveryOptions",
|
|
225
234
|
packageName: PACKAGE_NAME,
|
|
235
|
+
migrationOptions: {
|
|
236
|
+
optInTransformResponse: true
|
|
237
|
+
},
|
|
226
238
|
url: resolveComWixEcomShipmentsLocaldeliveryLocalDeliveryUrl({
|
|
227
239
|
protoPath: "/v1/local-delivery-options/query",
|
|
228
240
|
data: payload,
|
|
@@ -295,6 +307,9 @@ function updateLocalDeliveryOption(payload) {
|
|
|
295
307
|
method: "PATCH",
|
|
296
308
|
methodFqn: "com.wix.ecom.shipments.localdelivery.LocalDelivery.UpdateLocalDeliveryOption",
|
|
297
309
|
packageName: PACKAGE_NAME,
|
|
310
|
+
migrationOptions: {
|
|
311
|
+
optInTransformResponse: true
|
|
312
|
+
},
|
|
298
313
|
url: resolveComWixEcomShipmentsLocaldeliveryLocalDeliveryUrl({
|
|
299
314
|
protoPath: "/v1/local-delivery-options/{localDeliveryOption.id}",
|
|
300
315
|
data: serializedData,
|
|
@@ -341,6 +356,9 @@ function deleteLocalDeliveryOption(payload) {
|
|
|
341
356
|
method: "DELETE",
|
|
342
357
|
methodFqn: "com.wix.ecom.shipments.localdelivery.LocalDelivery.DeleteLocalDeliveryOption",
|
|
343
358
|
packageName: PACKAGE_NAME,
|
|
359
|
+
migrationOptions: {
|
|
360
|
+
optInTransformResponse: true
|
|
361
|
+
},
|
|
344
362
|
url: resolveComWixEcomShipmentsLocaldeliveryLocalDeliveryUrl({
|
|
345
363
|
protoPath: "/v1/local-delivery-options/{localDeliveryOptionId}",
|
|
346
364
|
data: payload,
|
|
@@ -383,6 +401,9 @@ function bulkCreateLocalDeliveryOption(payload) {
|
|
|
383
401
|
method: "POST",
|
|
384
402
|
methodFqn: "com.wix.ecom.shipments.localdelivery.LocalDelivery.BulkCreateLocalDeliveryOption",
|
|
385
403
|
packageName: PACKAGE_NAME,
|
|
404
|
+
migrationOptions: {
|
|
405
|
+
optInTransformResponse: true
|
|
406
|
+
},
|
|
386
407
|
url: resolveComWixEcomShipmentsLocaldeliveryLocalDeliveryUrl({
|
|
387
408
|
protoPath: "/v1/bulk/local-delivery-options/create",
|
|
388
409
|
data: serializedData,
|
|
@@ -453,6 +474,9 @@ function bulkUpdateLocalDeliveryOption(payload) {
|
|
|
453
474
|
method: "PATCH",
|
|
454
475
|
methodFqn: "com.wix.ecom.shipments.localdelivery.LocalDelivery.BulkUpdateLocalDeliveryOption",
|
|
455
476
|
packageName: PACKAGE_NAME,
|
|
477
|
+
migrationOptions: {
|
|
478
|
+
optInTransformResponse: true
|
|
479
|
+
},
|
|
456
480
|
url: resolveComWixEcomShipmentsLocaldeliveryLocalDeliveryUrl({
|
|
457
481
|
protoPath: "/v1/bulk/local-delivery-options/update",
|
|
458
482
|
data: serializedData,
|
|
@@ -499,6 +523,9 @@ function bulkDeleteLocalDeliveryOption(payload) {
|
|
|
499
523
|
method: "DELETE",
|
|
500
524
|
methodFqn: "com.wix.ecom.shipments.localdelivery.LocalDelivery.BulkDeleteLocalDeliveryOption",
|
|
501
525
|
packageName: PACKAGE_NAME,
|
|
526
|
+
migrationOptions: {
|
|
527
|
+
optInTransformResponse: true
|
|
528
|
+
},
|
|
502
529
|
url: resolveComWixEcomShipmentsLocaldeliveryLocalDeliveryUrl({
|
|
503
530
|
protoPath: "/v1/bulk/local-delivery-options/delete",
|
|
504
531
|
data: payload,
|
|
@@ -517,6 +544,9 @@ function addDeliveryRegion(payload) {
|
|
|
517
544
|
method: "POST",
|
|
518
545
|
methodFqn: "com.wix.ecom.shipments.localdelivery.LocalDelivery.AddDeliveryRegion",
|
|
519
546
|
packageName: PACKAGE_NAME,
|
|
547
|
+
migrationOptions: {
|
|
548
|
+
optInTransformResponse: true
|
|
549
|
+
},
|
|
520
550
|
url: resolveComWixEcomShipmentsLocaldeliveryLocalDeliveryUrl({
|
|
521
551
|
protoPath: "/v1/local-delivery-options/add-delivery-region",
|
|
522
552
|
data: payload,
|
|
@@ -563,6 +593,9 @@ function removeDeliveryRegion(payload) {
|
|
|
563
593
|
method: "POST",
|
|
564
594
|
methodFqn: "com.wix.ecom.shipments.localdelivery.LocalDelivery.RemoveDeliveryRegion",
|
|
565
595
|
packageName: PACKAGE_NAME,
|
|
596
|
+
migrationOptions: {
|
|
597
|
+
optInTransformResponse: true
|
|
598
|
+
},
|
|
566
599
|
url: resolveComWixEcomShipmentsLocaldeliveryLocalDeliveryUrl({
|
|
567
600
|
protoPath: "/v1/local-delivery-options/remove-delivery-region",
|
|
568
601
|
data: payload,
|