@opencode-ai/sdk 0.15.29 → 0.15.31
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 +8 -2
- package/package.json +1 -1
package/dist/gen/types.gen.d.ts
CHANGED
|
@@ -406,10 +406,13 @@ export type Config = {
|
|
|
406
406
|
output: Array<"text" | "audio" | "image" | "video" | "pdf">;
|
|
407
407
|
};
|
|
408
408
|
experimental?: boolean;
|
|
409
|
-
status?: "alpha" | "beta";
|
|
409
|
+
status?: "alpha" | "beta" | "deprecated";
|
|
410
410
|
options?: {
|
|
411
411
|
[key: string]: unknown;
|
|
412
412
|
};
|
|
413
|
+
headers?: {
|
|
414
|
+
[key: string]: string;
|
|
415
|
+
};
|
|
413
416
|
provider?: {
|
|
414
417
|
npm: string;
|
|
415
418
|
};
|
|
@@ -905,10 +908,13 @@ export type Model = {
|
|
|
905
908
|
output: Array<"text" | "audio" | "image" | "video" | "pdf">;
|
|
906
909
|
};
|
|
907
910
|
experimental?: boolean;
|
|
908
|
-
status?: "alpha" | "beta";
|
|
911
|
+
status?: "alpha" | "beta" | "deprecated";
|
|
909
912
|
options: {
|
|
910
913
|
[key: string]: unknown;
|
|
911
914
|
};
|
|
915
|
+
headers?: {
|
|
916
|
+
[key: string]: string;
|
|
917
|
+
};
|
|
912
918
|
provider?: {
|
|
913
919
|
npm: string;
|
|
914
920
|
};
|