@jealous-robot-dev/shared-types-responses 1.23.1 → 1.23.5
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.
|
@@ -30,6 +30,10 @@ export declare enum EventTimeModes {
|
|
|
30
30
|
SINGLE_SESSION = "single_session",
|
|
31
31
|
MULTI_SESSION = "multi_session"
|
|
32
32
|
}
|
|
33
|
+
export interface EventSeance {
|
|
34
|
+
sid: string;
|
|
35
|
+
starts_at: string;
|
|
36
|
+
}
|
|
33
37
|
export interface EventRaiting {
|
|
34
38
|
event_organizer_raiting: number | null;
|
|
35
39
|
event_raiting: null | number;
|
|
@@ -90,7 +90,7 @@ export declare enum EventEditableFields {
|
|
|
90
90
|
FEE = "fee",
|
|
91
91
|
NAME = "name",
|
|
92
92
|
DESCRIPTION = "description",
|
|
93
|
-
|
|
93
|
+
CAPACITY = "capacity",
|
|
94
94
|
TIME = "time",
|
|
95
95
|
PICS = "pics",
|
|
96
96
|
PREREQUISITES = "prerequisites",
|
|
@@ -182,18 +182,18 @@ export interface EventManagerFormsTags {
|
|
|
182
182
|
selected_tags: string;
|
|
183
183
|
}
|
|
184
184
|
export interface EventInManager {
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
185
|
+
id: string;
|
|
186
|
+
name: string;
|
|
187
|
+
pic: string;
|
|
188
|
+
language: string;
|
|
189
|
+
type: EventTypes;
|
|
190
|
+
capacity: number;
|
|
191
|
+
timing_mode: EventTimeModes;
|
|
192
|
+
last_modified: string;
|
|
193
|
+
next_session: string | null;
|
|
194
|
+
passed_sessions: number;
|
|
195
|
+
suspended: boolean;
|
|
196
|
+
can_be_deleted: boolean;
|
|
197
197
|
}
|
|
198
198
|
export interface EventManagerData {
|
|
199
199
|
events: EventInManager[];
|
|
@@ -13,7 +13,7 @@ var EventEditableFields;
|
|
|
13
13
|
EventEditableFields["FEE"] = "fee";
|
|
14
14
|
EventEditableFields["NAME"] = "name";
|
|
15
15
|
EventEditableFields["DESCRIPTION"] = "description";
|
|
16
|
-
EventEditableFields["
|
|
16
|
+
EventEditableFields["CAPACITY"] = "capacity";
|
|
17
17
|
EventEditableFields["TIME"] = "time";
|
|
18
18
|
EventEditableFields["PICS"] = "pics";
|
|
19
19
|
EventEditableFields["PREREQUISITES"] = "prerequisites";
|