@jealous-robot-dev/shared-types-responses 1.24.7 → 1.24.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.
|
@@ -25,7 +25,7 @@ export interface ViewEventCommonData {
|
|
|
25
25
|
name: string;
|
|
26
26
|
description: string;
|
|
27
27
|
fee: number;
|
|
28
|
-
duration:
|
|
28
|
+
duration: number;
|
|
29
29
|
capacity: number;
|
|
30
30
|
prerequisites: string[];
|
|
31
31
|
raiting: number;
|
|
@@ -87,20 +87,23 @@ export interface ViewEventPhrasesHowToParticipate {
|
|
|
87
87
|
}[];
|
|
88
88
|
}
|
|
89
89
|
export interface ViewEventAboutHostPhrases {
|
|
90
|
-
member_since: string;
|
|
91
90
|
reviews: string;
|
|
91
|
+
use_drophr: string;
|
|
92
|
+
member_since: string;
|
|
93
|
+
login_to_view: string;
|
|
92
94
|
ask_a_question: string;
|
|
93
95
|
}
|
|
94
96
|
export interface ViewEventHostData {
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
97
|
+
is_available: boolean;
|
|
98
|
+
member_since?: string;
|
|
99
|
+
about?: string;
|
|
100
|
+
ppu?: string;
|
|
101
|
+
UID?: string;
|
|
102
|
+
reviews?: number;
|
|
103
|
+
raiting?: number;
|
|
104
|
+
firstname?: string;
|
|
105
|
+
lastname?: string;
|
|
106
|
+
username?: string;
|
|
104
107
|
}
|
|
105
108
|
export interface EventSessionTime {
|
|
106
109
|
sid: string;
|
|
@@ -13,4 +13,5 @@ var AppHeaders;
|
|
|
13
13
|
AppHeaders["AUTH_CTX"] = "x-drop-auth-ctx";
|
|
14
14
|
AppHeaders["THEME"] = "x-drop-ui-theme";
|
|
15
15
|
AppHeaders["IMPRESSION_ID"] = "x-drop-impression-id";
|
|
16
|
+
AppHeaders["EVENT_VIEW"] = "x-drop-event-view";
|
|
16
17
|
})(AppHeaders = exports.AppHeaders || (exports.AppHeaders = {}));
|