@jealous-robot-dev/shared-types-responses 1.23.12 → 1.23.16
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 +10 -29
- 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",
|
|
@@ -135,6 +136,12 @@ export interface EventManagerFormsUnsuspend {
|
|
|
135
136
|
}
|
|
136
137
|
export interface EventManagerFormsSuspend {
|
|
137
138
|
description: string;
|
|
139
|
+
notice_on_events: {
|
|
140
|
+
title: string;
|
|
141
|
+
description: string;
|
|
142
|
+
seances_to_host: string;
|
|
143
|
+
seances_to_cancel: string;
|
|
144
|
+
};
|
|
138
145
|
note: string;
|
|
139
146
|
}
|
|
140
147
|
export interface EventManagerFromsVideo {
|
|
@@ -156,38 +163,12 @@ export interface EventManagerFormsName {
|
|
|
156
163
|
input_label: string;
|
|
157
164
|
}
|
|
158
165
|
export interface EventManagerFormsTime {
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
single_session: string;
|
|
162
|
-
multiple_sessions: string;
|
|
163
|
-
};
|
|
164
|
-
reschedule: {
|
|
165
|
-
title: string;
|
|
166
|
-
terms: {
|
|
167
|
-
week: string;
|
|
168
|
-
month: string;
|
|
169
|
-
};
|
|
170
|
-
};
|
|
171
|
-
select_weekdays: string;
|
|
172
|
-
select_duration: string;
|
|
173
|
-
minutes: string;
|
|
174
|
-
hours: string;
|
|
175
|
-
pick_the_schedule: string;
|
|
166
|
+
common: EventHostTimimgCommonPhrases;
|
|
167
|
+
when_can_be_applied: string;
|
|
176
168
|
compose_schedule: string;
|
|
177
169
|
restore_previous: string;
|
|
178
|
-
|
|
179
|
-
add_time: string;
|
|
180
|
-
period_is_taken: string;
|
|
170
|
+
description: string;
|
|
181
171
|
start_from: string;
|
|
182
|
-
repeat_weekly: string;
|
|
183
|
-
pick_a_date: string;
|
|
184
|
-
pick_a_time: string;
|
|
185
|
-
starts_at: string;
|
|
186
|
-
ends_at: string;
|
|
187
|
-
warnings: {
|
|
188
|
-
too_long: string;
|
|
189
|
-
time_is_taken: string;
|
|
190
|
-
};
|
|
191
172
|
}
|
|
192
173
|
export interface EventManagerFormsFee {
|
|
193
174
|
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
|
+
}
|