@wix/auto_sdk_ecom_checkout 1.0.74 → 1.0.76

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.
@@ -245,6 +245,9 @@ function createCheckout(payload) {
245
245
  method: "POST",
246
246
  methodFqn: "com.wix.ecom.checkout.api.v1.CheckoutService.CreateCheckout",
247
247
  packageName: PACKAGE_NAME,
248
+ migrationOptions: {
249
+ optInTransformResponse: true
250
+ },
248
251
  url: resolveComWixEcomCheckoutApiV1CheckoutServiceUrl({
249
252
  protoPath: "/v1/checkouts",
250
253
  data: serializedData,
@@ -328,6 +331,9 @@ function getCheckout(payload) {
328
331
  method: "GET",
329
332
  methodFqn: "com.wix.ecom.checkout.api.v1.CheckoutService.GetCheckout",
330
333
  packageName: PACKAGE_NAME,
334
+ migrationOptions: {
335
+ optInTransformResponse: true
336
+ },
331
337
  url: resolveComWixEcomCheckoutApiV1CheckoutServiceUrl({
332
338
  protoPath: "/v1/checkouts/{id}",
333
339
  data: payload,
@@ -411,6 +417,9 @@ function getCheckoutByCartId(payload) {
411
417
  method: "GET",
412
418
  methodFqn: "com.wix.ecom.checkout.api.v1.CheckoutService.GetCheckoutByCartId",
413
419
  packageName: PACKAGE_NAME,
420
+ migrationOptions: {
421
+ optInTransformResponse: true
422
+ },
414
423
  url: resolveComWixEcomCheckoutApiV1CheckoutServiceUrl({
415
424
  protoPath: "/v1/checkouts/by-cart-id/{id}",
416
425
  data: payload,
@@ -494,6 +503,9 @@ function getWixCheckoutUrl(payload) {
494
503
  method: "GET",
495
504
  methodFqn: "com.wix.ecom.checkout.api.v1.CheckoutService.GetWixCheckoutURL",
496
505
  packageName: PACKAGE_NAME,
506
+ migrationOptions: {
507
+ optInTransformResponse: true
508
+ },
497
509
  url: resolveComWixEcomCheckoutApiV1CheckoutServiceUrl({
498
510
  protoPath: "/v1/checkouts/{id}/wix-checkout-url",
499
511
  data: payload,
@@ -512,6 +524,9 @@ function getCheckoutUrl(payload) {
512
524
  method: "GET",
513
525
  methodFqn: "com.wix.ecom.checkout.api.v1.CheckoutService.GetCheckoutURL",
514
526
  packageName: PACKAGE_NAME,
527
+ migrationOptions: {
528
+ optInTransformResponse: true
529
+ },
515
530
  url: resolveComWixEcomCheckoutApiV1CheckoutServiceUrl({
516
531
  protoPath: "/v1/checkouts/{id}/checkout-url",
517
532
  data: payload,
@@ -613,6 +628,9 @@ function updateCheckout(payload) {
613
628
  method: "PATCH",
614
629
  methodFqn: "com.wix.ecom.checkout.api.v1.CheckoutService.UpdateCheckout",
615
630
  packageName: PACKAGE_NAME,
631
+ migrationOptions: {
632
+ optInTransformResponse: true
633
+ },
616
634
  url: resolveComWixEcomCheckoutApiV1CheckoutServiceUrl({
617
635
  protoPath: "/v1/checkouts/{checkout.id}",
618
636
  data: serializedData,
@@ -696,6 +714,9 @@ function removeCoupon(payload) {
696
714
  method: "POST",
697
715
  methodFqn: "com.wix.ecom.checkout.api.v1.CheckoutService.RemoveCoupon",
698
716
  packageName: PACKAGE_NAME,
717
+ migrationOptions: {
718
+ optInTransformResponse: true
719
+ },
699
720
  url: resolveComWixEcomCheckoutApiV1CheckoutServiceUrl({
700
721
  protoPath: "/v1/checkouts/{id}/remove-coupon",
701
722
  data: payload,
@@ -779,6 +800,9 @@ function removeGiftCard(payload) {
779
800
  method: "POST",
780
801
  methodFqn: "com.wix.ecom.checkout.api.v1.CheckoutService.RemoveGiftCard",
781
802
  packageName: PACKAGE_NAME,
803
+ migrationOptions: {
804
+ optInTransformResponse: true
805
+ },
782
806
  url: resolveComWixEcomCheckoutApiV1CheckoutServiceUrl({
783
807
  protoPath: "/v1/checkouts/{id}/remove-gift-card",
784
808
  data: payload,
@@ -862,6 +886,9 @@ function removeOverrideCheckoutUrl(payload) {
862
886
  method: "POST",
863
887
  methodFqn: "com.wix.ecom.checkout.api.v1.CheckoutService.RemoveOverrideCheckoutUrl",
864
888
  packageName: PACKAGE_NAME,
889
+ migrationOptions: {
890
+ optInTransformResponse: true
891
+ },
865
892
  url: resolveComWixEcomCheckoutApiV1CheckoutServiceUrl({
866
893
  protoPath: "/v1/checkouts/{id}/remove-override-checkout-url",
867
894
  data: payload,
@@ -971,6 +998,9 @@ function addToCheckout(payload) {
971
998
  method: "POST",
972
999
  methodFqn: "com.wix.ecom.checkout.api.v1.CheckoutService.AddToCheckout",
973
1000
  packageName: PACKAGE_NAME,
1001
+ migrationOptions: {
1002
+ optInTransformResponse: true
1003
+ },
974
1004
  url: resolveComWixEcomCheckoutApiV1CheckoutServiceUrl({
975
1005
  protoPath: "/v1/checkouts/{id}/add-to-checkout",
976
1006
  data: serializedData,
@@ -1054,6 +1084,9 @@ function removeLineItems(payload) {
1054
1084
  method: "POST",
1055
1085
  methodFqn: "com.wix.ecom.checkout.api.v1.CheckoutService.RemoveLineItems",
1056
1086
  packageName: PACKAGE_NAME,
1087
+ migrationOptions: {
1088
+ optInTransformResponse: true
1089
+ },
1057
1090
  url: resolveComWixEcomCheckoutApiV1CheckoutServiceUrl({
1058
1091
  protoPath: "/v1/checkouts/{id}/remove-line-items",
1059
1092
  data: payload,
@@ -1137,6 +1170,9 @@ function createOrder(payload) {
1137
1170
  method: "POST",
1138
1171
  methodFqn: "com.wix.ecom.checkout.api.v1.CheckoutService.CreateOrder",
1139
1172
  packageName: PACKAGE_NAME,
1173
+ migrationOptions: {
1174
+ optInTransformResponse: true
1175
+ },
1140
1176
  url: resolveComWixEcomCheckoutApiV1CheckoutServiceUrl({
1141
1177
  protoPath: "/v1/checkouts/{id}/create-order",
1142
1178
  data: payload,
@@ -1155,6 +1191,9 @@ function createOrderAndCharge(payload) {
1155
1191
  method: "POST",
1156
1192
  methodFqn: "com.wix.ecom.checkout.api.v1.CheckoutService.CreateOrderAndCharge",
1157
1193
  packageName: PACKAGE_NAME,
1194
+ migrationOptions: {
1195
+ optInTransformResponse: true
1196
+ },
1158
1197
  url: resolveComWixEcomCheckoutApiV1CheckoutServiceUrl({
1159
1198
  protoPath: "/v1/checkouts/{id}/create-order-and-charge",
1160
1199
  data: payload,
@@ -1173,6 +1212,9 @@ function markCheckoutAsCompletedAndRedirectToUrl(payload) {
1173
1212
  method: "GET",
1174
1213
  methodFqn: "com.wix.ecom.checkout.api.v1.CheckoutService.MarkCheckoutAsCompletedAndRedirectToUrl",
1175
1214
  packageName: PACKAGE_NAME,
1215
+ migrationOptions: {
1216
+ optInTransformResponse: true
1217
+ },
1176
1218
  url: resolveComWixEcomCheckoutApiV1CheckoutServiceUrl({
1177
1219
  protoPath: "/v1/checkouts/mark-checkout-as-completed-and-redirect-to-url",
1178
1220
  data: payload,
@@ -1197,6 +1239,9 @@ function markCheckoutAsCompleted(payload) {
1197
1239
  method: "POST",
1198
1240
  methodFqn: "com.wix.ecom.checkout.api.v1.CheckoutService.MarkCheckoutAsCompleted",
1199
1241
  packageName: PACKAGE_NAME,
1242
+ migrationOptions: {
1243
+ optInTransformResponse: true
1244
+ },
1200
1245
  url: resolveComWixEcomCheckoutApiV1CheckoutServiceUrl({
1201
1246
  protoPath: "/v1/checkouts/{id}/mark-as-completed",
1202
1247
  data: payload,
@@ -1215,6 +1260,9 @@ function updateLineItemsQuantity(payload) {
1215
1260
  method: "POST",
1216
1261
  methodFqn: "com.wix.ecom.checkout.api.v1.CheckoutService.UpdateLineItemsQuantity",
1217
1262
  packageName: PACKAGE_NAME,
1263
+ migrationOptions: {
1264
+ optInTransformResponse: true
1265
+ },
1218
1266
  url: resolveComWixEcomCheckoutApiV1CheckoutServiceUrl({
1219
1267
  protoPath: "/v1/checkouts/{id}/update-line-items-quantity",
1220
1268
  data: payload,
@@ -1298,6 +1346,9 @@ function getCheckoutPaymentSettings(payload) {
1298
1346
  method: "GET",
1299
1347
  methodFqn: "com.wix.ecom.checkout.api.v1.CheckoutService.GetCheckoutPaymentSettings",
1300
1348
  packageName: PACKAGE_NAME,
1349
+ migrationOptions: {
1350
+ optInTransformResponse: true
1351
+ },
1301
1352
  url: resolveComWixEcomCheckoutApiV1CheckoutServiceUrl({
1302
1353
  protoPath: "/v1/checkouts/{id}/payment-settings",
1303
1354
  data: payload,