Skip to main content
import { getAuthSessionParameters } from '@intuned/runtime';

export declare function getAuthSessionParameters(): Promise<any>;
If the project uses Credentials-based Auth Sessions, returns the parameters used to create the auth session being used for the current attempt. Will throw an error if:
  • The project does not use Auth Sessions.
  • The auth session is Recorder-based.
  • The auth session is Runtime-based.

Returns Promise<any>
I