@jealous-robot-dev/shared-types-responses 1.28.6 → 1.28.10

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.
@@ -37,32 +37,53 @@ export interface HostHubEventData {
37
37
  pic: string;
38
38
  name: string;
39
39
  lang: string;
40
- duration: number;
41
40
  type: EventTypes;
41
+ }
42
+ export interface HostHubTodayEvtClient {
43
+ id: string;
44
+ pic: string;
45
+ sid: string;
46
+ lang: string;
47
+ data: string;
48
+ name: string;
49
+ can_host: boolean;
50
+ duration: number;
51
+ starts_at: string;
52
+ }
53
+ export interface HostHubBookingEvtClient {
54
+ id: string;
55
+ pic: string;
56
+ data: string;
57
+ name: string;
58
+ lang: string;
59
+ duration: number;
60
+ }
61
+ export interface EventSeanceWithBookings {
62
+ sid: string;
63
+ duration: number;
42
64
  starts_at: string;
65
+ total_guests: number;
43
66
  }
44
- export interface HostHubHostingEventData extends HostHubEventData {
67
+ export interface HostHubEventToday extends HostHubEventData {
45
68
  can_host: boolean;
69
+ starts_at: string;
70
+ duration: number;
46
71
  sid: string;
47
72
  }
48
- export interface HostHubBookingEventData extends HostHubEventData {
73
+ export interface HostHubEventBookings extends HostHubEventData {
49
74
  guests: number;
75
+ duration: number;
76
+ seances: EventSeanceWithBookings[];
50
77
  }
51
78
  export interface HostHubData {
52
79
  has_active_events: boolean;
53
80
  total_events_today: number;
54
- events_today: HostHubHostingEventData[];
81
+ events_today: HostHubEventToday[];
55
82
  bookings: {
56
83
  total: number;
57
- events: HostHubBookingEventData[];
84
+ events: HostHubEventBookings[];
58
85
  };
59
86
  }
60
- export interface EventSession {
61
- sid: string;
62
- duration: number;
63
- starts_at: string;
64
- total_guests: number;
65
- }
66
87
  export interface SessionGuests {
67
88
  sid: string;
68
89
  guests: ShortEventVisitor[];
@@ -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
+ booked_seances: string;
147
+ cancellations: string;
148
+ description: string;
149
+ income_loss: string;
150
+ rate_change: string;
151
+ no_seances: string;
152
+ gold_badge: 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: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.28.6",
3
+ "version": "1.28.10",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",