@rallycry/conveyor-agent 7.0.2 → 7.0.3
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/cli.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -56,6 +56,8 @@ declare class AgentConnection {
|
|
|
56
56
|
call<M extends keyof AgentSessionServiceMethods>(method: M, payload: AgentSessionServiceMethods[M]["payload"]): Promise<AgentSessionServiceMethods[M]["response"]>;
|
|
57
57
|
connect(): Promise<void>;
|
|
58
58
|
disconnect(): void;
|
|
59
|
+
private reconnectToSession;
|
|
60
|
+
private drainPendingMessages;
|
|
59
61
|
onMessage(callback: (msg: IncomingMessage) => void): void;
|
|
60
62
|
onStop(callback: () => void): void;
|
|
61
63
|
onSoftStop(callback: () => void): void;
|
|
@@ -354,6 +356,7 @@ declare class ProjectRunner {
|
|
|
354
356
|
private wireEventHandlers;
|
|
355
357
|
private handleReconnect;
|
|
356
358
|
private handleAuditTags;
|
|
359
|
+
private killAgent;
|
|
357
360
|
private handleAssignment;
|
|
358
361
|
private handleStopTask;
|
|
359
362
|
private checkoutWorkspaceBranch;
|
package/dist/index.js
CHANGED