* Device authorization flow response types
| 86 | * Device authorization flow response types |
| 87 | */ |
| 88 | interface DeviceSessionInfo { |
| 89 | deviceId: string; |
| 90 | cliVersion: string; |
| 91 | host: string; |
| 92 | status: 'pending' | 'authorized' | 'cancelled' | 'expired'; |
| 93 | createdAt: string; |
| 94 | expiresAt: string; |
| 95 | userCode?: string; |
| 96 | } |
| 97 | |
| 98 | interface DeviceSessionWithTokens extends DeviceSessionInfo { |
| 99 | accessToken?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected