release: v0.11.4

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

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 = {