(frame: { type: string; seq?: number; session_id?: string; payload?: unknown })
| 186 | }); |
| 187 | |
| 188 | function frameForLog(frame: { type: string; seq?: number; session_id?: string; payload?: unknown }): Record<string, unknown> { |
| 189 | return { |
| 190 | type: frame.type, |
| 191 | seq: frame.seq, |
| 192 | session_id: frame.session_id, |
| 193 | payload: frame.payload, |
| 194 | }; |
| 195 | } |
| 196 | |
| 197 | function sessionSummaryForLog(session: { |
| 198 | id: string; |
no outgoing calls
no test coverage detected