feat: add getter for jwtSessionKey

This commit is contained in:
Derrick Hammer 2023-10-19 17:00:52 -04:00
parent 2b5b36b2b5
commit 9954616f5a
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 4 additions and 0 deletions

View File

@ -83,6 +83,10 @@ export class Client {
return this._options.password as string;
}
get jwt(): string | undefined {
return this.jwtSessionKey;
}
set password(password: string) {
this._options.email = password;
}