@opencode-ai/sdk 1.0.3 → 1.0.5

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.
@@ -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;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@opencode-ai/sdk",
4
- "version": "1.0.3",
4
+ "version": "1.0.5",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "typecheck": "tsgo --noEmit",