@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.
- package/dist/gen/types.gen.d.ts +0 -9
- package/package.json +1 -1
package/dist/gen/types.gen.d.ts
CHANGED
|
@@ -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;
|