@wrongstack/acp 0.309.0 → 0.310.0

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.
@@ -1,13 +1,13 @@
1
- export { StdioTransport } from './stdio-transport.js';
2
- export { ACPToolsRegistry } from './tools-registry.js';
1
+ export type { ClientCapabilities, RunTurn, RunTurnApi, RunTurnInput, RunTurnPermissionRequest, RunTurnResult, SessionPersistence, } from './protocol-handler.js';
3
2
  export { ACPProtocolHandler } from './protocol-handler.js';
4
- export type { RunTurn, RunTurnApi, RunTurnInput, RunTurnResult, RunTurnPermissionRequest, SessionPersistence, ClientCapabilities, } from './protocol-handler.js';
5
- export { ACPSessionStore } from './session-store.js';
6
- export type { SessionStoreOptions, PersistedSession } from './session-store.js';
7
- export { WsBridgeTransport } from './ws-bridge-transport.js';
8
- export { WrongStackACPServer } from './wrongstack-acp-agent.js';
9
- export type { WrongStackACPServerOptions } from './wrongstack-acp-agent.js';
10
- export { makeACPServerAgentTurn } from './server-agent-turn.js';
11
3
  export type { ACPServerAgentTurnOptions } from './server-agent-turn.js';
4
+ export { makeACPServerAgentTurn } from './server-agent-turn.js';
5
+ export type { PersistedSession, SessionStoreOptions } from './session-store.js';
6
+ export { ACPSessionStore } from './session-store.js';
12
7
  export type { AgentServerTransport } from './stdio-transport.js';
8
+ export { StdioTransport } from './stdio-transport.js';
9
+ export { ACPToolsRegistry } from './tools-registry.js';
10
+ export type { WrongStackACPServerOptions } from './wrongstack-acp-agent.js';
11
+ export { WrongStackACPServer } from './wrongstack-acp-agent.js';
12
+ export { WsBridgeTransport } from './ws-bridge-transport.js';
13
13
  //# sourceMappingURL=index.d.ts.map
@@ -5,8 +5,8 @@
5
5
  import type { ACPMessage } from '../types/acp-messages.js';
6
6
  import { ACP_PROTOCOL_VERSION, type ContentBlock, type PermissionOption, type PlanEntry, type RequestPermissionOutcome, type StopReason, type ToolKind, type UsageCost } from '../types/acp-v1.js';
7
7
  import type { AgentServerTransport } from './stdio-transport.js';
8
- export { ACP_PROTOCOL_VERSION };
9
8
  export type { ACPMessage, ContentBlock, RequestPermissionOutcome };
9
+ export { ACP_PROTOCOL_VERSION };
10
10
  type WireMessage = {
11
11
  jsonrpc?: '2.0';
12
12
  id?: string | number;