@jealous-robot-dev/shared-types-responses 1.23.9 → 1.23.13

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,7 +34,7 @@ export interface EventSeance {
34
34
  sid: string;
35
35
  starts_at: string;
36
36
  }
37
- export interface EventScheduleComposerCeance extends EventSeance {
37
+ export interface EventScheduleComposerSeance extends EventSeance {
38
38
  duration: number;
39
39
  }
40
40
  export interface EventRaiting {
@@ -94,6 +94,7 @@ export interface HETimePhrases {
94
94
  pick_weekdays: string;
95
95
  enter_duration: string;
96
96
  pick_the_schedule: string;
97
+ session_too_long: string;
97
98
  pick_start_date: string;
98
99
  period_is_taken: string;
99
100
  delete_day: string;
@@ -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 type UpdatableEventValue = string | HostEventPics[] | HostEventPics | number | HostEventTime | string[];
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,11 @@ 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
+ };
131
143
  note: string;
132
144
  }
133
145
  export interface EventManagerFromsVideo {
@@ -150,13 +162,24 @@ export interface EventManagerFormsName {
150
162
  }
151
163
  export interface EventManagerFormsTime {
152
164
  description: string;
153
- single_session: string;
154
- multiple_sessions: string;
165
+ time_mode: {
166
+ single_session: string;
167
+ multiple_sessions: string;
168
+ };
169
+ reschedule: {
170
+ title: string;
171
+ terms: {
172
+ week: string;
173
+ month: string;
174
+ };
175
+ };
155
176
  select_weekdays: string;
156
177
  select_duration: string;
157
178
  minutes: string;
158
179
  hours: string;
180
+ pick_the_schedule: string;
159
181
  compose_schedule: string;
182
+ restore_previous: string;
160
183
  delete_day: string;
161
184
  add_time: string;
162
185
  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
+ ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.23.9",
3
+ "version": "1.23.13",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",