@vercel/sdk 1.7.6 → 1.7.7
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 +2208 -1993
- package/bin/mcp-server.js.map +32 -23
- 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/createdeploymentop.d.ts +43 -43
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +27 -27
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createprojectop.d.ts +9 -0
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +6 -0
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/createwebhookop.d.ts +6 -0
- package/esm/models/createwebhookop.d.ts.map +1 -1
- package/esm/models/createwebhookop.js +2 -0
- package/esm/models/createwebhookop.js.map +1 -1
- package/esm/models/getaliasop.d.ts +108 -0
- package/esm/models/getaliasop.d.ts.map +1 -1
- package/esm/models/getaliasop.js +84 -0
- package/esm/models/getaliasop.js.map +1 -1
- package/esm/models/getprojectsop.d.ts +9 -0
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +6 -0
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/getwebhookop.d.ts +3 -0
- package/esm/models/getwebhookop.d.ts.map +1 -1
- package/esm/models/getwebhookop.js +1 -0
- package/esm/models/getwebhookop.js.map +1 -1
- package/esm/models/getwebhooksop.d.ts +6 -0
- package/esm/models/getwebhooksop.d.ts.map +1 -1
- package/esm/models/getwebhooksop.js +2 -0
- package/esm/models/getwebhooksop.js.map +1 -1
- package/esm/models/importresourceop.d.ts +43 -6
- package/esm/models/importresourceop.d.ts.map +1 -1
- package/esm/models/importresourceop.js +31 -2
- package/esm/models/importresourceop.js.map +1 -1
- package/esm/models/listaliasesop.d.ts +108 -0
- package/esm/models/listaliasesop.d.ts.map +1 -1
- package/esm/models/listaliasesop.js +85 -0
- package/esm/models/listaliasesop.js.map +1 -1
- package/esm/models/listauthtokensop.d.ts +0 -5
- package/esm/models/listauthtokensop.d.ts.map +1 -1
- package/esm/models/listauthtokensop.js +0 -2
- package/esm/models/listauthtokensop.js.map +1 -1
- package/esm/models/teamlimited.d.ts +29 -2
- package/esm/models/teamlimited.d.ts.map +1 -1
- package/esm/models/teamlimited.js +31 -2
- package/esm/models/teamlimited.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +9 -0
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +6 -0
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +18 -9
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +9 -3
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/models/updateresourcesecretsbyidop.d.ts +43 -6
- package/esm/models/updateresourcesecretsbyidop.d.ts.map +1 -1
- package/esm/models/updateresourcesecretsbyidop.js +31 -2
- package/esm/models/updateresourcesecretsbyidop.js.map +1 -1
- package/esm/models/updateresourcesecretsop.d.ts +43 -6
- package/esm/models/updateresourcesecretsop.d.ts.map +1 -1
- package/esm/models/updateresourcesecretsop.js +33 -2
- package/esm/models/updateresourcesecretsop.js.map +1 -1
- package/esm/models/userevent.d.ts +1096 -1068
- package/esm/models/userevent.d.ts.map +1 -1
- package/esm/models/userevent.js +1384 -1355
- package/esm/models/userevent.js.map +1 -1
- package/jsr.json +1 -1
- package/package.json +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/createdeploymentop.ts +75 -53
- package/src/models/createprojectop.ts +15 -0
- package/src/models/createwebhookop.ts +2 -0
- package/src/models/getaliasop.ts +204 -0
- package/src/models/getprojectsop.ts +15 -0
- package/src/models/getwebhookop.ts +1 -0
- package/src/models/getwebhooksop.ts +2 -0
- package/src/models/importresourceop.ts +92 -4
- package/src/models/listaliasesop.ts +213 -0
- package/src/models/listauthtokensop.ts +0 -7
- package/src/models/teamlimited.ts +56 -4
- package/src/models/updateprojectdatacacheop.ts +15 -0
- package/src/models/updateprojectop.ts +18 -3
- package/src/models/updateresourcesecretsbyidop.ts +103 -4
- package/src/models/updateresourcesecretsop.ts +84 -4
- package/src/models/userevent.ts +2506 -2435
- package/vercel-spec.json +270 -34
package/esm/lib/config.d.ts
CHANGED
|
@@ -27,8 +27,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
27
27
|
export declare const SDK_METADATA: {
|
|
28
28
|
readonly language: "typescript";
|
|
29
29
|
readonly openapiDocVersion: "0.0.1";
|
|
30
|
-
readonly sdkVersion: "1.7.
|
|
31
|
-
readonly genVersion: "2.
|
|
32
|
-
readonly userAgent: "speakeasy-sdk/typescript 1.7.
|
|
30
|
+
readonly sdkVersion: "1.7.7";
|
|
31
|
+
readonly genVersion: "2.610.0";
|
|
32
|
+
readonly userAgent: "speakeasy-sdk/typescript 1.7.7 2.610.0 0.0.1 @vercel/sdk";
|
|
33
33
|
};
|
|
34
34
|
//# sourceMappingURL=config.d.ts.map
|
package/esm/lib/config.js
CHANGED
|
@@ -27,8 +27,8 @@ export function serverURLFromOptions(options) {
|
|
|
27
27
|
export const SDK_METADATA = {
|
|
28
28
|
language: "typescript",
|
|
29
29
|
openapiDocVersion: "0.0.1",
|
|
30
|
-
sdkVersion: "1.7.
|
|
31
|
-
genVersion: "2.
|
|
32
|
-
userAgent: "speakeasy-sdk/typescript 1.7.
|
|
30
|
+
sdkVersion: "1.7.7",
|
|
31
|
+
genVersion: "2.610.0",
|
|
32
|
+
userAgent: "speakeasy-sdk/typescript 1.7.7 2.610.0 0.0.1 @vercel/sdk",
|
|
33
33
|
};
|
|
34
34
|
//# sourceMappingURL=config.js.map
|
package/esm/mcp-server/server.js
CHANGED
|
@@ -176,7 +176,7 @@ import { tool$webhooksGetWebhooks } from "./tools/webhooksGetWebhooks.js";
|
|
|
176
176
|
export function createMCPServer(deps) {
|
|
177
177
|
const server = new McpServer({
|
|
178
178
|
name: "Vercel",
|
|
179
|
-
version: "1.7.
|
|
179
|
+
version: "1.7.7",
|
|
180
180
|
});
|
|
181
181
|
const client = new VercelCore({
|
|
182
182
|
bearerToken: deps.bearerToken,
|
|
@@ -533,8 +533,8 @@ export type Creator = {
|
|
|
533
533
|
avatar?: string | undefined;
|
|
534
534
|
};
|
|
535
535
|
export declare const CreateDeploymentReadyState: {
|
|
536
|
-
readonly Building: "BUILDING";
|
|
537
536
|
readonly Error: "ERROR";
|
|
537
|
+
readonly Building: "BUILDING";
|
|
538
538
|
readonly Initializing: "INITIALIZING";
|
|
539
539
|
readonly Ready: "READY";
|
|
540
540
|
};
|
|
@@ -547,10 +547,10 @@ export type CreateDeploymentOutput = {
|
|
|
547
547
|
* A partial representation of a Build used by the deployment endpoint.
|
|
548
548
|
*/
|
|
549
549
|
export type Lambdas = {
|
|
550
|
-
id?: string | undefined;
|
|
551
550
|
createdAt?: number | undefined;
|
|
552
|
-
|
|
551
|
+
id?: string | undefined;
|
|
553
552
|
readyState?: CreateDeploymentReadyState | undefined;
|
|
553
|
+
entrypoint?: string | null | undefined;
|
|
554
554
|
readyStateAt?: number | undefined;
|
|
555
555
|
output: Array<CreateDeploymentOutput>;
|
|
556
556
|
};
|
|
@@ -588,9 +588,9 @@ export type CustomEnvironmentType = ClosedEnum<typeof CustomEnvironmentType>;
|
|
|
588
588
|
* The type of matching to perform
|
|
589
589
|
*/
|
|
590
590
|
export declare const CreateDeploymentCustomEnvironmentType: {
|
|
591
|
+
readonly EndsWith: "endsWith";
|
|
591
592
|
readonly StartsWith: "startsWith";
|
|
592
593
|
readonly Equals: "equals";
|
|
593
|
-
readonly EndsWith: "endsWith";
|
|
594
594
|
};
|
|
595
595
|
/**
|
|
596
596
|
* The type of matching to perform
|
|
@@ -919,7 +919,7 @@ export type CreateDeploymentPlan = ClosedEnum<typeof CreateDeploymentPlan>;
|
|
|
919
919
|
/**
|
|
920
920
|
* A map of the other applications that are part of this group. Only defined on the default application. The field is set after deployments have been created, so can be undefined, but should be there for a successful deployment.
|
|
921
921
|
*/
|
|
922
|
-
export type
|
|
922
|
+
export type CreateDeploymentMicrofrontendsApplications = {
|
|
923
923
|
/**
|
|
924
924
|
* This is the production alias, it will always show the most up to date of each application.
|
|
925
925
|
*/
|
|
@@ -935,7 +935,7 @@ export type CreateDeploymentMicrofrontends2 = {
|
|
|
935
935
|
* A map of the other applications that are part of this group. Only defined on the default application. The field is set after deployments have been created, so can be undefined, but should be there for a successful deployment.
|
|
936
936
|
*/
|
|
937
937
|
applications?: {
|
|
938
|
-
[k: string]:
|
|
938
|
+
[k: string]: CreateDeploymentMicrofrontendsApplications;
|
|
939
939
|
} | undefined;
|
|
940
940
|
isDefaultApp: boolean;
|
|
941
941
|
/**
|
|
@@ -971,13 +971,13 @@ export type CreateDeploymentMicrofrontends1 = {
|
|
|
971
971
|
};
|
|
972
972
|
export type CreateDeploymentMicrofrontends = CreateDeploymentMicrofrontends1 | CreateDeploymentMicrofrontends2;
|
|
973
973
|
export declare const FunctionType: {
|
|
974
|
-
readonly Fluid: "fluid";
|
|
975
974
|
readonly Standard: "standard";
|
|
975
|
+
readonly Fluid: "fluid";
|
|
976
976
|
};
|
|
977
977
|
export type FunctionType = ClosedEnum<typeof FunctionType>;
|
|
978
978
|
export declare const FunctionMemoryType: {
|
|
979
|
-
readonly Standard: "standard";
|
|
980
979
|
readonly StandardLegacy: "standard_legacy";
|
|
980
|
+
readonly Standard: "standard";
|
|
981
981
|
readonly Performance: "performance";
|
|
982
982
|
};
|
|
983
983
|
export type FunctionMemoryType = ClosedEnum<typeof FunctionMemoryType>;
|
|
@@ -1006,11 +1006,11 @@ export type Routes3 = {
|
|
|
1006
1006
|
};
|
|
1007
1007
|
export declare const RoutesHandle: {
|
|
1008
1008
|
readonly Error: "error";
|
|
1009
|
+
readonly Resource: "resource";
|
|
1009
1010
|
readonly Filesystem: "filesystem";
|
|
1010
1011
|
readonly Hit: "hit";
|
|
1011
1012
|
readonly Miss: "miss";
|
|
1012
1013
|
readonly Rewrite: "rewrite";
|
|
1013
|
-
readonly Resource: "resource";
|
|
1014
1014
|
};
|
|
1015
1015
|
export type RoutesHandle = ClosedEnum<typeof RoutesHandle>;
|
|
1016
1016
|
export type Routes2 = {
|
|
@@ -1104,8 +1104,8 @@ export declare const CreateDeploymentGitRepoDeploymentsType: {
|
|
|
1104
1104
|
};
|
|
1105
1105
|
export type CreateDeploymentGitRepoDeploymentsType = ClosedEnum<typeof CreateDeploymentGitRepoDeploymentsType>;
|
|
1106
1106
|
export declare const CreateDeploymentGitRepoOwnerType: {
|
|
1107
|
-
readonly Team: "team";
|
|
1108
1107
|
readonly User: "user";
|
|
1108
|
+
readonly Team: "team";
|
|
1109
1109
|
};
|
|
1110
1110
|
export type CreateDeploymentGitRepoOwnerType = ClosedEnum<typeof CreateDeploymentGitRepoOwnerType>;
|
|
1111
1111
|
export type GitRepo3 = {
|
|
@@ -1125,8 +1125,8 @@ export declare const CreateDeploymentGitRepoType: {
|
|
|
1125
1125
|
};
|
|
1126
1126
|
export type CreateDeploymentGitRepoType = ClosedEnum<typeof CreateDeploymentGitRepoType>;
|
|
1127
1127
|
export declare const GitRepoOwnerType: {
|
|
1128
|
-
readonly Team: "team";
|
|
1129
1128
|
readonly User: "user";
|
|
1129
|
+
readonly Team: "team";
|
|
1130
1130
|
};
|
|
1131
1131
|
export type GitRepoOwnerType = ClosedEnum<typeof GitRepoOwnerType>;
|
|
1132
1132
|
export type GitRepo2 = {
|
|
@@ -1146,8 +1146,8 @@ export declare const GitRepoType: {
|
|
|
1146
1146
|
};
|
|
1147
1147
|
export type GitRepoType = ClosedEnum<typeof GitRepoType>;
|
|
1148
1148
|
export declare const OwnerType: {
|
|
1149
|
-
readonly Team: "team";
|
|
1150
1149
|
readonly User: "user";
|
|
1150
|
+
readonly Team: "team";
|
|
1151
1151
|
};
|
|
1152
1152
|
export type OwnerType = ClosedEnum<typeof OwnerType>;
|
|
1153
1153
|
export type GitRepo1 = {
|
|
@@ -2490,15 +2490,15 @@ export declare const CreateDeploymentReadyState$outboundSchema: z.ZodNativeEnum<
|
|
|
2490
2490
|
export declare namespace CreateDeploymentReadyState$ {
|
|
2491
2491
|
/** @deprecated use `CreateDeploymentReadyState$inboundSchema` instead. */
|
|
2492
2492
|
const inboundSchema: z.ZodNativeEnum<{
|
|
2493
|
-
readonly Building: "BUILDING";
|
|
2494
2493
|
readonly Error: "ERROR";
|
|
2494
|
+
readonly Building: "BUILDING";
|
|
2495
2495
|
readonly Initializing: "INITIALIZING";
|
|
2496
2496
|
readonly Ready: "READY";
|
|
2497
2497
|
}>;
|
|
2498
2498
|
/** @deprecated use `CreateDeploymentReadyState$outboundSchema` instead. */
|
|
2499
2499
|
const outboundSchema: z.ZodNativeEnum<{
|
|
2500
|
-
readonly Building: "BUILDING";
|
|
2501
2500
|
readonly Error: "ERROR";
|
|
2501
|
+
readonly Building: "BUILDING";
|
|
2502
2502
|
readonly Initializing: "INITIALIZING";
|
|
2503
2503
|
readonly Ready: "READY";
|
|
2504
2504
|
}>;
|
|
@@ -2530,10 +2530,10 @@ export declare function createDeploymentOutputFromJSON(jsonString: string): Safe
|
|
|
2530
2530
|
export declare const Lambdas$inboundSchema: z.ZodType<Lambdas, z.ZodTypeDef, unknown>;
|
|
2531
2531
|
/** @internal */
|
|
2532
2532
|
export type Lambdas$Outbound = {
|
|
2533
|
-
id?: string | undefined;
|
|
2534
2533
|
createdAt?: number | undefined;
|
|
2535
|
-
|
|
2534
|
+
id?: string | undefined;
|
|
2536
2535
|
readyState?: string | undefined;
|
|
2536
|
+
entrypoint?: string | null | undefined;
|
|
2537
2537
|
readyStateAt?: number | undefined;
|
|
2538
2538
|
output: Array<CreateDeploymentOutput$Outbound>;
|
|
2539
2539
|
};
|
|
@@ -2661,15 +2661,15 @@ export declare const CreateDeploymentCustomEnvironmentType$outboundSchema: z.Zod
|
|
|
2661
2661
|
export declare namespace CreateDeploymentCustomEnvironmentType$ {
|
|
2662
2662
|
/** @deprecated use `CreateDeploymentCustomEnvironmentType$inboundSchema` instead. */
|
|
2663
2663
|
const inboundSchema: z.ZodNativeEnum<{
|
|
2664
|
+
readonly EndsWith: "endsWith";
|
|
2664
2665
|
readonly StartsWith: "startsWith";
|
|
2665
2666
|
readonly Equals: "equals";
|
|
2666
|
-
readonly EndsWith: "endsWith";
|
|
2667
2667
|
}>;
|
|
2668
2668
|
/** @deprecated use `CreateDeploymentCustomEnvironmentType$outboundSchema` instead. */
|
|
2669
2669
|
const outboundSchema: z.ZodNativeEnum<{
|
|
2670
|
+
readonly EndsWith: "endsWith";
|
|
2670
2671
|
readonly StartsWith: "startsWith";
|
|
2671
2672
|
readonly Equals: "equals";
|
|
2672
|
-
readonly EndsWith: "endsWith";
|
|
2673
2673
|
}>;
|
|
2674
2674
|
}
|
|
2675
2675
|
/** @internal */
|
|
@@ -3710,35 +3710,35 @@ export declare namespace CreateDeploymentPlan$ {
|
|
|
3710
3710
|
}>;
|
|
3711
3711
|
}
|
|
3712
3712
|
/** @internal */
|
|
3713
|
-
export declare const
|
|
3713
|
+
export declare const CreateDeploymentMicrofrontendsApplications$inboundSchema: z.ZodType<CreateDeploymentMicrofrontendsApplications, z.ZodTypeDef, unknown>;
|
|
3714
3714
|
/** @internal */
|
|
3715
|
-
export type
|
|
3715
|
+
export type CreateDeploymentMicrofrontendsApplications$Outbound = {
|
|
3716
3716
|
productionHost: string;
|
|
3717
3717
|
deploymentAlias?: string | undefined;
|
|
3718
3718
|
deploymentHost?: string | undefined;
|
|
3719
3719
|
};
|
|
3720
3720
|
/** @internal */
|
|
3721
|
-
export declare const
|
|
3721
|
+
export declare const CreateDeploymentMicrofrontendsApplications$outboundSchema: z.ZodType<CreateDeploymentMicrofrontendsApplications$Outbound, z.ZodTypeDef, CreateDeploymentMicrofrontendsApplications>;
|
|
3722
3722
|
/**
|
|
3723
3723
|
* @internal
|
|
3724
3724
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3725
3725
|
*/
|
|
3726
|
-
export declare namespace
|
|
3727
|
-
/** @deprecated use `
|
|
3728
|
-
const inboundSchema: z.ZodType<
|
|
3729
|
-
/** @deprecated use `
|
|
3730
|
-
const outboundSchema: z.ZodType<
|
|
3731
|
-
/** @deprecated use `
|
|
3732
|
-
type Outbound =
|
|
3726
|
+
export declare namespace CreateDeploymentMicrofrontendsApplications$ {
|
|
3727
|
+
/** @deprecated use `CreateDeploymentMicrofrontendsApplications$inboundSchema` instead. */
|
|
3728
|
+
const inboundSchema: z.ZodType<CreateDeploymentMicrofrontendsApplications, z.ZodTypeDef, unknown>;
|
|
3729
|
+
/** @deprecated use `CreateDeploymentMicrofrontendsApplications$outboundSchema` instead. */
|
|
3730
|
+
const outboundSchema: z.ZodType<CreateDeploymentMicrofrontendsApplications$Outbound, z.ZodTypeDef, CreateDeploymentMicrofrontendsApplications>;
|
|
3731
|
+
/** @deprecated use `CreateDeploymentMicrofrontendsApplications$Outbound` instead. */
|
|
3732
|
+
type Outbound = CreateDeploymentMicrofrontendsApplications$Outbound;
|
|
3733
3733
|
}
|
|
3734
|
-
export declare function
|
|
3735
|
-
export declare function
|
|
3734
|
+
export declare function createDeploymentMicrofrontendsApplicationsToJSON(createDeploymentMicrofrontendsApplications: CreateDeploymentMicrofrontendsApplications): string;
|
|
3735
|
+
export declare function createDeploymentMicrofrontendsApplicationsFromJSON(jsonString: string): SafeParseResult<CreateDeploymentMicrofrontendsApplications, SDKValidationError>;
|
|
3736
3736
|
/** @internal */
|
|
3737
3737
|
export declare const CreateDeploymentMicrofrontends2$inboundSchema: z.ZodType<CreateDeploymentMicrofrontends2, z.ZodTypeDef, unknown>;
|
|
3738
3738
|
/** @internal */
|
|
3739
3739
|
export type CreateDeploymentMicrofrontends2$Outbound = {
|
|
3740
3740
|
applications?: {
|
|
3741
|
-
[k: string]:
|
|
3741
|
+
[k: string]: CreateDeploymentMicrofrontendsApplications$Outbound;
|
|
3742
3742
|
} | undefined;
|
|
3743
3743
|
isDefaultApp: boolean;
|
|
3744
3744
|
defaultAppProjectName: string;
|
|
@@ -3817,13 +3817,13 @@ export declare const FunctionType$outboundSchema: z.ZodNativeEnum<typeof Functio
|
|
|
3817
3817
|
export declare namespace FunctionType$ {
|
|
3818
3818
|
/** @deprecated use `FunctionType$inboundSchema` instead. */
|
|
3819
3819
|
const inboundSchema: z.ZodNativeEnum<{
|
|
3820
|
-
readonly Fluid: "fluid";
|
|
3821
3820
|
readonly Standard: "standard";
|
|
3821
|
+
readonly Fluid: "fluid";
|
|
3822
3822
|
}>;
|
|
3823
3823
|
/** @deprecated use `FunctionType$outboundSchema` instead. */
|
|
3824
3824
|
const outboundSchema: z.ZodNativeEnum<{
|
|
3825
|
-
readonly Fluid: "fluid";
|
|
3826
3825
|
readonly Standard: "standard";
|
|
3826
|
+
readonly Fluid: "fluid";
|
|
3827
3827
|
}>;
|
|
3828
3828
|
}
|
|
3829
3829
|
/** @internal */
|
|
@@ -3837,14 +3837,14 @@ export declare const FunctionMemoryType$outboundSchema: z.ZodNativeEnum<typeof F
|
|
|
3837
3837
|
export declare namespace FunctionMemoryType$ {
|
|
3838
3838
|
/** @deprecated use `FunctionMemoryType$inboundSchema` instead. */
|
|
3839
3839
|
const inboundSchema: z.ZodNativeEnum<{
|
|
3840
|
-
readonly Standard: "standard";
|
|
3841
3840
|
readonly StandardLegacy: "standard_legacy";
|
|
3841
|
+
readonly Standard: "standard";
|
|
3842
3842
|
readonly Performance: "performance";
|
|
3843
3843
|
}>;
|
|
3844
3844
|
/** @deprecated use `FunctionMemoryType$outboundSchema` instead. */
|
|
3845
3845
|
const outboundSchema: z.ZodNativeEnum<{
|
|
3846
|
-
readonly Standard: "standard";
|
|
3847
3846
|
readonly StandardLegacy: "standard_legacy";
|
|
3847
|
+
readonly Standard: "standard";
|
|
3848
3848
|
readonly Performance: "performance";
|
|
3849
3849
|
}>;
|
|
3850
3850
|
}
|
|
@@ -3937,20 +3937,20 @@ export declare namespace RoutesHandle$ {
|
|
|
3937
3937
|
/** @deprecated use `RoutesHandle$inboundSchema` instead. */
|
|
3938
3938
|
const inboundSchema: z.ZodNativeEnum<{
|
|
3939
3939
|
readonly Error: "error";
|
|
3940
|
+
readonly Resource: "resource";
|
|
3940
3941
|
readonly Filesystem: "filesystem";
|
|
3941
3942
|
readonly Hit: "hit";
|
|
3942
3943
|
readonly Miss: "miss";
|
|
3943
3944
|
readonly Rewrite: "rewrite";
|
|
3944
|
-
readonly Resource: "resource";
|
|
3945
3945
|
}>;
|
|
3946
3946
|
/** @deprecated use `RoutesHandle$outboundSchema` instead. */
|
|
3947
3947
|
const outboundSchema: z.ZodNativeEnum<{
|
|
3948
3948
|
readonly Error: "error";
|
|
3949
|
+
readonly Resource: "resource";
|
|
3949
3950
|
readonly Filesystem: "filesystem";
|
|
3950
3951
|
readonly Hit: "hit";
|
|
3951
3952
|
readonly Miss: "miss";
|
|
3952
3953
|
readonly Rewrite: "rewrite";
|
|
3953
|
-
readonly Resource: "resource";
|
|
3954
3954
|
}>;
|
|
3955
3955
|
}
|
|
3956
3956
|
/** @internal */
|
|
@@ -4328,13 +4328,13 @@ export declare const CreateDeploymentGitRepoOwnerType$outboundSchema: z.ZodNativ
|
|
|
4328
4328
|
export declare namespace CreateDeploymentGitRepoOwnerType$ {
|
|
4329
4329
|
/** @deprecated use `CreateDeploymentGitRepoOwnerType$inboundSchema` instead. */
|
|
4330
4330
|
const inboundSchema: z.ZodNativeEnum<{
|
|
4331
|
-
readonly Team: "team";
|
|
4332
4331
|
readonly User: "user";
|
|
4332
|
+
readonly Team: "team";
|
|
4333
4333
|
}>;
|
|
4334
4334
|
/** @deprecated use `CreateDeploymentGitRepoOwnerType$outboundSchema` instead. */
|
|
4335
4335
|
const outboundSchema: z.ZodNativeEnum<{
|
|
4336
|
-
readonly Team: "team";
|
|
4337
4336
|
readonly User: "user";
|
|
4337
|
+
readonly Team: "team";
|
|
4338
4338
|
}>;
|
|
4339
4339
|
}
|
|
4340
4340
|
/** @internal */
|
|
@@ -4397,13 +4397,13 @@ export declare const GitRepoOwnerType$outboundSchema: z.ZodNativeEnum<typeof Git
|
|
|
4397
4397
|
export declare namespace GitRepoOwnerType$ {
|
|
4398
4398
|
/** @deprecated use `GitRepoOwnerType$inboundSchema` instead. */
|
|
4399
4399
|
const inboundSchema: z.ZodNativeEnum<{
|
|
4400
|
-
readonly Team: "team";
|
|
4401
4400
|
readonly User: "user";
|
|
4401
|
+
readonly Team: "team";
|
|
4402
4402
|
}>;
|
|
4403
4403
|
/** @deprecated use `GitRepoOwnerType$outboundSchema` instead. */
|
|
4404
4404
|
const outboundSchema: z.ZodNativeEnum<{
|
|
4405
|
-
readonly Team: "team";
|
|
4406
4405
|
readonly User: "user";
|
|
4406
|
+
readonly Team: "team";
|
|
4407
4407
|
}>;
|
|
4408
4408
|
}
|
|
4409
4409
|
/** @internal */
|
|
@@ -4466,13 +4466,13 @@ export declare const OwnerType$outboundSchema: z.ZodNativeEnum<typeof OwnerType>
|
|
|
4466
4466
|
export declare namespace OwnerType$ {
|
|
4467
4467
|
/** @deprecated use `OwnerType$inboundSchema` instead. */
|
|
4468
4468
|
const inboundSchema: z.ZodNativeEnum<{
|
|
4469
|
-
readonly Team: "team";
|
|
4470
4469
|
readonly User: "user";
|
|
4470
|
+
readonly Team: "team";
|
|
4471
4471
|
}>;
|
|
4472
4472
|
/** @deprecated use `OwnerType$outboundSchema` instead. */
|
|
4473
4473
|
const outboundSchema: z.ZodNativeEnum<{
|
|
4474
|
-
readonly Team: "team";
|
|
4475
4474
|
readonly User: "user";
|
|
4475
|
+
readonly Team: "team";
|
|
4476
4476
|
}>;
|
|
4477
4477
|
}
|
|
4478
4478
|
/** @internal */
|