@wix/auto_sdk_ecom_checkout 1.0.144 → 1.0.145

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.
@@ -2375,11 +2375,13 @@ declare enum NameInLineItem {
2375
2375
  /** @enumType */
2376
2376
  type NameInLineItemWithLiterals = NameInLineItem | 'LINE_ITEM_DEFAULT';
2377
2377
  declare enum SuggestedFix {
2378
+ /** No suggested fix is specified. The user should refer to the violation description to resolve the issue. */
2379
+ UNKNOWN_SUGGESTED_FIX = "UNKNOWN_SUGGESTED_FIX",
2378
2380
  /** The line item should be removed from the cart or checkout to resolve the violation. */
2379
2381
  REMOVE_LINE_ITEM = "REMOVE_LINE_ITEM"
2380
2382
  }
2381
2383
  /** @enumType */
2382
- type SuggestedFixWithLiterals = SuggestedFix | 'REMOVE_LINE_ITEM';
2384
+ type SuggestedFixWithLiterals = SuggestedFix | 'UNKNOWN_SUGGESTED_FIX' | 'REMOVE_LINE_ITEM';
2383
2385
  /** General (other) violation. */
2384
2386
  interface Other {
2385
2387
  /** Location on a checkout or a cart page where a general (other) violation will be displayed. */
@@ -1517,6 +1517,7 @@ var NameInLineItem = /* @__PURE__ */ ((NameInLineItem2) => {
1517
1517
  return NameInLineItem2;
1518
1518
  })(NameInLineItem || {});
1519
1519
  var SuggestedFix = /* @__PURE__ */ ((SuggestedFix2) => {
1520
+ SuggestedFix2["UNKNOWN_SUGGESTED_FIX"] = "UNKNOWN_SUGGESTED_FIX";
1520
1521
  SuggestedFix2["REMOVE_LINE_ITEM"] = "REMOVE_LINE_ITEM";
1521
1522
  return SuggestedFix2;
1522
1523
  })(SuggestedFix || {});