@wix/auto_sdk_ecom_current-cart-v-2 1.0.15 → 1.0.17

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.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +62 -36
  2. package/build/cjs/index.js +39 -17
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +1 -1
  5. package/build/cjs/index.typings.js +39 -17
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +149 -31
  8. package/build/cjs/meta.js +39 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +62 -36
  11. package/build/es/index.mjs +39 -15
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +1 -1
  14. package/build/es/index.typings.mjs +39 -15
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +149 -31
  17. package/build/es/meta.mjs +39 -0
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +2 -2
  20. package/build/internal/cjs/index.js +39 -17
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +63 -37
  23. package/build/internal/cjs/index.typings.js +39 -17
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +149 -31
  26. package/build/internal/cjs/meta.js +39 -0
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +2 -2
  29. package/build/internal/es/index.mjs +39 -15
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +63 -37
  32. package/build/internal/es/index.typings.mjs +39 -15
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +149 -31
  35. package/build/internal/es/meta.mjs +39 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -126,7 +126,7 @@ interface V2LineItem {
126
126
  /**
127
127
  * Custom extended fields for the line item object.
128
128
  *
129
- * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the app dashboard before they can be accessed with API calls.
129
+ * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured using the 'Checkout & Orders - Line Items Schema Plugin' in the app dashboard before they can be accessed with API calls.
130
130
  */
131
131
  extendedFields?: ExtendedFields;
132
132
  /**
@@ -1461,16 +1461,6 @@ interface CartSummary {
1461
1461
  priceSummary?: PriceSummary;
1462
1462
  /** Payment details summarizing how the customer will pay for the order. */
1463
1463
  paymentSummary?: PaymentSummary;
1464
- /**
1465
- * List of errors that occurred during the calculation process.
1466
- * @maxSize 100
1467
- */
1468
- errors?: CalculationError[];
1469
- /**
1470
- * List of business violations raised by the Validations service plugin ([SDK](https://dev.wix.com/docs/sdk/backend-modules/ecom/service-plugins/validations/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/service-plugins/validations-integration-service-plugin/introduction)).
1471
- * @maxSize 100
1472
- */
1473
- violations?: Violation[];
1474
1464
  /**
1475
1465
  * A token representing the Cart's calculated prices.
1476
1466
  *
@@ -1487,6 +1477,17 @@ interface CartSummary {
1487
1477
  * @maxLength 1024
1488
1478
  */
1489
1479
  priceVerificationToken?: string | null;
1480
+ /**
1481
+ * List of errors that occurred during the calculation process, returned by Totals Calculator.
1482
+ * TODO: Temporary field for backward compatibility; will be removed once we introduce the unified 'violations' model.
1483
+ */
1484
+ calculationErrors?: CalculationErrors;
1485
+ /**
1486
+ * List of business violations raised by the Validations service plugin ([SDK](https://dev.wix.com/docs/sdk/backend-modules/ecom/service-plugins/validations/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/service-plugins/validations-integration-service-plugin/introduction)).
1487
+ * TODO: Temporary field for backward compatibility; will be removed once we introduce the unified 'violations' model.
1488
+ * @maxSize 100
1489
+ */
1490
+ spiViolations?: Violation[];
1490
1491
  }
1491
1492
  interface LineItemSummary {
1492
1493
  /**
@@ -1731,32 +1732,149 @@ interface Charge {
1731
1732
  /** The billing date from which the charge starts. */
1732
1733
  cycleBillingDate?: Date | null;
1733
1734
  }
