@opencode-ai/sdk 1.0.112 → 1.0.114

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