@vercel/sdk 1.13.1 → 1.13.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/bin/mcp-server.js +45 -45
- package/bin/mcp-server.js.map +7 -7
- package/esm/__tests__/accessgroups.test.js +1 -3
- package/esm/__tests__/accessgroups.test.js.map +1 -1
- package/esm/__tests__/edgeconfig.test.js +6 -6
- package/esm/__tests__/logdrains.test.js +3 -1
- package/esm/__tests__/logdrains.test.js.map +1 -1
- package/esm/__tests__/rollingrelease.test.js +2 -1
- package/esm/__tests__/rollingrelease.test.js.map +1 -1
- package/esm/__tests__/security.test.js +11 -1
- package/esm/__tests__/security.test.js.map +1 -1
- package/esm/lib/config.d.ts +2 -2
- package/esm/lib/config.js +2 -2
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.js +1 -1
- package/esm/models/canceldeploymentop.d.ts +34 -34
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +14 -14
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +32 -32
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +12 -12
- package/esm/models/createdeploymentop.js.map +1 -1
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/accessgroups.test.ts +1 -3
- package/src/__tests__/edgeconfig.test.ts +6 -6
- package/src/__tests__/logdrains.test.ts +3 -1
- package/src/__tests__/rollingrelease.test.ts +2 -1
- package/src/__tests__/security.test.ts +11 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/canceldeploymentop.ts +18 -18
- package/src/models/createdeploymentop.ts +14 -14
- package/vercel-spec.json +41 -46
|
@@ -172,11 +172,11 @@ export const CreateDeploymentFramework = {
|
|
|
172
172
|
Xmcp: "xmcp",
|
|
173
173
|
};
|
|
174
174
|
export const CreateDeploymentDeploymentsStatus = {
|
|
175
|
-
Error: "error",
|
|
176
|
-
Timeout: "timeout",
|
|
177
175
|
Skipped: "skipped",
|
|
178
176
|
Pending: "pending",
|
|
179
177
|
Ready: "ready",
|
|
178
|
+
Error: "error",
|
|
179
|
+
Timeout: "timeout",
|
|
180
180
|
};
|
|
181
181
|
/**
|
|
182
182
|
* Must be `http` or `https`.
|
|
@@ -194,8 +194,8 @@ export const ContentDispositionType = {
|
|
|
194
194
|
Attachment: "attachment",
|
|
195
195
|
};
|
|
196
196
|
export const CreateDeploymentReadyState = {
|
|
197
|
-
Error: "ERROR",
|
|
198
197
|
Building: "BUILDING",
|
|
198
|
+
Error: "ERROR",
|
|
199
199
|
Initializing: "INITIALIZING",
|
|
200
200
|
Ready: "READY",
|
|
201
201
|
};
|
|
@@ -334,12 +334,12 @@ export const CreateDeploymentPlan = {
|
|
|
334
334
|
Enterprise: "enterprise",
|
|
335
335
|
};
|
|
336
336
|
export const FunctionType = {
|
|
337
|
-
Standard: "standard",
|
|
338
337
|
Fluid: "fluid",
|
|
338
|
+
Standard: "standard",
|
|
339
339
|
};
|
|
340
340
|
export const FunctionMemoryType = {
|
|
341
|
-
StandardLegacy: "standard_legacy",
|
|
342
341
|
Standard: "standard",
|
|
342
|
+
StandardLegacy: "standard_legacy",
|
|
343
343
|
Performance: "performance",
|
|
344
344
|
};
|
|
345
345
|
export const Architecture = {
|
|
@@ -353,12 +353,12 @@ export const CreateDeploymentDeploymentsType = {
|
|
|
353
353
|
QueueV1beta: "queue/v1beta",
|
|
354
354
|
};
|
|
355
355
|
export const Handle = {
|
|
356
|
-
Filesystem: "filesystem",
|
|
357
356
|
Error: "error",
|
|
357
|
+
Filesystem: "filesystem",
|
|
358
358
|
Hit: "hit",
|
|
359
359
|
Miss: "miss",
|
|
360
|
-
Resource: "resource",
|
|
361
360
|
Rewrite: "rewrite",
|
|
361
|
+
Resource: "resource",
|
|
362
362
|
};
|
|
363
363
|
export const CreateDeploymentHasDeploymentsType = {
|
|
364
364
|
Header: "header",
|
|
@@ -407,22 +407,22 @@ export const CreateDeploymentGitRepoDeploymentsType = {
|
|
|
407
407
|
Bitbucket: "bitbucket",
|
|
408
408
|
};
|
|
409
409
|
export const CreateDeploymentGitRepoOwnerType = {
|
|
410
|
-
User: "user",
|
|
411
410
|
Team: "team",
|
|
411
|
+
User: "user",
|
|
412
412
|
};
|
|
413
413
|
export const CreateDeploymentGitRepoType = {
|
|
414
414
|
Github: "github",
|
|
415
415
|
};
|
|
416
416
|
export const GitRepoOwnerType = {
|
|
417
|
-
User: "user",
|
|
418
417
|
Team: "team",
|
|
418
|
+
User: "user",
|
|
419
419
|
};
|
|
420
420
|
export const GitRepoType = {
|
|
421
421
|
Gitlab: "gitlab",
|
|
422
422
|
};
|
|
423
423
|
export const OwnerType = {
|
|
424
|
-
User: "user",
|
|
425
424
|
Team: "team",
|
|
425
|
+
User: "user",
|
|
426
426
|
};
|
|
427
427
|
/** @internal */
|
|
428
428
|
export const ForceNew$inboundSchema = z
|
|
@@ -1705,8 +1705,8 @@ export const Lambdas$inboundSchema = z.object({
|
|
|
1705
1705
|
id: z.string(),
|
|
1706
1706
|
createdAt: z.number().optional(),
|
|
1707
1707
|
readyState: CreateDeploymentReadyState$inboundSchema.optional(),
|
|
1708
|
-
readyStateAt: z.number().optional(),
|
|
1709
1708
|
entrypoint: z.nullable(z.string()).optional(),
|
|
1709
|
+
readyStateAt: z.number().optional(),
|
|
1710
1710
|
output: z.array(z.lazy(() => CreateDeploymentOutput$inboundSchema)),
|
|
1711
1711
|
});
|
|
1712
1712
|
/** @internal */
|
|
@@ -1714,8 +1714,8 @@ export const Lambdas$outboundSchema = z.object({
|
|
|
1714
1714
|
id: z.string(),
|
|
1715
1715
|
createdAt: z.number().optional(),
|
|
1716
1716
|
readyState: CreateDeploymentReadyState$outboundSchema.optional(),
|
|
1717
|
-
readyStateAt: z.number().optional(),
|
|
1718
1717
|
entrypoint: z.nullable(z.string()).optional(),
|
|
1718
|
+
readyStateAt: z.number().optional(),
|
|
1719
1719
|
output: z.array(z.lazy(() => CreateDeploymentOutput$outboundSchema)),
|
|
1720
1720
|
});
|
|
1721
1721
|
/**
|