@jealous-robot-dev/shared-types-responses 1.25.17 → 1.26.2
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.
|
@@ -5,6 +5,7 @@ export declare enum EventFilterSelectionIntervals {
|
|
|
5
5
|
WEEK = "WEEK",
|
|
6
6
|
MONTH = "MONTH"
|
|
7
7
|
}
|
|
8
|
+
export declare const EFSI: EventFilterSelectionIntervals[];
|
|
8
9
|
export interface EventFilterIntrval {
|
|
9
10
|
type: EventFilterSelectionIntervals;
|
|
10
11
|
label: string;
|
|
@@ -43,6 +44,7 @@ export interface SearchEventsPhrases {
|
|
|
43
44
|
max: number;
|
|
44
45
|
};
|
|
45
46
|
};
|
|
47
|
+
flexible_search: string;
|
|
46
48
|
language: {
|
|
47
49
|
label: string;
|
|
48
50
|
};
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.EventFilterSelectionIntervals = void 0;
|
|
3
|
+
exports.EFSI = exports.EventFilterSelectionIntervals = void 0;
|
|
4
4
|
var EventFilterSelectionIntervals;
|
|
5
5
|
(function (EventFilterSelectionIntervals) {
|
|
6
6
|
EventFilterSelectionIntervals["DAY"] = "DAY";
|
|
7
7
|
EventFilterSelectionIntervals["WEEK"] = "WEEK";
|
|
8
8
|
EventFilterSelectionIntervals["MONTH"] = "MONTH";
|
|
9
9
|
})(EventFilterSelectionIntervals = exports.EventFilterSelectionIntervals || (exports.EventFilterSelectionIntervals = {}));
|
|
10
|
+
exports.EFSI = [
|
|
11
|
+
EventFilterSelectionIntervals.DAY, EventFilterSelectionIntervals.WEEK,
|
|
12
|
+
EventFilterSelectionIntervals.MONTH
|
|
13
|
+
];
|
|
@@ -8,3 +8,17 @@ export interface TagSearchResponse {
|
|
|
8
8
|
no_more_entries: boolean;
|
|
9
9
|
page: number;
|
|
10
10
|
}
|
|
11
|
+
export interface TagSearchPhrases {
|
|
12
|
+
title: string;
|
|
13
|
+
stats: {
|
|
14
|
+
tagname: string;
|
|
15
|
+
mentioned: string;
|
|
16
|
+
times_viewed: string;
|
|
17
|
+
};
|
|
18
|
+
load_more: string;
|
|
19
|
+
no_matches: {
|
|
20
|
+
label: string;
|
|
21
|
+
description: string;
|
|
22
|
+
};
|
|
23
|
+
person: string;
|
|
24
|
+
}
|
|
@@ -35,14 +35,10 @@ export interface SearchUser {
|
|
|
35
35
|
ppu: string;
|
|
36
36
|
UID: string;
|
|
37
37
|
}
|
|
38
|
-
export interface SearchTag {
|
|
39
|
-
tag: string;
|
|
40
|
-
mentioned: number;
|
|
41
|
-
}
|
|
42
38
|
export interface SearchbarData {
|
|
43
39
|
recent_searches: {
|
|
44
40
|
users: SearchUser[];
|
|
45
|
-
tags:
|
|
41
|
+
tags: string[];
|
|
46
42
|
};
|
|
47
43
|
}
|
|
48
44
|
export interface SearchbarResponse extends QueryResponse<SearchbarData, SearchbarPhrases> {
|