release: v0.15.3

This commit is contained in:
opencode
2025-10-14 18:44:21 +00:00
parent 0c022ef39d
commit 83be5b0171
17 changed files with 31 additions and 31 deletions

View File

@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@opencode-ai/sdk",
"version": "0.15.2",
"version": "0.15.3",
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
@@ -25,4 +25,4 @@
"publishConfig": {
"directory": "dist"
}
}
}

View File

@@ -184,7 +184,7 @@ export const createClient = (config: Config = {}): Client => {
const { opts, url } = await beforeRequest(options)
return createSseClient({
...opts,
body: opts.body as any,
body: opts.body as BodyInit | null | undefined,
headers: opts.headers as unknown as Record<string, string>,
method,
url,