@vercel/sdk 1.7.4 → 1.7.5
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/README.md +6 -6
- package/bin/mcp-server.js +559 -272
- package/bin/mcp-server.js.map +35 -35
- package/docs/sdks/accessgroups/README.md +16 -0
- package/docs/sdks/artifacts/README.md +6 -6
- package/docs/sdks/authentication/README.md +1 -1
- package/docs/sdks/deployments/README.md +8 -14
- package/docs/sdks/dns/README.md +12 -26
- package/docs/sdks/domains/README.md +2 -2
- package/docs/sdks/edgeconfig/README.md +10 -2
- package/docs/sdks/marketplace/README.md +77 -97
- package/docs/sdks/security/README.md +4 -10
- package/docs/sdks/teams/README.md +8 -0
- package/docs/sdks/vercel/README.md +2 -2
- package/docs/sdks/webhooks/README.md +12 -4
- package/esm/__tests__/deployments.test.js +1 -2
- package/esm/__tests__/deployments.test.js.map +1 -1
- package/esm/__tests__/projects.test.js +13 -15
- package/esm/__tests__/projects.test.js.map +1 -1
- package/esm/funcs/authenticationExchangeSsoToken.d.ts +1 -1
- package/esm/funcs/authenticationExchangeSsoToken.js +1 -1
- package/esm/funcs/certsGetCertById.js +1 -1
- package/esm/funcs/certsIssueCert.js +1 -1
- package/esm/funcs/certsRemoveCert.js +1 -1
- package/esm/funcs/certsUploadCert.js +1 -1
- package/esm/funcs/deploymentsGetDeploymentFileContents.d.ts +2 -2
- package/esm/funcs/deploymentsGetDeploymentFileContents.d.ts.map +1 -1
- package/esm/funcs/deploymentsGetDeploymentFileContents.js +4 -3
- package/esm/funcs/deploymentsGetDeploymentFileContents.js.map +1 -1
- package/esm/funcs/marketplaceExchangeSsoToken.d.ts +1 -1
- package/esm/funcs/marketplaceExchangeSsoToken.js +1 -1
- package/esm/funcs/projectsRemoveProjectDomain.js +3 -2
- package/esm/funcs/projectsRemoveProjectDomain.js.map +1 -1
- package/esm/funcs/projectsRequestPromote.js +0 -1
- package/esm/funcs/projectsRequestPromote.js.map +1 -1
- package/esm/lib/config.d.ts +3 -3
- package/esm/lib/config.js +3 -3
- package/esm/mcp-server/cli/start/impl.js +2 -2
- package/esm/mcp-server/cli/start/impl.js.map +1 -1
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.js +1 -1
- package/esm/mcp-server/tools/authenticationExchangeSsoToken.js +1 -1
- package/esm/mcp-server/tools/authenticationExchangeSsoToken.js.map +1 -1
- package/esm/mcp-server/tools/deploymentsGetDeploymentFileContents.d.ts.map +1 -1
- package/esm/mcp-server/tools/deploymentsGetDeploymentFileContents.js +1 -2
- package/esm/mcp-server/tools/deploymentsGetDeploymentFileContents.js.map +1 -1
- package/esm/mcp-server/tools/marketplaceExchangeSsoToken.js +1 -1
- package/esm/mcp-server/tools/marketplaceExchangeSsoToken.js.map +1 -1
- package/esm/models/canceldeploymentop.d.ts +10 -0
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +4 -0
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +38 -28
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +16 -12
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createprojectop.d.ts +114 -2
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +108 -2
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/getdeploymentfilecontentsop.d.ts +0 -31
- package/esm/models/getdeploymentfilecontentsop.d.ts.map +1 -1
- package/esm/models/getdeploymentfilecontentsop.js +0 -25
- package/esm/models/getdeploymentfilecontentsop.js.map +1 -1
- package/esm/models/getdeploymentop.d.ts +10 -0
- package/esm/models/getdeploymentop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.js +4 -0
- package/esm/models/getdeploymentop.js.map +1 -1
- package/esm/models/getprojectsop.d.ts +114 -2
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +108 -2
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/importresourceop.d.ts +9 -0
- package/esm/models/importresourceop.d.ts.map +1 -1
- package/esm/models/importresourceop.js +2 -0
- package/esm/models/importresourceop.js.map +1 -1
- package/esm/models/issuecertop.d.ts +2 -2
- package/esm/models/issuecertop.d.ts.map +1 -1
- package/esm/models/issuecertop.js +2 -2
- package/esm/models/issuecertop.js.map +1 -1
- package/esm/models/removeprojectdomainop.d.ts +30 -0
- package/esm/models/removeprojectdomainop.d.ts.map +1 -1
- package/esm/models/removeprojectdomainop.js +38 -0
- package/esm/models/removeprojectdomainop.js.map +1 -1
- package/esm/models/requestpromoteop.d.ts +0 -5
- package/esm/models/requestpromoteop.d.ts.map +1 -1
- package/esm/models/requestpromoteop.js +0 -2
- package/esm/models/requestpromoteop.js.map +1 -1
- package/esm/models/teamlimited.d.ts +13 -13
- package/esm/models/teamlimited.d.ts.map +1 -1
- package/esm/models/teamlimited.js +6 -6
- package/esm/models/teamlimited.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +114 -2
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +108 -2
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +114 -2
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +108 -2
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/models/updateresourcesecretsbyidop.d.ts +9 -0
- package/esm/models/updateresourcesecretsbyidop.d.ts.map +1 -1
- package/esm/models/updateresourcesecretsbyidop.js +2 -0
- package/esm/models/updateresourcesecretsbyidop.js.map +1 -1
- package/esm/models/updateresourcesecretsop.d.ts +9 -0
- package/esm/models/updateresourcesecretsop.d.ts.map +1 -1
- package/esm/models/updateresourcesecretsop.js +2 -0
- package/esm/models/updateresourcesecretsop.js.map +1 -1
- package/esm/models/uploadcertop.d.ts +2 -2
- package/esm/models/uploadcertop.d.ts.map +1 -1
- package/esm/models/uploadcertop.js +2 -2
- package/esm/models/uploadcertop.js.map +1 -1
- package/esm/models/userevent.d.ts +368 -257
- package/esm/models/userevent.d.ts.map +1 -1
- package/esm/models/userevent.js +423 -315
- package/esm/models/userevent.js.map +1 -1
- package/esm/sdk/authentication.d.ts +1 -1
- package/esm/sdk/authentication.js +1 -1
- package/esm/sdk/deployments.d.ts +2 -2
- package/esm/sdk/deployments.d.ts.map +1 -1
- package/esm/sdk/deployments.js.map +1 -1
- package/esm/sdk/marketplace.d.ts +1 -1
- package/esm/sdk/marketplace.js +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/deployments.test.ts +1 -2
- package/src/__tests__/projects.test.ts +13 -15
- package/src/funcs/authenticationExchangeSsoToken.ts +1 -1
- package/src/funcs/certsGetCertById.ts +1 -1
- package/src/funcs/certsIssueCert.ts +1 -1
- package/src/funcs/certsRemoveCert.ts +1 -1
- package/src/funcs/certsUploadCert.ts +1 -1
- package/src/funcs/deploymentsGetDeploymentFileContents.ts +6 -7
- package/src/funcs/marketplaceExchangeSsoToken.ts +1 -1
- package/src/funcs/projectsRemoveProjectDomain.ts +3 -2
- package/src/funcs/projectsRequestPromote.ts +0 -1
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/cli/start/impl.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/mcp-server/tools/authenticationExchangeSsoToken.ts +1 -1
- package/src/mcp-server/tools/deploymentsGetDeploymentFileContents.ts +1 -3
- package/src/mcp-server/tools/marketplaceExchangeSsoToken.ts +1 -1
- package/src/models/canceldeploymentop.ts +14 -0
- package/src/models/createdeploymentop.ts +30 -16
- package/src/models/createprojectop.ts +243 -4
- package/src/models/getdeploymentfilecontentsop.ts +0 -69
- package/src/models/getdeploymentop.ts +14 -0
- package/src/models/getprojectsop.ts +237 -4
- package/src/models/importresourceop.ts +7 -0
- package/src/models/issuecertop.ts +4 -4
- package/src/models/removeprojectdomainop.ts +78 -0
- package/src/models/requestpromoteop.ts +0 -7
- package/src/models/teamlimited.ts +13 -13
- package/src/models/updateprojectdatacacheop.ts +260 -4
- package/src/models/updateprojectop.ts +243 -4
- package/src/models/updateresourcesecretsbyidop.ts +7 -0
- package/src/models/updateresourcesecretsop.ts +7 -0
- package/src/models/uploadcertop.ts +4 -4
- package/src/models/userevent.ts +798 -582
- package/src/sdk/authentication.ts +1 -1
- package/src/sdk/deployments.ts +2 -5
- package/src/sdk/marketplace.ts +1 -1
- package/vercel-spec.json +497 -94
|
@@ -533,8 +533,8 @@ export type Creator = {
|
|
|
533
533
|
avatar?: string | undefined;
|
|
534
534
|
};
|
|
535
535
|
export declare const CreateDeploymentReadyState: {
|
|
536
|
-
readonly Error: "ERROR";
|
|
537
536
|
readonly Building: "BUILDING";
|
|
537
|
+
readonly Error: "ERROR";
|
|
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
|
-
createdAt?: number | undefined;
|
|
551
550
|
id?: string | undefined;
|
|
552
|
-
|
|
551
|
+
createdAt?: number | undefined;
|
|
553
552
|
entrypoint?: string | null | undefined;
|
|
553
|
+
readyState?: CreateDeploymentReadyState | 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";
|
|
592
591
|
readonly StartsWith: "startsWith";
|
|
593
592
|
readonly Equals: "equals";
|
|
593
|
+
readonly EndsWith: "endsWith";
|
|
594
594
|
};
|
|
595
595
|
/**
|
|
596
596
|
* The type of matching to perform
|
|
@@ -938,6 +938,10 @@ export type CreateDeploymentMicrofrontends2 = {
|
|
|
938
938
|
[k: string]: Applications;
|
|
939
939
|
} | undefined;
|
|
940
940
|
isDefaultApp: boolean;
|
|
941
|
+
/**
|
|
942
|
+
* The project name of the default app of this deployment's microfrontends group.
|
|
943
|
+
*/
|
|
944
|
+
defaultAppProjectName: string;
|
|
941
945
|
/**
|
|
942
946
|
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI.
|
|
943
947
|
*/
|
|
@@ -952,6 +956,10 @@ export type CreateDeploymentMicrofrontends1 = {
|
|
|
952
956
|
* Whether this project is the default application for the microfrontends group. The default application is the one that is used as the top level shell for the microfrontends group and hosts the other microfrontends.
|
|
953
957
|
*/
|
|
954
958
|
isDefaultApp?: boolean | undefined;
|
|
959
|
+
/**
|
|
960
|
+
* The project name of the default app of this deployment's microfrontends group.
|
|
961
|
+
*/
|
|
962
|
+
defaultAppProjectName: string;
|
|
955
963
|
/**
|
|
956
964
|
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI.
|
|
957
965
|
*/
|
|
@@ -963,13 +971,13 @@ export type CreateDeploymentMicrofrontends1 = {
|
|
|
963
971
|
};
|
|
964
972
|
export type CreateDeploymentMicrofrontends = CreateDeploymentMicrofrontends1 | CreateDeploymentMicrofrontends2;
|
|
965
973
|
export declare const FunctionType: {
|
|
966
|
-
readonly Standard: "standard";
|
|
967
974
|
readonly Fluid: "fluid";
|
|
975
|
+
readonly Standard: "standard";
|
|
968
976
|
};
|
|
969
977
|
export type FunctionType = ClosedEnum<typeof FunctionType>;
|
|
970
978
|
export declare const FunctionMemoryType: {
|
|
971
|
-
readonly StandardLegacy: "standard_legacy";
|
|
972
979
|
readonly Standard: "standard";
|
|
980
|
+
readonly StandardLegacy: "standard_legacy";
|
|
973
981
|
readonly Performance: "performance";
|
|
974
982
|
};
|
|
975
983
|
export type FunctionMemoryType = ClosedEnum<typeof FunctionMemoryType>;
|
|
@@ -998,11 +1006,11 @@ export type Routes3 = {
|
|
|
998
1006
|
};
|
|
999
1007
|
export declare const RoutesHandle: {
|
|
1000
1008
|
readonly Error: "error";
|
|
1001
|
-
readonly Resource: "resource";
|
|
1002
1009
|
readonly Filesystem: "filesystem";
|
|
1003
1010
|
readonly Hit: "hit";
|
|
1004
1011
|
readonly Miss: "miss";
|
|
1005
1012
|
readonly Rewrite: "rewrite";
|
|
1013
|
+
readonly Resource: "resource";
|
|
1006
1014
|
};
|
|
1007
1015
|
export type RoutesHandle = ClosedEnum<typeof RoutesHandle>;
|
|
1008
1016
|
export type Routes2 = {
|
|
@@ -1096,8 +1104,8 @@ export declare const CreateDeploymentGitRepoDeploymentsType: {
|
|
|
1096
1104
|
};
|
|
1097
1105
|
export type CreateDeploymentGitRepoDeploymentsType = ClosedEnum<typeof CreateDeploymentGitRepoDeploymentsType>;
|
|
1098
1106
|
export declare const CreateDeploymentGitRepoOwnerType: {
|
|
1099
|
-
readonly User: "user";
|
|
1100
1107
|
readonly Team: "team";
|
|
1108
|
+
readonly User: "user";
|
|
1101
1109
|
};
|
|
1102
1110
|
export type CreateDeploymentGitRepoOwnerType = ClosedEnum<typeof CreateDeploymentGitRepoOwnerType>;
|
|
1103
1111
|
export type GitRepo3 = {
|
|
@@ -1117,8 +1125,8 @@ export declare const CreateDeploymentGitRepoType: {
|
|
|
1117
1125
|
};
|
|
1118
1126
|
export type CreateDeploymentGitRepoType = ClosedEnum<typeof CreateDeploymentGitRepoType>;
|
|
1119
1127
|
export declare const GitRepoOwnerType: {
|
|
1120
|
-
readonly User: "user";
|
|
1121
1128
|
readonly Team: "team";
|
|
1129
|
+
readonly User: "user";
|
|
1122
1130
|
};
|
|
1123
1131
|
export type GitRepoOwnerType = ClosedEnum<typeof GitRepoOwnerType>;
|
|
1124
1132
|
export type GitRepo2 = {
|
|
@@ -1138,8 +1146,8 @@ export declare const GitRepoType: {
|
|
|
1138
1146
|
};
|
|
1139
1147
|
export type GitRepoType = ClosedEnum<typeof GitRepoType>;
|
|
1140
1148
|
export declare const OwnerType: {
|
|
1141
|
-
readonly User: "user";
|
|
1142
1149
|
readonly Team: "team";
|
|
1150
|
+
readonly User: "user";
|
|
1143
1151
|
};
|
|
1144
1152
|
export type OwnerType = ClosedEnum<typeof OwnerType>;
|
|
1145
1153
|
export type GitRepo1 = {
|
|
@@ -2482,15 +2490,15 @@ export declare const CreateDeploymentReadyState$outboundSchema: z.ZodNativeEnum<
|
|
|
2482
2490
|
export declare namespace CreateDeploymentReadyState$ {
|
|
2483
2491
|
/** @deprecated use `CreateDeploymentReadyState$inboundSchema` instead. */
|
|
2484
2492
|
const inboundSchema: z.ZodNativeEnum<{
|
|
2485
|
-
readonly Error: "ERROR";
|
|
2486
2493
|
readonly Building: "BUILDING";
|
|
2494
|
+
readonly Error: "ERROR";
|
|
2487
2495
|
readonly Initializing: "INITIALIZING";
|
|
2488
2496
|
readonly Ready: "READY";
|
|
2489
2497
|
}>;
|
|
2490
2498
|
/** @deprecated use `CreateDeploymentReadyState$outboundSchema` instead. */
|
|
2491
2499
|
const outboundSchema: z.ZodNativeEnum<{
|
|
2492
|
-
readonly Error: "ERROR";
|
|
2493
2500
|
readonly Building: "BUILDING";
|
|
2501
|
+
readonly Error: "ERROR";
|
|
2494
2502
|
readonly Initializing: "INITIALIZING";
|
|
2495
2503
|
readonly Ready: "READY";
|
|
2496
2504
|
}>;
|
|
@@ -2522,10 +2530,10 @@ export declare function createDeploymentOutputFromJSON(jsonString: string): Safe
|
|
|
2522
2530
|
export declare const Lambdas$inboundSchema: z.ZodType<Lambdas, z.ZodTypeDef, unknown>;
|
|
2523
2531
|
/** @internal */
|
|
2524
2532
|
export type Lambdas$Outbound = {
|
|
2525
|
-
createdAt?: number | undefined;
|
|
2526
2533
|
id?: string | undefined;
|
|
2527
|
-
|
|
2534
|
+
createdAt?: number | undefined;
|
|
2528
2535
|
entrypoint?: string | null | undefined;
|
|
2536
|
+
readyState?: string | undefined;
|
|
2529
2537
|
readyStateAt?: number | undefined;
|
|
2530
2538
|
output: Array<CreateDeploymentOutput$Outbound>;
|
|
2531
2539
|
};
|
|
@@ -2653,15 +2661,15 @@ export declare const CreateDeploymentCustomEnvironmentType$outboundSchema: z.Zod
|
|
|
2653
2661
|
export declare namespace CreateDeploymentCustomEnvironmentType$ {
|
|
2654
2662
|
/** @deprecated use `CreateDeploymentCustomEnvironmentType$inboundSchema` instead. */
|
|
2655
2663
|
const inboundSchema: z.ZodNativeEnum<{
|
|
2656
|
-
readonly EndsWith: "endsWith";
|
|
2657
2664
|
readonly StartsWith: "startsWith";
|
|
2658
2665
|
readonly Equals: "equals";
|
|
2666
|
+
readonly EndsWith: "endsWith";
|
|
2659
2667
|
}>;
|
|
2660
2668
|
/** @deprecated use `CreateDeploymentCustomEnvironmentType$outboundSchema` instead. */
|
|
2661
2669
|
const outboundSchema: z.ZodNativeEnum<{
|
|
2662
|
-
readonly EndsWith: "endsWith";
|
|
2663
2670
|
readonly StartsWith: "startsWith";
|
|
2664
2671
|
readonly Equals: "equals";
|
|
2672
|
+
readonly EndsWith: "endsWith";
|
|
2665
2673
|
}>;
|
|
2666
2674
|
}
|
|
2667
2675
|
/** @internal */
|
|
@@ -3733,6 +3741,7 @@ export type CreateDeploymentMicrofrontends2$Outbound = {
|
|
|
3733
3741
|
[k: string]: Applications$Outbound;
|
|
3734
3742
|
} | undefined;
|
|
3735
3743
|
isDefaultApp: boolean;
|
|
3744
|
+
defaultAppProjectName: string;
|
|
3736
3745
|
defaultRoute?: string | undefined;
|
|
3737
3746
|
groupIds: Array<string>;
|
|
3738
3747
|
};
|
|
@@ -3757,6 +3766,7 @@ export declare const CreateDeploymentMicrofrontends1$inboundSchema: z.ZodType<Cr
|
|
|
3757
3766
|
/** @internal */
|
|
3758
3767
|
export type CreateDeploymentMicrofrontends1$Outbound = {
|
|
3759
3768
|
isDefaultApp?: boolean | undefined;
|
|
3769
|
+
defaultAppProjectName: string;
|
|
3760
3770
|
defaultRoute?: string | undefined;
|
|
3761
3771
|
groupIds: Array<string>;
|
|
3762
3772
|
};
|
|
@@ -3807,13 +3817,13 @@ export declare const FunctionType$outboundSchema: z.ZodNativeEnum<typeof Functio
|
|
|
3807
3817
|
export declare namespace FunctionType$ {
|
|
3808
3818
|
/** @deprecated use `FunctionType$inboundSchema` instead. */
|
|
3809
3819
|
const inboundSchema: z.ZodNativeEnum<{
|
|
3810
|
-
readonly Standard: "standard";
|
|
3811
3820
|
readonly Fluid: "fluid";
|
|
3821
|
+
readonly Standard: "standard";
|
|
3812
3822
|
}>;
|
|
3813
3823
|
/** @deprecated use `FunctionType$outboundSchema` instead. */
|
|
3814
3824
|
const outboundSchema: z.ZodNativeEnum<{
|
|
3815
|
-
readonly Standard: "standard";
|
|
3816
3825
|
readonly Fluid: "fluid";
|
|
3826
|
+
readonly Standard: "standard";
|
|
3817
3827
|
}>;
|
|
3818
3828
|
}
|
|
3819
3829
|
/** @internal */
|
|
@@ -3827,14 +3837,14 @@ export declare const FunctionMemoryType$outboundSchema: z.ZodNativeEnum<typeof F
|
|
|
3827
3837
|
export declare namespace FunctionMemoryType$ {
|
|
3828
3838
|
/** @deprecated use `FunctionMemoryType$inboundSchema` instead. */
|
|
3829
3839
|
const inboundSchema: z.ZodNativeEnum<{
|
|
3830
|
-
readonly StandardLegacy: "standard_legacy";
|
|
3831
3840
|
readonly Standard: "standard";
|
|
3841
|
+
readonly StandardLegacy: "standard_legacy";
|
|
3832
3842
|
readonly Performance: "performance";
|
|
3833
3843
|
}>;
|
|
3834
3844
|
/** @deprecated use `FunctionMemoryType$outboundSchema` instead. */
|
|
3835
3845
|
const outboundSchema: z.ZodNativeEnum<{
|
|
3836
|
-
readonly StandardLegacy: "standard_legacy";
|
|
3837
3846
|
readonly Standard: "standard";
|
|
3847
|
+
readonly StandardLegacy: "standard_legacy";
|
|
3838
3848
|
readonly Performance: "performance";
|
|
3839
3849
|
}>;
|
|
3840
3850
|
}
|
|
@@ -3927,20 +3937,20 @@ export declare namespace RoutesHandle$ {
|
|
|
3927
3937
|
/** @deprecated use `RoutesHandle$inboundSchema` instead. */
|
|
3928
3938
|
const inboundSchema: z.ZodNativeEnum<{
|
|
3929
3939
|
readonly Error: "error";
|
|
3930
|
-
readonly Resource: "resource";
|
|
3931
3940
|
readonly Filesystem: "filesystem";
|
|
3932
3941
|
readonly Hit: "hit";
|
|
3933
3942
|
readonly Miss: "miss";
|
|
3934
3943
|
readonly Rewrite: "rewrite";
|
|
3944
|
+
readonly Resource: "resource";
|
|
3935
3945
|
}>;
|
|
3936
3946
|
/** @deprecated use `RoutesHandle$outboundSchema` instead. */
|
|
3937
3947
|
const outboundSchema: z.ZodNativeEnum<{
|
|
3938
3948
|
readonly Error: "error";
|
|
3939
|
-
readonly Resource: "resource";
|
|
3940
3949
|
readonly Filesystem: "filesystem";
|
|
3941
3950
|
readonly Hit: "hit";
|
|
3942
3951
|
readonly Miss: "miss";
|
|
3943
3952
|
readonly Rewrite: "rewrite";
|
|
3953
|
+
readonly Resource: "resource";
|
|
3944
3954
|
}>;
|
|
3945
3955
|
}
|
|
3946
3956
|
/** @internal */
|
|
@@ -4318,13 +4328,13 @@ export declare const CreateDeploymentGitRepoOwnerType$outboundSchema: z.ZodNativ
|
|
|
4318
4328
|
export declare namespace CreateDeploymentGitRepoOwnerType$ {
|
|
4319
4329
|
/** @deprecated use `CreateDeploymentGitRepoOwnerType$inboundSchema` instead. */
|
|
4320
4330
|
const inboundSchema: z.ZodNativeEnum<{
|
|
4321
|
-
readonly User: "user";
|
|
4322
4331
|
readonly Team: "team";
|
|
4332
|
+
readonly User: "user";
|
|
4323
4333
|
}>;
|
|
4324
4334
|
/** @deprecated use `CreateDeploymentGitRepoOwnerType$outboundSchema` instead. */
|
|
4325
4335
|
const outboundSchema: z.ZodNativeEnum<{
|
|
4326
|
-
readonly User: "user";
|
|
4327
4336
|
readonly Team: "team";
|
|
4337
|
+
readonly User: "user";
|
|
4328
4338
|
}>;
|
|
4329
4339
|
}
|
|
4330
4340
|
/** @internal */
|
|
@@ -4387,13 +4397,13 @@ export declare const GitRepoOwnerType$outboundSchema: z.ZodNativeEnum<typeof Git
|
|
|
4387
4397
|
export declare namespace GitRepoOwnerType$ {
|
|
4388
4398
|
/** @deprecated use `GitRepoOwnerType$inboundSchema` instead. */
|
|
4389
4399
|
const inboundSchema: z.ZodNativeEnum<{
|
|
4390
|
-
readonly User: "user";
|
|
4391
4400
|
readonly Team: "team";
|
|
4401
|
+
readonly User: "user";
|
|
4392
4402
|
}>;
|
|
4393
4403
|
/** @deprecated use `GitRepoOwnerType$outboundSchema` instead. */
|
|
4394
4404
|
const outboundSchema: z.ZodNativeEnum<{
|
|
4395
|
-
readonly User: "user";
|
|
4396
4405
|
readonly Team: "team";
|
|
4406
|
+
readonly User: "user";
|
|
4397
4407
|
}>;
|
|
4398
4408
|
}
|
|
4399
4409
|
/** @internal */
|
|
@@ -4456,13 +4466,13 @@ export declare const OwnerType$outboundSchema: z.ZodNativeEnum<typeof OwnerType>
|
|
|
4456
4466
|
export declare namespace OwnerType$ {
|
|
4457
4467
|
/** @deprecated use `OwnerType$inboundSchema` instead. */
|
|
4458
4468
|
const inboundSchema: z.ZodNativeEnum<{
|
|
4459
|
-
readonly User: "user";
|
|
4460
4469
|
readonly Team: "team";
|
|
4470
|
+
readonly User: "user";
|
|
4461
4471
|
}>;
|
|
4462
4472
|
/** @deprecated use `OwnerType$outboundSchema` instead. */
|
|
4463
4473
|
const outboundSchema: z.ZodNativeEnum<{
|
|
4464
|
-
readonly User: "user";
|
|
4465
4474
|
readonly Team: "team";
|
|
4475
|
+
readonly User: "user";
|
|
4466
4476
|
}>;
|
|
4467
4477
|
}
|
|
4468
4478
|
/** @internal */
|