@rallycry/conveyor-agent 7.3.7 → 7.3.8
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
|
@@ -57,6 +57,8 @@ declare class AgentConnection {
|
|
|
57
57
|
private softStopCallback;
|
|
58
58
|
private modeChangeCallback;
|
|
59
59
|
private apiKeyUpdateCallback;
|
|
60
|
+
private pullBranchCallback;
|
|
61
|
+
private earlyPullBranches;
|
|
60
62
|
constructor(config: AgentConnectionConfig);
|
|
61
63
|
get sessionId(): string;
|
|
62
64
|
get connected(): boolean;
|
|
@@ -70,6 +72,9 @@ declare class AgentConnection {
|
|
|
70
72
|
onSoftStop(callback: () => void): void;
|
|
71
73
|
onModeChange(callback: (data: SetModeData) => void): void;
|
|
72
74
|
onApiKeyUpdate(callback: (data: ApiKeyUpdateData) => void): void;
|
|
75
|
+
onPullBranch(callback: (data: {
|
|
76
|
+
branch: string;
|
|
77
|
+
}) => void): void;
|
|
73
78
|
emitStatus(status: string): Promise<void>;
|
|
74
79
|
postChatMessage(content: string): void;
|
|
75
80
|
postChatMessageAwait(content: string): Promise<void>;
|
package/dist/index.js
CHANGED