@jealous-robot-dev/shared-types-responses 1.28.8 → 1.28.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.
|
@@ -39,7 +39,7 @@ export interface HostHubEventData {
|
|
|
39
39
|
lang: string;
|
|
40
40
|
type: EventTypes;
|
|
41
41
|
}
|
|
42
|
-
export interface
|
|
42
|
+
export interface HostHubTodayEvtClient {
|
|
43
43
|
id: string;
|
|
44
44
|
pic: string;
|
|
45
45
|
sid: string;
|
|
@@ -50,7 +50,7 @@ export interface HostHubHostingEventData {
|
|
|
50
50
|
duration: number;
|
|
51
51
|
starts_at: string;
|
|
52
52
|
}
|
|
53
|
-
export interface
|
|
53
|
+
export interface HostHubBookingEvtClient {
|
|
54
54
|
id: string;
|
|
55
55
|
pic: string;
|
|
56
56
|
data: string;
|
|
@@ -64,13 +64,13 @@ export interface EventSeanceWithBookings {
|
|
|
64
64
|
starts_at: string;
|
|
65
65
|
total_guests: number;
|
|
66
66
|
}
|
|
67
|
-
export interface
|
|
67
|
+
export interface HostHubEventToday extends HostHubEventData {
|
|
68
68
|
can_host: boolean;
|
|
69
69
|
starts_at: string;
|
|
70
70
|
duration: number;
|
|
71
71
|
sid: string;
|
|
72
72
|
}
|
|
73
|
-
export interface
|
|
73
|
+
export interface HostHubEventBookings extends HostHubEventData {
|
|
74
74
|
guests: number;
|
|
75
75
|
duration: number;
|
|
76
76
|
seances: EventSeanceWithBookings[];
|
|
@@ -78,10 +78,10 @@ export interface HostHubBookingEventData extends HostHubEventData {
|
|
|
78
78
|
export interface HostHubData {
|
|
79
79
|
has_active_events: boolean;
|
|
80
80
|
total_events_today: number;
|
|
81
|
-
events_today:
|
|
81
|
+
events_today: HostHubEventToday[];
|
|
82
82
|
bookings: {
|
|
83
83
|
total: number;
|
|
84
|
-
events:
|
|
84
|
+
events: HostHubEventBookings[];
|
|
85
85
|
};
|
|
86
86
|
}
|
|
87
87
|
export interface SessionGuests {
|
|
@@ -142,6 +142,17 @@ export interface EventManagerFormsUnsuspend {
|
|
|
142
142
|
pick_a_date: string;
|
|
143
143
|
ask_for_pw: string;
|
|
144
144
|
}
|
|
145
|
+
export interface EventManagerFormsUrgentCancellation {
|
|
146
|
+
event_rate_change: string;
|
|
147
|
+
host_rate_change: string;
|
|
148
|
+
booked_seances: string;
|
|
149
|
+
cancellations: string;
|
|
150
|
+
description: string;
|
|
151
|
+
income_loss: string;
|
|
152
|
+
no_seances: string;
|
|
153
|
+
consequences: string;
|
|
154
|
+
gold_badge_will_be_lost: string;
|
|
155
|
+
}
|
|
145
156
|
export interface EventManagerFormsSuspend {
|
|
146
157
|
description: string;
|
|
147
158
|
notice_on_events: {
|
|
@@ -221,7 +232,7 @@ export interface EventInManager {
|
|
|
221
232
|
passed_sessions: number;
|
|
222
233
|
suspended: boolean;
|
|
223
234
|
weekly: boolean;
|
|
224
|
-
|
|
235
|
+
booked_seances: number;
|
|
225
236
|
}
|
|
226
237
|
export interface EventManagerData {
|
|
227
238
|
events: EventInManager[];
|