@opencode-ai/sdk 1.0.4 → 1.0.6
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 +16 -0
- package/package.json +1 -1
package/dist/gen/types.gen.d.ts
CHANGED
|
@@ -111,6 +111,14 @@ export type KeybindsConfig = {
|
|
|
111
111
|
* List available models
|
|
112
112
|
*/
|
|
113
113
|
model_list?: string;
|
|
114
|
+
/**
|
|
115
|
+
* Next recently used model
|
|
116
|
+
*/
|
|
117
|
+
model_cycle_recent?: string;
|
|
118
|
+
/**
|
|
119
|
+
* Previous recently used model
|
|
120
|
+
*/
|
|
121
|
+
model_cycle_recent_reverse?: string;
|
|
114
122
|
/**
|
|
115
123
|
* List available commands
|
|
116
124
|
*/
|
|
@@ -147,6 +155,14 @@ export type KeybindsConfig = {
|
|
|
147
155
|
* Insert newline in input
|
|
148
156
|
*/
|
|
149
157
|
input_newline?: string;
|
|
158
|
+
/**
|
|
159
|
+
* Previous history item
|
|
160
|
+
*/
|
|
161
|
+
history_previous?: string;
|
|
162
|
+
/**
|
|
163
|
+
* Previous history item
|
|
164
|
+
*/
|
|
165
|
+
history_next?: string;
|
|
150
166
|
};
|
|
151
167
|
export type AgentConfig = {
|
|
152
168
|
model?: string;
|