@jealous-robot-dev/shared-types-responses 1.58.0 → 1.58.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -24,6 +24,7 @@ export interface MainUserData {
24
24
  }
25
25
  export interface API {
26
26
  googleOAuthClient: string;
27
+ googleMapsKey: string;
27
28
  fbAuthClient: string;
28
29
  }
29
30
  export interface CommonData {
@@ -1,5 +1,5 @@
1
- import { PhoneNumber, UserAddress } from '@jealous-robot-dev/drophr-common';
2
1
  import { UserPersonalInfoPhrases } from '@jealous-robot-dev/shared-phrases';
2
+ import { PhoneNumber, ZipCode } from '@jealous-robot-dev/drophr-common';
3
3
  import { QueryResponse } from '../common';
4
4
  export interface PersonalInfoBirthday {
5
5
  year: string;
@@ -21,10 +21,7 @@ export interface UserPersonalInfo {
21
21
  value: PhoneNumber | null;
22
22
  };
23
23
  INFORMCompliant: boolean;
24
- address: {
25
- value: UserAddress | null;
26
- isRequired: boolean;
27
- };
24
+ zip: ZipCode | null;
28
25
  birthday: PersonalInfoBirthday | null;
29
26
  }
30
27
  export interface UserPersonalInfoResponse extends QueryResponse<UserPersonalInfo, UserPersonalInfoPhrases> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.58.0",
3
+ "version": "1.58.2",
4
4
  "description": "Meetle common types of API responses",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -27,4 +27,4 @@
27
27
  "@jealous-robot-dev/drophr-common": "^1.16.1",
28
28
  "@jealous-robot-dev/shared-phrases": "^1.15.4"
29
29
  }
30
- }
30
+ }