@jealous-robot-dev/shared-types-responses 1.54.2 → 1.54.4

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.
@@ -6,9 +6,9 @@ export interface HostPayoutSeance {
6
6
  earnings: number;
7
7
  starts_at: number;
8
8
  customers: number;
9
+ connect_fee: number;
9
10
  with_fx_fee: boolean;
10
11
  availability: number;
11
- with_connect_fee: boolean;
12
12
  status: PerformancePayoutStatus;
13
13
  }
14
14
  export interface HostPayoutsEvt {
@@ -3,6 +3,7 @@ import { UserNotificationsPhrases } from '@jealous-robot-dev/shared-phrases';
3
3
  import { QueryResponse } from '../common';
4
4
  export interface WebNotification {
5
5
  id: string;
6
+ key: string;
6
7
  time: number;
7
8
  seen: boolean;
8
9
  type: NotificationTypes;
@@ -8,8 +8,14 @@ export interface PersonalInfoBirthday {
8
8
  }
9
9
  export interface UserPersonalInfo {
10
10
  email: string;
11
+ address: boolean;
11
12
  lastname: string;
12
13
  firstname: string;
14
+ idVerification: {
15
+ isActual: boolean;
16
+ isVerified: boolean;
17
+ };
18
+ INFORMCompliant: boolean;
13
19
  phone: PhoneNumber | null;
14
20
  birthday: PersonalInfoBirthday | null;
15
21
  }
@@ -2,11 +2,11 @@ import { UserPrivacyCheckboxes } from '@jealous-robot-dev/drophr-common';
2
2
  import { UserPrivacyPhrases } from '@jealous-robot-dev/shared-phrases';
3
3
  import { QueryResponse } from '../common';
4
4
  export interface UserPrivacy {
5
- [UserPrivacyCheckboxes.AFOAU]: boolean;
6
- [UserPrivacyCheckboxes.PBD]: boolean;
7
- [UserPrivacyCheckboxes.PM]: boolean;
8
- [UserPrivacyCheckboxes.PE]: boolean;
9
- [UserPrivacyCheckboxes.PL]: boolean;
5
+ channels: {
6
+ id: UserPrivacyCheckboxes;
7
+ canToggle: boolean;
8
+ value: boolean;
9
+ }[];
10
10
  }
11
11
  export interface UserPrivacyResponse extends QueryResponse<UserPrivacy, UserPrivacyPhrases> {
12
12
  }
@@ -1,3 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- var drophr_common_1 = require("@jealous-robot-dev/drophr-common");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.54.2",
3
+ "version": "1.54.4",
4
4
  "description": "Meetle common types of API responses",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",