eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
8 lines (7 loc) • 413 B
TypeScript
import type { SessionAuthContext } from "#channel/types.js";
/**
* Framework-owned principal used when a schedule runs on behalf of the agent.
*/
export declare const SCHEDULE_APP_AUTH: SessionAuthContext;
/** Returns whether the current request is authenticated as eve's schedule principal. */
export declare function isScheduleAppAuth(auth: SessionAuthContext | null | undefined): auth is SessionAuthContext;