@opencode-ai/sdk 0.0.0-opentui-202510210139 → 0.0.0-opentui-202510211515
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 +3 -0
- package/package.json +1 -1
package/dist/gen/types.gen.d.ts
CHANGED
|
@@ -911,6 +911,7 @@ export type FileNode = {
|
|
|
911
911
|
ignored: boolean;
|
|
912
912
|
};
|
|
913
913
|
export type FileContent = {
|
|
914
|
+
type: "text";
|
|
914
915
|
content: string;
|
|
915
916
|
diff?: string;
|
|
916
917
|
patch?: {
|
|
@@ -927,6 +928,8 @@ export type FileContent = {
|
|
|
927
928
|
}>;
|
|
928
929
|
index?: string;
|
|
929
930
|
};
|
|
931
|
+
encoding?: "base64";
|
|
932
|
+
mimeType?: string;
|
|
930
933
|
};
|
|
931
934
|
export type File = {
|
|
932
935
|
path: string;
|
package/package.json
CHANGED