space-react-client 0.3.0 → 0.3.1
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/index.d.ts +3340 -2597
- package/dist/index.js +1 -1
- package/package.json +5 -1
package/dist/index.js
CHANGED
|
@@ -69,7 +69,7 @@ class TokenService {
|
|
|
69
69
|
}
|
|
70
70
|
_validToken() {
|
|
71
71
|
if (!this.tokenPayload) {
|
|
72
|
-
console.warn('Token payload is not set. Please call
|
|
72
|
+
console.warn('Token payload is not set. Please call TokenService.update first.');
|
|
73
73
|
return false;
|
|
74
74
|
}
|
|
75
75
|
if (isTokenExpired(this.tokenPayload)) {
|
package/package.json
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "space-react-client",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.1",
|
|
5
5
|
"description": "",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/Alex-GF/space-react-client"
|
|
12
|
+
},
|
|
9
13
|
"exports": {
|
|
10
14
|
".": {
|
|
11
15
|
"types": "./dist/index.d.ts",
|