feat: add setAuthToken

This commit is contained in:
Derrick Hammer 2024-03-13 18:15:01 -04:00
parent 070b117089
commit 63e214cc49
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 4 additions and 0 deletions

View File

@ -18,4 +18,8 @@ export class Sdk {
} }
return this.accountApi!; return this.accountApi!;
} }
public setAuthToken(token: string) {
this.account().jwtToken = token;
}
} }