Skip to content

Documentation / @agentick/shared / EntryCommittedEvent

Type Alias: EntryCommittedEvent ​

EntryCommittedEvent = object & StreamEventBase

Defined in: streaming.ts:636

Entry committed event — fires when a timeline entry is pushed to the session timeline.

Emitted from session.ingestTickResult() after each _timeline.push(). Carries the full entry with a stable ID for incremental persistence.

Event ordering guarantee: fires AFTER execution_start and tick_start, BEFORE tick_end. Safe to INSERT with execution_id FK.

Type Declaration ​

entry ​

entry: unknown

The timeline entry (COMTimelineEntry at runtime, unknown for wire safety)

executionId ​

executionId: string

Execution this entry belongs to

timelineIndex ​

timelineIndex: number

Absolute position in session._timeline

type ​

type: "entry_committed"

Released under the ISC License.