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

    Interface SavedVehicle

    One saved vehicle profile. List of these powers the Settings "Vehicles" table + the per-vehicle detail page. activeVehicleId picks which one drives the app's current vehicle context.

    Spec fields (curb weight / drivetrain / redline / displacement / transmission) + the calibration list are optional so existing persisted state from before handoff-9 hydrates cleanly — the detail page falls back to sensible placeholders when a field is absent.

    interface SavedVehicle {
        addedAt: string;
        calibrations?: readonly VehicleCalibration[];
        curbWeightLb?: number;
        displacementL?: number;
        drivetrain?: Drivetrain;
        id: string;
        lastUsed?: string | null;
        make: string;
        model: string;
        redlineRpm?: number;
        transmission?: Transmission;
        vin: string;
        year: number;
    }
    Index

    Properties

    addedAt: string

    ISO 8601 added-at timestamp.

    calibrations?: readonly VehicleCalibration[]

    Per-PID calibration overrides applied at session import.

    curbWeightLb?: number

    Curb weight in pounds. Metric display converts on the fly.

    displacementL?: number

    Engine displacement in liters.

    drivetrain?: Drivetrain
    id: string
    lastUsed?: string | null

    ISO 8601 timestamp of the most recent session imported against this vehicle. null when nothing has been logged yet.

    make: string
    model: string
    redlineRpm?: number
    transmission?: Transmission
    vin: string
    year: number