@jealous-robot-dev/shared-types-responses 1.20.24 → 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.
|
@@ -113,6 +113,10 @@ export declare enum ProfileInfoFiels {
|
|
|
113
113
|
ABOUT = "about",
|
|
114
114
|
LANGS = "languagesSpoken"
|
|
115
115
|
}
|
|
116
|
+
export declare enum PeerRestriction {
|
|
117
|
+
BLOCK = "BLOCK",
|
|
118
|
+
UNBLOCK = "UNBLOCK"
|
|
119
|
+
}
|
|
116
120
|
export declare const PIFListed: ProfileInfoFiels[];
|
|
117
121
|
export declare enum ProfileShowResponses {
|
|
118
122
|
FOUND = "FOUND",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ProfileShowResponses = exports.PIFListed = exports.ProfileInfoFiels = void 0;
|
|
3
|
+
exports.ProfileShowResponses = exports.PIFListed = exports.PeerRestriction = exports.ProfileInfoFiels = void 0;
|
|
4
4
|
var ProfileInfoFiels;
|
|
5
5
|
(function (ProfileInfoFiels) {
|
|
6
6
|
ProfileInfoFiels["TWTR_USERNAME"] = "twitterUsername";
|
|
@@ -9,6 +9,11 @@ var ProfileInfoFiels;
|
|
|
9
9
|
ProfileInfoFiels["ABOUT"] = "about";
|
|
10
10
|
ProfileInfoFiels["LANGS"] = "languagesSpoken";
|
|
11
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 = {}));
|
|
12
17
|
exports.PIFListed = [
|
|
13
18
|
ProfileInfoFiels.TWTR_USERNAME, ProfileInfoFiels.LOCATION,
|
|
14
19
|
ProfileInfoFiels.ABOUT, ProfileInfoFiels.WEBSITE, ProfileInfoFiels.LANGS
|