@jealous-robot-dev/shared-types-responses 1.8.11 → 1.8.15
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,4 @@
|
|
|
1
|
-
import { PluralSingular, Language, Month, LND, QueryResponse } from '../common';
|
|
1
|
+
import { PluralSingular, Language, Month, LND, QueryResponse, Weekday } from '../common';
|
|
2
2
|
import { PhrasedEventType, EventPhrasedTimemode, EventTypes, EventTimeModes } from './events';
|
|
3
3
|
export declare enum EventManagerSortFields {
|
|
4
4
|
LANGUAGE = "lang",
|
|
@@ -12,7 +12,6 @@ export interface EventManagerPhrases {
|
|
|
12
12
|
search_events: string;
|
|
13
13
|
host_an_event: string;
|
|
14
14
|
filter_events: string;
|
|
15
|
-
sessions: LND;
|
|
16
15
|
filter: {
|
|
17
16
|
label: string;
|
|
18
17
|
clear_all: string;
|
|
@@ -56,6 +55,7 @@ export interface EventManagerPhrases {
|
|
|
56
55
|
languages: Language[];
|
|
57
56
|
event_types: PhrasedEventType[];
|
|
58
57
|
months: Month[];
|
|
58
|
+
days: Weekday[];
|
|
59
59
|
cancel: string;
|
|
60
60
|
done: string;
|
|
61
61
|
edit: string;
|
|
@@ -82,6 +82,7 @@ export interface EventManagerPhrases {
|
|
|
82
82
|
event_managing: {
|
|
83
83
|
label: string;
|
|
84
84
|
suspend: string;
|
|
85
|
+
unsuspend: string;
|
|
85
86
|
delete: string;
|
|
86
87
|
};
|
|
87
88
|
search: string;
|
|
@@ -99,6 +100,8 @@ export interface EventInManager {
|
|
|
99
100
|
event_last_modified: string;
|
|
100
101
|
event_next_session: string;
|
|
101
102
|
event_passed_sessions?: number;
|
|
103
|
+
event_suspended: boolean;
|
|
104
|
+
event_can_be_deleted: boolean;
|
|
102
105
|
}
|
|
103
106
|
export interface EventManagerData {
|
|
104
107
|
events: EventInManager[];
|