@inweb/client 26.9.7 → 26.9.8
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/client.js +4 -4
- package/dist/client.js.map +1 -1
- package/dist/client.min.js +1 -1
- package/dist/client.module.js +4 -4
- package/dist/client.module.js.map +1 -1
- package/package.json +2 -2
- package/src/Api/Client.ts +2 -2
package/dist/client.js
CHANGED
|
@@ -2221,8 +2221,8 @@
|
|
|
2221
2221
|
}
|
|
2222
2222
|
configure(params) {
|
|
2223
2223
|
this._serverUrl = (params.serverUrl || "").replace(/\/+$/, "");
|
|
2224
|
-
this._httpClient =
|
|
2225
|
-
this.
|
|
2224
|
+
this._httpClient.serverUrl = this.serverUrl;
|
|
2225
|
+
this.clearCurrentUser();
|
|
2226
2226
|
return this;
|
|
2227
2227
|
}
|
|
2228
2228
|
version() {
|
|
@@ -2232,7 +2232,7 @@
|
|
|
2232
2232
|
.then((data) => ({
|
|
2233
2233
|
...data,
|
|
2234
2234
|
server: data.version,
|
|
2235
|
-
client: "26.9.
|
|
2235
|
+
client: "26.9.8",
|
|
2236
2236
|
}));
|
|
2237
2237
|
}
|
|
2238
2238
|
registerUser(email, password, userName) {
|
|
@@ -2728,7 +2728,7 @@
|
|
|
2728
2728
|
}
|
|
2729
2729
|
}
|
|
2730
2730
|
|
|
2731
|
-
const version = "26.9.
|
|
2731
|
+
const version = "26.9.8";
|
|
2732
2732
|
|
|
2733
2733
|
exports.Assembly = Assembly;
|
|
2734
2734
|
exports.ClashTest = ClashTest;
|