@jealous-robot-dev/shared-types-responses 1.8.22 → 1.8.26

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,4 +1,4 @@
1
- import { PhrasedEventType } from './events';
1
+ import { PhrasedEventType, EventTypes, EventRaiting, EventPrice, UserInEvent } from './events';
2
2
  import { Language, Month, Weekday } from '../common';
3
3
  export declare enum EventFilterSelectionIntervals {
4
4
  DAY = "DAY",
@@ -6,10 +6,11 @@ export declare enum EventFilterSelectionIntervals {
6
6
  MONTH = "MONTH"
7
7
  }
8
8
  export interface EventFilterIntrval {
9
- type: EventFilterIntrval;
9
+ type: EventFilterSelectionIntervals;
10
10
  label: string;
11
11
  }
12
12
  export interface SearchEventsPhrases {
13
+ title: string;
13
14
  common: {
14
15
  languages: Language[];
15
16
  event_types: PhrasedEventType[];
@@ -32,6 +33,7 @@ export interface SearchEventsPhrases {
32
33
  times: string;
33
34
  };
34
35
  calendar: {
36
+ label: string;
35
37
  calendar: string;
36
38
  flexible: string;
37
39
  select_in: string;
@@ -68,4 +70,18 @@ export interface SearchEventsPhrases {
68
70
  };
69
71
  };
70
72
  };
73
+ results: {
74
+ found_results: string;
75
+ person: string;
76
+ };
77
+ }
78
+ export interface EventInSearch {
79
+ event_id: string;
80
+ event_pic: string;
81
+ event_name: string;
82
+ event_type: EventTypes;
83
+ event_raiting: EventRaiting;
84
+ event_reviews_count: number | null;
85
+ event_price: EventPrice;
86
+ event_organizer: UserInEvent;
71
87
  }
@@ -76,6 +76,7 @@ export interface EventManagerPhrases {
76
76
  event_additional_data: {
77
77
  label: string;
78
78
  pictures: string;
79
+ prerequisites: string;
79
80
  video: string;
80
81
  tags: string;
81
82
  };
@@ -143,6 +144,13 @@ export interface EventManagerPhrases {
143
144
  description: string;
144
145
  select_video: string;
145
146
  };
147
+ prerequisites: {
148
+ labels: string;
149
+ description: string;
150
+ add: string;
151
+ preview: string;
152
+ input_label: string;
153
+ };
146
154
  tags: {
147
155
  description: string;
148
156
  placeholder: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.8.22",
3
+ "version": "1.8.26",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",