| 1 | /** Shared TypeScript types */ |
| 2 | |
| 3 | export interface User { |
| 4 | id: string; |
| 5 | username: string; |
| 6 | email: string; |
| 7 | display_name: string; |
| 8 | avatar_url?: string; |
| 9 | role: 'platform_admin' | 'org_admin' | 'agent_admin' | 'member'; |
| 10 | is_platform_admin?: boolean; |
| 11 | tenant_id?: string; |
| 12 | title?: string; |
| 13 | feishu_open_id?: string; |
| 14 | is_active: boolean; |
| 15 | email_verified?: boolean; |
| 16 | created_at: string; |
| 17 | } |
| 18 | |
| 19 | export interface Agent { |
| 20 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected