Merge pull request #41655 from BerriAI/litellm_remove_unused_access_group_types

chore(ui): remove unused access-groups type interfaces
This commit is contained in:
Mateo Wang 2026-09-18 08:47:34 -07:00 committed by GitHub
commit e9823c6063
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,35 +12,3 @@ export interface AccessGroup {
updatedAt: string;
updatedBy: string;
}
export interface Model {
id: string;
name: string;
provider: string;
}
export interface McpServer {
id: string;
name: string;
endpoint: string;
}
export interface Agent {
id: string;
name: string;
type: string;
}
export interface AccessGroupKey {
id: string;
alias: string;
status: string;
createdAt: string;
}
export interface AccessGroupTeam {
id: string;
name: string;
members: number;
role: string;
}