2022-03-08 18:54:26 +00:00
|
|
|
export interface ICredentials {
|
2022-03-16 20:40:32 +00:00
|
|
|
resume?: string;
|
2022-03-08 18:54:26 +00:00
|
|
|
user?: string;
|
|
|
|
password?: string;
|
|
|
|
username?: string;
|
|
|
|
ldapPass?: string;
|
|
|
|
ldap?: boolean;
|
|
|
|
ldapOptions?: object;
|
|
|
|
crowdPassword?: string;
|
|
|
|
crowd?: boolean;
|
|
|
|
code?: string;
|
|
|
|
totp?: {
|
|
|
|
login: ICredentials;
|
|
|
|
code: string;
|
|
|
|
};
|
|
|
|
}
|