@jealous-robot-dev/shared-types-responses 1.20.21 → 1.20.25
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.
|
@@ -92,6 +92,7 @@ export interface UserProfilePhrases {
|
|
|
92
92
|
showMore: string;
|
|
93
93
|
showLess: string;
|
|
94
94
|
load_more: string;
|
|
95
|
+
alternative_about: string;
|
|
95
96
|
};
|
|
96
97
|
is_host: {
|
|
97
98
|
hosted_events: string;
|
|
@@ -105,6 +106,18 @@ export interface UserProfilePhrases {
|
|
|
105
106
|
subject: string;
|
|
106
107
|
};
|
|
107
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 enum PeerRestriction {
|
|
117
|
+
BLOCK = "BLOCK",
|
|
118
|
+
UNBLOCK = "UNBLOCK"
|
|
119
|
+
}
|
|
120
|
+
export declare const PIFListed: ProfileInfoFiels[];
|
|
108
121
|
export declare enum ProfileShowResponses {
|
|
109
122
|
FOUND = "FOUND",
|
|
110
123
|
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";
|