vercel-api-js 1.22.0 → 1.22.1
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/index.cjs +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/{schemas-kx22wqv5.cjs → schemas-bbadnxh8.cjs} +2 -0
- package/dist/{schemas-c7bwh5ek.js → schemas-qgadqphn.js} +2 -0
- package/dist/schemas.cjs +1 -1
- package/dist/schemas.d.mts +2 -0
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.cjs +2 -0
- package/dist/types.d.mts +2 -0
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +2 -0
- package/package.json +1 -1
package/dist/types.cjs
CHANGED
|
@@ -8,6 +8,8 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
8
8
|
* @type object
|
|
9
9
|
*/ const aiGatewayVirtualModelConfigHasEnum = {
|
|
10
10
|
"implicit-caching": "implicit-caching",
|
|
11
|
+
reasoning: "reasoning",
|
|
12
|
+
"tool-use": "tool-use",
|
|
11
13
|
vision: "vision"
|
|
12
14
|
};
|
|
13
15
|
const scopeEnum = {
|
package/dist/types.d.mts
CHANGED
|
@@ -11,6 +11,8 @@ type AiGatewayProviderOptionBag = {
|
|
|
11
11
|
};
|
|
12
12
|
declare const aiGatewayVirtualModelConfigHasEnum: {
|
|
13
13
|
readonly "implicit-caching": "implicit-caching";
|
|
14
|
+
readonly reasoning: "reasoning";
|
|
15
|
+
readonly "tool-use": "tool-use";
|
|
14
16
|
readonly vision: "vision";
|
|
15
17
|
};
|
|
16
18
|
type AiGatewayVirtualModelConfigHasEnumKey = (typeof aiGatewayVirtualModelConfigHasEnum)[keyof typeof aiGatewayVirtualModelConfigHasEnum];
|