@opencode-ai/sdk 0.0.0-opentui-202510311539 → 0.0.0-opentui-202510311820
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 +6 -2
- package/package.json +1 -1
package/dist/gen/types.gen.d.ts
CHANGED
|
@@ -103,6 +103,10 @@ export type KeybindsConfig = {
|
|
|
103
103
|
* Redo message
|
|
104
104
|
*/
|
|
105
105
|
messages_redo?: string;
|
|
106
|
+
/**
|
|
107
|
+
* Toggle code block concealment in messages
|
|
108
|
+
*/
|
|
109
|
+
messages_toggle_conceal?: string;
|
|
106
110
|
/**
|
|
107
111
|
* List available models
|
|
108
112
|
*/
|
|
@@ -338,7 +342,7 @@ export type Config = {
|
|
|
338
342
|
output: Array<"text" | "audio" | "image" | "video" | "pdf">;
|
|
339
343
|
};
|
|
340
344
|
experimental?: boolean;
|
|
341
|
-
status?: "alpha" | "beta";
|
|
345
|
+
status?: "alpha" | "beta" | "deprecated";
|
|
342
346
|
options?: {
|
|
343
347
|
[key: string]: unknown;
|
|
344
348
|
};
|
|
@@ -846,7 +850,7 @@ export type Model = {
|
|
|
846
850
|
output: Array<"text" | "audio" | "image" | "video" | "pdf">;
|
|
847
851
|
};
|
|
848
852
|
experimental?: boolean;
|
|
849
|
-
status?: "alpha" | "beta";
|
|
853
|
+
status?: "alpha" | "beta" | "deprecated";
|
|
850
854
|
options: {
|
|
851
855
|
[key: string]: unknown;
|
|
852
856
|
};
|
package/package.json
CHANGED