@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.
- package/dist/gen/types.gen.d.ts +5 -1
- package/package.json +1 -1
package/dist/gen/types.gen.d.ts
CHANGED
|
@@ -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
|
};
|