@autohq/cli 0.1.412 → 0.1.413
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/agent-bridge.js +5 -9
- package/dist/index.js +5 -9
- package/package.json +1 -1
package/dist/agent-bridge.js
CHANGED
|
@@ -30820,7 +30820,7 @@ Object.assign(lookup, {
|
|
|
30820
30820
|
// package.json
|
|
30821
30821
|
var package_default = {
|
|
30822
30822
|
name: "@autohq/cli",
|
|
30823
|
-
version: "0.1.
|
|
30823
|
+
version: "0.1.413",
|
|
30824
30824
|
license: "SEE LICENSE IN README.md",
|
|
30825
30825
|
publishConfig: {
|
|
30826
30826
|
access: "public"
|
|
@@ -82675,15 +82675,11 @@ var CodexAgentBridgeSessionImpl = class {
|
|
|
82675
82675
|
this.input.writeOutput?.(
|
|
82676
82676
|
`agent_bridge_codex_deferred_flush count=${pending.length}`
|
|
82677
82677
|
);
|
|
82678
|
-
void (
|
|
82679
|
-
|
|
82680
|
-
|
|
82681
|
-
await this.sendMessage(message, { mode: "interrupt" });
|
|
82682
|
-
} catch (error51) {
|
|
82683
|
-
void this.input.onError(error51);
|
|
82684
|
-
}
|
|
82678
|
+
void this.sendMessage(pending.join("\n\n"), { mode: "interrupt" }).catch(
|
|
82679
|
+
(error51) => {
|
|
82680
|
+
void this.input.onError(error51);
|
|
82685
82681
|
}
|
|
82686
|
-
|
|
82682
|
+
);
|
|
82687
82683
|
}
|
|
82688
82684
|
// ---------------------------------------------------------------------------
|
|
82689
82685
|
// Item settlement
|
package/dist/index.js
CHANGED
|
@@ -37708,7 +37708,7 @@ var init_package = __esm({
|
|
|
37708
37708
|
"package.json"() {
|
|
37709
37709
|
package_default = {
|
|
37710
37710
|
name: "@autohq/cli",
|
|
37711
|
-
version: "0.1.
|
|
37711
|
+
version: "0.1.413",
|
|
37712
37712
|
license: "SEE LICENSE IN README.md",
|
|
37713
37713
|
publishConfig: {
|
|
37714
37714
|
access: "public"
|
|
@@ -53371,15 +53371,11 @@ var CodexAgentBridgeSessionImpl = class {
|
|
|
53371
53371
|
this.input.writeOutput?.(
|
|
53372
53372
|
`agent_bridge_codex_deferred_flush count=${pending.length}`
|
|
53373
53373
|
);
|
|
53374
|
-
void (
|
|
53375
|
-
|
|
53376
|
-
|
|
53377
|
-
await this.sendMessage(message, { mode: "interrupt" });
|
|
53378
|
-
} catch (error51) {
|
|
53379
|
-
void this.input.onError(error51);
|
|
53380
|
-
}
|
|
53374
|
+
void this.sendMessage(pending.join("\n\n"), { mode: "interrupt" }).catch(
|
|
53375
|
+
(error51) => {
|
|
53376
|
+
void this.input.onError(error51);
|
|
53381
53377
|
}
|
|
53382
|
-
|
|
53378
|
+
);
|
|
53383
53379
|
}
|
|
53384
53380
|
// ---------------------------------------------------------------------------
|
|
53385
53381
|
// Item settlement
|