@jealous-robot-dev/shared-types-responses 1.29.8 → 1.29.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.
@@ -22,13 +22,15 @@ export interface EventImpressionPhrases {
22
22
  }
23
23
  export interface EventImpressionData {
24
24
  id: string;
25
+ rid: string;
25
26
  pic: string;
26
27
  name: string;
28
+ reviews: number;
29
+ raiting: number;
27
30
  duration: number;
28
31
  language: string;
29
32
  type: EventTypes;
30
- review_count: number;
31
- average_review: number;
33
+ starts_at: string;
32
34
  host: UserInEvent;
33
35
  }
34
36
  export interface EventImpressionResponse extends QueryResponse<EventImpressionData, EventImpressionPhrases> {
@@ -160,6 +160,7 @@ export interface ViewEventReview {
160
160
  }
161
161
  export interface ViewEventReviews {
162
162
  entries: ViewEventReview[];
163
+ has_more: boolean;
163
164
  }
164
165
  export interface ViewEventReviewsPhrases {
165
166
  title: string;
@@ -50,13 +50,15 @@ export interface UserInEvent {
50
50
  has_gold_badge?: boolean;
51
51
  }
52
52
  export interface EventReview {
53
- reviewID: string;
53
+ rid: string;
54
54
  author: UserInEvent;
55
55
  raiting: number;
56
56
  comment: string;
57
- event_type: EventTypes;
58
- event_name: string;
59
- publicationTime: number;
57
+ event: {
58
+ type: EventTypes;
59
+ name: string;
60
+ };
61
+ written_at: string;
60
62
  }
61
63
  export interface EventPrice {
62
64
  currency: Currency;
@@ -49,6 +49,7 @@ export interface UserEventsInProfile {
49
49
  }
50
50
  export interface UserReviewsInProfile {
51
51
  reviews: EventReview[];
52
+ has_more: boolean;
52
53
  }
53
54
  export interface UserProfileCurrentUserPhrases {
54
55
  updateProfile: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.29.8",
3
+ "version": "1.29.11",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",