1734
- interface CalculationError {
1735
- /** The calculation component that caused the error. */
1736
- component?: CalculationComponentWithLiterals;
1737
- /** Machine-readable error code. */
1738
- code?: ErrorCodeWithLiterals;
1735
+ interface CalculationErrors extends CalculationErrorsShippingCalculationErrorOneOf {
1736
+ /** General shipping calculation error. */
1737
+ generalShippingCalculationError?: Details;
1738
+ /** Carrier errors. */
1739
+ carrierErrors?: CarrierErrors;
1740
+ /** Tax calculation error. */
1741
+ taxCalculationError?: Details;
1742
+ /** Coupon calculation error. */
1743
+ couponCalculationError?: Details;
1744
+ /** Gift card calculation error. */
1745
+ giftCardCalculationError?: Details;
1746
+ /**
1747
+ * Order validation errors.
1748
+ * @maxSize 100
1749
+ */
1750
+ orderValidationErrors?: ApplicationError[];
1739
1751
  /**
1740
- * Human-readable explanation.
1741
- * @maxLength 100
1752
+ * Membership payment methods calculation errors
1753
+ * For example, will indicate that a line item that must be paid with membership payment doesn't have one or selected memberships are invalid
1742
1754
  */
1743
- description?: string | null;
1755
+ membershipError?: Details;
1756
+ /** Discount Rule calculation error. */
1757
+ discountsCalculationError?: Details;
1744
1758
  }
1745
- declare enum CalculationComponent {
1746
- UNKNOWN_CALCULATION_COMPONENT = "UNKNOWN_CALCULATION_COMPONENT",
1747
- DISCOUNTS = "DISCOUNTS",
1748
- DELIVERY = "DELIVERY",
1749
- TAX = "TAX",
1750
- MEMBERSHIPS = "MEMBERSHIPS",
1751
- GIFT_CARDS = "GIFT_CARDS"
1759
+ /** @oneof */
1760
+ interface CalculationErrorsShippingCalculationErrorOneOf {
1761
+ /** General shipping calculation error. */
1762
+ generalShippingCalculationError?: Details;
1763
+ /** Carrier errors. */
1764
+ carrierErrors?: CarrierErrors;
1752
1765
  }
1753
- /** @enumType */
1754
- type CalculationComponentWithLiterals = CalculationComponent | 'UNKNOWN_CALCULATION_COMPONENT' | 'DISCOUNTS' | 'DELIVERY' | 'TAX' | 'MEMBERSHIPS' | 'GIFT_CARDS';
1755
- declare enum ErrorCode {
1756
- UNKNOWN_ERROR_CODE = "UNKNOWN_ERROR_CODE"
1766
+ interface Details extends DetailsKindOneOf {
1767
+ applicationError?: ApplicationError;
1768
+ validationError?: ValidationError;
1769
+ systemError?: SystemError;
1770
+ /**
1771
+ * deprecated in API's - to enable migration from rendering arbitrary tracing to rest response
1772
+ * @deprecated
1773
+ */
1774
+ tracing?: Record<string, string>;
1775
+ }
1776
+ /** @oneof */
1777
+ interface DetailsKindOneOf {
1778
+ applicationError?: ApplicationError;
1779
+ validationError?: ValidationError;
1780
+ systemError?: SystemError;
1781
+ }
1782
+ interface ApplicationError {
1783
+ /** Error code. */
1784
+ code?: string;
1785
+ /** Description of the error. */
1786
+ description?: string;
1787
+ /** Data related to the error. */
1788
+ data?: Record<string, any> | null;
1789
+ }
1790
+ /**
1791
+ * example result:
1792
+ * {
1793
+ * "fieldViolations": [
1794
+ * {
1795
+ * "field": "fieldA",
1796
+ * "description": "invalid music note. supported notes: [do,re,mi,fa,sol,la,ti]",
1797
+ * "violatedRule": "OTHER",
1798
+ * "ruleName": "INVALID_NOTE",
1799
+ * "data": {
1800
+ * "value": "FI"
1801
+ * }
1802
+ * },
1803
+ * {
1804
+ * "field": "fieldB",
1805
+ * "description": "field value out of range. supported range: [0-20]",
1806
+ * "violatedRule": "MAX",
1807
+ * "data": {
1808
+ * "threshold": 20
1809
+ * }
1810
+ * },
1811
+ * {
1812
+ * "field": "fieldC",
1813
+ * "description": "invalid phone number. provide a valid phone number of size: [7-12], supported characters: [0-9, +, -, (, )]",
1814
+ * "violatedRule": "FORMAT",
1815
+ * "data": {
1816
+ * "type": "PHONE"
1817
+ * }
1818
+ * }
1819
+ * ]
1820
+ * }
1821
+ */
1822
+ interface ValidationError {
1823
+ fieldViolations?: FieldViolation[];
1824
+ }
1825
+ declare enum RuleType {
1826
+ VALIDATION = "VALIDATION",
1827
+ OTHER = "OTHER",
1828
+ MAX = "MAX",
1829
+ MIN = "MIN",
1830
+ MAX_LENGTH = "MAX_LENGTH",
1831
+ MIN_LENGTH = "MIN_LENGTH",
1832
+ MAX_SIZE = "MAX_SIZE",
1833
+ MIN_SIZE = "MIN_SIZE",
1834
+ FORMAT = "FORMAT",
1835
+ DECIMAL_LTE = "DECIMAL_LTE",
1836
+ DECIMAL_GTE = "DECIMAL_GTE",
1837
+ DECIMAL_LT = "DECIMAL_LT",
1838
+ DECIMAL_GT = "DECIMAL_GT",
1839
+ DECIMAL_MAX_SCALE = "DECIMAL_MAX_SCALE",
1840
+ INVALID_ENUM_VALUE = "INVALID_ENUM_VALUE",
1841
+ REQUIRED_FIELD = "REQUIRED_FIELD",
1842
+ FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
1843
+ ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
1844
+ EXACT_LENGTH = "EXACT_LENGTH",
1845
+ EXACT_SIZE = "EXACT_SIZE",
1846
+ REQUIRED_ONE_OF_FIELD = "REQUIRED_ONE_OF_FIELD"
1757
1847
  }
1758
1848
  /** @enumType */
1759
- type ErrorCodeWithLiterals = ErrorCode | 'UNKNOWN_ERROR_CODE';
1849
+ type RuleTypeWithLiterals = RuleType | 'VALIDATION' | 'OTHER' | 'MAX' | 'MIN' | 'MAX_LENGTH' | 'MIN_LENGTH' | 'MAX_SIZE' | 'MIN_SIZE' | 'FORMAT' | 'DECIMAL_LTE' | 'DECIMAL_GTE' | 'DECIMAL_LT' | 'DECIMAL_GT' | 'DECIMAL_MAX_SCALE' | 'INVALID_ENUM_VALUE' | 'REQUIRED_FIELD' | 'FIELD_NOT_ALLOWED' | 'ONE_OF_ALIGNMENT' | 'EXACT_LENGTH' | 'EXACT_SIZE' | 'REQUIRED_ONE_OF_FIELD';
1850
+ interface FieldViolation {
1851
+ field?: string;
1852
+ description?: string;
1853
+ violatedRule?: RuleTypeWithLiterals;
1854
+ /** applicable when violated_rule=OTHER */
1855
+ ruleName?: string | null;
1856
+ data?: Record<string, any> | null;
1857
+ }
1858
+ interface SystemError {
1859
+ /** Error code. */
1860
+ errorCode?: string | null;
1861
+ }
1862
+ interface CarrierErrors {
1863
+ /**
1864
+ * Carrier errors.
1865
+ * @maxSize 100
1866
+ */
1867
+ errors?: CarrierError[];
1868
+ }
1869
+ interface CarrierError {
1870
+ /**
1871
+ * Carrier ID.
1872
+ * @format GUID
1873
+ */
1874
+ carrierId?: string;
1875
+ /** Error details. */
1876
+ error?: Details;
1877
+ }
1760
1878
  interface Violation {
1761
1879
  /** Severity of the violation. The violations are shown on the cart and checkout pages. A warning is displayed as yellow, and allows a site visitor to proceed with caution. An error is displayed as red, and doesn't allow a site visitor to proceed with the eCommerce flow. */
1762
1880
  severity?: SeverityWithLiterals;
@@ -184,6 +184,9 @@ function createCurrentCart(payload) {
184
184
  method: "POST",
185
185
  methodFqn: "wix.ecom.cart.v2.CurrentCartService.CreateCurrentCart",
186
186
  packageName: PACKAGE_NAME,
187
+ migrationOptions: {
188
+ optInTransformResponse: true
189
+ },
187
190
  url: resolveWixEcomCartV2CurrentCartServiceUrl({
188
191
  protoPath: "/v2/carts/current",
189
192
  data: serializedData,
@@ -234,6 +237,9 @@ function getCurrentCart(payload) {
234
237
  method: "GET",
235
238
  methodFqn: "wix.ecom.cart.v2.CurrentCartService.GetCurrentCart",
236
239
  packageName: PACKAGE_NAME,
240
+ migrationOptions: {
241
+ optInTransformResponse: true
242
+ },
237
243
  url: resolveWixEcomCartV2CurrentCartServiceUrl({
238
244
  protoPath: "/v2/carts/current",
239
245
  data: payload,
@@ -318,6 +324,9 @@ function updateCurrentCart(payload) {
318
324
  method: "PATCH",
319
325
  methodFqn: "wix.ecom.cart.v2.CurrentCartService.UpdateCurrentCart",
320
326
  packageName: PACKAGE_NAME,
327
+ migrationOptions: {
328
+ optInTransformResponse: true
329
+ },
321
330
  url: resolveWixEcomCartV2CurrentCartServiceUrl({
322
331
  protoPath: "/v2/carts/current",
323
332
  data: serializedData,
@@ -368,6 +377,9 @@ function deleteCurrentCart(payload) {
368
377
  method: "DELETE",
369
378
  methodFqn: "wix.ecom.cart.v2.CurrentCartService.DeleteCurrentCart",
370
379
  packageName: PACKAGE_NAME,
380
+ migrationOptions: {
381
+ optInTransformResponse: true
382
+ },
371
383
  url: resolveWixEcomCartV2CurrentCartServiceUrl({
372
384
  protoPath: "/v2/carts/current",
373
385
  data: payload,
@@ -386,6 +398,9 @@ function refreshCurrentCart(payload) {
386
398
  method: "POST",
387
399
  methodFqn: "wix.ecom.cart.v2.CurrentCartService.RefreshCurrentCart",
388
400
  packageName: PACKAGE_NAME,
401
+ migrationOptions: {
402
+ optInTransformResponse: true
403
+ },
389
404
  url: resolveWixEcomCartV2CurrentCartServiceUrl({
390
405
  protoPath: "/v2/carts/current/refresh",
391
406
  data: payload,
@@ -436,6 +451,9 @@ function calculateCurrentCart(payload) {
436
451
  method: "POST",
437
452
  methodFqn: "wix.ecom.cart.v2.CurrentCartService.CalculateCurrentCart",
438
453
  packageName: PACKAGE_NAME,
454
+ migrationOptions: {
455
+ optInTransformResponse: true
456
+ },
439
457
  url: resolveWixEcomCartV2CurrentCartServiceUrl({
440
458
  protoPath: "/v2/carts/current/calculate",
441
459
  data: payload,
@@ -513,6 +531,9 @@ function addLineItemsToCurrentCart(payload) {
513
531
  method: "POST",
514
532
  methodFqn: "wix.ecom.cart.v2.CurrentCartService.AddLineItemsToCurrentCart",
515
533
  packageName: PACKAGE_NAME,
534
+ migrationOptions: {
535
+ optInTransformResponse: true
536
+ },
516
537
  url: resolveWixEcomCartV2CurrentCartServiceUrl({
517
538
  protoPath: "/v2/carts/current/add-line-items",
518
539
  data: serializedData,
@@ -563,6 +584,9 @@ function removeLineItemsFromCurrentCart(payload) {
563
584
  method: "POST",
564
585
  methodFqn: "wix.ecom.cart.v2.CurrentCartService.RemoveLineItemsFromCurrentCart",
565
586
  packageName: PACKAGE_NAME,
587
+ migrationOptions: {
588
+ optInTransformResponse: true
589
+ },
566
590
  url: resolveWixEcomCartV2CurrentCartServiceUrl({
567
591
  protoPath: "/v2/carts/current/remove-line-items",
568
592
  data: payload,
@@ -613,6 +637,9 @@ function updateLineItemsInCurrentCart(payload) {
613
637
  method: "POST",
614
638
  methodFqn: "wix.ecom.cart.v2.CurrentCartService.UpdateLineItemsInCurrentCart",
615
639
  packageName: PACKAGE_NAME,
640
+ migrationOptions: {
641
+ optInTransformResponse: true
642
+ },
616
643
  url: resolveWixEcomCartV2CurrentCartServiceUrl({
617
644
  protoPath: "/v2/carts/current/update-line-items",
618
645
  data: payload,
@@ -663,6 +690,9 @@ function addCouponToCurrentCart(payload) {
663
690
  method: "POST",
664
691
  methodFqn: "wix.ecom.cart.v2.CurrentCartService.AddCouponToCurrentCart",
665
692
  packageName: PACKAGE_NAME,
693
+ migrationOptions: {
694
+ optInTransformResponse: true
695
+ },
666
696
  url: resolveWixEcomCartV2CurrentCartServiceUrl({
667
697
  protoPath: "/v2/carts/current/add-coupon",
668
698
  data: payload,
@@ -713,6 +743,9 @@ function removeCouponFromCurrentCart(payload) {
713
743
  method: "POST",
714
744
  methodFqn: "wix.ecom.cart.v2.CurrentCartService.RemoveCouponFromCurrentCart",
715
745
  packageName: PACKAGE_NAME,
746
+ migrationOptions: {
747
+ optInTransformResponse: true
748
+ },
716
749
  url: resolveWixEcomCartV2CurrentCartServiceUrl({
717
750
  protoPath: "/v2/carts/current/remove-coupon",
718
751
  data: payload,
@@ -763,6 +796,9 @@ function addGiftCardToCurrentCart(payload) {
763
796
  method: "POST",
764
797
  methodFqn: "wix.ecom.cart.v2.CurrentCartService.AddGiftCardToCurrentCart",
765
798
  packageName: PACKAGE_NAME,
799
+ migrationOptions: {
800
+ optInTransformResponse: true
801
+ },
766
802
  url: resolveWixEcomCartV2CurrentCartServiceUrl({
767
803
  protoPath: "/v2/carts/current/add-gift-card",
768
804
  data: payload,
@@ -813,6 +849,9 @@ function removeGiftCardFromCurrentCart(payload) {
813
849
  method: "POST",
814
850
  methodFqn: "wix.ecom.cart.v2.CurrentCartService.RemoveGiftCardFromCurrentCart",
815
851
  packageName: PACKAGE_NAME,
852
+ migrationOptions: {
853
+ optInTransformResponse: true
854
+ },
816
855
  url: resolveWixEcomCartV2CurrentCartServiceUrl({
817
856
  protoPath: "/v2/carts/current/remove-gift-card",
818
857
  data: payload,