@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.
@@ -1023,6 +1023,7 @@ var TaxType = /* @__PURE__ */ ((TaxType2) => {
1023
1023
  return TaxType2;
1024
1024
  })(TaxType || {});
1025
1025
  var CheckoutType = /* @__PURE__ */ ((CheckoutType2) => {
1026
+ CheckoutType2["UNKNOWN_CHECKOUT_TYPE"] = "UNKNOWN_CHECKOUT_TYPE";
1026
1027
  CheckoutType2["EVENTS_APP"] = "EVENTS_APP";
1027
1028
  CheckoutType2["ECOMM_PLATFORM"] = "ECOMM_PLATFORM";
1028
1029
  return CheckoutType2;