fix(agentrun): 添加队列任务重试资源命令
This commit is contained in:
@@ -48,9 +48,9 @@ export type AgentRunFailureKind = "auth-missing" | "auth-failed" | "agentrun-con
|
||||
|
||||
export type AgentRunRestCompatGroup = "queue" | "sessions" | "aipod-specs" | "aipods" | "runs" | "commands" | "runner";
|
||||
|
||||
export type AgentRunResourceVerb = "get" | "describe" | "events" | "logs" | "result" | "ack" | "cancel" | "dispatch" | "create" | "apply" | "send" | "explain";
|
||||
export type AgentRunResourceVerb = "get" | "describe" | "events" | "logs" | "result" | "ack" | "cancel" | "retry" | "dispatch" | "create" | "apply" | "send" | "explain";
|
||||
|
||||
export type AgentRunResourceKind = "task" | "run" | "command" | "runnerjob" | "session" | "aipodspec";
|
||||
export type AgentRunResourceKind = "task" | "attempt" | "run" | "command" | "runnerjob" | "session" | "aipodspec";
|
||||
|
||||
export type AgentRunOutputMode = "human" | "wide" | "name" | "json" | "yaml";
|
||||
|
||||
@@ -65,6 +65,7 @@ export interface AgentRunResourceOptions {
|
||||
raw: boolean;
|
||||
debug: boolean;
|
||||
limit: number;
|
||||
cursor: number | null;
|
||||
queue: string | null;
|
||||
state: string | null;
|
||||
unread: boolean;
|
||||
|
||||
Reference in New Issue
Block a user