@opencode-ai/sdk 0.0.0-opentui-202510291439 → 0.0.0-opentui-202510291526
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 -80
- package/package.json +1 -1
package/dist/gen/types.gen.d.ts
CHANGED
|
@@ -15,10 +15,6 @@ export type KeybindsConfig = {
|
|
|
15
15
|
* Leader key for keybind combinations
|
|
16
16
|
*/
|
|
17
17
|
leader?: string;
|
|
18
|
-
/**
|
|
19
|
-
* Show help dialog
|
|
20
|
-
*/
|
|
21
|
-
app_help?: string;
|
|
22
18
|
/**
|
|
23
19
|
* Exit the application
|
|
24
20
|
*/
|
|
@@ -31,18 +27,6 @@ export type KeybindsConfig = {
|
|
|
31
27
|
* List available themes
|
|
32
28
|
*/
|
|
33
29
|
theme_list?: string;
|
|
34
|
-
/**
|
|
35
|
-
* Create/update AGENTS.md
|
|
36
|
-
*/
|
|
37
|
-
project_init?: string;
|
|
38
|
-
/**
|
|
39
|
-
* Toggle tool details
|
|
40
|
-
*/
|
|
41
|
-
tool_details?: string;
|
|
42
|
-
/**
|
|
43
|
-
* Toggle thinking blocks
|
|
44
|
-
*/
|
|
45
|
-
thinking_blocks?: string;
|
|
46
30
|
/**
|
|
47
31
|
* Toggle sidebar
|
|
48
32
|
*/
|
|
@@ -83,14 +67,6 @@ export type KeybindsConfig = {
|
|
|
83
67
|
* Compact the session
|
|
84
68
|
*/
|
|
85
69
|
session_compact?: string;
|
|
86
|
-
/**
|
|
87
|
-
* Cycle to next child session
|
|
88
|
-
*/
|
|
89
|
-
session_child_cycle?: string;
|
|
90
|
-
/**
|
|
91
|
-
* Cycle to previous child session
|
|
92
|
-
*/
|
|
93
|
-
session_child_cycle_reverse?: string;
|
|
94
70
|
/**
|
|
95
71
|
* Scroll messages up by one page
|
|
96
72
|
*/
|
|
@@ -135,14 +111,6 @@ export type KeybindsConfig = {
|
|
|
135
111
|
* List available commands
|
|
136
112
|
*/
|
|
137
113
|
command_list?: string;
|
|
138
|
-
/**
|
|
139
|
-
* Next recent model
|
|
140
|
-
*/
|
|
141
|
-
model_cycle_recent?: string;
|
|
142
|
-
/**
|
|
143
|
-
* Previous recent model
|
|
144
|
-
*/
|
|
145
|
-
model_cycle_recent_reverse?: string;
|
|
146
114
|
/**
|
|
147
115
|
* List agents
|
|
148
116
|
*/
|
|
@@ -171,54 +139,6 @@ export type KeybindsConfig = {
|
|
|
171
139
|
* Insert newline in input
|
|
172
140
|
*/
|
|
173
141
|
input_newline?: string;
|
|
174
|
-
/**
|
|
175
|
-
* @deprecated use agent_cycle. Next mode
|
|
176
|
-
*/
|
|
177
|
-
switch_mode?: string;
|
|
178
|
-
/**
|
|
179
|
-
* @deprecated use agent_cycle_reverse. Previous mode
|
|
180
|
-
*/
|
|
181
|
-
switch_mode_reverse?: string;
|
|
182
|
-
/**
|
|
183
|
-
* @deprecated use agent_cycle. Next agent
|
|
184
|
-
*/
|
|
185
|
-
switch_agent?: string;
|
|
186
|
-
/**
|
|
187
|
-
* @deprecated use agent_cycle_reverse. Previous agent
|
|
188
|
-
*/
|
|
189
|
-
switch_agent_reverse?: string;
|
|
190
|
-
/**
|
|
191
|
-
* @deprecated Currently not available. List files
|
|
192
|
-
*/
|
|
193
|
-
file_list?: string;
|
|
194
|
-
/**
|
|
195
|
-
* @deprecated Close file
|
|
196
|
-
*/
|
|
197
|
-
file_close?: string;
|
|
198
|
-
/**
|
|
199
|
-
* @deprecated Search file
|
|
200
|
-
*/
|
|
201
|
-
file_search?: string;
|
|
202
|
-
/**
|
|
203
|
-
* @deprecated Split/unified diff
|
|
204
|
-
*/
|
|
205
|
-
file_diff_toggle?: string;
|
|
206
|
-
/**
|
|
207
|
-
* @deprecated Navigate to previous message
|
|
208
|
-
*/
|
|
209
|
-
messages_previous?: string;
|
|
210
|
-
/**
|
|
211
|
-
* @deprecated Navigate to next message
|
|
212
|
-
*/
|
|
213
|
-
messages_next?: string;
|
|
214
|
-
/**
|
|
215
|
-
* @deprecated Toggle layout
|
|
216
|
-
*/
|
|
217
|
-
messages_layout_toggle?: string;
|
|
218
|
-
/**
|
|
219
|
-
* @deprecated use messages_undo. Revert message
|
|
220
|
-
*/
|
|
221
|
-
messages_revert?: string;
|
|
222
142
|
};
|
|
223
143
|
export type AgentConfig = {
|
|
224
144
|
model?: string;
|
package/package.json
CHANGED