release: v0.15.29

This commit is contained in:
opencode
2025-10-30 06:49:34 +00:00
parent aca32eaa1c
commit 4b3a841dd9
15 changed files with 32 additions and 24 deletions

View File

@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@opencode-ai/sdk",
"version": "0.15.28",
"version": "0.15.29",
"type": "module",
"scripts": {
"typecheck": "tsgo --noEmit",

View File

@@ -275,6 +275,10 @@ export type McpLocalConfig = {
* Enable or disable the MCP server on startup
*/
enabled?: boolean
/**
* Timeout in ms for fetching tools from the MCP server. Defaults to 5000 (5 seconds) if not specified.
*/
timeout?: number
}
export type McpRemoteConfig = {
@@ -296,6 +300,10 @@ export type McpRemoteConfig = {
headers?: {
[key: string]: string
}
/**
* Timeout in ms for fetching tools from the MCP server. Defaults to 5000 (5 seconds) if not specified.
*/
timeout?: number
}
/**