diegosouzapw/OmniRoute · error
AUTH_001
AUTH_001
Error message
Authentication required
What it means
Error "Authentication required" thrown in diegosouzapw/OmniRoute.
Source
Thrown at src/shared/constants/errorCodes.ts:30
*/
export interface ErrorCodeDef {
code: string;
message: string;
httpStatus: number;
category: string;
}
interface ErrorDetails {
detail?: string;
requestId?: string;
retryAfter?: number;
}
export const ERROR_CODES: Record<string, ErrorCodeDef> = {
// ── Auth ──
AUTH_001: {
code: "AUTH_001",
message: "Authentication required",
httpStatus: 401,
category: "AUTH",
},
AUTH_002: { code: "AUTH_002", message: "Invalid API key", httpStatus: 401, category: "AUTH" },
AUTH_003: { code: "AUTH_003", message: "API key expired", httpStatus: 401, category: "AUTH" },
AUTH_004: {
code: "AUTH_004",
message: "Insufficient permissions",
httpStatus: 403,
category: "AUTH",
},
AUTH_005: { code: "AUTH_005", message: "Account locked", httpStatus: 423, category: "AUTH" },
AUTH_006: {
code: "AUTH_006",
message: "No credentials for provider",
httpStatus: 400,
category: "AUTH",View on GitHub (pinned to a179ffed5b)
When it happens
Trigger: Thrown at src/shared/constants/errorCodes.ts:30 when the library encounters an invalid state.
Common situations: See trigger scenarios.
Understand the failure class
- Authentication and authorization failures — expired tokens, bad credentials, and missing scopes.
AI-assisted analysis of diegosouzapw/OmniRoute@a179ffed5b (2026-08-25).
Data as JSON: /api/errors/eb38a14aecb96399.
Report an issue: GitHub.