| 18 | } |
| 19 | |
| 20 | export interface PairedDevice { |
| 21 | deviceId: string; |
| 22 | displayName?: string; |
| 23 | platform?: string; |
| 24 | clientId?: string; |
| 25 | clientMode?: string; |
| 26 | role?: string; |
| 27 | roles?: string[]; |
| 28 | scopes?: string[]; |
| 29 | createdAtMs: number; |
| 30 | approvedAtMs: number; |
| 31 | } |
| 32 | |
| 33 | export interface DeviceListResponse { |
| 34 | pending: PendingDevice[]; |
nothing calls this directly
no outgoing calls
no test coverage detected