| 15 | import { sendNotification } from './notify.js'; |
| 16 | |
| 17 | export interface ClientCredentialsTokenResponse { |
| 18 | access_token: string; |
| 19 | expires_in: number; |
| 20 | expires_at: string; |
| 21 | token_type: string; |
| 22 | client_id: string; |
| 23 | internal_client: boolean; |
| 24 | client_service: string; |
| 25 | } |
| 26 | |
| 27 | export interface DeviceAuthResponse { |
| 28 | deviceId: string; |
nothing calls this directly
no outgoing calls
no test coverage detected