English
export interface TransactionMembers { state: string; locale: string; countryCode: CountryCode['code'] | null; countryPrefix: CountryCode['prefix'] | null; connectionStrategy: string | null; hasErrors: boolean; errors: Error[] | null; currentConnection: Connection | null; alternateConnections: (Connection | EnterpriseConnection)[] | null; }
export interface Connection { name: string; strategy: string; metadata?: Record<string, string>; }
export interface EnterpriseConnection extends Connection { options: { iconUrl?: string; displayName?: string; showAsButton: boolean; }; }
Show properties
export interface PasswordPolicy { enabled?: boolean; minLength?: number; policy: 'none' | 'low' | 'fair' | 'good' | 'excellent'; passwordSecurityInfo?: PasswordComplexityRule[]; }
Was this page helpful?