@pwngh/economy-lab
    Preparing search index...

    Type Alias EconomyStatus

    The economy's pause state at a moment in time, derived from the configured maintenance window and the clock. maintenanceActive is true only inside the window — distinct from the worker's own sweepsPaused. pauseStart and pauseEnd are the configured bounds in epoch ms, or null when no window is set. resumesAt is pauseEnd while paused, else null. This is the readable side of the ECONOMY_PAUSED gate: a UI reads it to show a banner without inferring the state from a declined write.

    type EconomyStatus = {
        maintenanceActive: boolean;
        pauseEnd: number | null;
        pauseStart: number | null;
        resumesAt: number | null;
    }
    Index
    maintenanceActive: boolean
    pauseEnd: number | null
    pauseStart: number | null
    resumesAt: number | null