@jealous-robot-dev/shared-types-responses 1.20.22 → 1.20.23
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.
|
@@ -106,6 +106,13 @@ export interface UserProfilePhrases {
|
|
|
106
106
|
subject: string;
|
|
107
107
|
};
|
|
108
108
|
}
|
|
109
|
+
export declare enum ProfileInfoFiels {
|
|
110
|
+
TWTR_USERNAME = "twitterUsername",
|
|
111
|
+
LOCATION = "location",
|
|
112
|
+
WEBSITE = "website",
|
|
113
|
+
ABOUT = "about",
|
|
114
|
+
LANGS = "languagesSpoken"
|
|
115
|
+
}
|
|
109
116
|
export declare enum ProfileShowResponses {
|
|
110
117
|
FOUND = "FOUND",
|
|
111
118
|
NOT_FOUND = "NOT_FOUND",
|
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ProfileShowResponses = void 0;
|
|
3
|
+
exports.ProfileShowResponses = 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 = {}));
|
|
4
12
|
var ProfileShowResponses;
|
|
5
13
|
(function (ProfileShowResponses) {
|
|
6
14
|
ProfileShowResponses["FOUND"] = "FOUND";
|