@jealous-robot-dev/shared-types-responses 1.22.6 → 1.22.10
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.
- package/build/services/events/events.d.ts +14 -0
- package/build/services/events/events.js +26 -1
- package/build/services/events/host-an-event.d.ts +206 -12
- package/build/services/events/host-an-event.js +26 -14
- package/build/services/events/index.d.ts +0 -1
- package/build/services/events/index.js +0 -1
- package/package.json +1 -1
- package/build/services/events/schedule-an-event.d.ts +0 -191
- package/build/services/events/schedule-an-event.js +0 -18
|
@@ -1,4 +1,17 @@
|
|
|
1
1
|
import { Currency, Language } from '../common';
|
|
2
|
+
export declare enum FormEventFields {
|
|
3
|
+
PREREQUISITES = "prerequisites",
|
|
4
|
+
DESCRIPTION = "description",
|
|
5
|
+
CAPACITY = "capacity",
|
|
6
|
+
PICTURES = "pictures",
|
|
7
|
+
TAGS = "tags",
|
|
8
|
+
LANG = "lang",
|
|
9
|
+
TYPE = "type",
|
|
10
|
+
TIME = "time",
|
|
11
|
+
NAME = "name",
|
|
12
|
+
FEE = "fee"
|
|
13
|
+
}
|
|
14
|
+
export declare const FEFListed: FormEventFields[];
|
|
2
15
|
export declare enum EventTypes {
|
|
3
16
|
LIVE_TRANSLATION = "LIVE_TRANSLATION",
|
|
4
17
|
LECTURES_WEBINARS = "LECTURES_WEBINARS",
|
|
@@ -12,6 +25,7 @@ export declare enum EventTypes {
|
|
|
12
25
|
DEVELOPERS_AND_TECH = "DEVELOPERS_AND_TECH",
|
|
13
26
|
ENTERTAINMENT = "ENTERTAINMENT"
|
|
14
27
|
}
|
|
28
|
+
export declare const ETListed: EventTypes[];
|
|
15
29
|
export declare enum EventTimeModes {
|
|
16
30
|
SINGLE_SESSION = "single_session",
|
|
17
31
|
MULTI_SESSION = "multi_session"
|
|
@@ -1,6 +1,25 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.EventTimeModes = exports.EventTypes = void 0;
|
|
3
|
+
exports.EventTimeModes = exports.ETListed = exports.EventTypes = exports.FEFListed = exports.FormEventFields = void 0;
|
|
4
|
+
var FormEventFields;
|
|
5
|
+
(function (FormEventFields) {
|
|
6
|
+
FormEventFields["PREREQUISITES"] = "prerequisites";
|
|
7
|
+
FormEventFields["DESCRIPTION"] = "description";
|
|
8
|
+
FormEventFields["CAPACITY"] = "capacity";
|
|
9
|
+
FormEventFields["PICTURES"] = "pictures";
|
|
10
|
+
FormEventFields["TAGS"] = "tags";
|
|
11
|
+
FormEventFields["LANG"] = "lang";
|
|
12
|
+
FormEventFields["TYPE"] = "type";
|
|
13
|
+
FormEventFields["TIME"] = "time";
|
|
14
|
+
FormEventFields["NAME"] = "name";
|
|
15
|
+
FormEventFields["FEE"] = "fee";
|
|
16
|
+
})(FormEventFields = exports.FormEventFields || (exports.FormEventFields = {}));
|
|
17
|
+
exports.FEFListed = [
|
|
18
|
+
FormEventFields.CAPACITY, FormEventFields.DESCRIPTION,
|
|
19
|
+
FormEventFields.FEE, FormEventFields.LANG, FormEventFields.NAME,
|
|
20
|
+
FormEventFields.PICTURES, FormEventFields.PREREQUISITES,
|
|
21
|
+
FormEventFields.TAGS, FormEventFields.TIME, FormEventFields.TYPE
|
|
22
|
+
];
|
|
4
23
|
var EventTypes;
|
|
5
24
|
(function (EventTypes) {
|
|
6
25
|
EventTypes["LIVE_TRANSLATION"] = "LIVE_TRANSLATION";
|
|
@@ -15,6 +34,12 @@ var EventTypes;
|
|
|
15
34
|
EventTypes["DEVELOPERS_AND_TECH"] = "DEVELOPERS_AND_TECH";
|
|
16
35
|
EventTypes["ENTERTAINMENT"] = "ENTERTAINMENT";
|
|
17
36
|
})(EventTypes = exports.EventTypes || (exports.EventTypes = {}));
|
|
37
|
+
exports.ETListed = [
|
|
38
|
+
EventTypes.ART, EventTypes.COOKING_GUIDE, EventTypes.DEVELOPERS_AND_TECH,
|
|
39
|
+
EventTypes.ENTERTAINMENT, EventTypes.LECTURES_WEBINARS, EventTypes.LIVE_TRANSLATION,
|
|
40
|
+
EventTypes.PHYSICAL_ACTIVITY, EventTypes.PRIVATE_CONSULTATION, EventTypes.RELAXATION,
|
|
41
|
+
EventTypes.TEACHING, EventTypes.YOGA
|
|
42
|
+
];
|
|
18
43
|
var EventTimeModes;
|
|
19
44
|
(function (EventTimeModes) {
|
|
20
45
|
EventTimeModes["SINGLE_SESSION"] = "single_session";
|
|
@@ -1,22 +1,14 @@
|
|
|
1
|
+
import { Language } from "../common";
|
|
2
|
+
import { SharerProps } from "../forms";
|
|
3
|
+
import { EventTypes, FormEventFields, PhrasesExplainedEventType } from "./events";
|
|
1
4
|
export declare enum EventReschedulingPeriod {
|
|
2
5
|
WEEK = "week",
|
|
3
6
|
MONTH = "month"
|
|
4
7
|
}
|
|
5
|
-
export declare enum HostEventFields {
|
|
6
|
-
PREREQUISITES = "prerequisites",
|
|
7
|
-
DESCRIPTION = "description",
|
|
8
|
-
CAPACITY = "capacity",
|
|
9
|
-
PICTURES = "pictures",
|
|
10
|
-
TAGS = "tags",
|
|
11
|
-
LANG = "lang",
|
|
12
|
-
TYPE = "type",
|
|
13
|
-
TIME = "time",
|
|
14
|
-
NAME = "name",
|
|
15
|
-
FEE = "fee"
|
|
16
|
-
}
|
|
17
8
|
export interface HostEventTime {
|
|
18
9
|
weekly: boolean;
|
|
19
10
|
rescheduling?: EventReschedulingPeriod;
|
|
11
|
+
startFrom: string;
|
|
20
12
|
times: string[];
|
|
21
13
|
duration: number;
|
|
22
14
|
}
|
|
@@ -28,3 +20,205 @@ export interface HostEventPics {
|
|
|
28
20
|
src: string;
|
|
29
21
|
index: number;
|
|
30
22
|
}
|
|
23
|
+
export interface HEFAQ {
|
|
24
|
+
question: string;
|
|
25
|
+
answer: string;
|
|
26
|
+
}
|
|
27
|
+
export interface HEHelp {
|
|
28
|
+
recomendation: string;
|
|
29
|
+
faq: HEFAQ[];
|
|
30
|
+
}
|
|
31
|
+
export interface HECommonPhrases {
|
|
32
|
+
labels: {
|
|
33
|
+
exit: string;
|
|
34
|
+
help: string;
|
|
35
|
+
back: string;
|
|
36
|
+
next: string;
|
|
37
|
+
skip: string;
|
|
38
|
+
tip: string;
|
|
39
|
+
start: string;
|
|
40
|
+
finish: string;
|
|
41
|
+
preview: string;
|
|
42
|
+
create_new: string;
|
|
43
|
+
wait: string;
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
export interface HEIntroPhrases {
|
|
47
|
+
page_title: string;
|
|
48
|
+
title: string;
|
|
49
|
+
description: string;
|
|
50
|
+
drafts: {
|
|
51
|
+
title: string;
|
|
52
|
+
last_modified: string;
|
|
53
|
+
delete: string;
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
export interface HETypePhrases {
|
|
57
|
+
page_title: string;
|
|
58
|
+
question: string;
|
|
59
|
+
types: PhrasesExplainedEventType[];
|
|
60
|
+
}
|
|
61
|
+
export interface HENamePhrases {
|
|
62
|
+
page_title: string;
|
|
63
|
+
question: string;
|
|
64
|
+
input: {
|
|
65
|
+
placeholder: string;
|
|
66
|
+
warnings: {
|
|
67
|
+
enter: string;
|
|
68
|
+
invalid: string;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
help: HEHelp;
|
|
72
|
+
}
|
|
73
|
+
export interface HEDescriptionPhrases {
|
|
74
|
+
page_title: string;
|
|
75
|
+
question: string;
|
|
76
|
+
review: string;
|
|
77
|
+
input: {
|
|
78
|
+
placeholder: string;
|
|
79
|
+
warnings: {
|
|
80
|
+
enter: string;
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
help: HEHelp;
|
|
84
|
+
}
|
|
85
|
+
export interface HELangPhrases {
|
|
86
|
+
page_title: string;
|
|
87
|
+
question: string;
|
|
88
|
+
languages: Language[];
|
|
89
|
+
}
|
|
90
|
+
export interface HETimePhrases {
|
|
91
|
+
page_title: string;
|
|
92
|
+
question: string;
|
|
93
|
+
pick_a_date: string;
|
|
94
|
+
pick_a_time: string;
|
|
95
|
+
pick_weekdays: string;
|
|
96
|
+
enter_duration: string;
|
|
97
|
+
pick_the_schedule: string;
|
|
98
|
+
pick_start_date: string;
|
|
99
|
+
period_is_taken: string;
|
|
100
|
+
delete_day: string;
|
|
101
|
+
add_time: string;
|
|
102
|
+
starts_at: string;
|
|
103
|
+
ends_at: string;
|
|
104
|
+
hours: string;
|
|
105
|
+
minutes: string;
|
|
106
|
+
time_mode: {
|
|
107
|
+
single_session: string;
|
|
108
|
+
multiple_sessions: string;
|
|
109
|
+
};
|
|
110
|
+
repeat_weekly: string;
|
|
111
|
+
reschedule: {
|
|
112
|
+
title: string;
|
|
113
|
+
terms: {
|
|
114
|
+
week: string;
|
|
115
|
+
month: string;
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
help: HEHelp;
|
|
119
|
+
}
|
|
120
|
+
export interface HECapacityPhrases {
|
|
121
|
+
page_title: string;
|
|
122
|
+
question: string;
|
|
123
|
+
visitors: string;
|
|
124
|
+
}
|
|
125
|
+
export interface HETagsPhrases {
|
|
126
|
+
page_title: string;
|
|
127
|
+
question: string;
|
|
128
|
+
input: {
|
|
129
|
+
placeholder: string;
|
|
130
|
+
add: string;
|
|
131
|
+
};
|
|
132
|
+
tags: string;
|
|
133
|
+
help: HEHelp;
|
|
134
|
+
}
|
|
135
|
+
export interface HEPicturesPhrases {
|
|
136
|
+
page_title: string;
|
|
137
|
+
description: string;
|
|
138
|
+
question: string;
|
|
139
|
+
pick_images: string;
|
|
140
|
+
images: string;
|
|
141
|
+
help: HEHelp;
|
|
142
|
+
}
|
|
143
|
+
export interface HEFeePhrases {
|
|
144
|
+
page_title: string;
|
|
145
|
+
price_limit: {
|
|
146
|
+
min: number;
|
|
147
|
+
max: number;
|
|
148
|
+
};
|
|
149
|
+
question: string;
|
|
150
|
+
input: {
|
|
151
|
+
placeholder: string;
|
|
152
|
+
};
|
|
153
|
+
help: HEHelp;
|
|
154
|
+
}
|
|
155
|
+
export interface HEPrerequisitesPhrases {
|
|
156
|
+
page_title: string;
|
|
157
|
+
question: string;
|
|
158
|
+
descripion: string;
|
|
159
|
+
input: {
|
|
160
|
+
placeholder: string;
|
|
161
|
+
add: string;
|
|
162
|
+
};
|
|
163
|
+
}
|
|
164
|
+
export interface HESuccessPhrases {
|
|
165
|
+
page_title: string;
|
|
166
|
+
title: string;
|
|
167
|
+
description: string;
|
|
168
|
+
view_event: string;
|
|
169
|
+
share: string;
|
|
170
|
+
event_type_duration: string;
|
|
171
|
+
event_langauge: string;
|
|
172
|
+
sharer: SharerProps;
|
|
173
|
+
}
|
|
174
|
+
export interface ShortDraft {
|
|
175
|
+
id: string;
|
|
176
|
+
lm: string;
|
|
177
|
+
}
|
|
178
|
+
export interface HEIntroResponse {
|
|
179
|
+
drafts: ShortDraft;
|
|
180
|
+
}
|
|
181
|
+
export interface HEDraft {
|
|
182
|
+
id: string;
|
|
183
|
+
latest_step: FormEventFields;
|
|
184
|
+
[FormEventFields.NAME]?: string;
|
|
185
|
+
[FormEventFields.DESCRIPTION]?: string;
|
|
186
|
+
[FormEventFields.PICTURES]?: HostEventPics[];
|
|
187
|
+
[FormEventFields.LANG]?: string;
|
|
188
|
+
[FormEventFields.FEE]?: HostEventFee;
|
|
189
|
+
[FormEventFields.TYPE]?: EventTypes;
|
|
190
|
+
[FormEventFields.TIME]?: HostEventTime;
|
|
191
|
+
[FormEventFields.TAGS]?: string[];
|
|
192
|
+
[FormEventFields.PREREQUISITES]?: string[];
|
|
193
|
+
[FormEventFields.CAPACITY]?: number;
|
|
194
|
+
}
|
|
195
|
+
export interface HEPhrases {
|
|
196
|
+
common: HECommonPhrases;
|
|
197
|
+
intro: HEIntroPhrases;
|
|
198
|
+
[FormEventFields.TYPE]: HETypePhrases | null;
|
|
199
|
+
[FormEventFields.NAME]: HENamePhrases | null;
|
|
200
|
+
[FormEventFields.DESCRIPTION]: HEDescriptionPhrases | null;
|
|
201
|
+
[FormEventFields.TIME]: HETimePhrases | null;
|
|
202
|
+
[FormEventFields.LANG]: HELangPhrases | null;
|
|
203
|
+
[FormEventFields.CAPACITY]: HECapacityPhrases | null;
|
|
204
|
+
[FormEventFields.TAGS]: HETagsPhrases | null;
|
|
205
|
+
[FormEventFields.PICTURES]: HEPicturesPhrases | null;
|
|
206
|
+
[FormEventFields.FEE]: HEFeePhrases | null;
|
|
207
|
+
[FormEventFields.PREREQUISITES]: HEPrerequisitesPhrases | null;
|
|
208
|
+
}
|
|
209
|
+
export declare enum HostEventCategories {
|
|
210
|
+
INTRO = "intro",
|
|
211
|
+
TYPE = "type",
|
|
212
|
+
NAME = "name",
|
|
213
|
+
DESCRIPTION = "description",
|
|
214
|
+
TIME = "time",
|
|
215
|
+
LANG = "language",
|
|
216
|
+
CAPACITY = "capacity",
|
|
217
|
+
TAGS = "tags",
|
|
218
|
+
PICS = "pictures",
|
|
219
|
+
VIDEO = "video",
|
|
220
|
+
FEE = "fee",
|
|
221
|
+
PREREQUISITES = "prerequisites",
|
|
222
|
+
SUCCESS = "success"
|
|
223
|
+
}
|
|
224
|
+
export declare const HECListed: HostEventCategories[];
|
|
@@ -1,21 +1,33 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.HECListed = exports.HostEventCategories = exports.EventReschedulingPeriod = void 0;
|
|
4
|
+
var events_1 = require("./events");
|
|
4
5
|
var EventReschedulingPeriod;
|
|
5
6
|
(function (EventReschedulingPeriod) {
|
|
6
7
|
EventReschedulingPeriod["WEEK"] = "week";
|
|
7
8
|
EventReschedulingPeriod["MONTH"] = "month";
|
|
8
9
|
})(EventReschedulingPeriod = exports.EventReschedulingPeriod || (exports.EventReschedulingPeriod = {}));
|
|
9
|
-
var
|
|
10
|
-
(function (
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
10
|
+
var HostEventCategories;
|
|
11
|
+
(function (HostEventCategories) {
|
|
12
|
+
HostEventCategories["INTRO"] = "intro";
|
|
13
|
+
HostEventCategories["TYPE"] = "type";
|
|
14
|
+
HostEventCategories["NAME"] = "name";
|
|
15
|
+
HostEventCategories["DESCRIPTION"] = "description";
|
|
16
|
+
HostEventCategories["TIME"] = "time";
|
|
17
|
+
HostEventCategories["LANG"] = "language";
|
|
18
|
+
HostEventCategories["CAPACITY"] = "capacity";
|
|
19
|
+
HostEventCategories["TAGS"] = "tags";
|
|
20
|
+
HostEventCategories["PICS"] = "pictures";
|
|
21
|
+
HostEventCategories["VIDEO"] = "video";
|
|
22
|
+
HostEventCategories["FEE"] = "fee";
|
|
23
|
+
HostEventCategories["PREREQUISITES"] = "prerequisites";
|
|
24
|
+
HostEventCategories["SUCCESS"] = "success";
|
|
25
|
+
})(HostEventCategories = exports.HostEventCategories || (exports.HostEventCategories = {}));
|
|
26
|
+
exports.HECListed = [
|
|
27
|
+
HostEventCategories.INTRO, HostEventCategories.DESCRIPTION,
|
|
28
|
+
HostEventCategories.LANG, HostEventCategories.NAME,
|
|
29
|
+
HostEventCategories.PICS, HostEventCategories.PREREQUISITES,
|
|
30
|
+
HostEventCategories.FEE, HostEventCategories.SUCCESS,
|
|
31
|
+
HostEventCategories.TAGS, HostEventCategories.TIME,
|
|
32
|
+
HostEventCategories.TYPE, HostEventCategories.CAPACITY,
|
|
33
|
+
];
|
|
@@ -15,7 +15,6 @@ __exportStar(require("./event"), exports);
|
|
|
15
15
|
__exportStar(require("./host"), exports);
|
|
16
16
|
__exportStar(require("./reviews"), exports);
|
|
17
17
|
__exportStar(require("./visitor-event-page"), exports);
|
|
18
|
-
__exportStar(require("./schedule-an-event"), exports);
|
|
19
18
|
__exportStar(require("./manage-events"), exports);
|
|
20
19
|
__exportStar(require("./event-search"), exports);
|
|
21
20
|
__exportStar(require("./host-an-event"), exports);
|
package/package.json
CHANGED
|
@@ -1,191 +0,0 @@
|
|
|
1
|
-
import { PhrasesExplainedEventType, EventTypes, EventTime } from './events';
|
|
2
|
-
import { Language, QueryResponse } from '../common';
|
|
3
|
-
import { SharerProps } from '../forms';
|
|
4
|
-
export interface SEFAQ {
|
|
5
|
-
question: string;
|
|
6
|
-
answer: string;
|
|
7
|
-
}
|
|
8
|
-
export interface SEHelp {
|
|
9
|
-
recomendation: string;
|
|
10
|
-
faq: SEFAQ[];
|
|
11
|
-
}
|
|
12
|
-
export interface SECommonPhrases {
|
|
13
|
-
labels: {
|
|
14
|
-
exit: string;
|
|
15
|
-
help: string;
|
|
16
|
-
back: string;
|
|
17
|
-
next: string;
|
|
18
|
-
skip: string;
|
|
19
|
-
tip: string;
|
|
20
|
-
start: string;
|
|
21
|
-
finish: string;
|
|
22
|
-
wait: string;
|
|
23
|
-
};
|
|
24
|
-
}
|
|
25
|
-
export interface SEIntroPhrases {
|
|
26
|
-
page_title: string;
|
|
27
|
-
title: string;
|
|
28
|
-
description: string;
|
|
29
|
-
}
|
|
30
|
-
export interface SETypePhrases {
|
|
31
|
-
page_title: string;
|
|
32
|
-
question: string;
|
|
33
|
-
types: PhrasesExplainedEventType[];
|
|
34
|
-
}
|
|
35
|
-
export interface SENamePhrases {
|
|
36
|
-
page_title: string;
|
|
37
|
-
question: string;
|
|
38
|
-
input: {
|
|
39
|
-
placeholder: string;
|
|
40
|
-
warnings: {
|
|
41
|
-
enter: string;
|
|
42
|
-
invalid: string;
|
|
43
|
-
};
|
|
44
|
-
};
|
|
45
|
-
help: SEHelp;
|
|
46
|
-
}
|
|
47
|
-
export interface SEDescriptionPhrases {
|
|
48
|
-
page_title: string;
|
|
49
|
-
question: string;
|
|
50
|
-
review: string;
|
|
51
|
-
input: {
|
|
52
|
-
placeholder: string;
|
|
53
|
-
warnings: {
|
|
54
|
-
enter: string;
|
|
55
|
-
};
|
|
56
|
-
};
|
|
57
|
-
help: SEHelp;
|
|
58
|
-
}
|
|
59
|
-
export interface SELangPhrases {
|
|
60
|
-
page_title: string;
|
|
61
|
-
question: string;
|
|
62
|
-
languages: Language[];
|
|
63
|
-
}
|
|
64
|
-
export interface SETimePhrases {
|
|
65
|
-
page_title: string;
|
|
66
|
-
question: string;
|
|
67
|
-
pick_a_date: string;
|
|
68
|
-
pick_a_time: string;
|
|
69
|
-
pick_weekdays: string;
|
|
70
|
-
enter_duration: string;
|
|
71
|
-
pick_the_schedule: string;
|
|
72
|
-
pick_start_date: string;
|
|
73
|
-
period_is_taken: string;
|
|
74
|
-
delete_day: string;
|
|
75
|
-
add_time: string;
|
|
76
|
-
starts_at: string;
|
|
77
|
-
ends_at: string;
|
|
78
|
-
hours: string;
|
|
79
|
-
minutes: string;
|
|
80
|
-
time_mode: {
|
|
81
|
-
single_session: string;
|
|
82
|
-
multiple_sessions: string;
|
|
83
|
-
};
|
|
84
|
-
repeat_weekly: string;
|
|
85
|
-
}
|
|
86
|
-
export interface SEDesiredVisitorsPhrases {
|
|
87
|
-
page_title: string;
|
|
88
|
-
question: string;
|
|
89
|
-
visitors: string;
|
|
90
|
-
}
|
|
91
|
-
export interface SETagsPhrases {
|
|
92
|
-
page_title: string;
|
|
93
|
-
question: string;
|
|
94
|
-
input: {
|
|
95
|
-
placeholder: string;
|
|
96
|
-
add: string;
|
|
97
|
-
};
|
|
98
|
-
tags: string;
|
|
99
|
-
help: SEHelp;
|
|
100
|
-
}
|
|
101
|
-
export interface SEPicturesPhrases {
|
|
102
|
-
page_title: string;
|
|
103
|
-
preview: string;
|
|
104
|
-
description: string;
|
|
105
|
-
question: string;
|
|
106
|
-
pick_images: string;
|
|
107
|
-
images: string;
|
|
108
|
-
help: SEHelp;
|
|
109
|
-
}
|
|
110
|
-
export interface SEVideoPhrases {
|
|
111
|
-
page_title: string;
|
|
112
|
-
question: string;
|
|
113
|
-
pick_a_video: string;
|
|
114
|
-
video: string;
|
|
115
|
-
help: SEHelp;
|
|
116
|
-
}
|
|
117
|
-
export interface SEPricePhrases {
|
|
118
|
-
page_title: string;
|
|
119
|
-
price_limit: {
|
|
120
|
-
min: number;
|
|
121
|
-
max: number;
|
|
122
|
-
};
|
|
123
|
-
question: string;
|
|
124
|
-
input: {
|
|
125
|
-
placeholder: string;
|
|
126
|
-
};
|
|
127
|
-
help: SEHelp;
|
|
128
|
-
}
|
|
129
|
-
export interface SESuccessPhrases {
|
|
130
|
-
page_title: string;
|
|
131
|
-
title: string;
|
|
132
|
-
description: string;
|
|
133
|
-
view_event: string;
|
|
134
|
-
share: string;
|
|
135
|
-
event_type_duration: string;
|
|
136
|
-
event_langauge: string;
|
|
137
|
-
sharer: SharerProps;
|
|
138
|
-
}
|
|
139
|
-
export interface SEData {
|
|
140
|
-
event_id: string | null;
|
|
141
|
-
event_type: EventTypes | null;
|
|
142
|
-
event_name: string | null;
|
|
143
|
-
event_description: string | null;
|
|
144
|
-
event_language: string | null;
|
|
145
|
-
event_time: EventTime | null;
|
|
146
|
-
event_visitors_count: number | null;
|
|
147
|
-
event_tags: string[] | null;
|
|
148
|
-
event_pictures: string[] | null;
|
|
149
|
-
event_video: string | null;
|
|
150
|
-
event_price: number | null;
|
|
151
|
-
}
|
|
152
|
-
export interface HostedEventData {
|
|
153
|
-
event_id: string;
|
|
154
|
-
event_name: string;
|
|
155
|
-
event_pic: string;
|
|
156
|
-
event_type: EventTypes;
|
|
157
|
-
event_duration: number;
|
|
158
|
-
event_language: string;
|
|
159
|
-
event_fee: number;
|
|
160
|
-
}
|
|
161
|
-
export interface SEPhrases {
|
|
162
|
-
common: SECommonPhrases;
|
|
163
|
-
intro: SEIntroPhrases;
|
|
164
|
-
type: SETypePhrases | null;
|
|
165
|
-
name: SENamePhrases | null;
|
|
166
|
-
description: SEDescriptionPhrases | null;
|
|
167
|
-
time: SETimePhrases | null;
|
|
168
|
-
lang: SELangPhrases | null;
|
|
169
|
-
visitors: SEDesiredVisitorsPhrases | null;
|
|
170
|
-
tags: SETagsPhrases | null;
|
|
171
|
-
pics: SEPicturesPhrases | null;
|
|
172
|
-
video: SEVideoPhrases | null;
|
|
173
|
-
price: SEPricePhrases | null;
|
|
174
|
-
success: SESuccessPhrases | null;
|
|
175
|
-
}
|
|
176
|
-
export declare enum ScheduleAnEventCategories {
|
|
177
|
-
INTRO = "intro",
|
|
178
|
-
TYPE = "type",
|
|
179
|
-
NAME = "name",
|
|
180
|
-
DESCRIPTION = "description",
|
|
181
|
-
TIME = "time",
|
|
182
|
-
LANG = "language",
|
|
183
|
-
VISITORS = "desired-visitors-count",
|
|
184
|
-
TAGS = "tags",
|
|
185
|
-
PICS = "pictures",
|
|
186
|
-
VIDEO = "video",
|
|
187
|
-
PRICE = "price",
|
|
188
|
-
SUCCESS = "success"
|
|
189
|
-
}
|
|
190
|
-
export interface ScheduleAnEventResponse extends QueryResponse<SEData, SEPhrases> {
|
|
191
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ScheduleAnEventCategories = void 0;
|
|
4
|
-
var ScheduleAnEventCategories;
|
|
5
|
-
(function (ScheduleAnEventCategories) {
|
|
6
|
-
ScheduleAnEventCategories["INTRO"] = "intro";
|
|
7
|
-
ScheduleAnEventCategories["TYPE"] = "type";
|
|
8
|
-
ScheduleAnEventCategories["NAME"] = "name";
|
|
9
|
-
ScheduleAnEventCategories["DESCRIPTION"] = "description";
|
|
10
|
-
ScheduleAnEventCategories["TIME"] = "time";
|
|
11
|
-
ScheduleAnEventCategories["LANG"] = "language";
|
|
12
|
-
ScheduleAnEventCategories["VISITORS"] = "desired-visitors-count";
|
|
13
|
-
ScheduleAnEventCategories["TAGS"] = "tags";
|
|
14
|
-
ScheduleAnEventCategories["PICS"] = "pictures";
|
|
15
|
-
ScheduleAnEventCategories["VIDEO"] = "video";
|
|
16
|
-
ScheduleAnEventCategories["PRICE"] = "price";
|
|
17
|
-
ScheduleAnEventCategories["SUCCESS"] = "success";
|
|
18
|
-
})(ScheduleAnEventCategories = exports.ScheduleAnEventCategories || (exports.ScheduleAnEventCategories = {}));
|