(data: string)
| 585 | } |
| 586 | }, |
| 587 | writeStdin(data: string): void { |
| 588 | if (child.stdin && !child.stdin.destroyed) { |
| 589 | deps.onDebug( |
| 590 | `[bridge:ws] sessionId=${opts.sessionId} >>> ${debugTruncate(data)}`, |
| 591 | ) |
| 592 | child.stdin.write(data) |
| 593 | } |
| 594 | }, |
| 595 | updateAccessToken(token: string): void { |
| 596 | currentAccessToken = token |
| 597 | currentSessionIngressLease = buildSessionIngressLease({ |
nothing calls this directly
no test coverage detected