@jealous-robot-dev/shared-types-responses 1.23.18 → 1.24.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.
|
@@ -9,7 +9,8 @@ export declare enum Cookies {
|
|
|
9
9
|
UITHEME = "uitheme",
|
|
10
10
|
NEW_MEMBER = "_nm",
|
|
11
11
|
AUTH_CTX = "a_ctx",
|
|
12
|
-
IMPRESSION_ID = "impression_id"
|
|
12
|
+
IMPRESSION_ID = "impression_id",
|
|
13
|
+
EVENT_VIEW = "_evp"
|
|
13
14
|
}
|
|
14
15
|
export declare const ListedCookes: Cookies[];
|
|
15
16
|
export declare enum PermissionCookies {
|
|
@@ -14,12 +14,13 @@ var Cookies;
|
|
|
14
14
|
Cookies["NEW_MEMBER"] = "_nm";
|
|
15
15
|
Cookies["AUTH_CTX"] = "a_ctx";
|
|
16
16
|
Cookies["IMPRESSION_ID"] = "impression_id";
|
|
17
|
+
Cookies["EVENT_VIEW"] = "_evp";
|
|
17
18
|
})(Cookies = exports.Cookies || (exports.Cookies = {}));
|
|
18
19
|
exports.ListedCookes = [
|
|
19
20
|
Cookies.AUTH_CTX, Cookies.CONSENT, Cookies.CSFR_TOKEN,
|
|
20
21
|
Cookies.CURRENCY, Cookies.DEVICE_ID, Cookies.LOCALE_ID,
|
|
21
|
-
Cookies.
|
|
22
|
-
Cookies.
|
|
22
|
+
Cookies.UITHEME, Cookies.IMPRESSION_ID, Cookies.EVENT_VIEW,
|
|
23
|
+
Cookies.NEW_MEMBER, Cookies.REMEMBERED_USER, Cookies.SESSION_PASS
|
|
23
24
|
];
|
|
24
25
|
var PermissionCookies;
|
|
25
26
|
(function (PermissionCookies) {
|
|
@@ -97,13 +97,12 @@ export interface EventCommonData {
|
|
|
97
97
|
event_organizer: UserInEvent;
|
|
98
98
|
}
|
|
99
99
|
export interface ConciseEventData {
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
event_organizer?: string;
|
|
100
|
+
picture: string;
|
|
101
|
+
id: string;
|
|
102
|
+
name: string;
|
|
103
|
+
raiting: number;
|
|
104
|
+
reviews_count: number;
|
|
105
|
+
type: EventTypes;
|
|
107
106
|
}
|
|
108
107
|
export interface PhrasedEventType {
|
|
109
108
|
type: EventTypes;
|
|
@@ -171,10 +171,12 @@ export interface EventManagerFormsName {
|
|
|
171
171
|
export interface EventManagerFormsTime {
|
|
172
172
|
common: EventHostTimimgCommonPhrases;
|
|
173
173
|
when_can_be_applied: string;
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
174
|
+
descriptions: {
|
|
175
|
+
weekly: string;
|
|
176
|
+
schedule: string;
|
|
177
|
+
duration: string;
|
|
178
|
+
rescheduling: string;
|
|
179
|
+
};
|
|
178
180
|
}
|
|
179
181
|
export interface EventManagerFormsFee {
|
|
180
182
|
warning: string;
|
|
@@ -216,6 +218,7 @@ export interface EventInManager {
|
|
|
216
218
|
next_session: string | null;
|
|
217
219
|
passed_sessions: number;
|
|
218
220
|
suspended: boolean;
|
|
221
|
+
weekly: boolean;
|
|
219
222
|
can_be_deleted: boolean;
|
|
220
223
|
}
|
|
221
224
|
export interface EventManagerData {
|