install / index / uninstall — buffered like everything else.
(event: LifecycleEvent, props: Record<string, unknown>)
| 254 | |
| 255 | /** install / index / uninstall — buffered like everything else. */ |
| 256 | recordLifecycle(event: LifecycleEvent, props: Record<string, unknown>): void { |
| 257 | if (!this.isEnabled()) return; |
| 258 | this.events.push({ v: SCHEMA_VERSION, ev: event, ts: this.now().toISOString(), props }); |
| 259 | this.ensureExitHook(); |
| 260 | } |
| 261 | |
| 262 | // ---------------------------------------------------------------- sending |
| 263 |
no test coverage detected