@opencode-ai/sdk 0.0.0-opentui-202510310353 → 0.0.0-opentui-202510310510
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 -0
- package/package.json +1 -1
package/dist/gen/types.gen.d.ts
CHANGED
|
@@ -342,6 +342,9 @@ export type Config = {
|
|
|
342
342
|
options?: {
|
|
343
343
|
[key: string]: unknown;
|
|
344
344
|
};
|
|
345
|
+
headers?: {
|
|
346
|
+
[key: string]: string;
|
|
347
|
+
};
|
|
345
348
|
provider?: {
|
|
346
349
|
npm: string;
|
|
347
350
|
};
|
|
@@ -847,6 +850,9 @@ export type Model = {
|
|
|
847
850
|
options: {
|
|
848
851
|
[key: string]: unknown;
|
|
849
852
|
};
|
|
853
|
+
headers?: {
|
|
854
|
+
[key: string]: string;
|
|
855
|
+
};
|
|
850
856
|
provider?: {
|
|
851
857
|
npm: string;
|
|
852
858
|
};
|
package/package.json
CHANGED