FP-Devicer - v1.6.1
    Preparing search index...

    Interface StoredFingerprint

    A single persisted fingerprint snapshot associated with a device. Each call to StorageAdapter.save produces one record.

    interface StoredFingerprint {
        deviceId: string;
        fingerprint: FPUserDataSet;
        id: string;
        ip?: string;
        matchConfidence?: number;
        metadata?: Record<string, any>;
        signalsHash?: string;
        timestamp: Date;
        userId?: string;
    }
    Index

    Properties

    deviceId: string
    fingerprint: FPUserDataSet
    id: string
    ip?: string
    matchConfidence?: number

    The confidence score at which this snapshot was matched to an existing device, or 0 if this snapshot created a new device. Useful for detecting devices whose fingerprints are gradually drifting.

    metadata?: Record<string, any>
    signalsHash?: string
    timestamp: Date
    userId?: string