eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
11 lines (10 loc) • 443 B
TypeScript
import type { SessionCommand } from "#channel/types.js";
/** Settles side effects owned by a session candidate that lost its continuation claim. */
export declare function settleContinuationConflictStep(input: {
readonly activityCollectorRunId?: string;
readonly command?: Extract<SessionCommand, {
readonly kind: "send";
}>;
readonly continuationToken: string;
readonly ownerSessionId?: string;
}): Promise<void>;