@jealous-robot-dev/shared-types-responses 1.28.7 → 1.28.11
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,11 +39,24 @@ export interface HostHubEventData {
|
|
|
39
39
|
lang: string;
|
|
40
40
|
type: EventTypes;
|
|
41
41
|
}
|
|
42
|
-
export interface
|
|
42
|
+
export interface HostHubTodayEvtClient {
|
|
43
|
+
id: string;
|
|
44
|
+
pic: string;
|
|
45
|
+
sid: string;
|
|
46
|
+
lang: string;
|
|
47
|
+
data: string;
|
|
48
|
+
name: string;
|
|
43
49
|
can_host: boolean;
|
|
50
|
+
duration: number;
|
|
44
51
|
starts_at: string;
|
|
52
|
+
}
|
|
53
|
+
export interface HostHubBookingEvtClient {
|
|
54
|
+
id: string;
|
|
55
|
+
pic: string;
|
|
56
|
+
data: string;
|
|
57
|
+
name: string;
|
|
58
|
+
lang: string;
|
|
45
59
|
duration: number;
|
|
46
|
-
sid: string;
|
|
47
60
|
}
|
|
48
61
|
export interface EventSeanceWithBookings {
|
|
49
62
|
sid: string;
|
|
@@ -51,7 +64,13 @@ export interface EventSeanceWithBookings {
|
|
|
51
64
|
starts_at: string;
|
|
52
65
|
total_guests: number;
|
|
53
66
|
}
|
|
54
|
-
export interface
|
|
67
|
+
export interface HostHubEventToday extends HostHubEventData {
|
|
68
|
+
can_host: boolean;
|
|
69
|
+
starts_at: string;
|
|
70
|
+
duration: number;
|
|
71
|
+
sid: string;
|
|
72
|
+
}
|
|
73
|
+
export interface HostHubEventBookings extends HostHubEventData {
|
|
55
74
|
guests: number;
|
|
56
75
|
duration: number;
|
|
57
76
|
seances: EventSeanceWithBookings[];
|
|
@@ -59,10 +78,10 @@ export interface HostHubBookingEventData extends HostHubEventData {
|
|
|
59
78
|
export interface HostHubData {
|
|
60
79
|
has_active_events: boolean;
|
|
61
80
|
total_events_today: number;
|
|
62
|
-
events_today:
|
|
81
|
+
events_today: HostHubEventToday[];
|
|
63
82
|
bookings: {
|
|
64
83
|
total: number;
|
|
65
|
-
events:
|
|
84
|
+
events: HostHubEventBookings[];
|
|
66
85
|
};
|
|
67
86
|
}
|
|
68
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: {
|