docs: regenerate the config catalog source line

The ACP bridge's new structural teardown type shifts its Config declaration.
This commit is contained in:
Dudu-0223
2026-07-30 15:19:53 +08:00
committed by Tianyi Cui
parent 542a01c407
commit 19d034169e
2 changed files with 3 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ export interface AcpConfig {
Depends on: `Stream` (`@agentclientprotocol/sdk`)
Source: [`packages/acp/acp/src/index.ts:57`](../packages/acp/acp/src/index.ts)
Source: [`packages/acp/acp/src/index.ts:67`](../packages/acp/acp/src/index.ts)
## `@deepseek-ai/dsh-acp-demo`

View File

@@ -35,7 +35,7 @@ describe('ACP connection ownership', () => {
order.push('drained')
return Promise.resolve()
},
} as never, true)
} as never)
await harness.client.initialize({ protocolVersion: PROTOCOL_VERSION, clientCapabilities: {} })
const { sessionId } = await harness.client.newSession({ cwd: process.cwd(), mcpServers: [] })
harness.ctx.on('agent/disposed', () => { order.push('agent disposed') })
@@ -52,7 +52,7 @@ describe('ACP connection ownership', () => {
harness.ctx.logger.warn = (message: string) => { warnings.push(message) }
harness.ctx.provide('subagents', {
drainContinuable: () => Promise.reject(new Error('activation teardown failed')),
} as never, true)
} as never)
await harness.client.initialize({ protocolVersion: PROTOCOL_VERSION, clientCapabilities: {} })
const { sessionId } = await harness.client.newSession({ cwd: process.cwd(), mcpServers: [] })