@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.
@@ -256,6 +256,7 @@ var TaxType = /* @__PURE__ */ ((TaxType2) => {
256
256
  return TaxType2;
257
257
  })(TaxType || {});
258
258
  var CheckoutType = /* @__PURE__ */ ((CheckoutType2) => {
259
+ CheckoutType2["UNKNOWN_CHECKOUT_TYPE"] = "UNKNOWN_CHECKOUT_TYPE";
259
260
  CheckoutType2["EVENTS_APP"] = "EVENTS_APP";
260
261
  CheckoutType2["ECOMM_PLATFORM"] = "ECOMM_PLATFORM";
261
262
  return CheckoutType2;