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 +1 -1
- package/dist/index.d.ts +30 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/{schemas-c7bwh5ek.js → schemas-bkz2iszm.js} +15 -0
- package/dist/{schemas-kx22wqv5.cjs → schemas-earo35w8.cjs} +15 -0
- package/dist/schemas.cjs +1 -1
- package/dist/schemas.d.mts +15 -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 +15 -0
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +2 -0
- package/package.json +1 -1
|
@@ -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([
|
|
@@ -3554,6 +3556,19 @@ const userEventSchema = z.object({
|
|
|
3554
3556
|
}).optional().describe("Since June 2023 Determines if comments should be posted to the git host. Replaces `github.silent` in the vercel.json."),
|
|
3555
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"),
|
|
3556
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(),
|
|
3557
3572
|
org: z.string(),
|
|
3558
3573
|
ref: z.string(),
|
|
3559
3574
|
repo: z.string(),
|
|
@@ -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([
|
|
@@ -3574,6 +3576,19 @@ const userEventSchema = z__namespace.object({
|
|
|
3574
3576
|
}).optional().describe("Since June 2023 Determines if comments should be posted to the git host. Replaces `github.silent` in the vercel.json."),
|
|
3575
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"),
|
|
3576
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(),
|
|
3577
3592
|
org: z__namespace.string(),
|
|
3578
3593
|
ref: z__namespace.string(),
|
|
3579
3594
|
repo: z__namespace.string(),
|
package/dist/schemas.cjs
CHANGED
package/dist/schemas.d.mts
CHANGED
|
@@ -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>]>>;
|
|
@@ -2909,6 +2911,19 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2909
2911
|
}, z.core.$strip>>;
|
|
2910
2912
|
gitHashtagVercel: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2911
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>>;
|
|
2912
2927
|
org: z.ZodString;
|
|
2913
2928
|
ref: z.ZodString;
|
|
2914
2929
|
repo: z.ZodString;
|