diff --git a/src/types/apiKey.ts b/src/types/apiKey.ts deleted file mode 100644 index 01f09a0294..0000000000 --- a/src/types/apiKey.ts +++ /dev/null @@ -1,12 +0,0 @@ -/** - * API key — authentication credential for accessing the OmniRoute proxy. - */ -export interface ApiKey { - id: string; - key: string; - label: string; - isActive: boolean; - createdAt: string; - lastUsedAt?: string; - usageCount: number; -} diff --git a/src/types/index.ts b/src/types/index.ts index d7a6a13a8c..cd5c0998dd 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -6,7 +6,6 @@ */ export type { ModelCooldownErrorPayload } from "./provider"; -export type { ApiKey } from "./apiKey"; export type { UsageEntry, UsageStats, ProviderUsageStats, ModelUsageStats, CallLog } from "./usage"; export type { DatabaseSettings } from "./databaseSettings"; export { DEFAULT_DATABASE_SETTINGS } from "./databaseSettings";