shinroute / src /types /apiKey.ts
shinmentakezo07
Add OmniRoute codebase without binary assets
9e4583c
Raw
History Blame Contribute Delete
245 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;
}