vercel-api-js 1.14.2 → 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 -68
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/{schemas-m4ld9x7a.js → schemas-f3m4uoi5.js} +117 -51
- package/dist/{schemas-gb9msbpl.cjs → schemas-k96frmq7.cjs} +136 -70
- package/dist/schemas.cjs +21 -21
- package/dist/schemas.d.mts +49 -23
- 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 -26
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +17 -1
- package/package.json +1 -1
|
@@ -1058,6 +1058,7 @@ const userEventSchema = z__namespace.object({
|
|
|
1058
1058
|
"authorize-git-deployment",
|
|
1059
1059
|
"auto-expose-system-envs",
|
|
1060
1060
|
"avatar",
|
|
1061
|
+
"billing-settings-updated",
|
|
1061
1062
|
"bulk-redirects-settings-updated",
|
|
1062
1063
|
"bulk-redirects-version-promoted",
|
|
1063
1064
|
"bulk-redirects-version-restored",
|
|
@@ -1661,7 +1662,9 @@ const userEventSchema = z__namespace.object({
|
|
|
1661
1662
|
"workflow"
|
|
1662
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({
|
|
1663
1664
|
examples: [
|
|
1664
|
-
|
|
1665
|
+
[
|
|
1666
|
+
"deployment"
|
|
1667
|
+
]
|
|
1665
1668
|
]
|
|
1666
1669
|
}),
|
|
1667
1670
|
createdAt: z__namespace.number().describe("Timestamp (in milliseconds) of when the event was generated.").meta({
|
|
@@ -1896,7 +1899,8 @@ const userEventSchema = z__namespace.object({
|
|
|
1896
1899
|
"monthly",
|
|
1897
1900
|
"none",
|
|
1898
1901
|
"weekly"
|
|
1899
|
-
])
|
|
1902
|
+
]),
|
|
1903
|
+
alertThresholds: z__namespace.array(z__namespace.number()).optional()
|
|
1900
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`."),
|
|
1901
1905
|
zdrExemption: z__namespace.union([
|
|
1902
1906
|
z__namespace.literal(false),
|
|
@@ -1925,7 +1929,8 @@ const userEventSchema = z__namespace.object({
|
|
|
1925
1929
|
"monthly",
|
|
1926
1930
|
"none",
|
|
1927
1931
|
"weekly"
|
|
1928
|
-
])
|
|
1932
|
+
]),
|
|
1933
|
+
alertThresholds: z__namespace.array(z__namespace.number()).optional()
|
|
1929
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`."),
|
|
1930
1935
|
change: z__namespace.enum([
|
|
1931
1936
|
"disable",
|
|
@@ -1971,7 +1976,8 @@ const userEventSchema = z__namespace.object({
|
|
|
1971
1976
|
"monthly",
|
|
1972
1977
|
"none",
|
|
1973
1978
|
"weekly"
|
|
1974
|
-
])
|
|
1979
|
+
]),
|
|
1980
|
+
alertThresholds: z__namespace.array(z__namespace.number()).optional()
|
|
1975
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`."),
|
|
1976
1982
|
change: z__namespace.enum([
|
|
1977
1983
|
"disable",
|
|
@@ -1997,7 +2003,8 @@ const userEventSchema = z__namespace.object({
|
|
|
1997
2003
|
"monthly",
|
|
1998
2004
|
"none",
|
|
1999
2005
|
"weekly"
|
|
2000
|
-
])
|
|
2006
|
+
]),
|
|
2007
|
+
alertThresholds: z__namespace.array(z__namespace.number()).optional()
|
|
2001
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`."),
|
|
2002
2009
|
change: z__namespace.enum([
|
|
2003
2010
|
"disable",
|
|
@@ -2720,6 +2727,16 @@ const userEventSchema = z__namespace.object({
|
|
|
2720
2727
|
brand: z__namespace.string().optional(),
|
|
2721
2728
|
last4: z__namespace.string().optional()
|
|
2722
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(),
|
|
2723
2740
|
z__namespace.object({
|
|
2724
2741
|
subscriptionId: z__namespace.string().optional(),
|
|
2725
2742
|
planSlug: z__namespace.string()
|
|
@@ -4245,7 +4262,10 @@ const userEventSchema = z__namespace.object({
|
|
|
4245
4262
|
value: z__namespace.string().optional().describe("The value of the Shared Env Var."),
|
|
4246
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({
|
|
4247
4264
|
examples: [
|
|
4248
|
-
|
|
4265
|
+
[
|
|
4266
|
+
"prj_2WjyKQmM8ZnGcJsPWMrHRHrE",
|
|
4267
|
+
"prj_2WjyKQmM8ZnGcJsPWMrasEFg"
|
|
4268
|
+
]
|
|
4249
4269
|
]
|
|
4250
4270
|
}),
|
|
4251
4271
|
type: z__namespace.enum([
|
|
@@ -4336,7 +4356,10 @@ const userEventSchema = z__namespace.object({
|
|
|
4336
4356
|
value: z__namespace.string().optional().describe("The value of the Shared Env Var."),
|
|
4337
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({
|
|
4338
4358
|
examples: [
|
|
4339
|
-
|
|
4359
|
+
[
|
|
4360
|
+
"prj_2WjyKQmM8ZnGcJsPWMrHRHrE",
|
|
4361
|
+
"prj_2WjyKQmM8ZnGcJsPWMrasEFg"
|
|
4362
|
+
]
|
|
4340
4363
|
]
|
|
4341
4364
|
}),
|
|
4342
4365
|
type: z__namespace.enum([
|
|
@@ -4424,7 +4447,10 @@ const userEventSchema = z__namespace.object({
|
|
|
4424
4447
|
value: z__namespace.string().optional().describe("The value of the Shared Env Var."),
|
|
4425
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({
|
|
4426
4449
|
examples: [
|
|
4427
|
-
|
|
4450
|
+
[
|
|
4451
|
+
"prj_2WjyKQmM8ZnGcJsPWMrHRHrE",
|
|
4452
|
+
"prj_2WjyKQmM8ZnGcJsPWMrasEFg"
|
|
4453
|
+
]
|
|
4428
4454
|
]
|
|
4429
4455
|
}),
|
|
4430
4456
|
type: z__namespace.enum([
|
|
@@ -5665,6 +5691,16 @@ const userEventSchema = z__namespace.object({
|
|
|
5665
5691
|
"limits_exceeded"
|
|
5666
5692
|
])
|
|
5667
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(),
|
|
5668
5704
|
vcr: z__namespace.object({
|
|
5669
5705
|
updatedAt: z__namespace.number(),
|
|
5670
5706
|
blockedFrom: z__namespace.number().optional(),
|
|
@@ -9649,6 +9685,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
9649
9685
|
"authorize-git-deployment",
|
|
9650
9686
|
"auto-expose-system-envs",
|
|
9651
9687
|
"avatar",
|
|
9688
|
+
"billing-settings-updated",
|
|
9652
9689
|
"bulk-redirects-settings-updated",
|
|
9653
9690
|
"bulk-redirects-version-promoted",
|
|
9654
9691
|
"bulk-redirects-version-restored",
|
|
@@ -10253,7 +10290,9 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
10253
10290
|
"workflow"
|
|
10254
10291
|
])).describe("Categories that group this event type with related event types.").meta({
|
|
10255
10292
|
examples: [
|
|
10256
|
-
|
|
10293
|
+
[
|
|
10294
|
+
"deployment"
|
|
10295
|
+
]
|
|
10257
10296
|
]
|
|
10258
10297
|
}),
|
|
10259
10298
|
deprecated: z__namespace.union([
|
|
@@ -10347,6 +10386,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
10347
10386
|
"authorize-git-deployment",
|
|
10348
10387
|
"auto-expose-system-envs",
|
|
10349
10388
|
"avatar",
|
|
10389
|
+
"billing-settings-updated",
|
|
10350
10390
|
"bulk-redirects-settings-updated",
|
|
10351
10391
|
"bulk-redirects-version-promoted",
|
|
10352
10392
|
"bulk-redirects-version-restored",
|
|
@@ -11499,7 +11539,10 @@ const namedSandboxSchema = z__namespace.object({
|
|
|
11499
11539
|
"yul1"
|
|
11500
11540
|
])).optional().describe("The regions the sandbox fails over to. Empty when it does not fail over.").meta({
|
|
11501
11541
|
examples: [
|
|
11502
|
-
|
|
11542
|
+
[
|
|
11543
|
+
"cle1",
|
|
11544
|
+
"sfo1"
|
|
11545
|
+
]
|
|
11503
11546
|
]
|
|
11504
11547
|
}),
|
|
11505
11548
|
vcpus: z__namespace.number().optional().describe("Number of virtual CPUs allocated.").meta({
|
|
@@ -11626,7 +11669,10 @@ const sandboxInjectionRuleSchema = z__namespace.object({
|
|
|
11626
11669
|
}),
|
|
11627
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({
|
|
11628
11671
|
examples: [
|
|
11629
|
-
|
|
11672
|
+
[
|
|
11673
|
+
"Authorization",
|
|
11674
|
+
"X-API-Key"
|
|
11675
|
+
]
|
|
11630
11676
|
]
|
|
11631
11677
|
})
|
|
11632
11678
|
}).describe("HTTP header injection rules for outgoing requests matching specific domains.");
|
|
@@ -11642,17 +11688,24 @@ const sandboxNetworkPolicySchema = z__namespace.object({
|
|
|
11642
11688
|
}),
|
|
11643
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({
|
|
11644
11690
|
examples: [
|
|
11645
|
-
|
|
11691
|
+
[
|
|
11692
|
+
"*.example.com",
|
|
11693
|
+
"api.vercel.com"
|
|
11694
|
+
]
|
|
11646
11695
|
]
|
|
11647
11696
|
}),
|
|
11648
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({
|
|
11649
11698
|
examples: [
|
|
11650
|
-
|
|
11699
|
+
[
|
|
11700
|
+
"10.0.0.0/8"
|
|
11701
|
+
]
|
|
11651
11702
|
]
|
|
11652
11703
|
}),
|
|
11653
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({
|
|
11654
11705
|
examples: [
|
|
11655
|
-
|
|
11706
|
+
[
|
|
11707
|
+
"10.0.0.0/8"
|
|
11708
|
+
]
|
|
11656
11709
|
]
|
|
11657
11710
|
}),
|
|
11658
11711
|
injectionRules: z__namespace.array(z__namespace.unknown()).optional().describe("HTTP header injection rules for outgoing requests matching specific domains.")
|
|
@@ -11847,7 +11900,10 @@ const snapshotSchema = z__namespace.object({
|
|
|
11847
11900
|
}),
|
|
11848
11901
|
regions: z__namespace.array(z__namespace.string()).optional().describe("The regions where the snapshot is available.").meta({
|
|
11849
11902
|
examples: [
|
|
11850
|
-
|
|
11903
|
+
[
|
|
11904
|
+
"iad1",
|
|
11905
|
+
"sfo1"
|
|
11906
|
+
]
|
|
11851
11907
|
]
|
|
11852
11908
|
}),
|
|
11853
11909
|
status: z__namespace.enum([
|
|
@@ -11911,7 +11967,10 @@ const sessionCommandSchema = z__namespace.object({
|
|
|
11911
11967
|
}),
|
|
11912
11968
|
args: z__namespace.array(z__namespace.string()).describe("The arguments of the command.").meta({
|
|
11913
11969
|
examples: [
|
|
11914
|
-
|
|
11970
|
+
[
|
|
11971
|
+
"build",
|
|
11972
|
+
"run"
|
|
11973
|
+
]
|
|
11915
11974
|
]
|
|
11916
11975
|
}),
|
|
11917
11976
|
cwd: z__namespace.string().describe("The current working directory of the command.").meta({
|
|
@@ -11981,7 +12040,9 @@ const invitedTeamMemberSchema = z__namespace.object({
|
|
|
11981
12040
|
"VIEWER_FOR_PLUS"
|
|
11982
12041
|
])).optional().describe("The team roles of the user").meta({
|
|
11983
12042
|
examples: [
|
|
11984
|
-
|
|
12043
|
+
[
|
|
12044
|
+
"MEMBER"
|
|
12045
|
+
]
|
|
11985
12046
|
]
|
|
11986
12047
|
}),
|
|
11987
12048
|
teamPermissions: z__namespace.array(z__namespace.enum([
|
|
@@ -12006,7 +12067,9 @@ const invitedTeamMemberSchema = z__namespace.object({
|
|
|
12006
12067
|
"WorkflowDecryptor"
|
|
12007
12068
|
])).optional().describe("The team permissions of the user").meta({
|
|
12008
12069
|
examples: [
|
|
12009
|
-
|
|
12070
|
+
[
|
|
12071
|
+
"CreateProject"
|
|
12072
|
+
]
|
|
12010
12073
|
]
|
|
12011
12074
|
})
|
|
12012
12075
|
}).describe("The member was successfully added to the team.");
|
|
@@ -14165,12 +14228,12 @@ const deleteAiGatewayRuleErrorSchema = z__namespace.union([
|
|
|
14165
14228
|
deleteAiGatewayRuleStatus410Schema,
|
|
14166
14229
|
deleteAiGatewayRuleStatus500Schema
|
|
14167
14230
|
]);
|
|
14168
|
-
const
|
|
14231
|
+
const recordEventsHeaderXArtifactClientCiSchema = z__namespace.string().max(50).optional().describe("The continuous integration or delivery environment where this artifact is downloaded.").meta({
|
|
14169
14232
|
examples: [
|
|
14170
14233
|
"VERCEL"
|
|
14171
14234
|
]
|
|
14172
14235
|
});
|
|
14173
|
-
const
|
|
14236
|
+
const recordEventsHeaderXArtifactClientInteractiveSchema = z__namespace.int().min(0).max(1).optional().describe("1 if the client is an interactive shell. Otherwise 0").meta({
|
|
14174
14237
|
examples: [
|
|
14175
14238
|
0
|
|
14176
14239
|
]
|
|
@@ -14223,29 +14286,29 @@ const statusErrorSchema = z__namespace.union([
|
|
|
14223
14286
|
statusStatus403Schema,
|
|
14224
14287
|
statusStatus410Schema
|
|
14225
14288
|
]);
|
|
14226
|
-
const
|
|
14227
|
-
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({
|
|
14228
14291
|
examples: [
|
|
14229
14292
|
400
|
|
14230
14293
|
]
|
|
14231
14294
|
});
|
|
14232
|
-
const
|
|
14295
|
+
const uploadArtifactHeaderXArtifactClientCiSchema = z__namespace.string().max(50).optional().describe("The continuous integration or delivery environment where this artifact was generated.").meta({
|
|
14233
14296
|
examples: [
|
|
14234
14297
|
"VERCEL"
|
|
14235
14298
|
]
|
|
14236
14299
|
});
|
|
14237
|
-
const
|
|
14300
|
+
const uploadArtifactHeaderXArtifactClientInteractiveSchema = z__namespace.int().min(0).max(1).optional().describe("1 if the client is an interactive shell. Otherwise 0").meta({
|
|
14238
14301
|
examples: [
|
|
14239
14302
|
0
|
|
14240
14303
|
]
|
|
14241
14304
|
});
|
|
14242
|
-
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({
|
|
14243
14306
|
examples: [
|
|
14244
14307
|
"Tc0BmHvJYMIYJ62/zx87YqO0Flxk+5Ovip25NY825CQ="
|
|
14245
14308
|
]
|
|
14246
14309
|
});
|
|
14247
|
-
const
|
|
14248
|
-
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.");
|
|
14249
14312
|
const uploadArtifactPathHashSchema = z__namespace.string().describe("The artifact hash").meta({
|
|
14250
14313
|
examples: [
|
|
14251
14314
|
"12HKQaOmR5t5Uy6vdcQsNIiZgHGB"
|
|
@@ -14275,12 +14338,12 @@ const uploadArtifactErrorSchema = z__namespace.union([
|
|
|
14275
14338
|
uploadArtifactStatus403Schema,
|
|
14276
14339
|
uploadArtifactStatus410Schema
|
|
14277
14340
|
]);
|
|
14278
|
-
const
|
|
14341
|
+
const downloadArtifactHeaderXArtifactClientCiSchema = z__namespace.string().max(50).optional().describe("The continuous integration or delivery environment where this artifact is downloaded.").meta({
|
|
14279
14342
|
examples: [
|
|
14280
14343
|
"VERCEL"
|
|
14281
14344
|
]
|
|
14282
14345
|
});
|
|
14283
|
-
const
|
|
14346
|
+
const downloadArtifactHeaderXArtifactClientInteractiveSchema = z__namespace.int().min(0).max(1).optional().describe("1 if the client is an interactive shell. Otherwise 0").meta({
|
|
14284
14347
|
examples: [
|
|
14285
14348
|
0
|
|
14286
14349
|
]
|
|
@@ -17224,21 +17287,11 @@ const listSharedEnvVariableQueryExcludeIdsSchema = z__namespace.string().optiona
|
|
|
17224
17287
|
"env_2WjyKQmM8ZnGcJsPWMrHRHrE,env_2WjyKQmM8ZnGcJsPWMrHRCRV"
|
|
17225
17288
|
]
|
|
17226
17289
|
});
|
|
17227
|
-
const listSharedEnvVariableQueryexcludeIdsSchema = z__namespace.string().optional().describe("Filter SharedEnvVariables based on comma separated ids").meta({
|
|
17228
|
-
examples: [
|
|
17229
|
-
"env_2WjyKQmM8ZnGcJsPWMrHRHrE,env_2WjyKQmM8ZnGcJsPWMrHRCRV"
|
|
17230
|
-
]
|
|
17231
|
-
});
|
|
17232
17290
|
const listSharedEnvVariableQueryExcludeProjectIdSchema = z__namespace.string().optional().describe("Filter SharedEnvVariables that belong to a project").meta({
|
|
17233
17291
|
examples: [
|
|
17234
17292
|
"prj_2WjyKQmM8ZnGcJsPWMrHRHrE"
|
|
17235
17293
|
]
|
|
17236
17294
|
});
|
|
17237
|
-
const listSharedEnvVariableQueryexcludeProjectIdSchema = z__namespace.string().optional().describe("Filter SharedEnvVariables that belong to a project").meta({
|
|
17238
|
-
examples: [
|
|
17239
|
-
"prj_2WjyKQmM8ZnGcJsPWMrHRHrE"
|
|
17240
|
-
]
|
|
17241
|
-
});
|
|
17242
17295
|
const listSharedEnvVariableQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
17243
17296
|
examples: [
|
|
17244
17297
|
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
@@ -22100,7 +22153,7 @@ const createSessionDirectoryErrorSchema = z__namespace.union([
|
|
|
22100
22153
|
createSessionDirectoryStatus429Schema,
|
|
22101
22154
|
createSessionDirectoryStatus500Schema
|
|
22102
22155
|
]);
|
|
22103
|
-
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({
|
|
22104
22157
|
examples: [
|
|
22105
22158
|
"/home/vercel-sandbox"
|
|
22106
22159
|
]
|
|
@@ -22647,6 +22700,7 @@ const getSecurityFirewallEventsStatus400Schema = z__namespace.unknown();
|
|
|
22647
22700
|
const getSecurityFirewallEventsStatus401Schema = z__namespace.unknown();
|
|
22648
22701
|
const getSecurityFirewallEventsStatus403Schema = z__namespace.unknown();
|
|
22649
22702
|
const getSecurityFirewallEventsStatus404Schema = z__namespace.unknown();
|
|
22703
|
+
const getSecurityFirewallEventsStatus408Schema = z__namespace.unknown();
|
|
22650
22704
|
const getSecurityFirewallEventsStatus410Schema = z__namespace.unknown();
|
|
22651
22705
|
const getSecurityFirewallEventsStatus500Schema = z__namespace.unknown();
|
|
22652
22706
|
const getSecurityFirewallEventsResponseSchema = getSecurityFirewallEventsStatus200Schema;
|
|
@@ -22655,6 +22709,7 @@ const getSecurityFirewallEventsErrorSchema = z__namespace.union([
|
|
|
22655
22709
|
getSecurityFirewallEventsStatus401Schema,
|
|
22656
22710
|
getSecurityFirewallEventsStatus403Schema,
|
|
22657
22711
|
getSecurityFirewallEventsStatus404Schema,
|
|
22712
|
+
getSecurityFirewallEventsStatus408Schema,
|
|
22658
22713
|
getSecurityFirewallEventsStatus410Schema,
|
|
22659
22714
|
getSecurityFirewallEventsStatus500Schema
|
|
22660
22715
|
]);
|
|
@@ -22703,8 +22758,8 @@ const createSpeedInsightsToggleErrorSchema = z__namespace.union([
|
|
|
22703
22758
|
createSpeedInsightsToggleStatus410Schema
|
|
22704
22759
|
]);
|
|
22705
22760
|
const getStorageStoresByIdPathIdSchema = z__namespace.string();
|
|
22706
|
-
const
|
|
22707
|
-
const
|
|
22761
|
+
const getStorageStoresByIdQuerySkipMetadataSchema = z__namespace.boolean().optional();
|
|
22762
|
+
const getStorageStoresByIdQueryIncludeGuidesSchema = z__namespace.boolean().optional();
|
|
22708
22763
|
const getStorageStoresByIdStatus200Schema = z__namespace.unknown();
|
|
22709
22764
|
const getStorageStoresByIdStatus400Schema = z__namespace.unknown();
|
|
22710
22765
|
const getStorageStoresByIdStatus401Schema = z__namespace.unknown();
|
|
@@ -23134,6 +23189,7 @@ const deleteTeamStatus402Schema = z__namespace.unknown();
|
|
|
23134
23189
|
const deleteTeamStatus403Schema = z__namespace.unknown();
|
|
23135
23190
|
const deleteTeamStatus409Schema = z__namespace.unknown();
|
|
23136
23191
|
const deleteTeamStatus410Schema = z__namespace.unknown();
|
|
23192
|
+
const deleteTeamStatus503Schema = z__namespace.unknown();
|
|
23137
23193
|
const deleteTeamResponseSchema = deleteTeamStatus200Schema;
|
|
23138
23194
|
const deleteTeamErrorSchema = z__namespace.union([
|
|
23139
23195
|
deleteTeamStatus400Schema,
|
|
@@ -23141,7 +23197,8 @@ const deleteTeamErrorSchema = z__namespace.union([
|
|
|
23141
23197
|
deleteTeamStatus402Schema,
|
|
23142
23198
|
deleteTeamStatus403Schema,
|
|
23143
23199
|
deleteTeamStatus409Schema,
|
|
23144
|
-
deleteTeamStatus410Schema
|
|
23200
|
+
deleteTeamStatus410Schema,
|
|
23201
|
+
deleteTeamStatus503Schema
|
|
23145
23202
|
]);
|
|
23146
23203
|
const deleteTeamInviteCodePathInviteIdSchema = z__namespace.string().describe("The Team invite code ID.").meta({
|
|
23147
23204
|
examples: [
|
|
@@ -23223,10 +23280,10 @@ const deleteMicrofrontendsGroupErrorSchema = z__namespace.union([
|
|
|
23223
23280
|
deleteMicrofrontendsGroupStatus410Schema,
|
|
23224
23281
|
deleteMicrofrontendsGroupStatus500Schema
|
|
23225
23282
|
]);
|
|
23226
|
-
const
|
|
23227
|
-
const
|
|
23228
|
-
const
|
|
23229
|
-
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`");
|
|
23230
23287
|
const uploadFileQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
23231
23288
|
examples: [
|
|
23232
23289
|
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
@@ -24154,7 +24211,10 @@ const aggregatePageviewsQueryBySchema = z__namespace.array(z__namespace.string()
|
|
|
24154
24211
|
message: "Array entries must be unique"
|
|
24155
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({
|
|
24156
24213
|
examples: [
|
|
24157
|
-
|
|
24214
|
+
[
|
|
24215
|
+
"day",
|
|
24216
|
+
"country"
|
|
24217
|
+
]
|
|
24158
24218
|
]
|
|
24159
24219
|
});
|
|
24160
24220
|
const aggregatePageviewsQuerySinceSchema = z__namespace.union([
|
|
@@ -24216,7 +24276,10 @@ const aggregateEventsQueryBySchema = z__namespace.array(z__namespace.string().re
|
|
|
24216
24276
|
message: "Array entries must be unique"
|
|
24217
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({
|
|
24218
24278
|
examples: [
|
|
24219
|
-
|
|
24279
|
+
[
|
|
24280
|
+
"day",
|
|
24281
|
+
"eventName"
|
|
24282
|
+
]
|
|
24220
24283
|
]
|
|
24221
24284
|
});
|
|
24222
24285
|
const aggregateEventsQuerySinceSchema = z__namespace.union([
|
|
@@ -24890,7 +24953,10 @@ const getDeploymentsQueryProjectIdSchema = z__namespace.string().optional().desc
|
|
|
24890
24953
|
});
|
|
24891
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({
|
|
24892
24955
|
examples: [
|
|
24893
|
-
|
|
24956
|
+
[
|
|
24957
|
+
"prj_123",
|
|
24958
|
+
"prj_456"
|
|
24959
|
+
]
|
|
24894
24960
|
]
|
|
24895
24961
|
});
|
|
24896
24962
|
const getDeploymentsQueryTargetSchema = z__namespace.string().optional().describe("Filter deployments based on the environment.").meta({
|
|
@@ -26457,6 +26523,7 @@ exports.deleteTeamStatus402Schema = deleteTeamStatus402Schema;
|
|
|
26457
26523
|
exports.deleteTeamStatus403Schema = deleteTeamStatus403Schema;
|
|
26458
26524
|
exports.deleteTeamStatus409Schema = deleteTeamStatus409Schema;
|
|
26459
26525
|
exports.deleteTeamStatus410Schema = deleteTeamStatus410Schema;
|
|
26526
|
+
exports.deleteTeamStatus503Schema = deleteTeamStatus503Schema;
|
|
26460
26527
|
exports.deleteWebhookErrorSchema = deleteWebhookErrorSchema;
|
|
26461
26528
|
exports.deleteWebhookPathIdSchema = deleteWebhookPathIdSchema;
|
|
26462
26529
|
exports.deleteWebhookQuerySlugSchema = deleteWebhookQuerySlugSchema;
|
|
@@ -26477,8 +26544,8 @@ exports.domainNotRegisteredSchema = domainNotRegisteredSchema;
|
|
|
26477
26544
|
exports.domainNotRenewableSchema = domainNotRenewableSchema;
|
|
26478
26545
|
exports.domainTooShortSchema = domainTooShortSchema;
|
|
26479
26546
|
exports.downloadArtifactErrorSchema = downloadArtifactErrorSchema;
|
|
26480
|
-
exports.
|
|
26481
|
-
exports.
|
|
26547
|
+
exports.downloadArtifactHeaderXArtifactClientCiSchema = downloadArtifactHeaderXArtifactClientCiSchema;
|
|
26548
|
+
exports.downloadArtifactHeaderXArtifactClientInteractiveSchema = downloadArtifactHeaderXArtifactClientInteractiveSchema;
|
|
26482
26549
|
exports.downloadArtifactPathHashSchema = downloadArtifactPathHashSchema;
|
|
26483
26550
|
exports.downloadArtifactQuerySlugSchema = downloadArtifactQuerySlugSchema;
|
|
26484
26551
|
exports.downloadArtifactQueryTeamIdSchema = downloadArtifactQueryTeamIdSchema;
|
|
@@ -27806,6 +27873,7 @@ exports.getSecurityFirewallEventsStatus400Schema = getSecurityFirewallEventsStat
|
|
|
27806
27873
|
exports.getSecurityFirewallEventsStatus401Schema = getSecurityFirewallEventsStatus401Schema;
|
|
27807
27874
|
exports.getSecurityFirewallEventsStatus403Schema = getSecurityFirewallEventsStatus403Schema;
|
|
27808
27875
|
exports.getSecurityFirewallEventsStatus404Schema = getSecurityFirewallEventsStatus404Schema;
|
|
27876
|
+
exports.getSecurityFirewallEventsStatus408Schema = getSecurityFirewallEventsStatus408Schema;
|
|
27809
27877
|
exports.getSecurityFirewallEventsStatus410Schema = getSecurityFirewallEventsStatus410Schema;
|
|
27810
27878
|
exports.getSecurityFirewallEventsStatus500Schema = getSecurityFirewallEventsStatus500Schema;
|
|
27811
27879
|
exports.getSessionCommandErrorSchema = getSessionCommandErrorSchema;
|
|
@@ -27876,8 +27944,8 @@ exports.getSharedEnvVarStatus403Schema = getSharedEnvVarStatus403Schema;
|
|
|
27876
27944
|
exports.getSharedEnvVarStatus410Schema = getSharedEnvVarStatus410Schema;
|
|
27877
27945
|
exports.getStorageStoresByIdErrorSchema = getStorageStoresByIdErrorSchema;
|
|
27878
27946
|
exports.getStorageStoresByIdPathIdSchema = getStorageStoresByIdPathIdSchema;
|
|
27879
|
-
exports.
|
|
27880
|
-
exports.
|
|
27947
|
+
exports.getStorageStoresByIdQueryIncludeGuidesSchema = getStorageStoresByIdQueryIncludeGuidesSchema;
|
|
27948
|
+
exports.getStorageStoresByIdQuerySkipMetadataSchema = getStorageStoresByIdQuerySkipMetadataSchema;
|
|
27881
27949
|
exports.getStorageStoresByIdResponseSchema = getStorageStoresByIdResponseSchema;
|
|
27882
27950
|
exports.getStorageStoresByIdStatus200Schema = getStorageStoresByIdStatus200Schema;
|
|
27883
27951
|
exports.getStorageStoresByIdStatus400Schema = getStorageStoresByIdStatus400Schema;
|
|
@@ -28535,8 +28603,6 @@ exports.listSharedEnvVariableQueryProjectIdSchema = listSharedEnvVariableQueryPr
|
|
|
28535
28603
|
exports.listSharedEnvVariableQuerySearchSchema = listSharedEnvVariableQuerySearchSchema;
|
|
28536
28604
|
exports.listSharedEnvVariableQuerySlugSchema = listSharedEnvVariableQuerySlugSchema;
|
|
28537
28605
|
exports.listSharedEnvVariableQueryTeamIdSchema = listSharedEnvVariableQueryTeamIdSchema;
|
|
28538
|
-
exports.listSharedEnvVariableQueryexcludeIdsSchema = listSharedEnvVariableQueryexcludeIdsSchema;
|
|
28539
|
-
exports.listSharedEnvVariableQueryexcludeProjectIdSchema = listSharedEnvVariableQueryexcludeProjectIdSchema;
|
|
28540
28606
|
exports.listSharedEnvVariableResponseSchema = listSharedEnvVariableResponseSchema;
|
|
28541
28607
|
exports.listSharedEnvVariableStatus200Schema = listSharedEnvVariableStatus200Schema;
|
|
28542
28608
|
exports.listSharedEnvVariableStatus400Schema = listSharedEnvVariableStatus400Schema;
|
|
@@ -28775,8 +28841,8 @@ exports.readSessionFileStatus422Schema = readSessionFileStatus422Schema;
|
|
|
28775
28841
|
exports.readSessionFileStatus429Schema = readSessionFileStatus429Schema;
|
|
28776
28842
|
exports.readSessionFileStatus500Schema = readSessionFileStatus500Schema;
|
|
28777
28843
|
exports.recordEventsErrorSchema = recordEventsErrorSchema;
|
|
28778
|
-
exports.
|
|
28779
|
-
exports.
|
|
28844
|
+
exports.recordEventsHeaderXArtifactClientCiSchema = recordEventsHeaderXArtifactClientCiSchema;
|
|
28845
|
+
exports.recordEventsHeaderXArtifactClientInteractiveSchema = recordEventsHeaderXArtifactClientInteractiveSchema;
|
|
28780
28846
|
exports.recordEventsQuerySlugSchema = recordEventsQuerySlugSchema;
|
|
28781
28847
|
exports.recordEventsQueryTeamIdSchema = recordEventsQueryTeamIdSchema;
|
|
28782
28848
|
exports.recordEventsResponseSchema = recordEventsResponseSchema;
|
|
@@ -29814,13 +29880,13 @@ exports.updateVersionStatus404Schema = updateVersionStatus404Schema;
|
|
|
29814
29880
|
exports.updateVersionStatus410Schema = updateVersionStatus410Schema;
|
|
29815
29881
|
exports.updateVersionStatus500Schema = updateVersionStatus500Schema;
|
|
29816
29882
|
exports.uploadArtifactErrorSchema = uploadArtifactErrorSchema;
|
|
29817
|
-
exports.
|
|
29818
|
-
exports.
|
|
29819
|
-
exports.
|
|
29820
|
-
exports.
|
|
29821
|
-
exports.
|
|
29822
|
-
exports.
|
|
29823
|
-
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;
|
|
29824
29890
|
exports.uploadArtifactPathHashSchema = uploadArtifactPathHashSchema;
|
|
29825
29891
|
exports.uploadArtifactQuerySlugSchema = uploadArtifactQuerySlugSchema;
|
|
29826
29892
|
exports.uploadArtifactQueryTeamIdSchema = uploadArtifactQueryTeamIdSchema;
|
|
@@ -29842,10 +29908,10 @@ exports.uploadCertStatus402Schema = uploadCertStatus402Schema;
|
|
|
29842
29908
|
exports.uploadCertStatus403Schema = uploadCertStatus403Schema;
|
|
29843
29909
|
exports.uploadCertStatus410Schema = uploadCertStatus410Schema;
|
|
29844
29910
|
exports.uploadFileErrorSchema = uploadFileErrorSchema;
|
|
29845
|
-
exports.
|
|
29846
|
-
exports.
|
|
29847
|
-
exports.
|
|
29848
|
-
exports.
|
|
29911
|
+
exports.uploadFileHeaderContentLengthSchema = uploadFileHeaderContentLengthSchema;
|
|
29912
|
+
exports.uploadFileHeaderXNowDigestSchema = uploadFileHeaderXNowDigestSchema;
|
|
29913
|
+
exports.uploadFileHeaderXNowSizeSchema = uploadFileHeaderXNowSizeSchema;
|
|
29914
|
+
exports.uploadFileHeaderXVercelDigestSchema = uploadFileHeaderXVercelDigestSchema;
|
|
29849
29915
|
exports.uploadFileQuerySlugSchema = uploadFileQuerySlugSchema;
|
|
29850
29916
|
exports.uploadFileQueryTeamIdSchema = uploadFileQueryTeamIdSchema;
|
|
29851
29917
|
exports.uploadFileResponseSchema = uploadFileResponseSchema;
|
|
@@ -29894,7 +29960,7 @@ exports.verifyProjectDomainStatus401Schema = verifyProjectDomainStatus401Schema;
|
|
|
29894
29960
|
exports.verifyProjectDomainStatus403Schema = verifyProjectDomainStatus403Schema;
|
|
29895
29961
|
exports.verifyProjectDomainStatus410Schema = verifyProjectDomainStatus410Schema;
|
|
29896
29962
|
exports.writeSessionFilesErrorSchema = writeSessionFilesErrorSchema;
|
|
29897
|
-
exports.
|
|
29963
|
+
exports.writeSessionFilesHeaderXCwdSchema = writeSessionFilesHeaderXCwdSchema;
|
|
29898
29964
|
exports.writeSessionFilesPathSessionIdSchema = writeSessionFilesPathSessionIdSchema;
|
|
29899
29965
|
exports.writeSessionFilesQuerySlugSchema = writeSessionFilesQuerySlugSchema;
|
|
29900
29966
|
exports.writeSessionFilesQueryTeamIdSchema = writeSessionFilesQueryTeamIdSchema;
|