@qtsurfer/api-client
    Preparing search index...

    Type Alias Account

    Your identity and tier limits. No database call behind this one — safe to fetch on every page load. Live usage against these limits is a separate resource, GET /account/usage, deliberately: usage changes on every upload/execution and costs a query to compute, this one doesn't.

    type Account = {
        _links: AccountLinks;
        maxDatasetBytes: number;
        maxDatasets: number;
        maxTotalStorageBytes: number;
        tier: string;
        userId: string;
    }
    Index
    _links: AccountLinks
    maxDatasetBytes: number

    Maximum size, in bytes, of a single dataset version.

    maxDatasets: number

    Maximum number of active datasets your tier allows.

    maxTotalStorageBytes: number

    Maximum combined storage, in bytes, across every dataset, strategy-execution signal, and registered strategy on your account — one shared pool, not a separate cap per resource type, since they all compete for the same underlying storage. See GET /account/usage's storageBytesUsed for your current usage against this number.

    tier: string

    Your current subscription tier.

    userId: string

    Your account id — the JWT sub claim.