chatbolt-dev / apps /agent-service /libs /shared /src /entities /api-key.entity.d.ts
MTayyaBH
Refactor code structure for improved readability and maintainability
d714fad
Raw
History Blame Contribute Delete
239 Bytes
import { Agent } from './agent.entity';
export declare class ApiKey {
id: string;
agent_id: string;
key_hash: string;
key_prefix: string;
is_active: boolean;
label: string;
created_at: Date;
agent: Agent;
}