2022-03-22 22:14:42 +00:00
|
|
|
import { AppleAuthenticationFullName } from 'expo-apple-authentication';
|
|
|
|
|
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;
|
|
|
|
};
|
2022-03-22 22:14:42 +00:00
|
|
|
fullName?: AppleAuthenticationFullName | null;
|
|
|
|
email?: string | null;
|
|
|
|
identityToken?: string | null;
|
2022-03-08 18:54:26 +00:00
|
|
|
}
|