Files
OmniRoute/src/domain/types.ts
Diego Rodrigues de Sa e Souza 70a4d38d04 Release v3.4.0 (Integration) (#861)
* test(settings): add unit tests for debugMode and hiddenSidebarItems

Tests cover:
- PATCH debugMode=true/false
- PATCH hiddenSidebarItems with array values
- Combined updates with both fields

* test(e2e): add Playwright tests for settings toggles

Tests cover:
- Debug mode toggle on/off
- Sidebar visibility toggle
- Settings persistence after page reload

* fix(tests): address code review issues

- Unit tests: fix async/await for getSettings, use direct db functions
- E2E tests: remove conditional logic, use Playwright auto-waiting assertions

* feat(logging): unify request log retention and artifacts

* docs: add dashboard settings toggles to CONTRIBUTING

Add section documenting:
- Debug Mode toggle (Settings → Advanced)
- Sidebar Visibility toggle (Settings → General)

* fix(cache): only inject prompt_cache_key for supported providers

Only inject prompt_cache_key for providers that support prompt caching
(Claude, Anthropic, ZAI, Qwen, DeepSeek). This fixes issue #848 where
NVIDIA API rejected the parameter.

* fix(model-sync): log only channel-level model changes

* feat(providers): add 4 free models to opencode-zen

* feat(providers): add explicit contextLength for opencode-zen free models

* feat(providers): add contextLength for all opencode-zen models

* feat: Improve the Chinese translation

* fix: preserve client cache_control for all Claude-protocol providers

Previously, the cache control preservation logic only recognized a
hardcoded list of providers (claude, anthropic, zai, qwen, deepseek).
This caused OmniRoute to inject its own cache_control markers for
Claude-protocol providers not in that list (bailian-coding-plan, glm,
minimax, minimax-cn, etc.), overwriting the client's cache markers.

The fix checks both:
1. Known caching providers list (existing behavior)
2. Whether targetFormat === 'claude' (all Claude-protocol providers)

This ensures all Claude-compatible providers properly preserve client
cache_control headers when appropriate (Claude Code client, deterministic
routing, etc.).

Also removes unused CacheStatsCard from settings/components (duplicate
of the one in cache/ page).

Fixes cache token calculation for GLM, Minimax, and other Claude-compatible providers.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

* fix: pure passthrough for Claude→Claude when cache_control preserved

The Claude passthrough path round-trips through OpenAI format
(claude→openai→claude) for structural normalization. This strips
cache_control markers from every content block since OpenAI format
has no equivalent, causing ~42k cache creation tokens per request
with zero cache reads.

When preserveCacheControl is true (Claude Code client, "always"
setting, or deterministic combo), skip the round-trip entirely and
forward the body as-is. Claude Code sends well-formed Messages API
payloads — the normalization was only needed for non-Code clients.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

* fix: restore CacheStatsCard — was not a duplicate

The first commit incorrectly deleted CacheStatsCard from
settings/components/ as a "duplicate". It's the only copy — both
settings/page.tsx and cache/page.tsx import from this location.

Restored the i18n-ized version from main.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

* fix(429): parse long quota reset times from error body

- Parse XhYmZs format from antigravity error messages (e.g., 27h41m36s)
- Dynamic retry-after threshold (60s default) instead of hardcoded 10s
- Add parseRetryFromErrorText() in accountFallback.ts for body parsing
- Fix 403 'verify your account' to trigger permanent deactivation
- Add keyword matching for 'quota will reset', 'exhausted capacity'
- Add unit tests for retry parsing and keyword matching

Fixes #858 (Antigravity 429 handling)
Fixes #832 (Qwen quota 429 - same underlying bug)

* chore: bump version to v3.4.0-dev

* fix(migrations): rename 013 to 014 to avoid collision with v3.3.11

* chore(docs): update CHANGELOG for v3.4.0 integrations

* fix: Claude token refresh, Antigravity quota, and 429 rate-limit handling

- Fix Claude OAuth token refresh to use form-urlencoded format (standard OAuth2)
- Add anthropic-beta header required by Claude OAuth API
- Switch Antigravity quota to use retrieveUserQuota API (same as Gemini CLI)
- Parse quota reset time for all providers (not just Antigravity)
- Add quota reset keywords to error classifier
- Cap maximum retry time at 24 hours to prevent infinite wait

Closes #836, #857, #858, #832

* fix(dashboard): resolve /dashboard/limits hanging UI with 70+ accounts via chunk parallelization (#784)

---------

Co-authored-by: oyi77 <oyi77@users.noreply.github.com>
Co-authored-by: R.D. <rogerproself@gmail.com>
Co-authored-by: kang-heewon <heewon.dev@gmail.com>
Co-authored-by: gmw <rorschach1167@qq.com>
Co-authored-by: tombii <github@tombii.com>
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-authored-by: diegosouzapw <diegosouzapw@users.noreply.github.com>
2026-03-31 10:22:52 -03:00

117 lines
4.5 KiB
TypeScript

/**
* Domain Types — FASE-03 Architecture Refactoring
*
* Centralized type definitions for the OmniRoute domain layer.
* Uses JSDoc for type safety without TypeScript compilation.
*
* @module domain/types
*/
/**
* @typedef {'openai'|'claude'|'gemini'|'codex'|'qwen'|'deepseek'|'cohere'|'groq'|'blackbox'|'mistral'|'openrouter'} ProviderId
*/
/**
* @typedef {'apikey'|'oauth'|'bearer'} AuthType
*/
/**
* @typedef {Object} ProviderConnection
* @property {string} id - Unique connection ID
* @property {ProviderId} provider - Provider identifier
* @property {AuthType} authType - Authentication type
* @property {string} name - Display name
* @property {boolean} isActive - Whether the connection is active
* @property {string} [apiKey] - API key (for apikey auth)
* @property {string} [accessToken] - Access token (for oauth auth)
* @property {string} [refreshToken] - Refresh token (for oauth auth)
* @property {string} [email] - Email (for oauth auth)
* @property {string} [baseUrl] - Custom base URL
* @property {boolean} [rateLimitProtection] - Whether rate limit protection is enabled
* @property {string} createdAt - ISO timestamp
* @property {string} updatedAt - ISO timestamp
*/
/**
* @typedef {Object} Combo
* @property {string} id - Combo unique ID
* @property {string} name - Display name
* @property {'priority'|'weighted'|'round-robin'|'random'|'least-used'|'cost-optimized'} strategy - Selection strategy
* @property {Array<string|{model: string, weight?: number}>} models - Model entries
* @property {boolean} [isActive] - Whether the combo is active
*/
/**
* @typedef {Object} UsageEntry
* @property {string} id - Unique entry ID
* @property {string} model - Model identifier
* @property {string} provider - Provider identifier
* @property {string} connectionId - Connection ID
* @property {number} inputTokens - Input token count
* @property {number} outputTokens - Output token count
* @property {number} totalTokens - Total token count
* @property {number} [cost] - Estimated cost in USD
* @property {string} status - Request status (success, error, timeout)
* @property {number} latencyMs - Response latency in milliseconds
* @property {string} timestamp - ISO timestamp
*/
/**
* @typedef {Object} ChatRequest
* @property {Array<{role: string, content: string|Array}>} [messages] - OpenAI/Claude format
* @property {Array} [input] - Responses API format
* @property {string} [model] - Model identifier
* @property {string} [system] - System prompt (Claude format)
* @property {boolean} [stream] - Whether to stream response
* @property {number} [max_tokens] - Maximum output tokens
*/
/**
* @typedef {Object} SanitizeResult
* @property {boolean} blocked - Whether the request was blocked
* @property {boolean} modified - Whether the request body was modified
* @property {Array<{pattern: string, severity: string, matched: string}>} detections - Detected patterns
* @property {ChatRequest} [sanitizedBody] - Modified body (if redacted)
*/
/**
* @typedef {Object} SecretsValidationResult
* @property {boolean} valid - Whether all secrets pass validation
* @property {Array<{name: string, issue: string}>} errors - Critical errors
* @property {Array<{name: string, issue: string}>} warnings - Non-blocking warnings
*/
/**
* @typedef {Object} ProxyConfig
* @property {'http'|'https'|'socks5'} type - Proxy type
* @property {string} host - Proxy host
* @property {string} port - Proxy port
* @property {string} [username] - Proxy username
* @property {string} [password] - Proxy password
*/
/**
* @typedef {Object} AppSettings
* @property {boolean} requireLogin - Whether login is required
* @property {boolean} hasPassword - Whether a password has been set
* @property {string} [theme] - UI theme
* @property {string} [language] - UI language
* @property {boolean} [enableSocks5Proxy] - Whether SOCKS5 proxy is allowed
* @property {string} [instanceName] - Instance display name
* @property {string} [corsOrigins] - Allowed CORS origins
* @property {boolean} [call_log_pipeline_enabled] - Whether per-request pipeline capture is enabled
* @property {string[]} [hiddenSidebarItems] - Sidebar entry ids hidden for visual decluttering
*/
/**
* Standard API error response shape.
* @typedef {Object} ApiError
* @property {number} status - HTTP status code
* @property {string} code - Error code (e.g. 'INVALID_INPUT', 'AUTH_REQUIRED')
* @property {string} message - Human-readable error message
* @property {Object} [details] - Additional error details
*/
// Export nothing — this file is purely for JSDoc type definitions
export {};