fix: Allow getting the token from the SDK client (#13164)

This commit is contained in:
Stevche Radevski
2025-08-08 08:42:44 +02:00
committed by GitHub
parent 224eaedf5c
commit 2c1fe4cfe4

View File

@@ -179,6 +179,10 @@ export class Client {
await this.setToken_(token)
}
async getToken() {
return await this.getToken_()
}
async clearToken() {
await this.clearToken_()
}