@agentrix/shared 2.8.2 → 2.12.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-VhyN-E3X.d.cts → errors-B6LhjViV.d.cts} +72 -9
- package/dist/index.cjs +273 -4
- package/dist/index.d.cts +574 -7
- package/dist/node.d.cts +2 -2
- package/package.json +1 -1
|
@@ -7,6 +7,14 @@ import { z } from 'zod';
|
|
|
7
7
|
* Extended with multi-agent collaboration support and custom task titles
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
|
+
declare const workerExecutionModes: readonly ["loop", "oneshot"];
|
|
11
|
+
type WorkerExecutionMode = (typeof workerExecutionModes)[number];
|
|
12
|
+
declare const DEFAULT_WORKER_EXECUTION_MODE: WorkerExecutionMode;
|
|
13
|
+
declare const WorkerExecutionModeSchema: z.ZodEnum<{
|
|
14
|
+
loop: "loop";
|
|
15
|
+
oneshot: "oneshot";
|
|
16
|
+
}>;
|
|
17
|
+
declare function normalizeWorkerExecutionMode(value: unknown): WorkerExecutionMode;
|
|
10
18
|
declare const TaskTodoSchema: z.ZodObject<{
|
|
11
19
|
agentId: z.ZodString;
|
|
12
20
|
title: z.ZodString;
|
|
@@ -27,6 +35,10 @@ declare const StartTaskRequestSchema: z.ZodObject<{
|
|
|
27
35
|
cloudId: z.ZodOptional<z.ZodString>;
|
|
28
36
|
repositoryId: z.ZodOptional<z.ZodString>;
|
|
29
37
|
baseBranch: z.ZodOptional<z.ZodString>;
|
|
38
|
+
workerExecutionMode: z.ZodOptional<z.ZodEnum<{
|
|
39
|
+
loop: "loop";
|
|
40
|
+
oneshot: "oneshot";
|
|
41
|
+
}>>;
|
|
30
42
|
repositorySourceType: z.ZodOptional<z.ZodEnum<{
|
|
31
43
|
temporary: "temporary";
|
|
32
44
|
directory: "directory";
|
|
@@ -58,6 +70,10 @@ declare const startTaskSchema: z.ZodObject<{
|
|
|
58
70
|
cloudId: z.ZodOptional<z.ZodString>;
|
|
59
71
|
repositoryId: z.ZodOptional<z.ZodString>;
|
|
60
72
|
baseBranch: z.ZodOptional<z.ZodString>;
|
|
73
|
+
workerExecutionMode: z.ZodOptional<z.ZodEnum<{
|
|
74
|
+
loop: "loop";
|
|
75
|
+
oneshot: "oneshot";
|
|
76
|
+
}>>;
|
|
61
77
|
repositorySourceType: z.ZodOptional<z.ZodEnum<{
|
|
62
78
|
temporary: "temporary";
|
|
63
79
|
directory: "directory";
|
|
@@ -91,6 +107,10 @@ declare const StartTaskResponseSchema: z.ZodObject<{
|
|
|
91
107
|
cloudId: z.ZodNullable<z.ZodString>;
|
|
92
108
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
93
109
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
110
|
+
workerExecutionMode: z.ZodEnum<{
|
|
111
|
+
loop: "loop";
|
|
112
|
+
oneshot: "oneshot";
|
|
113
|
+
}>;
|
|
94
114
|
title: z.ZodNullable<z.ZodString>;
|
|
95
115
|
customTitle: z.ZodNullable<z.ZodString>;
|
|
96
116
|
userCwd: z.ZodNullable<z.ZodString>;
|
|
@@ -132,6 +152,10 @@ declare const TaskItemSchema: z.ZodObject<{
|
|
|
132
152
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
133
153
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
134
154
|
branchName: z.ZodNullable<z.ZodString>;
|
|
155
|
+
workerExecutionMode: z.ZodEnum<{
|
|
156
|
+
loop: "loop";
|
|
157
|
+
oneshot: "oneshot";
|
|
158
|
+
}>;
|
|
135
159
|
title: z.ZodNullable<z.ZodString>;
|
|
136
160
|
customTitle: z.ZodNullable<z.ZodString>;
|
|
137
161
|
agentSessionId: z.ZodNullable<z.ZodString>;
|
|
@@ -194,6 +218,10 @@ declare const EnsureIssueRootTaskResponseSchema: z.ZodObject<{
|
|
|
194
218
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
195
219
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
196
220
|
branchName: z.ZodNullable<z.ZodString>;
|
|
221
|
+
workerExecutionMode: z.ZodEnum<{
|
|
222
|
+
loop: "loop";
|
|
223
|
+
oneshot: "oneshot";
|
|
224
|
+
}>;
|
|
197
225
|
title: z.ZodNullable<z.ZodString>;
|
|
198
226
|
customTitle: z.ZodNullable<z.ZodString>;
|
|
199
227
|
agentSessionId: z.ZodNullable<z.ZodString>;
|
|
@@ -270,6 +298,10 @@ declare const ListTasksResponseSchema: z.ZodObject<{
|
|
|
270
298
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
271
299
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
272
300
|
branchName: z.ZodNullable<z.ZodString>;
|
|
301
|
+
workerExecutionMode: z.ZodEnum<{
|
|
302
|
+
loop: "loop";
|
|
303
|
+
oneshot: "oneshot";
|
|
304
|
+
}>;
|
|
273
305
|
title: z.ZodNullable<z.ZodString>;
|
|
274
306
|
customTitle: z.ZodNullable<z.ZodString>;
|
|
275
307
|
agentSessionId: z.ZodNullable<z.ZodString>;
|
|
@@ -573,6 +605,10 @@ declare const ArchiveTaskResponseSchema: z.ZodObject<{
|
|
|
573
605
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
574
606
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
575
607
|
branchName: z.ZodNullable<z.ZodString>;
|
|
608
|
+
workerExecutionMode: z.ZodEnum<{
|
|
609
|
+
loop: "loop";
|
|
610
|
+
oneshot: "oneshot";
|
|
611
|
+
}>;
|
|
576
612
|
title: z.ZodNullable<z.ZodString>;
|
|
577
613
|
customTitle: z.ZodNullable<z.ZodString>;
|
|
578
614
|
agentSessionId: z.ZodNullable<z.ZodString>;
|
|
@@ -645,6 +681,10 @@ declare const UnarchiveTaskResponseSchema: z.ZodObject<{
|
|
|
645
681
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
646
682
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
647
683
|
branchName: z.ZodNullable<z.ZodString>;
|
|
684
|
+
workerExecutionMode: z.ZodEnum<{
|
|
685
|
+
loop: "loop";
|
|
686
|
+
oneshot: "oneshot";
|
|
687
|
+
}>;
|
|
648
688
|
title: z.ZodNullable<z.ZodString>;
|
|
649
689
|
customTitle: z.ZodNullable<z.ZodString>;
|
|
650
690
|
agentSessionId: z.ZodNullable<z.ZodString>;
|
|
@@ -719,6 +759,10 @@ declare const UpdateTaskTitleResponseSchema: z.ZodObject<{
|
|
|
719
759
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
720
760
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
721
761
|
branchName: z.ZodNullable<z.ZodString>;
|
|
762
|
+
workerExecutionMode: z.ZodEnum<{
|
|
763
|
+
loop: "loop";
|
|
764
|
+
oneshot: "oneshot";
|
|
765
|
+
}>;
|
|
722
766
|
title: z.ZodNullable<z.ZodString>;
|
|
723
767
|
customTitle: z.ZodNullable<z.ZodString>;
|
|
724
768
|
agentSessionId: z.ZodNullable<z.ZodString>;
|
|
@@ -1022,9 +1066,9 @@ declare const AskUserMessageSchema: z.ZodObject<{
|
|
|
1022
1066
|
}, z.core.$strip>;
|
|
1023
1067
|
type AskUserMessage = z.infer<typeof AskUserMessageSchema>;
|
|
1024
1068
|
declare const AskUserResponseStatusSchema: z.ZodEnum<{
|
|
1069
|
+
timeout: "timeout";
|
|
1025
1070
|
answered: "answered";
|
|
1026
1071
|
cancelled: "cancelled";
|
|
1027
|
-
timeout: "timeout";
|
|
1028
1072
|
}>;
|
|
1029
1073
|
declare const AskUserResponseReasonSchema: z.ZodEnum<{
|
|
1030
1074
|
system: "system";
|
|
@@ -1045,9 +1089,9 @@ declare const AskUserResponseMessageSchema: z.ZodObject<{
|
|
|
1045
1089
|
details: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1046
1090
|
rememberAnswers: z.ZodOptional<z.ZodArray<z.ZodBoolean>>;
|
|
1047
1091
|
status: z.ZodOptional<z.ZodEnum<{
|
|
1092
|
+
timeout: "timeout";
|
|
1048
1093
|
answered: "answered";
|
|
1049
1094
|
cancelled: "cancelled";
|
|
1050
|
-
timeout: "timeout";
|
|
1051
1095
|
}>>;
|
|
1052
1096
|
reason: z.ZodOptional<z.ZodEnum<{
|
|
1053
1097
|
system: "system";
|
|
@@ -1360,6 +1404,10 @@ declare const baseTaskSchema: z.ZodObject<{
|
|
|
1360
1404
|
api_base_url: z.ZodOptional<z.ZodString>;
|
|
1361
1405
|
api_key: z.ZodOptional<z.ZodString>;
|
|
1362
1406
|
maxTurns: z.ZodOptional<z.ZodNumber>;
|
|
1407
|
+
workerExecutionMode: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1408
|
+
loop: "loop";
|
|
1409
|
+
oneshot: "oneshot";
|
|
1410
|
+
}>>>;
|
|
1363
1411
|
repositoryId: z.ZodOptional<z.ZodString>;
|
|
1364
1412
|
repositorySourceType: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1365
1413
|
temporary: "temporary";
|
|
@@ -1391,6 +1439,7 @@ declare const baseTaskSchema: z.ZodObject<{
|
|
|
1391
1439
|
shadow: "shadow";
|
|
1392
1440
|
}>>>;
|
|
1393
1441
|
customTitle: z.ZodOptional<z.ZodString>;
|
|
1442
|
+
outputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1394
1443
|
agentGitUrl: z.ZodOptional<z.ZodString>;
|
|
1395
1444
|
agentGitSubDir: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1396
1445
|
}, z.core.$strip>;
|
|
@@ -1415,6 +1464,10 @@ declare const createTaskSchema: z.ZodObject<{
|
|
|
1415
1464
|
api_base_url: z.ZodOptional<z.ZodString>;
|
|
1416
1465
|
api_key: z.ZodOptional<z.ZodString>;
|
|
1417
1466
|
maxTurns: z.ZodOptional<z.ZodNumber>;
|
|
1467
|
+
workerExecutionMode: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1468
|
+
loop: "loop";
|
|
1469
|
+
oneshot: "oneshot";
|
|
1470
|
+
}>>>;
|
|
1418
1471
|
repositoryId: z.ZodOptional<z.ZodString>;
|
|
1419
1472
|
repositorySourceType: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1420
1473
|
temporary: "temporary";
|
|
@@ -1446,6 +1499,7 @@ declare const createTaskSchema: z.ZodObject<{
|
|
|
1446
1499
|
shadow: "shadow";
|
|
1447
1500
|
}>>>;
|
|
1448
1501
|
customTitle: z.ZodOptional<z.ZodString>;
|
|
1502
|
+
outputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1449
1503
|
agentGitUrl: z.ZodOptional<z.ZodString>;
|
|
1450
1504
|
agentGitSubDir: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1451
1505
|
event: z.ZodString;
|
|
@@ -1473,6 +1527,10 @@ declare const resumeTaskSchema: z.ZodObject<{
|
|
|
1473
1527
|
api_base_url: z.ZodOptional<z.ZodString>;
|
|
1474
1528
|
api_key: z.ZodOptional<z.ZodString>;
|
|
1475
1529
|
maxTurns: z.ZodOptional<z.ZodNumber>;
|
|
1530
|
+
workerExecutionMode: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1531
|
+
loop: "loop";
|
|
1532
|
+
oneshot: "oneshot";
|
|
1533
|
+
}>>>;
|
|
1476
1534
|
repositoryId: z.ZodOptional<z.ZodString>;
|
|
1477
1535
|
repositorySourceType: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1478
1536
|
temporary: "temporary";
|
|
@@ -1504,6 +1562,7 @@ declare const resumeTaskSchema: z.ZodObject<{
|
|
|
1504
1562
|
shadow: "shadow";
|
|
1505
1563
|
}>>>;
|
|
1506
1564
|
customTitle: z.ZodOptional<z.ZodString>;
|
|
1565
|
+
outputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1507
1566
|
agentGitUrl: z.ZodOptional<z.ZodString>;
|
|
1508
1567
|
agentGitSubDir: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1509
1568
|
agentSessionId: z.ZodString;
|
|
@@ -1544,10 +1603,10 @@ type TaskArtifactsStats = z.infer<typeof TaskArtifactsStatsSchema>;
|
|
|
1544
1603
|
*/
|
|
1545
1604
|
declare const PreviewProjectTypeSchema: z.ZodEnum<{
|
|
1546
1605
|
unknown: "unknown";
|
|
1606
|
+
html: "html";
|
|
1547
1607
|
react: "react";
|
|
1548
1608
|
vue: "vue";
|
|
1549
1609
|
vite: "vite";
|
|
1550
|
-
html: "html";
|
|
1551
1610
|
nextjs: "nextjs";
|
|
1552
1611
|
}>;
|
|
1553
1612
|
type PreviewProjectType = z.infer<typeof PreviewProjectTypeSchema>;
|
|
@@ -1568,10 +1627,10 @@ type PreviewMethod = z.infer<typeof PreviewMethodSchema>;
|
|
|
1568
1627
|
declare const PreviewMetadataSchema: z.ZodObject<{
|
|
1569
1628
|
projectType: z.ZodEnum<{
|
|
1570
1629
|
unknown: "unknown";
|
|
1630
|
+
html: "html";
|
|
1571
1631
|
react: "react";
|
|
1572
1632
|
vue: "vue";
|
|
1573
1633
|
vite: "vite";
|
|
1574
|
-
html: "html";
|
|
1575
1634
|
nextjs: "nextjs";
|
|
1576
1635
|
}>;
|
|
1577
1636
|
previewMethod: z.ZodEnum<{
|
|
@@ -1605,10 +1664,10 @@ declare const TaskArtifactsSummarySchema: z.ZodObject<{
|
|
|
1605
1664
|
preview: z.ZodNullable<z.ZodObject<{
|
|
1606
1665
|
projectType: z.ZodEnum<{
|
|
1607
1666
|
unknown: "unknown";
|
|
1667
|
+
html: "html";
|
|
1608
1668
|
react: "react";
|
|
1609
1669
|
vue: "vue";
|
|
1610
1670
|
vite: "vite";
|
|
1611
|
-
html: "html";
|
|
1612
1671
|
nextjs: "nextjs";
|
|
1613
1672
|
}>;
|
|
1614
1673
|
previewMethod: z.ZodEnum<{
|
|
@@ -1664,10 +1723,10 @@ declare const TaskMessageSchema: z.ZodObject<{
|
|
|
1664
1723
|
preview: z.ZodNullable<z.ZodObject<{
|
|
1665
1724
|
projectType: z.ZodEnum<{
|
|
1666
1725
|
unknown: "unknown";
|
|
1726
|
+
html: "html";
|
|
1667
1727
|
react: "react";
|
|
1668
1728
|
vue: "vue";
|
|
1669
1729
|
vite: "vite";
|
|
1670
|
-
html: "html";
|
|
1671
1730
|
nextjs: "nextjs";
|
|
1672
1731
|
}>;
|
|
1673
1732
|
previewMethod: z.ZodEnum<{
|
|
@@ -1913,10 +1972,10 @@ declare const SubTaskResultUpdatedEventSchema: z.ZodObject<{
|
|
|
1913
1972
|
preview: z.ZodNullable<z.ZodObject<{
|
|
1914
1973
|
projectType: z.ZodEnum<{
|
|
1915
1974
|
unknown: "unknown";
|
|
1975
|
+
html: "html";
|
|
1916
1976
|
react: "react";
|
|
1917
1977
|
vue: "vue";
|
|
1918
1978
|
vite: "vite";
|
|
1919
|
-
html: "html";
|
|
1920
1979
|
nextjs: "nextjs";
|
|
1921
1980
|
}>;
|
|
1922
1981
|
previewMethod: z.ZodEnum<{
|
|
@@ -2233,6 +2292,10 @@ declare const SystemMessageSchema: z.ZodObject<{
|
|
|
2233
2292
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
2234
2293
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
2235
2294
|
branchName: z.ZodNullable<z.ZodString>;
|
|
2295
|
+
workerExecutionMode: z.ZodEnum<{
|
|
2296
|
+
loop: "loop";
|
|
2297
|
+
oneshot: "oneshot";
|
|
2298
|
+
}>;
|
|
2236
2299
|
title: z.ZodNullable<z.ZodString>;
|
|
2237
2300
|
customTitle: z.ZodNullable<z.ZodString>;
|
|
2238
2301
|
agentSessionId: z.ZodNullable<z.ZodString>;
|
|
@@ -2876,5 +2939,5 @@ declare class MissingAgentFileError extends AgentError {
|
|
|
2876
2939
|
constructor(filePath: string);
|
|
2877
2940
|
}
|
|
2878
2941
|
|
|
2879
|
-
export {
|
|
2880
|
-
export type {
|
|
2942
|
+
export { stopTaskRequestSchema as A, StopTaskResponseSchema as B, CancelTaskRequestSchema as C, DEFAULT_WORKER_EXECUTION_MODE as D, EnsureIssueRootTaskRequestSchema as E, PermissionResponseRequestSchema as G, permissionResponseRequestSchema as I, PermissionResponseResponseSchema as J, ListTasksRequestSchema as L, ProjectEntrySchema as M, ProjectDirectoryResponseSchema as O, ResumeTaskRequestSchema as R, StartTaskRequestSchema as S, TaskTodoSchema as T, QueryEventsRequestSchema as U, FillEventsRequestSchema as Z, WorkerExecutionModeSchema as a, CreateMergeRequestSchema as a0, createMergeRequestSchema as a2, CreateMergeRequestResponseSchema as a3, ApprovePrRequestSchema as a5, ApprovePrResponseSchema as a7, CreateTaskShareSchema as a9, ListSubTasksRequestSchema as aA, SubTaskSummarySchema as aC, ListSubTasksResponseSchema as aE, ListRecentTasksRequestSchema as aG, RecentTaskSummarySchema as aI, ListRecentTasksResponseSchema as aK, FindTaskByAgentRequestSchema as aM, FindTaskByAgentResponseSchema as aO, AskUserOptionSchema as aQ, AskUserQuestionSchema as aS, AskUserMessageSchema as aU, AskUserResponseStatusSchema as aW, AskUserResponseReasonSchema as aX, AskUserResponseMessageSchema as a_, CreateTaskShareResponseSchema as ab, ArchiveTaskRequestSchema as ad, ArchiveTaskResponseSchema as af, UnarchiveTaskRequestSchema as ah, UnarchiveTaskResponseSchema as aj, UpdateTaskTitleRequestSchema as al, UpdateTaskTitleResponseSchema as an, SendTaskMessageRequestSchema as aq, SendTaskMessageResponseSchema as as, ShowModalRequestSchema as au, ShowModalResponseSchema as aw, GetTaskSessionResponseSchema as ay, PreviewProjectTypeSchema as b$, TaskAgentInfoSchema as b4, isAskUserMessage as b6, isAskUserResponseMessage as b7, isCompanionHeartbeatMessage as b8, isCompanionReminderMessage as b9, WorkerExitSchema as bA, WorkerRunningSchema as bC, WorkerPermissionModeSchema as bE, WorkerStatusRequestSchema as bG, WorkerStatusValueSchema as bI, WorkerStatusSnapshotSchema as bK, ChatWorkersStatusRequestSchema as bM, ChatWorkersStatusResponseSchema as bO, baseTaskSchema as bQ, createTaskSchema as bR, resumeTaskSchema as bT, cancelTaskSchema as bV, StopTaskSchema as bX, TaskArtifactsStatsSchema as bZ, isSubTaskAskUserMessage as ba, isSDKMessage as bb, isSDKUserMessage as bc, createEventId as bd, EventAckSchema as be, AppAliveEventSchema as bg, ApiServerAliveEventSchema as bi, MachineAliveEventSchema as bk, ShutdownMachineSchema as bm, WorkerInitializingSchema as bo, WorkerInitializedSchema as bq, WorkerPermissionModeValueSchema as bs, WorkerReadySchema as bu, ActiveAgentSchema as bw, WorkerAliveEventSchema as by, PreviewMethodSchema as c1, PreviewMetadataSchema as c3, TaskArtifactsSummarySchema as c4, TaskMessageSchema as c6, ShowModalEventDataSchema as c9, TaskSlashCommandSchema as cB, TaskSlashCommandsUpdateEventDataSchema as cD, MergeRequestEventSchema as cF, TaskStoppedEventSchema as cH, SubTaskResultUpdatedEventSchema as cJ, MergePullRequestEventSchema as cL, DeployAgentEventSchema as cO, DeployAgentCompleteEventSchema as cQ, AssociateRepoEventDataSchema as cS, UpdateAgentInfoEventSchema as cT, SystemMessageSchema as cY, DaemonGitlabOperationSchema as c_, ChangeTaskTitleEventSchema as cb, TaskStateChangeEventSchema as cd, CreditExhaustedEventSchema as cf, RtcIceServerSchema as ch, RtcIceServersRequestSchema as cj, RtcIceServersResponseSchema as cl, MachineRtcRequestSchema as cn, MachineRtcResponseSchema as cp, RtcSignalSchema as cr, WorkspaceFileRequestSchema as ct, WorkspaceFileResponseSchema as cv, UpdateTaskAgentSessionIdEventSchema as cx, TaskInfoUpdateEventDataSchema as cz, StartTaskResponseSchema as d, DaemonGitlabRequestSchema as d0, DaemonGitlabResponseSchema as d2, CompanionHeartbeatRequestSchema as d4, CompanionHeartbeatResponseSchema as d6, CompanionInitRequestSchema as d8, FRAMEWORK_TYPES as dF, AgentMetadataSchema as dG, ClaudeConfigSchema as dH, AgentError as dI, AgentNotFoundError as dJ, AgentConfigValidationError as dK, FrameworkNotSupportedError as dL, AgentLoadError as dM, MissingAgentFileError as dN, CompanionInitResponseSchema as da, ResetTaskSessionSchema as dc, SeqSyncRequestEventDataSchema as df, SeqSyncResponseEventDataSchema as dh, EventSchemaMap as dl, workerTaskEvents as dn, RpcCallEventSchema as dp, RpcResponseSchema as dr, setAgentContext as dv, getAgentContext as dw, TaskItemSchema as g, EnsureIssueRootTaskResponseSchema as i, ListTasksResponseSchema as l, normalizeWorkerExecutionMode as n, ResumeTaskResponseSchema as p, resumeTaskRequestSchema as r, startTaskSchema as s, cancelTaskRequestSchema as u, CancelTaskResponseSchema as v, workerExecutionModes as w, StopTaskRequestSchema as y };
|
|
2943
|
+
export type { FillEventsResponse as $, StopTaskResponse as F, PermissionResponseRequest as H, PermissionResponseResponse as K, ProjectEntry as N, PreviewMetadata as P, ProjectDirectoryResponse as Q, QueryEventsRequest as V, WorkerExecutionMode as W, TaskEvent as X, QueryEventsResponse as Y, FillEventsRequest as _, AskUserResponseMessage as a$, CreateMergeRequestRequest as a1, CreateMergeRequestResponse as a4, ApprovePrRequest as a6, ApprovePrResponse as a8, ListSubTasksRequest as aB, SubTaskSummary as aD, ListSubTasksResponse as aF, ListRecentTasksRequest as aH, RecentTaskSummary as aJ, ListRecentTasksResponse as aL, FindTaskByAgentRequest as aN, FindTaskByAgentResponse as aP, AskUserOption as aR, AskUserQuestion as aT, AskUserMessage as aV, AskUserResponseStatus as aY, AskUserResponseReason as aZ, CreateTaskShareRequest as aa, CreateTaskShareResponse as ac, ArchiveTaskRequest as ae, ArchiveTaskResponse as ag, UnarchiveTaskRequest as ai, UnarchiveTaskResponse as ak, UpdateTaskTitleRequest as am, UpdateTaskTitleResponse as ao, SendMessageTarget as ap, SendTaskMessageRequest as ar, SendTaskMessageResponse as at, ShowModalRequest as av, ShowModalResponse as ax, GetTaskSessionResponse as az, TaskTodo as b, CompanionHeartbeatMessage as b0, CompanionReminderMessage as b1, SubTaskAskUserMessage as b2, TaskMessagePayload as b3, TaskAgentInfo as b5, WorkerExitEventData as bB, WorkerRunningEventData as bD, WorkerPermissionModeEventData as bF, WorkerStatusRequestEventData as bH, WorkerStatusValue as bJ, WorkerStatusSnapshot as bL, ChatWorkersStatusRequestEventData as bN, ChatWorkersStatusResponseEventData as bP, CreateTaskEventData as bS, ResumeTaskEventData as bU, CancelTaskEventData as bW, StopTaskEventData as bY, TaskArtifactsStats as b_, EventAckData as bf, AppAliveEventData as bh, ApiServerAliveEventData as bj, MachineAliveEventData as bl, ShutdownMachineData as bn, WorkerInitializingEventData as bp, WorkerInitializedEventData as br, WorkerPermissionModeValue as bt, WorkerReadyEventData as bv, ActiveAgent as bx, WorkerAliveEventData as bz, StartTaskRequest as c, DaemonGitlabOperation as c$, PreviewProjectType as c0, PreviewMethod as c2, TaskArtifactsSummary as c5, TaskMessageEventData as c7, TaskState as c8, TaskInfoUpdateEventData as cA, TaskSlashCommand as cC, TaskSlashCommandsUpdateEventData as cE, MergeRequestEventData as cG, TaskStoppedEventData as cI, SubTaskResultUpdatedEventData as cK, MergePullRequestEventData as cM, MergePullRequestAck as cN, DeployAgentEventData as cP, DeployAgentCompleteEventData as cR, UpdateAgentInfoEventData as cU, AssociateRepoEventData as cV, SystemMessageType as cW, PrStateChangedData as cX, SystemMessageEventData as cZ, ShowModalEventData as ca, ChangeTaskTitleEventData as cc, TaskStateChangeEventData as ce, CreditExhaustedEventData as cg, RtcIceServer as ci, RtcIceServersRequestEventData as ck, RtcIceServersResponseEventData as cm, MachineRtcRequestEventData as co, MachineRtcResponseEventData as cq, RtcSignalEventData as cs, WorkspaceFileRequestEventData as cu, WorkspaceFileResponseEventData as cw, UpdateTaskAgentSessionIdEventData as cy, DaemonGitlabRequestEventData as d1, DaemonGitlabResponseEventData as d3, CompanionHeartbeatRequestData as d5, CompanionHeartbeatResponseData as d7, CompanionInitRequestData as d9, AgentConfig as dA, ValidationResult as dB, LoadAgentOptions as dC, RepositoryInitHookInput as dD, HookFactory as dE, CompanionInitResponseData as db, ResetTaskSessionEventData as dd, EventData as de, SeqSyncRequestEventData as dg, SeqSyncResponseEventData as di, EventMap as dj, EventName as dk, WorkerTaskEvent as dm, RpcCallEventData as dq, RpcResponseData as ds, AgentContext as dt, AgentrixContext as du, FrameworkType as dx, AgentMetadata as dy, ClaudeAgentConfig as dz, StartTaskResponse as e, EnsureIssueRootTaskRequest as f, TaskItem as h, EnsureIssueRootTaskResponse as j, ListTasksRequest as k, ListTasksResponse as m, ResumeTaskRequest as o, ResumeTaskResponse as q, CancelTaskRequest as t, CancelTaskResponse as x, StopTaskRequest as z };
|