@vercel/sdk 1.10.8 → 1.11.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/bin/mcp-server.js +3715 -927
- package/bin/mcp-server.js.map +20 -20
- package/esm/__tests__/accessgroups.test.js +6 -6
- package/esm/__tests__/accessgroups.test.js.map +1 -1
- package/esm/__tests__/domains.test.js +5 -6
- package/esm/__tests__/domains.test.js.map +1 -1
- package/esm/__tests__/edgeconfig.test.js +6 -6
- package/esm/__tests__/edgeconfig.test.js.map +1 -1
- package/esm/__tests__/integrations.test.js +1 -1
- package/esm/__tests__/rollingrelease.test.js +2 -2
- 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/__tests__/teams.test.js +2 -2
- package/esm/__tests__/teams.test.js.map +1 -1
- package/esm/lib/config.d.ts +3 -3
- package/esm/lib/config.js +3 -3
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.js +1 -1
- package/esm/models/canceldeploymentop.d.ts +41 -41
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +43 -41
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +98 -98
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +113 -117
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createintegrationstoredirectop.d.ts +240 -240
- package/esm/models/createintegrationstoredirectop.js +294 -294
- package/esm/models/createprojectop.d.ts +1626 -281
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +1676 -298
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/createwebhookop.d.ts +72 -66
- package/esm/models/createwebhookop.d.ts.map +1 -1
- package/esm/models/createwebhookop.js +24 -22
- package/esm/models/createwebhookop.js.map +1 -1
- package/esm/models/getconfigurationproductsop.d.ts +330 -330
- package/esm/models/getconfigurationproductsop.js +408 -408
- package/esm/models/getdeploymentop.d.ts +16 -16
- package/esm/models/getdeploymentop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.js +24 -24
- package/esm/models/getdeploymentop.js.map +1 -1
- package/esm/models/getprojectsop.d.ts +1402 -57
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +1575 -202
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/getwebhookop.d.ts +36 -33
- package/esm/models/getwebhookop.d.ts.map +1 -1
- package/esm/models/getwebhookop.js +12 -11
- package/esm/models/getwebhookop.js.map +1 -1
- package/esm/models/getwebhooksop.d.ts +72 -66
- package/esm/models/getwebhooksop.d.ts.map +1 -1
- package/esm/models/getwebhooksop.js +24 -22
- package/esm/models/getwebhooksop.js.map +1 -1
- package/esm/models/listaccessgroupsop.d.ts +2 -5
- package/esm/models/listaccessgroupsop.d.ts.map +1 -1
- package/esm/models/listaccessgroupsop.js +2 -2
- package/esm/models/listaccessgroupsop.js.map +1 -1
- package/esm/models/readaccessgroupop.d.ts +48 -5
- package/esm/models/readaccessgroupop.d.ts.map +1 -1
- package/esm/models/readaccessgroupop.js +30 -2
- package/esm/models/readaccessgroupop.js.map +1 -1
- package/esm/models/team.d.ts +35 -18
- package/esm/models/team.d.ts.map +1 -1
- package/esm/models/team.js +15 -13
- package/esm/models/team.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +1402 -57
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +1584 -200
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +1402 -57
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +1579 -202
- package/esm/models/updateprojectop.js.map +1 -1
- package/examples/package-lock.json +1 -1
- package/examples/projectsUpdateProject.example.ts +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/accessgroups.test.ts +6 -6
- package/src/__tests__/domains.test.ts +5 -6
- package/src/__tests__/edgeconfig.test.ts +6 -6
- package/src/__tests__/integrations.test.ts +1 -1
- package/src/__tests__/rollingrelease.test.ts +2 -2
- package/src/__tests__/security.test.ts +11 -1
- package/src/__tests__/teams.test.ts +2 -2
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/canceldeploymentop.ts +84 -64
- package/src/models/createdeploymentop.ts +239 -192
- package/src/models/createintegrationstoredirectop.ts +505 -505
- package/src/models/createprojectop.ts +3443 -466
- package/src/models/createwebhookop.ts +24 -22
- package/src/models/getconfigurationproductsop.ts +703 -703
- package/src/models/getdeploymentop.ts +34 -34
- package/src/models/getprojectsop.ts +3255 -300
- package/src/models/getwebhookop.ts +12 -11
- package/src/models/getwebhooksop.ts +24 -22
- package/src/models/listaccessgroupsop.ts +4 -7
- package/src/models/readaccessgroupop.ts +42 -7
- package/src/models/team.ts +47 -28
- package/src/models/updateprojectdatacacheop.ts +3184 -307
- package/src/models/updateprojectop.ts +3290 -298
- package/vercel-spec.json +4895 -2034
|
@@ -1643,12 +1643,14 @@ export type GetDeploymentRoutes2 = {
|
|
|
1643
1643
|
status?: number | undefined;
|
|
1644
1644
|
};
|
|
1645
1645
|
|
|
1646
|
-
export const
|
|
1646
|
+
export const GetDeploymentHasDeploymentsType = {
|
|
1647
1647
|
Header: "header",
|
|
1648
1648
|
Cookie: "cookie",
|
|
1649
1649
|
Query: "query",
|
|
1650
1650
|
} as const;
|
|
1651
|
-
export type
|
|
1651
|
+
export type GetDeploymentHasDeploymentsType = ClosedEnum<
|
|
1652
|
+
typeof GetDeploymentHasDeploymentsType
|
|
1653
|
+
>;
|
|
1652
1654
|
|
|
1653
1655
|
export type GetDeploymentValueDeploymentsResponse200Eq = string | number;
|
|
1654
1656
|
|
|
@@ -1669,17 +1671,15 @@ export type GetDeploymentValue2 = {
|
|
|
1669
1671
|
export type GetDeploymentHasDeploymentsValue = GetDeploymentValue2 | string;
|
|
1670
1672
|
|
|
1671
1673
|
export type GetDeploymentHas2 = {
|
|
1672
|
-
type:
|
|
1674
|
+
type: GetDeploymentHasDeploymentsType;
|
|
1673
1675
|
key: string;
|
|
1674
1676
|
value?: GetDeploymentValue2 | string | undefined;
|
|
1675
1677
|
};
|
|
1676
1678
|
|
|
1677
|
-
export const
|
|
1679
|
+
export const GetDeploymentHasType = {
|
|
1678
1680
|
Host: "host",
|
|
1679
1681
|
} as const;
|
|
1680
|
-
export type
|
|
1681
|
-
typeof GetDeploymentHasDeploymentsType
|
|
1682
|
-
>;
|
|
1682
|
+
export type GetDeploymentHasType = ClosedEnum<typeof GetDeploymentHasType>;
|
|
1683
1683
|
|
|
1684
1684
|
export type GetDeploymentValueDeploymentsResponseEq = string | number;
|
|
1685
1685
|
|
|
@@ -1702,7 +1702,7 @@ export type GetDeploymentHasValue =
|
|
|
1702
1702
|
| string;
|
|
1703
1703
|
|
|
1704
1704
|
export type GetDeploymentHas1 = {
|
|
1705
|
-
type:
|
|
1705
|
+
type: GetDeploymentHasType;
|
|
1706
1706
|
value: GetDeploymentValueDeploymentsResponse2002 | string;
|
|
1707
1707
|
};
|
|
1708
1708
|
|
|
@@ -10055,24 +10055,24 @@ export function getDeploymentRoutes2FromJSON(
|
|
|
10055
10055
|
}
|
|
10056
10056
|
|
|
10057
10057
|
/** @internal */
|
|
10058
|
-
export const
|
|
10059
|
-
typeof
|
|
10060
|
-
> = z.nativeEnum(
|
|
10058
|
+
export const GetDeploymentHasDeploymentsType$inboundSchema: z.ZodNativeEnum<
|
|
10059
|
+
typeof GetDeploymentHasDeploymentsType
|
|
10060
|
+
> = z.nativeEnum(GetDeploymentHasDeploymentsType);
|
|
10061
10061
|
|
|
10062
10062
|
/** @internal */
|
|
10063
|
-
export const
|
|
10064
|
-
typeof
|
|
10065
|
-
> =
|
|
10063
|
+
export const GetDeploymentHasDeploymentsType$outboundSchema: z.ZodNativeEnum<
|
|
10064
|
+
typeof GetDeploymentHasDeploymentsType
|
|
10065
|
+
> = GetDeploymentHasDeploymentsType$inboundSchema;
|
|
10066
10066
|
|
|
10067
10067
|
/**
|
|
10068
10068
|
* @internal
|
|
10069
10069
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
10070
10070
|
*/
|
|
10071
|
-
export namespace
|
|
10072
|
-
/** @deprecated use `
|
|
10073
|
-
export const inboundSchema =
|
|
10074
|
-
/** @deprecated use `
|
|
10075
|
-
export const outboundSchema =
|
|
10071
|
+
export namespace GetDeploymentHasDeploymentsType$ {
|
|
10072
|
+
/** @deprecated use `GetDeploymentHasDeploymentsType$inboundSchema` instead. */
|
|
10073
|
+
export const inboundSchema = GetDeploymentHasDeploymentsType$inboundSchema;
|
|
10074
|
+
/** @deprecated use `GetDeploymentHasDeploymentsType$outboundSchema` instead. */
|
|
10075
|
+
export const outboundSchema = GetDeploymentHasDeploymentsType$outboundSchema;
|
|
10076
10076
|
}
|
|
10077
10077
|
|
|
10078
10078
|
/** @internal */
|
|
@@ -10277,7 +10277,7 @@ export const GetDeploymentHas2$inboundSchema: z.ZodType<
|
|
|
10277
10277
|
z.ZodTypeDef,
|
|
10278
10278
|
unknown
|
|
10279
10279
|
> = z.object({
|
|
10280
|
-
type:
|
|
10280
|
+
type: GetDeploymentHasDeploymentsType$inboundSchema,
|
|
10281
10281
|
key: z.string(),
|
|
10282
10282
|
value: z.union([z.lazy(() => GetDeploymentValue2$inboundSchema), z.string()])
|
|
10283
10283
|
.optional(),
|
|
@@ -10296,7 +10296,7 @@ export const GetDeploymentHas2$outboundSchema: z.ZodType<
|
|
|
10296
10296
|
z.ZodTypeDef,
|
|
10297
10297
|
GetDeploymentHas2
|
|
10298
10298
|
> = z.object({
|
|
10299
|
-
type:
|
|
10299
|
+
type: GetDeploymentHasDeploymentsType$outboundSchema,
|
|
10300
10300
|
key: z.string(),
|
|
10301
10301
|
value: z.union([z.lazy(() => GetDeploymentValue2$outboundSchema), z.string()])
|
|
10302
10302
|
.optional(),
|
|
@@ -10334,24 +10334,24 @@ export function getDeploymentHas2FromJSON(
|
|
|
10334
10334
|
}
|
|
10335
10335
|
|
|
10336
10336
|
/** @internal */
|
|
10337
|
-
export const
|
|
10338
|
-
typeof
|
|
10339
|
-
> = z.nativeEnum(
|
|
10337
|
+
export const GetDeploymentHasType$inboundSchema: z.ZodNativeEnum<
|
|
10338
|
+
typeof GetDeploymentHasType
|
|
10339
|
+
> = z.nativeEnum(GetDeploymentHasType);
|
|
10340
10340
|
|
|
10341
10341
|
/** @internal */
|
|
10342
|
-
export const
|
|
10343
|
-
typeof
|
|
10344
|
-
> =
|
|
10342
|
+
export const GetDeploymentHasType$outboundSchema: z.ZodNativeEnum<
|
|
10343
|
+
typeof GetDeploymentHasType
|
|
10344
|
+
> = GetDeploymentHasType$inboundSchema;
|
|
10345
10345
|
|
|
10346
10346
|
/**
|
|
10347
10347
|
* @internal
|
|
10348
10348
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
10349
10349
|
*/
|
|
10350
|
-
export namespace
|
|
10351
|
-
/** @deprecated use `
|
|
10352
|
-
export const inboundSchema =
|
|
10353
|
-
/** @deprecated use `
|
|
10354
|
-
export const outboundSchema =
|
|
10350
|
+
export namespace GetDeploymentHasType$ {
|
|
10351
|
+
/** @deprecated use `GetDeploymentHasType$inboundSchema` instead. */
|
|
10352
|
+
export const inboundSchema = GetDeploymentHasType$inboundSchema;
|
|
10353
|
+
/** @deprecated use `GetDeploymentHasType$outboundSchema` instead. */
|
|
10354
|
+
export const outboundSchema = GetDeploymentHasType$outboundSchema;
|
|
10355
10355
|
}
|
|
10356
10356
|
|
|
10357
10357
|
/** @internal */
|
|
@@ -10571,7 +10571,7 @@ export const GetDeploymentHas1$inboundSchema: z.ZodType<
|
|
|
10571
10571
|
z.ZodTypeDef,
|
|
10572
10572
|
unknown
|
|
10573
10573
|
> = z.object({
|
|
10574
|
-
type:
|
|
10574
|
+
type: GetDeploymentHasType$inboundSchema,
|
|
10575
10575
|
value: z.union([
|
|
10576
10576
|
z.lazy(() => GetDeploymentValueDeploymentsResponse2002$inboundSchema),
|
|
10577
10577
|
z.string(),
|
|
@@ -10590,7 +10590,7 @@ export const GetDeploymentHas1$outboundSchema: z.ZodType<
|
|
|
10590
10590
|
z.ZodTypeDef,
|
|
10591
10591
|
GetDeploymentHas1
|
|
10592
10592
|
> = z.object({
|
|
10593
|
-
type:
|
|
10593
|
+
type: GetDeploymentHasType$outboundSchema,
|
|
10594
10594
|
value: z.union([
|
|
10595
10595
|
z.lazy(() => GetDeploymentValueDeploymentsResponse2002$outboundSchema),
|
|
10596
10596
|
z.string(),
|