@rallycry/conveyor-agent 5.11.1 → 5.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/{chunk-U3YWTVH3.js → chunk-SQJJL2PU.js} +265 -56
- package/dist/chunk-SQJJL2PU.js.map +1 -0
- package/dist/cli.js +1 -1
- package/dist/index.d.ts +36 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-U3YWTVH3.js.map +0 -1
package/dist/cli.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -91,6 +91,7 @@ declare class ProjectRunner {
|
|
|
91
91
|
private heartbeatTimer;
|
|
92
92
|
private stopping;
|
|
93
93
|
private resolveLifecycle;
|
|
94
|
+
private chatSessionIds;
|
|
94
95
|
private startCommandChild;
|
|
95
96
|
private startCommandRunning;
|
|
96
97
|
private setupComplete;
|
|
@@ -235,6 +236,7 @@ interface TaskAssignment {
|
|
|
235
236
|
interface IncomingChatMessage {
|
|
236
237
|
content: string;
|
|
237
238
|
userId: string;
|
|
239
|
+
chatId?: string;
|
|
238
240
|
files?: {
|
|
239
241
|
id: string;
|
|
240
242
|
fileName: string;
|
|
@@ -315,7 +317,40 @@ declare class ProjectConnection {
|
|
|
315
317
|
emitChatMessage(content: string): Promise<void>;
|
|
316
318
|
emitAgentStatus(status: string): void;
|
|
317
319
|
fetchAgentContext(): Promise<AgentContext | null>;
|
|
318
|
-
fetchChatHistory(limit?: number): Promise<ChatHistoryMessage[]>;
|
|
320
|
+
fetchChatHistory(limit?: number, chatId?: string): Promise<ChatHistoryMessage[]>;
|
|
321
|
+
requestListTasks(params: {
|
|
322
|
+
status?: string;
|
|
323
|
+
assigneeId?: string;
|
|
324
|
+
limit?: number;
|
|
325
|
+
}): Promise<unknown[]>;
|
|
326
|
+
requestGetTask(taskId: string): Promise<unknown>;
|
|
327
|
+
requestCreateTask(params: {
|
|
328
|
+
title: string;
|
|
329
|
+
description?: string;
|
|
330
|
+
plan?: string;
|
|
331
|
+
status?: string;
|
|
332
|
+
isBug?: boolean;
|
|
333
|
+
}): Promise<{
|
|
334
|
+
id: string;
|
|
335
|
+
slug: string;
|
|
336
|
+
}>;
|
|
337
|
+
requestUpdateTask(params: {
|
|
338
|
+
taskId: string;
|
|
339
|
+
title?: string;
|
|
340
|
+
description?: string;
|
|
341
|
+
plan?: string;
|
|
342
|
+
status?: string;
|
|
343
|
+
assignedUserId?: string | null;
|
|
344
|
+
}): Promise<unknown>;
|
|
345
|
+
requestSearchTasks(params: {
|
|
346
|
+
tagNames?: string[];
|
|
347
|
+
searchQuery?: string;
|
|
348
|
+
statusFilters?: string[];
|
|
349
|
+
limit?: number;
|
|
350
|
+
}): Promise<unknown[]>;
|
|
351
|
+
requestListTags(): Promise<unknown[]>;
|
|
352
|
+
requestGetProjectSummary(): Promise<unknown>;
|
|
353
|
+
private requestWithCallback;
|
|
319
354
|
emitNewCommitsDetected(data: {
|
|
320
355
|
branch: string;
|
|
321
356
|
commitCount: number;
|
package/dist/index.js
CHANGED