@jealous-robot-dev/shared-types-responses 1.29.9 → 1.29.12
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.
@@ -50,13 +50,15 @@ export interface UserInEvent {
|
|
50
50
|
has_gold_badge?: boolean;
|
51
51
|
}
|
52
52
|
export interface EventReview {
|
53
|
-
|
53
|
+
rid: string;
|
54
54
|
author: UserInEvent;
|
55
55
|
raiting: number;
|
56
56
|
comment: string;
|
57
|
-
|
58
|
-
|
59
|
-
|
57
|
+
event: {
|
58
|
+
type: EventTypes;
|
59
|
+
name: string;
|
60
|
+
};
|
61
|
+
written_at: string;
|
60
62
|
}
|
61
63
|
export interface EventPrice {
|
62
64
|
currency: Currency;
|
@@ -22,10 +22,10 @@ export interface UserPerformancePhrases {
|
|
22
22
|
};
|
23
23
|
}
|
24
24
|
export interface EventInPerformance {
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
25
|
+
id: string;
|
26
|
+
name: string;
|
27
|
+
type: EventTypes;
|
28
|
+
time_mode: EventTimeModes;
|
29
|
+
duration: number;
|
30
|
+
picture: string;
|
31
31
|
}
|