@jealous-robot-dev/shared-types-responses 1.47.8 → 1.48.0

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.
@@ -23,9 +23,15 @@ export interface UserProfileData {
23
23
  isAbleToContact: boolean;
24
24
  isCurrentUser: boolean;
25
25
  isHost: boolean;
26
- fields: {
27
- [key in ProfileInfoFiels]: string;
28
- };
26
+ [ProfileInfoFiels.WORK]?: string;
27
+ [ProfileInfoFiels.ABOUT]?: string;
28
+ [ProfileInfoFiels.LANGS]?: string;
29
+ [ProfileInfoFiels.WEBSITE]?: string;
30
+ [ProfileInfoFiels.LINKEDIN]?: string;
31
+ [ProfileInfoFiels.LOCATION]?: string;
32
+ [ProfileInfoFiels.TIMEZONE]?: string;
33
+ [ProfileInfoFiels.INSTAGRAM]?: string;
34
+ [ProfileInfoFiels.TWTR_USERNAME]?: string;
29
35
  }
30
36
  export interface UserEventsInProfile {
31
37
  events: ConciseEventData[];
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ProfileShowResponses = void 0;
4
+ var drophr_common_1 = require("@jealous-robot-dev/drophr-common");
4
5
  var ProfileShowResponses;
5
6
  (function (ProfileShowResponses) {
6
7
  ProfileShowResponses["FOUND"] = "FOUND";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.47.8",
3
+ "version": "1.48.0",
4
4
  "description": "DropHR common types of API responses",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -25,6 +25,6 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "@jealous-robot-dev/drophr-common": "^1.13.3",
28
- "@jealous-robot-dev/shared-phrases": "^1.13.0"
28
+ "@jealous-robot-dev/shared-phrases": "^1.13.1"
29
29
  }
30
30
  }