mirror of
https://github.com/aljazceru/opencode.git
synced 2025-12-20 01:04:22 +01:00
release: v0.9.10
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user