@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.
@@ -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
  };
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": "0.15.29",
4
+ "version": "0.15.31",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "typecheck": "tsgo --noEmit",