@connectedxm/admin 1.3.4 → 1.3.6
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 +10 -3
- package/dist/index.d.ts +10 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -710,6 +710,9 @@ interface BaseEventAddOn {
|
|
|
710
710
|
interface EventAddOn extends BaseEventAddOn {
|
|
711
711
|
longDescription: string | null;
|
|
712
712
|
event: BaseEvent | null;
|
|
713
|
+
allowedTickets: BaseEventPassType[];
|
|
714
|
+
allowedTiers: BaseTier[];
|
|
715
|
+
disallowedTiers: BaseTier[];
|
|
713
716
|
}
|
|
714
717
|
interface EventAddOnTranslation {
|
|
715
718
|
id: number;
|
|
@@ -1617,7 +1620,6 @@ interface BaseRegistrationQuestion {
|
|
|
1617
1620
|
interface RegistrationQuestion extends BaseRegistrationQuestion {
|
|
1618
1621
|
sections: BaseRegistrationSectionQuestion[];
|
|
1619
1622
|
subQuestionOf: RegistrationQuestionChoiceSubQuestion[];
|
|
1620
|
-
response?: string;
|
|
1621
1623
|
createdAt: string;
|
|
1622
1624
|
updatedAt: string;
|
|
1623
1625
|
_count: {
|
|
@@ -2119,8 +2121,6 @@ interface BaseEventPassType {
|
|
|
2119
2121
|
minQuantityPerSale: number;
|
|
2120
2122
|
maxQuantityPerSale: number;
|
|
2121
2123
|
emailDomains: string | null;
|
|
2122
|
-
allowedTiers: BaseTier[];
|
|
2123
|
-
disallowedTiers: BaseTier[];
|
|
2124
2124
|
createdAt: string;
|
|
2125
2125
|
updatedAt: string;
|
|
2126
2126
|
}
|
|
@@ -2151,6 +2151,8 @@ interface EventPassType extends BaseEventPassType {
|
|
|
2151
2151
|
overrideStartDate: string | null;
|
|
2152
2152
|
sortOrder: number;
|
|
2153
2153
|
event: BaseEvent;
|
|
2154
|
+
allowedTiers: BaseTier[];
|
|
2155
|
+
disallowedTiers: BaseTier[];
|
|
2154
2156
|
_count: {
|
|
2155
2157
|
purchases: number;
|
|
2156
2158
|
};
|
|
@@ -2461,8 +2463,13 @@ interface EventRoomType extends BaseEventRoomType {
|
|
|
2461
2463
|
minEnd: string | null;
|
|
2462
2464
|
defaultEnd: string | null;
|
|
2463
2465
|
maxEnd: string | null;
|
|
2466
|
+
allowedTiers: BaseTier[];
|
|
2467
|
+
disallowedTiers: BaseTier[];
|
|
2464
2468
|
createdAt: string;
|
|
2465
2469
|
updatedAt: string;
|
|
2470
|
+
_count: {
|
|
2471
|
+
reservations: number;
|
|
2472
|
+
};
|
|
2466
2473
|
}
|
|
2467
2474
|
interface EventRoomTypeTranslation {
|
|
2468
2475
|
id: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -710,6 +710,9 @@ interface BaseEventAddOn {
|
|
|
710
710
|
interface EventAddOn extends BaseEventAddOn {
|
|
711
711
|
longDescription: string | null;
|
|
712
712
|
event: BaseEvent | null;
|
|
713
|
+
allowedTickets: BaseEventPassType[];
|
|
714
|
+
allowedTiers: BaseTier[];
|
|
715
|
+
disallowedTiers: BaseTier[];
|
|
713
716
|
}
|
|
714
717
|
interface EventAddOnTranslation {
|
|
715
718
|
id: number;
|
|
@@ -1617,7 +1620,6 @@ interface BaseRegistrationQuestion {
|
|
|
1617
1620
|
interface RegistrationQuestion extends BaseRegistrationQuestion {
|
|
1618
1621
|
sections: BaseRegistrationSectionQuestion[];
|
|
1619
1622
|
subQuestionOf: RegistrationQuestionChoiceSubQuestion[];
|
|
1620
|
-
response?: string;
|
|
1621
1623
|
createdAt: string;
|
|
1622
1624
|
updatedAt: string;
|
|
1623
1625
|
_count: {
|
|
@@ -2119,8 +2121,6 @@ interface BaseEventPassType {
|
|
|
2119
2121
|
minQuantityPerSale: number;
|
|
2120
2122
|
maxQuantityPerSale: number;
|
|
2121
2123
|
emailDomains: string | null;
|
|
2122
|
-
allowedTiers: BaseTier[];
|
|
2123
|
-
disallowedTiers: BaseTier[];
|
|
2124
2124
|
createdAt: string;
|
|
2125
2125
|
updatedAt: string;
|
|
2126
2126
|
}
|
|
@@ -2151,6 +2151,8 @@ interface EventPassType extends BaseEventPassType {
|
|
|
2151
2151
|
overrideStartDate: string | null;
|
|
2152
2152
|
sortOrder: number;
|
|
2153
2153
|
event: BaseEvent;
|
|
2154
|
+
allowedTiers: BaseTier[];
|
|
2155
|
+
disallowedTiers: BaseTier[];
|
|
2154
2156
|
_count: {
|
|
2155
2157
|
purchases: number;
|
|
2156
2158
|
};
|
|
@@ -2461,8 +2463,13 @@ interface EventRoomType extends BaseEventRoomType {
|
|
|
2461
2463
|
minEnd: string | null;
|
|
2462
2464
|
defaultEnd: string | null;
|
|
2463
2465
|
maxEnd: string | null;
|
|
2466
|
+
allowedTiers: BaseTier[];
|
|
2467
|
+
disallowedTiers: BaseTier[];
|
|
2464
2468
|
createdAt: string;
|
|
2465
2469
|
updatedAt: string;
|
|
2470
|
+
_count: {
|
|
2471
|
+
reservations: number;
|
|
2472
|
+
};
|
|
2466
2473
|
}
|
|
2467
2474
|
interface EventRoomTypeTranslation {
|
|
2468
2475
|
id: number;
|