@openacp/cli 0.4.3 → 0.4.4

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
@@ -342,7 +342,7 @@ async function cmdDefault(command2) {
342
342
  }
343
343
  const { markRunning } = await import("./daemon-SLGQGRKO.js");
344
344
  markRunning();
345
- const { startServer } = await import("./main-3WJFOTNT.js");
345
+ const { startServer } = await import("./main-QFEJO2NB.js");
346
346
  await startServer();
347
347
  }
348
348
 
@@ -367,7 +367,7 @@ var commands = {
367
367
  "reset": () => cmdReset(),
368
368
  "update": () => cmdUpdate(),
369
369
  "--daemon-child": async () => {
370
- const { startServer } = await import("./main-3WJFOTNT.js");
370
+ const { startServer } = await import("./main-QFEJO2NB.js");
371
371
  await startServer();
372
372
  }
373
373
  };
package/dist/index.d.ts CHANGED
@@ -106,6 +106,7 @@ interface SessionRecord<P = Record<string, unknown>> {
106
106
  createdAt: string;
107
107
  lastActiveAt: string;
108
108
  name?: string;
109
+ dangerousMode?: boolean;
109
110
  platform: P;
110
111
  }
111
112
  interface TelegramPlatformData {
@@ -699,6 +700,7 @@ declare class SessionManager {
699
700
  updateSessionPlatform(sessionId: string, platform: Record<string, unknown>): Promise<void>;
700
701
  updateSessionActivity(sessionId: string): Promise<void>;
701
702
  updateSessionStatus(sessionId: string, status: SessionStatus): Promise<void>;
703
+ updateSessionDangerousMode(sessionId: string, dangerousMode: boolean): Promise<void>;
702
704
  updateSessionName(sessionId: string, name: string): Promise<void>;
703
705
  getSessionRecord(sessionId: string): SessionRecord | undefined;
704
706
  cancelSession(sessionId: string): Promise<void>;
package/dist/index.js CHANGED
@@ -15,7 +15,7 @@ import {
15
15
  TypedEmitter,
16
16
  nodeToWebReadable,
17
17
  nodeToWebWritable
18
- } from "./chunk-GA26H6JY.js";
18
+ } from "./chunk-VRXFGWZJ.js";
19
19
  import {
20
20
  runConfigEditor
21
21
  } from "./chunk-WHKLPZGK.js";
@@ -3,7 +3,7 @@ import {
3
3
  ApiServer,
4
4
  OpenACPCore,
5
5
  TelegramAdapter
6
- } from "./chunk-GA26H6JY.js";
6
+ } from "./chunk-VRXFGWZJ.js";
7
7
  import "./chunk-WHKLPZGK.js";
8
8
  import {
9
9
  loadAdapterFactory
@@ -168,4 +168,4 @@ export {
168
168
  RESTART_EXIT_CODE,
169
169
  startServer
170
170
  };
171
- //# sourceMappingURL=main-3WJFOTNT.js.map
171
+ //# sourceMappingURL=main-QFEJO2NB.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openacp/cli",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Self-hosted bridge for AI coding agents via ACP protocol",
5
5
  "type": "module",
6
6
  "bin": {