@connectedxm/admin 2.8.10 → 2.8.11
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/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2407,6 +2407,7 @@ interface BaseEventPassType {
|
|
|
2407
2407
|
minQuantityPerSale: number;
|
|
2408
2408
|
maxQuantityPerSale: number;
|
|
2409
2409
|
emailDomains: string | null;
|
|
2410
|
+
requireCoupon: boolean;
|
|
2410
2411
|
createdAt: string;
|
|
2411
2412
|
updatedAt: string;
|
|
2412
2413
|
}
|
|
@@ -4907,6 +4908,7 @@ interface PassTypeCreateInputs {
|
|
|
4907
4908
|
sortOrder?: number | string | null;
|
|
4908
4909
|
enableCoupons?: boolean;
|
|
4909
4910
|
overrideStartDate?: string | null;
|
|
4911
|
+
requireCoupon?: boolean;
|
|
4910
4912
|
}
|
|
4911
4913
|
interface PassTypeUpdateInputs {
|
|
4912
4914
|
visibility?: keyof typeof PassTypeVisibility | null;
|
|
@@ -4929,6 +4931,7 @@ interface PassTypeUpdateInputs {
|
|
|
4929
4931
|
sortOrder?: number | string | null;
|
|
4930
4932
|
enableCoupons?: boolean;
|
|
4931
4933
|
overrideStartDate?: string | null;
|
|
4934
|
+
requireCoupon?: boolean;
|
|
4932
4935
|
}
|
|
4933
4936
|
interface TierCreateInputs {
|
|
4934
4937
|
name: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2407,6 +2407,7 @@ interface BaseEventPassType {
|
|
|
2407
2407
|
minQuantityPerSale: number;
|
|
2408
2408
|
maxQuantityPerSale: number;
|
|
2409
2409
|
emailDomains: string | null;
|
|
2410
|
+
requireCoupon: boolean;
|
|
2410
2411
|
createdAt: string;
|
|
2411
2412
|
updatedAt: string;
|
|
2412
2413
|
}
|
|
@@ -4907,6 +4908,7 @@ interface PassTypeCreateInputs {
|
|
|
4907
4908
|
sortOrder?: number | string | null;
|
|
4908
4909
|
enableCoupons?: boolean;
|
|
4909
4910
|
overrideStartDate?: string | null;
|
|
4911
|
+
requireCoupon?: boolean;
|
|
4910
4912
|
}
|
|
4911
4913
|
interface PassTypeUpdateInputs {
|
|
4912
4914
|
visibility?: keyof typeof PassTypeVisibility | null;
|
|
@@ -4929,6 +4931,7 @@ interface PassTypeUpdateInputs {
|
|
|
4929
4931
|
sortOrder?: number | string | null;
|
|
4930
4932
|
enableCoupons?: boolean;
|
|
4931
4933
|
overrideStartDate?: string | null;
|
|
4934
|
+
requireCoupon?: boolean;
|
|
4932
4935
|
}
|
|
4933
4936
|
interface TierCreateInputs {
|
|
4934
4937
|
name: string;
|