@inweb/client 25.6.6 → 25.6.7
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 +10 -2
- package/dist/client.js.map +1 -1
- package/dist/client.min.js +1 -1
- package/dist/client.module.js +5 -2
- package/dist/client.module.js.map +1 -1
- package/lib/Api/User.d.ts +6 -0
- package/package.json +2 -2
- package/src/Api/User.ts +9 -0
package/dist/client.js
CHANGED
|
@@ -3602,6 +3602,14 @@
|
|
|
3602
3602
|
set storageLimit(value) {
|
|
3603
3603
|
this._data.storageLimit = value;
|
|
3604
3604
|
}
|
|
3605
|
+
/**
|
|
3606
|
+
* The total size of the user's files in the storage.
|
|
3607
|
+
*
|
|
3608
|
+
* @readonly
|
|
3609
|
+
*/
|
|
3610
|
+
get storageUsed() {
|
|
3611
|
+
return this.data.storageUsed;
|
|
3612
|
+
}
|
|
3605
3613
|
/**
|
|
3606
3614
|
* The user's access token (API key). Use {@link Client.signInWithToken()} to log in using token.
|
|
3607
3615
|
*
|
|
@@ -3896,7 +3904,7 @@
|
|
|
3896
3904
|
.then((data) => ({
|
|
3897
3905
|
...data,
|
|
3898
3906
|
server: data.version,
|
|
3899
|
-
client: "25.6.
|
|
3907
|
+
client: "25.6.7",
|
|
3900
3908
|
}));
|
|
3901
3909
|
}
|
|
3902
3910
|
/**
|
|
@@ -4621,7 +4629,7 @@
|
|
|
4621
4629
|
}
|
|
4622
4630
|
|
|
4623
4631
|
///////////////////////////////////////////////////////////////////////////////
|
|
4624
|
-
const version = "25.6.
|
|
4632
|
+
const version = "25.6.7";
|
|
4625
4633
|
|
|
4626
4634
|
exports.Assembly = Assembly;
|
|
4627
4635
|
exports.ClashTest = ClashTest;
|