@jealous-robot-dev/shared-types-responses 1.23.10 → 1.23.14
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",
|
|
@@ -113,7 +113,14 @@ export declare enum EventManagerAction {
|
|
|
113
113
|
RESUME = "resume"
|
|
114
114
|
}
|
|
115
115
|
export declare const EMAListed: EventManagerAction[];
|
|
116
|
-
export declare
|
|
116
|
+
export declare enum EditableEventTimeFields {
|
|
117
|
+
TIMES = "TIMES",
|
|
118
|
+
WEEKLY = "WEEKLY",
|
|
119
|
+
DURATION = "DURATION",
|
|
120
|
+
RESCHEDULING = "RESCHEDULING"
|
|
121
|
+
}
|
|
122
|
+
export declare const EETFListed: EditableEventTimeFields[];
|
|
123
|
+
export declare type UpdatableEventValue = string | HostEventPics[] | HostEventPics | number | HostEventTime | string[] | HostEventFee;
|
|
117
124
|
export interface EventManagerFromsCommonPassword {
|
|
118
125
|
enter_pw: string;
|
|
119
126
|
pw_is_invalid: string;
|
|
@@ -128,6 +135,12 @@ export interface EventManagerFormsUnsuspend {
|
|
|
128
135
|
}
|
|
129
136
|
export interface EventManagerFormsSuspend {
|
|
130
137
|
description: string;
|
|
138
|
+
notice_on_events: {
|
|
139
|
+
title: string;
|
|
140
|
+
description: string;
|
|
141
|
+
seances_to_host: string;
|
|
142
|
+
seances_to_cancel: string;
|
|
143
|
+
};
|
|
131
144
|
note: string;
|
|
132
145
|
}
|
|
133
146
|
export interface EventManagerFromsVideo {
|
|
@@ -150,13 +163,24 @@ export interface EventManagerFormsName {
|
|
|
150
163
|
}
|
|
151
164
|
export interface EventManagerFormsTime {
|
|
152
165
|
description: string;
|
|
153
|
-
|
|
154
|
-
|
|
166
|
+
time_mode: {
|
|
167
|
+
single_session: string;
|
|
168
|
+
multiple_sessions: string;
|
|
169
|
+
};
|
|
170
|
+
reschedule: {
|
|
171
|
+
title: string;
|
|
172
|
+
terms: {
|
|
173
|
+
week: string;
|
|
174
|
+
month: string;
|
|
175
|
+
};
|
|
176
|
+
};
|
|
155
177
|
select_weekdays: string;
|
|
156
178
|
select_duration: string;
|
|
157
179
|
minutes: string;
|
|
158
180
|
hours: string;
|
|
181
|
+
pick_the_schedule: string;
|
|
159
182
|
compose_schedule: string;
|
|
183
|
+
restore_previous: string;
|
|
160
184
|
delete_day: string;
|
|
161
185
|
add_time: string;
|
|
162
186
|
period_is_taken: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.EMAListed = exports.EventManagerAction = exports.EQFListed = exports.EventQueryableFields = exports.EEFListed = exports.EventEditableFields = exports.EventManagerSortFields = void 0;
|
|
3
|
+
exports.EETFListed = exports.EditableEventTimeFields = exports.EMAListed = exports.EventManagerAction = exports.EQFListed = exports.EventQueryableFields = exports.EEFListed = exports.EventEditableFields = exports.EventManagerSortFields = void 0;
|
|
4
4
|
var EventManagerSortFields;
|
|
5
5
|
(function (EventManagerSortFields) {
|
|
6
6
|
EventManagerSortFields["LANGUAGE"] = "lang";
|
|
@@ -49,3 +49,14 @@ exports.EMAListed = [
|
|
|
49
49
|
EventManagerAction.DELETION, EventManagerAction.RESUME,
|
|
50
50
|
EventManagerAction.SUSPENSION
|
|
51
51
|
];
|
|
52
|
+
var EditableEventTimeFields;
|
|
53
|
+
(function (EditableEventTimeFields) {
|
|
54
|
+
EditableEventTimeFields["TIMES"] = "TIMES";
|
|
55
|
+
EditableEventTimeFields["WEEKLY"] = "WEEKLY";
|
|
56
|
+
EditableEventTimeFields["DURATION"] = "DURATION";
|
|
57
|
+
EditableEventTimeFields["RESCHEDULING"] = "RESCHEDULING";
|
|
58
|
+
})(EditableEventTimeFields = exports.EditableEventTimeFields || (exports.EditableEventTimeFields = {}));
|
|
59
|
+
exports.EETFListed = [
|
|
60
|
+
EditableEventTimeFields.RESCHEDULING, EditableEventTimeFields.TIMES,
|
|
61
|
+
EditableEventTimeFields.DURATION, EditableEventTimeFields.WEEKLY
|
|
62
|
+
];
|