@agentrix/shared 2.34.1 → 2.35.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-DxB8EzbU.d.cts → errors-DC4QxaMi.d.cts} +117 -35
- package/dist/index.cjs +87 -4
- package/dist/index.d.cts +211 -33
- package/dist/node.d.cts +2 -2
- package/package.json +1 -1
|
@@ -77,6 +77,7 @@ declare const StartTaskRequestSchema: z.ZodObject<{
|
|
|
77
77
|
cloudId: z.ZodOptional<z.ZodString>;
|
|
78
78
|
model: z.ZodOptional<z.ZodString>;
|
|
79
79
|
repositoryId: z.ZodOptional<z.ZodString>;
|
|
80
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
80
81
|
baseBranch: z.ZodOptional<z.ZodString>;
|
|
81
82
|
workerExecutionMode: z.ZodOptional<z.ZodEnum<{
|
|
82
83
|
loop: "loop";
|
|
@@ -130,6 +131,7 @@ declare const startTaskSchema: z.ZodObject<{
|
|
|
130
131
|
cloudId: z.ZodOptional<z.ZodString>;
|
|
131
132
|
model: z.ZodOptional<z.ZodString>;
|
|
132
133
|
repositoryId: z.ZodOptional<z.ZodString>;
|
|
134
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
133
135
|
baseBranch: z.ZodOptional<z.ZodString>;
|
|
134
136
|
workerExecutionMode: z.ZodOptional<z.ZodEnum<{
|
|
135
137
|
loop: "loop";
|
|
@@ -176,6 +178,7 @@ declare const StartTaskResponseSchema: z.ZodObject<{
|
|
|
176
178
|
cloudId: z.ZodNullable<z.ZodString>;
|
|
177
179
|
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
178
180
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
181
|
+
workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
179
182
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
180
183
|
branchName: z.ZodNullable<z.ZodString>;
|
|
181
184
|
branchBinding: z.ZodDefault<z.ZodEnum<{
|
|
@@ -229,6 +232,7 @@ declare const TaskItemSchema: z.ZodObject<{
|
|
|
229
232
|
cloudId: z.ZodNullable<z.ZodString>;
|
|
230
233
|
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
231
234
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
235
|
+
workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
232
236
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
233
237
|
branchName: z.ZodNullable<z.ZodString>;
|
|
234
238
|
branchBinding: z.ZodDefault<z.ZodEnum<{
|
|
@@ -314,6 +318,7 @@ declare const EnsureIssueRootTaskResponseSchema: z.ZodObject<{
|
|
|
314
318
|
cloudId: z.ZodNullable<z.ZodString>;
|
|
315
319
|
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
316
320
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
321
|
+
workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
317
322
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
318
323
|
branchName: z.ZodNullable<z.ZodString>;
|
|
319
324
|
branchBinding: z.ZodDefault<z.ZodEnum<{
|
|
@@ -413,6 +418,7 @@ declare const ListTasksResponseSchema: z.ZodObject<{
|
|
|
413
418
|
cloudId: z.ZodNullable<z.ZodString>;
|
|
414
419
|
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
415
420
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
421
|
+
workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
416
422
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
417
423
|
branchName: z.ZodNullable<z.ZodString>;
|
|
418
424
|
branchBinding: z.ZodDefault<z.ZodEnum<{
|
|
@@ -739,6 +745,7 @@ declare const ArchiveTaskResponseSchema: z.ZodObject<{
|
|
|
739
745
|
cloudId: z.ZodNullable<z.ZodString>;
|
|
740
746
|
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
741
747
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
748
|
+
workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
742
749
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
743
750
|
branchName: z.ZodNullable<z.ZodString>;
|
|
744
751
|
branchBinding: z.ZodDefault<z.ZodEnum<{
|
|
@@ -834,6 +841,7 @@ declare const UnarchiveTaskResponseSchema: z.ZodObject<{
|
|
|
834
841
|
cloudId: z.ZodNullable<z.ZodString>;
|
|
835
842
|
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
836
843
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
844
|
+
workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
837
845
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
838
846
|
branchName: z.ZodNullable<z.ZodString>;
|
|
839
847
|
branchBinding: z.ZodDefault<z.ZodEnum<{
|
|
@@ -931,6 +939,7 @@ declare const UpdateTaskTitleResponseSchema: z.ZodObject<{
|
|
|
931
939
|
cloudId: z.ZodNullable<z.ZodString>;
|
|
932
940
|
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
933
941
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
942
|
+
workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
934
943
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
935
944
|
branchName: z.ZodNullable<z.ZodString>;
|
|
936
945
|
branchBinding: z.ZodDefault<z.ZodEnum<{
|
|
@@ -1018,6 +1027,7 @@ declare const UpdateTaskPreviewUrlResponseSchema: z.ZodObject<{
|
|
|
1018
1027
|
cloudId: z.ZodNullable<z.ZodString>;
|
|
1019
1028
|
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1020
1029
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
1030
|
+
workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1021
1031
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
1022
1032
|
branchName: z.ZodNullable<z.ZodString>;
|
|
1023
1033
|
branchBinding: z.ZodDefault<z.ZodEnum<{
|
|
@@ -1097,15 +1107,15 @@ type SendMessageTarget = 'agent' | 'user';
|
|
|
1097
1107
|
* - 'user': Broadcasts SDKAssistantMessage to users viewing the task
|
|
1098
1108
|
*/
|
|
1099
1109
|
declare const SendTaskMessageRequestSchema: z.ZodObject<{
|
|
1100
|
-
message: z.ZodCustom<
|
|
1110
|
+
message: z.ZodCustom<SDKUserMessage | SDKAssistantMessage, SDKUserMessage | SDKAssistantMessage>;
|
|
1101
1111
|
target: z.ZodEnum<{
|
|
1102
|
-
user: "user";
|
|
1103
1112
|
agent: "agent";
|
|
1113
|
+
user: "user";
|
|
1104
1114
|
}>;
|
|
1105
1115
|
fromTaskId: z.ZodOptional<z.ZodString>;
|
|
1106
1116
|
senderType: z.ZodEnum<{
|
|
1107
|
-
system: "system";
|
|
1108
1117
|
human: "human";
|
|
1118
|
+
system: "system";
|
|
1109
1119
|
agent: "agent";
|
|
1110
1120
|
channel: "channel";
|
|
1111
1121
|
}>;
|
|
@@ -1249,8 +1259,8 @@ declare const HiveListingTypeSchema: z.ZodEnum<{
|
|
|
1249
1259
|
}>;
|
|
1250
1260
|
type HiveListingType = z.infer<typeof HiveListingTypeSchema>;
|
|
1251
1261
|
declare const HiveAuthorTypeSchema: z.ZodEnum<{
|
|
1252
|
-
user: "user";
|
|
1253
1262
|
agent: "agent";
|
|
1263
|
+
user: "user";
|
|
1254
1264
|
}>;
|
|
1255
1265
|
type HiveAuthorType = z.infer<typeof HiveAuthorTypeSchema>;
|
|
1256
1266
|
declare const HiveListingStatusSchema: z.ZodEnum<{
|
|
@@ -1280,8 +1290,8 @@ declare const HiveListingSchema: z.ZodObject<{
|
|
|
1280
1290
|
version: z.ZodString;
|
|
1281
1291
|
avatar: z.ZodNullable<z.ZodString>;
|
|
1282
1292
|
authorType: z.ZodEnum<{
|
|
1283
|
-
user: "user";
|
|
1284
1293
|
agent: "agent";
|
|
1294
|
+
user: "user";
|
|
1285
1295
|
}>;
|
|
1286
1296
|
authorId: z.ZodString;
|
|
1287
1297
|
authorName: z.ZodString;
|
|
@@ -1321,8 +1331,8 @@ declare const PublishToHiveRequestSchema: z.ZodObject<{
|
|
|
1321
1331
|
category: z.ZodOptional<z.ZodString>;
|
|
1322
1332
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1323
1333
|
authorType: z.ZodEnum<{
|
|
1324
|
-
user: "user";
|
|
1325
1334
|
agent: "agent";
|
|
1335
|
+
user: "user";
|
|
1326
1336
|
}>;
|
|
1327
1337
|
authorId: z.ZodString;
|
|
1328
1338
|
machineId: z.ZodOptional<z.ZodString>;
|
|
@@ -1367,8 +1377,8 @@ declare const HiveListResponseSchema: z.ZodObject<{
|
|
|
1367
1377
|
version: z.ZodString;
|
|
1368
1378
|
avatar: z.ZodNullable<z.ZodString>;
|
|
1369
1379
|
authorType: z.ZodEnum<{
|
|
1370
|
-
user: "user";
|
|
1371
1380
|
agent: "agent";
|
|
1381
|
+
user: "user";
|
|
1372
1382
|
}>;
|
|
1373
1383
|
authorId: z.ZodString;
|
|
1374
1384
|
authorName: z.ZodString;
|
|
@@ -1472,8 +1482,8 @@ declare const HiveReviewSchema: z.ZodObject<{
|
|
|
1472
1482
|
id: z.ZodString;
|
|
1473
1483
|
hiveListingId: z.ZodString;
|
|
1474
1484
|
authorType: z.ZodEnum<{
|
|
1475
|
-
user: "user";
|
|
1476
1485
|
agent: "agent";
|
|
1486
|
+
user: "user";
|
|
1477
1487
|
}>;
|
|
1478
1488
|
authorId: z.ZodString;
|
|
1479
1489
|
authorName: z.ZodString;
|
|
@@ -1499,8 +1509,8 @@ declare const HiveReviewListResponseSchema: z.ZodObject<{
|
|
|
1499
1509
|
id: z.ZodString;
|
|
1500
1510
|
hiveListingId: z.ZodString;
|
|
1501
1511
|
authorType: z.ZodEnum<{
|
|
1502
|
-
user: "user";
|
|
1503
1512
|
agent: "agent";
|
|
1513
|
+
user: "user";
|
|
1504
1514
|
}>;
|
|
1505
1515
|
authorId: z.ZodString;
|
|
1506
1516
|
authorName: z.ZodString;
|
|
@@ -1520,8 +1530,8 @@ declare const HiveCommentSchema: z.ZodObject<{
|
|
|
1520
1530
|
hiveListingId: z.ZodString;
|
|
1521
1531
|
parentId: z.ZodNullable<z.ZodString>;
|
|
1522
1532
|
authorType: z.ZodEnum<{
|
|
1523
|
-
user: "user";
|
|
1524
1533
|
agent: "agent";
|
|
1534
|
+
user: "user";
|
|
1525
1535
|
}>;
|
|
1526
1536
|
authorId: z.ZodString;
|
|
1527
1537
|
authorName: z.ZodString;
|
|
@@ -1546,8 +1556,8 @@ declare const HiveCommentListResponseSchema: z.ZodObject<{
|
|
|
1546
1556
|
hiveListingId: z.ZodString;
|
|
1547
1557
|
parentId: z.ZodNullable<z.ZodString>;
|
|
1548
1558
|
authorType: z.ZodEnum<{
|
|
1549
|
-
user: "user";
|
|
1550
1559
|
agent: "agent";
|
|
1560
|
+
user: "user";
|
|
1551
1561
|
}>;
|
|
1552
1562
|
authorId: z.ZodString;
|
|
1553
1563
|
authorName: z.ZodString;
|
|
@@ -1587,8 +1597,8 @@ declare const HiveInstalledItemSchema: z.ZodObject<{
|
|
|
1587
1597
|
version: z.ZodString;
|
|
1588
1598
|
avatar: z.ZodNullable<z.ZodString>;
|
|
1589
1599
|
authorType: z.ZodEnum<{
|
|
1590
|
-
user: "user";
|
|
1591
1600
|
agent: "agent";
|
|
1601
|
+
user: "user";
|
|
1592
1602
|
}>;
|
|
1593
1603
|
authorId: z.ZodString;
|
|
1594
1604
|
authorName: z.ZodString;
|
|
@@ -1642,8 +1652,8 @@ declare const HiveInstalledResponseSchema: z.ZodObject<{
|
|
|
1642
1652
|
version: z.ZodString;
|
|
1643
1653
|
avatar: z.ZodNullable<z.ZodString>;
|
|
1644
1654
|
authorType: z.ZodEnum<{
|
|
1645
|
-
user: "user";
|
|
1646
1655
|
agent: "agent";
|
|
1656
|
+
user: "user";
|
|
1647
1657
|
}>;
|
|
1648
1658
|
authorId: z.ZodString;
|
|
1649
1659
|
authorName: z.ZodString;
|
|
@@ -1685,8 +1695,8 @@ declare const HiveMyListingsResponseSchema: z.ZodObject<{
|
|
|
1685
1695
|
version: z.ZodString;
|
|
1686
1696
|
avatar: z.ZodNullable<z.ZodString>;
|
|
1687
1697
|
authorType: z.ZodEnum<{
|
|
1688
|
-
user: "user";
|
|
1689
1698
|
agent: "agent";
|
|
1699
|
+
user: "user";
|
|
1690
1700
|
}>;
|
|
1691
1701
|
authorId: z.ZodString;
|
|
1692
1702
|
authorName: z.ZodString;
|
|
@@ -1796,6 +1806,10 @@ type RpcResponseData = z.infer<typeof RpcResponseSchema>;
|
|
|
1796
1806
|
declare const MachineControlActionSchema: z.ZodEnum<{
|
|
1797
1807
|
ping: "ping";
|
|
1798
1808
|
"upgrade-cli": "upgrade-cli";
|
|
1809
|
+
"pick-directory": "pick-directory";
|
|
1810
|
+
"validate-directory": "validate-directory";
|
|
1811
|
+
"list-directory": "list-directory";
|
|
1812
|
+
"create-directory": "create-directory";
|
|
1799
1813
|
}>;
|
|
1800
1814
|
type MachineControlAction = z.infer<typeof MachineControlActionSchema>;
|
|
1801
1815
|
declare const MachineControlTargetSchema: z.ZodObject<{
|
|
@@ -1832,6 +1846,10 @@ declare const MachineControlPingResultSchema: z.ZodObject<{
|
|
|
1832
1846
|
capabilities: z.ZodArray<z.ZodEnum<{
|
|
1833
1847
|
ping: "ping";
|
|
1834
1848
|
"upgrade-cli": "upgrade-cli";
|
|
1849
|
+
"pick-directory": "pick-directory";
|
|
1850
|
+
"validate-directory": "validate-directory";
|
|
1851
|
+
"list-directory": "list-directory";
|
|
1852
|
+
"create-directory": "create-directory";
|
|
1835
1853
|
}>>;
|
|
1836
1854
|
}, z.core.$strip>;
|
|
1837
1855
|
type MachineControlPingResult = z.infer<typeof MachineControlPingResultSchema>;
|
|
@@ -1844,6 +1862,10 @@ declare const MachineActionRequestSchema: z.ZodObject<{
|
|
|
1844
1862
|
action: z.ZodEnum<{
|
|
1845
1863
|
ping: "ping";
|
|
1846
1864
|
"upgrade-cli": "upgrade-cli";
|
|
1865
|
+
"pick-directory": "pick-directory";
|
|
1866
|
+
"validate-directory": "validate-directory";
|
|
1867
|
+
"list-directory": "list-directory";
|
|
1868
|
+
"create-directory": "create-directory";
|
|
1847
1869
|
}>;
|
|
1848
1870
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1849
1871
|
}, z.core.$strip>;
|
|
@@ -1907,6 +1929,10 @@ declare const MachineControlCommandSchema: z.ZodObject<{
|
|
|
1907
1929
|
action: z.ZodEnum<{
|
|
1908
1930
|
ping: "ping";
|
|
1909
1931
|
"upgrade-cli": "upgrade-cli";
|
|
1932
|
+
"pick-directory": "pick-directory";
|
|
1933
|
+
"validate-directory": "validate-directory";
|
|
1934
|
+
"list-directory": "list-directory";
|
|
1935
|
+
"create-directory": "create-directory";
|
|
1910
1936
|
}>;
|
|
1911
1937
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1912
1938
|
requestedAt: z.ZodString;
|
|
@@ -1914,8 +1940,8 @@ declare const MachineControlCommandSchema: z.ZodObject<{
|
|
|
1914
1940
|
}, z.core.$strip>;
|
|
1915
1941
|
type MachineControlCommandEventData = z.infer<typeof MachineControlCommandSchema>;
|
|
1916
1942
|
declare const MachineControlProgressStatusSchema: z.ZodEnum<{
|
|
1917
|
-
failed: "failed";
|
|
1918
1943
|
running: "running";
|
|
1944
|
+
failed: "failed";
|
|
1919
1945
|
succeeded: "succeeded";
|
|
1920
1946
|
}>;
|
|
1921
1947
|
type MachineControlProgressStatus = z.infer<typeof MachineControlProgressStatusSchema>;
|
|
@@ -1923,8 +1949,8 @@ declare const MachineControlProgressSchema: z.ZodObject<{
|
|
|
1923
1949
|
eventId: z.ZodString;
|
|
1924
1950
|
opCode: z.ZodString;
|
|
1925
1951
|
status: z.ZodEnum<{
|
|
1926
|
-
failed: "failed";
|
|
1927
1952
|
running: "running";
|
|
1953
|
+
failed: "failed";
|
|
1928
1954
|
succeeded: "succeeded";
|
|
1929
1955
|
}>;
|
|
1930
1956
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1949,10 +1975,10 @@ declare const MachineControlProgressSchema: z.ZodObject<{
|
|
|
1949
1975
|
}, z.core.$strip>;
|
|
1950
1976
|
type MachineControlProgressEventData = z.infer<typeof MachineControlProgressSchema>;
|
|
1951
1977
|
declare const MachineControlUpdatedStatusSchema: z.ZodEnum<{
|
|
1952
|
-
failed: "failed";
|
|
1953
1978
|
running: "running";
|
|
1954
|
-
|
|
1979
|
+
failed: "failed";
|
|
1955
1980
|
expired: "expired";
|
|
1981
|
+
succeeded: "succeeded";
|
|
1956
1982
|
}>;
|
|
1957
1983
|
type MachineControlUpdatedStatus = z.infer<typeof MachineControlUpdatedStatusSchema>;
|
|
1958
1984
|
declare const MachineControlUpdatedSchema: z.ZodObject<{
|
|
@@ -1964,10 +1990,10 @@ declare const MachineControlUpdatedSchema: z.ZodObject<{
|
|
|
1964
1990
|
}, z.core.$strip>;
|
|
1965
1991
|
action: z.ZodLiteral<"upgrade-cli">;
|
|
1966
1992
|
status: z.ZodEnum<{
|
|
1967
|
-
failed: "failed";
|
|
1968
1993
|
running: "running";
|
|
1969
|
-
|
|
1994
|
+
failed: "failed";
|
|
1970
1995
|
expired: "expired";
|
|
1996
|
+
succeeded: "succeeded";
|
|
1971
1997
|
}>;
|
|
1972
1998
|
message: z.ZodOptional<z.ZodString>;
|
|
1973
1999
|
result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -2068,14 +2094,14 @@ declare const AskUserMessageSchema: z.ZodObject<{
|
|
|
2068
2094
|
}, z.core.$strip>;
|
|
2069
2095
|
type AskUserMessage = z.infer<typeof AskUserMessageSchema>;
|
|
2070
2096
|
declare const AskUserResponseStatusSchema: z.ZodEnum<{
|
|
2097
|
+
timeout: "timeout";
|
|
2071
2098
|
answered: "answered";
|
|
2072
2099
|
cancelled: "cancelled";
|
|
2073
|
-
timeout: "timeout";
|
|
2074
2100
|
}>;
|
|
2075
2101
|
declare const AskUserResponseReasonSchema: z.ZodEnum<{
|
|
2076
|
-
timeout: "timeout";
|
|
2077
|
-
user: "user";
|
|
2078
2102
|
system: "system";
|
|
2103
|
+
user: "user";
|
|
2104
|
+
timeout: "timeout";
|
|
2079
2105
|
}>;
|
|
2080
2106
|
type AskUserResponseStatus = z.infer<typeof AskUserResponseStatusSchema>;
|
|
2081
2107
|
type AskUserResponseReason = z.infer<typeof AskUserResponseReasonSchema>;
|
|
@@ -2091,14 +2117,14 @@ declare const AskUserResponseMessageSchema: z.ZodObject<{
|
|
|
2091
2117
|
details: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2092
2118
|
rememberAnswers: z.ZodOptional<z.ZodArray<z.ZodBoolean>>;
|
|
2093
2119
|
status: z.ZodOptional<z.ZodEnum<{
|
|
2120
|
+
timeout: "timeout";
|
|
2094
2121
|
answered: "answered";
|
|
2095
2122
|
cancelled: "cancelled";
|
|
2096
|
-
timeout: "timeout";
|
|
2097
2123
|
}>>;
|
|
2098
2124
|
reason: z.ZodOptional<z.ZodEnum<{
|
|
2099
|
-
timeout: "timeout";
|
|
2100
|
-
user: "user";
|
|
2101
2125
|
system: "system";
|
|
2126
|
+
user: "user";
|
|
2127
|
+
timeout: "timeout";
|
|
2102
2128
|
}>>;
|
|
2103
2129
|
}, z.core.$strip>;
|
|
2104
2130
|
type AskUserResponseMessage = z.infer<typeof AskUserResponseMessageSchema>;
|
|
@@ -2504,8 +2530,8 @@ declare const baseTaskSchema: z.ZodObject<{
|
|
|
2504
2530
|
agentType: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2505
2531
|
allowFilesystemAgent: z.ZodOptional<z.ZodBoolean>;
|
|
2506
2532
|
agentSource: z.ZodOptional<z.ZodEnum<{
|
|
2507
|
-
registered: "registered";
|
|
2508
2533
|
draft: "draft";
|
|
2534
|
+
registered: "registered";
|
|
2509
2535
|
filesystem: "filesystem";
|
|
2510
2536
|
}>>;
|
|
2511
2537
|
machineId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2547,6 +2573,7 @@ declare const baseTaskSchema: z.ZodObject<{
|
|
|
2547
2573
|
oneshot: "oneshot";
|
|
2548
2574
|
}>>>;
|
|
2549
2575
|
repositoryId: z.ZodOptional<z.ZodString>;
|
|
2576
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
2550
2577
|
repositorySourceType: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2551
2578
|
temporary: "temporary";
|
|
2552
2579
|
directory: "directory";
|
|
@@ -2599,8 +2626,8 @@ declare const createTaskSchema: z.ZodObject<{
|
|
|
2599
2626
|
agentType: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2600
2627
|
allowFilesystemAgent: z.ZodOptional<z.ZodBoolean>;
|
|
2601
2628
|
agentSource: z.ZodOptional<z.ZodEnum<{
|
|
2602
|
-
registered: "registered";
|
|
2603
2629
|
draft: "draft";
|
|
2630
|
+
registered: "registered";
|
|
2604
2631
|
filesystem: "filesystem";
|
|
2605
2632
|
}>>;
|
|
2606
2633
|
machineId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2642,6 +2669,7 @@ declare const createTaskSchema: z.ZodObject<{
|
|
|
2642
2669
|
oneshot: "oneshot";
|
|
2643
2670
|
}>>>;
|
|
2644
2671
|
repositoryId: z.ZodOptional<z.ZodString>;
|
|
2672
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
2645
2673
|
repositorySourceType: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2646
2674
|
temporary: "temporary";
|
|
2647
2675
|
directory: "directory";
|
|
@@ -2697,8 +2725,8 @@ declare const resumeTaskSchema: z.ZodObject<{
|
|
|
2697
2725
|
agentType: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2698
2726
|
allowFilesystemAgent: z.ZodOptional<z.ZodBoolean>;
|
|
2699
2727
|
agentSource: z.ZodOptional<z.ZodEnum<{
|
|
2700
|
-
registered: "registered";
|
|
2701
2728
|
draft: "draft";
|
|
2729
|
+
registered: "registered";
|
|
2702
2730
|
filesystem: "filesystem";
|
|
2703
2731
|
}>>;
|
|
2704
2732
|
machineId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2740,6 +2768,7 @@ declare const resumeTaskSchema: z.ZodObject<{
|
|
|
2740
2768
|
oneshot: "oneshot";
|
|
2741
2769
|
}>>>;
|
|
2742
2770
|
repositoryId: z.ZodOptional<z.ZodString>;
|
|
2771
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
2743
2772
|
repositorySourceType: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2744
2773
|
temporary: "temporary";
|
|
2745
2774
|
directory: "directory";
|
|
@@ -2906,9 +2935,9 @@ declare const TaskMessageSchema: z.ZodObject<{
|
|
|
2906
2935
|
taskId: z.ZodString;
|
|
2907
2936
|
chatId: z.ZodOptional<z.ZodString>;
|
|
2908
2937
|
from: z.ZodEnum<{
|
|
2938
|
+
machine: "machine";
|
|
2909
2939
|
app: "app";
|
|
2910
2940
|
"api-server": "api-server";
|
|
2911
|
-
machine: "machine";
|
|
2912
2941
|
worker: "worker";
|
|
2913
2942
|
}>;
|
|
2914
2943
|
opCode: z.ZodOptional<z.ZodString>;
|
|
@@ -2919,8 +2948,8 @@ declare const TaskMessageSchema: z.ZodObject<{
|
|
|
2919
2948
|
encryptedMessage: z.ZodOptional<z.ZodString>;
|
|
2920
2949
|
agentId: z.ZodOptional<z.ZodString>;
|
|
2921
2950
|
senderType: z.ZodEnum<{
|
|
2922
|
-
system: "system";
|
|
2923
2951
|
human: "human";
|
|
2952
|
+
system: "system";
|
|
2924
2953
|
agent: "agent";
|
|
2925
2954
|
channel: "channel";
|
|
2926
2955
|
}>;
|
|
@@ -3071,8 +3100,8 @@ declare const RtcSignalSchema: z.ZodObject<{
|
|
|
3071
3100
|
machineId: z.ZodString;
|
|
3072
3101
|
sessionId: z.ZodString;
|
|
3073
3102
|
from: z.ZodEnum<{
|
|
3074
|
-
app: "app";
|
|
3075
3103
|
machine: "machine";
|
|
3104
|
+
app: "app";
|
|
3076
3105
|
}>;
|
|
3077
3106
|
signal: z.ZodAny;
|
|
3078
3107
|
userId: z.ZodOptional<z.ZodString>;
|
|
@@ -3489,6 +3518,7 @@ declare const SystemMessageSchema: z.ZodObject<{
|
|
|
3489
3518
|
}>;
|
|
3490
3519
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3491
3520
|
bindRepoId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3521
|
+
bindWorkspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3492
3522
|
createdAt: z.ZodString;
|
|
3493
3523
|
updatedAt: z.ZodString;
|
|
3494
3524
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
@@ -3676,6 +3706,7 @@ declare const SystemMessageSchema: z.ZodObject<{
|
|
|
3676
3706
|
cloudId: z.ZodNullable<z.ZodString>;
|
|
3677
3707
|
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3678
3708
|
repositoryId: z.ZodNullable<z.ZodString>;
|
|
3709
|
+
workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3679
3710
|
baseBranch: z.ZodNullable<z.ZodString>;
|
|
3680
3711
|
branchName: z.ZodNullable<z.ZodString>;
|
|
3681
3712
|
branchBinding: z.ZodDefault<z.ZodEnum<{
|
|
@@ -3871,7 +3902,7 @@ declare const ResetTaskSessionSchema: z.ZodObject<{
|
|
|
3871
3902
|
taskId: z.ZodString;
|
|
3872
3903
|
}, z.core.$strip>;
|
|
3873
3904
|
type ResetTaskSessionEventData = z.infer<typeof ResetTaskSessionSchema>;
|
|
3874
|
-
type EventData = AppAliveEventData | ApiServerAliveEventData | MachineAliveEventData | MachineActionRequestEventData | MachineControlCommandEventData | MachineControlProgressEventData | MachineControlUpdatedEventData | 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 | MachineRpcCallEventData | DaemonGitlabRequestEventData | DaemonGitlabResponseEventData | CompanionHeartbeatRequestData | CompanionHeartbeatResponseData | CompanionMemoryOrganizationRequestData | CompanionMemoryOrganizationResponseData | CompanionInitRequestData | CompanionInitResponseData | ResetTaskSessionEventData | HiveInstallEventData | HiveInstallCompleteEventData | SeqSyncRequestEventData | SeqSyncResponseEventData;
|
|
3905
|
+
type EventData = AppAliveEventData | ApiServerAliveEventData | MachineAliveEventData | MachineActionRequestEventData | MachineControlCommandEventData | MachineControlProgressEventData | MachineControlUpdatedEventData | WorkspaceCacheUpdateEventData | 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 | MachineRpcCallEventData | DaemonGitlabRequestEventData | DaemonGitlabResponseEventData | CompanionHeartbeatRequestData | CompanionHeartbeatResponseData | CompanionMemoryOrganizationRequestData | CompanionMemoryOrganizationResponseData | CompanionInitRequestData | CompanionInitResponseData | ResetTaskSessionEventData | HiveInstallEventData | HiveInstallCompleteEventData | SeqSyncRequestEventData | SeqSyncResponseEventData;
|
|
3875
3906
|
declare const SeqSyncRequestEventDataSchema: z.ZodObject<{
|
|
3876
3907
|
eventId: z.ZodString;
|
|
3877
3908
|
tasks: z.ZodArray<z.ZodObject<{
|
|
@@ -3888,6 +3919,56 @@ declare const SeqSyncResponseEventDataSchema: z.ZodObject<{
|
|
|
3888
3919
|
}, z.core.$strip>>;
|
|
3889
3920
|
}, z.core.$strip>;
|
|
3890
3921
|
type SeqSyncResponseEventData = z.infer<typeof SeqSyncResponseEventDataSchema>;
|
|
3922
|
+
declare const WorkspaceCacheUpdateEventDataSchema: z.ZodObject<{
|
|
3923
|
+
eventId: z.ZodString;
|
|
3924
|
+
machineId: z.ZodString;
|
|
3925
|
+
action: z.ZodEnum<{
|
|
3926
|
+
replace: "replace";
|
|
3927
|
+
upsert: "upsert";
|
|
3928
|
+
remove: "remove";
|
|
3929
|
+
}>;
|
|
3930
|
+
workspace: z.ZodOptional<z.ZodObject<{
|
|
3931
|
+
id: z.ZodString;
|
|
3932
|
+
userId: z.ZodString;
|
|
3933
|
+
machineId: z.ZodString;
|
|
3934
|
+
chatId: z.ZodNullable<z.ZodString>;
|
|
3935
|
+
name: z.ZodString;
|
|
3936
|
+
path: z.ZodString;
|
|
3937
|
+
normalizedPath: z.ZodString;
|
|
3938
|
+
pathStatus: z.ZodEnum<{
|
|
3939
|
+
active: "active";
|
|
3940
|
+
missing: "missing";
|
|
3941
|
+
permission_lost: "permission_lost";
|
|
3942
|
+
}>;
|
|
3943
|
+
lastCheckedAt: z.ZodNullable<z.ZodString>;
|
|
3944
|
+
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
3945
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
|
3946
|
+
createdAt: z.ZodString;
|
|
3947
|
+
updatedAt: z.ZodString;
|
|
3948
|
+
}, z.core.$strip>>;
|
|
3949
|
+
workspaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3950
|
+
id: z.ZodString;
|
|
3951
|
+
userId: z.ZodString;
|
|
3952
|
+
machineId: z.ZodString;
|
|
3953
|
+
chatId: z.ZodNullable<z.ZodString>;
|
|
3954
|
+
name: z.ZodString;
|
|
3955
|
+
path: z.ZodString;
|
|
3956
|
+
normalizedPath: z.ZodString;
|
|
3957
|
+
pathStatus: z.ZodEnum<{
|
|
3958
|
+
active: "active";
|
|
3959
|
+
missing: "missing";
|
|
3960
|
+
permission_lost: "permission_lost";
|
|
3961
|
+
}>;
|
|
3962
|
+
lastCheckedAt: z.ZodNullable<z.ZodString>;
|
|
3963
|
+
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
3964
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
|
3965
|
+
createdAt: z.ZodString;
|
|
3966
|
+
updatedAt: z.ZodString;
|
|
3967
|
+
}, z.core.$strip>>>;
|
|
3968
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
3969
|
+
updatedAt: z.ZodString;
|
|
3970
|
+
}, z.core.$strip>;
|
|
3971
|
+
type WorkspaceCacheUpdateEventData = z.infer<typeof WorkspaceCacheUpdateEventDataSchema>;
|
|
3891
3972
|
type EventMap = {
|
|
3892
3973
|
"app-alive": AppAliveEventData;
|
|
3893
3974
|
"api-server-alive": ApiServerAliveEventData;
|
|
@@ -3897,6 +3978,7 @@ type EventMap = {
|
|
|
3897
3978
|
"machine-control-command": MachineControlCommandEventData;
|
|
3898
3979
|
"machine-control-progress": MachineControlProgressEventData;
|
|
3899
3980
|
"machine-control-updated": MachineControlUpdatedEventData;
|
|
3981
|
+
"workspace-cache-update": WorkspaceCacheUpdateEventData;
|
|
3900
3982
|
"worker-initializing": WorkerInitializingEventData;
|
|
3901
3983
|
"worker-initialized": WorkerInitializedEventData;
|
|
3902
3984
|
"worker-ready": WorkerReadyEventData;
|
|
@@ -4413,5 +4495,5 @@ declare class MissingAgentFileError extends AgentError {
|
|
|
4413
4495
|
constructor(filePath: string);
|
|
4414
4496
|
}
|
|
4415
4497
|
|
|
4416
|
-
export { permissionResponseRequestSchema as $, ListTasksResponseSchema as A, DEFAULT_WORKER_EXECUTION_MODE as D, EnsureIssueRootTaskRequestSchema as E, resumeTaskRequestSchema as F, ResumeTaskResponseSchema as G, CancelTaskRequestSchema as I, cancelTaskRequestSchema as K, ListTasksRequestSchema as L, CancelTaskResponseSchema as M, StopTaskRequestSchema as O, ResumeTaskRequestSchema as R, StartTaskRequestSchema as S, UpdateTaskPreviewUrlRequestSchema as U, stopTaskRequestSchema as V, StopTaskResponseSchema as X, PermissionResponseRequestSchema as Z, WorkerExecutionModeSchema as a, FindTaskByAgentRequestSchema as a$, PermissionResponseResponseSchema as a0, ProjectEntrySchema as a2, ProjectDirectoryResponseSchema as a4, QueryEventsRequestSchema as a6, UpdateTaskTitleResponseSchema as aA, UpdateTaskPreviewUrlResponseSchema as aC, SendTaskMessageRequestSchema as aF, SendTaskMessageResponseSchema as aH, ShowModalRequestSchema as aJ, ShowModalResponseSchema as aL, GetTaskSessionResponseSchema as aN, ListSubTasksRequestSchema as aP, SubTaskSummarySchema as aR, ListSubTasksResponseSchema as aT, ListRecentTasksRequestSchema as aV, RecentTaskSummarySchema as aX, ListRecentTasksResponseSchema as aZ, FillEventsRequestSchema as aa, CreateMergeRequestSchema as ad, createMergeRequestSchema as af, CreateMergeRequestResponseSchema as ag, ApprovePrRequestSchema as ai, ApprovePrResponseSchema as ak, CreateTaskShareSchema as am, CreateTaskShareResponseSchema as ao, ArchiveTaskRequestSchema as aq, ArchiveTaskResponseSchema as as, UnarchiveTaskRequestSchema as au, UnarchiveTaskResponseSchema as aw, UpdateTaskTitleRequestSchema as ay, SyncAvailableEventSchema as b$, FindTaskByAgentResponseSchema as b1, HiveListingTypeSchema as b3, HiveAuthorTypeSchema as b5, HiveListingStatusSchema as b7, HiveSortSchema as b9, CreateHiveReviewRequestSchema as bB, UpdateHiveReviewRequestSchema as bD, HiveReviewListResponseSchema as bF, HiveCommentSchema as bH, CreateHiveCommentRequestSchema as bJ, UpdateHiveCommentRequestSchema as bL, HiveCommentListResponseSchema as bN, HiveInstalledItemSchema as bP, HiveInstalledResponseSchema as bR, HiveMyListingsResponseSchema as bT, SyncStreamTypeSchema as bV, GetStreamVersionQuerySchema as bX, StreamVersionResponseSchema as bZ, HiveListingSchema as bb, PublishToHiveRequestSchema as bd, PublishToHiveResponseSchema as bf, HiveListQuerySchema as bh, HiveListResponseSchema as bj, UpdateHiveListingRequestSchema as bl, UpdateHiveVersionRequestSchema as bn, HiveInstallRequestSchema as bp, HiveInstallSchema as br, HiveInstallResponseSchema as bt, RecordHiveInstallRequestSchema as bv, RecordHiveInstallResponseSchema as bx, HiveReviewSchema as bz, isLocalTaskExecution as c, AskUserOptionSchema as c1, AskUserQuestionSchema as c3, AskUserMessageSchema as c5, AskUserResponseStatusSchema as c7, AskUserResponseReasonSchema as c8, VisionPlanReviewWriteEventSchema as cB, WorkspaceFileMutationOperationSchema as cD, WorkspaceFileMutationRequestSchema as cE, WorkspaceFileMutationResponseSchema as cG, AppAliveEventSchema as cI, ApiServerAliveEventSchema as cK, MachineAliveEventSchema as cM, ShutdownMachineSchema as cO, WorkerInitializingSchema as cQ, WorkerInitializedSchema as cS, WorkerPermissionModeValueSchema as cU, WorkerReadySchema as cW, ActiveAgentSchema as cY, WorkerAliveEventSchema as c_, AskUserResponseMessageSchema as cb, TaskAgentInfoSchema as cj, isAskUserMessage as cl, isAskUserResponseMessage as cm, isCompanionHeartbeatMessage as cn, isCompanionReminderMessage as co, isCompanionMemoryOrganizationMessage as cp, isSubTaskAskUserMessage as cq, isTaskSystemMessage as cr, isSDKMessage as cs, isSDKUserMessage as ct, createEventId as cu, EventAckSchema as cv, VisionPlanCardEventSchema as cx, VisionPlanActionEventSchema as cz, getTaskExecutionMachineRouteId as d, WorkerExitSchema as d0, WorkerRunningSchema as d2, WorkerPermissionModeSchema as d4, WorkerStatusRequestSchema as d6, WorkerStatusValueSchema as d8, TaskMessageSchema as dB, TaskModelUsageSchema as dD, TaskUsageReportEventSchema as dF, ShowModalEventDataSchema as dI, ChangeTaskTitleEventSchema as dK, TaskStateChangeEventSchema as dM, CreditExhaustedEventSchema as dO, RtcIceServerSchema as dQ, RtcIceServersRequestSchema as dS, RtcIceServersResponseSchema as dU, MachineRtcRequestSchema as dW, MachineRtcResponseSchema as dY, RtcSignalSchema as d_, WorkerStatusSnapshotSchema as da, ChatWorkersStatusRequestSchema as dc, ChatWorkersStatusResponseSchema as de, ListModelsEventSchema as dg, baseTaskSchema as di, createTaskSchema as dj, resumeTaskSchema as dl, cancelTaskSchema as dn, StopTaskSchema as dq, TaskArtifactsStatsSchema as ds, PreviewProjectTypeSchema as du, PreviewMethodSchema as dw, PreviewMetadataSchema as dy, TaskArtifactsSummarySchema as dz, TaskTodoSchema as e, WorkspaceFileRequestSchema as e0, WorkspaceFileResponseSchema as e2, UpdateTaskAgentSessionIdEventSchema as e4, TaskInfoUpdateEventDataSchema as e6, TaskSlashCommandSchema as e8, UpdateAgentInfoEventSchema as eA, SystemMessageSchema as eH, DaemonGitlabOperationSchema as eJ, DaemonGitlabRequestSchema as eL, DaemonGitlabResponseSchema as eN, RepositoryInboxProviderSchema as eP, RepositoryInboxWebhookSchema as eQ, CompanionHeartbeatRequestSchema as eS, CompanionHeartbeatResponseSchema as eU, CompanionMemoryOrganizationRequestSchema as eW, CompanionMemoryOrganizationResponseSchema as eY, CompanionInitRequestSchema as e_, TaskSlashCommandsUpdateEventDataSchema as ea, MergeRequestEventSchema as ec, TaskStoppedEventSchema as ee, SubTaskResultUpdatedEventSchema as eg, SubTaskAskUserEventSchema as ei, MergePullRequestEventSchema as ek, DeployAgentEventSchema as en, DeployAgentCompleteEventSchema as ep, HivePublishEventSchema as er, HivePublishCompleteEventSchema as et, HiveInstallEventSchema as ev, HiveInstallCompleteEventSchema as ex, AssociateRepoEventDataSchema as ez,
|
|
4417
|
-
export type { ListTasksResponse as B, ResumeTaskRequest as C, ResumeTaskResponse as H, CancelTaskRequest as J, CancelTaskResponse as N, PreviewMetadata as P, StopTaskRequest as Q, TaskExecutionMode as T, WorkerExecutionMode as W, StopTaskResponse as Y, PermissionResponseRequest as _, PermissionResponseResponse as a1, ProjectEntry as a3, ProjectDirectoryResponse as a5, QueryEventsRequest as a7, TaskEvent as a8, QueryEventsResponse as a9, UpdateTaskTitleResponse as aB, UpdateTaskPreviewUrlResponse as aD, SendMessageTarget as aE, SendTaskMessageRequest as aG, SendTaskMessageResponse as aI, ShowModalRequest as aK, ShowModalResponse as aM, GetTaskSessionResponse as aO, ListSubTasksRequest as aQ, SubTaskSummary as aS, ListSubTasksResponse as aU, ListRecentTasksRequest as aW, RecentTaskSummary as aY, ListRecentTasksResponse as a_, FillEventsRequest as ab, FillEventsResponse as ac, CreateMergeRequestRequest as ae, CreateMergeRequestResponse as ah, ApprovePrRequest as aj, ApprovePrResponse as al, CreateTaskShareRequest as an, CreateTaskShareResponse as ap, ArchiveTaskRequest as ar, ArchiveTaskResponse as at, UnarchiveTaskRequest as av, UnarchiveTaskResponse as ax, UpdateTaskTitleRequest as az, TaskExecutionTarget as b, FindTaskByAgentRequest as b0, FindTaskByAgentResponse as b2, HiveListingType as b4, HiveAuthorType as b6, HiveListingStatus as b8, HiveReview as bA, CreateHiveReviewRequest as bC, UpdateHiveReviewRequest as bE, HiveReviewListResponse as bG, HiveComment as bI, CreateHiveCommentRequest as bK, UpdateHiveCommentRequest as bM, HiveCommentListResponse as bO, HiveInstalledItem as bQ, HiveInstalledResponse as bS, HiveMyListingsResponse as bU, SyncStreamType as bW, GetStreamVersionQuery as bY, StreamVersionResponse as b_, HiveSort as ba, HiveListing as bc, PublishToHiveRequest as be, PublishToHiveResponse as bg, HiveListQuery as bi, HiveListResponse as bk, UpdateHiveListingRequest as bm, UpdateHiveVersionRequest as bo, HiveInstallRequest as bq, HiveInstall as bs, HiveInstallResponse as bu, RecordHiveInstallRequest as bw, RecordHiveInstallResponse as by, WorkerAliveEventData as c$, SyncAvailableEvent as c0, AskUserOption as c2, AskUserQuestion as c4, AskUserMessage as c6, AskUserResponseStatus as c9, VisionPlanActionEventData as cA, VisionPlanReviewWriteEventData as cC, WorkspaceFileMutationRequestEventData as cF, WorkspaceFileMutationResponseEventData as cH, AppAliveEventData as cJ, ApiServerAliveEventData as cL, MachineAliveEventData as cN, ShutdownMachineData as cP, WorkerInitializingEventData as cR, WorkerInitializedEventData as cT, WorkerPermissionModeValue as cV, WorkerReadyEventData as cX, ActiveAgent as cZ, AskUserResponseReason as ca, AskUserResponseMessage as cc, CompanionHeartbeatMessage as cd, CompanionReminderMessage as ce, CompanionMemoryOrganizationMessage as cf, SubTaskAskUserMessage as cg, TaskSystemMessage as ch, TaskMessagePayload as ci, TaskAgentInfo as ck, EventAckData as cw, VisionPlanCardEventData as cy, RtcSignalEventData as d$, WorkerExitEventData as d1, WorkerRunningEventData as d3, WorkerPermissionModeEventData as d5, WorkerStatusRequestEventData as d7, WorkerStatusValue as d9, TaskArtifactsSummary as dA, TaskMessageEventData as dC, TaskModelUsage as dE, TaskUsageReportEventData as dG, TaskState as dH, ShowModalEventData as dJ, ChangeTaskTitleEventData as dL, TaskStateChangeEventData as dN, CreditExhaustedEventData as dP, RtcIceServer as dR, RtcIceServersRequestEventData as dT, RtcIceServersResponseEventData as dV, MachineRtcRequestEventData as dX, MachineRtcResponseEventData as dZ, WorkerStatusSnapshot as db, ChatWorkersStatusRequestEventData as dd, ChatWorkersStatusResponseEventData as df, ListModelsEventData as dh, CreateTaskEventData as dk, ResumeTaskEventData as dm, CancelTaskEventData as dp, StopTaskEventData as dr, TaskArtifactsStats as dt, PreviewProjectType as dv, PreviewMethod as dx, CompanionInitRequestData as e$, WorkspaceFileRequestEventData as e1, WorkspaceFileResponseEventData as e3, UpdateTaskAgentSessionIdEventData as e5, TaskInfoUpdateEventData as e7, TaskSlashCommand as e9, UpdateAgentInfoEventData as eB, AssociateRepoEventData as eC, SystemMessageType as eD, PrStateChangedData as eE, ResourceLimitsUpdatedData as eF, GitServerUserUpdatedData as eG, SystemMessageEventData as eI, DaemonGitlabOperation as eK, DaemonGitlabRequestEventData as eM, DaemonGitlabResponseEventData as eO, RepositoryInboxWebhookEventData as eR, CompanionHeartbeatRequestData as eT, CompanionHeartbeatResponseData as eV, CompanionMemoryOrganizationRequestData as eX, CompanionMemoryOrganizationResponseData as eZ, TaskSlashCommandsUpdateEventData as eb, MergeRequestEventData as ed, TaskStoppedEventData as ef, SubTaskResultUpdatedEventData as eh, SubTaskAskUserEventData as ej, MergePullRequestEventData as el, MergePullRequestAck as em, DeployAgentEventData as eo, DeployAgentCompleteEventData as eq, HivePublishEventData as es, HivePublishCompleteEventData as eu, HiveInstallEventData as ew, HiveInstallCompleteEventData as ey, TaskTodo as f, CompanionInitResponseData as f1, ResetTaskSessionEventData as f3, EventData as f4, SeqSyncRequestEventData as f6, SeqSyncResponseEventData as f8,
|
|
4498
|
+
export { permissionResponseRequestSchema as $, ListTasksResponseSchema as A, DEFAULT_WORKER_EXECUTION_MODE as D, EnsureIssueRootTaskRequestSchema as E, resumeTaskRequestSchema as F, ResumeTaskResponseSchema as G, CancelTaskRequestSchema as I, cancelTaskRequestSchema as K, ListTasksRequestSchema as L, CancelTaskResponseSchema as M, StopTaskRequestSchema as O, ResumeTaskRequestSchema as R, StartTaskRequestSchema as S, UpdateTaskPreviewUrlRequestSchema as U, stopTaskRequestSchema as V, StopTaskResponseSchema as X, PermissionResponseRequestSchema as Z, WorkerExecutionModeSchema as a, FindTaskByAgentRequestSchema as a$, PermissionResponseResponseSchema as a0, ProjectEntrySchema as a2, ProjectDirectoryResponseSchema as a4, QueryEventsRequestSchema as a6, UpdateTaskTitleResponseSchema as aA, UpdateTaskPreviewUrlResponseSchema as aC, SendTaskMessageRequestSchema as aF, SendTaskMessageResponseSchema as aH, ShowModalRequestSchema as aJ, ShowModalResponseSchema as aL, GetTaskSessionResponseSchema as aN, ListSubTasksRequestSchema as aP, SubTaskSummarySchema as aR, ListSubTasksResponseSchema as aT, ListRecentTasksRequestSchema as aV, RecentTaskSummarySchema as aX, ListRecentTasksResponseSchema as aZ, FillEventsRequestSchema as aa, CreateMergeRequestSchema as ad, createMergeRequestSchema as af, CreateMergeRequestResponseSchema as ag, ApprovePrRequestSchema as ai, ApprovePrResponseSchema as ak, CreateTaskShareSchema as am, CreateTaskShareResponseSchema as ao, ArchiveTaskRequestSchema as aq, ArchiveTaskResponseSchema as as, UnarchiveTaskRequestSchema as au, UnarchiveTaskResponseSchema as aw, UpdateTaskTitleRequestSchema as ay, SyncAvailableEventSchema as b$, FindTaskByAgentResponseSchema as b1, HiveListingTypeSchema as b3, HiveAuthorTypeSchema as b5, HiveListingStatusSchema as b7, HiveSortSchema as b9, CreateHiveReviewRequestSchema as bB, UpdateHiveReviewRequestSchema as bD, HiveReviewListResponseSchema as bF, HiveCommentSchema as bH, CreateHiveCommentRequestSchema as bJ, UpdateHiveCommentRequestSchema as bL, HiveCommentListResponseSchema as bN, HiveInstalledItemSchema as bP, HiveInstalledResponseSchema as bR, HiveMyListingsResponseSchema as bT, SyncStreamTypeSchema as bV, GetStreamVersionQuerySchema as bX, StreamVersionResponseSchema as bZ, HiveListingSchema as bb, PublishToHiveRequestSchema as bd, PublishToHiveResponseSchema as bf, HiveListQuerySchema as bh, HiveListResponseSchema as bj, UpdateHiveListingRequestSchema as bl, UpdateHiveVersionRequestSchema as bn, HiveInstallRequestSchema as bp, HiveInstallSchema as br, HiveInstallResponseSchema as bt, RecordHiveInstallRequestSchema as bv, RecordHiveInstallResponseSchema as bx, HiveReviewSchema as bz, isLocalTaskExecution as c, AskUserOptionSchema as c1, AskUserQuestionSchema as c3, AskUserMessageSchema as c5, AskUserResponseStatusSchema as c7, AskUserResponseReasonSchema as c8, VisionPlanReviewWriteEventSchema as cB, WorkspaceFileMutationOperationSchema as cD, WorkspaceFileMutationRequestSchema as cE, WorkspaceFileMutationResponseSchema as cG, AppAliveEventSchema as cI, ApiServerAliveEventSchema as cK, MachineAliveEventSchema as cM, ShutdownMachineSchema as cO, WorkerInitializingSchema as cQ, WorkerInitializedSchema as cS, WorkerPermissionModeValueSchema as cU, WorkerReadySchema as cW, ActiveAgentSchema as cY, WorkerAliveEventSchema as c_, AskUserResponseMessageSchema as cb, TaskAgentInfoSchema as cj, isAskUserMessage as cl, isAskUserResponseMessage as cm, isCompanionHeartbeatMessage as cn, isCompanionReminderMessage as co, isCompanionMemoryOrganizationMessage as cp, isSubTaskAskUserMessage as cq, isTaskSystemMessage as cr, isSDKMessage as cs, isSDKUserMessage as ct, createEventId as cu, EventAckSchema as cv, VisionPlanCardEventSchema as cx, VisionPlanActionEventSchema as cz, getTaskExecutionMachineRouteId as d, WorkerExitSchema as d0, WorkerRunningSchema as d2, WorkerPermissionModeSchema as d4, WorkerStatusRequestSchema as d6, WorkerStatusValueSchema as d8, TaskMessageSchema as dB, TaskModelUsageSchema as dD, TaskUsageReportEventSchema as dF, ShowModalEventDataSchema as dI, ChangeTaskTitleEventSchema as dK, TaskStateChangeEventSchema as dM, CreditExhaustedEventSchema as dO, RtcIceServerSchema as dQ, RtcIceServersRequestSchema as dS, RtcIceServersResponseSchema as dU, MachineRtcRequestSchema as dW, MachineRtcResponseSchema as dY, RtcSignalSchema as d_, WorkerStatusSnapshotSchema as da, ChatWorkersStatusRequestSchema as dc, ChatWorkersStatusResponseSchema as de, ListModelsEventSchema as dg, baseTaskSchema as di, createTaskSchema as dj, resumeTaskSchema as dl, cancelTaskSchema as dn, StopTaskSchema as dq, TaskArtifactsStatsSchema as ds, PreviewProjectTypeSchema as du, PreviewMethodSchema as dw, PreviewMetadataSchema as dy, TaskArtifactsSummarySchema as dz, TaskTodoSchema as e, WorkspaceFileRequestSchema as e0, WorkspaceFileResponseSchema as e2, UpdateTaskAgentSessionIdEventSchema as e4, TaskInfoUpdateEventDataSchema as e6, TaskSlashCommandSchema as e8, UpdateAgentInfoEventSchema as eA, SystemMessageSchema as eH, DaemonGitlabOperationSchema as eJ, DaemonGitlabRequestSchema as eL, DaemonGitlabResponseSchema as eN, RepositoryInboxProviderSchema as eP, RepositoryInboxWebhookSchema as eQ, CompanionHeartbeatRequestSchema as eS, CompanionHeartbeatResponseSchema as eU, CompanionMemoryOrganizationRequestSchema as eW, CompanionMemoryOrganizationResponseSchema as eY, CompanionInitRequestSchema as e_, TaskSlashCommandsUpdateEventDataSchema as ea, MergeRequestEventSchema as ec, TaskStoppedEventSchema as ee, SubTaskResultUpdatedEventSchema as eg, SubTaskAskUserEventSchema as ei, MergePullRequestEventSchema as ek, DeployAgentEventSchema as en, DeployAgentCompleteEventSchema as ep, HivePublishEventSchema as er, HivePublishCompleteEventSchema as et, HiveInstallEventSchema as ev, HiveInstallCompleteEventSchema as ex, AssociateRepoEventDataSchema as ez, AgentConfigValidationError as f$, CompanionInitResponseSchema as f0, ResetTaskSessionSchema as f2, SeqSyncRequestEventDataSchema as f5, SeqSyncResponseEventDataSchema as f7, WorkspaceCacheUpdateEventDataSchema as f9, MachineControlUpdatedStatusSchema as fA, MachineControlUpdatedSchema as fC, RpcCallEventSchema as fF, MachineRpcCallEventSchema as fH, RpcResponseSchema as fJ, setAgentContext as fN, getAgentContext as fO, FRAMEWORK_TYPES as fW, AgentMetadataSchema as fX, ClaudeConfigSchema as fY, AgentError as fZ, AgentNotFoundError as f_, EventSchemaMap as fd, workerTaskEvents as ff, MachineControlActionSchema as fg, MachineControlTargetSchema as fi, MachineControlErrorCodeSchema as fk, MachineControlPingResultSchema as fm, MachineActionRequestSchema as fo, MachineActionPendingSchema as fq, ExecuteMachineActionResponseSchema as fs, MachineControlCommandSchema as fu, MachineControlProgressStatusSchema as fw, MachineControlProgressSchema as fy, getTaskExecutionMode as g, FrameworkNotSupportedError as g0, AgentLoadError as g1, MissingAgentFileError as g2, TaskUsageSummarySchema as h, isCloudTaskExecution as i, TaskPreviewUrlSchema as k, normalizeWorkerExecutionMode as n, startTaskSchema as o, StartTaskResponseSchema as p, supportsTaskUserCwd as s, taskExecutionModes as t, TaskItemSchema as u, workerExecutionModes as w, EnsureIssueRootTaskResponseSchema as x };
|
|
4499
|
+
export type { ListTasksResponse as B, ResumeTaskRequest as C, ResumeTaskResponse as H, CancelTaskRequest as J, CancelTaskResponse as N, PreviewMetadata as P, StopTaskRequest as Q, TaskExecutionMode as T, WorkerExecutionMode as W, StopTaskResponse as Y, PermissionResponseRequest as _, PermissionResponseResponse as a1, ProjectEntry as a3, ProjectDirectoryResponse as a5, QueryEventsRequest as a7, TaskEvent as a8, QueryEventsResponse as a9, UpdateTaskTitleResponse as aB, UpdateTaskPreviewUrlResponse as aD, SendMessageTarget as aE, SendTaskMessageRequest as aG, SendTaskMessageResponse as aI, ShowModalRequest as aK, ShowModalResponse as aM, GetTaskSessionResponse as aO, ListSubTasksRequest as aQ, SubTaskSummary as aS, ListSubTasksResponse as aU, ListRecentTasksRequest as aW, RecentTaskSummary as aY, ListRecentTasksResponse as a_, FillEventsRequest as ab, FillEventsResponse as ac, CreateMergeRequestRequest as ae, CreateMergeRequestResponse as ah, ApprovePrRequest as aj, ApprovePrResponse as al, CreateTaskShareRequest as an, CreateTaskShareResponse as ap, ArchiveTaskRequest as ar, ArchiveTaskResponse as at, UnarchiveTaskRequest as av, UnarchiveTaskResponse as ax, UpdateTaskTitleRequest as az, TaskExecutionTarget as b, FindTaskByAgentRequest as b0, FindTaskByAgentResponse as b2, HiveListingType as b4, HiveAuthorType as b6, HiveListingStatus as b8, HiveReview as bA, CreateHiveReviewRequest as bC, UpdateHiveReviewRequest as bE, HiveReviewListResponse as bG, HiveComment as bI, CreateHiveCommentRequest as bK, UpdateHiveCommentRequest as bM, HiveCommentListResponse as bO, HiveInstalledItem as bQ, HiveInstalledResponse as bS, HiveMyListingsResponse as bU, SyncStreamType as bW, GetStreamVersionQuery as bY, StreamVersionResponse as b_, HiveSort as ba, HiveListing as bc, PublishToHiveRequest as be, PublishToHiveResponse as bg, HiveListQuery as bi, HiveListResponse as bk, UpdateHiveListingRequest as bm, UpdateHiveVersionRequest as bo, HiveInstallRequest as bq, HiveInstall as bs, HiveInstallResponse as bu, RecordHiveInstallRequest as bw, RecordHiveInstallResponse as by, WorkerAliveEventData as c$, SyncAvailableEvent as c0, AskUserOption as c2, AskUserQuestion as c4, AskUserMessage as c6, AskUserResponseStatus as c9, VisionPlanActionEventData as cA, VisionPlanReviewWriteEventData as cC, WorkspaceFileMutationRequestEventData as cF, WorkspaceFileMutationResponseEventData as cH, AppAliveEventData as cJ, ApiServerAliveEventData as cL, MachineAliveEventData as cN, ShutdownMachineData as cP, WorkerInitializingEventData as cR, WorkerInitializedEventData as cT, WorkerPermissionModeValue as cV, WorkerReadyEventData as cX, ActiveAgent as cZ, AskUserResponseReason as ca, AskUserResponseMessage as cc, CompanionHeartbeatMessage as cd, CompanionReminderMessage as ce, CompanionMemoryOrganizationMessage as cf, SubTaskAskUserMessage as cg, TaskSystemMessage as ch, TaskMessagePayload as ci, TaskAgentInfo as ck, EventAckData as cw, VisionPlanCardEventData as cy, RtcSignalEventData as d$, WorkerExitEventData as d1, WorkerRunningEventData as d3, WorkerPermissionModeEventData as d5, WorkerStatusRequestEventData as d7, WorkerStatusValue as d9, TaskArtifactsSummary as dA, TaskMessageEventData as dC, TaskModelUsage as dE, TaskUsageReportEventData as dG, TaskState as dH, ShowModalEventData as dJ, ChangeTaskTitleEventData as dL, TaskStateChangeEventData as dN, CreditExhaustedEventData as dP, RtcIceServer as dR, RtcIceServersRequestEventData as dT, RtcIceServersResponseEventData as dV, MachineRtcRequestEventData as dX, MachineRtcResponseEventData as dZ, WorkerStatusSnapshot as db, ChatWorkersStatusRequestEventData as dd, ChatWorkersStatusResponseEventData as df, ListModelsEventData as dh, CreateTaskEventData as dk, ResumeTaskEventData as dm, CancelTaskEventData as dp, StopTaskEventData as dr, TaskArtifactsStats as dt, PreviewProjectType as dv, PreviewMethod as dx, CompanionInitRequestData as e$, WorkspaceFileRequestEventData as e1, WorkspaceFileResponseEventData as e3, UpdateTaskAgentSessionIdEventData as e5, TaskInfoUpdateEventData as e7, TaskSlashCommand as e9, UpdateAgentInfoEventData as eB, AssociateRepoEventData as eC, SystemMessageType as eD, PrStateChangedData as eE, ResourceLimitsUpdatedData as eF, GitServerUserUpdatedData as eG, SystemMessageEventData as eI, DaemonGitlabOperation as eK, DaemonGitlabRequestEventData as eM, DaemonGitlabResponseEventData as eO, RepositoryInboxWebhookEventData as eR, CompanionHeartbeatRequestData as eT, CompanionHeartbeatResponseData as eV, CompanionMemoryOrganizationRequestData as eX, CompanionMemoryOrganizationResponseData as eZ, TaskSlashCommandsUpdateEventData as eb, MergeRequestEventData as ed, TaskStoppedEventData as ef, SubTaskResultUpdatedEventData as eh, SubTaskAskUserEventData as ej, MergePullRequestEventData as el, MergePullRequestAck as em, DeployAgentEventData as eo, DeployAgentCompleteEventData as eq, HivePublishEventData as es, HivePublishCompleteEventData as eu, HiveInstallEventData as ew, HiveInstallCompleteEventData as ey, TaskTodo as f, CompanionInitResponseData as f1, ResetTaskSessionEventData as f3, EventData as f4, SeqSyncRequestEventData as f6, SeqSyncResponseEventData as f8, MachineControlUpdatedStatus as fB, MachineControlUpdatedEventData as fD, MachineControlRelayContext as fE, RpcCallEventData as fG, MachineRpcCallEventData as fI, RpcResponseData as fK, AgentContext as fL, AgentrixContext as fM, FrameworkType as fP, AgentMetadata as fQ, ClaudeAgentConfig as fR, AgentConfig as fS, ValidationResult as fT, LoadAgentOptions as fU, HookFactory as fV, WorkspaceCacheUpdateEventData as fa, EventMap as fb, EventName as fc, WorkerTaskEvent as fe, MachineControlAction as fh, MachineControlTarget as fj, MachineControlErrorCode as fl, MachineControlPingResult as fn, MachineActionRequestEventData as fp, MachineActionPending as fr, ExecuteMachineActionResponse as ft, MachineControlCommandEventData as fv, MachineControlProgressStatus as fx, MachineControlProgressEventData as fz, TaskUsageSummary as j, UpdateTaskPreviewUrlRequest as l, StartTaskRequest as m, StartTaskResponse as q, EnsureIssueRootTaskRequest as r, TaskItem as v, EnsureIssueRootTaskResponse as y, ListTasksRequest as z };
|