@agentrix/shared 2.13.1 → 2.15.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/{errors-B5CcMP8s.d.cts → errors-CDX-cJtb.d.cts} +235 -8
- package/dist/index.cjs +336 -3
- package/dist/index.d.cts +484 -16
- package/dist/node.d.cts +2 -2
- package/package.json +5 -1
|
@@ -21,6 +21,16 @@ declare const TaskTodoSchema: z.ZodObject<{
|
|
|
21
21
|
instructions: z.ZodString;
|
|
22
22
|
}, z.core.$strip>;
|
|
23
23
|
type TaskTodo = z.infer<typeof TaskTodoSchema>;
|
|
24
|
+
declare const TaskUsageSummarySchema: z.ZodObject<{
|
|
25
|
+
inputTokens: z.ZodNumber;
|
|
26
|
+
outputTokens: z.ZodNumber;
|
|
27
|
+
cacheReadInputTokens: z.ZodNumber;
|
|
28
|
+
cacheCreationInputTokens: z.ZodNumber;
|
|
29
|
+
webSearchRequests: z.ZodNumber;
|
|
30
|
+
totalTokens: z.ZodNumber;
|
|
31
|
+
models: z.ZodArray<z.ZodString>;
|
|
32
|
+
}, z.core.$strip>;
|
|
33
|
+
type TaskUsageSummary = z.infer<typeof TaskUsageSummarySchema>;
|
|
24
34
|
/**
|
|
25
35
|
* POST /v1/tasks/start - Request schema
|
|
26
36
|
*/
|
|
@@ -33,6 +43,7 @@ declare const StartTaskRequestSchema: z.ZodObject<{
|
|
|
33
43
|
forceUserCwd: z.ZodOptional<z.ZodBoolean>;
|
|
34
44
|
machineId: z.ZodOptional<z.ZodString>;
|
|
35
45
|
cloudId: z.ZodOptional<z.ZodString>;
|
|
46
|
+
model: z.ZodOptional<z.ZodString>;
|
|
36
47
|
repositoryId: z.ZodOptional<z.ZodString>;
|
|
37
48
|
baseBranch: z.ZodOptional<z.ZodString>;
|
|
38
49
|
workerExecutionMode: z.ZodOptional<z.ZodEnum<{
|
|
@@ -68,6 +79,7 @@ declare const startTaskSchema: z.ZodObject<{
|
|
|
68
79
|
forceUserCwd: z.ZodOptional<z.ZodBoolean>;
|
|
69
80
|
machineId: z.ZodOptional<z.ZodString>;
|
|
70
81
|
cloudId: z.ZodOptional<z.ZodString>;
|
|
82
|
+
model: z.ZodOptional<z.ZodString>;
|
|
71
83
|
repositoryId: z.ZodOptional<z.ZodString>;
|
|
72
84
|
baseBranch: z.ZodOptional<z.ZodString>;
|
|
73
85
|
workerExecutionMode: z.ZodOptional<z.ZodEnum<{
|
|
@@ -105,6 +117,7 @@ declare const StartTaskResponseSchema: z.ZodObject<{
|
|
|
105
117
|
state: z.ZodString;
|
|
106
118
|
machineId: z.ZodNullable<z.ZodString>;
|
|
107
119
|
cloudId: z.ZodNullable<z.ZodString>;
|
|
120
|
+
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
108
121
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
109
122
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
110
123
|
workerExecutionMode: z.ZodEnum<{
|
|
@@ -149,6 +162,7 @@ declare const TaskItemSchema: z.ZodObject<{
|
|
|
149
162
|
agentId: z.ZodString;
|
|
150
163
|
machineId: z.ZodNullable<z.ZodString>;
|
|
151
164
|
cloudId: z.ZodNullable<z.ZodString>;
|
|
165
|
+
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
152
166
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
153
167
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
154
168
|
branchName: z.ZodNullable<z.ZodString>;
|
|
@@ -187,6 +201,15 @@ declare const TaskItemSchema: z.ZodObject<{
|
|
|
187
201
|
deletions: z.ZodNumber;
|
|
188
202
|
}, z.core.$strip>>;
|
|
189
203
|
}, z.core.$strip>>;
|
|
204
|
+
usageSummary: z.ZodNullable<z.ZodObject<{
|
|
205
|
+
inputTokens: z.ZodNumber;
|
|
206
|
+
outputTokens: z.ZodNumber;
|
|
207
|
+
cacheReadInputTokens: z.ZodNumber;
|
|
208
|
+
cacheCreationInputTokens: z.ZodNumber;
|
|
209
|
+
webSearchRequests: z.ZodNumber;
|
|
210
|
+
totalTokens: z.ZodNumber;
|
|
211
|
+
models: z.ZodArray<z.ZodString>;
|
|
212
|
+
}, z.core.$strip>>;
|
|
190
213
|
totalDuration: z.ZodNullable<z.ZodNumber>;
|
|
191
214
|
rootTaskId: z.ZodNullable<z.ZodString>;
|
|
192
215
|
parentTaskId: z.ZodNullable<z.ZodString>;
|
|
@@ -215,6 +238,7 @@ declare const EnsureIssueRootTaskResponseSchema: z.ZodObject<{
|
|
|
215
238
|
agentId: z.ZodString;
|
|
216
239
|
machineId: z.ZodNullable<z.ZodString>;
|
|
217
240
|
cloudId: z.ZodNullable<z.ZodString>;
|
|
241
|
+
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
218
242
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
219
243
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
220
244
|
branchName: z.ZodNullable<z.ZodString>;
|
|
@@ -253,6 +277,15 @@ declare const EnsureIssueRootTaskResponseSchema: z.ZodObject<{
|
|
|
253
277
|
deletions: z.ZodNumber;
|
|
254
278
|
}, z.core.$strip>>;
|
|
255
279
|
}, z.core.$strip>>;
|
|
280
|
+
usageSummary: z.ZodNullable<z.ZodObject<{
|
|
281
|
+
inputTokens: z.ZodNumber;
|
|
282
|
+
outputTokens: z.ZodNumber;
|
|
283
|
+
cacheReadInputTokens: z.ZodNumber;
|
|
284
|
+
cacheCreationInputTokens: z.ZodNumber;
|
|
285
|
+
webSearchRequests: z.ZodNumber;
|
|
286
|
+
totalTokens: z.ZodNumber;
|
|
287
|
+
models: z.ZodArray<z.ZodString>;
|
|
288
|
+
}, z.core.$strip>>;
|
|
256
289
|
totalDuration: z.ZodNullable<z.ZodNumber>;
|
|
257
290
|
rootTaskId: z.ZodNullable<z.ZodString>;
|
|
258
291
|
parentTaskId: z.ZodNullable<z.ZodString>;
|
|
@@ -295,6 +328,7 @@ declare const ListTasksResponseSchema: z.ZodObject<{
|
|
|
295
328
|
agentId: z.ZodString;
|
|
296
329
|
machineId: z.ZodNullable<z.ZodString>;
|
|
297
330
|
cloudId: z.ZodNullable<z.ZodString>;
|
|
331
|
+
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
298
332
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
299
333
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
300
334
|
branchName: z.ZodNullable<z.ZodString>;
|
|
@@ -333,6 +367,15 @@ declare const ListTasksResponseSchema: z.ZodObject<{
|
|
|
333
367
|
deletions: z.ZodNumber;
|
|
334
368
|
}, z.core.$strip>>;
|
|
335
369
|
}, z.core.$strip>>;
|
|
370
|
+
usageSummary: z.ZodNullable<z.ZodObject<{
|
|
371
|
+
inputTokens: z.ZodNumber;
|
|
372
|
+
outputTokens: z.ZodNumber;
|
|
373
|
+
cacheReadInputTokens: z.ZodNumber;
|
|
374
|
+
cacheCreationInputTokens: z.ZodNumber;
|
|
375
|
+
webSearchRequests: z.ZodNumber;
|
|
376
|
+
totalTokens: z.ZodNumber;
|
|
377
|
+
models: z.ZodArray<z.ZodString>;
|
|
378
|
+
}, z.core.$strip>>;
|
|
336
379
|
totalDuration: z.ZodNullable<z.ZodNumber>;
|
|
337
380
|
rootTaskId: z.ZodNullable<z.ZodString>;
|
|
338
381
|
parentTaskId: z.ZodNullable<z.ZodString>;
|
|
@@ -602,6 +645,7 @@ declare const ArchiveTaskResponseSchema: z.ZodObject<{
|
|
|
602
645
|
agentId: z.ZodString;
|
|
603
646
|
machineId: z.ZodNullable<z.ZodString>;
|
|
604
647
|
cloudId: z.ZodNullable<z.ZodString>;
|
|
648
|
+
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
605
649
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
606
650
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
607
651
|
branchName: z.ZodNullable<z.ZodString>;
|
|
@@ -640,6 +684,15 @@ declare const ArchiveTaskResponseSchema: z.ZodObject<{
|
|
|
640
684
|
deletions: z.ZodNumber;
|
|
641
685
|
}, z.core.$strip>>;
|
|
642
686
|
}, z.core.$strip>>;
|
|
687
|
+
usageSummary: z.ZodNullable<z.ZodObject<{
|
|
688
|
+
inputTokens: z.ZodNumber;
|
|
689
|
+
outputTokens: z.ZodNumber;
|
|
690
|
+
cacheReadInputTokens: z.ZodNumber;
|
|
691
|
+
cacheCreationInputTokens: z.ZodNumber;
|
|
692
|
+
webSearchRequests: z.ZodNumber;
|
|
693
|
+
totalTokens: z.ZodNumber;
|
|
694
|
+
models: z.ZodArray<z.ZodString>;
|
|
695
|
+
}, z.core.$strip>>;
|
|
643
696
|
totalDuration: z.ZodNullable<z.ZodNumber>;
|
|
644
697
|
rootTaskId: z.ZodNullable<z.ZodString>;
|
|
645
698
|
parentTaskId: z.ZodNullable<z.ZodString>;
|
|
@@ -678,6 +731,7 @@ declare const UnarchiveTaskResponseSchema: z.ZodObject<{
|
|
|
678
731
|
agentId: z.ZodString;
|
|
679
732
|
machineId: z.ZodNullable<z.ZodString>;
|
|
680
733
|
cloudId: z.ZodNullable<z.ZodString>;
|
|
734
|
+
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
681
735
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
682
736
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
683
737
|
branchName: z.ZodNullable<z.ZodString>;
|
|
@@ -716,6 +770,15 @@ declare const UnarchiveTaskResponseSchema: z.ZodObject<{
|
|
|
716
770
|
deletions: z.ZodNumber;
|
|
717
771
|
}, z.core.$strip>>;
|
|
718
772
|
}, z.core.$strip>>;
|
|
773
|
+
usageSummary: z.ZodNullable<z.ZodObject<{
|
|
774
|
+
inputTokens: z.ZodNumber;
|
|
775
|
+
outputTokens: z.ZodNumber;
|
|
776
|
+
cacheReadInputTokens: z.ZodNumber;
|
|
777
|
+
cacheCreationInputTokens: z.ZodNumber;
|
|
778
|
+
webSearchRequests: z.ZodNumber;
|
|
779
|
+
totalTokens: z.ZodNumber;
|
|
780
|
+
models: z.ZodArray<z.ZodString>;
|
|
781
|
+
}, z.core.$strip>>;
|
|
719
782
|
totalDuration: z.ZodNullable<z.ZodNumber>;
|
|
720
783
|
rootTaskId: z.ZodNullable<z.ZodString>;
|
|
721
784
|
parentTaskId: z.ZodNullable<z.ZodString>;
|
|
@@ -756,6 +819,7 @@ declare const UpdateTaskTitleResponseSchema: z.ZodObject<{
|
|
|
756
819
|
agentId: z.ZodString;
|
|
757
820
|
machineId: z.ZodNullable<z.ZodString>;
|
|
758
821
|
cloudId: z.ZodNullable<z.ZodString>;
|
|
822
|
+
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
759
823
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
760
824
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
761
825
|
branchName: z.ZodNullable<z.ZodString>;
|
|
@@ -794,6 +858,15 @@ declare const UpdateTaskTitleResponseSchema: z.ZodObject<{
|
|
|
794
858
|
deletions: z.ZodNumber;
|
|
795
859
|
}, z.core.$strip>>;
|
|
796
860
|
}, z.core.$strip>>;
|
|
861
|
+
usageSummary: z.ZodNullable<z.ZodObject<{
|
|
862
|
+
inputTokens: z.ZodNumber;
|
|
863
|
+
outputTokens: z.ZodNumber;
|
|
864
|
+
cacheReadInputTokens: z.ZodNumber;
|
|
865
|
+
cacheCreationInputTokens: z.ZodNumber;
|
|
866
|
+
webSearchRequests: z.ZodNumber;
|
|
867
|
+
totalTokens: z.ZodNumber;
|
|
868
|
+
models: z.ZodArray<z.ZodString>;
|
|
869
|
+
}, z.core.$strip>>;
|
|
797
870
|
totalDuration: z.ZodNullable<z.ZodNumber>;
|
|
798
871
|
rootTaskId: z.ZodNullable<z.ZodString>;
|
|
799
872
|
parentTaskId: z.ZodNullable<z.ZodString>;
|
|
@@ -821,8 +894,8 @@ type SendMessageTarget = 'agent' | 'user';
|
|
|
821
894
|
declare const SendTaskMessageRequestSchema: z.ZodObject<{
|
|
822
895
|
message: z.ZodCustom<SDKUserMessage | SDKAssistantMessage, SDKUserMessage | SDKAssistantMessage>;
|
|
823
896
|
target: z.ZodEnum<{
|
|
824
|
-
agent: "agent";
|
|
825
897
|
user: "user";
|
|
898
|
+
agent: "agent";
|
|
826
899
|
}>;
|
|
827
900
|
fromTaskId: z.ZodOptional<z.ZodString>;
|
|
828
901
|
senderType: z.ZodEnum<{
|
|
@@ -1071,8 +1144,8 @@ declare const AskUserResponseStatusSchema: z.ZodEnum<{
|
|
|
1071
1144
|
cancelled: "cancelled";
|
|
1072
1145
|
}>;
|
|
1073
1146
|
declare const AskUserResponseReasonSchema: z.ZodEnum<{
|
|
1074
|
-
system: "system";
|
|
1075
1147
|
user: "user";
|
|
1148
|
+
system: "system";
|
|
1076
1149
|
timeout: "timeout";
|
|
1077
1150
|
}>;
|
|
1078
1151
|
type AskUserResponseStatus = z.infer<typeof AskUserResponseStatusSchema>;
|
|
@@ -1094,8 +1167,8 @@ declare const AskUserResponseMessageSchema: z.ZodObject<{
|
|
|
1094
1167
|
cancelled: "cancelled";
|
|
1095
1168
|
}>>;
|
|
1096
1169
|
reason: z.ZodOptional<z.ZodEnum<{
|
|
1097
|
-
system: "system";
|
|
1098
1170
|
user: "user";
|
|
1171
|
+
system: "system";
|
|
1099
1172
|
timeout: "timeout";
|
|
1100
1173
|
}>>;
|
|
1101
1174
|
}, z.core.$strip>;
|
|
@@ -1385,6 +1458,15 @@ declare const ChatWorkersStatusResponseSchema: z.ZodObject<{
|
|
|
1385
1458
|
}, z.core.$strip>>;
|
|
1386
1459
|
}, z.core.$strip>;
|
|
1387
1460
|
type ChatWorkersStatusResponseEventData = z.infer<typeof ChatWorkersStatusResponseSchema>;
|
|
1461
|
+
declare const ListModelsEventSchema: z.ZodObject<{
|
|
1462
|
+
eventId: z.ZodString;
|
|
1463
|
+
machineId: z.ZodString;
|
|
1464
|
+
agentType: z.ZodOptional<z.ZodEnum<{
|
|
1465
|
+
claude: "claude";
|
|
1466
|
+
codex: "codex";
|
|
1467
|
+
}>>;
|
|
1468
|
+
}, z.core.$strip>;
|
|
1469
|
+
type ListModelsEventData = z.infer<typeof ListModelsEventSchema>;
|
|
1388
1470
|
declare const baseTaskSchema: z.ZodObject<{
|
|
1389
1471
|
eventId: z.ZodString;
|
|
1390
1472
|
taskId: z.ZodString;
|
|
@@ -1750,6 +1832,31 @@ declare const TaskMessageSchema: z.ZodObject<{
|
|
|
1750
1832
|
navigateToTaskId: z.ZodOptional<z.ZodString>;
|
|
1751
1833
|
}, z.core.$strip>;
|
|
1752
1834
|
type TaskMessageEventData = z.infer<typeof TaskMessageSchema>;
|
|
1835
|
+
declare const TaskModelUsageSchema: z.ZodObject<{
|
|
1836
|
+
inputTokens: z.ZodDefault<z.ZodNumber>;
|
|
1837
|
+
outputTokens: z.ZodDefault<z.ZodNumber>;
|
|
1838
|
+
cacheReadInputTokens: z.ZodDefault<z.ZodNumber>;
|
|
1839
|
+
cacheCreationInputTokens: z.ZodDefault<z.ZodNumber>;
|
|
1840
|
+
webSearchRequests: z.ZodDefault<z.ZodNumber>;
|
|
1841
|
+
}, z.core.$strip>;
|
|
1842
|
+
type TaskModelUsage = z.infer<typeof TaskModelUsageSchema>;
|
|
1843
|
+
/**
|
|
1844
|
+
* Worker -> API usage report.
|
|
1845
|
+
* Sent separately from result messages so encrypted task results can remain opaque.
|
|
1846
|
+
*/
|
|
1847
|
+
declare const TaskUsageReportEventSchema: z.ZodObject<{
|
|
1848
|
+
eventId: z.ZodString;
|
|
1849
|
+
taskId: z.ZodString;
|
|
1850
|
+
resultEventId: z.ZodString;
|
|
1851
|
+
modelUsage: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1852
|
+
inputTokens: z.ZodDefault<z.ZodNumber>;
|
|
1853
|
+
outputTokens: z.ZodDefault<z.ZodNumber>;
|
|
1854
|
+
cacheReadInputTokens: z.ZodDefault<z.ZodNumber>;
|
|
1855
|
+
cacheCreationInputTokens: z.ZodDefault<z.ZodNumber>;
|
|
1856
|
+
webSearchRequests: z.ZodDefault<z.ZodNumber>;
|
|
1857
|
+
}, z.core.$strip>>;
|
|
1858
|
+
}, z.core.$strip>;
|
|
1859
|
+
type TaskUsageReportEventData = z.infer<typeof TaskUsageReportEventSchema>;
|
|
1753
1860
|
/**
|
|
1754
1861
|
* Task state type
|
|
1755
1862
|
*/
|
|
@@ -2068,6 +2175,85 @@ declare const DeployAgentCompleteEventSchema: z.ZodObject<{
|
|
|
2068
2175
|
supportLocal: z.ZodOptional<z.ZodBoolean>;
|
|
2069
2176
|
}, z.core.$strip>;
|
|
2070
2177
|
type DeployAgentCompleteEventData = z.infer<typeof DeployAgentCompleteEventSchema>;
|
|
2178
|
+
/**
|
|
2179
|
+
* Hive publish event (API → machine/CLI)
|
|
2180
|
+
* Triggers git push of agent/skill to hive repository
|
|
2181
|
+
*/
|
|
2182
|
+
declare const HivePublishEventSchema: z.ZodObject<{
|
|
2183
|
+
eventId: z.ZodString;
|
|
2184
|
+
taskId: z.ZodString;
|
|
2185
|
+
userId: z.ZodString;
|
|
2186
|
+
machineId: z.ZodOptional<z.ZodString>;
|
|
2187
|
+
cloudId: z.ZodOptional<z.ZodString>;
|
|
2188
|
+
type: z.ZodEnum<{
|
|
2189
|
+
agent: "agent";
|
|
2190
|
+
skill: "skill";
|
|
2191
|
+
}>;
|
|
2192
|
+
sourceDir: z.ZodString;
|
|
2193
|
+
name: z.ZodString;
|
|
2194
|
+
displayName: z.ZodString;
|
|
2195
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2196
|
+
readme: z.ZodOptional<z.ZodString>;
|
|
2197
|
+
version: z.ZodString;
|
|
2198
|
+
repoDir: z.ZodString;
|
|
2199
|
+
gitUrl: z.ZodString;
|
|
2200
|
+
environmentVariables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2201
|
+
}, z.core.$strip>;
|
|
2202
|
+
type HivePublishEventData = z.infer<typeof HivePublishEventSchema>;
|
|
2203
|
+
/**
|
|
2204
|
+
* Hive publish complete event (CLI → API)
|
|
2205
|
+
* Sent when hive publish completes (success or failure)
|
|
2206
|
+
*/
|
|
2207
|
+
declare const HivePublishCompleteEventSchema: z.ZodObject<{
|
|
2208
|
+
eventId: z.ZodString;
|
|
2209
|
+
taskId: z.ZodString;
|
|
2210
|
+
success: z.ZodBoolean;
|
|
2211
|
+
error: z.ZodOptional<z.ZodString>;
|
|
2212
|
+
gitCommitHash: z.ZodOptional<z.ZodString>;
|
|
2213
|
+
hasChanges: z.ZodOptional<z.ZodBoolean>;
|
|
2214
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2215
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2216
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
2217
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2218
|
+
readme: z.ZodOptional<z.ZodString>;
|
|
2219
|
+
repoDir: z.ZodOptional<z.ZodString>;
|
|
2220
|
+
reviewReasons: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2221
|
+
}, z.core.$strip>;
|
|
2222
|
+
type HivePublishCompleteEventData = z.infer<typeof HivePublishCompleteEventSchema>;
|
|
2223
|
+
/**
|
|
2224
|
+
* Hive install event (API → machine/CLI)
|
|
2225
|
+
* Triggers cloning of agent/skill from hive repository to local machine
|
|
2226
|
+
*/
|
|
2227
|
+
declare const HiveInstallEventSchema: z.ZodObject<{
|
|
2228
|
+
eventId: z.ZodString;
|
|
2229
|
+
taskId: z.ZodString;
|
|
2230
|
+
userId: z.ZodString;
|
|
2231
|
+
machineId: z.ZodOptional<z.ZodString>;
|
|
2232
|
+
cloudId: z.ZodOptional<z.ZodString>;
|
|
2233
|
+
hiveListingId: z.ZodString;
|
|
2234
|
+
name: z.ZodString;
|
|
2235
|
+
sourceType: z.ZodOptional<z.ZodEnum<{
|
|
2236
|
+
agent: "agent";
|
|
2237
|
+
skill: "skill";
|
|
2238
|
+
}>>;
|
|
2239
|
+
sourceRepoDir: z.ZodString;
|
|
2240
|
+
gitUrl: z.ZodString;
|
|
2241
|
+
draftAgentDir: z.ZodString;
|
|
2242
|
+
installDir: z.ZodOptional<z.ZodString>;
|
|
2243
|
+
}, z.core.$strip>;
|
|
2244
|
+
type HiveInstallEventData = z.infer<typeof HiveInstallEventSchema>;
|
|
2245
|
+
/**
|
|
2246
|
+
* Hive install complete event (CLI → API)
|
|
2247
|
+
* Sent when hive install clone completes (success or failure)
|
|
2248
|
+
*/
|
|
2249
|
+
declare const HiveInstallCompleteEventSchema: z.ZodObject<{
|
|
2250
|
+
eventId: z.ZodString;
|
|
2251
|
+
taskId: z.ZodString;
|
|
2252
|
+
success: z.ZodBoolean;
|
|
2253
|
+
agentDir: z.ZodOptional<z.ZodString>;
|
|
2254
|
+
error: z.ZodOptional<z.ZodString>;
|
|
2255
|
+
}, z.core.$strip>;
|
|
2256
|
+
type HiveInstallCompleteEventData = z.infer<typeof HiveInstallCompleteEventSchema>;
|
|
2071
2257
|
declare const AssociateRepoEventDataSchema: z.ZodObject<{
|
|
2072
2258
|
eventId: z.ZodString;
|
|
2073
2259
|
taskId: z.ZodString;
|
|
@@ -2089,7 +2275,7 @@ type AssociateRepoEventData = z.infer<typeof AssociateRepoEventDataSchema>;
|
|
|
2089
2275
|
/**
|
|
2090
2276
|
* System message type
|
|
2091
2277
|
*/
|
|
2092
|
-
type SystemMessageType = "machine-online" | "machine-offline" | "chat-added" | "chat-removed" | "chat-member-added" | "chat-member-removed" | "repo-added" | "repo-removed" | "pr-state-changed" | "draft-agent-added" | "agent-updated";
|
|
2278
|
+
type SystemMessageType = "machine-online" | "machine-offline" | "chat-added" | "chat-removed" | "chat-member-added" | "chat-member-removed" | "repo-added" | "repo-removed" | "repo-inbox-updated" | "pr-state-changed" | "draft-agent-added" | "agent-updated";
|
|
2093
2279
|
/**
|
|
2094
2280
|
* PR state changed schema
|
|
2095
2281
|
*/
|
|
@@ -2127,6 +2313,7 @@ declare const SystemMessageSchema: z.ZodObject<{
|
|
|
2127
2313
|
"chat-member-removed": "chat-member-removed";
|
|
2128
2314
|
"repo-added": "repo-added";
|
|
2129
2315
|
"repo-removed": "repo-removed";
|
|
2316
|
+
"repo-inbox-updated": "repo-inbox-updated";
|
|
2130
2317
|
"pr-state-changed": "pr-state-changed";
|
|
2131
2318
|
"draft-agent-added": "draft-agent-added";
|
|
2132
2319
|
"agent-updated": "agent-updated";
|
|
@@ -2242,6 +2429,9 @@ declare const SystemMessageSchema: z.ZodObject<{
|
|
|
2242
2429
|
}, z.core.$strip>>;
|
|
2243
2430
|
publishedAgentId: z.ZodNullable<z.ZodString>;
|
|
2244
2431
|
sourceTaskId: z.ZodNullable<z.ZodString>;
|
|
2432
|
+
gitRepoUrl: z.ZodNullable<z.ZodString>;
|
|
2433
|
+
repoDir: z.ZodNullable<z.ZodString>;
|
|
2434
|
+
installedFromHiveId: z.ZodNullable<z.ZodString>;
|
|
2245
2435
|
createdAt: z.ZodString;
|
|
2246
2436
|
updatedAt: z.ZodString;
|
|
2247
2437
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -2310,6 +2500,7 @@ declare const SystemMessageSchema: z.ZodObject<{
|
|
|
2310
2500
|
agentId: z.ZodString;
|
|
2311
2501
|
machineId: z.ZodNullable<z.ZodString>;
|
|
2312
2502
|
cloudId: z.ZodNullable<z.ZodString>;
|
|
2503
|
+
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2313
2504
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
2314
2505
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
2315
2506
|
branchName: z.ZodNullable<z.ZodString>;
|
|
@@ -2348,6 +2539,15 @@ declare const SystemMessageSchema: z.ZodObject<{
|
|
|
2348
2539
|
deletions: z.ZodNumber;
|
|
2349
2540
|
}, z.core.$strip>>;
|
|
2350
2541
|
}, z.core.$strip>>;
|
|
2542
|
+
usageSummary: z.ZodNullable<z.ZodObject<{
|
|
2543
|
+
inputTokens: z.ZodNumber;
|
|
2544
|
+
outputTokens: z.ZodNumber;
|
|
2545
|
+
cacheReadInputTokens: z.ZodNumber;
|
|
2546
|
+
cacheCreationInputTokens: z.ZodNumber;
|
|
2547
|
+
webSearchRequests: z.ZodNumber;
|
|
2548
|
+
totalTokens: z.ZodNumber;
|
|
2549
|
+
models: z.ZodArray<z.ZodString>;
|
|
2550
|
+
}, z.core.$strip>>;
|
|
2351
2551
|
totalDuration: z.ZodNullable<z.ZodNumber>;
|
|
2352
2552
|
rootTaskId: z.ZodNullable<z.ZodString>;
|
|
2353
2553
|
parentTaskId: z.ZodNullable<z.ZodString>;
|
|
@@ -2409,6 +2609,26 @@ declare const DaemonGitlabResponseSchema: z.ZodObject<{
|
|
|
2409
2609
|
executionTimeMs: z.ZodNumber;
|
|
2410
2610
|
}, z.core.$strip>;
|
|
2411
2611
|
type DaemonGitlabResponseEventData = z.infer<typeof DaemonGitlabResponseSchema>;
|
|
2612
|
+
declare const RepositoryInboxProviderSchema: z.ZodEnum<{
|
|
2613
|
+
gitlab: "gitlab";
|
|
2614
|
+
github: "github";
|
|
2615
|
+
}>;
|
|
2616
|
+
/**
|
|
2617
|
+
* Daemon → API: repository webhook payload received by the local daemon.
|
|
2618
|
+
* API normalizes provider payloads and applies repository inbox commands.
|
|
2619
|
+
*/
|
|
2620
|
+
declare const RepositoryInboxWebhookSchema: z.ZodObject<{
|
|
2621
|
+
eventId: z.ZodString;
|
|
2622
|
+
provider: z.ZodEnum<{
|
|
2623
|
+
gitlab: "gitlab";
|
|
2624
|
+
github: "github";
|
|
2625
|
+
}>;
|
|
2626
|
+
gitServerId: z.ZodString;
|
|
2627
|
+
deliveryId: z.ZodOptional<z.ZodString>;
|
|
2628
|
+
eventType: z.ZodOptional<z.ZodString>;
|
|
2629
|
+
payload: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
2630
|
+
}, z.core.$strip>;
|
|
2631
|
+
type RepositoryInboxWebhookEventData = z.infer<typeof RepositoryInboxWebhookSchema>;
|
|
2412
2632
|
declare const CompanionHeartbeatRequestSchema: z.ZodObject<{
|
|
2413
2633
|
eventId: z.ZodString;
|
|
2414
2634
|
machineId: z.ZodString;
|
|
@@ -2444,7 +2664,7 @@ declare const ResetTaskSessionSchema: z.ZodObject<{
|
|
|
2444
2664
|
taskId: z.ZodString;
|
|
2445
2665
|
}, z.core.$strip>;
|
|
2446
2666
|
type ResetTaskSessionEventData = z.infer<typeof ResetTaskSessionSchema>;
|
|
2447
|
-
type EventData = AppAliveEventData | ApiServerAliveEventData | MachineAliveEventData | ShutdownMachineData | WorkerInitializingEventData | WorkerInitializedEventData | WorkerReadyEventData | WorkerAliveEventData | WorkerExitEventData | WorkerRunningEventData | WorkerPermissionModeEventData | WorkerStatusRequestEventData | ChatWorkersStatusRequestEventData | ChatWorkersStatusResponseEventData | CreateTaskEventData | ResumeTaskEventData | CancelTaskEventData | StopTaskEventData | TaskMessageEventData | ChangeTaskTitleEventData | TaskStateChangeEventData | UpdateTaskAgentSessionIdEventData | TaskInfoUpdateEventData | TaskSlashCommandsUpdateEventData | MergeRequestEventData | TaskStoppedEventData | SubTaskResultUpdatedEventData | SubTaskAskUserEventData | SystemMessageEventData | CreditExhaustedEventData | RtcIceServersRequestEventData | RtcIceServersResponseEventData | MachineRtcRequestEventData | MachineRtcResponseEventData | RtcSignalEventData | WorkspaceFileRequestEventData | WorkspaceFileResponseEventData | UpdateAgentInfoEventData | DaemonGitlabRequestEventData | DaemonGitlabResponseEventData | CompanionHeartbeatRequestData | CompanionHeartbeatResponseData | CompanionInitRequestData | CompanionInitResponseData | ResetTaskSessionEventData | SeqSyncRequestEventData | SeqSyncResponseEventData;
|
|
2667
|
+
type EventData = AppAliveEventData | ApiServerAliveEventData | MachineAliveEventData | ShutdownMachineData | WorkerInitializingEventData | WorkerInitializedEventData | WorkerReadyEventData | WorkerAliveEventData | WorkerExitEventData | WorkerRunningEventData | WorkerPermissionModeEventData | WorkerStatusRequestEventData | ChatWorkersStatusRequestEventData | ChatWorkersStatusResponseEventData | CreateTaskEventData | ResumeTaskEventData | CancelTaskEventData | StopTaskEventData | TaskMessageEventData | ChangeTaskTitleEventData | TaskStateChangeEventData | UpdateTaskAgentSessionIdEventData | TaskInfoUpdateEventData | TaskSlashCommandsUpdateEventData | MergeRequestEventData | TaskStoppedEventData | SubTaskResultUpdatedEventData | SubTaskAskUserEventData | SystemMessageEventData | CreditExhaustedEventData | RtcIceServersRequestEventData | RtcIceServersResponseEventData | MachineRtcRequestEventData | MachineRtcResponseEventData | RtcSignalEventData | WorkspaceFileRequestEventData | WorkspaceFileResponseEventData | UpdateAgentInfoEventData | DaemonGitlabRequestEventData | DaemonGitlabResponseEventData | CompanionHeartbeatRequestData | CompanionHeartbeatResponseData | CompanionInitRequestData | CompanionInitResponseData | ResetTaskSessionEventData | HiveInstallEventData | HiveInstallCompleteEventData | SeqSyncRequestEventData | SeqSyncResponseEventData;
|
|
2448
2668
|
declare const SeqSyncRequestEventDataSchema: z.ZodObject<{
|
|
2449
2669
|
eventId: z.ZodString;
|
|
2450
2670
|
tasks: z.ZodArray<z.ZodObject<{
|
|
@@ -2465,6 +2685,7 @@ type EventMap = {
|
|
|
2465
2685
|
"app-alive": AppAliveEventData;
|
|
2466
2686
|
"api-server-alive": ApiServerAliveEventData;
|
|
2467
2687
|
"machine-alive": MachineAliveEventData;
|
|
2688
|
+
"list-models": ListModelsEventData;
|
|
2468
2689
|
"worker-initializing": WorkerInitializingEventData;
|
|
2469
2690
|
"worker-initialized": WorkerInitializedEventData;
|
|
2470
2691
|
"worker-ready": WorkerReadyEventData;
|
|
@@ -2480,6 +2701,7 @@ type EventMap = {
|
|
|
2480
2701
|
"cancel-task": CancelTaskEventData;
|
|
2481
2702
|
"stop-task": StopTaskEventData;
|
|
2482
2703
|
"task-message": TaskMessageEventData;
|
|
2704
|
+
"task-usage-report": TaskUsageReportEventData;
|
|
2483
2705
|
"change-task-title": ChangeTaskTitleEventData;
|
|
2484
2706
|
"task-state-change": TaskStateChangeEventData;
|
|
2485
2707
|
"update-task-agent-session-id": UpdateTaskAgentSessionIdEventData;
|
|
@@ -2490,6 +2712,10 @@ type EventMap = {
|
|
|
2490
2712
|
"merge-pr": MergePullRequestEventData;
|
|
2491
2713
|
"deploy-agent": DeployAgentEventData;
|
|
2492
2714
|
"deploy-agent-complete": DeployAgentCompleteEventData;
|
|
2715
|
+
"hive-publish": HivePublishEventData;
|
|
2716
|
+
"hive-publish-complete": HivePublishCompleteEventData;
|
|
2717
|
+
"hive-install": HiveInstallEventData;
|
|
2718
|
+
"hive-install-complete": HiveInstallCompleteEventData;
|
|
2493
2719
|
"task-stopped": TaskStoppedEventData;
|
|
2494
2720
|
"sub-task-result-updated": SubTaskResultUpdatedEventData;
|
|
2495
2721
|
"sub-task-ask-user": SubTaskAskUserEventData;
|
|
@@ -2507,6 +2733,7 @@ type EventMap = {
|
|
|
2507
2733
|
"rpc-call": RpcCallEventData;
|
|
2508
2734
|
"daemon-gitlab-request": DaemonGitlabRequestEventData;
|
|
2509
2735
|
"daemon-gitlab-response": DaemonGitlabResponseEventData;
|
|
2736
|
+
"repository-inbox-webhook": RepositoryInboxWebhookEventData;
|
|
2510
2737
|
"request-companion-heartbeat": CompanionHeartbeatRequestData;
|
|
2511
2738
|
"companion-heartbeat-response": CompanionHeartbeatResponseData;
|
|
2512
2739
|
"request-companion-init": CompanionInitRequestData;
|
|
@@ -2521,7 +2748,7 @@ declare const EventSchemaMap: Record<EventName, z.ZodType<any>>;
|
|
|
2521
2748
|
/**
|
|
2522
2749
|
* only sent by worker and which need to send to human in chat room
|
|
2523
2750
|
*/
|
|
2524
|
-
type WorkerTaskEvent = "worker-initializing" | "worker-initialized" | "worker-ready" | "worker-exit" | "worker-running" | "worker-permission-mode" | "change-task-title" | "update-task-agent-session-id" | "task-slash-commands-update" | "reset-task-session" | "merge-request" | "merge-pr" | "associate-repo" | "update-agent-info";
|
|
2751
|
+
type WorkerTaskEvent = "worker-initializing" | "worker-initialized" | "worker-ready" | "worker-exit" | "worker-running" | "worker-permission-mode" | "change-task-title" | "update-task-agent-session-id" | "task-slash-commands-update" | "task-usage-report" | "reset-task-session" | "merge-request" | "merge-pr" | "associate-repo" | "update-agent-info";
|
|
2525
2752
|
declare const workerTaskEvents: WorkerTaskEvent[];
|
|
2526
2753
|
|
|
2527
2754
|
/**
|
|
@@ -2967,5 +3194,5 @@ declare class MissingAgentFileError extends AgentError {
|
|
|
2967
3194
|
constructor(filePath: string);
|
|
2968
3195
|
}
|
|
2969
3196
|
|
|
2970
|
-
export {
|
|
2971
|
-
export type {
|
|
3197
|
+
export { FillEventsRequestSchema as $, StopTaskRequestSchema as A, CancelTaskRequestSchema as C, DEFAULT_WORKER_EXECUTION_MODE as D, EnsureIssueRootTaskRequestSchema as E, stopTaskRequestSchema as F, StopTaskResponseSchema as G, PermissionResponseRequestSchema as I, permissionResponseRequestSchema as K, ListTasksRequestSchema as L, PermissionResponseResponseSchema as M, ProjectEntrySchema as O, ResumeTaskRequestSchema as R, StartTaskRequestSchema as S, TaskTodoSchema as T, ProjectDirectoryResponseSchema as U, QueryEventsRequestSchema as X, WorkerExecutionModeSchema as a, CreateMergeRequestSchema as a2, createMergeRequestSchema as a4, CreateMergeRequestResponseSchema as a5, ApprovePrRequestSchema as a7, ApprovePrResponseSchema as a9, GetTaskSessionResponseSchema as aA, ListSubTasksRequestSchema as aC, SubTaskSummarySchema as aE, ListSubTasksResponseSchema as aG, ListRecentTasksRequestSchema as aI, RecentTaskSummarySchema as aK, ListRecentTasksResponseSchema as aM, FindTaskByAgentRequestSchema as aO, FindTaskByAgentResponseSchema as aQ, AskUserOptionSchema as aS, AskUserQuestionSchema as aU, AskUserMessageSchema as aW, AskUserResponseStatusSchema as aY, AskUserResponseReasonSchema as aZ, CreateTaskShareSchema as ab, CreateTaskShareResponseSchema as ad, ArchiveTaskRequestSchema as af, ArchiveTaskResponseSchema as ah, UnarchiveTaskRequestSchema as aj, UnarchiveTaskResponseSchema as al, UpdateTaskTitleRequestSchema as an, UpdateTaskTitleResponseSchema as ap, SendTaskMessageRequestSchema as as, SendTaskMessageResponseSchema as au, ShowModalRequestSchema as aw, ShowModalResponseSchema as ay, StopTaskSchema as b$, AskUserResponseMessageSchema as b0, TaskAgentInfoSchema as b6, isAskUserMessage as b8, isAskUserResponseMessage as b9, WorkerAliveEventSchema as bA, WorkerExitSchema as bC, WorkerRunningSchema as bE, WorkerPermissionModeSchema as bG, WorkerStatusRequestSchema as bI, WorkerStatusValueSchema as bK, WorkerStatusSnapshotSchema as bM, ChatWorkersStatusRequestSchema as bO, ChatWorkersStatusResponseSchema as bQ, ListModelsEventSchema as bS, baseTaskSchema as bU, createTaskSchema as bV, resumeTaskSchema as bX, cancelTaskSchema as bZ, isCompanionHeartbeatMessage as ba, isCompanionReminderMessage as bb, isSubTaskAskUserMessage as bc, isSDKMessage as bd, isSDKUserMessage as be, createEventId as bf, EventAckSchema as bg, AppAliveEventSchema as bi, ApiServerAliveEventSchema as bk, MachineAliveEventSchema as bm, ShutdownMachineSchema as bo, WorkerInitializingSchema as bq, WorkerInitializedSchema as bs, WorkerPermissionModeValueSchema as bu, WorkerReadySchema as bw, ActiveAgentSchema as by, TaskUsageSummarySchema as c, TaskArtifactsStatsSchema as c1, PreviewProjectTypeSchema as c3, PreviewMethodSchema as c5, PreviewMetadataSchema as c7, TaskArtifactsSummarySchema as c8, WorkspaceFileRequestSchema as cB, WorkspaceFileResponseSchema as cD, UpdateTaskAgentSessionIdEventSchema as cF, TaskInfoUpdateEventDataSchema as cH, TaskSlashCommandSchema as cJ, TaskSlashCommandsUpdateEventDataSchema as cL, MergeRequestEventSchema as cN, TaskStoppedEventSchema as cP, SubTaskResultUpdatedEventSchema as cR, SubTaskAskUserEventSchema as cT, MergePullRequestEventSchema as cV, DeployAgentEventSchema as cY, DeployAgentCompleteEventSchema as c_, TaskMessageSchema as ca, TaskModelUsageSchema as cc, TaskUsageReportEventSchema as ce, ShowModalEventDataSchema as ch, ChangeTaskTitleEventSchema as cj, TaskStateChangeEventSchema as cl, CreditExhaustedEventSchema as cn, RtcIceServerSchema as cp, RtcIceServersRequestSchema as cr, RtcIceServersResponseSchema as ct, MachineRtcRequestSchema as cv, MachineRtcResponseSchema as cx, RtcSignalSchema as cz, AgentMetadataSchema as d$, HivePublishEventSchema as d0, HivePublishCompleteEventSchema as d2, HiveInstallEventSchema as d4, HiveInstallCompleteEventSchema as d6, AssociateRepoEventDataSchema as d8, UpdateAgentInfoEventSchema as d9, SeqSyncRequestEventDataSchema as dB, SeqSyncResponseEventDataSchema as dD, EventSchemaMap as dH, workerTaskEvents as dJ, RpcCallEventSchema as dK, RpcResponseSchema as dM, setAgentContext as dQ, getAgentContext as dR, FRAMEWORK_TYPES as d_, SystemMessageSchema as de, DaemonGitlabOperationSchema as dg, DaemonGitlabRequestSchema as di, DaemonGitlabResponseSchema as dk, RepositoryInboxProviderSchema as dm, RepositoryInboxWebhookSchema as dn, CompanionHeartbeatRequestSchema as dq, CompanionHeartbeatResponseSchema as ds, CompanionInitRequestSchema as du, CompanionInitResponseSchema as dw, ResetTaskSessionSchema as dy, ClaudeConfigSchema as e0, AgentError as e1, AgentNotFoundError as e2, AgentConfigValidationError as e3, FrameworkNotSupportedError as e4, AgentLoadError as e5, MissingAgentFileError as e6, StartTaskResponseSchema as f, TaskItemSchema as i, EnsureIssueRootTaskResponseSchema as k, normalizeWorkerExecutionMode as n, ListTasksResponseSchema as o, resumeTaskRequestSchema as r, startTaskSchema as s, ResumeTaskResponseSchema as t, workerExecutionModes as w, cancelTaskRequestSchema as x, CancelTaskResponseSchema as y };
|
|
3198
|
+
export type { StopTaskRequest as B, StopTaskResponse as H, PermissionResponseRequest as J, PermissionResponseResponse as N, PreviewMetadata as P, ProjectEntry as Q, ProjectDirectoryResponse as V, WorkerExecutionMode as W, QueryEventsRequest as Y, TaskEvent as Z, QueryEventsResponse as _, AskUserResponseReason as a$, FillEventsRequest as a0, FillEventsResponse as a1, CreateMergeRequestRequest as a3, CreateMergeRequestResponse as a6, ApprovePrRequest as a8, GetTaskSessionResponse as aB, ListSubTasksRequest as aD, SubTaskSummary as aF, ListSubTasksResponse as aH, ListRecentTasksRequest as aJ, RecentTaskSummary as aL, ListRecentTasksResponse as aN, FindTaskByAgentRequest as aP, FindTaskByAgentResponse as aR, AskUserOption as aT, AskUserQuestion as aV, AskUserMessage as aX, AskUserResponseStatus as a_, ApprovePrResponse as aa, CreateTaskShareRequest as ac, CreateTaskShareResponse as ae, ArchiveTaskRequest as ag, ArchiveTaskResponse as ai, UnarchiveTaskRequest as ak, UnarchiveTaskResponse as am, UpdateTaskTitleRequest as ao, UpdateTaskTitleResponse as aq, SendMessageTarget as ar, SendTaskMessageRequest as at, SendTaskMessageResponse as av, ShowModalRequest as ax, ShowModalResponse as az, TaskTodo as b, AskUserResponseMessage as b1, CompanionHeartbeatMessage as b2, CompanionReminderMessage as b3, SubTaskAskUserMessage as b4, TaskMessagePayload as b5, TaskAgentInfo as b7, WorkerAliveEventData as bB, WorkerExitEventData as bD, WorkerRunningEventData as bF, WorkerPermissionModeEventData as bH, WorkerStatusRequestEventData as bJ, WorkerStatusValue as bL, WorkerStatusSnapshot as bN, ChatWorkersStatusRequestEventData as bP, ChatWorkersStatusResponseEventData as bR, ListModelsEventData as bT, CreateTaskEventData as bW, ResumeTaskEventData as bY, CancelTaskEventData as b_, EventAckData as bh, AppAliveEventData as bj, ApiServerAliveEventData as bl, MachineAliveEventData as bn, ShutdownMachineData as bp, WorkerInitializingEventData as br, WorkerInitializedEventData as bt, WorkerPermissionModeValue as bv, WorkerReadyEventData as bx, ActiveAgent as bz, DeployAgentCompleteEventData as c$, StopTaskEventData as c0, TaskArtifactsStats as c2, PreviewProjectType as c4, PreviewMethod as c6, TaskArtifactsSummary as c9, RtcSignalEventData as cA, WorkspaceFileRequestEventData as cC, WorkspaceFileResponseEventData as cE, UpdateTaskAgentSessionIdEventData as cG, TaskInfoUpdateEventData as cI, TaskSlashCommand as cK, TaskSlashCommandsUpdateEventData as cM, MergeRequestEventData as cO, TaskStoppedEventData as cQ, SubTaskResultUpdatedEventData as cS, SubTaskAskUserEventData as cU, MergePullRequestEventData as cW, MergePullRequestAck as cX, DeployAgentEventData as cZ, TaskMessageEventData as cb, TaskModelUsage as cd, TaskUsageReportEventData as cf, TaskState as cg, ShowModalEventData as ci, ChangeTaskTitleEventData as ck, TaskStateChangeEventData as cm, CreditExhaustedEventData as co, RtcIceServer as cq, RtcIceServersRequestEventData as cs, RtcIceServersResponseEventData as cu, MachineRtcRequestEventData as cw, MachineRtcResponseEventData as cy, TaskUsageSummary as d, HivePublishEventData as d1, HivePublishCompleteEventData as d3, HiveInstallEventData as d5, HiveInstallCompleteEventData as d7, EventData as dA, SeqSyncRequestEventData as dC, SeqSyncResponseEventData as dE, EventMap as dF, EventName as dG, WorkerTaskEvent as dI, RpcCallEventData as dL, RpcResponseData as dN, AgentContext as dO, AgentrixContext as dP, FrameworkType as dS, AgentMetadata as dT, ClaudeAgentConfig as dU, AgentConfig as dV, ValidationResult as dW, LoadAgentOptions as dX, RepositoryInitHookInput as dY, HookFactory as dZ, UpdateAgentInfoEventData as da, AssociateRepoEventData as db, SystemMessageType as dc, PrStateChangedData as dd, SystemMessageEventData as df, DaemonGitlabOperation as dh, DaemonGitlabRequestEventData as dj, DaemonGitlabResponseEventData as dl, RepositoryInboxWebhookEventData as dp, CompanionHeartbeatRequestData as dr, CompanionHeartbeatResponseData as dt, CompanionInitRequestData as dv, CompanionInitResponseData as dx, ResetTaskSessionEventData as dz, StartTaskRequest as e, StartTaskResponse as g, EnsureIssueRootTaskRequest as h, TaskItem as j, EnsureIssueRootTaskResponse as l, ListTasksRequest as m, ListTasksResponse as p, ResumeTaskRequest as q, ResumeTaskResponse as u, CancelTaskRequest as v, CancelTaskResponse as z };
|