| 768 | } |
| 769 | |
| 770 | export interface CreateAPIKeyResponse { |
| 771 | id: number; |
| 772 | user_id: number; |
| 773 | key: string; |
| 774 | name: string; |
| 775 | config_type: 'antigravity' | 'kiro'; // 配置类型 |
| 776 | is_active: boolean; |
| 777 | created_at: string; |
| 778 | last_used_at: string | null; |
| 779 | expires_at: string | null; |
| 780 | } |
| 781 | |
| 782 | /** |
| 783 | * 获取 API Key 列表 |
nothing calls this directly
no outgoing calls
no test coverage detected