@opencode-ai/sdk 1.0.78 → 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.
- package/dist/gen/types.gen.d.ts +6 -2
- package/package.json +1 -1
package/dist/gen/types.gen.d.ts
CHANGED
|
@@ -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: {
|