Merge pull request #282 from LLLLLLiulei/feat/ip-management-enhancements
feat: enhance proxy management
This commit is contained in:
@@ -364,10 +364,21 @@ export interface Proxy {
|
||||
password?: string | null
|
||||
status: 'active' | 'inactive'
|
||||
account_count?: number // Number of accounts using this proxy
|
||||
latency_ms?: number
|
||||
latency_status?: 'success' | 'failed'
|
||||
latency_message?: string
|
||||
created_at: string
|
||||
updated_at: string
|
||||
}
|
||||
|
||||
export interface ProxyAccountSummary {
|
||||
id: number
|
||||
name: string
|
||||
platform: AccountPlatform
|
||||
type: AccountType
|
||||
notes?: string | null
|
||||
}
|
||||
|
||||
// Gemini credentials structure for OAuth and API Key authentication
|
||||
export interface GeminiCredentials {
|
||||
// API Key authentication
|
||||
|
||||
Reference in New Issue
Block a user