Documentation Index
Fetch the complete documentation index at: https://auth0-feat-ionic-capacitor-quickstart-modernization.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
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;
}
Properties
Connection
export interface Connection {
name: string;
strategy: string;
metadata?: Record<string, string>;
}
Properties
EnterpriseConnection
export interface EnterpriseConnection extends Connection {
options: {
iconUrl?: string;
displayName?: string;
showAsButton: boolean;
};
}
Properties
PasswordPolicy
export interface PasswordPolicy {
enabled?: boolean;
minLength?: number;
policy: 'none' | 'low' | 'fair' | 'good' | 'excellent';
passwordSecurityInfo?: PasswordComplexityRule[];
}
Properties
policy
"none" | "low" | "fair" | "good" | "excellent"