@connectedxm/client 8.0.4 → 8.0.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.ts +10 -1
- 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;
|
|
@@ -2872,6 +2874,7 @@ interface EventConfig {
|
|
|
2872
2874
|
price: number;
|
|
2873
2875
|
shortDescription: string;
|
|
2874
2876
|
longDescription: string | null;
|
|
2877
|
+
featured: boolean;
|
|
2875
2878
|
image: {
|
|
2876
2879
|
id: string;
|
|
2877
2880
|
uri: string;
|
|
@@ -2992,6 +2995,12 @@ interface EventConfig {
|
|
|
2992
2995
|
price: number;
|
|
2993
2996
|
startTime: string;
|
|
2994
2997
|
soldout: boolean;
|
|
2998
|
+
image: {
|
|
2999
|
+
id: string;
|
|
3000
|
+
uri: string;
|
|
3001
|
+
width: number;
|
|
3002
|
+
height: number;
|
|
3003
|
+
} | null;
|
|
2995
3004
|
allowedPassTypes: string[];
|
|
2996
3005
|
allowedTiers: string[];
|
|
2997
3006
|
}[];
|