@jealous-robot-dev/shared-types-responses 1.23.11 → 1.23.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.
- package/build/services/events/host-an-event.d.ts +2 -25
- 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 +12 -21
- 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,31 +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
|
-
pick_start_date: string;
|
|
98
|
-
period_is_taken: string;
|
|
99
|
-
delete_day: string;
|
|
100
|
-
add_time: string;
|
|
101
|
-
starts_at: string;
|
|
102
|
-
ends_at: string;
|
|
103
|
-
hours: string;
|
|
104
|
-
minutes: string;
|
|
105
|
-
time_mode: {
|
|
106
|
-
single_session: string;
|
|
107
|
-
multiple_sessions: string;
|
|
108
|
-
};
|
|
109
|
-
repeat_weekly: string;
|
|
110
|
-
reschedule: {
|
|
111
|
-
title: string;
|
|
112
|
-
terms: {
|
|
113
|
-
week: string;
|
|
114
|
-
month: string;
|
|
115
|
-
};
|
|
116
|
-
};
|
|
93
|
+
common: EventHostTimimgCommonPhrases;
|
|
117
94
|
help: HEHelp;
|
|
118
95
|
}
|
|
119
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
|
-
import { HostEventPics, HostEventTime } from './host-an-event';
|
|
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",
|
|
@@ -120,7 +121,7 @@ export declare enum EditableEventTimeFields {
|
|
|
120
121
|
RESCHEDULING = "RESCHEDULING"
|
|
121
122
|
}
|
|
122
123
|
export declare const EETFListed: EditableEventTimeFields[];
|
|
123
|
-
export declare type UpdatableEventValue = string | HostEventPics[] | HostEventPics | number | HostEventTime | string[];
|
|
124
|
+
export declare type UpdatableEventValue = string | HostEventPics[] | HostEventPics | number | HostEventTime | string[] | HostEventFee;
|
|
124
125
|
export interface EventManagerFromsCommonPassword {
|
|
125
126
|
enter_pw: string;
|
|
126
127
|
pw_is_invalid: string;
|
|
@@ -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,27 +163,11 @@ export interface EventManagerFormsName {
|
|
|
156
163
|
input_label: string;
|
|
157
164
|
}
|
|
158
165
|
export interface EventManagerFormsTime {
|
|
159
|
-
|
|
160
|
-
single_session: string;
|
|
161
|
-
multiple_sessions: string;
|
|
162
|
-
select_weekdays: string;
|
|
163
|
-
select_duration: string;
|
|
164
|
-
minutes: string;
|
|
165
|
-
hours: string;
|
|
166
|
+
common: EventHostTimimgCommonPhrases;
|
|
166
167
|
compose_schedule: string;
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
period_is_taken: string;
|
|
168
|
+
restore_previous: string;
|
|
169
|
+
description: string;
|
|
170
170
|
start_from: string;
|
|
171
|
-
repeat_weekly: string;
|
|
172
|
-
pick_a_date: string;
|
|
173
|
-
pick_a_time: string;
|
|
174
|
-
starts_at: string;
|
|
175
|
-
ends_at: string;
|
|
176
|
-
warnings: {
|
|
177
|
-
too_long: string;
|
|
178
|
-
time_is_taken: string;
|
|
179
|
-
};
|
|
180
171
|
}
|
|
181
172
|
export interface EventManagerFormsFee {
|
|
182
173
|
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
|
+
}
|