eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
15 lines (14 loc) • 570 B
TypeScript
import { z } from "#compiled/zod/index.js";
/** Outcome of retiring one exact durable session. */
export type ResetStatus = "no_active_session" | "reset";
/** Successful response returned by the standard session-reset route. */
export type ResetResponse = {
readonly ok: true;
readonly previousSessionId: string;
readonly status: "reset";
} | {
readonly ok: true;
readonly status: "no_active_session";
};
/** Validates successful responses from the standard session-reset route. */
export declare const ResetResponseSchema: z.ZodType<ResetResponse>;