@vercel/sdk 1.8.4 → 1.8.6
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 +11 -3
- package/bin/mcp-server.js +2697 -1100
- package/bin/mcp-server.js.map +41 -29
- package/docs/sdks/marketplace/README.md +310 -78
- package/docs/sdks/rollingrelease/README.md +80 -0
- package/esm/__tests__/marketplace.test.js +53 -0
- package/esm/__tests__/marketplace.test.js.map +1 -1
- package/esm/__tests__/projects.test.js +15 -13
- package/esm/__tests__/projects.test.js.map +1 -1
- package/esm/__tests__/rollingrelease.test.js +23 -0
- package/esm/__tests__/rollingrelease.test.js.map +1 -1
- package/esm/funcs/domainsCheckDomainStatus.js +2 -2
- package/esm/funcs/domainsCheckDomainStatus.js.map +1 -1
- package/esm/funcs/marketplaceDeleteResource.d.ts +20 -0
- package/esm/funcs/marketplaceDeleteResource.d.ts.map +1 -0
- package/esm/funcs/marketplaceDeleteResource.js +91 -0
- package/esm/funcs/marketplaceDeleteResource.js.map +1 -0
- package/esm/funcs/marketplaceGetResource.d.ts +20 -0
- package/esm/funcs/marketplaceGetResource.d.ts.map +1 -0
- package/esm/funcs/marketplaceGetResource.js +90 -0
- package/esm/funcs/marketplaceGetResource.js.map +1 -0
- package/esm/funcs/marketplaceGetResources.d.ts +20 -0
- package/esm/funcs/marketplaceGetResources.d.ts.map +1 -0
- package/esm/funcs/marketplaceGetResources.js +86 -0
- package/esm/funcs/marketplaceGetResources.js.map +1 -0
- package/esm/funcs/rollingReleaseGetRollingReleaseBillingStatus.d.ts +20 -0
- package/esm/funcs/rollingReleaseGetRollingReleaseBillingStatus.d.ts.map +1 -0
- package/esm/funcs/rollingReleaseGetRollingReleaseBillingStatus.js +94 -0
- package/esm/funcs/rollingReleaseGetRollingReleaseBillingStatus.js.map +1 -0
- 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.d.ts.map +1 -1
- package/esm/mcp-server/server.js +10 -2
- package/esm/mcp-server/server.js.map +1 -1
- package/esm/mcp-server/tools/marketplaceDeleteResource.d.ts +7 -0
- package/esm/mcp-server/tools/marketplaceDeleteResource.d.ts.map +1 -0
- package/esm/mcp-server/tools/marketplaceDeleteResource.js +27 -0
- package/esm/mcp-server/tools/marketplaceDeleteResource.js.map +1 -0
- package/esm/mcp-server/tools/marketplaceGetResource.d.ts +7 -0
- package/esm/mcp-server/tools/marketplaceGetResource.d.ts.map +1 -0
- package/esm/mcp-server/tools/marketplaceGetResource.js +28 -0
- package/esm/mcp-server/tools/marketplaceGetResource.js.map +1 -0
- package/esm/mcp-server/tools/marketplaceGetResources.d.ts +7 -0
- package/esm/mcp-server/tools/marketplaceGetResources.d.ts.map +1 -0
- package/esm/mcp-server/tools/marketplaceGetResources.js +28 -0
- package/esm/mcp-server/tools/marketplaceGetResources.js.map +1 -0
- package/esm/mcp-server/tools/rollingReleaseGetRollingReleaseBillingStatus.d.ts +7 -0
- package/esm/mcp-server/tools/rollingReleaseGetRollingReleaseBillingStatus.d.ts.map +1 -0
- package/esm/mcp-server/tools/rollingReleaseGetRollingReleaseBillingStatus.js +28 -0
- package/esm/mcp-server/tools/rollingReleaseGetRollingReleaseBillingStatus.js.map +1 -0
- package/esm/models/canceldeploymentop.d.ts +427 -25
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +465 -25
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +459 -114
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +503 -118
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createprojectenvop.d.ts +6 -6
- package/esm/models/createprojectenvop.js +2 -2
- package/esm/models/createprojectenvop.js.map +1 -1
- package/esm/models/createprojectop.d.ts +139 -137
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +137 -135
- 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/deleteresourceop.d.ts +31 -0
- package/esm/models/deleteresourceop.d.ts.map +1 -0
- package/esm/models/deleteresourceop.js +33 -0
- package/esm/models/deleteresourceop.js.map +1 -0
- package/esm/models/editprojectenvop.d.ts +3 -3
- package/esm/models/editprojectenvop.js +1 -1
- package/esm/models/editprojectenvop.js.map +1 -1
- package/esm/models/getdeploymentop.d.ts +410 -8
- package/esm/models/getdeploymentop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.js +443 -8
- package/esm/models/getdeploymentop.js.map +1 -1
- package/esm/models/getedgeconfigbackupop.d.ts +15 -15
- package/esm/models/getedgeconfigbackupop.d.ts.map +1 -1
- package/esm/models/getedgeconfigbackupop.js +15 -15
- package/esm/models/getedgeconfigbackupop.js.map +1 -1
- package/esm/models/getfirewallconfigop.d.ts +2 -0
- package/esm/models/getfirewallconfigop.d.ts.map +1 -1
- package/esm/models/getfirewallconfigop.js +2 -0
- package/esm/models/getfirewallconfigop.js.map +1 -1
- package/esm/models/getmemberop.d.ts +9 -0
- package/esm/models/getmemberop.d.ts.map +1 -1
- package/esm/models/getmemberop.js +3 -0
- package/esm/models/getmemberop.js.map +1 -1
- package/esm/models/getprojectsop.d.ts +2 -0
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +2 -0
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/getresourceop.d.ts +293 -0
- package/esm/models/getresourceop.d.ts.map +1 -0
- package/esm/models/getresourceop.js +250 -0
- package/esm/models/getresourceop.js.map +1 -0
- package/esm/models/getresourcesop.d.ts +310 -0
- package/esm/models/getresourcesop.d.ts.map +1 -0
- package/esm/models/getresourcesop.js +278 -0
- package/esm/models/getresourcesop.js.map +1 -0
- package/esm/models/getrollingreleasebillingstatusop.d.ts +284 -0
- package/esm/models/getrollingreleasebillingstatusop.d.ts.map +1 -0
- package/esm/models/getrollingreleasebillingstatusop.js +267 -0
- package/esm/models/getrollingreleasebillingstatusop.js.map +1 -0
- 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 +15 -15
- package/esm/models/importresourceop.d.ts.map +1 -1
- package/esm/models/importresourceop.js +17 -15
- package/esm/models/importresourceop.js.map +1 -1
- package/esm/models/putfirewallconfigop.d.ts +4 -0
- package/esm/models/putfirewallconfigop.d.ts.map +1 -1
- package/esm/models/putfirewallconfigop.js +4 -0
- package/esm/models/putfirewallconfigop.js.map +1 -1
- package/esm/models/removeprojectenvop.d.ts +9 -9
- package/esm/models/removeprojectenvop.js +3 -3
- package/esm/models/removeprojectenvop.js.map +1 -1
- package/esm/models/updatefirewallconfigop.d.ts +36 -4
- package/esm/models/updatefirewallconfigop.d.ts.map +1 -1
- package/esm/models/updatefirewallconfigop.js +33 -0
- package/esm/models/updatefirewallconfigop.js.map +1 -1
- package/esm/models/updateintegrationdeploymentactionop.d.ts +2 -0
- package/esm/models/updateintegrationdeploymentactionop.d.ts.map +1 -1
- package/esm/models/updateintegrationdeploymentactionop.js +2 -0
- package/esm/models/updateintegrationdeploymentactionop.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +2 -0
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +2 -0
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +139 -137
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +137 -135
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/models/updateresourcesecretsop.d.ts +15 -15
- package/esm/models/updateresourcesecretsop.d.ts.map +1 -1
- package/esm/models/updateresourcesecretsop.js +15 -17
- package/esm/models/updateresourcesecretsop.js.map +1 -1
- package/esm/models/userevent.d.ts +5 -0
- package/esm/models/userevent.d.ts.map +1 -1
- package/esm/models/userevent.js +2 -0
- package/esm/models/userevent.js.map +1 -1
- package/esm/sdk/marketplace.d.ts +31 -7
- package/esm/sdk/marketplace.d.ts.map +1 -1
- package/esm/sdk/marketplace.js +39 -9
- package/esm/sdk/marketplace.js.map +1 -1
- package/esm/sdk/rollingrelease.d.ts +8 -0
- package/esm/sdk/rollingrelease.d.ts.map +1 -1
- package/esm/sdk/rollingrelease.js +10 -0
- package/esm/sdk/rollingrelease.js.map +1 -1
- package/esm/types/constdatetime.js +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/marketplace.test.ts +62 -0
- package/src/__tests__/projects.test.ts +15 -13
- package/src/__tests__/rollingrelease.test.ts +26 -0
- package/src/funcs/domainsCheckDomainStatus.ts +2 -2
- package/src/funcs/marketplaceDeleteResource.ts +205 -0
- package/src/funcs/marketplaceGetResource.ts +206 -0
- package/src/funcs/marketplaceGetResources.ts +202 -0
- package/src/funcs/rollingReleaseGetRollingReleaseBillingStatus.ts +208 -0
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +10 -2
- package/src/mcp-server/tools/marketplaceDeleteResource.ts +35 -0
- package/src/mcp-server/tools/marketplaceGetResource.ts +37 -0
- package/src/mcp-server/tools/marketplaceGetResources.ts +37 -0
- package/src/mcp-server/tools/rollingReleaseGetRollingReleaseBillingStatus.ts +40 -0
- package/src/models/canceldeploymentop.ts +1071 -48
- package/src/models/createdeploymentop.ts +1064 -236
- package/src/models/createprojectenvop.ts +2 -2
- package/src/models/createprojectop.ts +267 -263
- package/src/models/createwebhookop.ts +2 -0
- package/src/models/deleteresourceop.ts +70 -0
- package/src/models/editprojectenvop.ts +1 -1
- package/src/models/getdeploymentop.ts +1011 -16
- package/src/models/getedgeconfigbackupop.ts +41 -24
- package/src/models/getfirewallconfigop.ts +4 -0
- package/src/models/getmemberop.ts +9 -0
- package/src/models/getprojectsop.ts +4 -0
- package/src/models/getresourceop.ts +545 -0
- package/src/models/getresourcesop.ts +604 -0
- package/src/models/getrollingreleasebillingstatusop.ts +614 -0
- package/src/models/getwebhookop.ts +1 -0
- package/src/models/getwebhooksop.ts +2 -0
- package/src/models/importresourceop.ts +27 -35
- package/src/models/putfirewallconfigop.ts +8 -0
- package/src/models/removeprojectenvop.ts +3 -3
- package/src/models/updatefirewallconfigop.ts +73 -0
- package/src/models/updateintegrationdeploymentactionop.ts +4 -0
- package/src/models/updateprojectdatacacheop.ts +4 -0
- package/src/models/updateprojectop.ts +267 -263
- package/src/models/updateresourcesecretsop.ts +49 -33
- package/src/models/userevent.ts +7 -0
- package/src/sdk/marketplace.ts +80 -17
- package/src/sdk/rollingrelease.ts +22 -0
- package/src/types/constdatetime.ts +1 -1
- package/vercel-spec.json +2321 -931
|
@@ -334,6 +334,10 @@ export const GetDeploymentMissingType = {
|
|
|
334
334
|
export const GetDeploymentMissingDeploymentsType = {
|
|
335
335
|
Host: "host",
|
|
336
336
|
};
|
|
337
|
+
export const GetDeploymentRoutesAction = {
|
|
338
|
+
Challenge: "challenge",
|
|
339
|
+
Deny: "deny",
|
|
340
|
+
};
|
|
337
341
|
export const GetDeploymentGitRepoDeploymentsType = {
|
|
338
342
|
Bitbucket: "bitbucket",
|
|
339
343
|
};
|
|
@@ -3843,16 +3847,115 @@ export var GetDeploymentHasType$;
|
|
|
3843
3847
|
GetDeploymentHasType$.outboundSchema = GetDeploymentHasType$outboundSchema;
|
|
3844
3848
|
})(GetDeploymentHasType$ || (GetDeploymentHasType$ = {}));
|
|
3845
3849
|
/** @internal */
|
|
3850
|
+
export const GetDeploymentValueDeploymentsResponse200Eq$inboundSchema = z.union([z.string(), z.number()]);
|
|
3851
|
+
/** @internal */
|
|
3852
|
+
export const GetDeploymentValueDeploymentsResponse200Eq$outboundSchema = z.union([z.string(), z.number()]);
|
|
3853
|
+
/**
|
|
3854
|
+
* @internal
|
|
3855
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3856
|
+
*/
|
|
3857
|
+
export var GetDeploymentValueDeploymentsResponse200Eq$;
|
|
3858
|
+
(function (GetDeploymentValueDeploymentsResponse200Eq$) {
|
|
3859
|
+
/** @deprecated use `GetDeploymentValueDeploymentsResponse200Eq$inboundSchema` instead. */
|
|
3860
|
+
GetDeploymentValueDeploymentsResponse200Eq$.inboundSchema = GetDeploymentValueDeploymentsResponse200Eq$inboundSchema;
|
|
3861
|
+
/** @deprecated use `GetDeploymentValueDeploymentsResponse200Eq$outboundSchema` instead. */
|
|
3862
|
+
GetDeploymentValueDeploymentsResponse200Eq$.outboundSchema = GetDeploymentValueDeploymentsResponse200Eq$outboundSchema;
|
|
3863
|
+
})(GetDeploymentValueDeploymentsResponse200Eq$ || (GetDeploymentValueDeploymentsResponse200Eq$ = {}));
|
|
3864
|
+
export function getDeploymentValueDeploymentsResponse200EqToJSON(getDeploymentValueDeploymentsResponse200Eq) {
|
|
3865
|
+
return JSON.stringify(GetDeploymentValueDeploymentsResponse200Eq$outboundSchema.parse(getDeploymentValueDeploymentsResponse200Eq));
|
|
3866
|
+
}
|
|
3867
|
+
export function getDeploymentValueDeploymentsResponse200EqFromJSON(jsonString) {
|
|
3868
|
+
return safeParse(jsonString, (x) => GetDeploymentValueDeploymentsResponse200Eq$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentValueDeploymentsResponse200Eq' from JSON`);
|
|
3869
|
+
}
|
|
3870
|
+
/** @internal */
|
|
3871
|
+
export const GetDeploymentValueDeployments2$inboundSchema = z.object({
|
|
3872
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
3873
|
+
neq: z.string().optional(),
|
|
3874
|
+
inc: z.array(z.string()).optional(),
|
|
3875
|
+
ninc: z.array(z.string()).optional(),
|
|
3876
|
+
pre: z.string().optional(),
|
|
3877
|
+
suf: z.string().optional(),
|
|
3878
|
+
re: z.string().optional(),
|
|
3879
|
+
gt: z.number().optional(),
|
|
3880
|
+
gte: z.number().optional(),
|
|
3881
|
+
lt: z.number().optional(),
|
|
3882
|
+
lte: z.number().optional(),
|
|
3883
|
+
});
|
|
3884
|
+
/** @internal */
|
|
3885
|
+
export const GetDeploymentValueDeployments2$outboundSchema = z.object({
|
|
3886
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
3887
|
+
neq: z.string().optional(),
|
|
3888
|
+
inc: z.array(z.string()).optional(),
|
|
3889
|
+
ninc: z.array(z.string()).optional(),
|
|
3890
|
+
pre: z.string().optional(),
|
|
3891
|
+
suf: z.string().optional(),
|
|
3892
|
+
re: z.string().optional(),
|
|
3893
|
+
gt: z.number().optional(),
|
|
3894
|
+
gte: z.number().optional(),
|
|
3895
|
+
lt: z.number().optional(),
|
|
3896
|
+
lte: z.number().optional(),
|
|
3897
|
+
});
|
|
3898
|
+
/**
|
|
3899
|
+
* @internal
|
|
3900
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3901
|
+
*/
|
|
3902
|
+
export var GetDeploymentValueDeployments2$;
|
|
3903
|
+
(function (GetDeploymentValueDeployments2$) {
|
|
3904
|
+
/** @deprecated use `GetDeploymentValueDeployments2$inboundSchema` instead. */
|
|
3905
|
+
GetDeploymentValueDeployments2$.inboundSchema = GetDeploymentValueDeployments2$inboundSchema;
|
|
3906
|
+
/** @deprecated use `GetDeploymentValueDeployments2$outboundSchema` instead. */
|
|
3907
|
+
GetDeploymentValueDeployments2$.outboundSchema = GetDeploymentValueDeployments2$outboundSchema;
|
|
3908
|
+
})(GetDeploymentValueDeployments2$ || (GetDeploymentValueDeployments2$ = {}));
|
|
3909
|
+
export function getDeploymentValueDeployments2ToJSON(getDeploymentValueDeployments2) {
|
|
3910
|
+
return JSON.stringify(GetDeploymentValueDeployments2$outboundSchema.parse(getDeploymentValueDeployments2));
|
|
3911
|
+
}
|
|
3912
|
+
export function getDeploymentValueDeployments2FromJSON(jsonString) {
|
|
3913
|
+
return safeParse(jsonString, (x) => GetDeploymentValueDeployments2$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentValueDeployments2' from JSON`);
|
|
3914
|
+
}
|
|
3915
|
+
/** @internal */
|
|
3916
|
+
export const GetDeploymentHasValue$inboundSchema = z.union([
|
|
3917
|
+
z.lazy(() => GetDeploymentValueDeployments2$inboundSchema),
|
|
3918
|
+
z.string(),
|
|
3919
|
+
]);
|
|
3920
|
+
/** @internal */
|
|
3921
|
+
export const GetDeploymentHasValue$outboundSchema = z.union([
|
|
3922
|
+
z.lazy(() => GetDeploymentValueDeployments2$outboundSchema),
|
|
3923
|
+
z.string(),
|
|
3924
|
+
]);
|
|
3925
|
+
/**
|
|
3926
|
+
* @internal
|
|
3927
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3928
|
+
*/
|
|
3929
|
+
export var GetDeploymentHasValue$;
|
|
3930
|
+
(function (GetDeploymentHasValue$) {
|
|
3931
|
+
/** @deprecated use `GetDeploymentHasValue$inboundSchema` instead. */
|
|
3932
|
+
GetDeploymentHasValue$.inboundSchema = GetDeploymentHasValue$inboundSchema;
|
|
3933
|
+
/** @deprecated use `GetDeploymentHasValue$outboundSchema` instead. */
|
|
3934
|
+
GetDeploymentHasValue$.outboundSchema = GetDeploymentHasValue$outboundSchema;
|
|
3935
|
+
})(GetDeploymentHasValue$ || (GetDeploymentHasValue$ = {}));
|
|
3936
|
+
export function getDeploymentHasValueToJSON(getDeploymentHasValue) {
|
|
3937
|
+
return JSON.stringify(GetDeploymentHasValue$outboundSchema.parse(getDeploymentHasValue));
|
|
3938
|
+
}
|
|
3939
|
+
export function getDeploymentHasValueFromJSON(jsonString) {
|
|
3940
|
+
return safeParse(jsonString, (x) => GetDeploymentHasValue$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentHasValue' from JSON`);
|
|
3941
|
+
}
|
|
3942
|
+
/** @internal */
|
|
3846
3943
|
export const GetDeploymentHas2$inboundSchema = z.object({
|
|
3847
3944
|
type: GetDeploymentHasType$inboundSchema,
|
|
3848
3945
|
key: z.string(),
|
|
3849
|
-
value: z.
|
|
3946
|
+
value: z.union([
|
|
3947
|
+
z.lazy(() => GetDeploymentValueDeployments2$inboundSchema),
|
|
3948
|
+
z.string(),
|
|
3949
|
+
]).optional(),
|
|
3850
3950
|
});
|
|
3851
3951
|
/** @internal */
|
|
3852
3952
|
export const GetDeploymentHas2$outboundSchema = z.object({
|
|
3853
3953
|
type: GetDeploymentHasType$outboundSchema,
|
|
3854
3954
|
key: z.string(),
|
|
3855
|
-
value: z.
|
|
3955
|
+
value: z.union([
|
|
3956
|
+
z.lazy(() => GetDeploymentValueDeployments2$outboundSchema),
|
|
3957
|
+
z.string(),
|
|
3958
|
+
]).optional(),
|
|
3856
3959
|
});
|
|
3857
3960
|
/**
|
|
3858
3961
|
* @internal
|
|
@@ -3887,14 +3990,104 @@ export var GetDeploymentHasDeploymentsType$;
|
|
|
3887
3990
|
GetDeploymentHasDeploymentsType$.outboundSchema = GetDeploymentHasDeploymentsType$outboundSchema;
|
|
3888
3991
|
})(GetDeploymentHasDeploymentsType$ || (GetDeploymentHasDeploymentsType$ = {}));
|
|
3889
3992
|
/** @internal */
|
|
3993
|
+
export const GetDeploymentValueDeploymentsResponseEq$inboundSchema = z.union([z.string(), z.number()]);
|
|
3994
|
+
/** @internal */
|
|
3995
|
+
export const GetDeploymentValueDeploymentsResponseEq$outboundSchema = z.union([z.string(), z.number()]);
|
|
3996
|
+
/**
|
|
3997
|
+
* @internal
|
|
3998
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3999
|
+
*/
|
|
4000
|
+
export var GetDeploymentValueDeploymentsResponseEq$;
|
|
4001
|
+
(function (GetDeploymentValueDeploymentsResponseEq$) {
|
|
4002
|
+
/** @deprecated use `GetDeploymentValueDeploymentsResponseEq$inboundSchema` instead. */
|
|
4003
|
+
GetDeploymentValueDeploymentsResponseEq$.inboundSchema = GetDeploymentValueDeploymentsResponseEq$inboundSchema;
|
|
4004
|
+
/** @deprecated use `GetDeploymentValueDeploymentsResponseEq$outboundSchema` instead. */
|
|
4005
|
+
GetDeploymentValueDeploymentsResponseEq$.outboundSchema = GetDeploymentValueDeploymentsResponseEq$outboundSchema;
|
|
4006
|
+
})(GetDeploymentValueDeploymentsResponseEq$ || (GetDeploymentValueDeploymentsResponseEq$ = {}));
|
|
4007
|
+
export function getDeploymentValueDeploymentsResponseEqToJSON(getDeploymentValueDeploymentsResponseEq) {
|
|
4008
|
+
return JSON.stringify(GetDeploymentValueDeploymentsResponseEq$outboundSchema.parse(getDeploymentValueDeploymentsResponseEq));
|
|
4009
|
+
}
|
|
4010
|
+
export function getDeploymentValueDeploymentsResponseEqFromJSON(jsonString) {
|
|
4011
|
+
return safeParse(jsonString, (x) => GetDeploymentValueDeploymentsResponseEq$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentValueDeploymentsResponseEq' from JSON`);
|
|
4012
|
+
}
|
|
4013
|
+
/** @internal */
|
|
4014
|
+
export const GetDeploymentValue2$inboundSchema = z.object({
|
|
4015
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
4016
|
+
neq: z.string().optional(),
|
|
4017
|
+
inc: z.array(z.string()).optional(),
|
|
4018
|
+
ninc: z.array(z.string()).optional(),
|
|
4019
|
+
pre: z.string().optional(),
|
|
4020
|
+
suf: z.string().optional(),
|
|
4021
|
+
re: z.string().optional(),
|
|
4022
|
+
gt: z.number().optional(),
|
|
4023
|
+
gte: z.number().optional(),
|
|
4024
|
+
lt: z.number().optional(),
|
|
4025
|
+
lte: z.number().optional(),
|
|
4026
|
+
});
|
|
4027
|
+
/** @internal */
|
|
4028
|
+
export const GetDeploymentValue2$outboundSchema = z.object({
|
|
4029
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
4030
|
+
neq: z.string().optional(),
|
|
4031
|
+
inc: z.array(z.string()).optional(),
|
|
4032
|
+
ninc: z.array(z.string()).optional(),
|
|
4033
|
+
pre: z.string().optional(),
|
|
4034
|
+
suf: z.string().optional(),
|
|
4035
|
+
re: z.string().optional(),
|
|
4036
|
+
gt: z.number().optional(),
|
|
4037
|
+
gte: z.number().optional(),
|
|
4038
|
+
lt: z.number().optional(),
|
|
4039
|
+
lte: z.number().optional(),
|
|
4040
|
+
});
|
|
4041
|
+
/**
|
|
4042
|
+
* @internal
|
|
4043
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4044
|
+
*/
|
|
4045
|
+
export var GetDeploymentValue2$;
|
|
4046
|
+
(function (GetDeploymentValue2$) {
|
|
4047
|
+
/** @deprecated use `GetDeploymentValue2$inboundSchema` instead. */
|
|
4048
|
+
GetDeploymentValue2$.inboundSchema = GetDeploymentValue2$inboundSchema;
|
|
4049
|
+
/** @deprecated use `GetDeploymentValue2$outboundSchema` instead. */
|
|
4050
|
+
GetDeploymentValue2$.outboundSchema = GetDeploymentValue2$outboundSchema;
|
|
4051
|
+
})(GetDeploymentValue2$ || (GetDeploymentValue2$ = {}));
|
|
4052
|
+
export function getDeploymentValue2ToJSON(getDeploymentValue2) {
|
|
4053
|
+
return JSON.stringify(GetDeploymentValue2$outboundSchema.parse(getDeploymentValue2));
|
|
4054
|
+
}
|
|
4055
|
+
export function getDeploymentValue2FromJSON(jsonString) {
|
|
4056
|
+
return safeParse(jsonString, (x) => GetDeploymentValue2$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentValue2' from JSON`);
|
|
4057
|
+
}
|
|
4058
|
+
/** @internal */
|
|
4059
|
+
export const GetDeploymentHasDeploymentsValue$inboundSchema = z.union([z.lazy(() => GetDeploymentValue2$inboundSchema), z.string()]);
|
|
4060
|
+
/** @internal */
|
|
4061
|
+
export const GetDeploymentHasDeploymentsValue$outboundSchema = z.union([z.lazy(() => GetDeploymentValue2$outboundSchema), z.string()]);
|
|
4062
|
+
/**
|
|
4063
|
+
* @internal
|
|
4064
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4065
|
+
*/
|
|
4066
|
+
export var GetDeploymentHasDeploymentsValue$;
|
|
4067
|
+
(function (GetDeploymentHasDeploymentsValue$) {
|
|
4068
|
+
/** @deprecated use `GetDeploymentHasDeploymentsValue$inboundSchema` instead. */
|
|
4069
|
+
GetDeploymentHasDeploymentsValue$.inboundSchema = GetDeploymentHasDeploymentsValue$inboundSchema;
|
|
4070
|
+
/** @deprecated use `GetDeploymentHasDeploymentsValue$outboundSchema` instead. */
|
|
4071
|
+
GetDeploymentHasDeploymentsValue$.outboundSchema = GetDeploymentHasDeploymentsValue$outboundSchema;
|
|
4072
|
+
})(GetDeploymentHasDeploymentsValue$ || (GetDeploymentHasDeploymentsValue$ = {}));
|
|
4073
|
+
export function getDeploymentHasDeploymentsValueToJSON(getDeploymentHasDeploymentsValue) {
|
|
4074
|
+
return JSON.stringify(GetDeploymentHasDeploymentsValue$outboundSchema.parse(getDeploymentHasDeploymentsValue));
|
|
4075
|
+
}
|
|
4076
|
+
export function getDeploymentHasDeploymentsValueFromJSON(jsonString) {
|
|
4077
|
+
return safeParse(jsonString, (x) => GetDeploymentHasDeploymentsValue$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentHasDeploymentsValue' from JSON`);
|
|
4078
|
+
}
|
|
4079
|
+
/** @internal */
|
|
3890
4080
|
export const GetDeploymentHas1$inboundSchema = z.object({
|
|
3891
4081
|
type: GetDeploymentHasDeploymentsType$inboundSchema,
|
|
3892
|
-
value: z.string(),
|
|
4082
|
+
value: z.union([z.lazy(() => GetDeploymentValue2$inboundSchema), z.string()]),
|
|
3893
4083
|
});
|
|
3894
4084
|
/** @internal */
|
|
3895
4085
|
export const GetDeploymentHas1$outboundSchema = z.object({
|
|
3896
4086
|
type: GetDeploymentHasDeploymentsType$outboundSchema,
|
|
3897
|
-
value: z.
|
|
4087
|
+
value: z.union([
|
|
4088
|
+
z.lazy(() => GetDeploymentValue2$outboundSchema),
|
|
4089
|
+
z.string(),
|
|
4090
|
+
]),
|
|
3898
4091
|
});
|
|
3899
4092
|
/**
|
|
3900
4093
|
* @internal
|
|
@@ -3956,16 +4149,115 @@ export var GetDeploymentMissingType$;
|
|
|
3956
4149
|
GetDeploymentMissingType$.outboundSchema = GetDeploymentMissingType$outboundSchema;
|
|
3957
4150
|
})(GetDeploymentMissingType$ || (GetDeploymentMissingType$ = {}));
|
|
3958
4151
|
/** @internal */
|
|
4152
|
+
export const GetDeploymentValueDeploymentsEq$inboundSchema = z.union([z.string(), z.number()]);
|
|
4153
|
+
/** @internal */
|
|
4154
|
+
export const GetDeploymentValueDeploymentsEq$outboundSchema = z.union([z.string(), z.number()]);
|
|
4155
|
+
/**
|
|
4156
|
+
* @internal
|
|
4157
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4158
|
+
*/
|
|
4159
|
+
export var GetDeploymentValueDeploymentsEq$;
|
|
4160
|
+
(function (GetDeploymentValueDeploymentsEq$) {
|
|
4161
|
+
/** @deprecated use `GetDeploymentValueDeploymentsEq$inboundSchema` instead. */
|
|
4162
|
+
GetDeploymentValueDeploymentsEq$.inboundSchema = GetDeploymentValueDeploymentsEq$inboundSchema;
|
|
4163
|
+
/** @deprecated use `GetDeploymentValueDeploymentsEq$outboundSchema` instead. */
|
|
4164
|
+
GetDeploymentValueDeploymentsEq$.outboundSchema = GetDeploymentValueDeploymentsEq$outboundSchema;
|
|
4165
|
+
})(GetDeploymentValueDeploymentsEq$ || (GetDeploymentValueDeploymentsEq$ = {}));
|
|
4166
|
+
export function getDeploymentValueDeploymentsEqToJSON(getDeploymentValueDeploymentsEq) {
|
|
4167
|
+
return JSON.stringify(GetDeploymentValueDeploymentsEq$outboundSchema.parse(getDeploymentValueDeploymentsEq));
|
|
4168
|
+
}
|
|
4169
|
+
export function getDeploymentValueDeploymentsEqFromJSON(jsonString) {
|
|
4170
|
+
return safeParse(jsonString, (x) => GetDeploymentValueDeploymentsEq$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentValueDeploymentsEq' from JSON`);
|
|
4171
|
+
}
|
|
4172
|
+
/** @internal */
|
|
4173
|
+
export const GetDeploymentValueDeploymentsResponse2002$inboundSchema = z.object({
|
|
4174
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
4175
|
+
neq: z.string().optional(),
|
|
4176
|
+
inc: z.array(z.string()).optional(),
|
|
4177
|
+
ninc: z.array(z.string()).optional(),
|
|
4178
|
+
pre: z.string().optional(),
|
|
4179
|
+
suf: z.string().optional(),
|
|
4180
|
+
re: z.string().optional(),
|
|
4181
|
+
gt: z.number().optional(),
|
|
4182
|
+
gte: z.number().optional(),
|
|
4183
|
+
lt: z.number().optional(),
|
|
4184
|
+
lte: z.number().optional(),
|
|
4185
|
+
});
|
|
4186
|
+
/** @internal */
|
|
4187
|
+
export const GetDeploymentValueDeploymentsResponse2002$outboundSchema = z.object({
|
|
4188
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
4189
|
+
neq: z.string().optional(),
|
|
4190
|
+
inc: z.array(z.string()).optional(),
|
|
4191
|
+
ninc: z.array(z.string()).optional(),
|
|
4192
|
+
pre: z.string().optional(),
|
|
4193
|
+
suf: z.string().optional(),
|
|
4194
|
+
re: z.string().optional(),
|
|
4195
|
+
gt: z.number().optional(),
|
|
4196
|
+
gte: z.number().optional(),
|
|
4197
|
+
lt: z.number().optional(),
|
|
4198
|
+
lte: z.number().optional(),
|
|
4199
|
+
});
|
|
4200
|
+
/**
|
|
4201
|
+
* @internal
|
|
4202
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4203
|
+
*/
|
|
4204
|
+
export var GetDeploymentValueDeploymentsResponse2002$;
|
|
4205
|
+
(function (GetDeploymentValueDeploymentsResponse2002$) {
|
|
4206
|
+
/** @deprecated use `GetDeploymentValueDeploymentsResponse2002$inboundSchema` instead. */
|
|
4207
|
+
GetDeploymentValueDeploymentsResponse2002$.inboundSchema = GetDeploymentValueDeploymentsResponse2002$inboundSchema;
|
|
4208
|
+
/** @deprecated use `GetDeploymentValueDeploymentsResponse2002$outboundSchema` instead. */
|
|
4209
|
+
GetDeploymentValueDeploymentsResponse2002$.outboundSchema = GetDeploymentValueDeploymentsResponse2002$outboundSchema;
|
|
4210
|
+
})(GetDeploymentValueDeploymentsResponse2002$ || (GetDeploymentValueDeploymentsResponse2002$ = {}));
|
|
4211
|
+
export function getDeploymentValueDeploymentsResponse2002ToJSON(getDeploymentValueDeploymentsResponse2002) {
|
|
4212
|
+
return JSON.stringify(GetDeploymentValueDeploymentsResponse2002$outboundSchema.parse(getDeploymentValueDeploymentsResponse2002));
|
|
4213
|
+
}
|
|
4214
|
+
export function getDeploymentValueDeploymentsResponse2002FromJSON(jsonString) {
|
|
4215
|
+
return safeParse(jsonString, (x) => GetDeploymentValueDeploymentsResponse2002$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentValueDeploymentsResponse2002' from JSON`);
|
|
4216
|
+
}
|
|
4217
|
+
/** @internal */
|
|
4218
|
+
export const GetDeploymentMissingValue$inboundSchema = z.union([
|
|
4219
|
+
z.lazy(() => GetDeploymentValueDeploymentsResponse2002$inboundSchema),
|
|
4220
|
+
z.string(),
|
|
4221
|
+
]);
|
|
4222
|
+
/** @internal */
|
|
4223
|
+
export const GetDeploymentMissingValue$outboundSchema = z.union([
|
|
4224
|
+
z.lazy(() => GetDeploymentValueDeploymentsResponse2002$outboundSchema),
|
|
4225
|
+
z.string(),
|
|
4226
|
+
]);
|
|
4227
|
+
/**
|
|
4228
|
+
* @internal
|
|
4229
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4230
|
+
*/
|
|
4231
|
+
export var GetDeploymentMissingValue$;
|
|
4232
|
+
(function (GetDeploymentMissingValue$) {
|
|
4233
|
+
/** @deprecated use `GetDeploymentMissingValue$inboundSchema` instead. */
|
|
4234
|
+
GetDeploymentMissingValue$.inboundSchema = GetDeploymentMissingValue$inboundSchema;
|
|
4235
|
+
/** @deprecated use `GetDeploymentMissingValue$outboundSchema` instead. */
|
|
4236
|
+
GetDeploymentMissingValue$.outboundSchema = GetDeploymentMissingValue$outboundSchema;
|
|
4237
|
+
})(GetDeploymentMissingValue$ || (GetDeploymentMissingValue$ = {}));
|
|
4238
|
+
export function getDeploymentMissingValueToJSON(getDeploymentMissingValue) {
|
|
4239
|
+
return JSON.stringify(GetDeploymentMissingValue$outboundSchema.parse(getDeploymentMissingValue));
|
|
4240
|
+
}
|
|
4241
|
+
export function getDeploymentMissingValueFromJSON(jsonString) {
|
|
4242
|
+
return safeParse(jsonString, (x) => GetDeploymentMissingValue$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentMissingValue' from JSON`);
|
|
4243
|
+
}
|
|
4244
|
+
/** @internal */
|
|
3959
4245
|
export const GetDeploymentMissing2$inboundSchema = z.object({
|
|
3960
4246
|
type: GetDeploymentMissingType$inboundSchema,
|
|
3961
4247
|
key: z.string(),
|
|
3962
|
-
value: z.
|
|
4248
|
+
value: z.union([
|
|
4249
|
+
z.lazy(() => GetDeploymentValueDeploymentsResponse2002$inboundSchema),
|
|
4250
|
+
z.string(),
|
|
4251
|
+
]).optional(),
|
|
3963
4252
|
});
|
|
3964
4253
|
/** @internal */
|
|
3965
4254
|
export const GetDeploymentMissing2$outboundSchema = z.object({
|
|
3966
4255
|
type: GetDeploymentMissingType$outboundSchema,
|
|
3967
4256
|
key: z.string(),
|
|
3968
|
-
value: z.
|
|
4257
|
+
value: z.union([
|
|
4258
|
+
z.lazy(() => GetDeploymentValueDeploymentsResponse2002$outboundSchema),
|
|
4259
|
+
z.string(),
|
|
4260
|
+
]).optional(),
|
|
3969
4261
|
});
|
|
3970
4262
|
/**
|
|
3971
4263
|
* @internal
|
|
@@ -4000,14 +4292,113 @@ export var GetDeploymentMissingDeploymentsType$;
|
|
|
4000
4292
|
GetDeploymentMissingDeploymentsType$.outboundSchema = GetDeploymentMissingDeploymentsType$outboundSchema;
|
|
4001
4293
|
})(GetDeploymentMissingDeploymentsType$ || (GetDeploymentMissingDeploymentsType$ = {}));
|
|
4002
4294
|
/** @internal */
|
|
4295
|
+
export const GetDeploymentValueEq$inboundSchema = z.union([z.string(), z.number()]);
|
|
4296
|
+
/** @internal */
|
|
4297
|
+
export const GetDeploymentValueEq$outboundSchema = z.union([z.string(), z.number()]);
|
|
4298
|
+
/**
|
|
4299
|
+
* @internal
|
|
4300
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4301
|
+
*/
|
|
4302
|
+
export var GetDeploymentValueEq$;
|
|
4303
|
+
(function (GetDeploymentValueEq$) {
|
|
4304
|
+
/** @deprecated use `GetDeploymentValueEq$inboundSchema` instead. */
|
|
4305
|
+
GetDeploymentValueEq$.inboundSchema = GetDeploymentValueEq$inboundSchema;
|
|
4306
|
+
/** @deprecated use `GetDeploymentValueEq$outboundSchema` instead. */
|
|
4307
|
+
GetDeploymentValueEq$.outboundSchema = GetDeploymentValueEq$outboundSchema;
|
|
4308
|
+
})(GetDeploymentValueEq$ || (GetDeploymentValueEq$ = {}));
|
|
4309
|
+
export function getDeploymentValueEqToJSON(getDeploymentValueEq) {
|
|
4310
|
+
return JSON.stringify(GetDeploymentValueEq$outboundSchema.parse(getDeploymentValueEq));
|
|
4311
|
+
}
|
|
4312
|
+
export function getDeploymentValueEqFromJSON(jsonString) {
|
|
4313
|
+
return safeParse(jsonString, (x) => GetDeploymentValueEq$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentValueEq' from JSON`);
|
|
4314
|
+
}
|
|
4315
|
+
/** @internal */
|
|
4316
|
+
export const GetDeploymentValueDeploymentsResponse2$inboundSchema = z.object({
|
|
4317
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
4318
|
+
neq: z.string().optional(),
|
|
4319
|
+
inc: z.array(z.string()).optional(),
|
|
4320
|
+
ninc: z.array(z.string()).optional(),
|
|
4321
|
+
pre: z.string().optional(),
|
|
4322
|
+
suf: z.string().optional(),
|
|
4323
|
+
re: z.string().optional(),
|
|
4324
|
+
gt: z.number().optional(),
|
|
4325
|
+
gte: z.number().optional(),
|
|
4326
|
+
lt: z.number().optional(),
|
|
4327
|
+
lte: z.number().optional(),
|
|
4328
|
+
});
|
|
4329
|
+
/** @internal */
|
|
4330
|
+
export const GetDeploymentValueDeploymentsResponse2$outboundSchema = z.object({
|
|
4331
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
4332
|
+
neq: z.string().optional(),
|
|
4333
|
+
inc: z.array(z.string()).optional(),
|
|
4334
|
+
ninc: z.array(z.string()).optional(),
|
|
4335
|
+
pre: z.string().optional(),
|
|
4336
|
+
suf: z.string().optional(),
|
|
4337
|
+
re: z.string().optional(),
|
|
4338
|
+
gt: z.number().optional(),
|
|
4339
|
+
gte: z.number().optional(),
|
|
4340
|
+
lt: z.number().optional(),
|
|
4341
|
+
lte: z.number().optional(),
|
|
4342
|
+
});
|
|
4343
|
+
/**
|
|
4344
|
+
* @internal
|
|
4345
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4346
|
+
*/
|
|
4347
|
+
export var GetDeploymentValueDeploymentsResponse2$;
|
|
4348
|
+
(function (GetDeploymentValueDeploymentsResponse2$) {
|
|
4349
|
+
/** @deprecated use `GetDeploymentValueDeploymentsResponse2$inboundSchema` instead. */
|
|
4350
|
+
GetDeploymentValueDeploymentsResponse2$.inboundSchema = GetDeploymentValueDeploymentsResponse2$inboundSchema;
|
|
4351
|
+
/** @deprecated use `GetDeploymentValueDeploymentsResponse2$outboundSchema` instead. */
|
|
4352
|
+
GetDeploymentValueDeploymentsResponse2$.outboundSchema = GetDeploymentValueDeploymentsResponse2$outboundSchema;
|
|
4353
|
+
})(GetDeploymentValueDeploymentsResponse2$ || (GetDeploymentValueDeploymentsResponse2$ = {}));
|
|
4354
|
+
export function getDeploymentValueDeploymentsResponse2ToJSON(getDeploymentValueDeploymentsResponse2) {
|
|
4355
|
+
return JSON.stringify(GetDeploymentValueDeploymentsResponse2$outboundSchema.parse(getDeploymentValueDeploymentsResponse2));
|
|
4356
|
+
}
|
|
4357
|
+
export function getDeploymentValueDeploymentsResponse2FromJSON(jsonString) {
|
|
4358
|
+
return safeParse(jsonString, (x) => GetDeploymentValueDeploymentsResponse2$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentValueDeploymentsResponse2' from JSON`);
|
|
4359
|
+
}
|
|
4360
|
+
/** @internal */
|
|
4361
|
+
export const GetDeploymentMissingDeploymentsValue$inboundSchema = z.union([
|
|
4362
|
+
z.lazy(() => GetDeploymentValueDeploymentsResponse2$inboundSchema),
|
|
4363
|
+
z.string(),
|
|
4364
|
+
]);
|
|
4365
|
+
/** @internal */
|
|
4366
|
+
export const GetDeploymentMissingDeploymentsValue$outboundSchema = z.union([
|
|
4367
|
+
z.lazy(() => GetDeploymentValueDeploymentsResponse2$outboundSchema),
|
|
4368
|
+
z.string(),
|
|
4369
|
+
]);
|
|
4370
|
+
/**
|
|
4371
|
+
* @internal
|
|
4372
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4373
|
+
*/
|
|
4374
|
+
export var GetDeploymentMissingDeploymentsValue$;
|
|
4375
|
+
(function (GetDeploymentMissingDeploymentsValue$) {
|
|
4376
|
+
/** @deprecated use `GetDeploymentMissingDeploymentsValue$inboundSchema` instead. */
|
|
4377
|
+
GetDeploymentMissingDeploymentsValue$.inboundSchema = GetDeploymentMissingDeploymentsValue$inboundSchema;
|
|
4378
|
+
/** @deprecated use `GetDeploymentMissingDeploymentsValue$outboundSchema` instead. */
|
|
4379
|
+
GetDeploymentMissingDeploymentsValue$.outboundSchema = GetDeploymentMissingDeploymentsValue$outboundSchema;
|
|
4380
|
+
})(GetDeploymentMissingDeploymentsValue$ || (GetDeploymentMissingDeploymentsValue$ = {}));
|
|
4381
|
+
export function getDeploymentMissingDeploymentsValueToJSON(getDeploymentMissingDeploymentsValue) {
|
|
4382
|
+
return JSON.stringify(GetDeploymentMissingDeploymentsValue$outboundSchema.parse(getDeploymentMissingDeploymentsValue));
|
|
4383
|
+
}
|
|
4384
|
+
export function getDeploymentMissingDeploymentsValueFromJSON(jsonString) {
|
|
4385
|
+
return safeParse(jsonString, (x) => GetDeploymentMissingDeploymentsValue$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentMissingDeploymentsValue' from JSON`);
|
|
4386
|
+
}
|
|
4387
|
+
/** @internal */
|
|
4003
4388
|
export const GetDeploymentMissing1$inboundSchema = z.object({
|
|
4004
4389
|
type: GetDeploymentMissingDeploymentsType$inboundSchema,
|
|
4005
|
-
value: z.
|
|
4390
|
+
value: z.union([
|
|
4391
|
+
z.lazy(() => GetDeploymentValueDeploymentsResponse2$inboundSchema),
|
|
4392
|
+
z.string(),
|
|
4393
|
+
]),
|
|
4006
4394
|
});
|
|
4007
4395
|
/** @internal */
|
|
4008
4396
|
export const GetDeploymentMissing1$outboundSchema = z.object({
|
|
4009
4397
|
type: GetDeploymentMissingDeploymentsType$outboundSchema,
|
|
4010
|
-
value: z.
|
|
4398
|
+
value: z.union([
|
|
4399
|
+
z.lazy(() => GetDeploymentValueDeploymentsResponse2$outboundSchema),
|
|
4400
|
+
z.string(),
|
|
4401
|
+
]),
|
|
4011
4402
|
});
|
|
4012
4403
|
/**
|
|
4013
4404
|
* @internal
|
|
@@ -4054,6 +4445,46 @@ export function getDeploymentRoutesMissingFromJSON(jsonString) {
|
|
|
4054
4445
|
return safeParse(jsonString, (x) => GetDeploymentRoutesMissing$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentRoutesMissing' from JSON`);
|
|
4055
4446
|
}
|
|
4056
4447
|
/** @internal */
|
|
4448
|
+
export const GetDeploymentRoutesAction$inboundSchema = z.nativeEnum(GetDeploymentRoutesAction);
|
|
4449
|
+
/** @internal */
|
|
4450
|
+
export const GetDeploymentRoutesAction$outboundSchema = GetDeploymentRoutesAction$inboundSchema;
|
|
4451
|
+
/**
|
|
4452
|
+
* @internal
|
|
4453
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4454
|
+
*/
|
|
4455
|
+
export var GetDeploymentRoutesAction$;
|
|
4456
|
+
(function (GetDeploymentRoutesAction$) {
|
|
4457
|
+
/** @deprecated use `GetDeploymentRoutesAction$inboundSchema` instead. */
|
|
4458
|
+
GetDeploymentRoutesAction$.inboundSchema = GetDeploymentRoutesAction$inboundSchema;
|
|
4459
|
+
/** @deprecated use `GetDeploymentRoutesAction$outboundSchema` instead. */
|
|
4460
|
+
GetDeploymentRoutesAction$.outboundSchema = GetDeploymentRoutesAction$outboundSchema;
|
|
4461
|
+
})(GetDeploymentRoutesAction$ || (GetDeploymentRoutesAction$ = {}));
|
|
4462
|
+
/** @internal */
|
|
4463
|
+
export const GetDeploymentRoutesMitigate$inboundSchema = z.object({
|
|
4464
|
+
action: GetDeploymentRoutesAction$inboundSchema,
|
|
4465
|
+
});
|
|
4466
|
+
/** @internal */
|
|
4467
|
+
export const GetDeploymentRoutesMitigate$outboundSchema = z.object({
|
|
4468
|
+
action: GetDeploymentRoutesAction$outboundSchema,
|
|
4469
|
+
});
|
|
4470
|
+
/**
|
|
4471
|
+
* @internal
|
|
4472
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4473
|
+
*/
|
|
4474
|
+
export var GetDeploymentRoutesMitigate$;
|
|
4475
|
+
(function (GetDeploymentRoutesMitigate$) {
|
|
4476
|
+
/** @deprecated use `GetDeploymentRoutesMitigate$inboundSchema` instead. */
|
|
4477
|
+
GetDeploymentRoutesMitigate$.inboundSchema = GetDeploymentRoutesMitigate$inboundSchema;
|
|
4478
|
+
/** @deprecated use `GetDeploymentRoutesMitigate$outboundSchema` instead. */
|
|
4479
|
+
GetDeploymentRoutesMitigate$.outboundSchema = GetDeploymentRoutesMitigate$outboundSchema;
|
|
4480
|
+
})(GetDeploymentRoutesMitigate$ || (GetDeploymentRoutesMitigate$ = {}));
|
|
4481
|
+
export function getDeploymentRoutesMitigateToJSON(getDeploymentRoutesMitigate) {
|
|
4482
|
+
return JSON.stringify(GetDeploymentRoutesMitigate$outboundSchema.parse(getDeploymentRoutesMitigate));
|
|
4483
|
+
}
|
|
4484
|
+
export function getDeploymentRoutesMitigateFromJSON(jsonString) {
|
|
4485
|
+
return safeParse(jsonString, (x) => GetDeploymentRoutesMitigate$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentRoutesMitigate' from JSON`);
|
|
4486
|
+
}
|
|
4487
|
+
/** @internal */
|
|
4057
4488
|
export const GetDeploymentRoutesLocale$inboundSchema = z.object({
|
|
4058
4489
|
redirect: z.record(z.string()).optional(),
|
|
4059
4490
|
cookie: z.string().optional(),
|
|
@@ -4100,6 +4531,7 @@ export const GetDeploymentRoutes1$inboundSchema = z.object({
|
|
|
4100
4531
|
z.lazy(() => GetDeploymentMissing1$inboundSchema),
|
|
4101
4532
|
z.lazy(() => GetDeploymentMissing2$inboundSchema),
|
|
4102
4533
|
])).optional(),
|
|
4534
|
+
mitigate: z.lazy(() => GetDeploymentRoutesMitigate$inboundSchema).optional(),
|
|
4103
4535
|
locale: z.lazy(() => GetDeploymentRoutesLocale$inboundSchema).optional(),
|
|
4104
4536
|
middlewarePath: z.string().optional(),
|
|
4105
4537
|
middlewareRawSrc: z.array(z.string()).optional(),
|
|
@@ -4125,6 +4557,7 @@ export const GetDeploymentRoutes1$outboundSchema = z.object({
|
|
|
4125
4557
|
z.lazy(() => GetDeploymentMissing1$outboundSchema),
|
|
4126
4558
|
z.lazy(() => GetDeploymentMissing2$outboundSchema),
|
|
4127
4559
|
])).optional(),
|
|
4560
|
+
mitigate: z.lazy(() => GetDeploymentRoutesMitigate$outboundSchema).optional(),
|
|
4128
4561
|
locale: z.lazy(() => GetDeploymentRoutesLocale$outboundSchema).optional(),
|
|
4129
4562
|
middlewarePath: z.string().optional(),
|
|
4130
4563
|
middlewareRawSrc: z.array(z.string()).optional(),
|
|
@@ -4558,12 +4991,14 @@ export function responseBodyFlagsFromJSON(jsonString) {
|
|
|
4558
4991
|
}
|
|
4559
4992
|
/** @internal */
|
|
4560
4993
|
export const GetDeploymentMicrofrontendsApplications$inboundSchema = z.object({
|
|
4994
|
+
isDefaultApp: z.boolean().optional(),
|
|
4561
4995
|
productionHost: z.string(),
|
|
4562
4996
|
deploymentAlias: z.string().optional(),
|
|
4563
4997
|
deploymentHost: z.string().optional(),
|
|
4564
4998
|
});
|
|
4565
4999
|
/** @internal */
|
|
4566
5000
|
export const GetDeploymentMicrofrontendsApplications$outboundSchema = z.object({
|
|
5001
|
+
isDefaultApp: z.boolean().optional(),
|
|
4567
5002
|
productionHost: z.string(),
|
|
4568
5003
|
deploymentAlias: z.string().optional(),
|
|
4569
5004
|
deploymentHost: z.string().optional(),
|