diff options
| author | opencode <[email protected]> | 2025-09-17 14:54:25 +0000 |
|---|---|---|
| committer | opencode <[email protected]> | 2025-09-17 14:54:25 +0000 |
| commit | 9ca48d3a39d5c4d7c004bc24e48688822b5a935b (patch) | |
| tree | 8074d0553c67c0fc944898a01a243d69b2c743ae /packages/sdk/js | |
| parent | 16f9edc1a01c01df951b3caeb0487e9476f60453 (diff) | |
| download | opencode-9ca48d3a39d5c4d7c004bc24e48688822b5a935b.tar.gz opencode-9ca48d3a39d5c4d7c004bc24e48688822b5a935b.zip | |
release: v0.9.10
Diffstat (limited to 'packages/sdk/js')
| -rw-r--r-- | packages/sdk/js/package.json | 2 | ||||
| -rw-r--r-- | packages/sdk/js/src/gen/types.gen.ts | 9 |
2 files changed, 10 insertions, 1 deletions
diff --git a/packages/sdk/js/package.json b/packages/sdk/js/package.json index 1b91cdcf5..e06660cdd 100644 --- a/packages/sdk/js/package.json +++ b/packages/sdk/js/package.json @@ -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" diff --git a/packages/sdk/js/src/gen/types.gen.ts b/packages/sdk/js/src/gen/types.gen.ts index e0cf7cdfd..0a8513baa 100644 --- a/packages/sdk/js/src/gen/types.gen.ts +++ b/packages/sdk/js/src/gen/types.gen.ts @@ -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 |
