Variable RATE_LIMITER_STATEConst

RATE_LIMITER_STATE: {
    ALLOWED: "ALLOWED";
    BLOCKED: "BLOCKED";
    EXPIRED: "EXPIRED";
} = ...

Enumerated states for rate limiter operation.

  • BLOCKED: Rate limiter is blocking requests (quota exceeded)
  • ALLOWED: Requests are being allowed within the configured limit
  • EXPIRED: Rate limiter has no recorded state (initial or cleaned up)

IMPORT_PATH: "@daiso-tech/core/rate-limiter/contracts"