@connectedxm/client 8.0.6 → 8.0.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.ts +4 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2957,7 +2957,8 @@ interface EventConfig {
|
|
|
2957
2957
|
maxEnd: string | null;
|
|
2958
2958
|
price: number;
|
|
2959
2959
|
pricePerNight: boolean;
|
|
2960
|
-
|
|
2960
|
+
requiresRoom: boolean;
|
|
2961
|
+
availableRooms: {
|
|
2961
2962
|
id: string;
|
|
2962
2963
|
roomName: string;
|
|
2963
2964
|
}[];
|
|
@@ -2995,14 +2996,14 @@ interface EventConfig {
|
|
|
2995
2996
|
price: number;
|
|
2996
2997
|
startTime: string;
|
|
2997
2998
|
soldout: boolean;
|
|
2999
|
+
allowedPassTypes: string[];
|
|
3000
|
+
allowedTiers: string[];
|
|
2998
3001
|
image: {
|
|
2999
3002
|
id: string;
|
|
3000
3003
|
uri: string;
|
|
3001
3004
|
width: number;
|
|
3002
3005
|
height: number;
|
|
3003
3006
|
} | null;
|
|
3004
|
-
allowedPassTypes: string[];
|
|
3005
|
-
allowedTiers: string[];
|
|
3006
3007
|
}[];
|
|
3007
3008
|
SECTIONS: {
|
|
3008
3009
|
id: string;
|