@jealous-robot-dev/shared-types-responses 1.13.32 → 1.13.36

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.
@@ -19,6 +19,7 @@ export interface SECommonPhrases {
19
19
  tip: string;
20
20
  start: string;
21
21
  finish: string;
22
+ wait: string;
22
23
  };
23
24
  }
24
25
  export interface SEIntroPhrases {
@@ -127,6 +128,8 @@ export interface SESuccessPhrases {
127
128
  description: string;
128
129
  view_event: string;
129
130
  share: string;
131
+ event_type_duration: string;
132
+ event_langauge: string;
130
133
  sharer: SharerProps;
131
134
  }
132
135
  export interface SEData {
@@ -142,6 +145,15 @@ export interface SEData {
142
145
  event_video: string | null;
143
146
  event_price: number | null;
144
147
  }
148
+ export interface HostedEventData {
149
+ event_id: string;
150
+ event_name: string;
151
+ event_pic: string;
152
+ event_type: EventTypes;
153
+ event_duration: number;
154
+ event_language: string;
155
+ event_fee: number;
156
+ }
145
157
  export interface SEPhrases {
146
158
  common: SECommonPhrases;
147
159
  intro: SEIntroPhrases;
@@ -11,6 +11,7 @@ export interface SmartHeaderPhrases {
11
11
  schedule: string;
12
12
  inbox: string;
13
13
  notifications: string;
14
+ collections: string;
14
15
  events: string;
15
16
  performance: string;
16
17
  payment_history: string;
@@ -0,0 +1,21 @@
1
+ import { LND } from "../common";
2
+ import { EventTypes, PhrasedEventType, UserInEvent } from "../events";
3
+ export interface EventCollectionPhrases {
4
+ title: string;
5
+ label: string;
6
+ no_collections?: LND;
7
+ collections?: {
8
+ load_more: string;
9
+ hosted_by: string;
10
+ event_types: PhrasedEventType[];
11
+ };
12
+ }
13
+ export interface EventInCollection {
14
+ event_pic: string;
15
+ event_id: string;
16
+ event_name: string;
17
+ event_type: EventTypes;
18
+ event_raiting: null | number;
19
+ event_reviews_count: number | null;
20
+ event_organizer: UserInEvent;
21
+ }
@@ -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.13.32",
3
+ "version": "1.13.36",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",