@jealous-robot-dev/shared-types-responses 1.20.22 → 1.20.26

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.
@@ -73,6 +73,7 @@ export interface UserProfileCurrentUserPhrases {
73
73
  description: string;
74
74
  upload_photo: string;
75
75
  delete_photo: string;
76
+ get_from_fb: string;
76
77
  };
77
78
  }
78
79
  export interface ViewerProfilePhrases {
@@ -106,6 +107,18 @@ export interface UserProfilePhrases {
106
107
  subject: string;
107
108
  };
108
109
  }
110
+ export declare enum ProfileInfoFiels {
111
+ TWTR_USERNAME = "twitterUsername",
112
+ LOCATION = "location",
113
+ WEBSITE = "website",
114
+ ABOUT = "about",
115
+ LANGS = "languagesSpoken"
116
+ }
117
+ export declare enum PeerRestriction {
118
+ BLOCK = "BLOCK",
119
+ UNBLOCK = "UNBLOCK"
120
+ }
121
+ export declare const PIFListed: ProfileInfoFiels[];
109
122
  export declare enum ProfileShowResponses {
110
123
  FOUND = "FOUND",
111
124
  NOT_FOUND = "NOT_FOUND",
@@ -1,6 +1,23 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ProfileShowResponses = void 0;
3
+ exports.ProfileShowResponses = exports.PIFListed = exports.PeerRestriction = 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
+ var PeerRestriction;
13
+ (function (PeerRestriction) {
14
+ PeerRestriction["BLOCK"] = "BLOCK";
15
+ PeerRestriction["UNBLOCK"] = "UNBLOCK";
16
+ })(PeerRestriction = exports.PeerRestriction || (exports.PeerRestriction = {}));
17
+ exports.PIFListed = [
18
+ ProfileInfoFiels.TWTR_USERNAME, ProfileInfoFiels.LOCATION,
19
+ ProfileInfoFiels.ABOUT, ProfileInfoFiels.WEBSITE, ProfileInfoFiels.LANGS
20
+ ];
4
21
  var ProfileShowResponses;
5
22
  (function (ProfileShowResponses) {
6
23
  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.22",
3
+ "version": "1.20.26",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",