Regenerate catalog for post-merge line shifts; drop pruned continuation trigger from turn/start JSDoc

Merging master brought the producerless-vocabulary prune that removed
TurnTriggerMap's continuation variant: the source pointers above
SessionEventMap shifted by one line (the staleness CI caught on the
merge tree), and the new turn/start JSDoc still named the pruned
variant.
This commit is contained in:
Tianyi Cui
2026-07-04 23:42:47 +08:00
parent 2c9e5ee756
commit a23982b30a
2 changed files with 17 additions and 17 deletions

View File

@@ -199,9 +199,9 @@ export interface TodoItem {
export interface SessionEventMap {
/**
* Opens turn `turn`. `trigger` records what started it — a drained message
* batch, a continuation, or an idle-time injection. The turn is the
* durability/replay boundary: every event sits between a `turn/start` and its
* matching `turn/end` (the turn-enclosure invariant).
* batch or an idle-time injection. The turn is the durability/replay
* boundary: every event sits between a `turn/start` and its matching
* `turn/end` (the turn-enclosure invariant).
*/
'turn/start': { turn: number; trigger: TurnTrigger }
/**