(msg)
| 24 | import { presentNextPendingInteraction, handleQuestionSubmissionError } from './interactions.js'; |
| 25 | |
| 26 | export function isAuthReadyMessage(msg) { |
| 27 | return !!msg && ( |
| 28 | msg.type === 'auth_ok' || |
| 29 | msg.type === 'status' || |
| 30 | msg.type === 'transcript_ready' || |
| 31 | msg.type === 'replay_done' || |
| 32 | msg.type === 'turn_state' |
| 33 | ); |
| 34 | } |
| 35 | |
| 36 | function finalizeAuthenticatedConnection() { |
| 37 | if (S.authenticated) return; |
no outgoing calls
no test coverage detected