@opencode-ai/sdk 0.0.0-dev-202511250413 → 0.0.0-dev-202511250421

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.
@@ -981,11 +981,15 @@ export type Config = {
981
981
  * GitHub Enterprise URL for copilot authentication
982
982
  */
983
983
  enterpriseUrl?: string;
984
+ /**
985
+ * Enable promptCacheKey for this provider (default false)
986
+ */
987
+ setCacheKey?: boolean;
984
988
  /**
985
989
  * Timeout in milliseconds for requests to this provider. Default is 300000 (5 minutes). Set to false to disable timeout.
986
990
  */
987
991
  timeout?: number | false;
988
- [key: string]: unknown | string | (number | false) | undefined;
992
+ [key: string]: unknown | string | boolean | (number | false) | undefined;
989
993
  };
990
994
  };
991
995
  };
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.0.0-dev-202511250413",
4
+ "version": "0.0.0-dev-202511250421",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "typecheck": "tsgo --noEmit",