We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d5046e commit 070af1bCopy full SHA for 070af1b
keeperapi/src/auth.ts
@@ -234,6 +234,7 @@ export class Auth {
234
platform.unloadKeys()
235
await this.executeRestAction(logoutV3Message())
236
await this.idpLogout()
237
+ this._sessionToken = ''
238
}
239
240
async connect() {
@@ -1040,6 +1041,10 @@ export class Auth {
1040
1041
this._accountSummaryVersion = version
1042
1043
1044
+ setSessionToken(token: string) {
1045
+ this._sessionToken = token
1046
+ }
1047
+
1048
// async executeCommand<Command extends KeeperCommand>(command: Command): Promise<Command["response"]> {
1049
// if (!command.username) {
1050
// command.username = this._username;
0 commit comments