@opencode-ai/sdk 0.0.0-opentui-202510160000 → 0.0.0-opentui-202510161509
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 +2 -0
- package/package.json +1 -1
package/dist/gen/types.gen.d.ts
CHANGED
|
@@ -410,6 +410,7 @@ export type Config = {
|
|
|
410
410
|
output: Array<"text" | "audio" | "image" | "video" | "pdf">;
|
|
411
411
|
};
|
|
412
412
|
experimental?: boolean;
|
|
413
|
+
status?: "alpha" | "beta";
|
|
413
414
|
options?: {
|
|
414
415
|
[key: string]: unknown;
|
|
415
416
|
};
|
|
@@ -869,6 +870,7 @@ export type Model = {
|
|
|
869
870
|
output: Array<"text" | "audio" | "image" | "video" | "pdf">;
|
|
870
871
|
};
|
|
871
872
|
experimental?: boolean;
|
|
873
|
+
status?: "alpha" | "beta";
|
|
872
874
|
options: {
|
|
873
875
|
[key: string]: unknown;
|
|
874
876
|
};
|
package/package.json
CHANGED