UNPKG

eve

Version:

Filesystem-first framework for durable backend AI agents that run anywhere.

8 lines (7 loc) 429 B
import { type DurableSessionState } from "#execution/durable-session-store.js"; import { type TaskAuthorizationEventDelivery } from "#tasks/types.js"; /** Accepts authorization events from the workflow task itself or an agent it owns. */ export declare function acceptTaskAuthorizationEventStep(input: { readonly delivery: TaskAuthorizationEventDelivery; readonly sessionState: DurableSessionState; }): Promise<boolean>;