@jealous-robot-dev/shared-types-responses 1.25.18 → 1.26.3
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,21 @@ export interface TagSearchResponse {
|
|
|
8
8
|
no_more_entries: boolean;
|
|
9
9
|
page: number;
|
|
10
10
|
}
|
|
11
|
+
export interface NoEventFound {
|
|
12
|
+
similar_tags: string[];
|
|
13
|
+
}
|
|
14
|
+
export interface TagSearchPhrases {
|
|
15
|
+
title: string;
|
|
16
|
+
stats: {
|
|
17
|
+
tagname: string;
|
|
18
|
+
mentioned: string;
|
|
19
|
+
times_viewed: string;
|
|
20
|
+
};
|
|
21
|
+
load_more: string;
|
|
22
|
+
no_matches: {
|
|
23
|
+
label: string;
|
|
24
|
+
description: string;
|
|
25
|
+
similar_tags: string;
|
|
26
|
+
};
|
|
27
|
+
person: string;
|
|
28
|
+
}
|