@opencode-ai/sdk 0.3.103 → 0.3.105
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 +10 -0
- package/package.json +1 -1
package/dist/gen/types.gen.d.ts
CHANGED
|
@@ -542,6 +542,16 @@ export type Config = {
|
|
|
542
542
|
type: 'remote';
|
|
543
543
|
} & McpRemoteConfig);
|
|
544
544
|
};
|
|
545
|
+
formatter?: {
|
|
546
|
+
[key: string]: {
|
|
547
|
+
disabled?: boolean;
|
|
548
|
+
command?: Array<string>;
|
|
549
|
+
environment?: {
|
|
550
|
+
[key: string]: string;
|
|
551
|
+
};
|
|
552
|
+
extensions?: Array<string>;
|
|
553
|
+
};
|
|
554
|
+
};
|
|
545
555
|
/**
|
|
546
556
|
* Additional instruction files or patterns to include
|
|
547
557
|
*/
|