feat: add getter for jwtSessionKey
This commit is contained in:
parent
2b5b36b2b5
commit
9954616f5a
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue