Fields every request shares: auth secret + protocol version.
| 13 | |
| 14 | /** Fields every request shares: auth secret + protocol version. */ |
| 15 | interface RequestEnvelope { |
| 16 | /** Per-install shared secret; the helper rejects mismatches. */ |
| 17 | secret: string |
| 18 | /** Protocol version for the compatibility handshake. */ |
| 19 | version: string |
| 20 | } |
| 21 | |
| 22 | /** Liveness probe. */ |
| 23 | export interface PingRequest extends RequestEnvelope { |
nothing calls this directly
no outgoing calls
no test coverage detected