fiemwl / src /types /apiKey.ts
automindy's picture
Upload 1980 files
6111b2b verified
Raw
History Blame Contribute Delete
257 Bytes
/**
* 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;
}