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.
@@ -46,6 +46,8 @@ const aiGatewayVirtualModelConfigSchema = z__namespace.object({
46
46
  displayName: z__namespace.string().optional().describe("Human-readable name for UI."),
47
47
  has: z__namespace.array(z__namespace.enum([
48
48
  "implicit-caching",
49
+ "reasoning",
50
+ "tool-use",
49
51
  "vision"
50
52
  ])).optional().describe("Limit providers to those with these features."),
51
53
  hipaaCompliant: z__namespace.union([
@@ -26,6 +26,8 @@ const aiGatewayVirtualModelConfigSchema = z.object({
26
26
  displayName: z.string().optional().describe("Human-readable name for UI."),
27
27
  has: z.array(z.enum([
28
28
  "implicit-caching",
29
+ "reasoning",
30
+ "tool-use",
29
31
  "vision"
30
32
  ])).optional().describe("Limit providers to those with these features."),
31
33
  hipaaCompliant: z.union([
package/dist/schemas.cjs CHANGED
@@ -1,6 +1,6 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
 
3
- var schemas = require('./schemas-kx22wqv5.cjs');
3
+ var schemas = require('./schemas-bbadnxh8.cjs');
4
4
 
5
5
 
6
6
 
@@ -16,6 +16,8 @@ declare const aiGatewayVirtualModelConfigSchema: z.ZodObject<{
16
16
  displayName: z.ZodOptional<z.ZodString>;
17
17
  has: z.ZodOptional<z.ZodArray<z.ZodEnum<{
18
18
  "implicit-caching": "implicit-caching";
19
+ reasoning: "reasoning";
20
+ "tool-use": "tool-use";
19
21
  vision: "vision";
20
22
  }>>>;
21
23
  hipaaCompliant: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;