From 9954616f5a80b6f04e7b14aa67cf106733e9d75c Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Thu, 19 Oct 2023 17:00:52 -0400 Subject: [PATCH] feat: add getter for jwtSessionKey --- src/client.ts | 4 ++++ 1 file changed, 4 insertions(+) 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; }