@jealous-robot-dev/shared-types-responses 1.36.3 → 1.36.6

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.
@@ -33,6 +33,7 @@ export interface ViewEventHostData {
33
33
  firstname?: string;
34
34
  lastname?: string;
35
35
  username?: string;
36
+ instagram?: string;
36
37
  has_gold_badge?: boolean;
37
38
  cancellation_rate?: number;
38
39
  }
@@ -1,4 +1,4 @@
1
- import { EventTypes, HostEventFee } from "@jealous-robot-dev/drophr-common";
1
+ import { EventTypes } from "@jealous-robot-dev/drophr-common";
2
2
  export interface GuestBookingCancellationData {
3
3
  event_id: string;
4
4
  type: EventTypes;
@@ -7,6 +7,7 @@ export interface GuestBookingCancellationData {
7
7
  to_refund: {
8
8
  currency: string;
9
9
  amount: number;
10
+ fee: number;
10
11
  };
11
12
  lang: string;
12
13
  name: string;
@@ -17,7 +18,11 @@ export interface MailBookingCancellationData {
17
18
  firstname: string;
18
19
  lastname: string;
19
20
  time: number;
20
- fee: HostEventFee;
21
+ to_refund: {
22
+ currency: string;
23
+ amount: number;
24
+ fee: number;
25
+ };
21
26
  }
22
27
  export interface HostBookingCancellationData {
23
28
  event: {
@@ -15,6 +15,8 @@ export interface UserProfileData {
15
15
  UID: string;
16
16
  about?: string;
17
17
  location?: string;
18
+ linkedin?: string;
19
+ instagram?: string;
18
20
  twiterUsername?: string;
19
21
  website?: string;
20
22
  average_raiting?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.36.3",
3
+ "version": "1.36.6",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -24,7 +24,7 @@
24
24
  "typescript": "^3.8.3"
25
25
  },
26
26
  "dependencies": {
27
- "@jealous-robot-dev/drophr-common": "^1.2.11",
27
+ "@jealous-robot-dev/drophr-common": "^1.3.8",
28
28
  "@jealous-robot-dev/shared-phrases": "^1.0.1",
29
29
  "@jealous-robot-dev/shared-ui-lib": "^1.2.22"
30
30
  }