(sessionId: string, patch: SessionHeaderPatch)
| 3239 | } |
| 3240 | |
| 3241 | private async updateHeader(sessionId: string, patch: SessionHeaderPatch): Promise<SessionHeader> { |
| 3242 | const next = await this.deps.store.updateHeader(sessionId, patch); |
| 3243 | this.updateCachedHeader(sessionId, next); |
| 3244 | return next; |
| 3245 | } |
| 3246 | |
| 3247 | private async appendTurnState( |
| 3248 | sessionId: string, |
no test coverage detected