@wix/auto_sdk_ecom_checkout 1.0.143 → 1.0.145

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.
@@ -2271,11 +2271,13 @@ declare enum NameInLineItem {
2271
2271
  /** @enumType */
2272
2272
  type NameInLineItemWithLiterals = NameInLineItem | 'LINE_ITEM_DEFAULT';
2273
2273
  declare enum SuggestedFix {
2274
+ /** No suggested fix is specified. The user should refer to the violation description to resolve the issue. */
2275
+ UNKNOWN_SUGGESTED_FIX = "UNKNOWN_SUGGESTED_FIX",
2274
2276
  /** The line item should be removed from the cart or checkout to resolve the violation. */
2275
2277
  REMOVE_LINE_ITEM = "REMOVE_LINE_ITEM"
2276
2278
  }
2277
2279
  /** @enumType */
2278
- type SuggestedFixWithLiterals = SuggestedFix | 'REMOVE_LINE_ITEM';
2280
+ type SuggestedFixWithLiterals = SuggestedFix | 'UNKNOWN_SUGGESTED_FIX' | 'REMOVE_LINE_ITEM';
2279
2281
  /** General (other) violation. */
2280
2282
  interface Other {
2281
2283
  /** Location on a checkout or a cart page where a general (other) violation will be displayed. */
package/build/cjs/meta.js CHANGED
@@ -1573,6 +1573,7 @@ var NameInLineItem = /* @__PURE__ */ ((NameInLineItem2) => {
1573
1573
  return NameInLineItem2;
1574
1574
  })(NameInLineItem || {});
1575
1575
  var SuggestedFix = /* @__PURE__ */ ((SuggestedFix2) => {
1576
+ SuggestedFix2["UNKNOWN_SUGGESTED_FIX"] = "UNKNOWN_SUGGESTED_FIX";
1576
1577
  SuggestedFix2["REMOVE_LINE_ITEM"] = "REMOVE_LINE_ITEM";
1577
1578
  return SuggestedFix2;
1578
1579
  })(SuggestedFix || {});