release: v0.11.4

This commit is contained in:
opencode
2025-09-26 05:56:03 +00:00
parent 55d154d4ac
commit 1c878c662b
13 changed files with 29 additions and 20 deletions

View File

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

View File

@@ -631,6 +631,9 @@ export type TextPart = {
start: number
end?: number
}
metadata?: {
[key: string]: unknown
}
}
export type ReasoningPart = {
@@ -751,6 +754,9 @@ export type ToolPart = {
callID: string
tool: string
state: ToolState
metadata?: {
[key: string]: unknown
}
}
export type StepStartPart = {
@@ -827,6 +833,9 @@ export type TextPartInput = {
start: number
end?: number
}
metadata?: {
[key: string]: unknown
}
}
export type FilePartInput = {