bruce-models 0.2.3 → 0.2.5
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.
package/dist/bruce-models.es5.js
CHANGED
|
@@ -5072,7 +5072,7 @@ var User;
|
|
|
5072
5072
|
throw ("Username is required.");
|
|
5073
5073
|
}
|
|
5074
5074
|
req = api.GET("user/loginavailable/" + username);
|
|
5075
|
-
prom = new Promise(function (
|
|
5075
|
+
prom = new Promise(function (res, rej) { return __awaiter(_this, void 0, void 0, function () {
|
|
5076
5076
|
var data, e_1;
|
|
5077
5077
|
return __generator(this, function (_a) {
|
|
5078
5078
|
switch (_a.label) {
|
|
@@ -5199,11 +5199,8 @@ var User;
|
|
|
5199
5199
|
return __generator(this, function (_a) {
|
|
5200
5200
|
switch (_a.label) {
|
|
5201
5201
|
case 0:
|
|
5202
|
-
if (!code || !
|
|
5203
|
-
throw ("
|
|
5204
|
-
}
|
|
5205
|
-
if (!(data === null || data === void 0 ? void 0 : data.Login) || !(data === null || data === void 0 ? void 0 : data.Password)) {
|
|
5206
|
-
throw ("Login and password are required.");
|
|
5202
|
+
if (!code || !(data === null || data === void 0 ? void 0 : data.Login) || !(data === null || data === void 0 ? void 0 : data.Password)) {
|
|
5203
|
+
throw ("Login, password, and activation code are required.");
|
|
5207
5204
|
}
|
|
5208
5205
|
data = JSON.parse(JSON.stringify(data));
|
|
5209
5206
|
data.IsActivated = true;
|