@connectedxm/admin 1.1.6 → 1.1.7
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.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2049,6 +2049,7 @@ interface BaseEventPassTypeRefundSchedule {
|
|
|
2049
2049
|
interface EventPassTypeRefundSchedule extends BaseEventPassTypeRefundSchedule {
|
|
2050
2050
|
}
|
|
2051
2051
|
interface EventPassType extends BaseEventPassType {
|
|
2052
|
+
overrideStartDate: string | null;
|
|
2052
2053
|
sortOrder: number;
|
|
2053
2054
|
event: BaseEvent;
|
|
2054
2055
|
_count: {
|
|
@@ -3625,6 +3626,7 @@ interface PassTypeCreateInputs {
|
|
|
3625
3626
|
minReservationEnd?: string | null;
|
|
3626
3627
|
maxReservationEnd?: string | null;
|
|
3627
3628
|
enableCoupons?: boolean;
|
|
3629
|
+
overrideStartDate?: string | null;
|
|
3628
3630
|
}
|
|
3629
3631
|
interface PassTypeUpdateInputs {
|
|
3630
3632
|
visibility?: keyof typeof PassTypeVisibility | null;
|
|
@@ -3651,6 +3653,7 @@ interface PassTypeUpdateInputs {
|
|
|
3651
3653
|
minReservationEnd?: string | null;
|
|
3652
3654
|
maxReservationEnd?: string | null;
|
|
3653
3655
|
enableCoupons?: boolean;
|
|
3656
|
+
overrideStartDate?: string | null;
|
|
3654
3657
|
}
|
|
3655
3658
|
interface TierCreateInputs {
|
|
3656
3659
|
name: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2049,6 +2049,7 @@ interface BaseEventPassTypeRefundSchedule {
|
|
|
2049
2049
|
interface EventPassTypeRefundSchedule extends BaseEventPassTypeRefundSchedule {
|
|
2050
2050
|
}
|
|
2051
2051
|
interface EventPassType extends BaseEventPassType {
|
|
2052
|
+
overrideStartDate: string | null;
|
|
2052
2053
|
sortOrder: number;
|
|
2053
2054
|
event: BaseEvent;
|
|
2054
2055
|
_count: {
|
|
@@ -3625,6 +3626,7 @@ interface PassTypeCreateInputs {
|
|
|
3625
3626
|
minReservationEnd?: string | null;
|
|
3626
3627
|
maxReservationEnd?: string | null;
|
|
3627
3628
|
enableCoupons?: boolean;
|
|
3629
|
+
overrideStartDate?: string | null;
|
|
3628
3630
|
}
|
|
3629
3631
|
interface PassTypeUpdateInputs {
|
|
3630
3632
|
visibility?: keyof typeof PassTypeVisibility | null;
|
|
@@ -3651,6 +3653,7 @@ interface PassTypeUpdateInputs {
|
|
|
3651
3653
|
minReservationEnd?: string | null;
|
|
3652
3654
|
maxReservationEnd?: string | null;
|
|
3653
3655
|
enableCoupons?: boolean;
|
|
3656
|
+
overrideStartDate?: string | null;
|
|
3654
3657
|
}
|
|
3655
3658
|
interface TierCreateInputs {
|
|
3656
3659
|
name: string;
|