@wix/auto_sdk_ecom_cart 1.0.149 → 1.0.151

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.
@@ -2543,11 +2543,13 @@ declare enum NameInLineItem {
2543
2543
  /** @enumType */
2544
2544
  type NameInLineItemWithLiterals = NameInLineItem | 'LINE_ITEM_DEFAULT';
2545
2545
  declare enum SuggestedFix {
2546
+ /** No suggested fix is specified. The user should refer to the violation description to resolve the issue. */
2547
+ UNKNOWN_SUGGESTED_FIX = "UNKNOWN_SUGGESTED_FIX",
2546
2548
  /** The line item should be removed from the cart or checkout to resolve the violation. */
2547
2549
  REMOVE_LINE_ITEM = "REMOVE_LINE_ITEM"
2548
2550
  }
2549
2551
  /** @enumType */
2550
- type SuggestedFixWithLiterals = SuggestedFix | 'REMOVE_LINE_ITEM';
2552
+ type SuggestedFixWithLiterals = SuggestedFix | 'UNKNOWN_SUGGESTED_FIX' | 'REMOVE_LINE_ITEM';
2551
2553
  /** General (other) violation. */
2552
2554
  interface Other {
2553
2555
  /** Location on a checkout or a cart page where a general (other) violation will be displayed. */
@@ -1079,6 +1079,7 @@ var NameInLineItem = /* @__PURE__ */ ((NameInLineItem2) => {
1079
1079
  return NameInLineItem2;
1080
1080
  })(NameInLineItem || {});
1081
1081
  var SuggestedFix = /* @__PURE__ */ ((SuggestedFix2) => {
1082
+ SuggestedFix2["UNKNOWN_SUGGESTED_FIX"] = "UNKNOWN_SUGGESTED_FIX";
1082
1083
  SuggestedFix2["REMOVE_LINE_ITEM"] = "REMOVE_LINE_ITEM";
1083
1084
  return SuggestedFix2;
1084
1085
  })(SuggestedFix || {});