@wix/auto_sdk_ecom_current-cart 1.0.160 → 1.0.162

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. */
@@ -885,6 +885,7 @@ var NameInLineItem = /* @__PURE__ */ ((NameInLineItem2) => {
885
885
  return NameInLineItem2;
886
886
  })(NameInLineItem || {});
887
887
  var SuggestedFix = /* @__PURE__ */ ((SuggestedFix2) => {
888
+ SuggestedFix2["UNKNOWN_SUGGESTED_FIX"] = "UNKNOWN_SUGGESTED_FIX";
888
889
  SuggestedFix2["REMOVE_LINE_ITEM"] = "REMOVE_LINE_ITEM";
889
890
  return SuggestedFix2;
890
891
  })(SuggestedFix || {});