@vercel/sdk 1.8.4 → 1.8.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/bin/mcp-server.js +1009 -313
- package/bin/mcp-server.js.map +13 -13
- package/esm/__tests__/projects.test.js +15 -13
- package/esm/__tests__/projects.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 +408 -8
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +446 -8
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +408 -8
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +448 -8
- 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 +137 -137
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +135 -135
- package/esm/models/createprojectop.js.map +1 -1
- 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 +408 -8
- package/esm/models/getdeploymentop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.js +441 -8
- package/esm/models/getdeploymentop.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/updateprojectop.d.ts +137 -137
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +135 -135
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/types/constdatetime.js +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/projects.test.ts +15 -13
- 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 +1039 -16
- package/src/models/createdeploymentop.ts +957 -16
- package/src/models/createprojectenvop.ts +2 -2
- package/src/models/createprojectop.ts +263 -263
- package/src/models/editprojectenvop.ts +1 -1
- package/src/models/getdeploymentop.ts +1007 -16
- package/src/models/removeprojectenvop.ts +3 -3
- package/src/models/updateprojectop.ts +263 -263
- package/src/types/constdatetime.ts +1 -1
- package/vercel-spec.json +1328 -623
|
@@ -982,18 +982,48 @@ export declare const CreateDeploymentHasType: {
|
|
|
982
982
|
readonly Query: "query";
|
|
983
983
|
};
|
|
984
984
|
export type CreateDeploymentHasType = ClosedEnum<typeof CreateDeploymentHasType>;
|
|
985
|
+
export type ValueEq = string | number;
|
|
986
|
+
export type CreateDeploymentValueDeployments2 = {
|
|
987
|
+
eq?: string | number | undefined;
|
|
988
|
+
neq?: string | undefined;
|
|
989
|
+
inc?: Array<string> | undefined;
|
|
990
|
+
ninc?: Array<string> | undefined;
|
|
991
|
+
pre?: string | undefined;
|
|
992
|
+
suf?: string | undefined;
|
|
993
|
+
re?: string | undefined;
|
|
994
|
+
gt?: number | undefined;
|
|
995
|
+
gte?: number | undefined;
|
|
996
|
+
lt?: number | undefined;
|
|
997
|
+
lte?: number | undefined;
|
|
998
|
+
};
|
|
999
|
+
export type CreateDeploymentHasValue = CreateDeploymentValueDeployments2 | string;
|
|
985
1000
|
export type Has2 = {
|
|
986
1001
|
type: CreateDeploymentHasType;
|
|
987
1002
|
key: string;
|
|
988
|
-
value?: string | undefined;
|
|
1003
|
+
value?: CreateDeploymentValueDeployments2 | string | undefined;
|
|
989
1004
|
};
|
|
990
1005
|
export declare const HasType: {
|
|
991
1006
|
readonly Host: "host";
|
|
992
1007
|
};
|
|
993
1008
|
export type HasType = ClosedEnum<typeof HasType>;
|
|
1009
|
+
export type Eq = string | number;
|
|
1010
|
+
export type CreateDeploymentValue2 = {
|
|
1011
|
+
eq?: string | number | undefined;
|
|
1012
|
+
neq?: string | undefined;
|
|
1013
|
+
inc?: Array<string> | undefined;
|
|
1014
|
+
ninc?: Array<string> | undefined;
|
|
1015
|
+
pre?: string | undefined;
|
|
1016
|
+
suf?: string | undefined;
|
|
1017
|
+
re?: string | undefined;
|
|
1018
|
+
gt?: number | undefined;
|
|
1019
|
+
gte?: number | undefined;
|
|
1020
|
+
lt?: number | undefined;
|
|
1021
|
+
lte?: number | undefined;
|
|
1022
|
+
};
|
|
1023
|
+
export type HasValue = CreateDeploymentValue2 | string;
|
|
994
1024
|
export type Has1 = {
|
|
995
1025
|
type: HasType;
|
|
996
|
-
value: string;
|
|
1026
|
+
value: CreateDeploymentValue2 | string;
|
|
997
1027
|
};
|
|
998
1028
|
export type RoutesHas = Has1 | Has2;
|
|
999
1029
|
export declare const CreateDeploymentMissingType: {
|
|
@@ -1002,20 +1032,58 @@ export declare const CreateDeploymentMissingType: {
|
|
|
1002
1032
|
readonly Query: "query";
|
|
1003
1033
|
};
|
|
1004
1034
|
export type CreateDeploymentMissingType = ClosedEnum<typeof CreateDeploymentMissingType>;
|
|
1035
|
+
export type CreateDeploymentValueDeploymentsEq = string | number;
|
|
1036
|
+
export type CreateDeploymentValueDeploymentsResponse2002 = {
|
|
1037
|
+
eq?: string | number | undefined;
|
|
1038
|
+
neq?: string | undefined;
|
|
1039
|
+
inc?: Array<string> | undefined;
|
|
1040
|
+
ninc?: Array<string> | undefined;
|
|
1041
|
+
pre?: string | undefined;
|
|
1042
|
+
suf?: string | undefined;
|
|
1043
|
+
re?: string | undefined;
|
|
1044
|
+
gt?: number | undefined;
|
|
1045
|
+
gte?: number | undefined;
|
|
1046
|
+
lt?: number | undefined;
|
|
1047
|
+
lte?: number | undefined;
|
|
1048
|
+
};
|
|
1049
|
+
export type CreateDeploymentMissingValue = CreateDeploymentValueDeploymentsResponse2002 | string;
|
|
1005
1050
|
export type Missing2 = {
|
|
1006
1051
|
type: CreateDeploymentMissingType;
|
|
1007
1052
|
key: string;
|
|
1008
|
-
value?: string | undefined;
|
|
1053
|
+
value?: CreateDeploymentValueDeploymentsResponse2002 | string | undefined;
|
|
1009
1054
|
};
|
|
1010
1055
|
export declare const MissingType: {
|
|
1011
1056
|
readonly Host: "host";
|
|
1012
1057
|
};
|
|
1013
1058
|
export type MissingType = ClosedEnum<typeof MissingType>;
|
|
1059
|
+
export type CreateDeploymentValueEq = string | number;
|
|
1060
|
+
export type CreateDeploymentValueDeploymentsResponse2 = {
|
|
1061
|
+
eq?: string | number | undefined;
|
|
1062
|
+
neq?: string | undefined;
|
|
1063
|
+
inc?: Array<string> | undefined;
|
|
1064
|
+
ninc?: Array<string> | undefined;
|
|
1065
|
+
pre?: string | undefined;
|
|
1066
|
+
suf?: string | undefined;
|
|
1067
|
+
re?: string | undefined;
|
|
1068
|
+
gt?: number | undefined;
|
|
1069
|
+
gte?: number | undefined;
|
|
1070
|
+
lt?: number | undefined;
|
|
1071
|
+
lte?: number | undefined;
|
|
1072
|
+
};
|
|
1073
|
+
export type MissingValue = CreateDeploymentValueDeploymentsResponse2 | string;
|
|
1014
1074
|
export type Missing1 = {
|
|
1015
1075
|
type: MissingType;
|
|
1016
|
-
value: string;
|
|
1076
|
+
value: CreateDeploymentValueDeploymentsResponse2 | string;
|
|
1017
1077
|
};
|
|
1018
1078
|
export type RoutesMissing = Missing1 | Missing2;
|
|
1079
|
+
export declare const RoutesAction: {
|
|
1080
|
+
readonly Challenge: "challenge";
|
|
1081
|
+
readonly Deny: "deny";
|
|
1082
|
+
};
|
|
1083
|
+
export type RoutesAction = ClosedEnum<typeof RoutesAction>;
|
|
1084
|
+
export type RoutesMitigate = {
|
|
1085
|
+
action: RoutesAction;
|
|
1086
|
+
};
|
|
1019
1087
|
export type Locale = {
|
|
1020
1088
|
redirect?: {
|
|
1021
1089
|
[k: string]: string;
|
|
@@ -1037,6 +1105,7 @@ export type Routes1 = {
|
|
|
1037
1105
|
status?: number | undefined;
|
|
1038
1106
|
has?: Array<Has1 | Has2> | undefined;
|
|
1039
1107
|
missing?: Array<Missing1 | Missing2> | undefined;
|
|
1108
|
+
mitigate?: RoutesMitigate | undefined;
|
|
1040
1109
|
locale?: Locale | undefined;
|
|
1041
1110
|
/**
|
|
1042
1111
|
* A middleware key within the `output` key under the build result. Overrides a `middleware` definition.
|
|
@@ -3977,12 +4046,84 @@ export declare namespace CreateDeploymentHasType$ {
|
|
|
3977
4046
|
}>;
|
|
3978
4047
|
}
|
|
3979
4048
|
/** @internal */
|
|
4049
|
+
export declare const ValueEq$inboundSchema: z.ZodType<ValueEq, z.ZodTypeDef, unknown>;
|
|
4050
|
+
/** @internal */
|
|
4051
|
+
export type ValueEq$Outbound = string | number;
|
|
4052
|
+
/** @internal */
|
|
4053
|
+
export declare const ValueEq$outboundSchema: z.ZodType<ValueEq$Outbound, z.ZodTypeDef, ValueEq>;
|
|
4054
|
+
/**
|
|
4055
|
+
* @internal
|
|
4056
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4057
|
+
*/
|
|
4058
|
+
export declare namespace ValueEq$ {
|
|
4059
|
+
/** @deprecated use `ValueEq$inboundSchema` instead. */
|
|
4060
|
+
const inboundSchema: z.ZodType<ValueEq, z.ZodTypeDef, unknown>;
|
|
4061
|
+
/** @deprecated use `ValueEq$outboundSchema` instead. */
|
|
4062
|
+
const outboundSchema: z.ZodType<ValueEq$Outbound, z.ZodTypeDef, ValueEq>;
|
|
4063
|
+
/** @deprecated use `ValueEq$Outbound` instead. */
|
|
4064
|
+
type Outbound = ValueEq$Outbound;
|
|
4065
|
+
}
|
|
4066
|
+
export declare function valueEqToJSON(valueEq: ValueEq): string;
|
|
4067
|
+
export declare function valueEqFromJSON(jsonString: string): SafeParseResult<ValueEq, SDKValidationError>;
|
|
4068
|
+
/** @internal */
|
|
4069
|
+
export declare const CreateDeploymentValueDeployments2$inboundSchema: z.ZodType<CreateDeploymentValueDeployments2, z.ZodTypeDef, unknown>;
|
|
4070
|
+
/** @internal */
|
|
4071
|
+
export type CreateDeploymentValueDeployments2$Outbound = {
|
|
4072
|
+
eq?: string | number | undefined;
|
|
4073
|
+
neq?: string | undefined;
|
|
4074
|
+
inc?: Array<string> | undefined;
|
|
4075
|
+
ninc?: Array<string> | undefined;
|
|
4076
|
+
pre?: string | undefined;
|
|
4077
|
+
suf?: string | undefined;
|
|
4078
|
+
re?: string | undefined;
|
|
4079
|
+
gt?: number | undefined;
|
|
4080
|
+
gte?: number | undefined;
|
|
4081
|
+
lt?: number | undefined;
|
|
4082
|
+
lte?: number | undefined;
|
|
4083
|
+
};
|
|
4084
|
+
/** @internal */
|
|
4085
|
+
export declare const CreateDeploymentValueDeployments2$outboundSchema: z.ZodType<CreateDeploymentValueDeployments2$Outbound, z.ZodTypeDef, CreateDeploymentValueDeployments2>;
|
|
4086
|
+
/**
|
|
4087
|
+
* @internal
|
|
4088
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4089
|
+
*/
|
|
4090
|
+
export declare namespace CreateDeploymentValueDeployments2$ {
|
|
4091
|
+
/** @deprecated use `CreateDeploymentValueDeployments2$inboundSchema` instead. */
|
|
4092
|
+
const inboundSchema: z.ZodType<CreateDeploymentValueDeployments2, z.ZodTypeDef, unknown>;
|
|
4093
|
+
/** @deprecated use `CreateDeploymentValueDeployments2$outboundSchema` instead. */
|
|
4094
|
+
const outboundSchema: z.ZodType<CreateDeploymentValueDeployments2$Outbound, z.ZodTypeDef, CreateDeploymentValueDeployments2>;
|
|
4095
|
+
/** @deprecated use `CreateDeploymentValueDeployments2$Outbound` instead. */
|
|
4096
|
+
type Outbound = CreateDeploymentValueDeployments2$Outbound;
|
|
4097
|
+
}
|
|
4098
|
+
export declare function createDeploymentValueDeployments2ToJSON(createDeploymentValueDeployments2: CreateDeploymentValueDeployments2): string;
|
|
4099
|
+
export declare function createDeploymentValueDeployments2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeployments2, SDKValidationError>;
|
|
4100
|
+
/** @internal */
|
|
4101
|
+
export declare const CreateDeploymentHasValue$inboundSchema: z.ZodType<CreateDeploymentHasValue, z.ZodTypeDef, unknown>;
|
|
4102
|
+
/** @internal */
|
|
4103
|
+
export type CreateDeploymentHasValue$Outbound = CreateDeploymentValueDeployments2$Outbound | string;
|
|
4104
|
+
/** @internal */
|
|
4105
|
+
export declare const CreateDeploymentHasValue$outboundSchema: z.ZodType<CreateDeploymentHasValue$Outbound, z.ZodTypeDef, CreateDeploymentHasValue>;
|
|
4106
|
+
/**
|
|
4107
|
+
* @internal
|
|
4108
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4109
|
+
*/
|
|
4110
|
+
export declare namespace CreateDeploymentHasValue$ {
|
|
4111
|
+
/** @deprecated use `CreateDeploymentHasValue$inboundSchema` instead. */
|
|
4112
|
+
const inboundSchema: z.ZodType<CreateDeploymentHasValue, z.ZodTypeDef, unknown>;
|
|
4113
|
+
/** @deprecated use `CreateDeploymentHasValue$outboundSchema` instead. */
|
|
4114
|
+
const outboundSchema: z.ZodType<CreateDeploymentHasValue$Outbound, z.ZodTypeDef, CreateDeploymentHasValue>;
|
|
4115
|
+
/** @deprecated use `CreateDeploymentHasValue$Outbound` instead. */
|
|
4116
|
+
type Outbound = CreateDeploymentHasValue$Outbound;
|
|
4117
|
+
}
|
|
4118
|
+
export declare function createDeploymentHasValueToJSON(createDeploymentHasValue: CreateDeploymentHasValue): string;
|
|
4119
|
+
export declare function createDeploymentHasValueFromJSON(jsonString: string): SafeParseResult<CreateDeploymentHasValue, SDKValidationError>;
|
|
4120
|
+
/** @internal */
|
|
3980
4121
|
export declare const Has2$inboundSchema: z.ZodType<Has2, z.ZodTypeDef, unknown>;
|
|
3981
4122
|
/** @internal */
|
|
3982
4123
|
export type Has2$Outbound = {
|
|
3983
4124
|
type: string;
|
|
3984
4125
|
key: string;
|
|
3985
|
-
value?: string | undefined;
|
|
4126
|
+
value?: CreateDeploymentValueDeployments2$Outbound | string | undefined;
|
|
3986
4127
|
};
|
|
3987
4128
|
/** @internal */
|
|
3988
4129
|
export declare const Has2$outboundSchema: z.ZodType<Has2$Outbound, z.ZodTypeDef, Has2>;
|
|
@@ -4019,11 +4160,83 @@ export declare namespace HasType$ {
|
|
|
4019
4160
|
}>;
|
|
4020
4161
|
}
|
|
4021
4162
|
/** @internal */
|
|
4163
|
+
export declare const Eq$inboundSchema: z.ZodType<Eq, z.ZodTypeDef, unknown>;
|
|
4164
|
+
/** @internal */
|
|
4165
|
+
export type Eq$Outbound = string | number;
|
|
4166
|
+
/** @internal */
|
|
4167
|
+
export declare const Eq$outboundSchema: z.ZodType<Eq$Outbound, z.ZodTypeDef, Eq>;
|
|
4168
|
+
/**
|
|
4169
|
+
* @internal
|
|
4170
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4171
|
+
*/
|
|
4172
|
+
export declare namespace Eq$ {
|
|
4173
|
+
/** @deprecated use `Eq$inboundSchema` instead. */
|
|
4174
|
+
const inboundSchema: z.ZodType<Eq, z.ZodTypeDef, unknown>;
|
|
4175
|
+
/** @deprecated use `Eq$outboundSchema` instead. */
|
|
4176
|
+
const outboundSchema: z.ZodType<Eq$Outbound, z.ZodTypeDef, Eq>;
|
|
4177
|
+
/** @deprecated use `Eq$Outbound` instead. */
|
|
4178
|
+
type Outbound = Eq$Outbound;
|
|
4179
|
+
}
|
|
4180
|
+
export declare function eqToJSON(eq: Eq): string;
|
|
4181
|
+
export declare function eqFromJSON(jsonString: string): SafeParseResult<Eq, SDKValidationError>;
|
|
4182
|
+
/** @internal */
|
|
4183
|
+
export declare const CreateDeploymentValue2$inboundSchema: z.ZodType<CreateDeploymentValue2, z.ZodTypeDef, unknown>;
|
|
4184
|
+
/** @internal */
|
|
4185
|
+
export type CreateDeploymentValue2$Outbound = {
|
|
4186
|
+
eq?: string | number | undefined;
|
|
4187
|
+
neq?: string | undefined;
|
|
4188
|
+
inc?: Array<string> | undefined;
|
|
4189
|
+
ninc?: Array<string> | undefined;
|
|
4190
|
+
pre?: string | undefined;
|
|
4191
|
+
suf?: string | undefined;
|
|
4192
|
+
re?: string | undefined;
|
|
4193
|
+
gt?: number | undefined;
|
|
4194
|
+
gte?: number | undefined;
|
|
4195
|
+
lt?: number | undefined;
|
|
4196
|
+
lte?: number | undefined;
|
|
4197
|
+
};
|
|
4198
|
+
/** @internal */
|
|
4199
|
+
export declare const CreateDeploymentValue2$outboundSchema: z.ZodType<CreateDeploymentValue2$Outbound, z.ZodTypeDef, CreateDeploymentValue2>;
|
|
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 declare namespace CreateDeploymentValue2$ {
|
|
4205
|
+
/** @deprecated use `CreateDeploymentValue2$inboundSchema` instead. */
|
|
4206
|
+
const inboundSchema: z.ZodType<CreateDeploymentValue2, z.ZodTypeDef, unknown>;
|
|
4207
|
+
/** @deprecated use `CreateDeploymentValue2$outboundSchema` instead. */
|
|
4208
|
+
const outboundSchema: z.ZodType<CreateDeploymentValue2$Outbound, z.ZodTypeDef, CreateDeploymentValue2>;
|
|
4209
|
+
/** @deprecated use `CreateDeploymentValue2$Outbound` instead. */
|
|
4210
|
+
type Outbound = CreateDeploymentValue2$Outbound;
|
|
4211
|
+
}
|
|
4212
|
+
export declare function createDeploymentValue2ToJSON(createDeploymentValue2: CreateDeploymentValue2): string;
|
|
4213
|
+
export declare function createDeploymentValue2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValue2, SDKValidationError>;
|
|
4214
|
+
/** @internal */
|
|
4215
|
+
export declare const HasValue$inboundSchema: z.ZodType<HasValue, z.ZodTypeDef, unknown>;
|
|
4216
|
+
/** @internal */
|
|
4217
|
+
export type HasValue$Outbound = CreateDeploymentValue2$Outbound | string;
|
|
4218
|
+
/** @internal */
|
|
4219
|
+
export declare const HasValue$outboundSchema: z.ZodType<HasValue$Outbound, z.ZodTypeDef, HasValue>;
|
|
4220
|
+
/**
|
|
4221
|
+
* @internal
|
|
4222
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4223
|
+
*/
|
|
4224
|
+
export declare namespace HasValue$ {
|
|
4225
|
+
/** @deprecated use `HasValue$inboundSchema` instead. */
|
|
4226
|
+
const inboundSchema: z.ZodType<HasValue, z.ZodTypeDef, unknown>;
|
|
4227
|
+
/** @deprecated use `HasValue$outboundSchema` instead. */
|
|
4228
|
+
const outboundSchema: z.ZodType<HasValue$Outbound, z.ZodTypeDef, HasValue>;
|
|
4229
|
+
/** @deprecated use `HasValue$Outbound` instead. */
|
|
4230
|
+
type Outbound = HasValue$Outbound;
|
|
4231
|
+
}
|
|
4232
|
+
export declare function hasValueToJSON(hasValue: HasValue): string;
|
|
4233
|
+
export declare function hasValueFromJSON(jsonString: string): SafeParseResult<HasValue, SDKValidationError>;
|
|
4234
|
+
/** @internal */
|
|
4022
4235
|
export declare const Has1$inboundSchema: z.ZodType<Has1, z.ZodTypeDef, unknown>;
|
|
4023
4236
|
/** @internal */
|
|
4024
4237
|
export type Has1$Outbound = {
|
|
4025
4238
|
type: string;
|
|
4026
|
-
value: string;
|
|
4239
|
+
value: CreateDeploymentValue2$Outbound | string;
|
|
4027
4240
|
};
|
|
4028
4241
|
/** @internal */
|
|
4029
4242
|
export declare const Has1$outboundSchema: z.ZodType<Has1$Outbound, z.ZodTypeDef, Has1>;
|
|
@@ -4084,12 +4297,84 @@ export declare namespace CreateDeploymentMissingType$ {
|
|
|
4084
4297
|
}>;
|
|
4085
4298
|
}
|
|
4086
4299
|
/** @internal */
|
|
4300
|
+
export declare const CreateDeploymentValueDeploymentsEq$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsEq, z.ZodTypeDef, unknown>;
|
|
4301
|
+
/** @internal */
|
|
4302
|
+
export type CreateDeploymentValueDeploymentsEq$Outbound = string | number;
|
|
4303
|
+
/** @internal */
|
|
4304
|
+
export declare const CreateDeploymentValueDeploymentsEq$outboundSchema: z.ZodType<CreateDeploymentValueDeploymentsEq$Outbound, z.ZodTypeDef, CreateDeploymentValueDeploymentsEq>;
|
|
4305
|
+
/**
|
|
4306
|
+
* @internal
|
|
4307
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4308
|
+
*/
|
|
4309
|
+
export declare namespace CreateDeploymentValueDeploymentsEq$ {
|
|
4310
|
+
/** @deprecated use `CreateDeploymentValueDeploymentsEq$inboundSchema` instead. */
|
|
4311
|
+
const inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsEq, z.ZodTypeDef, unknown>;
|
|
4312
|
+
/** @deprecated use `CreateDeploymentValueDeploymentsEq$outboundSchema` instead. */
|
|
4313
|
+
const outboundSchema: z.ZodType<CreateDeploymentValueDeploymentsEq$Outbound, z.ZodTypeDef, CreateDeploymentValueDeploymentsEq>;
|
|
4314
|
+
/** @deprecated use `CreateDeploymentValueDeploymentsEq$Outbound` instead. */
|
|
4315
|
+
type Outbound = CreateDeploymentValueDeploymentsEq$Outbound;
|
|
4316
|
+
}
|
|
4317
|
+
export declare function createDeploymentValueDeploymentsEqToJSON(createDeploymentValueDeploymentsEq: CreateDeploymentValueDeploymentsEq): string;
|
|
4318
|
+
export declare function createDeploymentValueDeploymentsEqFromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsEq, SDKValidationError>;
|
|
4319
|
+
/** @internal */
|
|
4320
|
+
export declare const CreateDeploymentValueDeploymentsResponse2002$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2002, z.ZodTypeDef, unknown>;
|
|
4321
|
+
/** @internal */
|
|
4322
|
+
export type CreateDeploymentValueDeploymentsResponse2002$Outbound = {
|
|
4323
|
+
eq?: string | number | undefined;
|
|
4324
|
+
neq?: string | undefined;
|
|
4325
|
+
inc?: Array<string> | undefined;
|
|
4326
|
+
ninc?: Array<string> | undefined;
|
|
4327
|
+
pre?: string | undefined;
|
|
4328
|
+
suf?: string | undefined;
|
|
4329
|
+
re?: string | undefined;
|
|
4330
|
+
gt?: number | undefined;
|
|
4331
|
+
gte?: number | undefined;
|
|
4332
|
+
lt?: number | undefined;
|
|
4333
|
+
lte?: number | undefined;
|
|
4334
|
+
};
|
|
4335
|
+
/** @internal */
|
|
4336
|
+
export declare const CreateDeploymentValueDeploymentsResponse2002$outboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2002$Outbound, z.ZodTypeDef, CreateDeploymentValueDeploymentsResponse2002>;
|
|
4337
|
+
/**
|
|
4338
|
+
* @internal
|
|
4339
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4340
|
+
*/
|
|
4341
|
+
export declare namespace CreateDeploymentValueDeploymentsResponse2002$ {
|
|
4342
|
+
/** @deprecated use `CreateDeploymentValueDeploymentsResponse2002$inboundSchema` instead. */
|
|
4343
|
+
const inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2002, z.ZodTypeDef, unknown>;
|
|
4344
|
+
/** @deprecated use `CreateDeploymentValueDeploymentsResponse2002$outboundSchema` instead. */
|
|
4345
|
+
const outboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2002$Outbound, z.ZodTypeDef, CreateDeploymentValueDeploymentsResponse2002>;
|
|
4346
|
+
/** @deprecated use `CreateDeploymentValueDeploymentsResponse2002$Outbound` instead. */
|
|
4347
|
+
type Outbound = CreateDeploymentValueDeploymentsResponse2002$Outbound;
|
|
4348
|
+
}
|
|
4349
|
+
export declare function createDeploymentValueDeploymentsResponse2002ToJSON(createDeploymentValueDeploymentsResponse2002: CreateDeploymentValueDeploymentsResponse2002): string;
|
|
4350
|
+
export declare function createDeploymentValueDeploymentsResponse2002FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse2002, SDKValidationError>;
|
|
4351
|
+
/** @internal */
|
|
4352
|
+
export declare const CreateDeploymentMissingValue$inboundSchema: z.ZodType<CreateDeploymentMissingValue, z.ZodTypeDef, unknown>;
|
|
4353
|
+
/** @internal */
|
|
4354
|
+
export type CreateDeploymentMissingValue$Outbound = CreateDeploymentValueDeploymentsResponse2002$Outbound | string;
|
|
4355
|
+
/** @internal */
|
|
4356
|
+
export declare const CreateDeploymentMissingValue$outboundSchema: z.ZodType<CreateDeploymentMissingValue$Outbound, z.ZodTypeDef, CreateDeploymentMissingValue>;
|
|
4357
|
+
/**
|
|
4358
|
+
* @internal
|
|
4359
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4360
|
+
*/
|
|
4361
|
+
export declare namespace CreateDeploymentMissingValue$ {
|
|
4362
|
+
/** @deprecated use `CreateDeploymentMissingValue$inboundSchema` instead. */
|
|
4363
|
+
const inboundSchema: z.ZodType<CreateDeploymentMissingValue, z.ZodTypeDef, unknown>;
|
|
4364
|
+
/** @deprecated use `CreateDeploymentMissingValue$outboundSchema` instead. */
|
|
4365
|
+
const outboundSchema: z.ZodType<CreateDeploymentMissingValue$Outbound, z.ZodTypeDef, CreateDeploymentMissingValue>;
|
|
4366
|
+
/** @deprecated use `CreateDeploymentMissingValue$Outbound` instead. */
|
|
4367
|
+
type Outbound = CreateDeploymentMissingValue$Outbound;
|
|
4368
|
+
}
|
|
4369
|
+
export declare function createDeploymentMissingValueToJSON(createDeploymentMissingValue: CreateDeploymentMissingValue): string;
|
|
4370
|
+
export declare function createDeploymentMissingValueFromJSON(jsonString: string): SafeParseResult<CreateDeploymentMissingValue, SDKValidationError>;
|
|
4371
|
+
/** @internal */
|
|
4087
4372
|
export declare const Missing2$inboundSchema: z.ZodType<Missing2, z.ZodTypeDef, unknown>;
|
|
4088
4373
|
/** @internal */
|
|
4089
4374
|
export type Missing2$Outbound = {
|
|
4090
4375
|
type: string;
|
|
4091
4376
|
key: string;
|
|
4092
|
-
value?: string | undefined;
|
|
4377
|
+
value?: CreateDeploymentValueDeploymentsResponse2002$Outbound | string | undefined;
|
|
4093
4378
|
};
|
|
4094
4379
|
/** @internal */
|
|
4095
4380
|
export declare const Missing2$outboundSchema: z.ZodType<Missing2$Outbound, z.ZodTypeDef, Missing2>;
|
|
@@ -4126,11 +4411,83 @@ export declare namespace MissingType$ {
|
|
|
4126
4411
|
}>;
|
|
4127
4412
|
}
|
|
4128
4413
|
/** @internal */
|
|
4414
|
+
export declare const CreateDeploymentValueEq$inboundSchema: z.ZodType<CreateDeploymentValueEq, z.ZodTypeDef, unknown>;
|
|
4415
|
+
/** @internal */
|
|
4416
|
+
export type CreateDeploymentValueEq$Outbound = string | number;
|
|
4417
|
+
/** @internal */
|
|
4418
|
+
export declare const CreateDeploymentValueEq$outboundSchema: z.ZodType<CreateDeploymentValueEq$Outbound, z.ZodTypeDef, CreateDeploymentValueEq>;
|
|
4419
|
+
/**
|
|
4420
|
+
* @internal
|
|
4421
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4422
|
+
*/
|
|
4423
|
+
export declare namespace CreateDeploymentValueEq$ {
|
|
4424
|
+
/** @deprecated use `CreateDeploymentValueEq$inboundSchema` instead. */
|
|
4425
|
+
const inboundSchema: z.ZodType<CreateDeploymentValueEq, z.ZodTypeDef, unknown>;
|
|
4426
|
+
/** @deprecated use `CreateDeploymentValueEq$outboundSchema` instead. */
|
|
4427
|
+
const outboundSchema: z.ZodType<CreateDeploymentValueEq$Outbound, z.ZodTypeDef, CreateDeploymentValueEq>;
|
|
4428
|
+
/** @deprecated use `CreateDeploymentValueEq$Outbound` instead. */
|
|
4429
|
+
type Outbound = CreateDeploymentValueEq$Outbound;
|
|
4430
|
+
}
|
|
4431
|
+
export declare function createDeploymentValueEqToJSON(createDeploymentValueEq: CreateDeploymentValueEq): string;
|
|
4432
|
+
export declare function createDeploymentValueEqFromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueEq, SDKValidationError>;
|
|
4433
|
+
/** @internal */
|
|
4434
|
+
export declare const CreateDeploymentValueDeploymentsResponse2$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2, z.ZodTypeDef, unknown>;
|
|
4435
|
+
/** @internal */
|
|
4436
|
+
export type CreateDeploymentValueDeploymentsResponse2$Outbound = {
|
|
4437
|
+
eq?: string | number | undefined;
|
|
4438
|
+
neq?: string | undefined;
|
|
4439
|
+
inc?: Array<string> | undefined;
|
|
4440
|
+
ninc?: Array<string> | undefined;
|
|
4441
|
+
pre?: string | undefined;
|
|
4442
|
+
suf?: string | undefined;
|
|
4443
|
+
re?: string | undefined;
|
|
4444
|
+
gt?: number | undefined;
|
|
4445
|
+
gte?: number | undefined;
|
|
4446
|
+
lt?: number | undefined;
|
|
4447
|
+
lte?: number | undefined;
|
|
4448
|
+
};
|
|
4449
|
+
/** @internal */
|
|
4450
|
+
export declare const CreateDeploymentValueDeploymentsResponse2$outboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2$Outbound, z.ZodTypeDef, CreateDeploymentValueDeploymentsResponse2>;
|
|
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 declare namespace CreateDeploymentValueDeploymentsResponse2$ {
|
|
4456
|
+
/** @deprecated use `CreateDeploymentValueDeploymentsResponse2$inboundSchema` instead. */
|
|
4457
|
+
const inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2, z.ZodTypeDef, unknown>;
|
|
4458
|
+
/** @deprecated use `CreateDeploymentValueDeploymentsResponse2$outboundSchema` instead. */
|
|
4459
|
+
const outboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2$Outbound, z.ZodTypeDef, CreateDeploymentValueDeploymentsResponse2>;
|
|
4460
|
+
/** @deprecated use `CreateDeploymentValueDeploymentsResponse2$Outbound` instead. */
|
|
4461
|
+
type Outbound = CreateDeploymentValueDeploymentsResponse2$Outbound;
|
|
4462
|
+
}
|
|
4463
|
+
export declare function createDeploymentValueDeploymentsResponse2ToJSON(createDeploymentValueDeploymentsResponse2: CreateDeploymentValueDeploymentsResponse2): string;
|
|
4464
|
+
export declare function createDeploymentValueDeploymentsResponse2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse2, SDKValidationError>;
|
|
4465
|
+
/** @internal */
|
|
4466
|
+
export declare const MissingValue$inboundSchema: z.ZodType<MissingValue, z.ZodTypeDef, unknown>;
|
|
4467
|
+
/** @internal */
|
|
4468
|
+
export type MissingValue$Outbound = CreateDeploymentValueDeploymentsResponse2$Outbound | string;
|
|
4469
|
+
/** @internal */
|
|
4470
|
+
export declare const MissingValue$outboundSchema: z.ZodType<MissingValue$Outbound, z.ZodTypeDef, MissingValue>;
|
|
4471
|
+
/**
|
|
4472
|
+
* @internal
|
|
4473
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4474
|
+
*/
|
|
4475
|
+
export declare namespace MissingValue$ {
|
|
4476
|
+
/** @deprecated use `MissingValue$inboundSchema` instead. */
|
|
4477
|
+
const inboundSchema: z.ZodType<MissingValue, z.ZodTypeDef, unknown>;
|
|
4478
|
+
/** @deprecated use `MissingValue$outboundSchema` instead. */
|
|
4479
|
+
const outboundSchema: z.ZodType<MissingValue$Outbound, z.ZodTypeDef, MissingValue>;
|
|
4480
|
+
/** @deprecated use `MissingValue$Outbound` instead. */
|
|
4481
|
+
type Outbound = MissingValue$Outbound;
|
|
4482
|
+
}
|
|
4483
|
+
export declare function missingValueToJSON(missingValue: MissingValue): string;
|
|
4484
|
+
export declare function missingValueFromJSON(jsonString: string): SafeParseResult<MissingValue, SDKValidationError>;
|
|
4485
|
+
/** @internal */
|
|
4129
4486
|
export declare const Missing1$inboundSchema: z.ZodType<Missing1, z.ZodTypeDef, unknown>;
|
|
4130
4487
|
/** @internal */
|
|
4131
4488
|
export type Missing1$Outbound = {
|
|
4132
4489
|
type: string;
|
|
4133
|
-
value: string;
|
|
4490
|
+
value: CreateDeploymentValueDeploymentsResponse2$Outbound | string;
|
|
4134
4491
|
};
|
|
4135
4492
|
/** @internal */
|
|
4136
4493
|
export declare const Missing1$outboundSchema: z.ZodType<Missing1$Outbound, z.ZodTypeDef, Missing1>;
|
|
@@ -4169,6 +4526,48 @@ export declare namespace RoutesMissing$ {
|
|
|
4169
4526
|
export declare function routesMissingToJSON(routesMissing: RoutesMissing): string;
|
|
4170
4527
|
export declare function routesMissingFromJSON(jsonString: string): SafeParseResult<RoutesMissing, SDKValidationError>;
|
|
4171
4528
|
/** @internal */
|
|
4529
|
+
export declare const RoutesAction$inboundSchema: z.ZodNativeEnum<typeof RoutesAction>;
|
|
4530
|
+
/** @internal */
|
|
4531
|
+
export declare const RoutesAction$outboundSchema: z.ZodNativeEnum<typeof RoutesAction>;
|
|
4532
|
+
/**
|
|
4533
|
+
* @internal
|
|
4534
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4535
|
+
*/
|
|
4536
|
+
export declare namespace RoutesAction$ {
|
|
4537
|
+
/** @deprecated use `RoutesAction$inboundSchema` instead. */
|
|
4538
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
4539
|
+
readonly Challenge: "challenge";
|
|
4540
|
+
readonly Deny: "deny";
|
|
4541
|
+
}>;
|
|
4542
|
+
/** @deprecated use `RoutesAction$outboundSchema` instead. */
|
|
4543
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
4544
|
+
readonly Challenge: "challenge";
|
|
4545
|
+
readonly Deny: "deny";
|
|
4546
|
+
}>;
|
|
4547
|
+
}
|
|
4548
|
+
/** @internal */
|
|
4549
|
+
export declare const RoutesMitigate$inboundSchema: z.ZodType<RoutesMitigate, z.ZodTypeDef, unknown>;
|
|
4550
|
+
/** @internal */
|
|
4551
|
+
export type RoutesMitigate$Outbound = {
|
|
4552
|
+
action: string;
|
|
4553
|
+
};
|
|
4554
|
+
/** @internal */
|
|
4555
|
+
export declare const RoutesMitigate$outboundSchema: z.ZodType<RoutesMitigate$Outbound, z.ZodTypeDef, RoutesMitigate>;
|
|
4556
|
+
/**
|
|
4557
|
+
* @internal
|
|
4558
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4559
|
+
*/
|
|
4560
|
+
export declare namespace RoutesMitigate$ {
|
|
4561
|
+
/** @deprecated use `RoutesMitigate$inboundSchema` instead. */
|
|
4562
|
+
const inboundSchema: z.ZodType<RoutesMitigate, z.ZodTypeDef, unknown>;
|
|
4563
|
+
/** @deprecated use `RoutesMitigate$outboundSchema` instead. */
|
|
4564
|
+
const outboundSchema: z.ZodType<RoutesMitigate$Outbound, z.ZodTypeDef, RoutesMitigate>;
|
|
4565
|
+
/** @deprecated use `RoutesMitigate$Outbound` instead. */
|
|
4566
|
+
type Outbound = RoutesMitigate$Outbound;
|
|
4567
|
+
}
|
|
4568
|
+
export declare function routesMitigateToJSON(routesMitigate: RoutesMitigate): string;
|
|
4569
|
+
export declare function routesMitigateFromJSON(jsonString: string): SafeParseResult<RoutesMitigate, SDKValidationError>;
|
|
4570
|
+
/** @internal */
|
|
4172
4571
|
export declare const Locale$inboundSchema: z.ZodType<Locale, z.ZodTypeDef, unknown>;
|
|
4173
4572
|
/** @internal */
|
|
4174
4573
|
export type Locale$Outbound = {
|
|
@@ -4211,6 +4610,7 @@ export type Routes1$Outbound = {
|
|
|
4211
4610
|
status?: number | undefined;
|
|
4212
4611
|
has?: Array<Has1$Outbound | Has2$Outbound> | undefined;
|
|
4213
4612
|
missing?: Array<Missing1$Outbound | Missing2$Outbound> | undefined;
|
|
4613
|
+
mitigate?: RoutesMitigate$Outbound | undefined;
|
|
4214
4614
|
locale?: Locale$Outbound | undefined;
|
|
4215
4615
|
middlewarePath?: string | undefined;
|
|
4216
4616
|
middlewareRawSrc?: Array<string> | undefined;
|