@wix/auto_sdk_events_wix-events-v-2 1.0.53 → 1.0.54

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.
@@ -646,13 +646,14 @@ interface TicketsConfirmationMessages {
646
646
  shareActionLabel?: string | null;
647
647
  }
648
648
  declare enum CheckoutType {
649
+ UNKNOWN_CHECKOUT_TYPE = "UNKNOWN_CHECKOUT_TYPE",
649
650
  /** Checkout using Events App. */
650
651
  EVENTS_APP = "EVENTS_APP",
651
652
  /** Checkout using Ecomm Platform. */
652
653
  ECOMM_PLATFORM = "ECOMM_PLATFORM"
653
654
  }
654
655
  /** @enumType */
655
- type CheckoutTypeWithLiterals = CheckoutType | 'EVENTS_APP' | 'ECOMM_PLATFORM';
656
+ type CheckoutTypeWithLiterals = CheckoutType | 'UNKNOWN_CHECKOUT_TYPE' | 'EVENTS_APP' | 'ECOMM_PLATFORM';
656
657
  interface ExternalRegistration {
657
658
  /**
658
659
  * External event registration URL.
@@ -1115,6 +1115,7 @@ var TaxType = /* @__PURE__ */ ((TaxType2) => {
1115
1115
  return TaxType2;
1116
1116
  })(TaxType || {});
1117
1117
  var CheckoutType = /* @__PURE__ */ ((CheckoutType2) => {
1118
+ CheckoutType2["UNKNOWN_CHECKOUT_TYPE"] = "UNKNOWN_CHECKOUT_TYPE";
1118
1119
  CheckoutType2["EVENTS_APP"] = "EVENTS_APP";
1119
1120
  CheckoutType2["ECOMM_PLATFORM"] = "ECOMM_PLATFORM";
1120
1121
  return CheckoutType2;