@backblaze-labs/b2-sdk - v0.2.0
    Preparing search index...

    Interface FileAccountInfoDiscardEvent

    Event emitted when a loaded cache entry is ignored without modifying disk.

    interface FileAccountInfoDiscardEvent {
        cachedApplicationKeyId: string | null | undefined;
        cachedRealmUrl: string | null | undefined;
        expectedApplicationKeyId: string | undefined;
        expectedRealmUrl: string | undefined;
        path: string;
        reason: FileAccountInfoDiscardReason;
    }
    Index

    Properties

    cachedApplicationKeyId: string | null | undefined

    Application key ID stored in cache metadata, or null for legacy entries.

    cachedRealmUrl: string | null | undefined

    Realm URL stored in the cache metadata, or null for legacy entries.

    expectedApplicationKeyId: string | undefined

    Application key ID configured on the current client, if already bound.

    expectedRealmUrl: string | undefined

    Realm URL configured on the current client, if already bound.

    path: string

    Absolute path of the auth cache file.

    Why the loaded auth entry could not be reused.