@seawork/server 1.0.7 → 1.0.10-rc.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/server/client/daemon-client.d.ts +32 -1
- package/dist/server/client/daemon-client.d.ts.map +1 -1
- package/dist/server/client/daemon-client.js +69 -0
- package/dist/server/client/daemon-client.js.map +1 -1
- package/dist/server/server/agent/agent-management-mcp.d.ts.map +1 -1
- package/dist/server/server/agent/agent-management-mcp.js +6 -5
- package/dist/server/server/agent/agent-management-mcp.js.map +1 -1
- package/dist/server/server/agent/agent-response-loop.d.ts.map +1 -1
- package/dist/server/server/agent/agent-response-loop.js +0 -1
- package/dist/server/server/agent/agent-response-loop.js.map +1 -1
- package/dist/server/server/agent/agent-storage.d.ts +68 -68
- package/dist/server/server/agent/mcp-server.d.ts.map +1 -1
- package/dist/server/server/agent/mcp-server.js +6 -5
- package/dist/server/server/agent/mcp-server.js.map +1 -1
- package/dist/server/server/agent/mcp-shared.d.ts +30 -30
- package/dist/server/server/agent/provider-manifest.d.ts +2 -1
- package/dist/server/server/agent/provider-manifest.d.ts.map +1 -1
- package/dist/server/server/agent/provider-manifest.js +3 -64
- package/dist/server/server/agent/provider-manifest.js.map +1 -1
- package/dist/server/server/agent/provider-registry.d.ts.map +1 -1
- package/dist/server/server/agent/provider-registry.js +2 -10
- package/dist/server/server/agent/provider-registry.js.map +1 -1
- package/dist/server/server/agent/providers/claude/claude-models.d.ts.map +1 -1
- package/dist/server/server/agent/providers/claude/claude-models.js +3 -0
- package/dist/server/server/agent/providers/claude/claude-models.js.map +1 -1
- package/dist/server/server/agent/providers/claude/task-notification-tool-call.d.ts +2 -2
- package/dist/server/server/agent/providers/claude-agent.d.ts +2 -1
- package/dist/server/server/agent/providers/claude-agent.d.ts.map +1 -1
- package/dist/server/server/agent/providers/claude-agent.js +167 -22
- package/dist/server/server/agent/providers/claude-agent.js.map +1 -1
- package/dist/server/server/agent/providers/codex-app-server-agent.d.ts.map +1 -1
- package/dist/server/server/agent/providers/codex-app-server-agent.js +106 -3
- package/dist/server/server/agent/providers/codex-app-server-agent.js.map +1 -1
- package/dist/server/server/agent/providers/codex-rollout-timeline.d.ts.map +1 -1
- package/dist/server/server/agent/providers/codex-rollout-timeline.js +76 -0
- package/dist/server/server/agent/providers/codex-rollout-timeline.js.map +1 -1
- package/dist/server/server/agent/providers/seawork-models.d.ts.map +1 -1
- package/dist/server/server/agent/providers/seawork-models.js +9 -0
- package/dist/server/server/agent/providers/seawork-models.js.map +1 -1
- package/dist/server/server/agent/providers/tool-call-detail-primitives.d.ts +16 -16
- package/dist/server/server/bug-report-handler.d.ts +9 -0
- package/dist/server/server/bug-report-handler.d.ts.map +1 -0
- package/dist/server/server/bug-report-handler.js +111 -0
- package/dist/server/server/bug-report-handler.js.map +1 -0
- package/dist/server/server/bug-report-redact.d.ts +12 -0
- package/dist/server/server/bug-report-redact.d.ts.map +1 -0
- package/dist/server/server/bug-report-redact.js +63 -0
- package/dist/server/server/bug-report-redact.js.map +1 -0
- package/dist/server/server/chat/chat-rpc-schemas.d.ts +26 -26
- package/dist/server/server/chat/chat-types.d.ts +2 -2
- package/dist/server/server/exports.d.ts +4 -2
- package/dist/server/server/exports.d.ts.map +1 -1
- package/dist/server/server/exports.js +3 -0
- package/dist/server/server/exports.js.map +1 -1
- package/dist/server/server/index.js +47 -0
- package/dist/server/server/index.js.map +1 -1
- package/dist/server/server/loop/rpc-schemas.d.ts +775 -775
- package/dist/server/server/loop-service.d.ts +108 -108
- package/dist/server/server/persisted-config.d.ts +121 -121
- package/dist/server/server/sac/errors.d.ts +1 -0
- package/dist/server/server/sac/errors.d.ts.map +1 -1
- package/dist/server/server/sac/errors.js +2 -1
- package/dist/server/server/sac/errors.js.map +1 -1
- package/dist/server/server/sac/generate.d.ts +19 -11
- package/dist/server/server/sac/generate.d.ts.map +1 -1
- package/dist/server/server/sac/generate.js +131 -36
- package/dist/server/server/sac/generate.js.map +1 -1
- package/dist/server/server/sac/index.d.ts +8 -10
- package/dist/server/server/sac/index.d.ts.map +1 -1
- package/dist/server/server/sac/index.js +5 -17
- package/dist/server/server/sac/index.js.map +1 -1
- package/dist/server/server/sac/providers/alibaba.d.ts +2 -0
- package/dist/server/server/sac/providers/alibaba.d.ts.map +1 -0
- package/dist/server/server/sac/providers/alibaba.js +506 -0
- package/dist/server/server/sac/providers/alibaba.js.map +1 -0
- package/dist/server/server/sac/providers/audio.d.ts +2 -0
- package/dist/server/server/sac/providers/audio.d.ts.map +1 -0
- package/dist/server/server/sac/providers/audio.js +57 -0
- package/dist/server/server/sac/providers/audio.js.map +1 -0
- package/dist/server/server/sac/providers/kling.d.ts +2 -0
- package/dist/server/server/sac/providers/kling.d.ts.map +1 -0
- package/dist/server/server/sac/providers/kling.js +589 -0
- package/dist/server/server/sac/providers/kling.js.map +1 -0
- package/dist/server/server/sac/providers/nano.d.ts +2 -0
- package/dist/server/server/sac/providers/nano.d.ts.map +1 -0
- package/dist/server/server/sac/providers/nano.js +37 -0
- package/dist/server/server/sac/providers/nano.js.map +1 -0
- package/dist/server/server/sac/providers/pixverse.d.ts +2 -0
- package/dist/server/server/sac/providers/pixverse.d.ts.map +1 -0
- package/dist/server/server/sac/providers/pixverse.js +1017 -0
- package/dist/server/server/sac/providers/pixverse.js.map +1 -0
- package/dist/server/server/sac/providers/registry.d.ts +34 -0
- package/dist/server/server/sac/providers/registry.d.ts.map +1 -0
- package/dist/server/server/sac/providers/registry.js +57 -0
- package/dist/server/server/sac/providers/registry.js.map +1 -0
- package/dist/server/server/sac/providers/seaart.d.ts +1 -4
- package/dist/server/server/sac/providers/seaart.d.ts.map +1 -1
- package/dist/server/server/sac/providers/seaart.js +8 -18
- package/dist/server/server/sac/providers/seaart.js.map +1 -1
- package/dist/server/server/sac/providers/store.d.ts +9 -5
- package/dist/server/server/sac/providers/store.d.ts.map +1 -1
- package/dist/server/server/sac/providers/store.js +0 -3
- package/dist/server/server/sac/providers/store.js.map +1 -1
- package/dist/server/server/sac/providers/tencent-3d.d.ts +2 -0
- package/dist/server/server/sac/providers/tencent-3d.d.ts.map +1 -0
- package/dist/server/server/sac/providers/tencent-3d.js +210 -0
- package/dist/server/server/sac/providers/tencent-3d.js.map +1 -0
- package/dist/server/server/sac/providers/tencent-image.d.ts +2 -0
- package/dist/server/server/sac/providers/tencent-image.d.ts.map +1 -0
- package/dist/server/server/sac/providers/tencent-image.js +90 -0
- package/dist/server/server/sac/providers/tencent-image.js.map +1 -0
- package/dist/server/server/sac/providers/tencent-video.d.ts +2 -0
- package/dist/server/server/sac/providers/tencent-video.d.ts.map +1 -0
- package/dist/server/server/sac/providers/tencent-video.js +103 -0
- package/dist/server/server/sac/providers/tencent-video.js.map +1 -0
- package/dist/server/server/sac/providers/tripo3d.d.ts +2 -0
- package/dist/server/server/sac/providers/tripo3d.d.ts.map +1 -0
- package/dist/server/server/sac/providers/tripo3d.js +302 -0
- package/dist/server/server/sac/providers/tripo3d.js.map +1 -0
- package/dist/server/server/sac/providers/vidu.d.ts +2 -0
- package/dist/server/server/sac/providers/vidu.d.ts.map +1 -0
- package/dist/server/server/sac/providers/vidu.js +965 -0
- package/dist/server/server/sac/providers/vidu.js.map +1 -0
- package/dist/server/server/sac/providers/volces-3d.d.ts +2 -0
- package/dist/server/server/sac/providers/volces-3d.d.ts.map +1 -0
- package/dist/server/server/sac/providers/volces-3d.js +77 -0
- package/dist/server/server/sac/providers/volces-3d.js.map +1 -0
- package/dist/server/server/sac/providers/volces-video.d.ts +2 -0
- package/dist/server/server/sac/providers/volces-video.d.ts.map +1 -0
- package/dist/server/server/sac/providers/volces-video.js +392 -0
- package/dist/server/server/sac/providers/volces-video.js.map +1 -0
- package/dist/server/server/sac/providers/volces.d.ts +1 -4
- package/dist/server/server/sac/providers/volces.d.ts.map +1 -1
- package/dist/server/server/sac/providers/volces.js +279 -66
- package/dist/server/server/sac/providers/volces.js.map +1 -1
- package/dist/server/server/sac/types.d.ts +13 -30
- package/dist/server/server/sac/types.d.ts.map +1 -1
- package/dist/server/server/schedule/rpc-schemas.d.ts +493 -493
- package/dist/server/server/schedule/types.d.ts +140 -140
- package/dist/server/server/session.d.ts +9 -2
- package/dist/server/server/session.d.ts.map +1 -1
- package/dist/server/server/session.js +137 -19
- package/dist/server/server/session.js.map +1 -1
- package/dist/server/server/speech/speech-types.d.ts +2 -2
- package/dist/server/server/workspace-registry.d.ts +4 -4
- package/dist/server/shared/messages.d.ts +17455 -15917
- package/dist/server/shared/messages.d.ts.map +1 -1
- package/dist/server/shared/messages.js +83 -0
- package/dist/server/shared/messages.js.map +1 -1
- package/dist/server/utils/spawn.d.ts.map +1 -1
- package/dist/server/utils/spawn.js +8 -3
- package/dist/server/utils/spawn.js.map +1 -1
- package/dist/server/utils/worktree-metadata.d.ts +4 -4
- package/package.json +7 -9
- package/dist/server/server/agent/providers/acp-agent.d.ts +0 -202
- package/dist/server/server/agent/providers/acp-agent.d.ts.map +0 -1
- package/dist/server/server/agent/providers/acp-agent.js +0 -1650
- package/dist/server/server/agent/providers/acp-agent.js.map +0 -1
- package/dist/server/server/agent/providers/copilot-acp-agent.d.ts +0 -16
- package/dist/server/server/agent/providers/copilot-acp-agent.d.ts.map +0 -1
- package/dist/server/server/agent/providers/copilot-acp-agent.js +0 -95
- package/dist/server/server/agent/providers/copilot-acp-agent.js.map +0 -1
- package/dist/server/server/agent/providers/opencode/tool-call-detail-parser.d.ts +0 -3
- package/dist/server/server/agent/providers/opencode/tool-call-detail-parser.d.ts.map +0 -1
- package/dist/server/server/agent/providers/opencode/tool-call-detail-parser.js +0 -39
- package/dist/server/server/agent/providers/opencode/tool-call-detail-parser.js.map +0 -1
- package/dist/server/server/agent/providers/opencode/tool-call-mapper.d.ts +0 -13
- package/dist/server/server/agent/providers/opencode/tool-call-mapper.d.ts.map +0 -1
- package/dist/server/server/agent/providers/opencode/tool-call-mapper.js +0 -144
- package/dist/server/server/agent/providers/opencode/tool-call-mapper.js.map +0 -1
- package/dist/server/server/agent/providers/opencode-agent.d.ts +0 -121
- package/dist/server/server/agent/providers/opencode-agent.d.ts.map +0 -1
- package/dist/server/server/agent/providers/opencode-agent.js +0 -1649
- package/dist/server/server/agent/providers/opencode-agent.js.map +0 -1
- package/dist/server/server/agent/providers/pi-acp-agent.d.ts +0 -28
- package/dist/server/server/agent/providers/pi-acp-agent.d.ts.map +0 -1
- package/dist/server/server/agent/providers/pi-acp-agent.js +0 -302
- package/dist/server/server/agent/providers/pi-acp-agent.js.map +0 -1
|
@@ -27,20 +27,20 @@ export declare const ScheduleCreateRequestSchema: z.ZodObject<{
|
|
|
27
27
|
type: z.ZodLiteral<"self">;
|
|
28
28
|
agentId: z.ZodString;
|
|
29
29
|
}, "strip", z.ZodTypeAny, {
|
|
30
|
-
agentId: string;
|
|
31
30
|
type: "self";
|
|
32
|
-
}, {
|
|
33
31
|
agentId: string;
|
|
32
|
+
}, {
|
|
34
33
|
type: "self";
|
|
34
|
+
agentId: string;
|
|
35
35
|
}>, z.ZodObject<{
|
|
36
36
|
type: z.ZodLiteral<"agent">;
|
|
37
37
|
agentId: z.ZodString;
|
|
38
38
|
}, "strip", z.ZodTypeAny, {
|
|
39
|
-
agentId: string;
|
|
40
39
|
type: "agent";
|
|
41
|
-
}, {
|
|
42
40
|
agentId: string;
|
|
41
|
+
}, {
|
|
43
42
|
type: "agent";
|
|
43
|
+
agentId: string;
|
|
44
44
|
}>, z.ZodObject<{
|
|
45
45
|
type: z.ZodLiteral<"new-agent">;
|
|
46
46
|
config: z.ZodObject<{
|
|
@@ -58,11 +58,11 @@ export declare const ScheduleCreateRequestSchema: z.ZodObject<{
|
|
|
58
58
|
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
59
59
|
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
60
60
|
}, "strip", z.ZodTypeAny, {
|
|
61
|
-
claude?: Record<string, unknown> | undefined;
|
|
62
61
|
codex?: Record<string, unknown> | undefined;
|
|
63
|
-
}, {
|
|
64
62
|
claude?: Record<string, unknown> | undefined;
|
|
63
|
+
}, {
|
|
65
64
|
codex?: Record<string, unknown> | undefined;
|
|
65
|
+
claude?: Record<string, unknown> | undefined;
|
|
66
66
|
}>>;
|
|
67
67
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
68
68
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -70,36 +70,36 @@ export declare const ScheduleCreateRequestSchema: z.ZodObject<{
|
|
|
70
70
|
provider: string;
|
|
71
71
|
cwd: string;
|
|
72
72
|
title?: string | null | undefined;
|
|
73
|
+
model?: string | undefined;
|
|
73
74
|
thinkingOptionId?: string | undefined;
|
|
74
75
|
modeId?: string | undefined;
|
|
75
|
-
|
|
76
|
+
approvalPolicy?: string | undefined;
|
|
77
|
+
sandboxMode?: string | undefined;
|
|
78
|
+
networkAccess?: boolean | undefined;
|
|
79
|
+
webSearch?: boolean | undefined;
|
|
76
80
|
extra?: {
|
|
77
|
-
claude?: Record<string, unknown> | undefined;
|
|
78
81
|
codex?: Record<string, unknown> | undefined;
|
|
82
|
+
claude?: Record<string, unknown> | undefined;
|
|
79
83
|
} | undefined;
|
|
80
84
|
systemPrompt?: string | undefined;
|
|
81
85
|
mcpServers?: Record<string, unknown> | undefined;
|
|
82
|
-
approvalPolicy?: string | undefined;
|
|
83
|
-
sandboxMode?: string | undefined;
|
|
84
|
-
networkAccess?: boolean | undefined;
|
|
85
|
-
webSearch?: boolean | undefined;
|
|
86
86
|
}, {
|
|
87
87
|
provider: string;
|
|
88
88
|
cwd: string;
|
|
89
89
|
title?: string | null | undefined;
|
|
90
|
+
model?: string | undefined;
|
|
90
91
|
thinkingOptionId?: string | undefined;
|
|
91
92
|
modeId?: string | undefined;
|
|
92
|
-
|
|
93
|
+
approvalPolicy?: string | undefined;
|
|
94
|
+
sandboxMode?: string | undefined;
|
|
95
|
+
networkAccess?: boolean | undefined;
|
|
96
|
+
webSearch?: boolean | undefined;
|
|
93
97
|
extra?: {
|
|
94
|
-
claude?: Record<string, unknown> | undefined;
|
|
95
98
|
codex?: Record<string, unknown> | undefined;
|
|
99
|
+
claude?: Record<string, unknown> | undefined;
|
|
96
100
|
} | undefined;
|
|
97
101
|
systemPrompt?: string | undefined;
|
|
98
102
|
mcpServers?: Record<string, unknown> | undefined;
|
|
99
|
-
approvalPolicy?: string | undefined;
|
|
100
|
-
sandboxMode?: string | undefined;
|
|
101
|
-
networkAccess?: boolean | undefined;
|
|
102
|
-
webSearch?: boolean | undefined;
|
|
103
103
|
}>;
|
|
104
104
|
}, "strip", z.ZodTypeAny, {
|
|
105
105
|
type: "new-agent";
|
|
@@ -107,19 +107,19 @@ export declare const ScheduleCreateRequestSchema: z.ZodObject<{
|
|
|
107
107
|
provider: string;
|
|
108
108
|
cwd: string;
|
|
109
109
|
title?: string | null | undefined;
|
|
110
|
+
model?: string | undefined;
|
|
110
111
|
thinkingOptionId?: string | undefined;
|
|
111
112
|
modeId?: string | undefined;
|
|
112
|
-
|
|
113
|
+
approvalPolicy?: string | undefined;
|
|
114
|
+
sandboxMode?: string | undefined;
|
|
115
|
+
networkAccess?: boolean | undefined;
|
|
116
|
+
webSearch?: boolean | undefined;
|
|
113
117
|
extra?: {
|
|
114
|
-
claude?: Record<string, unknown> | undefined;
|
|
115
118
|
codex?: Record<string, unknown> | undefined;
|
|
119
|
+
claude?: Record<string, unknown> | undefined;
|
|
116
120
|
} | undefined;
|
|
117
121
|
systemPrompt?: string | undefined;
|
|
118
122
|
mcpServers?: Record<string, unknown> | undefined;
|
|
119
|
-
approvalPolicy?: string | undefined;
|
|
120
|
-
sandboxMode?: string | undefined;
|
|
121
|
-
networkAccess?: boolean | undefined;
|
|
122
|
-
webSearch?: boolean | undefined;
|
|
123
123
|
};
|
|
124
124
|
}, {
|
|
125
125
|
type: "new-agent";
|
|
@@ -127,19 +127,19 @@ export declare const ScheduleCreateRequestSchema: z.ZodObject<{
|
|
|
127
127
|
provider: string;
|
|
128
128
|
cwd: string;
|
|
129
129
|
title?: string | null | undefined;
|
|
130
|
+
model?: string | undefined;
|
|
130
131
|
thinkingOptionId?: string | undefined;
|
|
131
132
|
modeId?: string | undefined;
|
|
132
|
-
|
|
133
|
+
approvalPolicy?: string | undefined;
|
|
134
|
+
sandboxMode?: string | undefined;
|
|
135
|
+
networkAccess?: boolean | undefined;
|
|
136
|
+
webSearch?: boolean | undefined;
|
|
133
137
|
extra?: {
|
|
134
|
-
claude?: Record<string, unknown> | undefined;
|
|
135
138
|
codex?: Record<string, unknown> | undefined;
|
|
139
|
+
claude?: Record<string, unknown> | undefined;
|
|
136
140
|
} | undefined;
|
|
137
141
|
systemPrompt?: string | undefined;
|
|
138
142
|
mcpServers?: Record<string, unknown> | undefined;
|
|
139
|
-
approvalPolicy?: string | undefined;
|
|
140
|
-
sandboxMode?: string | undefined;
|
|
141
|
-
networkAccess?: boolean | undefined;
|
|
142
|
-
webSearch?: boolean | undefined;
|
|
143
143
|
};
|
|
144
144
|
}>]>;
|
|
145
145
|
maxRuns: z.ZodOptional<z.ZodNumber>;
|
|
@@ -156,30 +156,30 @@ export declare const ScheduleCreateRequestSchema: z.ZodObject<{
|
|
|
156
156
|
expression: string;
|
|
157
157
|
};
|
|
158
158
|
target: {
|
|
159
|
-
agentId: string;
|
|
160
159
|
type: "self";
|
|
161
|
-
} | {
|
|
162
160
|
agentId: string;
|
|
161
|
+
} | {
|
|
163
162
|
type: "agent";
|
|
163
|
+
agentId: string;
|
|
164
164
|
} | {
|
|
165
165
|
type: "new-agent";
|
|
166
166
|
config: {
|
|
167
167
|
provider: string;
|
|
168
168
|
cwd: string;
|
|
169
169
|
title?: string | null | undefined;
|
|
170
|
+
model?: string | undefined;
|
|
170
171
|
thinkingOptionId?: string | undefined;
|
|
171
172
|
modeId?: string | undefined;
|
|
172
|
-
|
|
173
|
+
approvalPolicy?: string | undefined;
|
|
174
|
+
sandboxMode?: string | undefined;
|
|
175
|
+
networkAccess?: boolean | undefined;
|
|
176
|
+
webSearch?: boolean | undefined;
|
|
173
177
|
extra?: {
|
|
174
|
-
claude?: Record<string, unknown> | undefined;
|
|
175
178
|
codex?: Record<string, unknown> | undefined;
|
|
179
|
+
claude?: Record<string, unknown> | undefined;
|
|
176
180
|
} | undefined;
|
|
177
181
|
systemPrompt?: string | undefined;
|
|
178
182
|
mcpServers?: Record<string, unknown> | undefined;
|
|
179
|
-
approvalPolicy?: string | undefined;
|
|
180
|
-
sandboxMode?: string | undefined;
|
|
181
|
-
networkAccess?: boolean | undefined;
|
|
182
|
-
webSearch?: boolean | undefined;
|
|
183
183
|
};
|
|
184
184
|
};
|
|
185
185
|
name?: string | undefined;
|
|
@@ -197,30 +197,30 @@ export declare const ScheduleCreateRequestSchema: z.ZodObject<{
|
|
|
197
197
|
expression: string;
|
|
198
198
|
};
|
|
199
199
|
target: {
|
|
200
|
-
agentId: string;
|
|
201
200
|
type: "self";
|
|
202
|
-
} | {
|
|
203
201
|
agentId: string;
|
|
202
|
+
} | {
|
|
204
203
|
type: "agent";
|
|
204
|
+
agentId: string;
|
|
205
205
|
} | {
|
|
206
206
|
type: "new-agent";
|
|
207
207
|
config: {
|
|
208
208
|
provider: string;
|
|
209
209
|
cwd: string;
|
|
210
210
|
title?: string | null | undefined;
|
|
211
|
+
model?: string | undefined;
|
|
211
212
|
thinkingOptionId?: string | undefined;
|
|
212
213
|
modeId?: string | undefined;
|
|
213
|
-
|
|
214
|
+
approvalPolicy?: string | undefined;
|
|
215
|
+
sandboxMode?: string | undefined;
|
|
216
|
+
networkAccess?: boolean | undefined;
|
|
217
|
+
webSearch?: boolean | undefined;
|
|
214
218
|
extra?: {
|
|
215
|
-
claude?: Record<string, unknown> | undefined;
|
|
216
219
|
codex?: Record<string, unknown> | undefined;
|
|
220
|
+
claude?: Record<string, unknown> | undefined;
|
|
217
221
|
} | undefined;
|
|
218
222
|
systemPrompt?: string | undefined;
|
|
219
223
|
mcpServers?: Record<string, unknown> | undefined;
|
|
220
|
-
approvalPolicy?: string | undefined;
|
|
221
|
-
sandboxMode?: string | undefined;
|
|
222
|
-
networkAccess?: boolean | undefined;
|
|
223
|
-
webSearch?: boolean | undefined;
|
|
224
224
|
};
|
|
225
225
|
};
|
|
226
226
|
name?: string | undefined;
|
|
@@ -333,11 +333,11 @@ export declare const ScheduleCreateResponseSchema: z.ZodObject<{
|
|
|
333
333
|
type: z.ZodLiteral<"agent">;
|
|
334
334
|
agentId: z.ZodString;
|
|
335
335
|
}, "strip", z.ZodTypeAny, {
|
|
336
|
-
agentId: string;
|
|
337
336
|
type: "agent";
|
|
338
|
-
}, {
|
|
339
337
|
agentId: string;
|
|
338
|
+
}, {
|
|
340
339
|
type: "agent";
|
|
340
|
+
agentId: string;
|
|
341
341
|
}>, z.ZodObject<{
|
|
342
342
|
type: z.ZodLiteral<"new-agent">;
|
|
343
343
|
config: z.ZodObject<{
|
|
@@ -355,11 +355,11 @@ export declare const ScheduleCreateResponseSchema: z.ZodObject<{
|
|
|
355
355
|
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
356
356
|
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
357
357
|
}, "strip", z.ZodTypeAny, {
|
|
358
|
-
claude?: Record<string, unknown> | undefined;
|
|
359
358
|
codex?: Record<string, unknown> | undefined;
|
|
360
|
-
}, {
|
|
361
359
|
claude?: Record<string, unknown> | undefined;
|
|
360
|
+
}, {
|
|
362
361
|
codex?: Record<string, unknown> | undefined;
|
|
362
|
+
claude?: Record<string, unknown> | undefined;
|
|
363
363
|
}>>;
|
|
364
364
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
365
365
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -367,36 +367,36 @@ export declare const ScheduleCreateResponseSchema: z.ZodObject<{
|
|
|
367
367
|
provider: string;
|
|
368
368
|
cwd: string;
|
|
369
369
|
title?: string | null | undefined;
|
|
370
|
+
model?: string | undefined;
|
|
370
371
|
thinkingOptionId?: string | undefined;
|
|
371
372
|
modeId?: string | undefined;
|
|
372
|
-
|
|
373
|
+
approvalPolicy?: string | undefined;
|
|
374
|
+
sandboxMode?: string | undefined;
|
|
375
|
+
networkAccess?: boolean | undefined;
|
|
376
|
+
webSearch?: boolean | undefined;
|
|
373
377
|
extra?: {
|
|
374
|
-
claude?: Record<string, unknown> | undefined;
|
|
375
378
|
codex?: Record<string, unknown> | undefined;
|
|
379
|
+
claude?: Record<string, unknown> | undefined;
|
|
376
380
|
} | undefined;
|
|
377
381
|
systemPrompt?: string | undefined;
|
|
378
382
|
mcpServers?: Record<string, unknown> | undefined;
|
|
379
|
-
approvalPolicy?: string | undefined;
|
|
380
|
-
sandboxMode?: string | undefined;
|
|
381
|
-
networkAccess?: boolean | undefined;
|
|
382
|
-
webSearch?: boolean | undefined;
|
|
383
383
|
}, {
|
|
384
384
|
provider: string;
|
|
385
385
|
cwd: string;
|
|
386
386
|
title?: string | null | undefined;
|
|
387
|
+
model?: string | undefined;
|
|
387
388
|
thinkingOptionId?: string | undefined;
|
|
388
389
|
modeId?: string | undefined;
|
|
389
|
-
|
|
390
|
+
approvalPolicy?: string | undefined;
|
|
391
|
+
sandboxMode?: string | undefined;
|
|
392
|
+
networkAccess?: boolean | undefined;
|
|
393
|
+
webSearch?: boolean | undefined;
|
|
390
394
|
extra?: {
|
|
391
|
-
claude?: Record<string, unknown> | undefined;
|
|
392
395
|
codex?: Record<string, unknown> | undefined;
|
|
396
|
+
claude?: Record<string, unknown> | undefined;
|
|
393
397
|
} | undefined;
|
|
394
398
|
systemPrompt?: string | undefined;
|
|
395
399
|
mcpServers?: Record<string, unknown> | undefined;
|
|
396
|
-
approvalPolicy?: string | undefined;
|
|
397
|
-
sandboxMode?: string | undefined;
|
|
398
|
-
networkAccess?: boolean | undefined;
|
|
399
|
-
webSearch?: boolean | undefined;
|
|
400
400
|
}>;
|
|
401
401
|
}, "strip", z.ZodTypeAny, {
|
|
402
402
|
type: "new-agent";
|
|
@@ -404,19 +404,19 @@ export declare const ScheduleCreateResponseSchema: z.ZodObject<{
|
|
|
404
404
|
provider: string;
|
|
405
405
|
cwd: string;
|
|
406
406
|
title?: string | null | undefined;
|
|
407
|
+
model?: string | undefined;
|
|
407
408
|
thinkingOptionId?: string | undefined;
|
|
408
409
|
modeId?: string | undefined;
|
|
409
|
-
|
|
410
|
+
approvalPolicy?: string | undefined;
|
|
411
|
+
sandboxMode?: string | undefined;
|
|
412
|
+
networkAccess?: boolean | undefined;
|
|
413
|
+
webSearch?: boolean | undefined;
|
|
410
414
|
extra?: {
|
|
411
|
-
claude?: Record<string, unknown> | undefined;
|
|
412
415
|
codex?: Record<string, unknown> | undefined;
|
|
416
|
+
claude?: Record<string, unknown> | undefined;
|
|
413
417
|
} | undefined;
|
|
414
418
|
systemPrompt?: string | undefined;
|
|
415
419
|
mcpServers?: Record<string, unknown> | undefined;
|
|
416
|
-
approvalPolicy?: string | undefined;
|
|
417
|
-
sandboxMode?: string | undefined;
|
|
418
|
-
networkAccess?: boolean | undefined;
|
|
419
|
-
webSearch?: boolean | undefined;
|
|
420
420
|
};
|
|
421
421
|
}, {
|
|
422
422
|
type: "new-agent";
|
|
@@ -424,19 +424,19 @@ export declare const ScheduleCreateResponseSchema: z.ZodObject<{
|
|
|
424
424
|
provider: string;
|
|
425
425
|
cwd: string;
|
|
426
426
|
title?: string | null | undefined;
|
|
427
|
+
model?: string | undefined;
|
|
427
428
|
thinkingOptionId?: string | undefined;
|
|
428
429
|
modeId?: string | undefined;
|
|
429
|
-
|
|
430
|
+
approvalPolicy?: string | undefined;
|
|
431
|
+
sandboxMode?: string | undefined;
|
|
432
|
+
networkAccess?: boolean | undefined;
|
|
433
|
+
webSearch?: boolean | undefined;
|
|
430
434
|
extra?: {
|
|
431
|
-
claude?: Record<string, unknown> | undefined;
|
|
432
435
|
codex?: Record<string, unknown> | undefined;
|
|
436
|
+
claude?: Record<string, unknown> | undefined;
|
|
433
437
|
} | undefined;
|
|
434
438
|
systemPrompt?: string | undefined;
|
|
435
439
|
mcpServers?: Record<string, unknown> | undefined;
|
|
436
|
-
approvalPolicy?: string | undefined;
|
|
437
|
-
sandboxMode?: string | undefined;
|
|
438
|
-
networkAccess?: boolean | undefined;
|
|
439
|
-
webSearch?: boolean | undefined;
|
|
440
440
|
};
|
|
441
441
|
}>]>;
|
|
442
442
|
status: z.ZodEnum<["active", "paused", "completed"]>;
|
|
@@ -458,29 +458,29 @@ export declare const ScheduleCreateResponseSchema: z.ZodObject<{
|
|
|
458
458
|
error: z.ZodNullable<z.ZodString>;
|
|
459
459
|
}, "strip", z.ZodTypeAny, {
|
|
460
460
|
error: string | null;
|
|
461
|
-
|
|
462
|
-
id: string;
|
|
461
|
+
output: string | null;
|
|
463
462
|
status: "running" | "failed" | "succeeded";
|
|
463
|
+
id: string;
|
|
464
|
+
agentId: string | null;
|
|
464
465
|
scheduledFor: string;
|
|
465
466
|
startedAt: string;
|
|
466
467
|
endedAt: string | null;
|
|
467
|
-
output: string | null;
|
|
468
468
|
}, {
|
|
469
469
|
error: string | null;
|
|
470
|
-
|
|
471
|
-
id: string;
|
|
470
|
+
output: string | null;
|
|
472
471
|
status: "running" | "failed" | "succeeded";
|
|
472
|
+
id: string;
|
|
473
|
+
agentId: string | null;
|
|
473
474
|
scheduledFor: string;
|
|
474
475
|
startedAt: string;
|
|
475
476
|
endedAt: string | null;
|
|
476
|
-
output: string | null;
|
|
477
477
|
}>, "many">;
|
|
478
478
|
}, "runs">, "strip", z.ZodTypeAny, {
|
|
479
479
|
name: string | null;
|
|
480
|
+
status: "active" | "paused" | "completed";
|
|
480
481
|
id: string;
|
|
481
482
|
createdAt: string;
|
|
482
483
|
updatedAt: string;
|
|
483
|
-
status: "completed" | "active" | "paused";
|
|
484
484
|
prompt: string;
|
|
485
485
|
cadence: {
|
|
486
486
|
type: "every";
|
|
@@ -490,27 +490,27 @@ export declare const ScheduleCreateResponseSchema: z.ZodObject<{
|
|
|
490
490
|
expression: string;
|
|
491
491
|
};
|
|
492
492
|
target: {
|
|
493
|
-
agentId: string;
|
|
494
493
|
type: "agent";
|
|
494
|
+
agentId: string;
|
|
495
495
|
} | {
|
|
496
496
|
type: "new-agent";
|
|
497
497
|
config: {
|
|
498
498
|
provider: string;
|
|
499
499
|
cwd: string;
|
|
500
500
|
title?: string | null | undefined;
|
|
501
|
+
model?: string | undefined;
|
|
501
502
|
thinkingOptionId?: string | undefined;
|
|
502
503
|
modeId?: string | undefined;
|
|
503
|
-
|
|
504
|
+
approvalPolicy?: string | undefined;
|
|
505
|
+
sandboxMode?: string | undefined;
|
|
506
|
+
networkAccess?: boolean | undefined;
|
|
507
|
+
webSearch?: boolean | undefined;
|
|
504
508
|
extra?: {
|
|
505
|
-
claude?: Record<string, unknown> | undefined;
|
|
506
509
|
codex?: Record<string, unknown> | undefined;
|
|
510
|
+
claude?: Record<string, unknown> | undefined;
|
|
507
511
|
} | undefined;
|
|
508
512
|
systemPrompt?: string | undefined;
|
|
509
513
|
mcpServers?: Record<string, unknown> | undefined;
|
|
510
|
-
approvalPolicy?: string | undefined;
|
|
511
|
-
sandboxMode?: string | undefined;
|
|
512
|
-
networkAccess?: boolean | undefined;
|
|
513
|
-
webSearch?: boolean | undefined;
|
|
514
514
|
};
|
|
515
515
|
};
|
|
516
516
|
nextRunAt: string | null;
|
|
@@ -520,10 +520,10 @@ export declare const ScheduleCreateResponseSchema: z.ZodObject<{
|
|
|
520
520
|
maxRuns: number | null;
|
|
521
521
|
}, {
|
|
522
522
|
name: string | null;
|
|
523
|
+
status: "active" | "paused" | "completed";
|
|
523
524
|
id: string;
|
|
524
525
|
createdAt: string;
|
|
525
526
|
updatedAt: string;
|
|
526
|
-
status: "completed" | "active" | "paused";
|
|
527
527
|
prompt: string;
|
|
528
528
|
cadence: {
|
|
529
529
|
type: "every";
|
|
@@ -533,27 +533,27 @@ export declare const ScheduleCreateResponseSchema: z.ZodObject<{
|
|
|
533
533
|
expression: string;
|
|
534
534
|
};
|
|
535
535
|
target: {
|
|
536
|
-
agentId: string;
|
|
537
536
|
type: "agent";
|
|
537
|
+
agentId: string;
|
|
538
538
|
} | {
|
|
539
539
|
type: "new-agent";
|
|
540
540
|
config: {
|
|
541
541
|
provider: string;
|
|
542
542
|
cwd: string;
|
|
543
543
|
title?: string | null | undefined;
|
|
544
|
+
model?: string | undefined;
|
|
544
545
|
thinkingOptionId?: string | undefined;
|
|
545
546
|
modeId?: string | undefined;
|
|
546
|
-
|
|
547
|
+
approvalPolicy?: string | undefined;
|
|
548
|
+
sandboxMode?: string | undefined;
|
|
549
|
+
networkAccess?: boolean | undefined;
|
|
550
|
+
webSearch?: boolean | undefined;
|
|
547
551
|
extra?: {
|
|
548
|
-
claude?: Record<string, unknown> | undefined;
|
|
549
552
|
codex?: Record<string, unknown> | undefined;
|
|
553
|
+
claude?: Record<string, unknown> | undefined;
|
|
550
554
|
} | undefined;
|
|
551
555
|
systemPrompt?: string | undefined;
|
|
552
556
|
mcpServers?: Record<string, unknown> | undefined;
|
|
553
|
-
approvalPolicy?: string | undefined;
|
|
554
|
-
sandboxMode?: string | undefined;
|
|
555
|
-
networkAccess?: boolean | undefined;
|
|
556
|
-
webSearch?: boolean | undefined;
|
|
557
557
|
};
|
|
558
558
|
};
|
|
559
559
|
nextRunAt: string | null;
|
|
@@ -568,10 +568,10 @@ export declare const ScheduleCreateResponseSchema: z.ZodObject<{
|
|
|
568
568
|
requestId: string;
|
|
569
569
|
schedule: {
|
|
570
570
|
name: string | null;
|
|
571
|
+
status: "active" | "paused" | "completed";
|
|
571
572
|
id: string;
|
|
572
573
|
createdAt: string;
|
|
573
574
|
updatedAt: string;
|
|
574
|
-
status: "completed" | "active" | "paused";
|
|
575
575
|
prompt: string;
|
|
576
576
|
cadence: {
|
|
577
577
|
type: "every";
|
|
@@ -581,27 +581,27 @@ export declare const ScheduleCreateResponseSchema: z.ZodObject<{
|
|
|
581
581
|
expression: string;
|
|
582
582
|
};
|
|
583
583
|
target: {
|
|
584
|
-
agentId: string;
|
|
585
584
|
type: "agent";
|
|
585
|
+
agentId: string;
|
|
586
586
|
} | {
|
|
587
587
|
type: "new-agent";
|
|
588
588
|
config: {
|
|
589
589
|
provider: string;
|
|
590
590
|
cwd: string;
|
|
591
591
|
title?: string | null | undefined;
|
|
592
|
+
model?: string | undefined;
|
|
592
593
|
thinkingOptionId?: string | undefined;
|
|
593
594
|
modeId?: string | undefined;
|
|
594
|
-
|
|
595
|
+
approvalPolicy?: string | undefined;
|
|
596
|
+
sandboxMode?: string | undefined;
|
|
597
|
+
networkAccess?: boolean | undefined;
|
|
598
|
+
webSearch?: boolean | undefined;
|
|
595
599
|
extra?: {
|
|
596
|
-
claude?: Record<string, unknown> | undefined;
|
|
597
600
|
codex?: Record<string, unknown> | undefined;
|
|
601
|
+
claude?: Record<string, unknown> | undefined;
|
|
598
602
|
} | undefined;
|
|
599
603
|
systemPrompt?: string | undefined;
|
|
600
604
|
mcpServers?: Record<string, unknown> | undefined;
|
|
601
|
-
approvalPolicy?: string | undefined;
|
|
602
|
-
sandboxMode?: string | undefined;
|
|
603
|
-
networkAccess?: boolean | undefined;
|
|
604
|
-
webSearch?: boolean | undefined;
|
|
605
605
|
};
|
|
606
606
|
};
|
|
607
607
|
nextRunAt: string | null;
|
|
@@ -615,10 +615,10 @@ export declare const ScheduleCreateResponseSchema: z.ZodObject<{
|
|
|
615
615
|
requestId: string;
|
|
616
616
|
schedule: {
|
|
617
617
|
name: string | null;
|
|
618
|
+
status: "active" | "paused" | "completed";
|
|
618
619
|
id: string;
|
|
619
620
|
createdAt: string;
|
|
620
621
|
updatedAt: string;
|
|
621
|
-
status: "completed" | "active" | "paused";
|
|
622
622
|
prompt: string;
|
|
623
623
|
cadence: {
|
|
624
624
|
type: "every";
|
|
@@ -628,27 +628,27 @@ export declare const ScheduleCreateResponseSchema: z.ZodObject<{
|
|
|
628
628
|
expression: string;
|
|
629
629
|
};
|
|
630
630
|
target: {
|
|
631
|
-
agentId: string;
|
|
632
631
|
type: "agent";
|
|
632
|
+
agentId: string;
|
|
633
633
|
} | {
|
|
634
634
|
type: "new-agent";
|
|
635
635
|
config: {
|
|
636
636
|
provider: string;
|
|
637
637
|
cwd: string;
|
|
638
638
|
title?: string | null | undefined;
|
|
639
|
+
model?: string | undefined;
|
|
639
640
|
thinkingOptionId?: string | undefined;
|
|
640
641
|
modeId?: string | undefined;
|
|
641
|
-
|
|
642
|
+
approvalPolicy?: string | undefined;
|
|
643
|
+
sandboxMode?: string | undefined;
|
|
644
|
+
networkAccess?: boolean | undefined;
|
|
645
|
+
webSearch?: boolean | undefined;
|
|
642
646
|
extra?: {
|
|
643
|
-
claude?: Record<string, unknown> | undefined;
|
|
644
647
|
codex?: Record<string, unknown> | undefined;
|
|
648
|
+
claude?: Record<string, unknown> | undefined;
|
|
645
649
|
} | undefined;
|
|
646
650
|
systemPrompt?: string | undefined;
|
|
647
651
|
mcpServers?: Record<string, unknown> | undefined;
|
|
648
|
-
approvalPolicy?: string | undefined;
|
|
649
|
-
sandboxMode?: string | undefined;
|
|
650
|
-
networkAccess?: boolean | undefined;
|
|
651
|
-
webSearch?: boolean | undefined;
|
|
652
652
|
};
|
|
653
653
|
};
|
|
654
654
|
nextRunAt: string | null;
|
|
@@ -665,10 +665,10 @@ export declare const ScheduleCreateResponseSchema: z.ZodObject<{
|
|
|
665
665
|
requestId: string;
|
|
666
666
|
schedule: {
|
|
667
667
|
name: string | null;
|
|
668
|
+
status: "active" | "paused" | "completed";
|
|
668
669
|
id: string;
|
|
669
670
|
createdAt: string;
|
|
670
671
|
updatedAt: string;
|
|
671
|
-
status: "completed" | "active" | "paused";
|
|
672
672
|
prompt: string;
|
|
673
673
|
cadence: {
|
|
674
674
|
type: "every";
|
|
@@ -678,27 +678,27 @@ export declare const ScheduleCreateResponseSchema: z.ZodObject<{
|
|
|
678
678
|
expression: string;
|
|
679
679
|
};
|
|
680
680
|
target: {
|
|
681
|
-
agentId: string;
|
|
682
681
|
type: "agent";
|
|
682
|
+
agentId: string;
|
|
683
683
|
} | {
|
|
684
684
|
type: "new-agent";
|
|
685
685
|
config: {
|
|
686
686
|
provider: string;
|
|
687
687
|
cwd: string;
|
|
688
688
|
title?: string | null | undefined;
|
|
689
|
+
model?: string | undefined;
|
|
689
690
|
thinkingOptionId?: string | undefined;
|
|
690
691
|
modeId?: string | undefined;
|
|
691
|
-
|
|
692
|
+
approvalPolicy?: string | undefined;
|
|
693
|
+
sandboxMode?: string | undefined;
|
|
694
|
+
networkAccess?: boolean | undefined;
|
|
695
|
+
webSearch?: boolean | undefined;
|
|
692
696
|
extra?: {
|
|
693
|
-
claude?: Record<string, unknown> | undefined;
|
|
694
697
|
codex?: Record<string, unknown> | undefined;
|
|
698
|
+
claude?: Record<string, unknown> | undefined;
|
|
695
699
|
} | undefined;
|
|
696
700
|
systemPrompt?: string | undefined;
|
|
697
701
|
mcpServers?: Record<string, unknown> | undefined;
|
|
698
|
-
approvalPolicy?: string | undefined;
|
|
699
|
-
sandboxMode?: string | undefined;
|
|
700
|
-
networkAccess?: boolean | undefined;
|
|
701
|
-
webSearch?: boolean | undefined;
|
|
702
702
|
};
|
|
703
703
|
};
|
|
704
704
|
nextRunAt: string | null;
|
|
@@ -715,10 +715,10 @@ export declare const ScheduleCreateResponseSchema: z.ZodObject<{
|
|
|
715
715
|
requestId: string;
|
|
716
716
|
schedule: {
|
|
717
717
|
name: string | null;
|
|
718
|
+
status: "active" | "paused" | "completed";
|
|
718
719
|
id: string;
|
|
719
720
|
createdAt: string;
|
|
720
721
|
updatedAt: string;
|
|
721
|
-
status: "completed" | "active" | "paused";
|
|
722
722
|
prompt: string;
|
|
723
723
|
cadence: {
|
|
724
724
|
type: "every";
|
|
@@ -728,27 +728,27 @@ export declare const ScheduleCreateResponseSchema: z.ZodObject<{
|
|
|
728
728
|
expression: string;
|
|
729
729
|
};
|
|
730
730
|
target: {
|
|
731
|
-
agentId: string;
|
|
732
731
|
type: "agent";
|
|
732
|
+
agentId: string;
|
|
733
733
|
} | {
|
|
734
734
|
type: "new-agent";
|
|
735
735
|
config: {
|
|
736
736
|
provider: string;
|
|
737
737
|
cwd: string;
|
|
738
738
|
title?: string | null | undefined;
|
|
739
|
+
model?: string | undefined;
|
|
739
740
|
thinkingOptionId?: string | undefined;
|
|
740
741
|
modeId?: string | undefined;
|
|
741
|
-
|
|
742
|
+
approvalPolicy?: string | undefined;
|
|
743
|
+
sandboxMode?: string | undefined;
|
|
744
|
+
networkAccess?: boolean | undefined;
|
|
745
|
+
webSearch?: boolean | undefined;
|
|
742
746
|
extra?: {
|
|
743
|
-
claude?: Record<string, unknown> | undefined;
|
|
744
747
|
codex?: Record<string, unknown> | undefined;
|
|
748
|
+
claude?: Record<string, unknown> | undefined;
|
|
745
749
|
} | undefined;
|
|
746
750
|
systemPrompt?: string | undefined;
|
|
747
751
|
mcpServers?: Record<string, unknown> | undefined;
|
|
748
|
-
approvalPolicy?: string | undefined;
|
|
749
|
-
sandboxMode?: string | undefined;
|
|
750
|
-
networkAccess?: boolean | undefined;
|
|
751
|
-
webSearch?: boolean | undefined;
|
|
752
752
|
};
|
|
753
753
|
};
|
|
754
754
|
nextRunAt: string | null;
|
|
@@ -790,11 +790,11 @@ export declare const ScheduleListResponseSchema: z.ZodObject<{
|
|
|
790
790
|
type: z.ZodLiteral<"agent">;
|
|
791
791
|
agentId: z.ZodString;
|
|
792
792
|
}, "strip", z.ZodTypeAny, {
|
|
793
|
-
agentId: string;
|
|
794
793
|
type: "agent";
|
|
795
|
-
}, {
|
|
796
794
|
agentId: string;
|
|
795
|
+
}, {
|
|
797
796
|
type: "agent";
|
|
797
|
+
agentId: string;
|
|
798
798
|
}>, z.ZodObject<{
|
|
799
799
|
type: z.ZodLiteral<"new-agent">;
|
|
800
800
|
config: z.ZodObject<{
|
|
@@ -812,11 +812,11 @@ export declare const ScheduleListResponseSchema: z.ZodObject<{
|
|
|
812
812
|
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
813
813
|
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
814
814
|
}, "strip", z.ZodTypeAny, {
|
|
815
|
-
claude?: Record<string, unknown> | undefined;
|
|
816
815
|
codex?: Record<string, unknown> | undefined;
|
|
817
|
-
}, {
|
|
818
816
|
claude?: Record<string, unknown> | undefined;
|
|
817
|
+
}, {
|
|
819
818
|
codex?: Record<string, unknown> | undefined;
|
|
819
|
+
claude?: Record<string, unknown> | undefined;
|
|
820
820
|
}>>;
|
|
821
821
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
822
822
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -824,36 +824,36 @@ export declare const ScheduleListResponseSchema: z.ZodObject<{
|
|
|
824
824
|
provider: string;
|
|
825
825
|
cwd: string;
|
|
826
826
|
title?: string | null | undefined;
|
|
827
|
+
model?: string | undefined;
|
|
827
828
|
thinkingOptionId?: string | undefined;
|
|
828
829
|
modeId?: string | undefined;
|
|
829
|
-
model?: string | undefined;
|
|
830
|
-
extra?: {
|
|
831
|
-
claude?: Record<string, unknown> | undefined;
|
|
832
|
-
codex?: Record<string, unknown> | undefined;
|
|
833
|
-
} | undefined;
|
|
834
|
-
systemPrompt?: string | undefined;
|
|
835
|
-
mcpServers?: Record<string, unknown> | undefined;
|
|
836
830
|
approvalPolicy?: string | undefined;
|
|
837
831
|
sandboxMode?: string | undefined;
|
|
838
832
|
networkAccess?: boolean | undefined;
|
|
839
833
|
webSearch?: boolean | undefined;
|
|
834
|
+
extra?: {
|
|
835
|
+
codex?: Record<string, unknown> | undefined;
|
|
836
|
+
claude?: Record<string, unknown> | undefined;
|
|
837
|
+
} | undefined;
|
|
838
|
+
systemPrompt?: string | undefined;
|
|
839
|
+
mcpServers?: Record<string, unknown> | undefined;
|
|
840
840
|
}, {
|
|
841
841
|
provider: string;
|
|
842
842
|
cwd: string;
|
|
843
843
|
title?: string | null | undefined;
|
|
844
|
+
model?: string | undefined;
|
|
844
845
|
thinkingOptionId?: string | undefined;
|
|
845
846
|
modeId?: string | undefined;
|
|
846
|
-
|
|
847
|
+
approvalPolicy?: string | undefined;
|
|
848
|
+
sandboxMode?: string | undefined;
|
|
849
|
+
networkAccess?: boolean | undefined;
|
|
850
|
+
webSearch?: boolean | undefined;
|
|
847
851
|
extra?: {
|
|
848
|
-
claude?: Record<string, unknown> | undefined;
|
|
849
852
|
codex?: Record<string, unknown> | undefined;
|
|
853
|
+
claude?: Record<string, unknown> | undefined;
|
|
850
854
|
} | undefined;
|
|
851
855
|
systemPrompt?: string | undefined;
|
|
852
856
|
mcpServers?: Record<string, unknown> | undefined;
|
|
853
|
-
approvalPolicy?: string | undefined;
|
|
854
|
-
sandboxMode?: string | undefined;
|
|
855
|
-
networkAccess?: boolean | undefined;
|
|
856
|
-
webSearch?: boolean | undefined;
|
|
857
857
|
}>;
|
|
858
858
|
}, "strip", z.ZodTypeAny, {
|
|
859
859
|
type: "new-agent";
|
|
@@ -861,19 +861,19 @@ export declare const ScheduleListResponseSchema: z.ZodObject<{
|
|
|
861
861
|
provider: string;
|
|
862
862
|
cwd: string;
|
|
863
863
|
title?: string | null | undefined;
|
|
864
|
+
model?: string | undefined;
|
|
864
865
|
thinkingOptionId?: string | undefined;
|
|
865
866
|
modeId?: string | undefined;
|
|
866
|
-
|
|
867
|
+
approvalPolicy?: string | undefined;
|
|
868
|
+
sandboxMode?: string | undefined;
|
|
869
|
+
networkAccess?: boolean | undefined;
|
|
870
|
+
webSearch?: boolean | undefined;
|
|
867
871
|
extra?: {
|
|
868
|
-
claude?: Record<string, unknown> | undefined;
|
|
869
872
|
codex?: Record<string, unknown> | undefined;
|
|
873
|
+
claude?: Record<string, unknown> | undefined;
|
|
870
874
|
} | undefined;
|
|
871
875
|
systemPrompt?: string | undefined;
|
|
872
876
|
mcpServers?: Record<string, unknown> | undefined;
|
|
873
|
-
approvalPolicy?: string | undefined;
|
|
874
|
-
sandboxMode?: string | undefined;
|
|
875
|
-
networkAccess?: boolean | undefined;
|
|
876
|
-
webSearch?: boolean | undefined;
|
|
877
877
|
};
|
|
878
878
|
}, {
|
|
879
879
|
type: "new-agent";
|
|
@@ -881,19 +881,19 @@ export declare const ScheduleListResponseSchema: z.ZodObject<{
|
|
|
881
881
|
provider: string;
|
|
882
882
|
cwd: string;
|
|
883
883
|
title?: string | null | undefined;
|
|
884
|
+
model?: string | undefined;
|
|
884
885
|
thinkingOptionId?: string | undefined;
|
|
885
886
|
modeId?: string | undefined;
|
|
886
|
-
|
|
887
|
+
approvalPolicy?: string | undefined;
|
|
888
|
+
sandboxMode?: string | undefined;
|
|
889
|
+
networkAccess?: boolean | undefined;
|
|
890
|
+
webSearch?: boolean | undefined;
|
|
887
891
|
extra?: {
|
|
888
|
-
claude?: Record<string, unknown> | undefined;
|
|
889
892
|
codex?: Record<string, unknown> | undefined;
|
|
893
|
+
claude?: Record<string, unknown> | undefined;
|
|
890
894
|
} | undefined;
|
|
891
895
|
systemPrompt?: string | undefined;
|
|
892
896
|
mcpServers?: Record<string, unknown> | undefined;
|
|
893
|
-
approvalPolicy?: string | undefined;
|
|
894
|
-
sandboxMode?: string | undefined;
|
|
895
|
-
networkAccess?: boolean | undefined;
|
|
896
|
-
webSearch?: boolean | undefined;
|
|
897
897
|
};
|
|
898
898
|
}>]>;
|
|
899
899
|
status: z.ZodEnum<["active", "paused", "completed"]>;
|
|
@@ -915,29 +915,29 @@ export declare const ScheduleListResponseSchema: z.ZodObject<{
|
|
|
915
915
|
error: z.ZodNullable<z.ZodString>;
|
|
916
916
|
}, "strip", z.ZodTypeAny, {
|
|
917
917
|
error: string | null;
|
|
918
|
-
|
|
919
|
-
id: string;
|
|
918
|
+
output: string | null;
|
|
920
919
|
status: "running" | "failed" | "succeeded";
|
|
920
|
+
id: string;
|
|
921
|
+
agentId: string | null;
|
|
921
922
|
scheduledFor: string;
|
|
922
923
|
startedAt: string;
|
|
923
924
|
endedAt: string | null;
|
|
924
|
-
output: string | null;
|
|
925
925
|
}, {
|
|
926
926
|
error: string | null;
|
|
927
|
-
|
|
928
|
-
id: string;
|
|
927
|
+
output: string | null;
|
|
929
928
|
status: "running" | "failed" | "succeeded";
|
|
929
|
+
id: string;
|
|
930
|
+
agentId: string | null;
|
|
930
931
|
scheduledFor: string;
|
|
931
932
|
startedAt: string;
|
|
932
933
|
endedAt: string | null;
|
|
933
|
-
output: string | null;
|
|
934
934
|
}>, "many">;
|
|
935
935
|
}, "runs">, "strip", z.ZodTypeAny, {
|
|
936
936
|
name: string | null;
|
|
937
|
+
status: "active" | "paused" | "completed";
|
|
937
938
|
id: string;
|
|
938
939
|
createdAt: string;
|
|
939
940
|
updatedAt: string;
|
|
940
|
-
status: "completed" | "active" | "paused";
|
|
941
941
|
prompt: string;
|
|
942
942
|
cadence: {
|
|
943
943
|
type: "every";
|
|
@@ -947,27 +947,27 @@ export declare const ScheduleListResponseSchema: z.ZodObject<{
|
|
|
947
947
|
expression: string;
|
|
948
948
|
};
|
|
949
949
|
target: {
|
|
950
|
-
agentId: string;
|
|
951
950
|
type: "agent";
|
|
951
|
+
agentId: string;
|
|
952
952
|
} | {
|
|
953
953
|
type: "new-agent";
|
|
954
954
|
config: {
|
|
955
955
|
provider: string;
|
|
956
956
|
cwd: string;
|
|
957
957
|
title?: string | null | undefined;
|
|
958
|
+
model?: string | undefined;
|
|
958
959
|
thinkingOptionId?: string | undefined;
|
|
959
960
|
modeId?: string | undefined;
|
|
960
|
-
|
|
961
|
+
approvalPolicy?: string | undefined;
|
|
962
|
+
sandboxMode?: string | undefined;
|
|
963
|
+
networkAccess?: boolean | undefined;
|
|
964
|
+
webSearch?: boolean | undefined;
|
|
961
965
|
extra?: {
|
|
962
|
-
claude?: Record<string, unknown> | undefined;
|
|
963
966
|
codex?: Record<string, unknown> | undefined;
|
|
967
|
+
claude?: Record<string, unknown> | undefined;
|
|
964
968
|
} | undefined;
|
|
965
969
|
systemPrompt?: string | undefined;
|
|
966
970
|
mcpServers?: Record<string, unknown> | undefined;
|
|
967
|
-
approvalPolicy?: string | undefined;
|
|
968
|
-
sandboxMode?: string | undefined;
|
|
969
|
-
networkAccess?: boolean | undefined;
|
|
970
|
-
webSearch?: boolean | undefined;
|
|
971
971
|
};
|
|
972
972
|
};
|
|
973
973
|
nextRunAt: string | null;
|
|
@@ -977,10 +977,10 @@ export declare const ScheduleListResponseSchema: z.ZodObject<{
|
|
|
977
977
|
maxRuns: number | null;
|
|
978
978
|
}, {
|
|
979
979
|
name: string | null;
|
|
980
|
+
status: "active" | "paused" | "completed";
|
|
980
981
|
id: string;
|
|
981
982
|
createdAt: string;
|
|
982
983
|
updatedAt: string;
|
|
983
|
-
status: "completed" | "active" | "paused";
|
|
984
984
|
prompt: string;
|
|
985
985
|
cadence: {
|
|
986
986
|
type: "every";
|
|
@@ -990,27 +990,27 @@ export declare const ScheduleListResponseSchema: z.ZodObject<{
|
|
|
990
990
|
expression: string;
|
|
991
991
|
};
|
|
992
992
|
target: {
|
|
993
|
-
agentId: string;
|
|
994
993
|
type: "agent";
|
|
994
|
+
agentId: string;
|
|
995
995
|
} | {
|
|
996
996
|
type: "new-agent";
|
|
997
997
|
config: {
|
|
998
998
|
provider: string;
|
|
999
999
|
cwd: string;
|
|
1000
1000
|
title?: string | null | undefined;
|
|
1001
|
+
model?: string | undefined;
|
|
1001
1002
|
thinkingOptionId?: string | undefined;
|
|
1002
1003
|
modeId?: string | undefined;
|
|
1003
|
-
|
|
1004
|
+
approvalPolicy?: string | undefined;
|
|
1005
|
+
sandboxMode?: string | undefined;
|
|
1006
|
+
networkAccess?: boolean | undefined;
|
|
1007
|
+
webSearch?: boolean | undefined;
|
|
1004
1008
|
extra?: {
|
|
1005
|
-
claude?: Record<string, unknown> | undefined;
|
|
1006
1009
|
codex?: Record<string, unknown> | undefined;
|
|
1010
|
+
claude?: Record<string, unknown> | undefined;
|
|
1007
1011
|
} | undefined;
|
|
1008
1012
|
systemPrompt?: string | undefined;
|
|
1009
1013
|
mcpServers?: Record<string, unknown> | undefined;
|
|
1010
|
-
approvalPolicy?: string | undefined;
|
|
1011
|
-
sandboxMode?: string | undefined;
|
|
1012
|
-
networkAccess?: boolean | undefined;
|
|
1013
|
-
webSearch?: boolean | undefined;
|
|
1014
1014
|
};
|
|
1015
1015
|
};
|
|
1016
1016
|
nextRunAt: string | null;
|
|
@@ -1025,10 +1025,10 @@ export declare const ScheduleListResponseSchema: z.ZodObject<{
|
|
|
1025
1025
|
requestId: string;
|
|
1026
1026
|
schedules: {
|
|
1027
1027
|
name: string | null;
|
|
1028
|
+
status: "active" | "paused" | "completed";
|
|
1028
1029
|
id: string;
|
|
1029
1030
|
createdAt: string;
|
|
1030
1031
|
updatedAt: string;
|
|
1031
|
-
status: "completed" | "active" | "paused";
|
|
1032
1032
|
prompt: string;
|
|
1033
1033
|
cadence: {
|
|
1034
1034
|
type: "every";
|
|
@@ -1038,27 +1038,27 @@ export declare const ScheduleListResponseSchema: z.ZodObject<{
|
|
|
1038
1038
|
expression: string;
|
|
1039
1039
|
};
|
|
1040
1040
|
target: {
|
|
1041
|
-
agentId: string;
|
|
1042
1041
|
type: "agent";
|
|
1042
|
+
agentId: string;
|
|
1043
1043
|
} | {
|
|
1044
1044
|
type: "new-agent";
|
|
1045
1045
|
config: {
|
|
1046
1046
|
provider: string;
|
|
1047
1047
|
cwd: string;
|
|
1048
1048
|
title?: string | null | undefined;
|
|
1049
|
+
model?: string | undefined;
|
|
1049
1050
|
thinkingOptionId?: string | undefined;
|
|
1050
1051
|
modeId?: string | undefined;
|
|
1051
|
-
|
|
1052
|
+
approvalPolicy?: string | undefined;
|
|
1053
|
+
sandboxMode?: string | undefined;
|
|
1054
|
+
networkAccess?: boolean | undefined;
|
|
1055
|
+
webSearch?: boolean | undefined;
|
|
1052
1056
|
extra?: {
|
|
1053
|
-
claude?: Record<string, unknown> | undefined;
|
|
1054
1057
|
codex?: Record<string, unknown> | undefined;
|
|
1058
|
+
claude?: Record<string, unknown> | undefined;
|
|
1055
1059
|
} | undefined;
|
|
1056
1060
|
systemPrompt?: string | undefined;
|
|
1057
1061
|
mcpServers?: Record<string, unknown> | undefined;
|
|
1058
|
-
approvalPolicy?: string | undefined;
|
|
1059
|
-
sandboxMode?: string | undefined;
|
|
1060
|
-
networkAccess?: boolean | undefined;
|
|
1061
|
-
webSearch?: boolean | undefined;
|
|
1062
1062
|
};
|
|
1063
1063
|
};
|
|
1064
1064
|
nextRunAt: string | null;
|
|
@@ -1072,10 +1072,10 @@ export declare const ScheduleListResponseSchema: z.ZodObject<{
|
|
|
1072
1072
|
requestId: string;
|
|
1073
1073
|
schedules: {
|
|
1074
1074
|
name: string | null;
|
|
1075
|
+
status: "active" | "paused" | "completed";
|
|
1075
1076
|
id: string;
|
|
1076
1077
|
createdAt: string;
|
|
1077
1078
|
updatedAt: string;
|
|
1078
|
-
status: "completed" | "active" | "paused";
|
|
1079
1079
|
prompt: string;
|
|
1080
1080
|
cadence: {
|
|
1081
1081
|
type: "every";
|
|
@@ -1085,27 +1085,27 @@ export declare const ScheduleListResponseSchema: z.ZodObject<{
|
|
|
1085
1085
|
expression: string;
|
|
1086
1086
|
};
|
|
1087
1087
|
target: {
|
|
1088
|
-
agentId: string;
|
|
1089
1088
|
type: "agent";
|
|
1089
|
+
agentId: string;
|
|
1090
1090
|
} | {
|
|
1091
1091
|
type: "new-agent";
|
|
1092
1092
|
config: {
|
|
1093
1093
|
provider: string;
|
|
1094
1094
|
cwd: string;
|
|
1095
1095
|
title?: string | null | undefined;
|
|
1096
|
+
model?: string | undefined;
|
|
1096
1097
|
thinkingOptionId?: string | undefined;
|
|
1097
1098
|
modeId?: string | undefined;
|
|
1098
|
-
|
|
1099
|
+
approvalPolicy?: string | undefined;
|
|
1100
|
+
sandboxMode?: string | undefined;
|
|
1101
|
+
networkAccess?: boolean | undefined;
|
|
1102
|
+
webSearch?: boolean | undefined;
|
|
1099
1103
|
extra?: {
|
|
1100
|
-
claude?: Record<string, unknown> | undefined;
|
|
1101
1104
|
codex?: Record<string, unknown> | undefined;
|
|
1105
|
+
claude?: Record<string, unknown> | undefined;
|
|
1102
1106
|
} | undefined;
|
|
1103
1107
|
systemPrompt?: string | undefined;
|
|
1104
1108
|
mcpServers?: Record<string, unknown> | undefined;
|
|
1105
|
-
approvalPolicy?: string | undefined;
|
|
1106
|
-
sandboxMode?: string | undefined;
|
|
1107
|
-
networkAccess?: boolean | undefined;
|
|
1108
|
-
webSearch?: boolean | undefined;
|
|
1109
1109
|
};
|
|
1110
1110
|
};
|
|
1111
1111
|
nextRunAt: string | null;
|
|
@@ -1122,10 +1122,10 @@ export declare const ScheduleListResponseSchema: z.ZodObject<{
|
|
|
1122
1122
|
requestId: string;
|
|
1123
1123
|
schedules: {
|
|
1124
1124
|
name: string | null;
|
|
1125
|
+
status: "active" | "paused" | "completed";
|
|
1125
1126
|
id: string;
|
|
1126
1127
|
createdAt: string;
|
|
1127
1128
|
updatedAt: string;
|
|
1128
|
-
status: "completed" | "active" | "paused";
|
|
1129
1129
|
prompt: string;
|
|
1130
1130
|
cadence: {
|
|
1131
1131
|
type: "every";
|
|
@@ -1135,27 +1135,27 @@ export declare const ScheduleListResponseSchema: z.ZodObject<{
|
|
|
1135
1135
|
expression: string;
|
|
1136
1136
|
};
|
|
1137
1137
|
target: {
|
|
1138
|
-
agentId: string;
|
|
1139
1138
|
type: "agent";
|
|
1139
|
+
agentId: string;
|
|
1140
1140
|
} | {
|
|
1141
1141
|
type: "new-agent";
|
|
1142
1142
|
config: {
|
|
1143
1143
|
provider: string;
|
|
1144
1144
|
cwd: string;
|
|
1145
1145
|
title?: string | null | undefined;
|
|
1146
|
+
model?: string | undefined;
|
|
1146
1147
|
thinkingOptionId?: string | undefined;
|
|
1147
1148
|
modeId?: string | undefined;
|
|
1148
|
-
|
|
1149
|
+
approvalPolicy?: string | undefined;
|
|
1150
|
+
sandboxMode?: string | undefined;
|
|
1151
|
+
networkAccess?: boolean | undefined;
|
|
1152
|
+
webSearch?: boolean | undefined;
|
|
1149
1153
|
extra?: {
|
|
1150
|
-
claude?: Record<string, unknown> | undefined;
|
|
1151
1154
|
codex?: Record<string, unknown> | undefined;
|
|
1155
|
+
claude?: Record<string, unknown> | undefined;
|
|
1152
1156
|
} | undefined;
|
|
1153
1157
|
systemPrompt?: string | undefined;
|
|
1154
1158
|
mcpServers?: Record<string, unknown> | undefined;
|
|
1155
|
-
approvalPolicy?: string | undefined;
|
|
1156
|
-
sandboxMode?: string | undefined;
|
|
1157
|
-
networkAccess?: boolean | undefined;
|
|
1158
|
-
webSearch?: boolean | undefined;
|
|
1159
1159
|
};
|
|
1160
1160
|
};
|
|
1161
1161
|
nextRunAt: string | null;
|
|
@@ -1172,10 +1172,10 @@ export declare const ScheduleListResponseSchema: z.ZodObject<{
|
|
|
1172
1172
|
requestId: string;
|
|
1173
1173
|
schedules: {
|
|
1174
1174
|
name: string | null;
|
|
1175
|
+
status: "active" | "paused" | "completed";
|
|
1175
1176
|
id: string;
|
|
1176
1177
|
createdAt: string;
|
|
1177
1178
|
updatedAt: string;
|
|
1178
|
-
status: "completed" | "active" | "paused";
|
|
1179
1179
|
prompt: string;
|
|
1180
1180
|
cadence: {
|
|
1181
1181
|
type: "every";
|
|
@@ -1185,27 +1185,27 @@ export declare const ScheduleListResponseSchema: z.ZodObject<{
|
|
|
1185
1185
|
expression: string;
|
|
1186
1186
|
};
|
|
1187
1187
|
target: {
|
|
1188
|
-
agentId: string;
|
|
1189
1188
|
type: "agent";
|
|
1189
|
+
agentId: string;
|
|
1190
1190
|
} | {
|
|
1191
1191
|
type: "new-agent";
|
|
1192
1192
|
config: {
|
|
1193
1193
|
provider: string;
|
|
1194
1194
|
cwd: string;
|
|
1195
1195
|
title?: string | null | undefined;
|
|
1196
|
+
model?: string | undefined;
|
|
1196
1197
|
thinkingOptionId?: string | undefined;
|
|
1197
1198
|
modeId?: string | undefined;
|
|
1198
|
-
|
|
1199
|
+
approvalPolicy?: string | undefined;
|
|
1200
|
+
sandboxMode?: string | undefined;
|
|
1201
|
+
networkAccess?: boolean | undefined;
|
|
1202
|
+
webSearch?: boolean | undefined;
|
|
1199
1203
|
extra?: {
|
|
1200
|
-
claude?: Record<string, unknown> | undefined;
|
|
1201
1204
|
codex?: Record<string, unknown> | undefined;
|
|
1205
|
+
claude?: Record<string, unknown> | undefined;
|
|
1202
1206
|
} | undefined;
|
|
1203
1207
|
systemPrompt?: string | undefined;
|
|
1204
1208
|
mcpServers?: Record<string, unknown> | undefined;
|
|
1205
|
-
approvalPolicy?: string | undefined;
|
|
1206
|
-
sandboxMode?: string | undefined;
|
|
1207
|
-
networkAccess?: boolean | undefined;
|
|
1208
|
-
webSearch?: boolean | undefined;
|
|
1209
1209
|
};
|
|
1210
1210
|
};
|
|
1211
1211
|
nextRunAt: string | null;
|
|
@@ -1247,11 +1247,11 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1247
1247
|
type: z.ZodLiteral<"agent">;
|
|
1248
1248
|
agentId: z.ZodString;
|
|
1249
1249
|
}, "strip", z.ZodTypeAny, {
|
|
1250
|
-
agentId: string;
|
|
1251
1250
|
type: "agent";
|
|
1252
|
-
}, {
|
|
1253
1251
|
agentId: string;
|
|
1252
|
+
}, {
|
|
1254
1253
|
type: "agent";
|
|
1254
|
+
agentId: string;
|
|
1255
1255
|
}>, z.ZodObject<{
|
|
1256
1256
|
type: z.ZodLiteral<"new-agent">;
|
|
1257
1257
|
config: z.ZodObject<{
|
|
@@ -1269,11 +1269,11 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1269
1269
|
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1270
1270
|
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1271
1271
|
}, "strip", z.ZodTypeAny, {
|
|
1272
|
-
claude?: Record<string, unknown> | undefined;
|
|
1273
1272
|
codex?: Record<string, unknown> | undefined;
|
|
1274
|
-
}, {
|
|
1275
1273
|
claude?: Record<string, unknown> | undefined;
|
|
1274
|
+
}, {
|
|
1276
1275
|
codex?: Record<string, unknown> | undefined;
|
|
1276
|
+
claude?: Record<string, unknown> | undefined;
|
|
1277
1277
|
}>>;
|
|
1278
1278
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
1279
1279
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -1281,36 +1281,36 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1281
1281
|
provider: string;
|
|
1282
1282
|
cwd: string;
|
|
1283
1283
|
title?: string | null | undefined;
|
|
1284
|
+
model?: string | undefined;
|
|
1284
1285
|
thinkingOptionId?: string | undefined;
|
|
1285
1286
|
modeId?: string | undefined;
|
|
1286
|
-
|
|
1287
|
+
approvalPolicy?: string | undefined;
|
|
1288
|
+
sandboxMode?: string | undefined;
|
|
1289
|
+
networkAccess?: boolean | undefined;
|
|
1290
|
+
webSearch?: boolean | undefined;
|
|
1287
1291
|
extra?: {
|
|
1288
|
-
claude?: Record<string, unknown> | undefined;
|
|
1289
1292
|
codex?: Record<string, unknown> | undefined;
|
|
1293
|
+
claude?: Record<string, unknown> | undefined;
|
|
1290
1294
|
} | undefined;
|
|
1291
1295
|
systemPrompt?: string | undefined;
|
|
1292
1296
|
mcpServers?: Record<string, unknown> | undefined;
|
|
1293
|
-
approvalPolicy?: string | undefined;
|
|
1294
|
-
sandboxMode?: string | undefined;
|
|
1295
|
-
networkAccess?: boolean | undefined;
|
|
1296
|
-
webSearch?: boolean | undefined;
|
|
1297
1297
|
}, {
|
|
1298
1298
|
provider: string;
|
|
1299
1299
|
cwd: string;
|
|
1300
1300
|
title?: string | null | undefined;
|
|
1301
|
+
model?: string | undefined;
|
|
1301
1302
|
thinkingOptionId?: string | undefined;
|
|
1302
1303
|
modeId?: string | undefined;
|
|
1303
|
-
|
|
1304
|
+
approvalPolicy?: string | undefined;
|
|
1305
|
+
sandboxMode?: string | undefined;
|
|
1306
|
+
networkAccess?: boolean | undefined;
|
|
1307
|
+
webSearch?: boolean | undefined;
|
|
1304
1308
|
extra?: {
|
|
1305
|
-
claude?: Record<string, unknown> | undefined;
|
|
1306
1309
|
codex?: Record<string, unknown> | undefined;
|
|
1310
|
+
claude?: Record<string, unknown> | undefined;
|
|
1307
1311
|
} | undefined;
|
|
1308
1312
|
systemPrompt?: string | undefined;
|
|
1309
1313
|
mcpServers?: Record<string, unknown> | undefined;
|
|
1310
|
-
approvalPolicy?: string | undefined;
|
|
1311
|
-
sandboxMode?: string | undefined;
|
|
1312
|
-
networkAccess?: boolean | undefined;
|
|
1313
|
-
webSearch?: boolean | undefined;
|
|
1314
1314
|
}>;
|
|
1315
1315
|
}, "strip", z.ZodTypeAny, {
|
|
1316
1316
|
type: "new-agent";
|
|
@@ -1318,19 +1318,19 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1318
1318
|
provider: string;
|
|
1319
1319
|
cwd: string;
|
|
1320
1320
|
title?: string | null | undefined;
|
|
1321
|
+
model?: string | undefined;
|
|
1321
1322
|
thinkingOptionId?: string | undefined;
|
|
1322
1323
|
modeId?: string | undefined;
|
|
1323
|
-
|
|
1324
|
+
approvalPolicy?: string | undefined;
|
|
1325
|
+
sandboxMode?: string | undefined;
|
|
1326
|
+
networkAccess?: boolean | undefined;
|
|
1327
|
+
webSearch?: boolean | undefined;
|
|
1324
1328
|
extra?: {
|
|
1325
|
-
claude?: Record<string, unknown> | undefined;
|
|
1326
1329
|
codex?: Record<string, unknown> | undefined;
|
|
1330
|
+
claude?: Record<string, unknown> | undefined;
|
|
1327
1331
|
} | undefined;
|
|
1328
1332
|
systemPrompt?: string | undefined;
|
|
1329
1333
|
mcpServers?: Record<string, unknown> | undefined;
|
|
1330
|
-
approvalPolicy?: string | undefined;
|
|
1331
|
-
sandboxMode?: string | undefined;
|
|
1332
|
-
networkAccess?: boolean | undefined;
|
|
1333
|
-
webSearch?: boolean | undefined;
|
|
1334
1334
|
};
|
|
1335
1335
|
}, {
|
|
1336
1336
|
type: "new-agent";
|
|
@@ -1338,19 +1338,19 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1338
1338
|
provider: string;
|
|
1339
1339
|
cwd: string;
|
|
1340
1340
|
title?: string | null | undefined;
|
|
1341
|
+
model?: string | undefined;
|
|
1341
1342
|
thinkingOptionId?: string | undefined;
|
|
1342
1343
|
modeId?: string | undefined;
|
|
1343
|
-
|
|
1344
|
+
approvalPolicy?: string | undefined;
|
|
1345
|
+
sandboxMode?: string | undefined;
|
|
1346
|
+
networkAccess?: boolean | undefined;
|
|
1347
|
+
webSearch?: boolean | undefined;
|
|
1344
1348
|
extra?: {
|
|
1345
|
-
claude?: Record<string, unknown> | undefined;
|
|
1346
1349
|
codex?: Record<string, unknown> | undefined;
|
|
1350
|
+
claude?: Record<string, unknown> | undefined;
|
|
1347
1351
|
} | undefined;
|
|
1348
1352
|
systemPrompt?: string | undefined;
|
|
1349
1353
|
mcpServers?: Record<string, unknown> | undefined;
|
|
1350
|
-
approvalPolicy?: string | undefined;
|
|
1351
|
-
sandboxMode?: string | undefined;
|
|
1352
|
-
networkAccess?: boolean | undefined;
|
|
1353
|
-
webSearch?: boolean | undefined;
|
|
1354
1354
|
};
|
|
1355
1355
|
}>]>;
|
|
1356
1356
|
status: z.ZodEnum<["active", "paused", "completed"]>;
|
|
@@ -1372,29 +1372,29 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1372
1372
|
error: z.ZodNullable<z.ZodString>;
|
|
1373
1373
|
}, "strip", z.ZodTypeAny, {
|
|
1374
1374
|
error: string | null;
|
|
1375
|
-
|
|
1376
|
-
id: string;
|
|
1375
|
+
output: string | null;
|
|
1377
1376
|
status: "running" | "failed" | "succeeded";
|
|
1377
|
+
id: string;
|
|
1378
|
+
agentId: string | null;
|
|
1378
1379
|
scheduledFor: string;
|
|
1379
1380
|
startedAt: string;
|
|
1380
1381
|
endedAt: string | null;
|
|
1381
|
-
output: string | null;
|
|
1382
1382
|
}, {
|
|
1383
1383
|
error: string | null;
|
|
1384
|
-
|
|
1385
|
-
id: string;
|
|
1384
|
+
output: string | null;
|
|
1386
1385
|
status: "running" | "failed" | "succeeded";
|
|
1386
|
+
id: string;
|
|
1387
|
+
agentId: string | null;
|
|
1387
1388
|
scheduledFor: string;
|
|
1388
1389
|
startedAt: string;
|
|
1389
1390
|
endedAt: string | null;
|
|
1390
|
-
output: string | null;
|
|
1391
1391
|
}>, "many">;
|
|
1392
1392
|
}, "strip", z.ZodTypeAny, {
|
|
1393
1393
|
name: string | null;
|
|
1394
|
+
status: "active" | "paused" | "completed";
|
|
1394
1395
|
id: string;
|
|
1395
1396
|
createdAt: string;
|
|
1396
1397
|
updatedAt: string;
|
|
1397
|
-
status: "completed" | "active" | "paused";
|
|
1398
1398
|
prompt: string;
|
|
1399
1399
|
cadence: {
|
|
1400
1400
|
type: "every";
|
|
@@ -1404,27 +1404,27 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1404
1404
|
expression: string;
|
|
1405
1405
|
};
|
|
1406
1406
|
target: {
|
|
1407
|
-
agentId: string;
|
|
1408
1407
|
type: "agent";
|
|
1408
|
+
agentId: string;
|
|
1409
1409
|
} | {
|
|
1410
1410
|
type: "new-agent";
|
|
1411
1411
|
config: {
|
|
1412
1412
|
provider: string;
|
|
1413
1413
|
cwd: string;
|
|
1414
1414
|
title?: string | null | undefined;
|
|
1415
|
+
model?: string | undefined;
|
|
1415
1416
|
thinkingOptionId?: string | undefined;
|
|
1416
1417
|
modeId?: string | undefined;
|
|
1417
|
-
|
|
1418
|
+
approvalPolicy?: string | undefined;
|
|
1419
|
+
sandboxMode?: string | undefined;
|
|
1420
|
+
networkAccess?: boolean | undefined;
|
|
1421
|
+
webSearch?: boolean | undefined;
|
|
1418
1422
|
extra?: {
|
|
1419
|
-
claude?: Record<string, unknown> | undefined;
|
|
1420
1423
|
codex?: Record<string, unknown> | undefined;
|
|
1424
|
+
claude?: Record<string, unknown> | undefined;
|
|
1421
1425
|
} | undefined;
|
|
1422
1426
|
systemPrompt?: string | undefined;
|
|
1423
1427
|
mcpServers?: Record<string, unknown> | undefined;
|
|
1424
|
-
approvalPolicy?: string | undefined;
|
|
1425
|
-
sandboxMode?: string | undefined;
|
|
1426
|
-
networkAccess?: boolean | undefined;
|
|
1427
|
-
webSearch?: boolean | undefined;
|
|
1428
1428
|
};
|
|
1429
1429
|
};
|
|
1430
1430
|
nextRunAt: string | null;
|
|
@@ -1434,20 +1434,20 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1434
1434
|
maxRuns: number | null;
|
|
1435
1435
|
runs: {
|
|
1436
1436
|
error: string | null;
|
|
1437
|
-
|
|
1438
|
-
id: string;
|
|
1437
|
+
output: string | null;
|
|
1439
1438
|
status: "running" | "failed" | "succeeded";
|
|
1439
|
+
id: string;
|
|
1440
|
+
agentId: string | null;
|
|
1440
1441
|
scheduledFor: string;
|
|
1441
1442
|
startedAt: string;
|
|
1442
1443
|
endedAt: string | null;
|
|
1443
|
-
output: string | null;
|
|
1444
1444
|
}[];
|
|
1445
1445
|
}, {
|
|
1446
1446
|
name: string | null;
|
|
1447
|
+
status: "active" | "paused" | "completed";
|
|
1447
1448
|
id: string;
|
|
1448
1449
|
createdAt: string;
|
|
1449
1450
|
updatedAt: string;
|
|
1450
|
-
status: "completed" | "active" | "paused";
|
|
1451
1451
|
prompt: string;
|
|
1452
1452
|
cadence: {
|
|
1453
1453
|
type: "every";
|
|
@@ -1457,27 +1457,27 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1457
1457
|
expression: string;
|
|
1458
1458
|
};
|
|
1459
1459
|
target: {
|
|
1460
|
-
agentId: string;
|
|
1461
1460
|
type: "agent";
|
|
1461
|
+
agentId: string;
|
|
1462
1462
|
} | {
|
|
1463
1463
|
type: "new-agent";
|
|
1464
1464
|
config: {
|
|
1465
1465
|
provider: string;
|
|
1466
1466
|
cwd: string;
|
|
1467
1467
|
title?: string | null | undefined;
|
|
1468
|
+
model?: string | undefined;
|
|
1468
1469
|
thinkingOptionId?: string | undefined;
|
|
1469
1470
|
modeId?: string | undefined;
|
|
1470
|
-
|
|
1471
|
+
approvalPolicy?: string | undefined;
|
|
1472
|
+
sandboxMode?: string | undefined;
|
|
1473
|
+
networkAccess?: boolean | undefined;
|
|
1474
|
+
webSearch?: boolean | undefined;
|
|
1471
1475
|
extra?: {
|
|
1472
|
-
claude?: Record<string, unknown> | undefined;
|
|
1473
1476
|
codex?: Record<string, unknown> | undefined;
|
|
1477
|
+
claude?: Record<string, unknown> | undefined;
|
|
1474
1478
|
} | undefined;
|
|
1475
1479
|
systemPrompt?: string | undefined;
|
|
1476
1480
|
mcpServers?: Record<string, unknown> | undefined;
|
|
1477
|
-
approvalPolicy?: string | undefined;
|
|
1478
|
-
sandboxMode?: string | undefined;
|
|
1479
|
-
networkAccess?: boolean | undefined;
|
|
1480
|
-
webSearch?: boolean | undefined;
|
|
1481
1481
|
};
|
|
1482
1482
|
};
|
|
1483
1483
|
nextRunAt: string | null;
|
|
@@ -1487,13 +1487,13 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1487
1487
|
maxRuns: number | null;
|
|
1488
1488
|
runs: {
|
|
1489
1489
|
error: string | null;
|
|
1490
|
-
|
|
1491
|
-
id: string;
|
|
1490
|
+
output: string | null;
|
|
1492
1491
|
status: "running" | "failed" | "succeeded";
|
|
1492
|
+
id: string;
|
|
1493
|
+
agentId: string | null;
|
|
1493
1494
|
scheduledFor: string;
|
|
1494
1495
|
startedAt: string;
|
|
1495
1496
|
endedAt: string | null;
|
|
1496
|
-
output: string | null;
|
|
1497
1497
|
}[];
|
|
1498
1498
|
}>>;
|
|
1499
1499
|
error: z.ZodNullable<z.ZodString>;
|
|
@@ -1502,10 +1502,10 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1502
1502
|
requestId: string;
|
|
1503
1503
|
schedule: {
|
|
1504
1504
|
name: string | null;
|
|
1505
|
+
status: "active" | "paused" | "completed";
|
|
1505
1506
|
id: string;
|
|
1506
1507
|
createdAt: string;
|
|
1507
1508
|
updatedAt: string;
|
|
1508
|
-
status: "completed" | "active" | "paused";
|
|
1509
1509
|
prompt: string;
|
|
1510
1510
|
cadence: {
|
|
1511
1511
|
type: "every";
|
|
@@ -1515,27 +1515,27 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1515
1515
|
expression: string;
|
|
1516
1516
|
};
|
|
1517
1517
|
target: {
|
|
1518
|
-
agentId: string;
|
|
1519
1518
|
type: "agent";
|
|
1519
|
+
agentId: string;
|
|
1520
1520
|
} | {
|
|
1521
1521
|
type: "new-agent";
|
|
1522
1522
|
config: {
|
|
1523
1523
|
provider: string;
|
|
1524
1524
|
cwd: string;
|
|
1525
1525
|
title?: string | null | undefined;
|
|
1526
|
+
model?: string | undefined;
|
|
1526
1527
|
thinkingOptionId?: string | undefined;
|
|
1527
1528
|
modeId?: string | undefined;
|
|
1528
|
-
|
|
1529
|
+
approvalPolicy?: string | undefined;
|
|
1530
|
+
sandboxMode?: string | undefined;
|
|
1531
|
+
networkAccess?: boolean | undefined;
|
|
1532
|
+
webSearch?: boolean | undefined;
|
|
1529
1533
|
extra?: {
|
|
1530
|
-
claude?: Record<string, unknown> | undefined;
|
|
1531
1534
|
codex?: Record<string, unknown> | undefined;
|
|
1535
|
+
claude?: Record<string, unknown> | undefined;
|
|
1532
1536
|
} | undefined;
|
|
1533
1537
|
systemPrompt?: string | undefined;
|
|
1534
1538
|
mcpServers?: Record<string, unknown> | undefined;
|
|
1535
|
-
approvalPolicy?: string | undefined;
|
|
1536
|
-
sandboxMode?: string | undefined;
|
|
1537
|
-
networkAccess?: boolean | undefined;
|
|
1538
|
-
webSearch?: boolean | undefined;
|
|
1539
1539
|
};
|
|
1540
1540
|
};
|
|
1541
1541
|
nextRunAt: string | null;
|
|
@@ -1545,13 +1545,13 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1545
1545
|
maxRuns: number | null;
|
|
1546
1546
|
runs: {
|
|
1547
1547
|
error: string | null;
|
|
1548
|
-
|
|
1549
|
-
id: string;
|
|
1548
|
+
output: string | null;
|
|
1550
1549
|
status: "running" | "failed" | "succeeded";
|
|
1550
|
+
id: string;
|
|
1551
|
+
agentId: string | null;
|
|
1551
1552
|
scheduledFor: string;
|
|
1552
1553
|
startedAt: string;
|
|
1553
1554
|
endedAt: string | null;
|
|
1554
|
-
output: string | null;
|
|
1555
1555
|
}[];
|
|
1556
1556
|
} | null;
|
|
1557
1557
|
}, {
|
|
@@ -1559,10 +1559,10 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1559
1559
|
requestId: string;
|
|
1560
1560
|
schedule: {
|
|
1561
1561
|
name: string | null;
|
|
1562
|
+
status: "active" | "paused" | "completed";
|
|
1562
1563
|
id: string;
|
|
1563
1564
|
createdAt: string;
|
|
1564
1565
|
updatedAt: string;
|
|
1565
|
-
status: "completed" | "active" | "paused";
|
|
1566
1566
|
prompt: string;
|
|
1567
1567
|
cadence: {
|
|
1568
1568
|
type: "every";
|
|
@@ -1572,27 +1572,27 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1572
1572
|
expression: string;
|
|
1573
1573
|
};
|
|
1574
1574
|
target: {
|
|
1575
|
-
agentId: string;
|
|
1576
1575
|
type: "agent";
|
|
1576
|
+
agentId: string;
|
|
1577
1577
|
} | {
|
|
1578
1578
|
type: "new-agent";
|
|
1579
1579
|
config: {
|
|
1580
1580
|
provider: string;
|
|
1581
1581
|
cwd: string;
|
|
1582
1582
|
title?: string | null | undefined;
|
|
1583
|
+
model?: string | undefined;
|
|
1583
1584
|
thinkingOptionId?: string | undefined;
|
|
1584
1585
|
modeId?: string | undefined;
|
|
1585
|
-
|
|
1586
|
+
approvalPolicy?: string | undefined;
|
|
1587
|
+
sandboxMode?: string | undefined;
|
|
1588
|
+
networkAccess?: boolean | undefined;
|
|
1589
|
+
webSearch?: boolean | undefined;
|
|
1586
1590
|
extra?: {
|
|
1587
|
-
claude?: Record<string, unknown> | undefined;
|
|
1588
1591
|
codex?: Record<string, unknown> | undefined;
|
|
1592
|
+
claude?: Record<string, unknown> | undefined;
|
|
1589
1593
|
} | undefined;
|
|
1590
1594
|
systemPrompt?: string | undefined;
|
|
1591
1595
|
mcpServers?: Record<string, unknown> | undefined;
|
|
1592
|
-
approvalPolicy?: string | undefined;
|
|
1593
|
-
sandboxMode?: string | undefined;
|
|
1594
|
-
networkAccess?: boolean | undefined;
|
|
1595
|
-
webSearch?: boolean | undefined;
|
|
1596
1596
|
};
|
|
1597
1597
|
};
|
|
1598
1598
|
nextRunAt: string | null;
|
|
@@ -1602,13 +1602,13 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1602
1602
|
maxRuns: number | null;
|
|
1603
1603
|
runs: {
|
|
1604
1604
|
error: string | null;
|
|
1605
|
-
|
|
1606
|
-
id: string;
|
|
1605
|
+
output: string | null;
|
|
1607
1606
|
status: "running" | "failed" | "succeeded";
|
|
1607
|
+
id: string;
|
|
1608
|
+
agentId: string | null;
|
|
1608
1609
|
scheduledFor: string;
|
|
1609
1610
|
startedAt: string;
|
|
1610
1611
|
endedAt: string | null;
|
|
1611
|
-
output: string | null;
|
|
1612
1612
|
}[];
|
|
1613
1613
|
} | null;
|
|
1614
1614
|
}>;
|
|
@@ -1619,10 +1619,10 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1619
1619
|
requestId: string;
|
|
1620
1620
|
schedule: {
|
|
1621
1621
|
name: string | null;
|
|
1622
|
+
status: "active" | "paused" | "completed";
|
|
1622
1623
|
id: string;
|
|
1623
1624
|
createdAt: string;
|
|
1624
1625
|
updatedAt: string;
|
|
1625
|
-
status: "completed" | "active" | "paused";
|
|
1626
1626
|
prompt: string;
|
|
1627
1627
|
cadence: {
|
|
1628
1628
|
type: "every";
|
|
@@ -1632,27 +1632,27 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1632
1632
|
expression: string;
|
|
1633
1633
|
};
|
|
1634
1634
|
target: {
|
|
1635
|
-
agentId: string;
|
|
1636
1635
|
type: "agent";
|
|
1636
|
+
agentId: string;
|
|
1637
1637
|
} | {
|
|
1638
1638
|
type: "new-agent";
|
|
1639
1639
|
config: {
|
|
1640
1640
|
provider: string;
|
|
1641
1641
|
cwd: string;
|
|
1642
1642
|
title?: string | null | undefined;
|
|
1643
|
+
model?: string | undefined;
|
|
1643
1644
|
thinkingOptionId?: string | undefined;
|
|
1644
1645
|
modeId?: string | undefined;
|
|
1645
|
-
|
|
1646
|
+
approvalPolicy?: string | undefined;
|
|
1647
|
+
sandboxMode?: string | undefined;
|
|
1648
|
+
networkAccess?: boolean | undefined;
|
|
1649
|
+
webSearch?: boolean | undefined;
|
|
1646
1650
|
extra?: {
|
|
1647
|
-
claude?: Record<string, unknown> | undefined;
|
|
1648
1651
|
codex?: Record<string, unknown> | undefined;
|
|
1652
|
+
claude?: Record<string, unknown> | undefined;
|
|
1649
1653
|
} | undefined;
|
|
1650
1654
|
systemPrompt?: string | undefined;
|
|
1651
1655
|
mcpServers?: Record<string, unknown> | undefined;
|
|
1652
|
-
approvalPolicy?: string | undefined;
|
|
1653
|
-
sandboxMode?: string | undefined;
|
|
1654
|
-
networkAccess?: boolean | undefined;
|
|
1655
|
-
webSearch?: boolean | undefined;
|
|
1656
1656
|
};
|
|
1657
1657
|
};
|
|
1658
1658
|
nextRunAt: string | null;
|
|
@@ -1662,13 +1662,13 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1662
1662
|
maxRuns: number | null;
|
|
1663
1663
|
runs: {
|
|
1664
1664
|
error: string | null;
|
|
1665
|
-
|
|
1666
|
-
id: string;
|
|
1665
|
+
output: string | null;
|
|
1667
1666
|
status: "running" | "failed" | "succeeded";
|
|
1667
|
+
id: string;
|
|
1668
|
+
agentId: string | null;
|
|
1668
1669
|
scheduledFor: string;
|
|
1669
1670
|
startedAt: string;
|
|
1670
1671
|
endedAt: string | null;
|
|
1671
|
-
output: string | null;
|
|
1672
1672
|
}[];
|
|
1673
1673
|
} | null;
|
|
1674
1674
|
};
|
|
@@ -1679,10 +1679,10 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1679
1679
|
requestId: string;
|
|
1680
1680
|
schedule: {
|
|
1681
1681
|
name: string | null;
|
|
1682
|
+
status: "active" | "paused" | "completed";
|
|
1682
1683
|
id: string;
|
|
1683
1684
|
createdAt: string;
|
|
1684
1685
|
updatedAt: string;
|
|
1685
|
-
status: "completed" | "active" | "paused";
|
|
1686
1686
|
prompt: string;
|
|
1687
1687
|
cadence: {
|
|
1688
1688
|
type: "every";
|
|
@@ -1692,27 +1692,27 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1692
1692
|
expression: string;
|
|
1693
1693
|
};
|
|
1694
1694
|
target: {
|
|
1695
|
-
agentId: string;
|
|
1696
1695
|
type: "agent";
|
|
1696
|
+
agentId: string;
|
|
1697
1697
|
} | {
|
|
1698
1698
|
type: "new-agent";
|
|
1699
1699
|
config: {
|
|
1700
1700
|
provider: string;
|
|
1701
1701
|
cwd: string;
|
|
1702
1702
|
title?: string | null | undefined;
|
|
1703
|
+
model?: string | undefined;
|
|
1703
1704
|
thinkingOptionId?: string | undefined;
|
|
1704
1705
|
modeId?: string | undefined;
|
|
1705
|
-
|
|
1706
|
+
approvalPolicy?: string | undefined;
|
|
1707
|
+
sandboxMode?: string | undefined;
|
|
1708
|
+
networkAccess?: boolean | undefined;
|
|
1709
|
+
webSearch?: boolean | undefined;
|
|
1706
1710
|
extra?: {
|
|
1707
|
-
claude?: Record<string, unknown> | undefined;
|
|
1708
1711
|
codex?: Record<string, unknown> | undefined;
|
|
1712
|
+
claude?: Record<string, unknown> | undefined;
|
|
1709
1713
|
} | undefined;
|
|
1710
1714
|
systemPrompt?: string | undefined;
|
|
1711
1715
|
mcpServers?: Record<string, unknown> | undefined;
|
|
1712
|
-
approvalPolicy?: string | undefined;
|
|
1713
|
-
sandboxMode?: string | undefined;
|
|
1714
|
-
networkAccess?: boolean | undefined;
|
|
1715
|
-
webSearch?: boolean | undefined;
|
|
1716
1716
|
};
|
|
1717
1717
|
};
|
|
1718
1718
|
nextRunAt: string | null;
|
|
@@ -1722,13 +1722,13 @@ export declare const ScheduleInspectResponseSchema: z.ZodObject<{
|
|
|
1722
1722
|
maxRuns: number | null;
|
|
1723
1723
|
runs: {
|
|
1724
1724
|
error: string | null;
|
|
1725
|
-
|
|
1726
|
-
id: string;
|
|
1725
|
+
output: string | null;
|
|
1727
1726
|
status: "running" | "failed" | "succeeded";
|
|
1727
|
+
id: string;
|
|
1728
|
+
agentId: string | null;
|
|
1728
1729
|
scheduledFor: string;
|
|
1729
1730
|
startedAt: string;
|
|
1730
1731
|
endedAt: string | null;
|
|
1731
|
-
output: string | null;
|
|
1732
1732
|
}[];
|
|
1733
1733
|
} | null;
|
|
1734
1734
|
};
|
|
@@ -1748,22 +1748,22 @@ export declare const ScheduleLogsResponseSchema: z.ZodObject<{
|
|
|
1748
1748
|
error: z.ZodNullable<z.ZodString>;
|
|
1749
1749
|
}, "strip", z.ZodTypeAny, {
|
|
1750
1750
|
error: string | null;
|
|
1751
|
-
|
|
1752
|
-
id: string;
|
|
1751
|
+
output: string | null;
|
|
1753
1752
|
status: "running" | "failed" | "succeeded";
|
|
1753
|
+
id: string;
|
|
1754
|
+
agentId: string | null;
|
|
1754
1755
|
scheduledFor: string;
|
|
1755
1756
|
startedAt: string;
|
|
1756
1757
|
endedAt: string | null;
|
|
1757
|
-
output: string | null;
|
|
1758
1758
|
}, {
|
|
1759
1759
|
error: string | null;
|
|
1760
|
-
|
|
1761
|
-
id: string;
|
|
1760
|
+
output: string | null;
|
|
1762
1761
|
status: "running" | "failed" | "succeeded";
|
|
1762
|
+
id: string;
|
|
1763
|
+
agentId: string | null;
|
|
1763
1764
|
scheduledFor: string;
|
|
1764
1765
|
startedAt: string;
|
|
1765
1766
|
endedAt: string | null;
|
|
1766
|
-
output: string | null;
|
|
1767
1767
|
}>, "many">;
|
|
1768
1768
|
error: z.ZodNullable<z.ZodString>;
|
|
1769
1769
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1771,26 +1771,26 @@ export declare const ScheduleLogsResponseSchema: z.ZodObject<{
|
|
|
1771
1771
|
requestId: string;
|
|
1772
1772
|
runs: {
|
|
1773
1773
|
error: string | null;
|
|
1774
|
-
|
|
1775
|
-
id: string;
|
|
1774
|
+
output: string | null;
|
|
1776
1775
|
status: "running" | "failed" | "succeeded";
|
|
1776
|
+
id: string;
|
|
1777
|
+
agentId: string | null;
|
|
1777
1778
|
scheduledFor: string;
|
|
1778
1779
|
startedAt: string;
|
|
1779
1780
|
endedAt: string | null;
|
|
1780
|
-
output: string | null;
|
|
1781
1781
|
}[];
|
|
1782
1782
|
}, {
|
|
1783
1783
|
error: string | null;
|
|
1784
1784
|
requestId: string;
|
|
1785
1785
|
runs: {
|
|
1786
1786
|
error: string | null;
|
|
1787
|
-
|
|
1788
|
-
id: string;
|
|
1787
|
+
output: string | null;
|
|
1789
1788
|
status: "running" | "failed" | "succeeded";
|
|
1789
|
+
id: string;
|
|
1790
|
+
agentId: string | null;
|
|
1790
1791
|
scheduledFor: string;
|
|
1791
1792
|
startedAt: string;
|
|
1792
1793
|
endedAt: string | null;
|
|
1793
|
-
output: string | null;
|
|
1794
1794
|
}[];
|
|
1795
1795
|
}>;
|
|
1796
1796
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1800,13 +1800,13 @@ export declare const ScheduleLogsResponseSchema: z.ZodObject<{
|
|
|
1800
1800
|
requestId: string;
|
|
1801
1801
|
runs: {
|
|
1802
1802
|
error: string | null;
|
|
1803
|
-
|
|
1804
|
-
id: string;
|
|
1803
|
+
output: string | null;
|
|
1805
1804
|
status: "running" | "failed" | "succeeded";
|
|
1805
|
+
id: string;
|
|
1806
|
+
agentId: string | null;
|
|
1806
1807
|
scheduledFor: string;
|
|
1807
1808
|
startedAt: string;
|
|
1808
1809
|
endedAt: string | null;
|
|
1809
|
-
output: string | null;
|
|
1810
1810
|
}[];
|
|
1811
1811
|
};
|
|
1812
1812
|
}, {
|
|
@@ -1816,13 +1816,13 @@ export declare const ScheduleLogsResponseSchema: z.ZodObject<{
|
|
|
1816
1816
|
requestId: string;
|
|
1817
1817
|
runs: {
|
|
1818
1818
|
error: string | null;
|
|
1819
|
-
|
|
1820
|
-
id: string;
|
|
1819
|
+
output: string | null;
|
|
1821
1820
|
status: "running" | "failed" | "succeeded";
|
|
1821
|
+
id: string;
|
|
1822
|
+
agentId: string | null;
|
|
1822
1823
|
scheduledFor: string;
|
|
1823
1824
|
startedAt: string;
|
|
1824
1825
|
endedAt: string | null;
|
|
1825
|
-
output: string | null;
|
|
1826
1826
|
}[];
|
|
1827
1827
|
};
|
|
1828
1828
|
}>;
|
|
@@ -1857,11 +1857,11 @@ export declare const SchedulePauseResponseSchema: z.ZodObject<{
|
|
|
1857
1857
|
type: z.ZodLiteral<"agent">;
|
|
1858
1858
|
agentId: z.ZodString;
|
|
1859
1859
|
}, "strip", z.ZodTypeAny, {
|
|
1860
|
-
agentId: string;
|
|
1861
1860
|
type: "agent";
|
|
1862
|
-
}, {
|
|
1863
1861
|
agentId: string;
|
|
1862
|
+
}, {
|
|
1864
1863
|
type: "agent";
|
|
1864
|
+
agentId: string;
|
|
1865
1865
|
}>, z.ZodObject<{
|
|
1866
1866
|
type: z.ZodLiteral<"new-agent">;
|
|
1867
1867
|
config: z.ZodObject<{
|
|
@@ -1879,11 +1879,11 @@ export declare const SchedulePauseResponseSchema: z.ZodObject<{
|
|
|
1879
1879
|
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1880
1880
|
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1881
1881
|
}, "strip", z.ZodTypeAny, {
|
|
1882
|
-
claude?: Record<string, unknown> | undefined;
|
|
1883
1882
|
codex?: Record<string, unknown> | undefined;
|
|
1884
|
-
}, {
|
|
1885
1883
|
claude?: Record<string, unknown> | undefined;
|
|
1884
|
+
}, {
|
|
1886
1885
|
codex?: Record<string, unknown> | undefined;
|
|
1886
|
+
claude?: Record<string, unknown> | undefined;
|
|
1887
1887
|
}>>;
|
|
1888
1888
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
1889
1889
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -1891,36 +1891,36 @@ export declare const SchedulePauseResponseSchema: z.ZodObject<{
|
|
|
1891
1891
|
provider: string;
|
|
1892
1892
|
cwd: string;
|
|
1893
1893
|
title?: string | null | undefined;
|
|
1894
|
+
model?: string | undefined;
|
|
1894
1895
|
thinkingOptionId?: string | undefined;
|
|
1895
1896
|
modeId?: string | undefined;
|
|
1896
|
-
|
|
1897
|
+
approvalPolicy?: string | undefined;
|
|
1898
|
+
sandboxMode?: string | undefined;
|
|
1899
|
+
networkAccess?: boolean | undefined;
|
|
1900
|
+
webSearch?: boolean | undefined;
|
|
1897
1901
|
extra?: {
|
|
1898
|
-
claude?: Record<string, unknown> | undefined;
|
|
1899
1902
|
codex?: Record<string, unknown> | undefined;
|
|
1903
|
+
claude?: Record<string, unknown> | undefined;
|
|
1900
1904
|
} | undefined;
|
|
1901
1905
|
systemPrompt?: string | undefined;
|
|
1902
1906
|
mcpServers?: Record<string, unknown> | undefined;
|
|
1903
|
-
approvalPolicy?: string | undefined;
|
|
1904
|
-
sandboxMode?: string | undefined;
|
|
1905
|
-
networkAccess?: boolean | undefined;
|
|
1906
|
-
webSearch?: boolean | undefined;
|
|
1907
1907
|
}, {
|
|
1908
1908
|
provider: string;
|
|
1909
1909
|
cwd: string;
|
|
1910
1910
|
title?: string | null | undefined;
|
|
1911
|
+
model?: string | undefined;
|
|
1911
1912
|
thinkingOptionId?: string | undefined;
|
|
1912
1913
|
modeId?: string | undefined;
|
|
1913
|
-
|
|
1914
|
+
approvalPolicy?: string | undefined;
|
|
1915
|
+
sandboxMode?: string | undefined;
|
|
1916
|
+
networkAccess?: boolean | undefined;
|
|
1917
|
+
webSearch?: boolean | undefined;
|
|
1914
1918
|
extra?: {
|
|
1915
|
-
claude?: Record<string, unknown> | undefined;
|
|
1916
1919
|
codex?: Record<string, unknown> | undefined;
|
|
1920
|
+
claude?: Record<string, unknown> | undefined;
|
|
1917
1921
|
} | undefined;
|
|
1918
1922
|
systemPrompt?: string | undefined;
|
|
1919
1923
|
mcpServers?: Record<string, unknown> | undefined;
|
|
1920
|
-
approvalPolicy?: string | undefined;
|
|
1921
|
-
sandboxMode?: string | undefined;
|
|
1922
|
-
networkAccess?: boolean | undefined;
|
|
1923
|
-
webSearch?: boolean | undefined;
|
|
1924
1924
|
}>;
|
|
1925
1925
|
}, "strip", z.ZodTypeAny, {
|
|
1926
1926
|
type: "new-agent";
|
|
@@ -1928,19 +1928,19 @@ export declare const SchedulePauseResponseSchema: z.ZodObject<{
|
|
|
1928
1928
|
provider: string;
|
|
1929
1929
|
cwd: string;
|
|
1930
1930
|
title?: string | null | undefined;
|
|
1931
|
+
model?: string | undefined;
|
|
1931
1932
|
thinkingOptionId?: string | undefined;
|
|
1932
1933
|
modeId?: string | undefined;
|
|
1933
|
-
|
|
1934
|
+
approvalPolicy?: string | undefined;
|
|
1935
|
+
sandboxMode?: string | undefined;
|
|
1936
|
+
networkAccess?: boolean | undefined;
|
|
1937
|
+
webSearch?: boolean | undefined;
|
|
1934
1938
|
extra?: {
|
|
1935
|
-
claude?: Record<string, unknown> | undefined;
|
|
1936
1939
|
codex?: Record<string, unknown> | undefined;
|
|
1940
|
+
claude?: Record<string, unknown> | undefined;
|
|
1937
1941
|
} | undefined;
|
|
1938
1942
|
systemPrompt?: string | undefined;
|
|
1939
1943
|
mcpServers?: Record<string, unknown> | undefined;
|
|
1940
|
-
approvalPolicy?: string | undefined;
|
|
1941
|
-
sandboxMode?: string | undefined;
|
|
1942
|
-
networkAccess?: boolean | undefined;
|
|
1943
|
-
webSearch?: boolean | undefined;
|
|
1944
1944
|
};
|
|
1945
1945
|
}, {
|
|
1946
1946
|
type: "new-agent";
|
|
@@ -1948,19 +1948,19 @@ export declare const SchedulePauseResponseSchema: z.ZodObject<{
|
|
|
1948
1948
|
provider: string;
|
|
1949
1949
|
cwd: string;
|
|
1950
1950
|
title?: string | null | undefined;
|
|
1951
|
+
model?: string | undefined;
|
|
1951
1952
|
thinkingOptionId?: string | undefined;
|
|
1952
1953
|
modeId?: string | undefined;
|
|
1953
|
-
|
|
1954
|
+
approvalPolicy?: string | undefined;
|
|
1955
|
+
sandboxMode?: string | undefined;
|
|
1956
|
+
networkAccess?: boolean | undefined;
|
|
1957
|
+
webSearch?: boolean | undefined;
|
|
1954
1958
|
extra?: {
|
|
1955
|
-
claude?: Record<string, unknown> | undefined;
|
|
1956
1959
|
codex?: Record<string, unknown> | undefined;
|
|
1960
|
+
claude?: Record<string, unknown> | undefined;
|
|
1957
1961
|
} | undefined;
|
|
1958
1962
|
systemPrompt?: string | undefined;
|
|
1959
1963
|
mcpServers?: Record<string, unknown> | undefined;
|
|
1960
|
-
approvalPolicy?: string | undefined;
|
|
1961
|
-
sandboxMode?: string | undefined;
|
|
1962
|
-
networkAccess?: boolean | undefined;
|
|
1963
|
-
webSearch?: boolean | undefined;
|
|
1964
1964
|
};
|
|
1965
1965
|
}>]>;
|
|
1966
1966
|
status: z.ZodEnum<["active", "paused", "completed"]>;
|
|
@@ -1982,29 +1982,29 @@ export declare const SchedulePauseResponseSchema: z.ZodObject<{
|
|
|
1982
1982
|
error: z.ZodNullable<z.ZodString>;
|
|
1983
1983
|
}, "strip", z.ZodTypeAny, {
|
|
1984
1984
|
error: string | null;
|
|
1985
|
-
|
|
1986
|
-
id: string;
|
|
1985
|
+
output: string | null;
|
|
1987
1986
|
status: "running" | "failed" | "succeeded";
|
|
1987
|
+
id: string;
|
|
1988
|
+
agentId: string | null;
|
|
1988
1989
|
scheduledFor: string;
|
|
1989
1990
|
startedAt: string;
|
|
1990
1991
|
endedAt: string | null;
|
|
1991
|
-
output: string | null;
|
|
1992
1992
|
}, {
|
|
1993
1993
|
error: string | null;
|
|
1994
|
-
|
|
1995
|
-
id: string;
|
|
1994
|
+
output: string | null;
|
|
1996
1995
|
status: "running" | "failed" | "succeeded";
|
|
1996
|
+
id: string;
|
|
1997
|
+
agentId: string | null;
|
|
1997
1998
|
scheduledFor: string;
|
|
1998
1999
|
startedAt: string;
|
|
1999
2000
|
endedAt: string | null;
|
|
2000
|
-
output: string | null;
|
|
2001
2001
|
}>, "many">;
|
|
2002
2002
|
}, "runs">, "strip", z.ZodTypeAny, {
|
|
2003
2003
|
name: string | null;
|
|
2004
|
+
status: "active" | "paused" | "completed";
|
|
2004
2005
|
id: string;
|
|
2005
2006
|
createdAt: string;
|
|
2006
2007
|
updatedAt: string;
|
|
2007
|
-
status: "completed" | "active" | "paused";
|
|
2008
2008
|
prompt: string;
|
|
2009
2009
|
cadence: {
|
|
2010
2010
|
type: "every";
|
|
@@ -2014,27 +2014,27 @@ export declare const SchedulePauseResponseSchema: z.ZodObject<{
|
|
|
2014
2014
|
expression: string;
|
|
2015
2015
|
};
|
|
2016
2016
|
target: {
|
|
2017
|
-
agentId: string;
|
|
2018
2017
|
type: "agent";
|
|
2018
|
+
agentId: string;
|
|
2019
2019
|
} | {
|
|
2020
2020
|
type: "new-agent";
|
|
2021
2021
|
config: {
|
|
2022
2022
|
provider: string;
|
|
2023
2023
|
cwd: string;
|
|
2024
2024
|
title?: string | null | undefined;
|
|
2025
|
+
model?: string | undefined;
|
|
2025
2026
|
thinkingOptionId?: string | undefined;
|
|
2026
2027
|
modeId?: string | undefined;
|
|
2027
|
-
|
|
2028
|
+
approvalPolicy?: string | undefined;
|
|
2029
|
+
sandboxMode?: string | undefined;
|
|
2030
|
+
networkAccess?: boolean | undefined;
|
|
2031
|
+
webSearch?: boolean | undefined;
|
|
2028
2032
|
extra?: {
|
|
2029
|
-
claude?: Record<string, unknown> | undefined;
|
|
2030
2033
|
codex?: Record<string, unknown> | undefined;
|
|
2034
|
+
claude?: Record<string, unknown> | undefined;
|
|
2031
2035
|
} | undefined;
|
|
2032
2036
|
systemPrompt?: string | undefined;
|
|
2033
2037
|
mcpServers?: Record<string, unknown> | undefined;
|
|
2034
|
-
approvalPolicy?: string | undefined;
|
|
2035
|
-
sandboxMode?: string | undefined;
|
|
2036
|
-
networkAccess?: boolean | undefined;
|
|
2037
|
-
webSearch?: boolean | undefined;
|
|
2038
2038
|
};
|
|
2039
2039
|
};
|
|
2040
2040
|
nextRunAt: string | null;
|
|
@@ -2044,10 +2044,10 @@ export declare const SchedulePauseResponseSchema: z.ZodObject<{
|
|
|
2044
2044
|
maxRuns: number | null;
|
|
2045
2045
|
}, {
|
|
2046
2046
|
name: string | null;
|
|
2047
|
+
status: "active" | "paused" | "completed";
|
|
2047
2048
|
id: string;
|
|
2048
2049
|
createdAt: string;
|
|
2049
2050
|
updatedAt: string;
|
|
2050
|
-
status: "completed" | "active" | "paused";
|
|
2051
2051
|
prompt: string;
|
|
2052
2052
|
cadence: {
|
|
2053
2053
|
type: "every";
|
|
@@ -2057,27 +2057,27 @@ export declare const SchedulePauseResponseSchema: z.ZodObject<{
|
|
|
2057
2057
|
expression: string;
|
|
2058
2058
|
};
|
|
2059
2059
|
target: {
|
|
2060
|
-
agentId: string;
|
|
2061
2060
|
type: "agent";
|
|
2061
|
+
agentId: string;
|
|
2062
2062
|
} | {
|
|
2063
2063
|
type: "new-agent";
|
|
2064
2064
|
config: {
|
|
2065
2065
|
provider: string;
|
|
2066
2066
|
cwd: string;
|
|
2067
2067
|
title?: string | null | undefined;
|
|
2068
|
+
model?: string | undefined;
|
|
2068
2069
|
thinkingOptionId?: string | undefined;
|
|
2069
2070
|
modeId?: string | undefined;
|
|
2070
|
-
|
|
2071
|
+
approvalPolicy?: string | undefined;
|
|
2072
|
+
sandboxMode?: string | undefined;
|
|
2073
|
+
networkAccess?: boolean | undefined;
|
|
2074
|
+
webSearch?: boolean | undefined;
|
|
2071
2075
|
extra?: {
|
|
2072
|
-
claude?: Record<string, unknown> | undefined;
|
|
2073
2076
|
codex?: Record<string, unknown> | undefined;
|
|
2077
|
+
claude?: Record<string, unknown> | undefined;
|
|
2074
2078
|
} | undefined;
|
|
2075
2079
|
systemPrompt?: string | undefined;
|
|
2076
2080
|
mcpServers?: Record<string, unknown> | undefined;
|
|
2077
|
-
approvalPolicy?: string | undefined;
|
|
2078
|
-
sandboxMode?: string | undefined;
|
|
2079
|
-
networkAccess?: boolean | undefined;
|
|
2080
|
-
webSearch?: boolean | undefined;
|
|
2081
2081
|
};
|
|
2082
2082
|
};
|
|
2083
2083
|
nextRunAt: string | null;
|
|
@@ -2092,10 +2092,10 @@ export declare const SchedulePauseResponseSchema: z.ZodObject<{
|
|
|
2092
2092
|
requestId: string;
|
|
2093
2093
|
schedule: {
|
|
2094
2094
|
name: string | null;
|
|
2095
|
+
status: "active" | "paused" | "completed";
|
|
2095
2096
|
id: string;
|
|
2096
2097
|
createdAt: string;
|
|
2097
2098
|
updatedAt: string;
|
|
2098
|
-
status: "completed" | "active" | "paused";
|
|
2099
2099
|
prompt: string;
|
|
2100
2100
|
cadence: {
|
|
2101
2101
|
type: "every";
|
|
@@ -2105,27 +2105,27 @@ export declare const SchedulePauseResponseSchema: z.ZodObject<{
|
|
|
2105
2105
|
expression: string;
|
|
2106
2106
|
};
|
|
2107
2107
|
target: {
|
|
2108
|
-
agentId: string;
|
|
2109
2108
|
type: "agent";
|
|
2109
|
+
agentId: string;
|
|
2110
2110
|
} | {
|
|
2111
2111
|
type: "new-agent";
|
|
2112
2112
|
config: {
|
|
2113
2113
|
provider: string;
|
|
2114
2114
|
cwd: string;
|
|
2115
2115
|
title?: string | null | undefined;
|
|
2116
|
+
model?: string | undefined;
|
|
2116
2117
|
thinkingOptionId?: string | undefined;
|
|
2117
2118
|
modeId?: string | undefined;
|
|
2118
|
-
|
|
2119
|
+
approvalPolicy?: string | undefined;
|
|
2120
|
+
sandboxMode?: string | undefined;
|
|
2121
|
+
networkAccess?: boolean | undefined;
|
|
2122
|
+
webSearch?: boolean | undefined;
|
|
2119
2123
|
extra?: {
|
|
2120
|
-
claude?: Record<string, unknown> | undefined;
|
|
2121
2124
|
codex?: Record<string, unknown> | undefined;
|
|
2125
|
+
claude?: Record<string, unknown> | undefined;
|
|
2122
2126
|
} | undefined;
|
|
2123
2127
|
systemPrompt?: string | undefined;
|
|
2124
2128
|
mcpServers?: Record<string, unknown> | undefined;
|
|
2125
|
-
approvalPolicy?: string | undefined;
|
|
2126
|
-
sandboxMode?: string | undefined;
|
|
2127
|
-
networkAccess?: boolean | undefined;
|
|
2128
|
-
webSearch?: boolean | undefined;
|
|
2129
2129
|
};
|
|
2130
2130
|
};
|
|
2131
2131
|
nextRunAt: string | null;
|
|
@@ -2139,10 +2139,10 @@ export declare const SchedulePauseResponseSchema: z.ZodObject<{
|
|
|
2139
2139
|
requestId: string;
|
|
2140
2140
|
schedule: {
|
|
2141
2141
|
name: string | null;
|
|
2142
|
+
status: "active" | "paused" | "completed";
|
|
2142
2143
|
id: string;
|
|
2143
2144
|
createdAt: string;
|
|
2144
2145
|
updatedAt: string;
|
|
2145
|
-
status: "completed" | "active" | "paused";
|
|
2146
2146
|
prompt: string;
|
|
2147
2147
|
cadence: {
|
|
2148
2148
|
type: "every";
|
|
@@ -2152,27 +2152,27 @@ export declare const SchedulePauseResponseSchema: z.ZodObject<{
|
|
|
2152
2152
|
expression: string;
|
|
2153
2153
|
};
|
|
2154
2154
|
target: {
|
|
2155
|
-
agentId: string;
|
|
2156
2155
|
type: "agent";
|
|
2156
|
+
agentId: string;
|
|
2157
2157
|
} | {
|
|
2158
2158
|
type: "new-agent";
|
|
2159
2159
|
config: {
|
|
2160
2160
|
provider: string;
|
|
2161
2161
|
cwd: string;
|
|
2162
2162
|
title?: string | null | undefined;
|
|
2163
|
+
model?: string | undefined;
|
|
2163
2164
|
thinkingOptionId?: string | undefined;
|
|
2164
2165
|
modeId?: string | undefined;
|
|
2165
|
-
|
|
2166
|
+
approvalPolicy?: string | undefined;
|
|
2167
|
+
sandboxMode?: string | undefined;
|
|
2168
|
+
networkAccess?: boolean | undefined;
|
|
2169
|
+
webSearch?: boolean | undefined;
|
|
2166
2170
|
extra?: {
|
|
2167
|
-
claude?: Record<string, unknown> | undefined;
|
|
2168
2171
|
codex?: Record<string, unknown> | undefined;
|
|
2172
|
+
claude?: Record<string, unknown> | undefined;
|
|
2169
2173
|
} | undefined;
|
|
2170
2174
|
systemPrompt?: string | undefined;
|
|
2171
2175
|
mcpServers?: Record<string, unknown> | undefined;
|
|
2172
|
-
approvalPolicy?: string | undefined;
|
|
2173
|
-
sandboxMode?: string | undefined;
|
|
2174
|
-
networkAccess?: boolean | undefined;
|
|
2175
|
-
webSearch?: boolean | undefined;
|
|
2176
2176
|
};
|
|
2177
2177
|
};
|
|
2178
2178
|
nextRunAt: string | null;
|
|
@@ -2189,10 +2189,10 @@ export declare const SchedulePauseResponseSchema: z.ZodObject<{
|
|
|
2189
2189
|
requestId: string;
|
|
2190
2190
|
schedule: {
|
|
2191
2191
|
name: string | null;
|
|
2192
|
+
status: "active" | "paused" | "completed";
|
|
2192
2193
|
id: string;
|
|
2193
2194
|
createdAt: string;
|
|
2194
2195
|
updatedAt: string;
|
|
2195
|
-
status: "completed" | "active" | "paused";
|
|
2196
2196
|
prompt: string;
|
|
2197
2197
|
cadence: {
|
|
2198
2198
|
type: "every";
|
|
@@ -2202,27 +2202,27 @@ export declare const SchedulePauseResponseSchema: z.ZodObject<{
|
|
|
2202
2202
|
expression: string;
|
|
2203
2203
|
};
|
|
2204
2204
|
target: {
|
|
2205
|
-
agentId: string;
|
|
2206
2205
|
type: "agent";
|
|
2206
|
+
agentId: string;
|
|
2207
2207
|
} | {
|
|
2208
2208
|
type: "new-agent";
|
|
2209
2209
|
config: {
|
|
2210
2210
|
provider: string;
|
|
2211
2211
|
cwd: string;
|
|
2212
2212
|
title?: string | null | undefined;
|
|
2213
|
+
model?: string | undefined;
|
|
2213
2214
|
thinkingOptionId?: string | undefined;
|
|
2214
2215
|
modeId?: string | undefined;
|
|
2215
|
-
|
|
2216
|
+
approvalPolicy?: string | undefined;
|
|
2217
|
+
sandboxMode?: string | undefined;
|
|
2218
|
+
networkAccess?: boolean | undefined;
|
|
2219
|
+
webSearch?: boolean | undefined;
|
|
2216
2220
|
extra?: {
|
|
2217
|
-
claude?: Record<string, unknown> | undefined;
|
|
2218
2221
|
codex?: Record<string, unknown> | undefined;
|
|
2222
|
+
claude?: Record<string, unknown> | undefined;
|
|
2219
2223
|
} | undefined;
|
|
2220
2224
|
systemPrompt?: string | undefined;
|
|
2221
2225
|
mcpServers?: Record<string, unknown> | undefined;
|
|
2222
|
-
approvalPolicy?: string | undefined;
|
|
2223
|
-
sandboxMode?: string | undefined;
|
|
2224
|
-
networkAccess?: boolean | undefined;
|
|
2225
|
-
webSearch?: boolean | undefined;
|
|
2226
2226
|
};
|
|
2227
2227
|
};
|
|
2228
2228
|
nextRunAt: string | null;
|
|
@@ -2239,10 +2239,10 @@ export declare const SchedulePauseResponseSchema: z.ZodObject<{
|
|
|
2239
2239
|
requestId: string;
|
|
2240
2240
|
schedule: {
|
|
2241
2241
|
name: string | null;
|
|
2242
|
+
status: "active" | "paused" | "completed";
|
|
2242
2243
|
id: string;
|
|
2243
2244
|
createdAt: string;
|
|
2244
2245
|
updatedAt: string;
|
|
2245
|
-
status: "completed" | "active" | "paused";
|
|
2246
2246
|
prompt: string;
|
|
2247
2247
|
cadence: {
|
|
2248
2248
|
type: "every";
|
|
@@ -2252,27 +2252,27 @@ export declare const SchedulePauseResponseSchema: z.ZodObject<{
|
|
|
2252
2252
|
expression: string;
|
|
2253
2253
|
};
|
|
2254
2254
|
target: {
|
|
2255
|
-
agentId: string;
|
|
2256
2255
|
type: "agent";
|
|
2256
|
+
agentId: string;
|
|
2257
2257
|
} | {
|
|
2258
2258
|
type: "new-agent";
|
|
2259
2259
|
config: {
|
|
2260
2260
|
provider: string;
|
|
2261
2261
|
cwd: string;
|
|
2262
2262
|
title?: string | null | undefined;
|
|
2263
|
+
model?: string | undefined;
|
|
2263
2264
|
thinkingOptionId?: string | undefined;
|
|
2264
2265
|
modeId?: string | undefined;
|
|
2265
|
-
|
|
2266
|
+
approvalPolicy?: string | undefined;
|
|
2267
|
+
sandboxMode?: string | undefined;
|
|
2268
|
+
networkAccess?: boolean | undefined;
|
|
2269
|
+
webSearch?: boolean | undefined;
|
|
2266
2270
|
extra?: {
|
|
2267
|
-
claude?: Record<string, unknown> | undefined;
|
|
2268
2271
|
codex?: Record<string, unknown> | undefined;
|
|
2272
|
+
claude?: Record<string, unknown> | undefined;
|
|
2269
2273
|
} | undefined;
|
|
2270
2274
|
systemPrompt?: string | undefined;
|
|
2271
2275
|
mcpServers?: Record<string, unknown> | undefined;
|
|
2272
|
-
approvalPolicy?: string | undefined;
|
|
2273
|
-
sandboxMode?: string | undefined;
|
|
2274
|
-
networkAccess?: boolean | undefined;
|
|
2275
|
-
webSearch?: boolean | undefined;
|
|
2276
2276
|
};
|
|
2277
2277
|
};
|
|
2278
2278
|
nextRunAt: string | null;
|
|
@@ -2314,11 +2314,11 @@ export declare const ScheduleResumeResponseSchema: z.ZodObject<{
|
|
|
2314
2314
|
type: z.ZodLiteral<"agent">;
|
|
2315
2315
|
agentId: z.ZodString;
|
|
2316
2316
|
}, "strip", z.ZodTypeAny, {
|
|
2317
|
-
agentId: string;
|
|
2318
2317
|
type: "agent";
|
|
2319
|
-
}, {
|
|
2320
2318
|
agentId: string;
|
|
2319
|
+
}, {
|
|
2321
2320
|
type: "agent";
|
|
2321
|
+
agentId: string;
|
|
2322
2322
|
}>, z.ZodObject<{
|
|
2323
2323
|
type: z.ZodLiteral<"new-agent">;
|
|
2324
2324
|
config: z.ZodObject<{
|
|
@@ -2336,11 +2336,11 @@ export declare const ScheduleResumeResponseSchema: z.ZodObject<{
|
|
|
2336
2336
|
codex: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
2337
2337
|
claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
2338
2338
|
}, "strip", z.ZodTypeAny, {
|
|
2339
|
-
claude?: Record<string, unknown> | undefined;
|
|
2340
2339
|
codex?: Record<string, unknown> | undefined;
|
|
2341
|
-
}, {
|
|
2342
2340
|
claude?: Record<string, unknown> | undefined;
|
|
2341
|
+
}, {
|
|
2343
2342
|
codex?: Record<string, unknown> | undefined;
|
|
2343
|
+
claude?: Record<string, unknown> | undefined;
|
|
2344
2344
|
}>>;
|
|
2345
2345
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
2346
2346
|
mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -2348,36 +2348,36 @@ export declare const ScheduleResumeResponseSchema: z.ZodObject<{
|
|
|
2348
2348
|
provider: string;
|
|
2349
2349
|
cwd: string;
|
|
2350
2350
|
title?: string | null | undefined;
|
|
2351
|
+
model?: string | undefined;
|
|
2351
2352
|
thinkingOptionId?: string | undefined;
|
|
2352
2353
|
modeId?: string | undefined;
|
|
2353
|
-
|
|
2354
|
+
approvalPolicy?: string | undefined;
|
|
2355
|
+
sandboxMode?: string | undefined;
|
|
2356
|
+
networkAccess?: boolean | undefined;
|
|
2357
|
+
webSearch?: boolean | undefined;
|
|
2354
2358
|
extra?: {
|
|
2355
|
-
claude?: Record<string, unknown> | undefined;
|
|
2356
2359
|
codex?: Record<string, unknown> | undefined;
|
|
2360
|
+
claude?: Record<string, unknown> | undefined;
|
|
2357
2361
|
} | undefined;
|
|
2358
2362
|
systemPrompt?: string | undefined;
|
|
2359
2363
|
mcpServers?: Record<string, unknown> | undefined;
|
|
2360
|
-
approvalPolicy?: string | undefined;
|
|
2361
|
-
sandboxMode?: string | undefined;
|
|
2362
|
-
networkAccess?: boolean | undefined;
|
|
2363
|
-
webSearch?: boolean | undefined;
|
|
2364
2364
|
}, {
|
|
2365
2365
|
provider: string;
|
|
2366
2366
|
cwd: string;
|
|
2367
2367
|
title?: string | null | undefined;
|
|
2368
|
+
model?: string | undefined;
|
|
2368
2369
|
thinkingOptionId?: string | undefined;
|
|
2369
2370
|
modeId?: string | undefined;
|
|
2370
|
-
|
|
2371
|
+
approvalPolicy?: string | undefined;
|
|
2372
|
+
sandboxMode?: string | undefined;
|
|
2373
|
+
networkAccess?: boolean | undefined;
|
|
2374
|
+
webSearch?: boolean | undefined;
|
|
2371
2375
|
extra?: {
|
|
2372
|
-
claude?: Record<string, unknown> | undefined;
|
|
2373
2376
|
codex?: Record<string, unknown> | undefined;
|
|
2377
|
+
claude?: Record<string, unknown> | undefined;
|
|
2374
2378
|
} | undefined;
|
|
2375
2379
|
systemPrompt?: string | undefined;
|
|
2376
2380
|
mcpServers?: Record<string, unknown> | undefined;
|
|
2377
|
-
approvalPolicy?: string | undefined;
|
|
2378
|
-
sandboxMode?: string | undefined;
|
|
2379
|
-
networkAccess?: boolean | undefined;
|
|
2380
|
-
webSearch?: boolean | undefined;
|
|
2381
2381
|
}>;
|
|
2382
2382
|
}, "strip", z.ZodTypeAny, {
|
|
2383
2383
|
type: "new-agent";
|
|
@@ -2385,19 +2385,19 @@ export declare const ScheduleResumeResponseSchema: z.ZodObject<{
|
|
|
2385
2385
|
provider: string;
|
|
2386
2386
|
cwd: string;
|
|
2387
2387
|
title?: string | null | undefined;
|
|
2388
|
+
model?: string | undefined;
|
|
2388
2389
|
thinkingOptionId?: string | undefined;
|
|
2389
2390
|
modeId?: string | undefined;
|
|
2390
|
-
|
|
2391
|
+
approvalPolicy?: string | undefined;
|
|
2392
|
+
sandboxMode?: string | undefined;
|
|
2393
|
+
networkAccess?: boolean | undefined;
|
|
2394
|
+
webSearch?: boolean | undefined;
|
|
2391
2395
|
extra?: {
|
|
2392
|
-
claude?: Record<string, unknown> | undefined;
|
|
2393
2396
|
codex?: Record<string, unknown> | undefined;
|
|
2397
|
+
claude?: Record<string, unknown> | undefined;
|
|
2394
2398
|
} | undefined;
|
|
2395
2399
|
systemPrompt?: string | undefined;
|
|
2396
2400
|
mcpServers?: Record<string, unknown> | undefined;
|
|
2397
|
-
approvalPolicy?: string | undefined;
|
|
2398
|
-
sandboxMode?: string | undefined;
|
|
2399
|
-
networkAccess?: boolean | undefined;
|
|
2400
|
-
webSearch?: boolean | undefined;
|
|
2401
2401
|
};
|
|
2402
2402
|
}, {
|
|
2403
2403
|
type: "new-agent";
|
|
@@ -2405,19 +2405,19 @@ export declare const ScheduleResumeResponseSchema: z.ZodObject<{
|
|
|
2405
2405
|
provider: string;
|
|
2406
2406
|
cwd: string;
|
|
2407
2407
|
title?: string | null | undefined;
|
|
2408
|
+
model?: string | undefined;
|
|
2408
2409
|
thinkingOptionId?: string | undefined;
|
|
2409
2410
|
modeId?: string | undefined;
|
|
2410
|
-
|
|
2411
|
+
approvalPolicy?: string | undefined;
|
|
2412
|
+
sandboxMode?: string | undefined;
|
|
2413
|
+
networkAccess?: boolean | undefined;
|
|
2414
|
+
webSearch?: boolean | undefined;
|
|
2411
2415
|
extra?: {
|
|
2412
|
-
claude?: Record<string, unknown> | undefined;
|
|
2413
2416
|
codex?: Record<string, unknown> | undefined;
|
|
2417
|
+
claude?: Record<string, unknown> | undefined;
|
|
2414
2418
|
} | undefined;
|
|
2415
2419
|
systemPrompt?: string | undefined;
|
|
2416
2420
|
mcpServers?: Record<string, unknown> | undefined;
|
|
2417
|
-
approvalPolicy?: string | undefined;
|
|
2418
|
-
sandboxMode?: string | undefined;
|
|
2419
|
-
networkAccess?: boolean | undefined;
|
|
2420
|
-
webSearch?: boolean | undefined;
|
|
2421
2421
|
};
|
|
2422
2422
|
}>]>;
|
|
2423
2423
|
status: z.ZodEnum<["active", "paused", "completed"]>;
|
|
@@ -2439,29 +2439,29 @@ export declare const ScheduleResumeResponseSchema: z.ZodObject<{
|
|
|
2439
2439
|
error: z.ZodNullable<z.ZodString>;
|
|
2440
2440
|
}, "strip", z.ZodTypeAny, {
|
|
2441
2441
|
error: string | null;
|
|
2442
|
-
|
|
2443
|
-
id: string;
|
|
2442
|
+
output: string | null;
|
|
2444
2443
|
status: "running" | "failed" | "succeeded";
|
|
2444
|
+
id: string;
|
|
2445
|
+
agentId: string | null;
|
|
2445
2446
|
scheduledFor: string;
|
|
2446
2447
|
startedAt: string;
|
|
2447
2448
|
endedAt: string | null;
|
|
2448
|
-
output: string | null;
|
|
2449
2449
|
}, {
|
|
2450
2450
|
error: string | null;
|
|
2451
|
-
|
|
2452
|
-
id: string;
|
|
2451
|
+
output: string | null;
|
|
2453
2452
|
status: "running" | "failed" | "succeeded";
|
|
2453
|
+
id: string;
|
|
2454
|
+
agentId: string | null;
|
|
2454
2455
|
scheduledFor: string;
|
|
2455
2456
|
startedAt: string;
|
|
2456
2457
|
endedAt: string | null;
|
|
2457
|
-
output: string | null;
|
|
2458
2458
|
}>, "many">;
|
|
2459
2459
|
}, "runs">, "strip", z.ZodTypeAny, {
|
|
2460
2460
|
name: string | null;
|
|
2461
|
+
status: "active" | "paused" | "completed";
|
|
2461
2462
|
id: string;
|
|
2462
2463
|
createdAt: string;
|
|
2463
2464
|
updatedAt: string;
|
|
2464
|
-
status: "completed" | "active" | "paused";
|
|
2465
2465
|
prompt: string;
|
|
2466
2466
|
cadence: {
|
|
2467
2467
|
type: "every";
|
|
@@ -2471,27 +2471,27 @@ export declare const ScheduleResumeResponseSchema: z.ZodObject<{
|
|
|
2471
2471
|
expression: string;
|
|
2472
2472
|
};
|
|
2473
2473
|
target: {
|
|
2474
|
-
agentId: string;
|
|
2475
2474
|
type: "agent";
|
|
2475
|
+
agentId: string;
|
|
2476
2476
|
} | {
|
|
2477
2477
|
type: "new-agent";
|
|
2478
2478
|
config: {
|
|
2479
2479
|
provider: string;
|
|
2480
2480
|
cwd: string;
|
|
2481
2481
|
title?: string | null | undefined;
|
|
2482
|
+
model?: string | undefined;
|
|
2482
2483
|
thinkingOptionId?: string | undefined;
|
|
2483
2484
|
modeId?: string | undefined;
|
|
2484
|
-
|
|
2485
|
+
approvalPolicy?: string | undefined;
|
|
2486
|
+
sandboxMode?: string | undefined;
|
|
2487
|
+
networkAccess?: boolean | undefined;
|
|
2488
|
+
webSearch?: boolean | undefined;
|
|
2485
2489
|
extra?: {
|
|
2486
|
-
claude?: Record<string, unknown> | undefined;
|
|
2487
2490
|
codex?: Record<string, unknown> | undefined;
|
|
2491
|
+
claude?: Record<string, unknown> | undefined;
|
|
2488
2492
|
} | undefined;
|
|
2489
2493
|
systemPrompt?: string | undefined;
|
|
2490
2494
|
mcpServers?: Record<string, unknown> | undefined;
|
|
2491
|
-
approvalPolicy?: string | undefined;
|
|
2492
|
-
sandboxMode?: string | undefined;
|
|
2493
|
-
networkAccess?: boolean | undefined;
|
|
2494
|
-
webSearch?: boolean | undefined;
|
|
2495
2495
|
};
|
|
2496
2496
|
};
|
|
2497
2497
|
nextRunAt: string | null;
|
|
@@ -2501,10 +2501,10 @@ export declare const ScheduleResumeResponseSchema: z.ZodObject<{
|
|
|
2501
2501
|
maxRuns: number | null;
|
|
2502
2502
|
}, {
|
|
2503
2503
|
name: string | null;
|
|
2504
|
+
status: "active" | "paused" | "completed";
|
|
2504
2505
|
id: string;
|
|
2505
2506
|
createdAt: string;
|
|
2506
2507
|
updatedAt: string;
|
|
2507
|
-
status: "completed" | "active" | "paused";
|
|
2508
2508
|
prompt: string;
|
|
2509
2509
|
cadence: {
|
|
2510
2510
|
type: "every";
|
|
@@ -2514,27 +2514,27 @@ export declare const ScheduleResumeResponseSchema: z.ZodObject<{
|
|
|
2514
2514
|
expression: string;
|
|
2515
2515
|
};
|
|
2516
2516
|
target: {
|
|
2517
|
-
agentId: string;
|
|
2518
2517
|
type: "agent";
|
|
2518
|
+
agentId: string;
|
|
2519
2519
|
} | {
|
|
2520
2520
|
type: "new-agent";
|
|
2521
2521
|
config: {
|
|
2522
2522
|
provider: string;
|
|
2523
2523
|
cwd: string;
|
|
2524
2524
|
title?: string | null | undefined;
|
|
2525
|
+
model?: string | undefined;
|
|
2525
2526
|
thinkingOptionId?: string | undefined;
|
|
2526
2527
|
modeId?: string | undefined;
|
|
2527
|
-
|
|
2528
|
+
approvalPolicy?: string | undefined;
|
|
2529
|
+
sandboxMode?: string | undefined;
|
|
2530
|
+
networkAccess?: boolean | undefined;
|
|
2531
|
+
webSearch?: boolean | undefined;
|
|
2528
2532
|
extra?: {
|
|
2529
|
-
claude?: Record<string, unknown> | undefined;
|
|
2530
2533
|
codex?: Record<string, unknown> | undefined;
|
|
2534
|
+
claude?: Record<string, unknown> | undefined;
|
|
2531
2535
|
} | undefined;
|
|
2532
2536
|
systemPrompt?: string | undefined;
|
|
2533
2537
|
mcpServers?: Record<string, unknown> | undefined;
|
|
2534
|
-
approvalPolicy?: string | undefined;
|
|
2535
|
-
sandboxMode?: string | undefined;
|
|
2536
|
-
networkAccess?: boolean | undefined;
|
|
2537
|
-
webSearch?: boolean | undefined;
|
|
2538
2538
|
};
|
|
2539
2539
|
};
|
|
2540
2540
|
nextRunAt: string | null;
|
|
@@ -2549,10 +2549,10 @@ export declare const ScheduleResumeResponseSchema: z.ZodObject<{
|
|
|
2549
2549
|
requestId: string;
|
|
2550
2550
|
schedule: {
|
|
2551
2551
|
name: string | null;
|
|
2552
|
+
status: "active" | "paused" | "completed";
|
|
2552
2553
|
id: string;
|
|
2553
2554
|
createdAt: string;
|
|
2554
2555
|
updatedAt: string;
|
|
2555
|
-
status: "completed" | "active" | "paused";
|
|
2556
2556
|
prompt: string;
|
|
2557
2557
|
cadence: {
|
|
2558
2558
|
type: "every";
|
|
@@ -2562,27 +2562,27 @@ export declare const ScheduleResumeResponseSchema: z.ZodObject<{
|
|
|
2562
2562
|
expression: string;
|
|
2563
2563
|
};
|
|
2564
2564
|
target: {
|
|
2565
|
-
agentId: string;
|
|
2566
2565
|
type: "agent";
|
|
2566
|
+
agentId: string;
|
|
2567
2567
|
} | {
|
|
2568
2568
|
type: "new-agent";
|
|
2569
2569
|
config: {
|
|
2570
2570
|
provider: string;
|
|
2571
2571
|
cwd: string;
|
|
2572
2572
|
title?: string | null | undefined;
|
|
2573
|
+
model?: string | undefined;
|
|
2573
2574
|
thinkingOptionId?: string | undefined;
|
|
2574
2575
|
modeId?: string | undefined;
|
|
2575
|
-
|
|
2576
|
+
approvalPolicy?: string | undefined;
|
|
2577
|
+
sandboxMode?: string | undefined;
|
|
2578
|
+
networkAccess?: boolean | undefined;
|
|
2579
|
+
webSearch?: boolean | undefined;
|
|
2576
2580
|
extra?: {
|
|
2577
|
-
claude?: Record<string, unknown> | undefined;
|
|
2578
2581
|
codex?: Record<string, unknown> | undefined;
|
|
2582
|
+
claude?: Record<string, unknown> | undefined;
|
|
2579
2583
|
} | undefined;
|
|
2580
2584
|
systemPrompt?: string | undefined;
|
|
2581
2585
|
mcpServers?: Record<string, unknown> | undefined;
|
|
2582
|
-
approvalPolicy?: string | undefined;
|
|
2583
|
-
sandboxMode?: string | undefined;
|
|
2584
|
-
networkAccess?: boolean | undefined;
|
|
2585
|
-
webSearch?: boolean | undefined;
|
|
2586
2586
|
};
|
|
2587
2587
|
};
|
|
2588
2588
|
nextRunAt: string | null;
|
|
@@ -2596,10 +2596,10 @@ export declare const ScheduleResumeResponseSchema: z.ZodObject<{
|
|
|
2596
2596
|
requestId: string;
|
|
2597
2597
|
schedule: {
|
|
2598
2598
|
name: string | null;
|
|
2599
|
+
status: "active" | "paused" | "completed";
|
|
2599
2600
|
id: string;
|
|
2600
2601
|
createdAt: string;
|
|
2601
2602
|
updatedAt: string;
|
|
2602
|
-
status: "completed" | "active" | "paused";
|
|
2603
2603
|
prompt: string;
|
|
2604
2604
|
cadence: {
|
|
2605
2605
|
type: "every";
|
|
@@ -2609,27 +2609,27 @@ export declare const ScheduleResumeResponseSchema: z.ZodObject<{
|
|
|
2609
2609
|
expression: string;
|
|
2610
2610
|
};
|
|
2611
2611
|
target: {
|
|
2612
|
-
agentId: string;
|
|
2613
2612
|
type: "agent";
|
|
2613
|
+
agentId: string;
|
|
2614
2614
|
} | {
|
|
2615
2615
|
type: "new-agent";
|
|
2616
2616
|
config: {
|
|
2617
2617
|
provider: string;
|
|
2618
2618
|
cwd: string;
|
|
2619
2619
|
title?: string | null | undefined;
|
|
2620
|
+
model?: string | undefined;
|
|
2620
2621
|
thinkingOptionId?: string | undefined;
|
|
2621
2622
|
modeId?: string | undefined;
|
|
2622
|
-
|
|
2623
|
+
approvalPolicy?: string | undefined;
|
|
2624
|
+
sandboxMode?: string | undefined;
|
|
2625
|
+
networkAccess?: boolean | undefined;
|
|
2626
|
+
webSearch?: boolean | undefined;
|
|
2623
2627
|
extra?: {
|
|
2624
|
-
claude?: Record<string, unknown> | undefined;
|
|
2625
2628
|
codex?: Record<string, unknown> | undefined;
|
|
2629
|
+
claude?: Record<string, unknown> | undefined;
|
|
2626
2630
|
} | undefined;
|
|
2627
2631
|
systemPrompt?: string | undefined;
|
|
2628
2632
|
mcpServers?: Record<string, unknown> | undefined;
|
|
2629
|
-
approvalPolicy?: string | undefined;
|
|
2630
|
-
sandboxMode?: string | undefined;
|
|
2631
|
-
networkAccess?: boolean | undefined;
|
|
2632
|
-
webSearch?: boolean | undefined;
|
|
2633
2633
|
};
|
|
2634
2634
|
};
|
|
2635
2635
|
nextRunAt: string | null;
|
|
@@ -2646,10 +2646,10 @@ export declare const ScheduleResumeResponseSchema: z.ZodObject<{
|
|
|
2646
2646
|
requestId: string;
|
|
2647
2647
|
schedule: {
|
|
2648
2648
|
name: string | null;
|
|
2649
|
+
status: "active" | "paused" | "completed";
|
|
2649
2650
|
id: string;
|
|
2650
2651
|
createdAt: string;
|
|
2651
2652
|
updatedAt: string;
|
|
2652
|
-
status: "completed" | "active" | "paused";
|
|
2653
2653
|
prompt: string;
|
|
2654
2654
|
cadence: {
|
|
2655
2655
|
type: "every";
|
|
@@ -2659,27 +2659,27 @@ export declare const ScheduleResumeResponseSchema: z.ZodObject<{
|
|
|
2659
2659
|
expression: string;
|
|
2660
2660
|
};
|
|
2661
2661
|
target: {
|
|
2662
|
-
agentId: string;
|
|
2663
2662
|
type: "agent";
|
|
2663
|
+
agentId: string;
|
|
2664
2664
|
} | {
|
|
2665
2665
|
type: "new-agent";
|
|
2666
2666
|
config: {
|
|
2667
2667
|
provider: string;
|
|
2668
2668
|
cwd: string;
|
|
2669
2669
|
title?: string | null | undefined;
|
|
2670
|
+
model?: string | undefined;
|
|
2670
2671
|
thinkingOptionId?: string | undefined;
|
|
2671
2672
|
modeId?: string | undefined;
|
|
2672
|
-
|
|
2673
|
+
approvalPolicy?: string | undefined;
|
|
2674
|
+
sandboxMode?: string | undefined;
|
|
2675
|
+
networkAccess?: boolean | undefined;
|
|
2676
|
+
webSearch?: boolean | undefined;
|
|
2673
2677
|
extra?: {
|
|
2674
|
-
claude?: Record<string, unknown> | undefined;
|
|
2675
2678
|
codex?: Record<string, unknown> | undefined;
|
|
2679
|
+
claude?: Record<string, unknown> | undefined;
|
|
2676
2680
|
} | undefined;
|
|
2677
2681
|
systemPrompt?: string | undefined;
|
|
2678
2682
|
mcpServers?: Record<string, unknown> | undefined;
|
|
2679
|
-
approvalPolicy?: string | undefined;
|
|
2680
|
-
sandboxMode?: string | undefined;
|
|
2681
|
-
networkAccess?: boolean | undefined;
|
|
2682
|
-
webSearch?: boolean | undefined;
|
|
2683
2683
|
};
|
|
2684
2684
|
};
|
|
2685
2685
|
nextRunAt: string | null;
|
|
@@ -2696,10 +2696,10 @@ export declare const ScheduleResumeResponseSchema: z.ZodObject<{
|
|
|
2696
2696
|
requestId: string;
|
|
2697
2697
|
schedule: {
|
|
2698
2698
|
name: string | null;
|
|
2699
|
+
status: "active" | "paused" | "completed";
|
|
2699
2700
|
id: string;
|
|
2700
2701
|
createdAt: string;
|
|
2701
2702
|
updatedAt: string;
|
|
2702
|
-
status: "completed" | "active" | "paused";
|
|
2703
2703
|
prompt: string;
|
|
2704
2704
|
cadence: {
|
|
2705
2705
|
type: "every";
|
|
@@ -2709,27 +2709,27 @@ export declare const ScheduleResumeResponseSchema: z.ZodObject<{
|
|
|
2709
2709
|
expression: string;
|
|
2710
2710
|
};
|
|
2711
2711
|
target: {
|
|
2712
|
-
agentId: string;
|
|
2713
2712
|
type: "agent";
|
|
2713
|
+
agentId: string;
|
|
2714
2714
|
} | {
|
|
2715
2715
|
type: "new-agent";
|
|
2716
2716
|
config: {
|
|
2717
2717
|
provider: string;
|
|
2718
2718
|
cwd: string;
|
|
2719
2719
|
title?: string | null | undefined;
|
|
2720
|
+
model?: string | undefined;
|
|
2720
2721
|
thinkingOptionId?: string | undefined;
|
|
2721
2722
|
modeId?: string | undefined;
|
|
2722
|
-
|
|
2723
|
+
approvalPolicy?: string | undefined;
|
|
2724
|
+
sandboxMode?: string | undefined;
|
|
2725
|
+
networkAccess?: boolean | undefined;
|
|
2726
|
+
webSearch?: boolean | undefined;
|
|
2723
2727
|
extra?: {
|
|
2724
|
-
claude?: Record<string, unknown> | undefined;
|
|
2725
2728
|
codex?: Record<string, unknown> | undefined;
|
|
2729
|
+
claude?: Record<string, unknown> | undefined;
|
|
2726
2730
|
} | undefined;
|
|
2727
2731
|
systemPrompt?: string | undefined;
|
|
2728
2732
|
mcpServers?: Record<string, unknown> | undefined;
|
|
2729
|
-
approvalPolicy?: string | undefined;
|
|
2730
|
-
sandboxMode?: string | undefined;
|
|
2731
|
-
networkAccess?: boolean | undefined;
|
|
2732
|
-
webSearch?: boolean | undefined;
|
|
2733
2733
|
};
|
|
2734
2734
|
};
|
|
2735
2735
|
nextRunAt: string | null;
|