vercel-api-js 1.22.0 → 1.22.2

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 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-kx22wqv5.cjs');
4
+ var schemas = require('./schemas-earo35w8.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];
@@ -7981,6 +7983,19 @@ type UserEvent = {
7981
7983
  * @type object
7982
7984
  */
7983
7985
  headInfo: {
7986
+ commitMetadata?: {
7987
+ author: {
7988
+ date: string;
7989
+ email: string;
7990
+ name: string;
7991
+ };
7992
+ committer: {
7993
+ date: string;
7994
+ email: string;
7995
+ name: string;
7996
+ };
7997
+ message: string;
7998
+ } | undefined;
7984
7999
  org: string;
7985
8000
  ref: string;
7986
8001
  repo: string;
@@ -46558,6 +46573,8 @@ declare const aiGatewayVirtualModelConfigSchema: z.ZodObject<{
46558
46573
  displayName: z.ZodOptional<z.ZodString>;
46559
46574
  has: z.ZodOptional<z.ZodArray<z.ZodEnum<{
46560
46575
  "implicit-caching": "implicit-caching";
46576
+ reasoning: "reasoning";
46577
+ "tool-use": "tool-use";
46561
46578
  vision: "vision";
46562
46579
  }>>>;
46563
46580
  hipaaCompliant: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
@@ -49451,6 +49468,19 @@ declare const userEventSchema: z.ZodObject<{
49451
49468
  }, z.core.$strip>>;
49452
49469
  gitHashtagVercel: z.ZodOptional<z.ZodArray<z.ZodString>>;
49453
49470
  headInfo: z.ZodObject<{
49471
+ commitMetadata: z.ZodOptional<z.ZodObject<{
49472
+ author: z.ZodObject<{
49473
+ date: z.ZodString;
49474
+ email: z.ZodString;
49475
+ name: z.ZodString;
49476
+ }, z.core.$strip>;
49477
+ committer: z.ZodObject<{
49478
+ date: z.ZodString;
49479
+ email: z.ZodString;
49480
+ name: z.ZodString;
49481
+ }, z.core.$strip>;
49482
+ message: z.ZodString;
49483
+ }, z.core.$strip>>;
49454
49484
  org: z.ZodString;
49455
49485
  ref: z.ZodString;
49456
49486
  repo: z.ZodString;