@connectedxm/client 8.0.5 → 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 +7 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1352,12 +1352,14 @@ interface RegistrationDraftPass {
|
|
|
1352
1352
|
passTypeId: string;
|
|
1353
1353
|
addOns: {
|
|
1354
1354
|
id: string;
|
|
1355
|
+
addOnId: string;
|
|
1355
1356
|
price?: number;
|
|
1356
1357
|
discount?: number;
|
|
1357
1358
|
total?: number;
|
|
1358
1359
|
}[];
|
|
1359
|
-
|
|
1360
|
+
accesses: {
|
|
1360
1361
|
id: string;
|
|
1362
|
+
sessionId: string;
|
|
1361
1363
|
price?: number;
|
|
1362
1364
|
discount?: number;
|
|
1363
1365
|
total?: number;
|
|
@@ -2955,7 +2957,8 @@ interface EventConfig {
|
|
|
2955
2957
|
maxEnd: string | null;
|
|
2956
2958
|
price: number;
|
|
2957
2959
|
pricePerNight: boolean;
|
|
2958
|
-
|
|
2960
|
+
requiresRoom: boolean;
|
|
2961
|
+
availableRooms: {
|
|
2959
2962
|
id: string;
|
|
2960
2963
|
roomName: string;
|
|
2961
2964
|
}[];
|
|
@@ -2993,14 +2996,14 @@ interface EventConfig {
|
|
|
2993
2996
|
price: number;
|
|
2994
2997
|
startTime: string;
|
|
2995
2998
|
soldout: boolean;
|
|
2999
|
+
allowedPassTypes: string[];
|
|
3000
|
+
allowedTiers: string[];
|
|
2996
3001
|
image: {
|
|
2997
3002
|
id: string;
|
|
2998
3003
|
uri: string;
|
|
2999
3004
|
width: number;
|
|
3000
3005
|
height: number;
|
|
3001
3006
|
} | null;
|
|
3002
|
-
allowedPassTypes: string[];
|
|
3003
|
-
allowedTiers: string[];
|
|
3004
3007
|
}[];
|
|
3005
3008
|
SECTIONS: {
|
|
3006
3009
|
id: string;
|