@jealous-robot-dev/shared-types-responses 1.23.14 → 1.23.18
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/host-an-event.d.ts +2 -26
- package/build/services/events/index.d.ts +1 -0
- package/build/services/events/index.js +1 -0
- package/build/services/events/manage-events.d.ts +11 -30
- package/build/services/events/timing.d.ts +30 -0
- package/build/services/events/timing.js +2 -0
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Language } from "../common";
|
|
2
2
|
import { SharerProps } from "../forms";
|
|
3
3
|
import { EventTypes, FormEventFields, PhrasesExplainedEventType } from "./events";
|
|
4
|
+
import { EventHostTimimgCommonPhrases } from "./timing";
|
|
4
5
|
export declare enum EventReschedulingPeriod {
|
|
5
6
|
WEEK = "week",
|
|
6
7
|
MONTH = "month"
|
|
@@ -89,32 +90,7 @@ export interface HELangPhrases {
|
|
|
89
90
|
export interface HETimePhrases {
|
|
90
91
|
page_title: string;
|
|
91
92
|
question: string;
|
|
92
|
-
|
|
93
|
-
pick_a_time: string;
|
|
94
|
-
pick_weekdays: string;
|
|
95
|
-
enter_duration: string;
|
|
96
|
-
pick_the_schedule: string;
|
|
97
|
-
session_too_long: 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
|
-
};
|
|
93
|
+
common: EventHostTimimgCommonPhrases;
|
|
118
94
|
help: HEHelp;
|
|
119
95
|
}
|
|
120
96
|
export interface HECapacityPhrases {
|
|
@@ -10,6 +10,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
10
10
|
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p);
|
|
11
11
|
};
|
|
12
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
+
__exportStar(require("./timing"), exports);
|
|
13
14
|
__exportStar(require("./events"), exports);
|
|
14
15
|
__exportStar(require("./event"), exports);
|
|
15
16
|
__exportStar(require("./host"), exports);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Language, QueryResponse } from '../common';
|
|
2
2
|
import { PhrasedEventType, EventPhrasedTimemode, EventTypes, EventTimeModes } from './events';
|
|
3
3
|
import { HostEventFee, HostEventPics, HostEventTime } from './host-an-event';
|
|
4
|
+
import { EventHostTimimgCommonPhrases } from './timing';
|
|
4
5
|
export declare enum EventManagerSortFields {
|
|
5
6
|
LANGUAGE = "lang",
|
|
6
7
|
TYPE = "type",
|
|
@@ -70,7 +71,13 @@ export interface EventManagerPhrases {
|
|
|
70
71
|
name: string;
|
|
71
72
|
description: string;
|
|
72
73
|
capacity: string;
|
|
73
|
-
|
|
74
|
+
};
|
|
75
|
+
event_time: {
|
|
76
|
+
label: string;
|
|
77
|
+
rescheduling: string;
|
|
78
|
+
duration: string;
|
|
79
|
+
schedule: string;
|
|
80
|
+
weekly: string;
|
|
74
81
|
};
|
|
75
82
|
event_additional_data: {
|
|
76
83
|
label: string;
|
|
@@ -162,38 +169,12 @@ export interface EventManagerFormsName {
|
|
|
162
169
|
input_label: string;
|
|
163
170
|
}
|
|
164
171
|
export interface EventManagerFormsTime {
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
single_session: string;
|
|
168
|
-
multiple_sessions: string;
|
|
169
|
-
};
|
|
170
|
-
reschedule: {
|
|
171
|
-
title: string;
|
|
172
|
-
terms: {
|
|
173
|
-
week: string;
|
|
174
|
-
month: string;
|
|
175
|
-
};
|
|
176
|
-
};
|
|
177
|
-
select_weekdays: string;
|
|
178
|
-
select_duration: string;
|
|
179
|
-
minutes: string;
|
|
180
|
-
hours: string;
|
|
181
|
-
pick_the_schedule: string;
|
|
172
|
+
common: EventHostTimimgCommonPhrases;
|
|
173
|
+
when_can_be_applied: string;
|
|
182
174
|
compose_schedule: string;
|
|
183
175
|
restore_previous: string;
|
|
184
|
-
|
|
185
|
-
add_time: string;
|
|
186
|
-
period_is_taken: string;
|
|
176
|
+
description: string;
|
|
187
177
|
start_from: string;
|
|
188
|
-
repeat_weekly: string;
|
|
189
|
-
pick_a_date: string;
|
|
190
|
-
pick_a_time: string;
|
|
191
|
-
starts_at: string;
|
|
192
|
-
ends_at: string;
|
|
193
|
-
warnings: {
|
|
194
|
-
too_long: string;
|
|
195
|
-
time_is_taken: string;
|
|
196
|
-
};
|
|
197
178
|
}
|
|
198
179
|
export interface EventManagerFormsFee {
|
|
199
180
|
warning: string;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export interface EventHostTimimgCommonPhrases {
|
|
2
|
+
pick_the_schedule: string;
|
|
3
|
+
pick_start_date: string;
|
|
4
|
+
enter_duration: string;
|
|
5
|
+
pick_weekdays: string;
|
|
6
|
+
repeat_weekly: string;
|
|
7
|
+
pick_a_time: string;
|
|
8
|
+
pick_a_date: string;
|
|
9
|
+
delete_day: string;
|
|
10
|
+
starts_at: string;
|
|
11
|
+
add_time: string;
|
|
12
|
+
ends_at: string;
|
|
13
|
+
minutes: string;
|
|
14
|
+
hours: string;
|
|
15
|
+
warnings: {
|
|
16
|
+
period_is_taken: string;
|
|
17
|
+
too_long: string;
|
|
18
|
+
};
|
|
19
|
+
reschedule: {
|
|
20
|
+
title: string;
|
|
21
|
+
terms: {
|
|
22
|
+
week: string;
|
|
23
|
+
month: string;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
time_mode: {
|
|
27
|
+
single_session: string;
|
|
28
|
+
multiple_sessions: string;
|
|
29
|
+
};
|
|
30
|
+
}
|