@jealous-robot-dev/shared-types-responses 1.28.8 → 1.28.9
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 {
|