auth.provider API
    Preparing search index...

    Interface ContributeFactoryFailedDetails

    Per A2-β §6.1. originalError is a typed alias of cause; both are populated for *-factory-failed reasons (Codex Session 03 verdict C3).

    interface ContributeFactoryFailedDetails {
        cleanupErrors?: readonly {
            componentKey: keyof ComponentMap;
            error: unknown;
            module: string;
        }[];
        kind: string;
        module: string;
        name: string;
        originalError: unknown;
        reason: "contribute-factory-failed";
    }
    Index

    Properties

    cleanupErrors?: readonly {
        componentKey: keyof ComponentMap;
        error: unknown;
        module: string;
    }[]
    kind: string
    module: string
    name: string
    originalError: unknown
    reason: "contribute-factory-failed"