release: v0.9.11

This commit is contained in:
opencode
2025-09-17 16:29:48 +00:00
parent 3c3d6b65c2
commit 733b21e22b
13 changed files with 20 additions and 29 deletions

View File

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

View File

@@ -649,9 +649,6 @@ export type TextPart = {
type: "text"
text: string
synthetic?: boolean
metadata?: {
[key: string]: unknown
}
time?: {
start: number
end?: number
@@ -776,9 +773,6 @@ export type ToolPart = {
callID: string
tool: string
state: ToolState
metadata?: {
[key: string]: unknown
}
}
export type StepStartPart = {
@@ -851,9 +845,6 @@ export type TextPartInput = {
type: "text"
text: string
synthetic?: boolean
metadata?: {
[key: string]: unknown
}
time?: {
start: number
end?: number