@jealous-robot-dev/shared-types-responses 1.20.20 → 1.20.24

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.
@@ -63,6 +63,11 @@ export interface UserProfileCurrentUserPhrases {
63
63
  location: string;
64
64
  twitterUsername: string;
65
65
  websiteUrl: string;
66
+ addMoreInfo: {
67
+ title: string;
68
+ description: string;
69
+ add_more: string;
70
+ };
66
71
  update_avatar: {
67
72
  title: string;
68
73
  description: string;
@@ -87,6 +92,7 @@ export interface UserProfilePhrases {
87
92
  showMore: string;
88
93
  showLess: string;
89
94
  load_more: string;
95
+ alternative_about: string;
90
96
  };
91
97
  is_host: {
92
98
  hosted_events: string;
@@ -100,6 +106,14 @@ export interface UserProfilePhrases {
100
106
  subject: string;
101
107
  };
102
108
  }
109
+ export declare enum ProfileInfoFiels {
110
+ TWTR_USERNAME = "twitterUsername",
111
+ LOCATION = "location",
112
+ WEBSITE = "website",
113
+ ABOUT = "about",
114
+ LANGS = "languagesSpoken"
115
+ }
116
+ export declare const PIFListed: ProfileInfoFiels[];
103
117
  export declare enum ProfileShowResponses {
104
118
  FOUND = "FOUND",
105
119
  NOT_FOUND = "NOT_FOUND",
@@ -1,6 +1,18 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ProfileShowResponses = void 0;
3
+ exports.ProfileShowResponses = exports.PIFListed = exports.ProfileInfoFiels = void 0;
4
+ var ProfileInfoFiels;
5
+ (function (ProfileInfoFiels) {
6
+ ProfileInfoFiels["TWTR_USERNAME"] = "twitterUsername";
7
+ ProfileInfoFiels["LOCATION"] = "location";
8
+ ProfileInfoFiels["WEBSITE"] = "website";
9
+ ProfileInfoFiels["ABOUT"] = "about";
10
+ ProfileInfoFiels["LANGS"] = "languagesSpoken";
11
+ })(ProfileInfoFiels = exports.ProfileInfoFiels || (exports.ProfileInfoFiels = {}));
12
+ exports.PIFListed = [
13
+ ProfileInfoFiels.TWTR_USERNAME, ProfileInfoFiels.LOCATION,
14
+ ProfileInfoFiels.ABOUT, ProfileInfoFiels.WEBSITE, ProfileInfoFiels.LANGS
15
+ ];
4
16
  var ProfileShowResponses;
5
17
  (function (ProfileShowResponses) {
6
18
  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.20.20",
3
+ "version": "1.20.24",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",