@jealous-robot-dev/shared-types-responses 1.23.11 → 1.23.12
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.
|
@@ -1,6 +1,6 @@
|
|
|
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
4
|
export declare enum EventManagerSortFields {
|
|
5
5
|
LANGUAGE = "lang",
|
|
6
6
|
TYPE = "type",
|
|
@@ -120,7 +120,7 @@ export declare enum EditableEventTimeFields {
|
|
|
120
120
|
RESCHEDULING = "RESCHEDULING"
|
|
121
121
|
}
|
|
122
122
|
export declare const EETFListed: EditableEventTimeFields[];
|
|
123
|
-
export declare type UpdatableEventValue = string | HostEventPics[] | HostEventPics | number | HostEventTime | string[];
|
|
123
|
+
export declare type UpdatableEventValue = string | HostEventPics[] | HostEventPics | number | HostEventTime | string[] | HostEventFee;
|
|
124
124
|
export interface EventManagerFromsCommonPassword {
|
|
125
125
|
enter_pw: string;
|
|
126
126
|
pw_is_invalid: string;
|
|
@@ -157,13 +157,24 @@ export interface EventManagerFormsName {
|
|
|
157
157
|
}
|
|
158
158
|
export interface EventManagerFormsTime {
|
|
159
159
|
description: string;
|
|
160
|
-
|
|
161
|
-
|
|
160
|
+
time_mode: {
|
|
161
|
+
single_session: string;
|
|
162
|
+
multiple_sessions: string;
|
|
163
|
+
};
|
|
164
|
+
reschedule: {
|
|
165
|
+
title: string;
|
|
166
|
+
terms: {
|
|
167
|
+
week: string;
|
|
168
|
+
month: string;
|
|
169
|
+
};
|
|
170
|
+
};
|
|
162
171
|
select_weekdays: string;
|
|
163
172
|
select_duration: string;
|
|
164
173
|
minutes: string;
|
|
165
174
|
hours: string;
|
|
175
|
+
pick_the_schedule: string;
|
|
166
176
|
compose_schedule: string;
|
|
177
|
+
restore_previous: string;
|
|
167
178
|
delete_day: string;
|
|
168
179
|
add_time: string;
|
|
169
180
|
period_is_taken: string;
|