@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.
@@ -2704,11 +2704,13 @@ declare enum NameInLineItem {
2704
2704
  /** @enumType */
2705
2705
  type NameInLineItemWithLiterals = NameInLineItem | 'LINE_ITEM_DEFAULT';
2706
2706
  declare enum SuggestedFix {
2707
+ /** No suggested fix is specified. The user should refer to the violation description to resolve the issue. */
2708
+ UNKNOWN_SUGGESTED_FIX = "UNKNOWN_SUGGESTED_FIX",
2707
2709
  /** The line item should be removed from the cart or checkout to resolve the violation. */
2708
2710
  REMOVE_LINE_ITEM = "REMOVE_LINE_ITEM"
2709
2711
  }
2710
2712
  /** @enumType */
2711
- type SuggestedFixWithLiterals = SuggestedFix | 'REMOVE_LINE_ITEM';
2713
+ type SuggestedFixWithLiterals = SuggestedFix | 'UNKNOWN_SUGGESTED_FIX' | 'REMOVE_LINE_ITEM';
2712
2714
  /** General (other) violation. */
2713
2715
  interface Other {
2714
2716
  /** Location on a checkout or a cart page where a general (other) violation will be displayed. */
@@ -1017,6 +1017,7 @@ var NameInLineItem = /* @__PURE__ */ ((NameInLineItem2) => {
1017
1017
  return NameInLineItem2;
1018
1018
  })(NameInLineItem || {});
1019
1019
  var SuggestedFix = /* @__PURE__ */ ((SuggestedFix2) => {
1020
+ SuggestedFix2["UNKNOWN_SUGGESTED_FIX"] = "UNKNOWN_SUGGESTED_FIX";
1020
1021
  SuggestedFix2["REMOVE_LINE_ITEM"] = "REMOVE_LINE_ITEM";
1021
1022
  return SuggestedFix2;
1022
1023
  })(SuggestedFix || {});