Hiyve Components - v1.0.0
    Preparing search index...

    Interface TrustedDevice

    A device that has been trusted after TFA verification.

    Trusted devices can bypass TFA for future logins until revoked or expired.

    interface TrustedDevice {
        _id: string;
        brandOrgId: string;
        createdAt: string;
        deviceId: string;
        deviceName?: string;
        expiresAt: string;
        ipAddress?: string;
        lastUsedAt: string;
        metadata?: {
            language?: string;
            platform?: string;
            screenResolution?: string;
            timezone?: string;
        };
        userAgent?: string;
        userId: string;
    }
    Index

    Properties

    _id: string

    Device record ID

    brandOrgId: string

    Organization ID

    createdAt: string

    When this device was first trusted

    deviceId: string

    Unique device identifier

    deviceName?: string

    Human-readable device name

    expiresAt: string

    When trust expires automatically

    ipAddress?: string

    IP address at time of trust

    lastUsedAt: string

    When this device was last used

    metadata?: {
        language?: string;
        platform?: string;
        screenResolution?: string;
        timezone?: string;
    }

    Device fingerprint metadata

    userAgent?: string

    Browser user agent string

    userId: string

    Owner user ID