@nervekit/shared 0.2.0 → 0.3.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/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 +1 -0
- 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/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/tasks/task.schema.d.ts +73 -0
- 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 +97 -0
- package/dist/domains/tools/records.schema.d.ts.map +1 -1
- package/dist/domains/tools/records.schema.js +17 -0
- package/dist/domains/tools/records.schema.js.map +1 -1
- package/dist/domains/tools/tool-results.schema.d.ts +327 -10
- package/dist/domains/tools/tool-results.schema.d.ts.map +1 -1
- package/dist/domains/tools/tool-results.schema.js +86 -1
- package/dist/domains/tools/tool-results.schema.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>;
|
|
@@ -435,6 +616,18 @@ export declare const taskCancelResultSchema: z.ZodObject<{
|
|
|
435
616
|
orphaned: "orphaned";
|
|
436
617
|
}>>;
|
|
437
618
|
message: z.ZodString;
|
|
619
|
+
releasedPorts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
620
|
+
protocol: z.ZodEnum<{
|
|
621
|
+
tcp: "tcp";
|
|
622
|
+
tcp6: "tcp6";
|
|
623
|
+
}>;
|
|
624
|
+
address: z.ZodString;
|
|
625
|
+
port: z.ZodNumber;
|
|
626
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
627
|
+
processGroupId: z.ZodOptional<z.ZodNumber>;
|
|
628
|
+
processStartTimeTicks: z.ZodOptional<z.ZodNumber>;
|
|
629
|
+
detectedAt: z.ZodString;
|
|
630
|
+
}, z.core.$strip>>>;
|
|
438
631
|
}, z.core.$strip>;
|
|
439
632
|
export type TaskCancelResultPayload = z.infer<typeof taskCancelResultSchema>;
|
|
440
633
|
/** Result of task_start / task_cancel / task_restart. */
|
|
@@ -503,7 +696,31 @@ export declare const taskActionResultSchema: z.ZodObject<{
|
|
|
503
696
|
detached: z.ZodBoolean;
|
|
504
697
|
shell: z.ZodBoolean;
|
|
505
698
|
spawnedAt: z.ZodString;
|
|
699
|
+
listeningPorts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
700
|
+
protocol: z.ZodEnum<{
|
|
701
|
+
tcp: "tcp";
|
|
702
|
+
tcp6: "tcp6";
|
|
703
|
+
}>;
|
|
704
|
+
address: z.ZodString;
|
|
705
|
+
port: z.ZodNumber;
|
|
706
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
707
|
+
processGroupId: z.ZodOptional<z.ZodNumber>;
|
|
708
|
+
processStartTimeTicks: z.ZodOptional<z.ZodNumber>;
|
|
709
|
+
detectedAt: z.ZodString;
|
|
710
|
+
}, z.core.$strip>>>;
|
|
506
711
|
}, z.core.$strip>>;
|
|
712
|
+
lastOrphanCleanupReleasedPorts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
713
|
+
protocol: z.ZodEnum<{
|
|
714
|
+
tcp: "tcp";
|
|
715
|
+
tcp6: "tcp6";
|
|
716
|
+
}>;
|
|
717
|
+
address: z.ZodString;
|
|
718
|
+
port: z.ZodNumber;
|
|
719
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
720
|
+
processGroupId: z.ZodOptional<z.ZodNumber>;
|
|
721
|
+
processStartTimeTicks: z.ZodOptional<z.ZodNumber>;
|
|
722
|
+
detectedAt: z.ZodString;
|
|
723
|
+
}, z.core.$strip>>>;
|
|
507
724
|
origin: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
508
725
|
kind: z.ZodLiteral<"api">;
|
|
509
726
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -602,7 +819,31 @@ export declare const taskActionResultSchema: z.ZodObject<{
|
|
|
602
819
|
detached: z.ZodBoolean;
|
|
603
820
|
shell: z.ZodBoolean;
|
|
604
821
|
spawnedAt: z.ZodString;
|
|
822
|
+
listeningPorts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
823
|
+
protocol: z.ZodEnum<{
|
|
824
|
+
tcp: "tcp";
|
|
825
|
+
tcp6: "tcp6";
|
|
826
|
+
}>;
|
|
827
|
+
address: z.ZodString;
|
|
828
|
+
port: z.ZodNumber;
|
|
829
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
830
|
+
processGroupId: z.ZodOptional<z.ZodNumber>;
|
|
831
|
+
processStartTimeTicks: z.ZodOptional<z.ZodNumber>;
|
|
832
|
+
detectedAt: z.ZodString;
|
|
833
|
+
}, z.core.$strip>>>;
|
|
605
834
|
}, z.core.$strip>>;
|
|
835
|
+
lastOrphanCleanupReleasedPorts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
836
|
+
protocol: z.ZodEnum<{
|
|
837
|
+
tcp: "tcp";
|
|
838
|
+
tcp6: "tcp6";
|
|
839
|
+
}>;
|
|
840
|
+
address: z.ZodString;
|
|
841
|
+
port: z.ZodNumber;
|
|
842
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
843
|
+
processGroupId: z.ZodOptional<z.ZodNumber>;
|
|
844
|
+
processStartTimeTicks: z.ZodOptional<z.ZodNumber>;
|
|
845
|
+
detectedAt: z.ZodString;
|
|
846
|
+
}, z.core.$strip>>>;
|
|
606
847
|
origin: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
607
848
|
kind: z.ZodLiteral<"api">;
|
|
608
849
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -669,6 +910,18 @@ export declare const taskActionResultSchema: z.ZodObject<{
|
|
|
669
910
|
orphaned: "orphaned";
|
|
670
911
|
}>>;
|
|
671
912
|
message: z.ZodString;
|
|
913
|
+
releasedPorts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
914
|
+
protocol: z.ZodEnum<{
|
|
915
|
+
tcp: "tcp";
|
|
916
|
+
tcp6: "tcp6";
|
|
917
|
+
}>;
|
|
918
|
+
address: z.ZodString;
|
|
919
|
+
port: z.ZodNumber;
|
|
920
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
921
|
+
processGroupId: z.ZodOptional<z.ZodNumber>;
|
|
922
|
+
processStartTimeTicks: z.ZodOptional<z.ZodNumber>;
|
|
923
|
+
detectedAt: z.ZodString;
|
|
924
|
+
}, z.core.$strip>>>;
|
|
672
925
|
}, z.core.$strip>>>;
|
|
673
926
|
contentBlocks: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
674
927
|
type: z.ZodLiteral<"text">;
|
|
@@ -746,7 +999,31 @@ export declare const taskListResultSchema: z.ZodObject<{
|
|
|
746
999
|
detached: z.ZodBoolean;
|
|
747
1000
|
shell: z.ZodBoolean;
|
|
748
1001
|
spawnedAt: z.ZodString;
|
|
1002
|
+
listeningPorts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1003
|
+
protocol: z.ZodEnum<{
|
|
1004
|
+
tcp: "tcp";
|
|
1005
|
+
tcp6: "tcp6";
|
|
1006
|
+
}>;
|
|
1007
|
+
address: z.ZodString;
|
|
1008
|
+
port: z.ZodNumber;
|
|
1009
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
1010
|
+
processGroupId: z.ZodOptional<z.ZodNumber>;
|
|
1011
|
+
processStartTimeTicks: z.ZodOptional<z.ZodNumber>;
|
|
1012
|
+
detectedAt: z.ZodString;
|
|
1013
|
+
}, z.core.$strip>>>;
|
|
749
1014
|
}, z.core.$strip>>;
|
|
1015
|
+
lastOrphanCleanupReleasedPorts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1016
|
+
protocol: z.ZodEnum<{
|
|
1017
|
+
tcp: "tcp";
|
|
1018
|
+
tcp6: "tcp6";
|
|
1019
|
+
}>;
|
|
1020
|
+
address: z.ZodString;
|
|
1021
|
+
port: z.ZodNumber;
|
|
1022
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
1023
|
+
processGroupId: z.ZodOptional<z.ZodNumber>;
|
|
1024
|
+
processStartTimeTicks: z.ZodOptional<z.ZodNumber>;
|
|
1025
|
+
detectedAt: z.ZodString;
|
|
1026
|
+
}, z.core.$strip>>>;
|
|
750
1027
|
origin: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
751
1028
|
kind: z.ZodLiteral<"api">;
|
|
752
1029
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -858,7 +1135,31 @@ export declare const taskLogsResultSchema: z.ZodObject<{
|
|
|
858
1135
|
detached: z.ZodBoolean;
|
|
859
1136
|
shell: z.ZodBoolean;
|
|
860
1137
|
spawnedAt: z.ZodString;
|
|
1138
|
+
listeningPorts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1139
|
+
protocol: z.ZodEnum<{
|
|
1140
|
+
tcp: "tcp";
|
|
1141
|
+
tcp6: "tcp6";
|
|
1142
|
+
}>;
|
|
1143
|
+
address: z.ZodString;
|
|
1144
|
+
port: z.ZodNumber;
|
|
1145
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
1146
|
+
processGroupId: z.ZodOptional<z.ZodNumber>;
|
|
1147
|
+
processStartTimeTicks: z.ZodOptional<z.ZodNumber>;
|
|
1148
|
+
detectedAt: z.ZodString;
|
|
1149
|
+
}, z.core.$strip>>>;
|
|
861
1150
|
}, z.core.$strip>>;
|
|
1151
|
+
lastOrphanCleanupReleasedPorts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1152
|
+
protocol: z.ZodEnum<{
|
|
1153
|
+
tcp: "tcp";
|
|
1154
|
+
tcp6: "tcp6";
|
|
1155
|
+
}>;
|
|
1156
|
+
address: z.ZodString;
|
|
1157
|
+
port: z.ZodNumber;
|
|
1158
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
1159
|
+
processGroupId: z.ZodOptional<z.ZodNumber>;
|
|
1160
|
+
processStartTimeTicks: z.ZodOptional<z.ZodNumber>;
|
|
1161
|
+
detectedAt: z.ZodString;
|
|
1162
|
+
}, z.core.$strip>>>;
|
|
862
1163
|
origin: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
863
1164
|
kind: z.ZodLiteral<"api">;
|
|
864
1165
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -965,6 +1266,14 @@ export declare const exploreReportSchema: z.ZodObject<{
|
|
|
965
1266
|
turns: z.ZodDefault<z.ZodNumber>;
|
|
966
1267
|
}, z.core.$strip>>;
|
|
967
1268
|
model: z.ZodOptional<z.ZodString>;
|
|
1269
|
+
thinkingLevel: z.ZodOptional<z.ZodEnum<{
|
|
1270
|
+
off: "off";
|
|
1271
|
+
minimal: "minimal";
|
|
1272
|
+
low: "low";
|
|
1273
|
+
medium: "medium";
|
|
1274
|
+
high: "high";
|
|
1275
|
+
xhigh: "xhigh";
|
|
1276
|
+
}>>;
|
|
968
1277
|
stopReason: z.ZodOptional<z.ZodString>;
|
|
969
1278
|
errorMessage: z.ZodOptional<z.ZodString>;
|
|
970
1279
|
steps: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1002,6 +1311,14 @@ export declare const exploreResultSchema: z.ZodObject<{
|
|
|
1002
1311
|
turns: z.ZodDefault<z.ZodNumber>;
|
|
1003
1312
|
}, z.core.$strip>>;
|
|
1004
1313
|
model: z.ZodOptional<z.ZodString>;
|
|
1314
|
+
thinkingLevel: z.ZodOptional<z.ZodEnum<{
|
|
1315
|
+
off: "off";
|
|
1316
|
+
minimal: "minimal";
|
|
1317
|
+
low: "low";
|
|
1318
|
+
medium: "medium";
|
|
1319
|
+
high: "high";
|
|
1320
|
+
xhigh: "xhigh";
|
|
1321
|
+
}>>;
|
|
1005
1322
|
stopReason: z.ZodOptional<z.ZodString>;
|
|
1006
1323
|
errorMessage: z.ZodOptional<z.ZodString>;
|
|
1007
1324
|
steps: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tool-results.schema.d.ts","sourceRoot":"","sources":["../../../src/domains/tools/tool-results.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"tool-results.schema.d.ts","sourceRoot":"","sources":["../../../src/domains/tools/tool-results.schema.ts"],"names":[],"mappings":"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"}
|