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.
@@ -3556,6 +3556,19 @@ const userEventSchema = z.object({
3556
3556
  }).optional().describe("Since June 2023 Determines if comments should be posted to the git host. Replaces `github.silent` in the vercel.json."),
3557
3557
  gitHashtagVercel: z.array(z.string()).optional().describe("Since February 2022 All the hashtag-vercel tags found in the commit message triggering the deploy. For example, #VERCEL_DO_SOMETHING"),
3558
3558
  headInfo: z.object({
3559
+ commitMetadata: z.object({
3560
+ author: z.object({
3561
+ date: z.string(),
3562
+ email: z.string(),
3563
+ name: z.string()
3564
+ }),
3565
+ committer: z.object({
3566
+ date: z.string(),
3567
+ email: z.string(),
3568
+ name: z.string()
3569
+ }),
3570
+ message: z.string()
3571
+ }).optional(),
3559
3572
  org: z.string(),
3560
3573
  ref: z.string(),
3561
3574
  repo: z.string(),
@@ -3576,6 +3576,19 @@ const userEventSchema = z__namespace.object({
3576
3576
  }).optional().describe("Since June 2023 Determines if comments should be posted to the git host. Replaces `github.silent` in the vercel.json."),
3577
3577
  gitHashtagVercel: z__namespace.array(z__namespace.string()).optional().describe("Since February 2022 All the hashtag-vercel tags found in the commit message triggering the deploy. For example, #VERCEL_DO_SOMETHING"),
3578
3578
  headInfo: z__namespace.object({
3579
+ commitMetadata: z__namespace.object({
3580
+ author: z__namespace.object({
3581
+ date: z__namespace.string(),
3582
+ email: z__namespace.string(),
3583
+ name: z__namespace.string()
3584
+ }),
3585
+ committer: z__namespace.object({
3586
+ date: z__namespace.string(),
3587
+ email: z__namespace.string(),
3588
+ name: z__namespace.string()
3589
+ }),
3590
+ message: z__namespace.string()
3591
+ }).optional(),
3579
3592
  org: z__namespace.string(),
3580
3593
  ref: z__namespace.string(),
3581
3594
  repo: z__namespace.string(),
package/dist/schemas.cjs CHANGED
@@ -1,6 +1,6 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
 
3
- var schemas = require('./schemas-bbadnxh8.cjs');
3
+ var schemas = require('./schemas-earo35w8.cjs');
4
4
 
5
5
 
6
6
 
@@ -2911,6 +2911,19 @@ declare const userEventSchema: z.ZodObject<{
2911
2911
  }, z.core.$strip>>;
2912
2912
  gitHashtagVercel: z.ZodOptional<z.ZodArray<z.ZodString>>;
2913
2913
  headInfo: z.ZodObject<{
2914
+ commitMetadata: z.ZodOptional<z.ZodObject<{
2915
+ author: z.ZodObject<{
2916
+ date: z.ZodString;
2917
+ email: z.ZodString;
2918
+ name: z.ZodString;
2919
+ }, z.core.$strip>;
2920
+ committer: z.ZodObject<{
2921
+ date: z.ZodString;
2922
+ email: z.ZodString;
2923
+ name: z.ZodString;
2924
+ }, z.core.$strip>;
2925
+ message: z.ZodString;
2926
+ }, z.core.$strip>>;
2914
2927
  org: z.ZodString;
2915
2928
  ref: z.ZodString;
2916
2929
  repo: z.ZodString;