@jealous-robot-dev/shared-types-responses 1.25.10 → 1.25.14

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.
@@ -75,12 +75,12 @@ export interface SearchEventsPhrases {
75
75
  };
76
76
  }
77
77
  export interface EventInSearch {
78
- event_id: string;
79
- event_pic: string;
80
- event_name: string;
81
- event_type: EventTypes;
82
- event_raiting: number | null;
83
- event_reviews_count: number | null;
84
- event_price: number;
85
- event_is_saved: boolean;
78
+ id: string;
79
+ pic: string;
80
+ name: string;
81
+ type: EventTypes;
82
+ raiting: number;
83
+ reviews_count: number;
84
+ price: number;
85
+ is_saved: boolean;
86
86
  }
@@ -5,6 +5,7 @@ export declare enum URGENT_EVENT_TYPE {
5
5
  }
6
6
  export interface UrgentEvent {
7
7
  event_id: string;
8
+ sid: string;
8
9
  type: URGENT_EVENT_TYPE;
9
10
  }
10
11
  export interface UrgentEventData {
@@ -35,10 +35,14 @@ export interface SearchUser {
35
35
  ppu: string;
36
36
  UID: string;
37
37
  }
38
+ export interface SearchTag {
39
+ tag: string;
40
+ mentioned: number;
41
+ }
38
42
  export interface SearchbarData {
39
43
  recent_searches: {
40
44
  users: SearchUser[];
41
- tags: string[];
45
+ tags: SearchTag[];
42
46
  };
43
47
  }
44
48
  export interface SearchbarResponse extends QueryResponse<SearchbarData, SearchbarPhrases> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.25.10",
3
+ "version": "1.25.14",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",