@jealous-robot-dev/shared-types-responses 1.23.8 → 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.
|
@@ -34,6 +34,9 @@ export interface EventSeance {
|
|
|
34
34
|
sid: string;
|
|
35
35
|
starts_at: string;
|
|
36
36
|
}
|
|
37
|
+
export interface EventScheduleComposerSeance extends EventSeance {
|
|
38
|
+
duration: number;
|
|
39
|
+
}
|
|
37
40
|
export interface EventRaiting {
|
|
38
41
|
event_organizer_raiting: number | null;
|
|
39
42
|
event_raiting: null | number;
|
|
@@ -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;
|
|
@@ -150,13 +157,24 @@ export interface EventManagerFormsName {
|
|
|
150
157
|
}
|
|
151
158
|
export interface EventManagerFormsTime {
|
|
152
159
|
description: string;
|
|
153
|
-
|
|
154
|
-
|
|
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
|
+
};
|
|
155
171
|
select_weekdays: string;
|
|
156
172
|
select_duration: string;
|
|
157
173
|
minutes: string;
|
|
158
174
|
hours: string;
|
|
175
|
+
pick_the_schedule: string;
|
|
159
176
|
compose_schedule: string;
|
|
177
|
+
restore_previous: string;
|
|
160
178
|
delete_day: string;
|
|
161
179
|
add_time: string;
|
|
162
180
|
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
|
+
];
|