@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/es/meta.mjs CHANGED
@@ -1003,6 +1003,7 @@ var NameInLineItem = /* @__PURE__ */ ((NameInLineItem2) => {
1003
1003
  return NameInLineItem2;
1004
1004
  })(NameInLineItem || {});
1005
1005
  var SuggestedFix = /* @__PURE__ */ ((SuggestedFix2) => {
1006
+ SuggestedFix2["UNKNOWN_SUGGESTED_FIX"] = "UNKNOWN_SUGGESTED_FIX";
1006
1007
  SuggestedFix2["REMOVE_LINE_ITEM"] = "REMOVE_LINE_ITEM";
1007
1008
  return SuggestedFix2;
1008
1009
  })(SuggestedFix || {});