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

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,7 @@
1
1
  import { Language } from "../common";
2
2
  import { SharerProps } from "../forms";
3
3
  import { EventTypes, FormEventFields, PhrasesExplainedEventType } from "./events";
4
+ import { EventHostTimimgCommonPhrases } from "./timing";
4
5
  export declare enum EventReschedulingPeriod {
5
6
  WEEK = "week",
6
7
  MONTH = "month"
@@ -89,32 +90,7 @@ export interface HELangPhrases {
89
90
  export interface HETimePhrases {
90
91
  page_title: string;
91
92
  question: string;
92
- pick_a_date: string;
93
- pick_a_time: string;
94
- pick_weekdays: string;
95
- enter_duration: string;
96
- pick_the_schedule: string;
97
- session_too_long: string;
98
- pick_start_date: string;
99
- period_is_taken: string;
100
- delete_day: string;
101
- add_time: string;
102
- starts_at: string;
103
- ends_at: string;
104
- hours: string;
105
- minutes: string;
106
- time_mode: {
107
- single_session: string;
108
- multiple_sessions: string;
109
- };
110
- repeat_weekly: string;
111
- reschedule: {
112
- title: string;
113
- terms: {
114
- week: string;
115
- month: string;
116
- };
117
- };
93
+ common: EventHostTimimgCommonPhrases;
118
94
  help: HEHelp;
119
95
  }
120
96
  export interface HECapacityPhrases {
@@ -1,3 +1,4 @@
1
+ export * from './timing';
1
2
  export * from './events';
2
3
  export * from './event';
3
4
  export * from './host';
@@ -10,6 +10,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
10
  for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p);
11
11
  };
12
12
  Object.defineProperty(exports, "__esModule", { value: true });
13
+ __exportStar(require("./timing"), exports);
13
14
  __exportStar(require("./events"), exports);
14
15
  __exportStar(require("./event"), exports);
15
16
  __exportStar(require("./host"), exports);
@@ -1,6 +1,7 @@
1
1
  import { Language, QueryResponse } from '../common';
2
2
  import { PhrasedEventType, EventPhrasedTimemode, EventTypes, EventTimeModes } from './events';
3
3
  import { HostEventFee, HostEventPics, HostEventTime } from './host-an-event';
4
+ import { EventHostTimimgCommonPhrases } from './timing';
4
5
  export declare enum EventManagerSortFields {
5
6
  LANGUAGE = "lang",
6
7
  TYPE = "type",
@@ -70,7 +71,12 @@ export interface EventManagerPhrases {
70
71
  name: string;
71
72
  description: string;
72
73
  capacity: string;
73
- time: string;
74
+ };
75
+ event_time: {
76
+ rescheduling: string;
77
+ duration: string;
78
+ schedule: string;
79
+ weekly: string;
74
80
  };
75
81
  event_additional_data: {
76
82
  label: string;
@@ -139,6 +145,7 @@ export interface EventManagerFormsSuspend {
139
145
  title: string;
140
146
  description: string;
141
147
  seances_to_host: string;
148
+ seances_to_cancel: string;
142
149
  };
143
150
  note: string;
144
151
  }
@@ -161,38 +168,12 @@ export interface EventManagerFormsName {
161
168
  input_label: string;
162
169
  }
163
170
  export interface EventManagerFormsTime {
164
- description: 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
- };
176
- select_weekdays: string;
177
- select_duration: string;
178
- minutes: string;
179
- hours: string;
180
- pick_the_schedule: string;
171
+ common: EventHostTimimgCommonPhrases;
172
+ when_can_be_applied: string;
181
173
  compose_schedule: string;
182
174
  restore_previous: string;
183
- delete_day: string;
184
- add_time: string;
185
- period_is_taken: string;
175
+ description: string;
186
176
  start_from: string;
187
- repeat_weekly: string;
188
- pick_a_date: string;
189
- pick_a_time: string;
190
- starts_at: string;
191
- ends_at: string;
192
- warnings: {
193
- too_long: string;
194
- time_is_taken: string;
195
- };
196
177
  }
197
178
  export interface EventManagerFormsFee {
198
179
  warning: string;
@@ -0,0 +1,30 @@
1
+ export interface EventHostTimimgCommonPhrases {
2
+ pick_the_schedule: string;
3
+ pick_start_date: string;
4
+ enter_duration: string;
5
+ pick_weekdays: string;
6
+ repeat_weekly: string;
7
+ pick_a_time: string;
8
+ pick_a_date: string;
9
+ delete_day: string;
10
+ starts_at: string;
11
+ add_time: string;
12
+ ends_at: string;
13
+ minutes: string;
14
+ hours: string;
15
+ warnings: {
16
+ period_is_taken: string;
17
+ too_long: string;
18
+ };
19
+ reschedule: {
20
+ title: string;
21
+ terms: {
22
+ week: string;
23
+ month: string;
24
+ };
25
+ };
26
+ time_mode: {
27
+ single_session: string;
28
+ multiple_sessions: string;
29
+ };
30
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.23.13",
3
+ "version": "1.23.17",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",