@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.
- package/build/cjs/index.js +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -1
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -1
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.js +1 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -1
- package/build/internal/cjs/index.typings.js +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.mjs +1 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -1
- package/build/internal/es/index.typings.mjs +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -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;
|