@wix/auto_sdk_events_notifications 1.0.40 → 1.0.41

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.
@@ -847,13 +847,14 @@ interface TicketsConfirmationMessages {
847
847
  shareActionLabel?: string | null;
848
848
  }
849
849
  declare enum CheckoutType {
850
+ UNKNOWN_CHECKOUT_TYPE = "UNKNOWN_CHECKOUT_TYPE",
850
851
  /** Checkout using Events App. */
851
852
  EVENTS_APP = "EVENTS_APP",
852
853
  /** Checkout using Ecomm Platform. */
853
854
  ECOMM_PLATFORM = "ECOMM_PLATFORM"
854
855
  }
855
856
  /** @enumType */
856
- type CheckoutTypeWithLiterals = CheckoutType | 'EVENTS_APP' | 'ECOMM_PLATFORM';
857
+ type CheckoutTypeWithLiterals = CheckoutType | 'UNKNOWN_CHECKOUT_TYPE' | 'EVENTS_APP' | 'ECOMM_PLATFORM';
857
858
  interface Money {
858
859
  /**
859
860
  * *Deprecated:** Use `value` instead.
@@ -340,6 +340,7 @@ var TaxType = /* @__PURE__ */ ((TaxType2) => {
340
340
  return TaxType2;
341
341
  })(TaxType || {});
342
342
  var CheckoutType = /* @__PURE__ */ ((CheckoutType2) => {
343
+ CheckoutType2["UNKNOWN_CHECKOUT_TYPE"] = "UNKNOWN_CHECKOUT_TYPE";
343
344
  CheckoutType2["EVENTS_APP"] = "EVENTS_APP";
344
345
  CheckoutType2["ECOMM_PLATFORM"] = "ECOMM_PLATFORM";
345
346
  return CheckoutType2;