vercel-api-js 1.14.1 → 1.15.0
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/components.d.mts +20 -20
- package/dist/index.cjs +23 -21
- package/dist/index.d.ts +128 -80
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/{schemas-jkpfjygi.js → schemas-f3m4uoi5.js} +117 -53
- package/dist/{schemas-ev1tjsfi.cjs → schemas-k96frmq7.cjs} +136 -72
- package/dist/schemas.cjs +21 -21
- package/dist/schemas.d.mts +49 -25
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.cjs +18 -0
- package/dist/types.d.mts +60 -36
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +17 -1
- package/package.json +3 -3
|
@@ -156,8 +156,6 @@ const networkSchema = z__namespace.object({
|
|
|
156
156
|
cidr: z__namespace.string().describe("The CIDR range of the Network."),
|
|
157
157
|
createdAt: z__namespace.number().describe("The date at which the Network was created, represented as a UNIX timestamp since EPOCH."),
|
|
158
158
|
egressIpAddresses: z__namespace.array(z__namespace.string()).optional(),
|
|
159
|
-
reservedEgressIpAddresses: z__namespace.array(z__namespace.string()).optional().describe("The BYOIP egress (NAT gateway) IP addresses pre-allocated for this network from the region's egress IPAM pool. Present in regions that have an egress pool. Customers can allowlist these addresses before egress is switched over to them, since they are reserved ahead of the switch."),
|
|
160
|
-
egressCidrBlock: z__namespace.string().optional().describe("The single contiguous CIDR block from which all egress (NAT gateway) IP addresses are allocated. Present only for networks created with the egress CIDR block feature enabled. Customers can allowlist this range instead of individual egress IPs so it keeps working when AZs are added."),
|
|
161
159
|
hostedZones: z__namespace.object({
|
|
162
160
|
count: z__namespace.number().describe("The number of AWS Route53 Hosted Zones associated with the Network.")
|
|
163
161
|
}).optional().describe("Metadata about any AWS Route53 Hosted Zones associated with the Network."),
|
|
@@ -1060,6 +1058,7 @@ const userEventSchema = z__namespace.object({
|
|
|
1060
1058
|
"authorize-git-deployment",
|
|
1061
1059
|
"auto-expose-system-envs",
|
|
1062
1060
|
"avatar",
|
|
1061
|
+
"billing-settings-updated",
|
|
1063
1062
|
"bulk-redirects-settings-updated",
|
|
1064
1063
|
"bulk-redirects-version-promoted",
|
|
1065
1064
|
"bulk-redirects-version-restored",
|
|
@@ -1663,7 +1662,9 @@ const userEventSchema = z__namespace.object({
|
|
|
1663
1662
|
"workflow"
|
|
1664
1663
|
])).optional().describe('The categories that group this event with related event types. An event can belong to multiple categories (e.g. a firewall event is both Firewall and Security). The first entry is the "primary" category. Use the `/events/types` endpoint to discover the full list of categories.').meta({
|
|
1665
1664
|
examples: [
|
|
1666
|
-
|
|
1665
|
+
[
|
|
1666
|
+
"deployment"
|
|
1667
|
+
]
|
|
1667
1668
|
]
|
|
1668
1669
|
}),
|
|
1669
1670
|
createdAt: z__namespace.number().describe("Timestamp (in milliseconds) of when the event was generated.").meta({
|
|
@@ -1898,7 +1899,8 @@ const userEventSchema = z__namespace.object({
|
|
|
1898
1899
|
"monthly",
|
|
1899
1900
|
"none",
|
|
1900
1901
|
"weekly"
|
|
1901
|
-
])
|
|
1902
|
+
]),
|
|
1903
|
+
alertThresholds: z__namespace.array(z__namespace.number()).optional()
|
|
1902
1904
|
}).nullish().describe("Spend budget on an AI Gateway API key, as surfaced in activity messages. Defined locally (rather than imported from `@api/pubsub-types`) because `@api/pubsub-types` already depends on `@api/events`; importing it here would create a circular dependency. Must stay structurally aligned with `APIKeyBudget` in `@api/pubsub-types/event-payloads/api-keys`."),
|
|
1903
1905
|
zdrExemption: z__namespace.union([
|
|
1904
1906
|
z__namespace.literal(false),
|
|
@@ -1927,7 +1929,8 @@ const userEventSchema = z__namespace.object({
|
|
|
1927
1929
|
"monthly",
|
|
1928
1930
|
"none",
|
|
1929
1931
|
"weekly"
|
|
1930
|
-
])
|
|
1932
|
+
]),
|
|
1933
|
+
alertThresholds: z__namespace.array(z__namespace.number()).optional()
|
|
1931
1934
|
}).nullish().describe("Spend budget on an AI Gateway API key, as surfaced in activity messages. Defined locally (rather than imported from `@api/pubsub-types`) because `@api/pubsub-types` already depends on `@api/events`; importing it here would create a circular dependency. Must stay structurally aligned with `APIKeyBudget` in `@api/pubsub-types/event-payloads/api-keys`."),
|
|
1932
1935
|
change: z__namespace.enum([
|
|
1933
1936
|
"disable",
|
|
@@ -1973,7 +1976,8 @@ const userEventSchema = z__namespace.object({
|
|
|
1973
1976
|
"monthly",
|
|
1974
1977
|
"none",
|
|
1975
1978
|
"weekly"
|
|
1976
|
-
])
|
|
1979
|
+
]),
|
|
1980
|
+
alertThresholds: z__namespace.array(z__namespace.number()).optional()
|
|
1977
1981
|
}).nullish().describe("Spend budget on an AI Gateway API key, as surfaced in activity messages. Defined locally (rather than imported from `@api/pubsub-types`) because `@api/pubsub-types` already depends on `@api/events`; importing it here would create a circular dependency. Must stay structurally aligned with `APIKeyBudget` in `@api/pubsub-types/event-payloads/api-keys`."),
|
|
1978
1982
|
change: z__namespace.enum([
|
|
1979
1983
|
"disable",
|
|
@@ -1999,7 +2003,8 @@ const userEventSchema = z__namespace.object({
|
|
|
1999
2003
|
"monthly",
|
|
2000
2004
|
"none",
|
|
2001
2005
|
"weekly"
|
|
2002
|
-
])
|
|
2006
|
+
]),
|
|
2007
|
+
alertThresholds: z__namespace.array(z__namespace.number()).optional()
|
|
2003
2008
|
}).nullish().describe("Spend budget on an AI Gateway API key, as surfaced in activity messages. Defined locally (rather than imported from `@api/pubsub-types`) because `@api/pubsub-types` already depends on `@api/events`; importing it here would create a circular dependency. Must stay structurally aligned with `APIKeyBudget` in `@api/pubsub-types/event-payloads/api-keys`."),
|
|
2004
2009
|
change: z__namespace.enum([
|
|
2005
2010
|
"disable",
|
|
@@ -2722,6 +2727,16 @@ const userEventSchema = z__namespace.object({
|
|
|
2722
2727
|
brand: z__namespace.string().optional(),
|
|
2723
2728
|
last4: z__namespace.string().optional()
|
|
2724
2729
|
}).strict(),
|
|
2730
|
+
z__namespace.object({
|
|
2731
|
+
changedFields: z__namespace.array(z__namespace.enum([
|
|
2732
|
+
"address",
|
|
2733
|
+
"email",
|
|
2734
|
+
"language",
|
|
2735
|
+
"name",
|
|
2736
|
+
"purchaseOrder",
|
|
2737
|
+
"tax"
|
|
2738
|
+
]))
|
|
2739
|
+
}).strict(),
|
|
2725
2740
|
z__namespace.object({
|
|
2726
2741
|
subscriptionId: z__namespace.string().optional(),
|
|
2727
2742
|
planSlug: z__namespace.string()
|
|
@@ -4247,7 +4262,10 @@ const userEventSchema = z__namespace.object({
|
|
|
4247
4262
|
value: z__namespace.string().optional().describe("The value of the Shared Env Var."),
|
|
4248
4263
|
projectId: z__namespace.array(z__namespace.string()).optional().describe("The unique identifiers of the projects which the Shared Env Var is linked to.").meta({
|
|
4249
4264
|
examples: [
|
|
4250
|
-
|
|
4265
|
+
[
|
|
4266
|
+
"prj_2WjyKQmM8ZnGcJsPWMrHRHrE",
|
|
4267
|
+
"prj_2WjyKQmM8ZnGcJsPWMrasEFg"
|
|
4268
|
+
]
|
|
4251
4269
|
]
|
|
4252
4270
|
}),
|
|
4253
4271
|
type: z__namespace.enum([
|
|
@@ -4338,7 +4356,10 @@ const userEventSchema = z__namespace.object({
|
|
|
4338
4356
|
value: z__namespace.string().optional().describe("The value of the Shared Env Var."),
|
|
4339
4357
|
projectId: z__namespace.array(z__namespace.string()).optional().describe("The unique identifiers of the projects which the Shared Env Var is linked to.").meta({
|
|
4340
4358
|
examples: [
|
|
4341
|
-
|
|
4359
|
+
[
|
|
4360
|
+
"prj_2WjyKQmM8ZnGcJsPWMrHRHrE",
|
|
4361
|
+
"prj_2WjyKQmM8ZnGcJsPWMrasEFg"
|
|
4362
|
+
]
|
|
4342
4363
|
]
|
|
4343
4364
|
}),
|
|
4344
4365
|
type: z__namespace.enum([
|
|
@@ -4426,7 +4447,10 @@ const userEventSchema = z__namespace.object({
|
|
|
4426
4447
|
value: z__namespace.string().optional().describe("The value of the Shared Env Var."),
|
|
4427
4448
|
projectId: z__namespace.array(z__namespace.string()).optional().describe("The unique identifiers of the projects which the Shared Env Var is linked to.").meta({
|
|
4428
4449
|
examples: [
|
|
4429
|
-
|
|
4450
|
+
[
|
|
4451
|
+
"prj_2WjyKQmM8ZnGcJsPWMrHRHrE",
|
|
4452
|
+
"prj_2WjyKQmM8ZnGcJsPWMrasEFg"
|
|
4453
|
+
]
|
|
4430
4454
|
]
|
|
4431
4455
|
}),
|
|
4432
4456
|
type: z__namespace.enum([
|
|
@@ -5667,6 +5691,16 @@ const userEventSchema = z__namespace.object({
|
|
|
5667
5691
|
"limits_exceeded"
|
|
5668
5692
|
])
|
|
5669
5693
|
}).optional(),
|
|
5694
|
+
sandboxStorage: z__namespace.object({
|
|
5695
|
+
updatedAt: z__namespace.number(),
|
|
5696
|
+
blockedFrom: z__namespace.number().optional(),
|
|
5697
|
+
blockedUntil: z__namespace.number().optional(),
|
|
5698
|
+
blockReason: z__namespace.enum([
|
|
5699
|
+
"admin_override",
|
|
5700
|
+
"hard_blocked",
|
|
5701
|
+
"limits_exceeded"
|
|
5702
|
+
])
|
|
5703
|
+
}).optional(),
|
|
5670
5704
|
vcr: z__namespace.object({
|
|
5671
5705
|
updatedAt: z__namespace.number(),
|
|
5672
5706
|
blockedFrom: z__namespace.number().optional(),
|
|
@@ -9651,6 +9685,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
9651
9685
|
"authorize-git-deployment",
|
|
9652
9686
|
"auto-expose-system-envs",
|
|
9653
9687
|
"avatar",
|
|
9688
|
+
"billing-settings-updated",
|
|
9654
9689
|
"bulk-redirects-settings-updated",
|
|
9655
9690
|
"bulk-redirects-version-promoted",
|
|
9656
9691
|
"bulk-redirects-version-restored",
|
|
@@ -10255,7 +10290,9 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
10255
10290
|
"workflow"
|
|
10256
10291
|
])).describe("Categories that group this event type with related event types.").meta({
|
|
10257
10292
|
examples: [
|
|
10258
|
-
|
|
10293
|
+
[
|
|
10294
|
+
"deployment"
|
|
10295
|
+
]
|
|
10259
10296
|
]
|
|
10260
10297
|
}),
|
|
10261
10298
|
deprecated: z__namespace.union([
|
|
@@ -10349,6 +10386,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
10349
10386
|
"authorize-git-deployment",
|
|
10350
10387
|
"auto-expose-system-envs",
|
|
10351
10388
|
"avatar",
|
|
10389
|
+
"billing-settings-updated",
|
|
10352
10390
|
"bulk-redirects-settings-updated",
|
|
10353
10391
|
"bulk-redirects-version-promoted",
|
|
10354
10392
|
"bulk-redirects-version-restored",
|
|
@@ -11501,7 +11539,10 @@ const namedSandboxSchema = z__namespace.object({
|
|
|
11501
11539
|
"yul1"
|
|
11502
11540
|
])).optional().describe("The regions the sandbox fails over to. Empty when it does not fail over.").meta({
|
|
11503
11541
|
examples: [
|
|
11504
|
-
|
|
11542
|
+
[
|
|
11543
|
+
"cle1",
|
|
11544
|
+
"sfo1"
|
|
11545
|
+
]
|
|
11505
11546
|
]
|
|
11506
11547
|
}),
|
|
11507
11548
|
vcpus: z__namespace.number().optional().describe("Number of virtual CPUs allocated.").meta({
|
|
@@ -11628,7 +11669,10 @@ const sandboxInjectionRuleSchema = z__namespace.object({
|
|
|
11628
11669
|
}),
|
|
11629
11670
|
headerNames: z__namespace.array(z__namespace.string()).optional().describe("The names of HTTP headers that have value that will be injected for requests to this domain.").meta({
|
|
11630
11671
|
examples: [
|
|
11631
|
-
|
|
11672
|
+
[
|
|
11673
|
+
"Authorization",
|
|
11674
|
+
"X-API-Key"
|
|
11675
|
+
]
|
|
11632
11676
|
]
|
|
11633
11677
|
})
|
|
11634
11678
|
}).describe("HTTP header injection rules for outgoing requests matching specific domains.");
|
|
@@ -11644,17 +11688,24 @@ const sandboxNetworkPolicySchema = z__namespace.object({
|
|
|
11644
11688
|
}),
|
|
11645
11689
|
allowedDomains: z__namespace.array(z__namespace.string()).optional().describe('List of domain names the sandbox is allowed to connect to. Supports wildcard patterns (e.g., "*.vercel.com" matches all subdomains).').meta({
|
|
11646
11690
|
examples: [
|
|
11647
|
-
|
|
11691
|
+
[
|
|
11692
|
+
"*.example.com",
|
|
11693
|
+
"api.vercel.com"
|
|
11694
|
+
]
|
|
11648
11695
|
]
|
|
11649
11696
|
}),
|
|
11650
11697
|
allowedCIDRs: z__namespace.array(z__namespace.string()).optional().describe("List of IP address ranges (in CIDR notation) the sandbox is allowed to connect to.").meta({
|
|
11651
11698
|
examples: [
|
|
11652
|
-
|
|
11699
|
+
[
|
|
11700
|
+
"10.0.0.0/8"
|
|
11701
|
+
]
|
|
11653
11702
|
]
|
|
11654
11703
|
}),
|
|
11655
11704
|
deniedCIDRs: z__namespace.array(z__namespace.string()).optional().describe("List of IP address ranges (in CIDR notation) the sandbox is blocked from connecting to. These rules take precedence over all allowed rules.").meta({
|
|
11656
11705
|
examples: [
|
|
11657
|
-
|
|
11706
|
+
[
|
|
11707
|
+
"10.0.0.0/8"
|
|
11708
|
+
]
|
|
11658
11709
|
]
|
|
11659
11710
|
}),
|
|
11660
11711
|
injectionRules: z__namespace.array(z__namespace.unknown()).optional().describe("HTTP header injection rules for outgoing requests matching specific domains.")
|
|
@@ -11849,7 +11900,10 @@ const snapshotSchema = z__namespace.object({
|
|
|
11849
11900
|
}),
|
|
11850
11901
|
regions: z__namespace.array(z__namespace.string()).optional().describe("The regions where the snapshot is available.").meta({
|
|
11851
11902
|
examples: [
|
|
11852
|
-
|
|
11903
|
+
[
|
|
11904
|
+
"iad1",
|
|
11905
|
+
"sfo1"
|
|
11906
|
+
]
|
|
11853
11907
|
]
|
|
11854
11908
|
}),
|
|
11855
11909
|
status: z__namespace.enum([
|
|
@@ -11913,7 +11967,10 @@ const sessionCommandSchema = z__namespace.object({
|
|
|
11913
11967
|
}),
|
|
11914
11968
|
args: z__namespace.array(z__namespace.string()).describe("The arguments of the command.").meta({
|
|
11915
11969
|
examples: [
|
|
11916
|
-
|
|
11970
|
+
[
|
|
11971
|
+
"build",
|
|
11972
|
+
"run"
|
|
11973
|
+
]
|
|
11917
11974
|
]
|
|
11918
11975
|
}),
|
|
11919
11976
|
cwd: z__namespace.string().describe("The current working directory of the command.").meta({
|
|
@@ -11983,7 +12040,9 @@ const invitedTeamMemberSchema = z__namespace.object({
|
|
|
11983
12040
|
"VIEWER_FOR_PLUS"
|
|
11984
12041
|
])).optional().describe("The team roles of the user").meta({
|
|
11985
12042
|
examples: [
|
|
11986
|
-
|
|
12043
|
+
[
|
|
12044
|
+
"MEMBER"
|
|
12045
|
+
]
|
|
11987
12046
|
]
|
|
11988
12047
|
}),
|
|
11989
12048
|
teamPermissions: z__namespace.array(z__namespace.enum([
|
|
@@ -12008,7 +12067,9 @@ const invitedTeamMemberSchema = z__namespace.object({
|
|
|
12008
12067
|
"WorkflowDecryptor"
|
|
12009
12068
|
])).optional().describe("The team permissions of the user").meta({
|
|
12010
12069
|
examples: [
|
|
12011
|
-
|
|
12070
|
+
[
|
|
12071
|
+
"CreateProject"
|
|
12072
|
+
]
|
|
12012
12073
|
]
|
|
12013
12074
|
})
|
|
12014
12075
|
}).describe("The member was successfully added to the team.");
|
|
@@ -14167,12 +14228,12 @@ const deleteAiGatewayRuleErrorSchema = z__namespace.union([
|
|
|
14167
14228
|
deleteAiGatewayRuleStatus410Schema,
|
|
14168
14229
|
deleteAiGatewayRuleStatus500Schema
|
|
14169
14230
|
]);
|
|
14170
|
-
const
|
|
14231
|
+
const recordEventsHeaderXArtifactClientCiSchema = z__namespace.string().max(50).optional().describe("The continuous integration or delivery environment where this artifact is downloaded.").meta({
|
|
14171
14232
|
examples: [
|
|
14172
14233
|
"VERCEL"
|
|
14173
14234
|
]
|
|
14174
14235
|
});
|
|
14175
|
-
const
|
|
14236
|
+
const recordEventsHeaderXArtifactClientInteractiveSchema = z__namespace.int().min(0).max(1).optional().describe("1 if the client is an interactive shell. Otherwise 0").meta({
|
|
14176
14237
|
examples: [
|
|
14177
14238
|
0
|
|
14178
14239
|
]
|
|
@@ -14225,29 +14286,29 @@ const statusErrorSchema = z__namespace.union([
|
|
|
14225
14286
|
statusStatus403Schema,
|
|
14226
14287
|
statusStatus410Schema
|
|
14227
14288
|
]);
|
|
14228
|
-
const
|
|
14229
|
-
const
|
|
14289
|
+
const uploadArtifactHeaderContentLengthSchema = z__namespace.number().describe("The artifact size in bytes");
|
|
14290
|
+
const uploadArtifactHeaderXArtifactDurationSchema = z__namespace.number().optional().describe("The time taken to generate the uploaded artifact in milliseconds.").meta({
|
|
14230
14291
|
examples: [
|
|
14231
14292
|
400
|
|
14232
14293
|
]
|
|
14233
14294
|
});
|
|
14234
|
-
const
|
|
14295
|
+
const uploadArtifactHeaderXArtifactClientCiSchema = z__namespace.string().max(50).optional().describe("The continuous integration or delivery environment where this artifact was generated.").meta({
|
|
14235
14296
|
examples: [
|
|
14236
14297
|
"VERCEL"
|
|
14237
14298
|
]
|
|
14238
14299
|
});
|
|
14239
|
-
const
|
|
14300
|
+
const uploadArtifactHeaderXArtifactClientInteractiveSchema = z__namespace.int().min(0).max(1).optional().describe("1 if the client is an interactive shell. Otherwise 0").meta({
|
|
14240
14301
|
examples: [
|
|
14241
14302
|
0
|
|
14242
14303
|
]
|
|
14243
14304
|
});
|
|
14244
|
-
const
|
|
14305
|
+
const uploadArtifactHeaderXArtifactTagSchema = z__namespace.string().max(600).optional().describe("The base64 encoded tag for this artifact. The value is sent back to clients when the artifact is downloaded as the header `x-artifact-tag`").meta({
|
|
14245
14306
|
examples: [
|
|
14246
14307
|
"Tc0BmHvJYMIYJ62/zx87YqO0Flxk+5Ovip25NY825CQ="
|
|
14247
14308
|
]
|
|
14248
14309
|
});
|
|
14249
|
-
const
|
|
14250
|
-
const
|
|
14310
|
+
const uploadArtifactHeaderXArtifactShaSchema = z__namespace.string().max(200).optional().describe("The SHA of the source control revision that generated this artifact.");
|
|
14311
|
+
const uploadArtifactHeaderXArtifactDirtyHashSchema = z__namespace.string().max(200).optional().describe("A hash representing uncommitted changes in the working directory when this artifact was generated.");
|
|
14251
14312
|
const uploadArtifactPathHashSchema = z__namespace.string().describe("The artifact hash").meta({
|
|
14252
14313
|
examples: [
|
|
14253
14314
|
"12HKQaOmR5t5Uy6vdcQsNIiZgHGB"
|
|
@@ -14277,12 +14338,12 @@ const uploadArtifactErrorSchema = z__namespace.union([
|
|
|
14277
14338
|
uploadArtifactStatus403Schema,
|
|
14278
14339
|
uploadArtifactStatus410Schema
|
|
14279
14340
|
]);
|
|
14280
|
-
const
|
|
14341
|
+
const downloadArtifactHeaderXArtifactClientCiSchema = z__namespace.string().max(50).optional().describe("The continuous integration or delivery environment where this artifact is downloaded.").meta({
|
|
14281
14342
|
examples: [
|
|
14282
14343
|
"VERCEL"
|
|
14283
14344
|
]
|
|
14284
14345
|
});
|
|
14285
|
-
const
|
|
14346
|
+
const downloadArtifactHeaderXArtifactClientInteractiveSchema = z__namespace.int().min(0).max(1).optional().describe("1 if the client is an interactive shell. Otherwise 0").meta({
|
|
14286
14347
|
examples: [
|
|
14287
14348
|
0
|
|
14288
14349
|
]
|
|
@@ -17226,21 +17287,11 @@ const listSharedEnvVariableQueryExcludeIdsSchema = z__namespace.string().optiona
|
|
|
17226
17287
|
"env_2WjyKQmM8ZnGcJsPWMrHRHrE,env_2WjyKQmM8ZnGcJsPWMrHRCRV"
|
|
17227
17288
|
]
|
|
17228
17289
|
});
|
|
17229
|
-
const listSharedEnvVariableQueryexcludeIdsSchema = z__namespace.string().optional().describe("Filter SharedEnvVariables based on comma separated ids").meta({
|
|
17230
|
-
examples: [
|
|
17231
|
-
"env_2WjyKQmM8ZnGcJsPWMrHRHrE,env_2WjyKQmM8ZnGcJsPWMrHRCRV"
|
|
17232
|
-
]
|
|
17233
|
-
});
|
|
17234
17290
|
const listSharedEnvVariableQueryExcludeProjectIdSchema = z__namespace.string().optional().describe("Filter SharedEnvVariables that belong to a project").meta({
|
|
17235
17291
|
examples: [
|
|
17236
17292
|
"prj_2WjyKQmM8ZnGcJsPWMrHRHrE"
|
|
17237
17293
|
]
|
|
17238
17294
|
});
|
|
17239
|
-
const listSharedEnvVariableQueryexcludeProjectIdSchema = z__namespace.string().optional().describe("Filter SharedEnvVariables that belong to a project").meta({
|
|
17240
|
-
examples: [
|
|
17241
|
-
"prj_2WjyKQmM8ZnGcJsPWMrHRHrE"
|
|
17242
|
-
]
|
|
17243
|
-
});
|
|
17244
17295
|
const listSharedEnvVariableQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
17245
17296
|
examples: [
|
|
17246
17297
|
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
@@ -22102,7 +22153,7 @@ const createSessionDirectoryErrorSchema = z__namespace.union([
|
|
|
22102
22153
|
createSessionDirectoryStatus429Schema,
|
|
22103
22154
|
createSessionDirectoryStatus500Schema
|
|
22104
22155
|
]);
|
|
22105
|
-
const
|
|
22156
|
+
const writeSessionFilesHeaderXCwdSchema = z__namespace.string().optional().describe("The target directory where the tarball contents will be extracted. If not specified, files are extracted to the sandbox home directory.").meta({
|
|
22106
22157
|
examples: [
|
|
22107
22158
|
"/home/vercel-sandbox"
|
|
22108
22159
|
]
|
|
@@ -22649,6 +22700,7 @@ const getSecurityFirewallEventsStatus400Schema = z__namespace.unknown();
|
|
|
22649
22700
|
const getSecurityFirewallEventsStatus401Schema = z__namespace.unknown();
|
|
22650
22701
|
const getSecurityFirewallEventsStatus403Schema = z__namespace.unknown();
|
|
22651
22702
|
const getSecurityFirewallEventsStatus404Schema = z__namespace.unknown();
|
|
22703
|
+
const getSecurityFirewallEventsStatus408Schema = z__namespace.unknown();
|
|
22652
22704
|
const getSecurityFirewallEventsStatus410Schema = z__namespace.unknown();
|
|
22653
22705
|
const getSecurityFirewallEventsStatus500Schema = z__namespace.unknown();
|
|
22654
22706
|
const getSecurityFirewallEventsResponseSchema = getSecurityFirewallEventsStatus200Schema;
|
|
@@ -22657,6 +22709,7 @@ const getSecurityFirewallEventsErrorSchema = z__namespace.union([
|
|
|
22657
22709
|
getSecurityFirewallEventsStatus401Schema,
|
|
22658
22710
|
getSecurityFirewallEventsStatus403Schema,
|
|
22659
22711
|
getSecurityFirewallEventsStatus404Schema,
|
|
22712
|
+
getSecurityFirewallEventsStatus408Schema,
|
|
22660
22713
|
getSecurityFirewallEventsStatus410Schema,
|
|
22661
22714
|
getSecurityFirewallEventsStatus500Schema
|
|
22662
22715
|
]);
|
|
@@ -22705,8 +22758,8 @@ const createSpeedInsightsToggleErrorSchema = z__namespace.union([
|
|
|
22705
22758
|
createSpeedInsightsToggleStatus410Schema
|
|
22706
22759
|
]);
|
|
22707
22760
|
const getStorageStoresByIdPathIdSchema = z__namespace.string();
|
|
22708
|
-
const
|
|
22709
|
-
const
|
|
22761
|
+
const getStorageStoresByIdQuerySkipMetadataSchema = z__namespace.boolean().optional();
|
|
22762
|
+
const getStorageStoresByIdQueryIncludeGuidesSchema = z__namespace.boolean().optional();
|
|
22710
22763
|
const getStorageStoresByIdStatus200Schema = z__namespace.unknown();
|
|
22711
22764
|
const getStorageStoresByIdStatus400Schema = z__namespace.unknown();
|
|
22712
22765
|
const getStorageStoresByIdStatus401Schema = z__namespace.unknown();
|
|
@@ -23136,6 +23189,7 @@ const deleteTeamStatus402Schema = z__namespace.unknown();
|
|
|
23136
23189
|
const deleteTeamStatus403Schema = z__namespace.unknown();
|
|
23137
23190
|
const deleteTeamStatus409Schema = z__namespace.unknown();
|
|
23138
23191
|
const deleteTeamStatus410Schema = z__namespace.unknown();
|
|
23192
|
+
const deleteTeamStatus503Schema = z__namespace.unknown();
|
|
23139
23193
|
const deleteTeamResponseSchema = deleteTeamStatus200Schema;
|
|
23140
23194
|
const deleteTeamErrorSchema = z__namespace.union([
|
|
23141
23195
|
deleteTeamStatus400Schema,
|
|
@@ -23143,7 +23197,8 @@ const deleteTeamErrorSchema = z__namespace.union([
|
|
|
23143
23197
|
deleteTeamStatus402Schema,
|
|
23144
23198
|
deleteTeamStatus403Schema,
|
|
23145
23199
|
deleteTeamStatus409Schema,
|
|
23146
|
-
deleteTeamStatus410Schema
|
|
23200
|
+
deleteTeamStatus410Schema,
|
|
23201
|
+
deleteTeamStatus503Schema
|
|
23147
23202
|
]);
|
|
23148
23203
|
const deleteTeamInviteCodePathInviteIdSchema = z__namespace.string().describe("The Team invite code ID.").meta({
|
|
23149
23204
|
examples: [
|
|
@@ -23225,10 +23280,10 @@ const deleteMicrofrontendsGroupErrorSchema = z__namespace.union([
|
|
|
23225
23280
|
deleteMicrofrontendsGroupStatus410Schema,
|
|
23226
23281
|
deleteMicrofrontendsGroupStatus500Schema
|
|
23227
23282
|
]);
|
|
23228
|
-
const
|
|
23229
|
-
const
|
|
23230
|
-
const
|
|
23231
|
-
const
|
|
23283
|
+
const uploadFileHeaderContentLengthSchema = z__namespace.number().optional().describe("The file size in bytes");
|
|
23284
|
+
const uploadFileHeaderXVercelDigestSchema = z__namespace.string().max(40).optional().describe("The file SHA1 used to check the integrity");
|
|
23285
|
+
const uploadFileHeaderXNowDigestSchema = z__namespace.string().max(40).optional().describe("The file SHA1 used to check the integrity");
|
|
23286
|
+
const uploadFileHeaderXNowSizeSchema = z__namespace.number().optional().describe("The file size as an alternative to `Content-Length`");
|
|
23232
23287
|
const uploadFileQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
23233
23288
|
examples: [
|
|
23234
23289
|
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
@@ -24156,7 +24211,10 @@ const aggregatePageviewsQueryBySchema = z__namespace.array(z__namespace.string()
|
|
|
24156
24211
|
message: "Array entries must be unique"
|
|
24157
24212
|
}).describe("Up to two dimensions used to break down results.\n\nAt most one time granularity is allowed: hour, day, week, month, year.\n\nOther dimensions: country, deviceType, environment, requestPath, referrerHostname, osName, browserName, route, utmSource, utmMedium, utmCampaign, utmContent, utmTerm.\n\nJSON dimensions: flags. Used bare, it breaks down results by key, for example flags returns one group per flag name. With a key, it breaks down results by that key's value, for example flags/beta_banner. Wrap keys containing characters other than letters, digits, and underscores in single quotes, for example flags/'my-flag'.").meta({
|
|
24158
24213
|
examples: [
|
|
24159
|
-
|
|
24214
|
+
[
|
|
24215
|
+
"day",
|
|
24216
|
+
"country"
|
|
24217
|
+
]
|
|
24160
24218
|
]
|
|
24161
24219
|
});
|
|
24162
24220
|
const aggregatePageviewsQuerySinceSchema = z__namespace.union([
|
|
@@ -24218,7 +24276,10 @@ const aggregateEventsQueryBySchema = z__namespace.array(z__namespace.string().re
|
|
|
24218
24276
|
message: "Array entries must be unique"
|
|
24219
24277
|
}).describe("Up to two dimensions used to break down results.\n\nAt most one time granularity is allowed: hour, day, week, month, year.\n\nOther dimensions: country, deviceType, environment, requestPath, referrerHostname, osName, browserName, route, utmSource, utmMedium, utmCampaign, utmContent, utmTerm, eventName.\n\nJSON dimensions: flags, eventData. Used bare, they break down results by key, for example flags returns one group per flag name. With a key, they break down results by that key's value, for example eventData/plan. Wrap keys containing characters other than letters, digits, and underscores in single quotes, for example flags/'my-flag'.").meta({
|
|
24220
24278
|
examples: [
|
|
24221
|
-
|
|
24279
|
+
[
|
|
24280
|
+
"day",
|
|
24281
|
+
"eventName"
|
|
24282
|
+
]
|
|
24222
24283
|
]
|
|
24223
24284
|
});
|
|
24224
24285
|
const aggregateEventsQuerySinceSchema = z__namespace.union([
|
|
@@ -24892,7 +24953,10 @@ const getDeploymentsQueryProjectIdSchema = z__namespace.string().optional().desc
|
|
|
24892
24953
|
});
|
|
24893
24954
|
const getDeploymentsQueryProjectIdsSchema = z__namespace.array(z__namespace.string()).min(1).max(20).optional().describe("Filter deployments from the given project IDs. Cannot be used when projectId is specified.").meta({
|
|
24894
24955
|
examples: [
|
|
24895
|
-
|
|
24956
|
+
[
|
|
24957
|
+
"prj_123",
|
|
24958
|
+
"prj_456"
|
|
24959
|
+
]
|
|
24896
24960
|
]
|
|
24897
24961
|
});
|
|
24898
24962
|
const getDeploymentsQueryTargetSchema = z__namespace.string().optional().describe("Filter deployments based on the environment.").meta({
|
|
@@ -26459,6 +26523,7 @@ exports.deleteTeamStatus402Schema = deleteTeamStatus402Schema;
|
|
|
26459
26523
|
exports.deleteTeamStatus403Schema = deleteTeamStatus403Schema;
|
|
26460
26524
|
exports.deleteTeamStatus409Schema = deleteTeamStatus409Schema;
|
|
26461
26525
|
exports.deleteTeamStatus410Schema = deleteTeamStatus410Schema;
|
|
26526
|
+
exports.deleteTeamStatus503Schema = deleteTeamStatus503Schema;
|
|
26462
26527
|
exports.deleteWebhookErrorSchema = deleteWebhookErrorSchema;
|
|
26463
26528
|
exports.deleteWebhookPathIdSchema = deleteWebhookPathIdSchema;
|
|
26464
26529
|
exports.deleteWebhookQuerySlugSchema = deleteWebhookQuerySlugSchema;
|
|
@@ -26479,8 +26544,8 @@ exports.domainNotRegisteredSchema = domainNotRegisteredSchema;
|
|
|
26479
26544
|
exports.domainNotRenewableSchema = domainNotRenewableSchema;
|
|
26480
26545
|
exports.domainTooShortSchema = domainTooShortSchema;
|
|
26481
26546
|
exports.downloadArtifactErrorSchema = downloadArtifactErrorSchema;
|
|
26482
|
-
exports.
|
|
26483
|
-
exports.
|
|
26547
|
+
exports.downloadArtifactHeaderXArtifactClientCiSchema = downloadArtifactHeaderXArtifactClientCiSchema;
|
|
26548
|
+
exports.downloadArtifactHeaderXArtifactClientInteractiveSchema = downloadArtifactHeaderXArtifactClientInteractiveSchema;
|
|
26484
26549
|
exports.downloadArtifactPathHashSchema = downloadArtifactPathHashSchema;
|
|
26485
26550
|
exports.downloadArtifactQuerySlugSchema = downloadArtifactQuerySlugSchema;
|
|
26486
26551
|
exports.downloadArtifactQueryTeamIdSchema = downloadArtifactQueryTeamIdSchema;
|
|
@@ -27808,6 +27873,7 @@ exports.getSecurityFirewallEventsStatus400Schema = getSecurityFirewallEventsStat
|
|
|
27808
27873
|
exports.getSecurityFirewallEventsStatus401Schema = getSecurityFirewallEventsStatus401Schema;
|
|
27809
27874
|
exports.getSecurityFirewallEventsStatus403Schema = getSecurityFirewallEventsStatus403Schema;
|
|
27810
27875
|
exports.getSecurityFirewallEventsStatus404Schema = getSecurityFirewallEventsStatus404Schema;
|
|
27876
|
+
exports.getSecurityFirewallEventsStatus408Schema = getSecurityFirewallEventsStatus408Schema;
|
|
27811
27877
|
exports.getSecurityFirewallEventsStatus410Schema = getSecurityFirewallEventsStatus410Schema;
|
|
27812
27878
|
exports.getSecurityFirewallEventsStatus500Schema = getSecurityFirewallEventsStatus500Schema;
|
|
27813
27879
|
exports.getSessionCommandErrorSchema = getSessionCommandErrorSchema;
|
|
@@ -27878,8 +27944,8 @@ exports.getSharedEnvVarStatus403Schema = getSharedEnvVarStatus403Schema;
|
|
|
27878
27944
|
exports.getSharedEnvVarStatus410Schema = getSharedEnvVarStatus410Schema;
|
|
27879
27945
|
exports.getStorageStoresByIdErrorSchema = getStorageStoresByIdErrorSchema;
|
|
27880
27946
|
exports.getStorageStoresByIdPathIdSchema = getStorageStoresByIdPathIdSchema;
|
|
27881
|
-
exports.
|
|
27882
|
-
exports.
|
|
27947
|
+
exports.getStorageStoresByIdQueryIncludeGuidesSchema = getStorageStoresByIdQueryIncludeGuidesSchema;
|
|
27948
|
+
exports.getStorageStoresByIdQuerySkipMetadataSchema = getStorageStoresByIdQuerySkipMetadataSchema;
|
|
27883
27949
|
exports.getStorageStoresByIdResponseSchema = getStorageStoresByIdResponseSchema;
|
|
27884
27950
|
exports.getStorageStoresByIdStatus200Schema = getStorageStoresByIdStatus200Schema;
|
|
27885
27951
|
exports.getStorageStoresByIdStatus400Schema = getStorageStoresByIdStatus400Schema;
|
|
@@ -28537,8 +28603,6 @@ exports.listSharedEnvVariableQueryProjectIdSchema = listSharedEnvVariableQueryPr
|
|
|
28537
28603
|
exports.listSharedEnvVariableQuerySearchSchema = listSharedEnvVariableQuerySearchSchema;
|
|
28538
28604
|
exports.listSharedEnvVariableQuerySlugSchema = listSharedEnvVariableQuerySlugSchema;
|
|
28539
28605
|
exports.listSharedEnvVariableQueryTeamIdSchema = listSharedEnvVariableQueryTeamIdSchema;
|
|
28540
|
-
exports.listSharedEnvVariableQueryexcludeIdsSchema = listSharedEnvVariableQueryexcludeIdsSchema;
|
|
28541
|
-
exports.listSharedEnvVariableQueryexcludeProjectIdSchema = listSharedEnvVariableQueryexcludeProjectIdSchema;
|
|
28542
28606
|
exports.listSharedEnvVariableResponseSchema = listSharedEnvVariableResponseSchema;
|
|
28543
28607
|
exports.listSharedEnvVariableStatus200Schema = listSharedEnvVariableStatus200Schema;
|
|
28544
28608
|
exports.listSharedEnvVariableStatus400Schema = listSharedEnvVariableStatus400Schema;
|
|
@@ -28777,8 +28841,8 @@ exports.readSessionFileStatus422Schema = readSessionFileStatus422Schema;
|
|
|
28777
28841
|
exports.readSessionFileStatus429Schema = readSessionFileStatus429Schema;
|
|
28778
28842
|
exports.readSessionFileStatus500Schema = readSessionFileStatus500Schema;
|
|
28779
28843
|
exports.recordEventsErrorSchema = recordEventsErrorSchema;
|
|
28780
|
-
exports.
|
|
28781
|
-
exports.
|
|
28844
|
+
exports.recordEventsHeaderXArtifactClientCiSchema = recordEventsHeaderXArtifactClientCiSchema;
|
|
28845
|
+
exports.recordEventsHeaderXArtifactClientInteractiveSchema = recordEventsHeaderXArtifactClientInteractiveSchema;
|
|
28782
28846
|
exports.recordEventsQuerySlugSchema = recordEventsQuerySlugSchema;
|
|
28783
28847
|
exports.recordEventsQueryTeamIdSchema = recordEventsQueryTeamIdSchema;
|
|
28784
28848
|
exports.recordEventsResponseSchema = recordEventsResponseSchema;
|
|
@@ -29816,13 +29880,13 @@ exports.updateVersionStatus404Schema = updateVersionStatus404Schema;
|
|
|
29816
29880
|
exports.updateVersionStatus410Schema = updateVersionStatus410Schema;
|
|
29817
29881
|
exports.updateVersionStatus500Schema = updateVersionStatus500Schema;
|
|
29818
29882
|
exports.uploadArtifactErrorSchema = uploadArtifactErrorSchema;
|
|
29819
|
-
exports.
|
|
29820
|
-
exports.
|
|
29821
|
-
exports.
|
|
29822
|
-
exports.
|
|
29823
|
-
exports.
|
|
29824
|
-
exports.
|
|
29825
|
-
exports.
|
|
29883
|
+
exports.uploadArtifactHeaderContentLengthSchema = uploadArtifactHeaderContentLengthSchema;
|
|
29884
|
+
exports.uploadArtifactHeaderXArtifactClientCiSchema = uploadArtifactHeaderXArtifactClientCiSchema;
|
|
29885
|
+
exports.uploadArtifactHeaderXArtifactClientInteractiveSchema = uploadArtifactHeaderXArtifactClientInteractiveSchema;
|
|
29886
|
+
exports.uploadArtifactHeaderXArtifactDirtyHashSchema = uploadArtifactHeaderXArtifactDirtyHashSchema;
|
|
29887
|
+
exports.uploadArtifactHeaderXArtifactDurationSchema = uploadArtifactHeaderXArtifactDurationSchema;
|
|
29888
|
+
exports.uploadArtifactHeaderXArtifactShaSchema = uploadArtifactHeaderXArtifactShaSchema;
|
|
29889
|
+
exports.uploadArtifactHeaderXArtifactTagSchema = uploadArtifactHeaderXArtifactTagSchema;
|
|
29826
29890
|
exports.uploadArtifactPathHashSchema = uploadArtifactPathHashSchema;
|
|
29827
29891
|
exports.uploadArtifactQuerySlugSchema = uploadArtifactQuerySlugSchema;
|
|
29828
29892
|
exports.uploadArtifactQueryTeamIdSchema = uploadArtifactQueryTeamIdSchema;
|
|
@@ -29844,10 +29908,10 @@ exports.uploadCertStatus402Schema = uploadCertStatus402Schema;
|
|
|
29844
29908
|
exports.uploadCertStatus403Schema = uploadCertStatus403Schema;
|
|
29845
29909
|
exports.uploadCertStatus410Schema = uploadCertStatus410Schema;
|
|
29846
29910
|
exports.uploadFileErrorSchema = uploadFileErrorSchema;
|
|
29847
|
-
exports.
|
|
29848
|
-
exports.
|
|
29849
|
-
exports.
|
|
29850
|
-
exports.
|
|
29911
|
+
exports.uploadFileHeaderContentLengthSchema = uploadFileHeaderContentLengthSchema;
|
|
29912
|
+
exports.uploadFileHeaderXNowDigestSchema = uploadFileHeaderXNowDigestSchema;
|
|
29913
|
+
exports.uploadFileHeaderXNowSizeSchema = uploadFileHeaderXNowSizeSchema;
|
|
29914
|
+
exports.uploadFileHeaderXVercelDigestSchema = uploadFileHeaderXVercelDigestSchema;
|
|
29851
29915
|
exports.uploadFileQuerySlugSchema = uploadFileQuerySlugSchema;
|
|
29852
29916
|
exports.uploadFileQueryTeamIdSchema = uploadFileQueryTeamIdSchema;
|
|
29853
29917
|
exports.uploadFileResponseSchema = uploadFileResponseSchema;
|
|
@@ -29896,7 +29960,7 @@ exports.verifyProjectDomainStatus401Schema = verifyProjectDomainStatus401Schema;
|
|
|
29896
29960
|
exports.verifyProjectDomainStatus403Schema = verifyProjectDomainStatus403Schema;
|
|
29897
29961
|
exports.verifyProjectDomainStatus410Schema = verifyProjectDomainStatus410Schema;
|
|
29898
29962
|
exports.writeSessionFilesErrorSchema = writeSessionFilesErrorSchema;
|
|
29899
|
-
exports.
|
|
29963
|
+
exports.writeSessionFilesHeaderXCwdSchema = writeSessionFilesHeaderXCwdSchema;
|
|
29900
29964
|
exports.writeSessionFilesPathSessionIdSchema = writeSessionFilesPathSessionIdSchema;
|
|
29901
29965
|
exports.writeSessionFilesQuerySlugSchema = writeSessionFilesQuerySlugSchema;
|
|
29902
29966
|
exports.writeSessionFilesQueryTeamIdSchema = writeSessionFilesQueryTeamIdSchema;
|