@righteffort/fidelity-helper
    Preparing search index...

    @righteffort/fidelity-helper

    Retrieve Fidelity transaction data via fetch calls to fidelity.com.

    import { Fidelity } from '@righteffort/fidelity-helper';

    // In this example the callback assumes page.evaluate is provided by your browser
    // automation framework.
    const fidelity = new Fidelity(async (fn, ...args) => page.evaluate(fn, ...args));

    // Get transactions for specific accounts and date range
    const transactions = await fidelity.getTransactions(
    ["123456789", "987654321"],
    new Date(2024, 0, 1),
    new Date(2024, 0, 31)
    );

    for (const t of transactions) {
    console.log(`${t.date.toISOString().split('T')[0]}\t$${t.amount}\t${t.description}`);
    }

    See fidelity-example.ts for a working example.

    Classes

    Fidelity

    Interfaces

    Account
    Transaction

    Type Aliases

    EvaluateFunc