@jealous-robot-dev/shared-types-responses 1.7.38 → 1.8.1

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.
@@ -44,6 +44,7 @@ export interface OneDayMiniSchedule {
44
44
  export interface MultipleSessionEventTime {
45
45
  weekly: boolean;
46
46
  duration: number;
47
+ start_from: string;
47
48
  days: OneDayMiniSchedule[];
48
49
  }
49
50
  export interface EventTime {
@@ -1,5 +1,13 @@
1
1
  import { PhrasesExplainedEventType, EventTypes, EventTime } from './events';
2
2
  import { Language, Month, QueryResponse, Weekday } from '../common';
3
+ export interface SEFAQ {
4
+ question: string;
5
+ answer: string;
6
+ }
7
+ export interface SEHelp {
8
+ recomendation: string;
9
+ faq: SEFAQ[];
10
+ }
3
11
  export interface SECommonPhrases {
4
12
  labels: {
5
13
  exit: string;
@@ -34,9 +42,7 @@ export interface SENamePhrases {
34
42
  invalid: string;
35
43
  };
36
44
  };
37
- help: {
38
- recomendation: string;
39
- };
45
+ help: SEHelp;
40
46
  }
41
47
  export interface SEDescriptionPhrases {
42
48
  page_title: string;
@@ -47,15 +53,7 @@ export interface SEDescriptionPhrases {
47
53
  enter: string;
48
54
  };
49
55
  };
50
- help: {
51
- recomendation: string;
52
- faq: {
53
- why_is_important: {
54
- question: string;
55
- answer: string;
56
- };
57
- };
58
- };
56
+ help: SEHelp;
59
57
  }
60
58
  export interface SELangPhrases {
61
59
  page_title: string;
@@ -71,6 +69,8 @@ export interface SETimePhrases {
71
69
  enter_duration: string;
72
70
  pick_the_schedule: string;
73
71
  pick_start_date: string;
72
+ period_is_taken: string;
73
+ delete_day: string;
74
74
  add_time: string;
75
75
  starts_at: string;
76
76
  ends_at: string;
@@ -88,9 +88,6 @@ export interface SEDesiredVisitorsPhrases {
88
88
  page_title: string;
89
89
  question: string;
90
90
  visitors: string;
91
- help: {
92
- note_on_lessons: string;
93
- };
94
91
  }
95
92
  export interface SETagsPhrases {
96
93
  page_title: string;
@@ -100,41 +97,21 @@ export interface SETagsPhrases {
100
97
  add: string;
101
98
  };
102
99
  tags: string;
103
- help: {
104
- recomendation: string;
105
- faq: {
106
- why_is_important: {
107
- question: string;
108
- answer: string;
109
- };
110
- };
111
- };
100
+ help: SEHelp;
112
101
  }
113
102
  export interface SEPicturesPhrases {
114
103
  page_title: string;
115
104
  question: string;
116
105
  pick_images: string;
117
106
  images: string;
118
- help: {
119
- description: string;
120
- why_is_important: {
121
- question: string;
122
- answer: string;
123
- };
124
- };
107
+ help: SEHelp;
125
108
  }
126
109
  export interface SEVideoPhrases {
127
110
  page_title: string;
128
111
  question: string;
129
112
  pick_a_video: string;
130
113
  video: string;
131
- help: {
132
- description: string;
133
- why_is_important: {
134
- question: string;
135
- answer: string;
136
- };
137
- };
114
+ help: SEHelp;
138
115
  }
139
116
  export interface SEPricePhrases {
140
117
  page_title: string;
@@ -143,9 +120,7 @@ export interface SEPricePhrases {
143
120
  input: {
144
121
  placeholder: string;
145
122
  };
146
- help: {
147
- recomendation: string;
148
- };
123
+ help: SEHelp;
149
124
  }
150
125
  export interface SESuccessPhrases {
151
126
  page_title: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.7.38",
3
+ "version": "1.8.1",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",