@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.
@@ -2582,11 +2582,13 @@ declare enum NameInLineItem {
2582
2582
  /** @enumType */
2583
2583
  type NameInLineItemWithLiterals = NameInLineItem | 'LINE_ITEM_DEFAULT';
2584
2584
  declare enum SuggestedFix {
2585
+ /** No suggested fix is specified. The user should refer to the violation description to resolve the issue. */
2586
+ UNKNOWN_SUGGESTED_FIX = "UNKNOWN_SUGGESTED_FIX",
2585
2587
  /** The line item should be removed from the cart or checkout to resolve the violation. */
2586
2588
  REMOVE_LINE_ITEM = "REMOVE_LINE_ITEM"
2587
2589
  }
2588
2590
  /** @enumType */
2589
- type SuggestedFixWithLiterals = SuggestedFix | 'REMOVE_LINE_ITEM';
2591
+ type SuggestedFixWithLiterals = SuggestedFix | 'UNKNOWN_SUGGESTED_FIX' | 'REMOVE_LINE_ITEM';
2590
2592
  /** General (other) violation. */
2591
2593
  interface Other {
2592
2594
  /** Location on a checkout or a cart page where a general (other) violation will be displayed. */
package/build/cjs/meta.js CHANGED
@@ -1068,6 +1068,7 @@ var NameInLineItem = /* @__PURE__ */ ((NameInLineItem2) => {
1068
1068
  return NameInLineItem2;
1069
1069
  })(NameInLineItem || {});
1070
1070
  var SuggestedFix = /* @__PURE__ */ ((SuggestedFix2) => {
1071
+ SuggestedFix2["UNKNOWN_SUGGESTED_FIX"] = "UNKNOWN_SUGGESTED_FIX";
1071
1072
  SuggestedFix2["REMOVE_LINE_ITEM"] = "REMOVE_LINE_ITEM";
1072
1073
  return SuggestedFix2;
1073
1074
  })(SuggestedFix || {});