@jealous-robot-dev/shared-types-responses 1.26.3 → 1.26.4
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.
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { EventInSearch } from './event-search';
|
|
2
|
+
import { PhrasedEventType } from './events';
|
|
2
3
|
export interface TagExplorationStats {
|
|
3
4
|
times_viewed: number;
|
|
4
5
|
mentioned: number;
|
|
@@ -8,7 +9,7 @@ export interface TagSearchResponse {
|
|
|
8
9
|
no_more_entries: boolean;
|
|
9
10
|
page: number;
|
|
10
11
|
}
|
|
11
|
-
export interface
|
|
12
|
+
export interface NoEventsFound extends TagSearchResponse {
|
|
12
13
|
similar_tags: string[];
|
|
13
14
|
}
|
|
14
15
|
export interface TagSearchPhrases {
|
|
@@ -18,7 +19,10 @@ export interface TagSearchPhrases {
|
|
|
18
19
|
mentioned: string;
|
|
19
20
|
times_viewed: string;
|
|
20
21
|
};
|
|
21
|
-
|
|
22
|
+
common: {
|
|
23
|
+
event_types: PhrasedEventType[];
|
|
24
|
+
load_more: string;
|
|
25
|
+
};
|
|
22
26
|
no_matches: {
|
|
23
27
|
label: string;
|
|
24
28
|
description: string;
|