torque-pro-assistant - v1.0.0
    Preparing search index...

    Interface SessionMeta

    Session metadata — everything you can browse without loading the row data. The Library table reads from this; the Session detail screen pairs it with the companion data array.

    interface SessionMeta {
        duration: number;
        fileName: string;
        fileSize: number;
        gpsStart: { lat: number; lon: number };
        id: string;
        name: string;
        notes: string;
        startedAt: string;
        vehicle: Vehicle;
    }
    Index

    Properties

    duration: number

    Duration in seconds.

    fileName: string
    fileSize: number

    Source CSV size in bytes.

    gpsStart: { lat: number; lon: number }

    First GPS fix in the session — anchors mini-map previews.

    id: string

    Stable session identifier.

    name: string
    notes: string
    startedAt: string

    ISO 8601 start time including offset.

    vehicle: Vehicle