release: v0.9.10

This commit is contained in:
opencode
2025-09-17 14:54:25 +00:00
parent 16f9edc1a0
commit 9ca48d3a39
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.9.9",
"version": "0.9.10",
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit"

View File

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