vercel-api-js 1.22.1 → 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-bbadnxh8.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
@@ -7983,6 +7983,19 @@ type UserEvent = {
7983
7983
  * @type object
7984
7984
  */
7985
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;
7986
7999
  org: string;
7987
8000
  ref: string;
7988
8001
  repo: string;
@@ -49455,6 +49468,19 @@ declare const userEventSchema: z.ZodObject<{
49455
49468
  }, z.core.$strip>>;
49456
49469
  gitHashtagVercel: z.ZodOptional<z.ZodArray<z.ZodString>>;
49457
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>>;
49458
49484
  org: z.ZodString;
49459
49485
  ref: z.ZodString;
49460
49486
  repo: z.ZodString;