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/index.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
2
|
|
|
3
3
|
var components = require('./components-pfe7zbum.cjs');
|
|
4
|
-
var schemas = require('./schemas-
|
|
4
|
+
var schemas = require('./schemas-bbadnxh8.cjs');
|
|
5
5
|
var types = require('./types.cjs');
|
|
6
6
|
|
|
7
7
|
function formEncoded(data) {
|
package/dist/index.d.ts
CHANGED
|
@@ -48,6 +48,8 @@ type AiGatewayProviderOptionBag = {
|
|
|
48
48
|
};
|
|
49
49
|
declare const aiGatewayVirtualModelConfigHasEnum: {
|
|
50
50
|
readonly "implicit-caching": "implicit-caching";
|
|
51
|
+
readonly reasoning: "reasoning";
|
|
52
|
+
readonly "tool-use": "tool-use";
|
|
51
53
|
readonly vision: "vision";
|
|
52
54
|
};
|
|
53
55
|
type AiGatewayVirtualModelConfigHasEnumKey = (typeof aiGatewayVirtualModelConfigHasEnum)[keyof typeof aiGatewayVirtualModelConfigHasEnum];
|
|
@@ -46558,6 +46560,8 @@ declare const aiGatewayVirtualModelConfigSchema: z.ZodObject<{
|
|
|
46558
46560
|
displayName: z.ZodOptional<z.ZodString>;
|
|
46559
46561
|
has: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
46560
46562
|
"implicit-caching": "implicit-caching";
|
|
46563
|
+
reasoning: "reasoning";
|
|
46564
|
+
"tool-use": "tool-use";
|
|
46561
46565
|
vision: "vision";
|
|
46562
46566
|
}>>>;
|
|
46563
46567
|
hipaaCompliant: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|