@jealous-robot-dev/shared-types-responses 1.28.1 → 1.28.5

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.
@@ -107,7 +107,6 @@ export interface ViewEventHostData {
107
107
  lastname?: string;
108
108
  username?: string;
109
109
  has_gold_badge?: boolean;
110
- total_bookings?: number;
111
110
  cancellation_rate?: number;
112
111
  }
113
112
  export interface EventSessionTime {
@@ -34,26 +34,24 @@ export interface HostPhrases {
34
34
  };
35
35
  }
36
36
  export interface EventForGuests {
37
- event_id: string;
38
- event_name: string;
39
- event_language: string;
40
- event_duration_type_stringified: string;
41
- event_lang_stringified: string;
42
- event_type: EventTypes;
43
- event_duration: number;
44
- event_pic: string;
37
+ id: string;
38
+ name: string;
39
+ lang: string;
40
+ type: EventTypes;
41
+ pic: string;
45
42
  }
46
43
  export interface EventHostedTodaySession {
44
+ can_to_host: boolean;
47
45
  starts_at: string;
48
- session_id: string;
49
- is_able_to_host: boolean;
46
+ duration: number;
47
+ sid: string;
50
48
  }
51
49
  export interface EventHostedToday extends EventForGuests {
52
50
  event_sessions: EventHostedTodaySession[];
53
51
  }
54
52
  export interface EventSession {
55
53
  starts_at: string;
56
- session_id: string;
54
+ sid: string;
57
55
  total_guests: number;
58
56
  }
59
57
  export interface EventSessions {
@@ -16,7 +16,7 @@ export interface EventInCollection {
16
16
  name: string;
17
17
  type: EventTypes;
18
18
  raiting: number;
19
- reviews: null;
19
+ reviews: number;
20
20
  organizer: UserInEvent;
21
21
  }
22
22
  export interface EventCollectionData {
@@ -30,6 +30,7 @@ export interface UserProfileData {
30
30
  website?: string;
31
31
  average_raiting?: number;
32
32
  birthday?: PersonalInfoBirthday;
33
+ has_gold_badge?: boolean;
33
34
  review_count?: number;
34
35
  languagesSpoken: string[];
35
36
  joinedIn: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.28.1",
3
+ "version": "1.28.5",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",