@rallycry/conveyor-agent 10.13.11 → 10.13.12
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.
|
@@ -2354,6 +2354,11 @@ var AskUserQuestionRequestSchema = z3.object({
|
|
|
2354
2354
|
requestId: z3.string().min(1),
|
|
2355
2355
|
questions: z3.array(AgentQuestionSchema).min(1)
|
|
2356
2356
|
});
|
|
2357
|
+
var PostAgentMessageRequestSchema = z3.object({
|
|
2358
|
+
sessionId: z3.string().min(1),
|
|
2359
|
+
content: z3.string(),
|
|
2360
|
+
milestone: z3.enum(["plan_ready", "implementation_complete", "blocked"]).optional()
|
|
2361
|
+
});
|
|
2357
2362
|
var EmitAgentEventRequestSchema = z3.object({
|
|
2358
2363
|
sessionId: z3.string(),
|
|
2359
2364
|
events: z3.array(AgentEventSchema).max(500)
|
|
@@ -2602,6 +2607,17 @@ var QueryProjectGcpLogsRequestSchema = z4.object({
|
|
|
2602
2607
|
limit: z4.number().int().min(1).max(200).optional().default(50),
|
|
2603
2608
|
pageToken: z4.string().max(4096).optional()
|
|
2604
2609
|
});
|
|
2610
|
+
var QueryProjectGrafanaLogsRequestSchema = z4.object({
|
|
2611
|
+
projectId: z4.string(),
|
|
2612
|
+
env: z4.enum(["prod", "dev"]).optional(),
|
|
2613
|
+
services: z4.array(z4.string().min(1).max(200)).max(25).optional(),
|
|
2614
|
+
level: z4.enum(["debug", "info", "warn", "error", "fatal"]).optional(),
|
|
2615
|
+
search: z4.string().max(256).optional(),
|
|
2616
|
+
logql: z4.string().max(2e3).optional(),
|
|
2617
|
+
startTime: z4.string().optional(),
|
|
2618
|
+
endTime: z4.string().optional(),
|
|
2619
|
+
limit: z4.number().int().min(1).max(200).optional().default(50)
|
|
2620
|
+
});
|
|
2605
2621
|
var StartProjectBuildRequestSchema = z4.object({
|
|
2606
2622
|
projectId: z4.string(),
|
|
2607
2623
|
taskId: z4.string(),
|
|
@@ -9643,7 +9659,7 @@ async function runSdkQuery(host, context, followUpContent, promptDeliveryOverrid
|
|
|
9643
9659
|
await runFollowUpQuery(host, context, options, resume, followUpContent);
|
|
9644
9660
|
return;
|
|
9645
9661
|
}
|
|
9646
|
-
if (isDiscoveryLike &&
|
|
9662
|
+
if (isDiscoveryLike && (resume || host.harnessKind !== "pty")) {
|
|
9647
9663
|
return;
|
|
9648
9664
|
}
|
|
9649
9665
|
await runInitialQuery(host, context, options, resume, promptDelivery);
|
|
@@ -11934,4 +11950,4 @@ export {
|
|
|
11934
11950
|
loadConveyorConfig,
|
|
11935
11951
|
unshallowRepo
|
|
11936
11952
|
};
|
|
11937
|
-
//# sourceMappingURL=chunk-
|
|
11953
|
+
//# sourceMappingURL=chunk-4KIPA6LF.js.map
|