@rallycry/conveyor-agent 4.10.0 → 4.10.2
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
|
@@ -158,6 +158,7 @@ declare class ConveyorConnection {
|
|
|
158
158
|
}[];
|
|
159
159
|
}): void;
|
|
160
160
|
emitStatus(status: string): void;
|
|
161
|
+
emitAuthToken(token: string): void;
|
|
161
162
|
emitRateLimitPause(resetsAt: string): void;
|
|
162
163
|
sendHeartbeat(): void;
|
|
163
164
|
sendTypingStart(): void;
|
|
@@ -295,7 +296,12 @@ interface ConveyorConfig {
|
|
|
295
296
|
setupCommand?: string;
|
|
296
297
|
startCommand?: string;
|
|
297
298
|
previewPort?: number;
|
|
299
|
+
authTokenCommand?: string;
|
|
298
300
|
}
|
|
301
|
+
/**
|
|
302
|
+
* Load config from env vars (project-level settings injected via bootstrap),
|
|
303
|
+
* then fall back to file-based .conveyor/config.json.
|
|
304
|
+
*/
|
|
299
305
|
declare function loadConveyorConfig(workspaceDir: string): Promise<ConveyorConfig | null>;
|
|
300
306
|
|
|
301
307
|
declare function runSetupCommand(cmd: string, cwd: string, onOutput: (stream: "stdout" | "stderr", data: string) => void): Promise<void>;
|
package/dist/index.js
CHANGED