chore: remove unused api key type (#5395)

Integrated into release/v3.8.42
This commit is contained in:
Jan Leon
2026-06-30 00:20:02 +02:00
committed by GitHub
parent 3c28b936ba
commit 79c39e7dc9
2 changed files with 0 additions and 13 deletions

View File

@@ -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;
}

View File

@@ -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";