Gateway: add timeout session status

This commit is contained in:
Tyler Yust 2026-03-12 18:03:12 -07:00
parent 61c9cc812c
commit f7e95ca0ff
3 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ export type SessionListDeliveryContext = {
accountId?: string;
};
export type SessionRunStatus = "running" | "done" | "failed" | "killed";
export type SessionRunStatus = "running" | "done" | "failed" | "killed" | "timeout";
export type SessionListRow = {
key: string;

View File

@ -13,7 +13,7 @@ export type GatewaySessionsDefaults = {
contextTokens: number | null;
};
export type SessionRunStatus = "running" | "done" | "failed" | "killed";
export type SessionRunStatus = "running" | "done" | "failed" | "killed" | "timeout";
export type GatewaySessionRow = {
key: string;

View File

@ -364,7 +364,7 @@ export type AgentsFilesSetResult = {
file: AgentFileEntry;
};
export type SessionRunStatus = "running" | "done" | "failed" | "killed";
export type SessionRunStatus = "running" | "done" | "failed" | "killed" | "timeout";
export type GatewaySessionRow = {
key: string;