@asgardeo/javascript 0.1.5 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -49,5 +49,6 @@ declare abstract class AsgardeoJavaScriptClient<T = Config> implements AsgardeoC
49
49
  abstract signUp(options?: SignUpOptions): Promise<void>;
50
50
  abstract signUp(payload: EmbeddedFlowExecuteRequestPayload): Promise<EmbeddedFlowExecuteResponse>;
51
51
  abstract signUp(payload?: unknown): Promise<void> | Promise<EmbeddedFlowExecuteResponse>;
52
+ abstract getAccessToken(sessionId?: string): Promise<string>;
52
53
  }
53
54
  export default AsgardeoJavaScriptClient;