diff --git a/src/client.ts b/src/client.ts index f800468..a92b7fb 100644 --- a/src/client.ts +++ b/src/client.ts @@ -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; }