API Reference / modelence / server / AuthRateLimitOverrideDocumentation Index
Fetch the complete documentation index at: https://docs.modelence.com/llms.txt
Use this file to discover all available pages before exploring further.
AuthRateLimitOverride = object
Defined in: packages/modelence/src/app/authConfig.ts:21
A single rate-limit rule for an authentication bucket. The bucket is
implied by which auth action you’re configuring (e.g. signup), so callers
only specify the actor type, window size, and limit.
Example
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
limit | number | Maximum allowed hits within the window. | packages/modelence/src/app/authConfig.ts:27 |
type | RateLimitType | Identifier type of the actor this rule applies to. | packages/modelence/src/app/authConfig.ts:23 |
window | number | Time window size in milliseconds. Use time.minutes(15) etc. | packages/modelence/src/app/authConfig.ts:25 |