@connectedxm/admin 6.1.2 → 6.1.4
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 +4 -1
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2790,10 +2790,11 @@ interface EventPassType extends BaseEventPassType {
|
|
|
2790
2790
|
event: BaseEvent;
|
|
2791
2791
|
allowedTiers: BaseTier[];
|
|
2792
2792
|
disallowedTiers: BaseTier[];
|
|
2793
|
+
groupPassDescription: string | null;
|
|
2794
|
+
requiredPassType: BaseEventPassType | null;
|
|
2793
2795
|
_count: {
|
|
2794
2796
|
purchases: number;
|
|
2795
2797
|
};
|
|
2796
|
-
requiredPassType: BaseEventPassType | null;
|
|
2797
2798
|
}
|
|
2798
2799
|
interface BaseEventPassTypePriceSchedule {
|
|
2799
2800
|
id: string;
|
|
@@ -5456,6 +5457,7 @@ interface PassTypeCreateInputs {
|
|
|
5456
5457
|
requiredPassTypeId?: string | null;
|
|
5457
5458
|
sortOrder?: number | string | null;
|
|
5458
5459
|
enableCoupons?: boolean;
|
|
5460
|
+
groupPassDescription?: string | null;
|
|
5459
5461
|
overrideStartDate?: string | null;
|
|
5460
5462
|
requireCoupon?: boolean;
|
|
5461
5463
|
taxCode?: string | null;
|
|
@@ -5485,6 +5487,7 @@ interface PassTypeUpdateInputs {
|
|
|
5485
5487
|
enableCoupons?: boolean;
|
|
5486
5488
|
minCouponQuantity?: number;
|
|
5487
5489
|
maxCouponQuantity?: number | null;
|
|
5490
|
+
groupPassDescription?: string | null;
|
|
5488
5491
|
overrideStartDate?: string | null;
|
|
5489
5492
|
requireCoupon?: boolean;
|
|
5490
5493
|
taxCode?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -2790,10 +2790,11 @@ interface EventPassType extends BaseEventPassType {
|
|
|
2790
2790
|
event: BaseEvent;
|
|
2791
2791
|
allowedTiers: BaseTier[];
|
|
2792
2792
|
disallowedTiers: BaseTier[];
|
|
2793
|
+
groupPassDescription: string | null;
|
|
2794
|
+
requiredPassType: BaseEventPassType | null;
|
|
2793
2795
|
_count: {
|
|
2794
2796
|
purchases: number;
|
|
2795
2797
|
};
|
|
2796
|
-
requiredPassType: BaseEventPassType | null;
|
|
2797
2798
|
}
|
|
2798
2799
|
interface BaseEventPassTypePriceSchedule {
|
|
2799
2800
|
id: string;
|
|
@@ -5456,6 +5457,7 @@ interface PassTypeCreateInputs {
|
|
|
5456
5457
|
requiredPassTypeId?: string | null;
|
|
5457
5458
|
sortOrder?: number | string | null;
|
|
5458
5459
|
enableCoupons?: boolean;
|
|
5460
|
+
groupPassDescription?: string | null;
|
|
5459
5461
|
overrideStartDate?: string | null;
|
|
5460
5462
|
requireCoupon?: boolean;
|
|
5461
5463
|
taxCode?: string | null;
|
|
@@ -5485,6 +5487,7 @@ interface PassTypeUpdateInputs {
|
|
|
5485
5487
|
enableCoupons?: boolean;
|
|
5486
5488
|
minCouponQuantity?: number;
|
|
5487
5489
|
maxCouponQuantity?: number | null;
|
|
5490
|
+
groupPassDescription?: string | null;
|
|
5488
5491
|
overrideStartDate?: string | null;
|
|
5489
5492
|
requireCoupon?: boolean;
|
|
5490
5493
|
taxCode?: string | null;
|