@opencode-ai/sdk 1.0.77 → 1.0.79

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.
@@ -978,7 +978,7 @@ export type Config = {
978
978
  mcp?: {
979
979
  [key: string]: McpLocalConfig | McpRemoteConfig;
980
980
  };
981
- formatter?: {
981
+ formatter?: false | {
982
982
  [key: string]: {
983
983
  disabled?: boolean;
984
984
  command?: Array<string>;
@@ -988,7 +988,7 @@ export type Config = {
988
988
  extensions?: Array<string>;
989
989
  };
990
990
  };
991
- lsp?: {
991
+ lsp?: false | {
992
992
  [key: string]: {
993
993
  disabled: true;
994
994
  } | {
@@ -1997,6 +1997,10 @@ export type SessionCommandResponse = SessionCommandResponses[keyof SessionComman
1997
1997
  export type SessionShellData = {
1998
1998
  body?: {
1999
1999
  agent: string;
2000
+ model?: {
2001
+ providerID: string;
2002
+ modelID: string;
2003
+ };
2000
2004
  command: string;
2001
2005
  };
2002
2006
  path: {
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.77",
4
+ "version": "1.0.79",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "typecheck": "tsgo --noEmit",