@opencode-ai/sdk 0.9.10 → 0.9.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -609,9 +609,6 @@ export type TextPart = {
609
609
  type: "text";
610
610
  text: string;
611
611
  synthetic?: boolean;
612
- metadata?: {
613
- [key: string]: unknown;
614
- };
615
612
  time?: {
616
613
  start: number;
617
614
  end?: number;
@@ -723,9 +720,6 @@ export type ToolPart = {
723
720
  callID: string;
724
721
  tool: string;
725
722
  state: ToolState;
726
- metadata?: {
727
- [key: string]: unknown;
728
- };
729
723
  };
730
724
  export type StepStartPart = {
731
725
  id: string;
@@ -782,9 +776,6 @@ export type TextPartInput = {
782
776
  type: "text";
783
777
  text: string;
784
778
  synthetic?: boolean;
785
- metadata?: {
786
- [key: string]: unknown;
787
- };
788
779
  time?: {
789
780
  start: number;
790
781
  end?: number;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@opencode-ai/sdk",
4
- "version": "0.9.10",
4
+ "version": "0.9.11",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "typecheck": "tsc --noEmit"