@datadome/fraud-sdk-node
Version:
Fraud Protection - Node.js SDK
9 lines • 507 B
TypeScript
export type AuthenticationSocialProvider = 'other' | 'amazon' | 'apple' | 'facebook' | 'google' | 'linkedin' | 'microsoft' | 'twitter' | 'github' | 'yahoo';
export type AuthenticationType = 'other' | 'local' | 'social';
export type AuthenticationMode = 'other' | 'biometric' | 'mail' | 'mfa' | 'otp' | 'password';
export interface Authentication {
socialProvider?: AuthenticationSocialProvider;
type?: AuthenticationType;
mode?: AuthenticationMode;
}
//# sourceMappingURL=authentication.d.ts.map