SecurityState: {
    basic: { password?: string; username?: string };
    cookies: Record<string, string>;
    headers: Record<string, string>;
    oauth2: { type: "password" } & OAuth2PasswordFlow | { type: "none" };
    queryParams: Record<string, string>;
}

Type declaration

  • basic: { password?: string; username?: string }
  • cookies: Record<string, string>
  • headers: Record<string, string>
  • oauth2: { type: "password" } & OAuth2PasswordFlow | { type: "none" }
  • queryParams: Record<string, string>