@nervekit/shared 0.2.0 → 0.4.0
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/core/ids.d.ts +1 -1
- package/dist/core/ids.d.ts.map +1 -1
- package/dist/core/ids.js.map +1 -1
- package/dist/core/index.d.ts +1 -1
- package/dist/core/index.d.ts.map +1 -1
- package/dist/core/index.js +1 -1
- package/dist/core/index.js.map +1 -1
- package/dist/core/inline-commands.d.ts.map +1 -1
- package/dist/core/inline-commands.js.map +1 -1
- package/dist/domains/agents/agent.schema.d.ts +8 -8
- package/dist/domains/auth/auth.schema.d.ts +4 -4
- package/dist/domains/completions/completion.schema.d.ts +3 -3
- package/dist/domains/conversations/conversation.schema.d.ts +20 -3
- package/dist/domains/conversations/conversation.schema.d.ts.map +1 -1
- package/dist/domains/conversations/conversation.schema.js.map +1 -1
- package/dist/domains/conversations/tree.schema.d.ts +4 -3
- package/dist/domains/conversations/tree.schema.d.ts.map +1 -1
- package/dist/domains/conversations/tree.schema.js +1 -0
- package/dist/domains/conversations/tree.schema.js.map +1 -1
- package/dist/domains/filesystem/filesystem.schema.d.ts +1 -1
- package/dist/domains/logs/logs.schema.d.ts +49 -0
- package/dist/domains/logs/logs.schema.d.ts.map +1 -1
- package/dist/domains/logs/logs.schema.js +31 -0
- package/dist/domains/logs/logs.schema.js.map +1 -1
- package/dist/domains/pinned-commands/pinned-command.schema.d.ts +6 -0
- package/dist/domains/pinned-commands/pinned-command.schema.d.ts.map +1 -1
- package/dist/domains/pinned-commands/pinned-command.schema.js +5 -0
- package/dist/domains/pinned-commands/pinned-command.schema.js.map +1 -1
- package/dist/domains/plans/plan-review.schema.d.ts +2 -2
- package/dist/domains/prompt-suggestions/index.d.ts +2 -0
- package/dist/domains/prompt-suggestions/index.d.ts.map +1 -0
- package/dist/domains/prompt-suggestions/index.js +2 -0
- package/dist/domains/prompt-suggestions/index.js.map +1 -0
- package/dist/domains/prompt-suggestions/prompt-suggestion.schema.d.ts +185 -0
- package/dist/domains/prompt-suggestions/prompt-suggestion.schema.d.ts.map +1 -0
- package/dist/domains/prompt-suggestions/prompt-suggestion.schema.js +73 -0
- package/dist/domains/prompt-suggestions/prompt-suggestion.schema.js.map +1 -0
- package/dist/domains/providers/providers.schema.d.ts +4 -4
- package/dist/domains/settings/settings.schema.d.ts +34 -0
- package/dist/domains/settings/settings.schema.d.ts.map +1 -1
- package/dist/domains/settings/settings.schema.js +28 -0
- package/dist/domains/settings/settings.schema.js.map +1 -1
- package/dist/domains/suspensions/suspension.schema.d.ts +2 -2
- package/dist/domains/tasks/task.schema.d.ts +82 -9
- package/dist/domains/tasks/task.schema.d.ts.map +1 -1
- package/dist/domains/tasks/task.schema.js +11 -0
- package/dist/domains/tasks/task.schema.js.map +1 -1
- package/dist/domains/tools/records.schema.d.ts +147 -2
- package/dist/domains/tools/records.schema.d.ts.map +1 -1
- package/dist/domains/tools/records.schema.js +29 -0
- package/dist/domains/tools/records.schema.js.map +1 -1
- package/dist/domains/tools/tool-results.schema.d.ts +446 -32
- package/dist/domains/tools/tool-results.schema.d.ts.map +1 -1
- package/dist/domains/tools/tool-results.schema.js +150 -1
- package/dist/domains/tools/tool-results.schema.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -25,16 +25,182 @@ export declare const toolContentBlockSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
25
25
|
mimeType: z.ZodString;
|
|
26
26
|
}, z.core.$strip>]>;
|
|
27
27
|
export type ToolContentBlockPayload = z.infer<typeof toolContentBlockSchema>;
|
|
28
|
+
export declare const textLimitDirectionSchema: z.ZodEnum<{
|
|
29
|
+
head: "head";
|
|
30
|
+
tail: "tail";
|
|
31
|
+
line: "line";
|
|
32
|
+
head_tail: "head_tail";
|
|
33
|
+
}>;
|
|
34
|
+
export type TextLimitDirection = z.infer<typeof textLimitDirectionSchema>;
|
|
35
|
+
export declare const textLimitSnapshotSchema: z.ZodObject<{
|
|
36
|
+
truncated: z.ZodBoolean;
|
|
37
|
+
direction: z.ZodOptional<z.ZodEnum<{
|
|
38
|
+
head: "head";
|
|
39
|
+
tail: "tail";
|
|
40
|
+
line: "line";
|
|
41
|
+
head_tail: "head_tail";
|
|
42
|
+
}>>;
|
|
43
|
+
originalBytes: z.ZodOptional<z.ZodNumber>;
|
|
44
|
+
displayedBytes: z.ZodOptional<z.ZodNumber>;
|
|
45
|
+
omittedBytes: z.ZodOptional<z.ZodNumber>;
|
|
46
|
+
originalChars: z.ZodOptional<z.ZodNumber>;
|
|
47
|
+
displayedChars: z.ZodOptional<z.ZodNumber>;
|
|
48
|
+
omittedChars: z.ZodOptional<z.ZodNumber>;
|
|
49
|
+
originalLines: z.ZodOptional<z.ZodNumber>;
|
|
50
|
+
displayedLines: z.ZodOptional<z.ZodNumber>;
|
|
51
|
+
omittedLines: z.ZodOptional<z.ZodNumber>;
|
|
52
|
+
truncatedLines: z.ZodOptional<z.ZodNumber>;
|
|
53
|
+
maxBytes: z.ZodOptional<z.ZodNumber>;
|
|
54
|
+
maxLines: z.ZodOptional<z.ZodNumber>;
|
|
55
|
+
maxLineChars: z.ZodOptional<z.ZodNumber>;
|
|
56
|
+
partialLine: z.ZodOptional<z.ZodBoolean>;
|
|
57
|
+
}, z.core.$loose>;
|
|
58
|
+
export type TextLimitSnapshotPayload = z.infer<typeof textLimitSnapshotSchema>;
|
|
59
|
+
export declare const toolOutputArtifactSchema: z.ZodObject<{
|
|
60
|
+
kind: z.ZodEnum<{
|
|
61
|
+
full_output: "full_output";
|
|
62
|
+
raw_result: "raw_result";
|
|
63
|
+
fetched_content: "fetched_content";
|
|
64
|
+
transcript: "transcript";
|
|
65
|
+
}>;
|
|
66
|
+
path: z.ZodString;
|
|
67
|
+
label: z.ZodOptional<z.ZodString>;
|
|
68
|
+
bytes: z.ZodOptional<z.ZodNumber>;
|
|
69
|
+
chars: z.ZodOptional<z.ZodNumber>;
|
|
70
|
+
lines: z.ZodOptional<z.ZodNumber>;
|
|
71
|
+
}, z.core.$loose>;
|
|
72
|
+
export type ToolOutputArtifactPayload = z.infer<typeof toolOutputArtifactSchema>;
|
|
73
|
+
export declare const liveOutputLimitSchema: z.ZodObject<{
|
|
74
|
+
capped: z.ZodBoolean;
|
|
75
|
+
direction: z.ZodLiteral<"tail">;
|
|
76
|
+
maxChars: z.ZodNumber;
|
|
77
|
+
maxChunks: z.ZodNumber;
|
|
78
|
+
totalChars: z.ZodOptional<z.ZodNumber>;
|
|
79
|
+
displayedChars: z.ZodOptional<z.ZodNumber>;
|
|
80
|
+
omittedChars: z.ZodOptional<z.ZodNumber>;
|
|
81
|
+
totalLines: z.ZodOptional<z.ZodNumber>;
|
|
82
|
+
displayedLines: z.ZodOptional<z.ZodNumber>;
|
|
83
|
+
omittedLines: z.ZodOptional<z.ZodNumber>;
|
|
84
|
+
}, z.core.$loose>;
|
|
85
|
+
export type LiveOutputLimitPayload = z.infer<typeof liveOutputLimitSchema>;
|
|
86
|
+
export declare const toolOutputLimitsSchema: z.ZodObject<{
|
|
87
|
+
execution: z.ZodOptional<z.ZodObject<{
|
|
88
|
+
truncated: z.ZodBoolean;
|
|
89
|
+
direction: z.ZodOptional<z.ZodEnum<{
|
|
90
|
+
head: "head";
|
|
91
|
+
tail: "tail";
|
|
92
|
+
line: "line";
|
|
93
|
+
head_tail: "head_tail";
|
|
94
|
+
}>>;
|
|
95
|
+
originalBytes: z.ZodOptional<z.ZodNumber>;
|
|
96
|
+
displayedBytes: z.ZodOptional<z.ZodNumber>;
|
|
97
|
+
omittedBytes: z.ZodOptional<z.ZodNumber>;
|
|
98
|
+
originalChars: z.ZodOptional<z.ZodNumber>;
|
|
99
|
+
displayedChars: z.ZodOptional<z.ZodNumber>;
|
|
100
|
+
omittedChars: z.ZodOptional<z.ZodNumber>;
|
|
101
|
+
originalLines: z.ZodOptional<z.ZodNumber>;
|
|
102
|
+
displayedLines: z.ZodOptional<z.ZodNumber>;
|
|
103
|
+
omittedLines: z.ZodOptional<z.ZodNumber>;
|
|
104
|
+
truncatedLines: z.ZodOptional<z.ZodNumber>;
|
|
105
|
+
maxBytes: z.ZodOptional<z.ZodNumber>;
|
|
106
|
+
maxLines: z.ZodOptional<z.ZodNumber>;
|
|
107
|
+
maxLineChars: z.ZodOptional<z.ZodNumber>;
|
|
108
|
+
partialLine: z.ZodOptional<z.ZodBoolean>;
|
|
109
|
+
}, z.core.$loose>>;
|
|
110
|
+
storage: z.ZodOptional<z.ZodObject<{
|
|
111
|
+
truncated: z.ZodBoolean;
|
|
112
|
+
direction: z.ZodOptional<z.ZodEnum<{
|
|
113
|
+
head: "head";
|
|
114
|
+
tail: "tail";
|
|
115
|
+
line: "line";
|
|
116
|
+
head_tail: "head_tail";
|
|
117
|
+
}>>;
|
|
118
|
+
originalBytes: z.ZodOptional<z.ZodNumber>;
|
|
119
|
+
displayedBytes: z.ZodOptional<z.ZodNumber>;
|
|
120
|
+
omittedBytes: z.ZodOptional<z.ZodNumber>;
|
|
121
|
+
originalChars: z.ZodOptional<z.ZodNumber>;
|
|
122
|
+
displayedChars: z.ZodOptional<z.ZodNumber>;
|
|
123
|
+
omittedChars: z.ZodOptional<z.ZodNumber>;
|
|
124
|
+
originalLines: z.ZodOptional<z.ZodNumber>;
|
|
125
|
+
displayedLines: z.ZodOptional<z.ZodNumber>;
|
|
126
|
+
omittedLines: z.ZodOptional<z.ZodNumber>;
|
|
127
|
+
truncatedLines: z.ZodOptional<z.ZodNumber>;
|
|
128
|
+
maxBytes: z.ZodOptional<z.ZodNumber>;
|
|
129
|
+
maxLines: z.ZodOptional<z.ZodNumber>;
|
|
130
|
+
maxLineChars: z.ZodOptional<z.ZodNumber>;
|
|
131
|
+
partialLine: z.ZodOptional<z.ZodBoolean>;
|
|
132
|
+
rawResultPath: z.ZodOptional<z.ZodString>;
|
|
133
|
+
}, z.core.$loose>>;
|
|
134
|
+
model: z.ZodOptional<z.ZodObject<{
|
|
135
|
+
truncated: z.ZodBoolean;
|
|
136
|
+
direction: z.ZodOptional<z.ZodEnum<{
|
|
137
|
+
head: "head";
|
|
138
|
+
tail: "tail";
|
|
139
|
+
line: "line";
|
|
140
|
+
head_tail: "head_tail";
|
|
141
|
+
}>>;
|
|
142
|
+
originalBytes: z.ZodOptional<z.ZodNumber>;
|
|
143
|
+
displayedBytes: z.ZodOptional<z.ZodNumber>;
|
|
144
|
+
omittedBytes: z.ZodOptional<z.ZodNumber>;
|
|
145
|
+
originalChars: z.ZodOptional<z.ZodNumber>;
|
|
146
|
+
displayedChars: z.ZodOptional<z.ZodNumber>;
|
|
147
|
+
omittedChars: z.ZodOptional<z.ZodNumber>;
|
|
148
|
+
originalLines: z.ZodOptional<z.ZodNumber>;
|
|
149
|
+
displayedLines: z.ZodOptional<z.ZodNumber>;
|
|
150
|
+
omittedLines: z.ZodOptional<z.ZodNumber>;
|
|
151
|
+
truncatedLines: z.ZodOptional<z.ZodNumber>;
|
|
152
|
+
maxBytes: z.ZodOptional<z.ZodNumber>;
|
|
153
|
+
maxLines: z.ZodOptional<z.ZodNumber>;
|
|
154
|
+
maxLineChars: z.ZodOptional<z.ZodNumber>;
|
|
155
|
+
partialLine: z.ZodOptional<z.ZodBoolean>;
|
|
156
|
+
contentKind: z.ZodOptional<z.ZodEnum<{
|
|
157
|
+
content_blocks: "content_blocks";
|
|
158
|
+
formatted_text: "formatted_text";
|
|
159
|
+
}>>;
|
|
160
|
+
}, z.core.$loose>>;
|
|
161
|
+
live: z.ZodOptional<z.ZodObject<{
|
|
162
|
+
capped: z.ZodBoolean;
|
|
163
|
+
direction: z.ZodLiteral<"tail">;
|
|
164
|
+
maxChars: z.ZodNumber;
|
|
165
|
+
maxChunks: z.ZodNumber;
|
|
166
|
+
totalChars: z.ZodOptional<z.ZodNumber>;
|
|
167
|
+
displayedChars: z.ZodOptional<z.ZodNumber>;
|
|
168
|
+
omittedChars: z.ZodOptional<z.ZodNumber>;
|
|
169
|
+
totalLines: z.ZodOptional<z.ZodNumber>;
|
|
170
|
+
displayedLines: z.ZodOptional<z.ZodNumber>;
|
|
171
|
+
omittedLines: z.ZodOptional<z.ZodNumber>;
|
|
172
|
+
}, z.core.$loose>>;
|
|
173
|
+
artifacts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
174
|
+
kind: z.ZodEnum<{
|
|
175
|
+
full_output: "full_output";
|
|
176
|
+
raw_result: "raw_result";
|
|
177
|
+
fetched_content: "fetched_content";
|
|
178
|
+
transcript: "transcript";
|
|
179
|
+
}>;
|
|
180
|
+
path: z.ZodString;
|
|
181
|
+
label: z.ZodOptional<z.ZodString>;
|
|
182
|
+
bytes: z.ZodOptional<z.ZodNumber>;
|
|
183
|
+
chars: z.ZodOptional<z.ZodNumber>;
|
|
184
|
+
lines: z.ZodOptional<z.ZodNumber>;
|
|
185
|
+
}, z.core.$loose>>>;
|
|
186
|
+
continuation: z.ZodOptional<z.ZodObject<{
|
|
187
|
+
nextOffset: z.ZodOptional<z.ZodNumber>;
|
|
188
|
+
nextByteOffset: z.ZodOptional<z.ZodNumber>;
|
|
189
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
190
|
+
}, z.core.$loose>>;
|
|
191
|
+
}, z.core.$loose>;
|
|
192
|
+
export type ToolOutputLimitsPayload = z.infer<typeof toolOutputLimitsSchema>;
|
|
28
193
|
/** Loose envelope covering the `details.truncation` shapes emitted by file tools. */
|
|
29
194
|
export declare const truncationDetailsSchema: z.ZodObject<{
|
|
30
195
|
truncated: z.ZodOptional<z.ZodBoolean>;
|
|
31
196
|
omittedLines: z.ZodOptional<z.ZodNumber>;
|
|
197
|
+
omittedChars: z.ZodOptional<z.ZodNumber>;
|
|
32
198
|
omittedBytes: z.ZodOptional<z.ZodNumber>;
|
|
33
199
|
truncatedLines: z.ZodOptional<z.ZodNumber>;
|
|
34
200
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
35
|
-
line: "line";
|
|
36
201
|
head: "head";
|
|
37
202
|
tail: "tail";
|
|
203
|
+
line: "line";
|
|
38
204
|
head_tail: "head_tail";
|
|
39
205
|
}>>;
|
|
40
206
|
partialLine: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -42,6 +208,8 @@ export declare const truncationDetailsSchema: z.ZodObject<{
|
|
|
42
208
|
nextByteOffset: z.ZodOptional<z.ZodNumber>;
|
|
43
209
|
maxLines: z.ZodOptional<z.ZodNumber>;
|
|
44
210
|
maxBytes: z.ZodOptional<z.ZodNumber>;
|
|
211
|
+
originalChars: z.ZodOptional<z.ZodNumber>;
|
|
212
|
+
displayedChars: z.ZodOptional<z.ZodNumber>;
|
|
45
213
|
maxLineChars: z.ZodOptional<z.ZodNumber>;
|
|
46
214
|
byteOffset: z.ZodOptional<z.ZodNumber>;
|
|
47
215
|
byteLimit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -55,12 +223,13 @@ export declare const processStreamResultDetailsSchema: z.ZodObject<{
|
|
|
55
223
|
displayedLines: z.ZodOptional<z.ZodNumber>;
|
|
56
224
|
truncated: z.ZodOptional<z.ZodBoolean>;
|
|
57
225
|
omittedLines: z.ZodOptional<z.ZodNumber>;
|
|
226
|
+
omittedChars: z.ZodOptional<z.ZodNumber>;
|
|
58
227
|
omittedBytes: z.ZodOptional<z.ZodNumber>;
|
|
59
228
|
truncatedLines: z.ZodOptional<z.ZodNumber>;
|
|
60
229
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
61
|
-
line: "line";
|
|
62
230
|
head: "head";
|
|
63
231
|
tail: "tail";
|
|
232
|
+
line: "line";
|
|
64
233
|
head_tail: "head_tail";
|
|
65
234
|
}>>;
|
|
66
235
|
maxLineChars: z.ZodOptional<z.ZodNumber>;
|
|
@@ -75,12 +244,13 @@ export declare const processStreamsResultDetailsSchema: z.ZodObject<{
|
|
|
75
244
|
displayedLines: z.ZodOptional<z.ZodNumber>;
|
|
76
245
|
truncated: z.ZodOptional<z.ZodBoolean>;
|
|
77
246
|
omittedLines: z.ZodOptional<z.ZodNumber>;
|
|
247
|
+
omittedChars: z.ZodOptional<z.ZodNumber>;
|
|
78
248
|
omittedBytes: z.ZodOptional<z.ZodNumber>;
|
|
79
249
|
truncatedLines: z.ZodOptional<z.ZodNumber>;
|
|
80
250
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
81
|
-
line: "line";
|
|
82
251
|
head: "head";
|
|
83
252
|
tail: "tail";
|
|
253
|
+
line: "line";
|
|
84
254
|
head_tail: "head_tail";
|
|
85
255
|
}>>;
|
|
86
256
|
maxLineChars: z.ZodOptional<z.ZodNumber>;
|
|
@@ -93,12 +263,13 @@ export declare const processStreamsResultDetailsSchema: z.ZodObject<{
|
|
|
93
263
|
displayedLines: z.ZodOptional<z.ZodNumber>;
|
|
94
264
|
truncated: z.ZodOptional<z.ZodBoolean>;
|
|
95
265
|
omittedLines: z.ZodOptional<z.ZodNumber>;
|
|
266
|
+
omittedChars: z.ZodOptional<z.ZodNumber>;
|
|
96
267
|
omittedBytes: z.ZodOptional<z.ZodNumber>;
|
|
97
268
|
truncatedLines: z.ZodOptional<z.ZodNumber>;
|
|
98
269
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
99
|
-
line: "line";
|
|
100
270
|
head: "head";
|
|
101
271
|
tail: "tail";
|
|
272
|
+
line: "line";
|
|
102
273
|
head_tail: "head_tail";
|
|
103
274
|
}>>;
|
|
104
275
|
maxLineChars: z.ZodOptional<z.ZodNumber>;
|
|
@@ -111,12 +282,13 @@ export declare const processStreamsResultDetailsSchema: z.ZodObject<{
|
|
|
111
282
|
displayedLines: z.ZodOptional<z.ZodNumber>;
|
|
112
283
|
truncated: z.ZodOptional<z.ZodBoolean>;
|
|
113
284
|
omittedLines: z.ZodOptional<z.ZodNumber>;
|
|
285
|
+
omittedChars: z.ZodOptional<z.ZodNumber>;
|
|
114
286
|
omittedBytes: z.ZodOptional<z.ZodNumber>;
|
|
115
287
|
truncatedLines: z.ZodOptional<z.ZodNumber>;
|
|
116
288
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
117
|
-
line: "line";
|
|
118
289
|
head: "head";
|
|
119
290
|
tail: "tail";
|
|
291
|
+
line: "line";
|
|
120
292
|
head_tail: "head_tail";
|
|
121
293
|
}>>;
|
|
122
294
|
maxLineChars: z.ZodOptional<z.ZodNumber>;
|
|
@@ -206,12 +378,13 @@ export declare const bashResultDetailsSchema: z.ZodObject<{
|
|
|
206
378
|
truncation: z.ZodOptional<z.ZodObject<{
|
|
207
379
|
truncated: z.ZodOptional<z.ZodBoolean>;
|
|
208
380
|
omittedLines: z.ZodOptional<z.ZodNumber>;
|
|
381
|
+
omittedChars: z.ZodOptional<z.ZodNumber>;
|
|
209
382
|
omittedBytes: z.ZodOptional<z.ZodNumber>;
|
|
210
383
|
truncatedLines: z.ZodOptional<z.ZodNumber>;
|
|
211
384
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
212
|
-
line: "line";
|
|
213
385
|
head: "head";
|
|
214
386
|
tail: "tail";
|
|
387
|
+
line: "line";
|
|
215
388
|
head_tail: "head_tail";
|
|
216
389
|
}>>;
|
|
217
390
|
partialLine: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -219,6 +392,8 @@ export declare const bashResultDetailsSchema: z.ZodObject<{
|
|
|
219
392
|
nextByteOffset: z.ZodOptional<z.ZodNumber>;
|
|
220
393
|
maxLines: z.ZodOptional<z.ZodNumber>;
|
|
221
394
|
maxBytes: z.ZodOptional<z.ZodNumber>;
|
|
395
|
+
originalChars: z.ZodOptional<z.ZodNumber>;
|
|
396
|
+
displayedChars: z.ZodOptional<z.ZodNumber>;
|
|
222
397
|
maxLineChars: z.ZodOptional<z.ZodNumber>;
|
|
223
398
|
byteOffset: z.ZodOptional<z.ZodNumber>;
|
|
224
399
|
byteLimit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -238,12 +413,13 @@ export declare const pythonResultDetailsSchema: z.ZodObject<{
|
|
|
238
413
|
truncation: z.ZodOptional<z.ZodObject<{
|
|
239
414
|
truncated: z.ZodOptional<z.ZodBoolean>;
|
|
240
415
|
omittedLines: z.ZodOptional<z.ZodNumber>;
|
|
416
|
+
omittedChars: z.ZodOptional<z.ZodNumber>;
|
|
241
417
|
omittedBytes: z.ZodOptional<z.ZodNumber>;
|
|
242
418
|
truncatedLines: z.ZodOptional<z.ZodNumber>;
|
|
243
419
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
244
|
-
line: "line";
|
|
245
420
|
head: "head";
|
|
246
421
|
tail: "tail";
|
|
422
|
+
line: "line";
|
|
247
423
|
head_tail: "head_tail";
|
|
248
424
|
}>>;
|
|
249
425
|
partialLine: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -251,6 +427,8 @@ export declare const pythonResultDetailsSchema: z.ZodObject<{
|
|
|
251
427
|
nextByteOffset: z.ZodOptional<z.ZodNumber>;
|
|
252
428
|
maxLines: z.ZodOptional<z.ZodNumber>;
|
|
253
429
|
maxBytes: z.ZodOptional<z.ZodNumber>;
|
|
430
|
+
originalChars: z.ZodOptional<z.ZodNumber>;
|
|
431
|
+
displayedChars: z.ZodOptional<z.ZodNumber>;
|
|
254
432
|
maxLineChars: z.ZodOptional<z.ZodNumber>;
|
|
255
433
|
byteOffset: z.ZodOptional<z.ZodNumber>;
|
|
256
434
|
byteLimit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -280,12 +458,13 @@ export declare const pythonResultDetailsSchema: z.ZodObject<{
|
|
|
280
458
|
displayedLines: z.ZodOptional<z.ZodNumber>;
|
|
281
459
|
truncated: z.ZodOptional<z.ZodBoolean>;
|
|
282
460
|
omittedLines: z.ZodOptional<z.ZodNumber>;
|
|
461
|
+
omittedChars: z.ZodOptional<z.ZodNumber>;
|
|
283
462
|
omittedBytes: z.ZodOptional<z.ZodNumber>;
|
|
284
463
|
truncatedLines: z.ZodOptional<z.ZodNumber>;
|
|
285
464
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
286
|
-
line: "line";
|
|
287
465
|
head: "head";
|
|
288
466
|
tail: "tail";
|
|
467
|
+
line: "line";
|
|
289
468
|
head_tail: "head_tail";
|
|
290
469
|
}>>;
|
|
291
470
|
maxLineChars: z.ZodOptional<z.ZodNumber>;
|
|
@@ -298,12 +477,13 @@ export declare const pythonResultDetailsSchema: z.ZodObject<{
|
|
|
298
477
|
displayedLines: z.ZodOptional<z.ZodNumber>;
|
|
299
478
|
truncated: z.ZodOptional<z.ZodBoolean>;
|
|
300
479
|
omittedLines: z.ZodOptional<z.ZodNumber>;
|
|
480
|
+
omittedChars: z.ZodOptional<z.ZodNumber>;
|
|
301
481
|
omittedBytes: z.ZodOptional<z.ZodNumber>;
|
|
302
482
|
truncatedLines: z.ZodOptional<z.ZodNumber>;
|
|
303
483
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
304
|
-
line: "line";
|
|
305
484
|
head: "head";
|
|
306
485
|
tail: "tail";
|
|
486
|
+
line: "line";
|
|
307
487
|
head_tail: "head_tail";
|
|
308
488
|
}>>;
|
|
309
489
|
maxLineChars: z.ZodOptional<z.ZodNumber>;
|
|
@@ -316,12 +496,13 @@ export declare const pythonResultDetailsSchema: z.ZodObject<{
|
|
|
316
496
|
displayedLines: z.ZodOptional<z.ZodNumber>;
|
|
317
497
|
truncated: z.ZodOptional<z.ZodBoolean>;
|
|
318
498
|
omittedLines: z.ZodOptional<z.ZodNumber>;
|
|
499
|
+
omittedChars: z.ZodOptional<z.ZodNumber>;
|
|
319
500
|
omittedBytes: z.ZodOptional<z.ZodNumber>;
|
|
320
501
|
truncatedLines: z.ZodOptional<z.ZodNumber>;
|
|
321
502
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
322
|
-
line: "line";
|
|
323
503
|
head: "head";
|
|
324
504
|
tail: "tail";
|
|
505
|
+
line: "line";
|
|
325
506
|
head_tail: "head_tail";
|
|
326
507
|
}>>;
|
|
327
508
|
maxLineChars: z.ZodOptional<z.ZodNumber>;
|
|
@@ -369,6 +550,103 @@ export declare const webFetchResultDetailsSchema: z.ZodObject<{
|
|
|
369
550
|
converted: z.ZodBoolean;
|
|
370
551
|
}, z.core.$strip>;
|
|
371
552
|
export type WebFetchResultDetails = z.infer<typeof webFetchResultDetailsSchema>;
|
|
553
|
+
export declare const jiraTextDisplaySchema: z.ZodString;
|
|
554
|
+
export declare const jiraIssueSummarySchema: z.ZodObject<{
|
|
555
|
+
key: z.ZodString;
|
|
556
|
+
id: z.ZodOptional<z.ZodString>;
|
|
557
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
558
|
+
issueType: z.ZodOptional<z.ZodString>;
|
|
559
|
+
status: z.ZodOptional<z.ZodString>;
|
|
560
|
+
assignee: z.ZodOptional<z.ZodString>;
|
|
561
|
+
priority: z.ZodOptional<z.ZodString>;
|
|
562
|
+
updated: z.ZodOptional<z.ZodString>;
|
|
563
|
+
}, z.core.$loose>;
|
|
564
|
+
export type JiraIssueSummaryPayload = z.infer<typeof jiraIssueSummarySchema>;
|
|
565
|
+
export declare const jiraProjectSummarySchema: z.ZodObject<{
|
|
566
|
+
key: z.ZodString;
|
|
567
|
+
id: z.ZodOptional<z.ZodString>;
|
|
568
|
+
name: z.ZodOptional<z.ZodString>;
|
|
569
|
+
projectTypeKey: z.ZodOptional<z.ZodString>;
|
|
570
|
+
lead: z.ZodOptional<z.ZodString>;
|
|
571
|
+
}, z.core.$loose>;
|
|
572
|
+
export type JiraProjectSummaryPayload = z.infer<typeof jiraProjectSummarySchema>;
|
|
573
|
+
export declare const jiraTransitionSummarySchema: z.ZodObject<{
|
|
574
|
+
id: z.ZodString;
|
|
575
|
+
name: z.ZodOptional<z.ZodString>;
|
|
576
|
+
to: z.ZodOptional<z.ZodString>;
|
|
577
|
+
}, z.core.$loose>;
|
|
578
|
+
export type JiraTransitionSummaryPayload = z.infer<typeof jiraTransitionSummarySchema>;
|
|
579
|
+
export declare const jiraIncludedCountsSchema: z.ZodObject<{
|
|
580
|
+
comments: z.ZodOptional<z.ZodNumber>;
|
|
581
|
+
transitions: z.ZodOptional<z.ZodNumber>;
|
|
582
|
+
statuses: z.ZodOptional<z.ZodNumber>;
|
|
583
|
+
components: z.ZodOptional<z.ZodNumber>;
|
|
584
|
+
versions: z.ZodOptional<z.ZodNumber>;
|
|
585
|
+
}, z.core.$loose>;
|
|
586
|
+
export type JiraIncludedCountsPayload = z.infer<typeof jiraIncludedCountsSchema>;
|
|
587
|
+
export declare const jiraResultDetailsSchema: z.ZodObject<{
|
|
588
|
+
jql: z.ZodOptional<z.ZodString>;
|
|
589
|
+
issueCount: z.ZodOptional<z.ZodNumber>;
|
|
590
|
+
displayedIssueCount: z.ZodOptional<z.ZodNumber>;
|
|
591
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
592
|
+
nextPageToken: z.ZodOptional<z.ZodString>;
|
|
593
|
+
issues: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
594
|
+
key: z.ZodString;
|
|
595
|
+
id: z.ZodOptional<z.ZodString>;
|
|
596
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
597
|
+
issueType: z.ZodOptional<z.ZodString>;
|
|
598
|
+
status: z.ZodOptional<z.ZodString>;
|
|
599
|
+
assignee: z.ZodOptional<z.ZodString>;
|
|
600
|
+
priority: z.ZodOptional<z.ZodString>;
|
|
601
|
+
updated: z.ZodOptional<z.ZodString>;
|
|
602
|
+
}, z.core.$loose>>>;
|
|
603
|
+
issue: z.ZodOptional<z.ZodObject<{
|
|
604
|
+
key: z.ZodString;
|
|
605
|
+
id: z.ZodOptional<z.ZodString>;
|
|
606
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
607
|
+
issueType: z.ZodOptional<z.ZodString>;
|
|
608
|
+
status: z.ZodOptional<z.ZodString>;
|
|
609
|
+
assignee: z.ZodOptional<z.ZodString>;
|
|
610
|
+
priority: z.ZodOptional<z.ZodString>;
|
|
611
|
+
updated: z.ZodOptional<z.ZodString>;
|
|
612
|
+
}, z.core.$loose>>;
|
|
613
|
+
issueKey: z.ZodOptional<z.ZodString>;
|
|
614
|
+
projectKey: z.ZodOptional<z.ZodString>;
|
|
615
|
+
project: z.ZodOptional<z.ZodObject<{
|
|
616
|
+
key: z.ZodString;
|
|
617
|
+
id: z.ZodOptional<z.ZodString>;
|
|
618
|
+
name: z.ZodOptional<z.ZodString>;
|
|
619
|
+
projectTypeKey: z.ZodOptional<z.ZodString>;
|
|
620
|
+
lead: z.ZodOptional<z.ZodString>;
|
|
621
|
+
}, z.core.$loose>>;
|
|
622
|
+
includedCounts: z.ZodOptional<z.ZodObject<{
|
|
623
|
+
comments: z.ZodOptional<z.ZodNumber>;
|
|
624
|
+
transitions: z.ZodOptional<z.ZodNumber>;
|
|
625
|
+
statuses: z.ZodOptional<z.ZodNumber>;
|
|
626
|
+
components: z.ZodOptional<z.ZodNumber>;
|
|
627
|
+
versions: z.ZodOptional<z.ZodNumber>;
|
|
628
|
+
}, z.core.$loose>>;
|
|
629
|
+
issueType: z.ZodOptional<z.ZodString>;
|
|
630
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
631
|
+
id: z.ZodOptional<z.ZodString>;
|
|
632
|
+
self: z.ZodOptional<z.ZodString>;
|
|
633
|
+
updatedFields: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
634
|
+
updatedFieldCount: z.ZodOptional<z.ZodNumber>;
|
|
635
|
+
commentId: z.ZodOptional<z.ZodString>;
|
|
636
|
+
transition: z.ZodOptional<z.ZodObject<{
|
|
637
|
+
id: z.ZodString;
|
|
638
|
+
name: z.ZodOptional<z.ZodString>;
|
|
639
|
+
to: z.ZodOptional<z.ZodString>;
|
|
640
|
+
}, z.core.$loose>>;
|
|
641
|
+
transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
642
|
+
id: z.ZodString;
|
|
643
|
+
name: z.ZodOptional<z.ZodString>;
|
|
644
|
+
to: z.ZodOptional<z.ZodString>;
|
|
645
|
+
}, z.core.$loose>>>;
|
|
646
|
+
transitionCount: z.ZodOptional<z.ZodNumber>;
|
|
647
|
+
displayedTransitionCount: z.ZodOptional<z.ZodNumber>;
|
|
648
|
+
}, z.core.$loose>;
|
|
649
|
+
export type JiraResultDetailsPayload = z.infer<typeof jiraResultDetailsSchema>;
|
|
372
650
|
/** File-tool result envelope (read/write/edit/grep/find/ls/bash/python/web_fetch/web_search). */
|
|
373
651
|
export declare const toolExecutionResultSchema: z.ZodObject<{
|
|
374
652
|
content: z.ZodOptional<z.ZodString>;
|
|
@@ -425,16 +703,28 @@ export declare const taskCancelResultSchema: z.ZodObject<{
|
|
|
425
703
|
}>;
|
|
426
704
|
status: z.ZodOptional<z.ZodEnum<{
|
|
427
705
|
running: "running";
|
|
428
|
-
cancelled: "cancelled";
|
|
429
|
-
failed: "failed";
|
|
430
|
-
starting: "starting";
|
|
431
706
|
completed: "completed";
|
|
707
|
+
starting: "starting";
|
|
432
708
|
ready: "ready";
|
|
433
709
|
stopping: "stopping";
|
|
710
|
+
failed: "failed";
|
|
434
711
|
timed_out: "timed_out";
|
|
712
|
+
cancelled: "cancelled";
|
|
435
713
|
orphaned: "orphaned";
|
|
436
714
|
}>>;
|
|
437
715
|
message: z.ZodString;
|
|
716
|
+
releasedPorts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
717
|
+
protocol: z.ZodEnum<{
|
|
718
|
+
tcp: "tcp";
|
|
719
|
+
tcp6: "tcp6";
|
|
720
|
+
}>;
|
|
721
|
+
address: z.ZodString;
|
|
722
|
+
port: z.ZodNumber;
|
|
723
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
724
|
+
processGroupId: z.ZodOptional<z.ZodNumber>;
|
|
725
|
+
processStartTimeTicks: z.ZodOptional<z.ZodNumber>;
|
|
726
|
+
detectedAt: z.ZodString;
|
|
727
|
+
}, z.core.$strip>>>;
|
|
438
728
|
}, z.core.$strip>;
|
|
439
729
|
export type TaskCancelResultPayload = z.infer<typeof taskCancelResultSchema>;
|
|
440
730
|
/** Result of task_start / task_cancel / task_restart. */
|
|
@@ -457,13 +747,13 @@ export declare const taskActionResultSchema: z.ZodObject<{
|
|
|
457
747
|
}, z.core.$strip>>;
|
|
458
748
|
status: z.ZodEnum<{
|
|
459
749
|
running: "running";
|
|
460
|
-
cancelled: "cancelled";
|
|
461
|
-
failed: "failed";
|
|
462
|
-
starting: "starting";
|
|
463
750
|
completed: "completed";
|
|
751
|
+
starting: "starting";
|
|
464
752
|
ready: "ready";
|
|
465
753
|
stopping: "stopping";
|
|
754
|
+
failed: "failed";
|
|
466
755
|
timed_out: "timed_out";
|
|
756
|
+
cancelled: "cancelled";
|
|
467
757
|
orphaned: "orphaned";
|
|
468
758
|
}>;
|
|
469
759
|
readiness: z.ZodObject<{
|
|
@@ -503,7 +793,31 @@ export declare const taskActionResultSchema: z.ZodObject<{
|
|
|
503
793
|
detached: z.ZodBoolean;
|
|
504
794
|
shell: z.ZodBoolean;
|
|
505
795
|
spawnedAt: z.ZodString;
|
|
796
|
+
listeningPorts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
797
|
+
protocol: z.ZodEnum<{
|
|
798
|
+
tcp: "tcp";
|
|
799
|
+
tcp6: "tcp6";
|
|
800
|
+
}>;
|
|
801
|
+
address: z.ZodString;
|
|
802
|
+
port: z.ZodNumber;
|
|
803
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
804
|
+
processGroupId: z.ZodOptional<z.ZodNumber>;
|
|
805
|
+
processStartTimeTicks: z.ZodOptional<z.ZodNumber>;
|
|
806
|
+
detectedAt: z.ZodString;
|
|
807
|
+
}, z.core.$strip>>>;
|
|
506
808
|
}, z.core.$strip>>;
|
|
809
|
+
lastOrphanCleanupReleasedPorts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
810
|
+
protocol: z.ZodEnum<{
|
|
811
|
+
tcp: "tcp";
|
|
812
|
+
tcp6: "tcp6";
|
|
813
|
+
}>;
|
|
814
|
+
address: z.ZodString;
|
|
815
|
+
port: z.ZodNumber;
|
|
816
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
817
|
+
processGroupId: z.ZodOptional<z.ZodNumber>;
|
|
818
|
+
processStartTimeTicks: z.ZodOptional<z.ZodNumber>;
|
|
819
|
+
detectedAt: z.ZodString;
|
|
820
|
+
}, z.core.$strip>>>;
|
|
507
821
|
origin: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
508
822
|
kind: z.ZodLiteral<"api">;
|
|
509
823
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -556,13 +870,13 @@ export declare const taskActionResultSchema: z.ZodObject<{
|
|
|
556
870
|
}, z.core.$strip>>;
|
|
557
871
|
status: z.ZodEnum<{
|
|
558
872
|
running: "running";
|
|
559
|
-
cancelled: "cancelled";
|
|
560
|
-
failed: "failed";
|
|
561
|
-
starting: "starting";
|
|
562
873
|
completed: "completed";
|
|
874
|
+
starting: "starting";
|
|
563
875
|
ready: "ready";
|
|
564
876
|
stopping: "stopping";
|
|
877
|
+
failed: "failed";
|
|
565
878
|
timed_out: "timed_out";
|
|
879
|
+
cancelled: "cancelled";
|
|
566
880
|
orphaned: "orphaned";
|
|
567
881
|
}>;
|
|
568
882
|
readiness: z.ZodObject<{
|
|
@@ -602,7 +916,31 @@ export declare const taskActionResultSchema: z.ZodObject<{
|
|
|
602
916
|
detached: z.ZodBoolean;
|
|
603
917
|
shell: z.ZodBoolean;
|
|
604
918
|
spawnedAt: z.ZodString;
|
|
919
|
+
listeningPorts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
920
|
+
protocol: z.ZodEnum<{
|
|
921
|
+
tcp: "tcp";
|
|
922
|
+
tcp6: "tcp6";
|
|
923
|
+
}>;
|
|
924
|
+
address: z.ZodString;
|
|
925
|
+
port: z.ZodNumber;
|
|
926
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
927
|
+
processGroupId: z.ZodOptional<z.ZodNumber>;
|
|
928
|
+
processStartTimeTicks: z.ZodOptional<z.ZodNumber>;
|
|
929
|
+
detectedAt: z.ZodString;
|
|
930
|
+
}, z.core.$strip>>>;
|
|
605
931
|
}, z.core.$strip>>;
|
|
932
|
+
lastOrphanCleanupReleasedPorts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
933
|
+
protocol: z.ZodEnum<{
|
|
934
|
+
tcp: "tcp";
|
|
935
|
+
tcp6: "tcp6";
|
|
936
|
+
}>;
|
|
937
|
+
address: z.ZodString;
|
|
938
|
+
port: z.ZodNumber;
|
|
939
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
940
|
+
processGroupId: z.ZodOptional<z.ZodNumber>;
|
|
941
|
+
processStartTimeTicks: z.ZodOptional<z.ZodNumber>;
|
|
942
|
+
detectedAt: z.ZodString;
|
|
943
|
+
}, z.core.$strip>>>;
|
|
606
944
|
origin: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
607
945
|
kind: z.ZodLiteral<"api">;
|
|
608
946
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -659,16 +997,28 @@ export declare const taskActionResultSchema: z.ZodObject<{
|
|
|
659
997
|
}>;
|
|
660
998
|
status: z.ZodOptional<z.ZodEnum<{
|
|
661
999
|
running: "running";
|
|
662
|
-
cancelled: "cancelled";
|
|
663
|
-
failed: "failed";
|
|
664
|
-
starting: "starting";
|
|
665
1000
|
completed: "completed";
|
|
1001
|
+
starting: "starting";
|
|
666
1002
|
ready: "ready";
|
|
667
1003
|
stopping: "stopping";
|
|
1004
|
+
failed: "failed";
|
|
668
1005
|
timed_out: "timed_out";
|
|
1006
|
+
cancelled: "cancelled";
|
|
669
1007
|
orphaned: "orphaned";
|
|
670
1008
|
}>>;
|
|
671
1009
|
message: z.ZodString;
|
|
1010
|
+
releasedPorts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1011
|
+
protocol: z.ZodEnum<{
|
|
1012
|
+
tcp: "tcp";
|
|
1013
|
+
tcp6: "tcp6";
|
|
1014
|
+
}>;
|
|
1015
|
+
address: z.ZodString;
|
|
1016
|
+
port: z.ZodNumber;
|
|
1017
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
1018
|
+
processGroupId: z.ZodOptional<z.ZodNumber>;
|
|
1019
|
+
processStartTimeTicks: z.ZodOptional<z.ZodNumber>;
|
|
1020
|
+
detectedAt: z.ZodString;
|
|
1021
|
+
}, z.core.$strip>>>;
|
|
672
1022
|
}, z.core.$strip>>>;
|
|
673
1023
|
contentBlocks: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
674
1024
|
type: z.ZodLiteral<"text">;
|
|
@@ -700,13 +1050,13 @@ export declare const taskListResultSchema: z.ZodObject<{
|
|
|
700
1050
|
}, z.core.$strip>>;
|
|
701
1051
|
status: z.ZodEnum<{
|
|
702
1052
|
running: "running";
|
|
703
|
-
cancelled: "cancelled";
|
|
704
|
-
failed: "failed";
|
|
705
|
-
starting: "starting";
|
|
706
1053
|
completed: "completed";
|
|
1054
|
+
starting: "starting";
|
|
707
1055
|
ready: "ready";
|
|
708
1056
|
stopping: "stopping";
|
|
1057
|
+
failed: "failed";
|
|
709
1058
|
timed_out: "timed_out";
|
|
1059
|
+
cancelled: "cancelled";
|
|
710
1060
|
orphaned: "orphaned";
|
|
711
1061
|
}>;
|
|
712
1062
|
readiness: z.ZodObject<{
|
|
@@ -746,7 +1096,31 @@ export declare const taskListResultSchema: z.ZodObject<{
|
|
|
746
1096
|
detached: z.ZodBoolean;
|
|
747
1097
|
shell: z.ZodBoolean;
|
|
748
1098
|
spawnedAt: z.ZodString;
|
|
1099
|
+
listeningPorts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1100
|
+
protocol: z.ZodEnum<{
|
|
1101
|
+
tcp: "tcp";
|
|
1102
|
+
tcp6: "tcp6";
|
|
1103
|
+
}>;
|
|
1104
|
+
address: z.ZodString;
|
|
1105
|
+
port: z.ZodNumber;
|
|
1106
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
1107
|
+
processGroupId: z.ZodOptional<z.ZodNumber>;
|
|
1108
|
+
processStartTimeTicks: z.ZodOptional<z.ZodNumber>;
|
|
1109
|
+
detectedAt: z.ZodString;
|
|
1110
|
+
}, z.core.$strip>>>;
|
|
749
1111
|
}, z.core.$strip>>;
|
|
1112
|
+
lastOrphanCleanupReleasedPorts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1113
|
+
protocol: z.ZodEnum<{
|
|
1114
|
+
tcp: "tcp";
|
|
1115
|
+
tcp6: "tcp6";
|
|
1116
|
+
}>;
|
|
1117
|
+
address: z.ZodString;
|
|
1118
|
+
port: z.ZodNumber;
|
|
1119
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
1120
|
+
processGroupId: z.ZodOptional<z.ZodNumber>;
|
|
1121
|
+
processStartTimeTicks: z.ZodOptional<z.ZodNumber>;
|
|
1122
|
+
detectedAt: z.ZodString;
|
|
1123
|
+
}, z.core.$strip>>>;
|
|
750
1124
|
origin: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
751
1125
|
kind: z.ZodLiteral<"api">;
|
|
752
1126
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -812,13 +1186,13 @@ export declare const taskLogsResultSchema: z.ZodObject<{
|
|
|
812
1186
|
}, z.core.$strip>>;
|
|
813
1187
|
status: z.ZodEnum<{
|
|
814
1188
|
running: "running";
|
|
815
|
-
cancelled: "cancelled";
|
|
816
|
-
failed: "failed";
|
|
817
|
-
starting: "starting";
|
|
818
1189
|
completed: "completed";
|
|
1190
|
+
starting: "starting";
|
|
819
1191
|
ready: "ready";
|
|
820
1192
|
stopping: "stopping";
|
|
1193
|
+
failed: "failed";
|
|
821
1194
|
timed_out: "timed_out";
|
|
1195
|
+
cancelled: "cancelled";
|
|
822
1196
|
orphaned: "orphaned";
|
|
823
1197
|
}>;
|
|
824
1198
|
readiness: z.ZodObject<{
|
|
@@ -858,7 +1232,31 @@ export declare const taskLogsResultSchema: z.ZodObject<{
|
|
|
858
1232
|
detached: z.ZodBoolean;
|
|
859
1233
|
shell: z.ZodBoolean;
|
|
860
1234
|
spawnedAt: z.ZodString;
|
|
1235
|
+
listeningPorts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1236
|
+
protocol: z.ZodEnum<{
|
|
1237
|
+
tcp: "tcp";
|
|
1238
|
+
tcp6: "tcp6";
|
|
1239
|
+
}>;
|
|
1240
|
+
address: z.ZodString;
|
|
1241
|
+
port: z.ZodNumber;
|
|
1242
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
1243
|
+
processGroupId: z.ZodOptional<z.ZodNumber>;
|
|
1244
|
+
processStartTimeTicks: z.ZodOptional<z.ZodNumber>;
|
|
1245
|
+
detectedAt: z.ZodString;
|
|
1246
|
+
}, z.core.$strip>>>;
|
|
861
1247
|
}, z.core.$strip>>;
|
|
1248
|
+
lastOrphanCleanupReleasedPorts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1249
|
+
protocol: z.ZodEnum<{
|
|
1250
|
+
tcp: "tcp";
|
|
1251
|
+
tcp6: "tcp6";
|
|
1252
|
+
}>;
|
|
1253
|
+
address: z.ZodString;
|
|
1254
|
+
port: z.ZodNumber;
|
|
1255
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
1256
|
+
processGroupId: z.ZodOptional<z.ZodNumber>;
|
|
1257
|
+
processStartTimeTicks: z.ZodOptional<z.ZodNumber>;
|
|
1258
|
+
detectedAt: z.ZodString;
|
|
1259
|
+
}, z.core.$strip>>>;
|
|
862
1260
|
origin: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
863
1261
|
kind: z.ZodLiteral<"api">;
|
|
864
1262
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -948,9 +1346,9 @@ export declare const exploreReportSchema: z.ZodObject<{
|
|
|
948
1346
|
task: z.ZodString;
|
|
949
1347
|
label: z.ZodOptional<z.ZodString>;
|
|
950
1348
|
status: z.ZodDefault<z.ZodEnum<{
|
|
951
|
-
aborted: "aborted";
|
|
952
|
-
failed: "failed";
|
|
953
1349
|
completed: "completed";
|
|
1350
|
+
failed: "failed";
|
|
1351
|
+
aborted: "aborted";
|
|
954
1352
|
}>>;
|
|
955
1353
|
report: z.ZodString;
|
|
956
1354
|
reportPath: z.ZodOptional<z.ZodString>;
|
|
@@ -965,6 +1363,14 @@ export declare const exploreReportSchema: z.ZodObject<{
|
|
|
965
1363
|
turns: z.ZodDefault<z.ZodNumber>;
|
|
966
1364
|
}, z.core.$strip>>;
|
|
967
1365
|
model: z.ZodOptional<z.ZodString>;
|
|
1366
|
+
thinkingLevel: z.ZodOptional<z.ZodEnum<{
|
|
1367
|
+
off: "off";
|
|
1368
|
+
minimal: "minimal";
|
|
1369
|
+
low: "low";
|
|
1370
|
+
medium: "medium";
|
|
1371
|
+
high: "high";
|
|
1372
|
+
xhigh: "xhigh";
|
|
1373
|
+
}>>;
|
|
968
1374
|
stopReason: z.ZodOptional<z.ZodString>;
|
|
969
1375
|
errorMessage: z.ZodOptional<z.ZodString>;
|
|
970
1376
|
steps: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -985,9 +1391,9 @@ export declare const exploreResultSchema: z.ZodObject<{
|
|
|
985
1391
|
task: z.ZodString;
|
|
986
1392
|
label: z.ZodOptional<z.ZodString>;
|
|
987
1393
|
status: z.ZodDefault<z.ZodEnum<{
|
|
988
|
-
aborted: "aborted";
|
|
989
|
-
failed: "failed";
|
|
990
1394
|
completed: "completed";
|
|
1395
|
+
failed: "failed";
|
|
1396
|
+
aborted: "aborted";
|
|
991
1397
|
}>>;
|
|
992
1398
|
report: z.ZodString;
|
|
993
1399
|
reportPath: z.ZodOptional<z.ZodString>;
|
|
@@ -1002,6 +1408,14 @@ export declare const exploreResultSchema: z.ZodObject<{
|
|
|
1002
1408
|
turns: z.ZodDefault<z.ZodNumber>;
|
|
1003
1409
|
}, z.core.$strip>>;
|
|
1004
1410
|
model: z.ZodOptional<z.ZodString>;
|
|
1411
|
+
thinkingLevel: z.ZodOptional<z.ZodEnum<{
|
|
1412
|
+
off: "off";
|
|
1413
|
+
minimal: "minimal";
|
|
1414
|
+
low: "low";
|
|
1415
|
+
medium: "medium";
|
|
1416
|
+
high: "high";
|
|
1417
|
+
xhigh: "xhigh";
|
|
1418
|
+
}>>;
|
|
1005
1419
|
stopReason: z.ZodOptional<z.ZodString>;
|
|
1006
1420
|
errorMessage: z.ZodOptional<z.ZodString>;
|
|
1007
1421
|
steps: z.ZodOptional<z.ZodArray<z.ZodObject<{
|