@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.
@@ -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",
@@ -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
- single_session: string;
161
- multiple_sessions: string;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.23.11",
3
+ "version": "1.23.12",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",