@opencode-ai/sdk 1.1.21 → 1.1.23

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.
@@ -806,6 +806,22 @@ export type KeybindsConfig = {
806
806
  * Rename session
807
807
  */
808
808
  session_rename?: string;
809
+ /**
810
+ * Delete session
811
+ */
812
+ session_delete?: string;
813
+ /**
814
+ * Delete stash entry
815
+ */
816
+ stash_delete?: string;
817
+ /**
818
+ * Open provider list from model dialog
819
+ */
820
+ model_provider_list?: string;
821
+ /**
822
+ * Toggle model favorite status
823
+ */
824
+ model_favorite_toggle?: string;
809
825
  /**
810
826
  * Share current session
811
827
  */
@@ -1225,6 +1241,7 @@ export type ProviderConfig = {
1225
1241
  };
1226
1242
  limit?: {
1227
1243
  context: number;
1244
+ input?: number;
1228
1245
  output: number;
1229
1246
  };
1230
1247
  modalities?: {
@@ -1296,7 +1313,7 @@ export type McpLocalConfig = {
1296
1313
  */
1297
1314
  enabled?: boolean;
1298
1315
  /**
1299
- * Timeout in ms for fetching tools from the MCP server. Defaults to 5000 (5 seconds) if not specified.
1316
+ * Timeout in ms for MCP server requests. Defaults to 5000 (5 seconds) if not specified.
1300
1317
  */
1301
1318
  timeout?: number;
1302
1319
  };
@@ -1338,7 +1355,7 @@ export type McpRemoteConfig = {
1338
1355
  */
1339
1356
  oauth?: McpOAuthConfig | false;
1340
1357
  /**
1341
- * Timeout in ms for fetching tools from the MCP server. Defaults to 5000 (5 seconds) if not specified.
1358
+ * Timeout in ms for MCP server requests. Defaults to 5000 (5 seconds) if not specified.
1342
1359
  */
1343
1360
  timeout?: number;
1344
1361
  };
@@ -1689,6 +1706,7 @@ export type Model = {
1689
1706
  };
1690
1707
  limit: {
1691
1708
  context: number;
1709
+ input?: number;
1692
1710
  output: number;
1693
1711
  };
1694
1712
  status: "alpha" | "beta" | "deprecated" | "active";
@@ -3328,6 +3346,7 @@ export type ProviderListResponses = {
3328
3346
  };
3329
3347
  limit: {
3330
3348
  context: number;
3349
+ input?: number;
3331
3350
  output: number;
3332
3351
  };
3333
3352
  modalities?: {
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.1.21",
4
+ "version": "1.1.23",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "scripts": {