@spacelr/sdk 0.8.1 → 0.9.0
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.mts +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3056,6 +3056,9 @@ function createClient(config) {
|
|
|
3056
3056
|
onTokenRefreshed(listener) {
|
|
3057
3057
|
return tokenManager.onTokenRefreshed(listener);
|
|
3058
3058
|
},
|
|
3059
|
+
getAccessToken() {
|
|
3060
|
+
return tokenManager.getAccessToken();
|
|
3061
|
+
},
|
|
3059
3062
|
onConnectionStateChanged(listener) {
|
|
3060
3063
|
return realtime.onConnectionStateChanged(listener);
|
|
3061
3064
|
},
|