@wix/auto_sdk_ecom_current-cart-v-2 1.0.16 → 1.0.18

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.
@@ -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
  /**
@@ -1238,7 +1238,7 @@ interface AddressLocation {
1238
1238
  interface DeliveryMethod {
1239
1239
  /**
1240
1240
  * The carrier app id
1241
- * @format GUID
1241
+ * @maxLength 50
1242
1242
  */
1243
1243
  appId?: string;
1244
1244
  /**
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/auto_sdk_ecom_current-cart-v-2",
3
- "version": "1.0.16",
3
+ "version": "1.0.18",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",
@@ -50,5 +50,5 @@
50
50
  "fqdn": "wix.ecom.v2.cart"
51
51
  }
52
52
  },
53
- "falconPackageHash": "5e8ea7bdb7a6f6ddb326db41e2afb968ec289fc891baf886b81f8aa4"
53
+ "falconPackageHash": "d6eb6f7d701a038d6e5dc59a18fcb5b3ab5a167bcbdab8398888076f"
54
54
  }