mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-15 15:53:41 +00:00
32 lines
826 B
TypeScript
32 lines
826 B
TypeScript
import { AuthenticationType } from "../../enums/authenticationType";
|
|
import { TokenRequestTwoFactor } from "../request/identityToken/tokenRequestTwoFactor";
|
|
|
|
export class PasswordLogInCredentials {
|
|
readonly type = AuthenticationType.Password;
|
|
|
|
constructor(
|
|
public email: string,
|
|
public masterPassword: string,
|
|
public captchaToken?: string,
|
|
public twoFactor?: TokenRequestTwoFactor
|
|
) {}
|
|
}
|
|
|
|
export class SsoLogInCredentials {
|
|
readonly type = AuthenticationType.Sso;
|
|
|
|
constructor(
|
|
public code: string,
|
|
public codeVerifier: string,
|
|
public redirectUrl: string,
|
|
public orgId: string,
|
|
public twoFactor?: TokenRequestTwoFactor
|
|
) {}
|
|
}
|
|
|
|
export class ApiLogInCredentials {
|
|
readonly type = AuthenticationType.Api;
|
|
|
|
constructor(public clientId: string, public clientSecret: string) {}
|
|
}
|