@jealous-robot-dev/shared-types-responses 1.23.16 → 1.24.0
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.
|
@@ -71,7 +71,13 @@ export interface EventManagerPhrases {
|
|
|
71
71
|
name: string;
|
|
72
72
|
description: string;
|
|
73
73
|
capacity: string;
|
|
74
|
-
|
|
74
|
+
};
|
|
75
|
+
event_time: {
|
|
76
|
+
label: string;
|
|
77
|
+
rescheduling: string;
|
|
78
|
+
duration: string;
|
|
79
|
+
schedule: string;
|
|
80
|
+
weekly: string;
|
|
75
81
|
};
|
|
76
82
|
event_additional_data: {
|
|
77
83
|
label: string;
|
|
@@ -165,10 +171,12 @@ export interface EventManagerFormsName {
|
|
|
165
171
|
export interface EventManagerFormsTime {
|
|
166
172
|
common: EventHostTimimgCommonPhrases;
|
|
167
173
|
when_can_be_applied: string;
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
174
|
+
descriptions: {
|
|
175
|
+
weekly: string;
|
|
176
|
+
schedule: string;
|
|
177
|
+
duration: string;
|
|
178
|
+
rescheduling: string;
|
|
179
|
+
};
|
|
172
180
|
}
|
|
173
181
|
export interface EventManagerFormsFee {
|
|
174
182
|
warning: string;
|
|
@@ -210,6 +218,7 @@ export interface EventInManager {
|
|
|
210
218
|
next_session: string | null;
|
|
211
219
|
passed_sessions: number;
|
|
212
220
|
suspended: boolean;
|
|
221
|
+
weekly: boolean;
|
|
213
222
|
can_be_deleted: boolean;
|
|
214
223
|
}
|
|
215
224
|
export interface EventManagerData {
|