ip-devicer
    Preparing search index...

    Interface IdentifyResult

    Baseline identify result shape expected from the upstream device manager.

    interface IdentifyResult {
        confidence: number;
        deviceId: string;
        enrichmentInfo: {
            details: Record<string, Record<string, unknown>>;
            failures: { message: string; plugin: string }[];
            plugins: string[];
        };
        isNewDevice: boolean;
        linkedUserId?: string;
        matchConfidence: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    confidence: number

    Final confidence score after matching and enrichment.

    deviceId: string

    Stable device identifier returned by fingerprint matching.

    enrichmentInfo: {
        details: Record<string, Record<string, unknown>>;
        failures: { message: string; plugin: string }[];
        plugins: string[];
    }

    Cross-plugin enrichment metadata attached by post-processors.

    isNewDevice: boolean

    Whether the incoming fingerprint was treated as a new device.

    linkedUserId?: string

    Linked application user ID when one was provided in context.

    matchConfidence: number

    Persisted mirror of confidence used for historical analysis.