@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.
Files changed (54) hide show
  1. package/bin/mcp-server.js +1009 -313
  2. package/bin/mcp-server.js.map +13 -13
  3. package/esm/__tests__/projects.test.js +15 -13
  4. package/esm/__tests__/projects.test.js.map +1 -1
  5. package/esm/lib/config.d.ts +3 -3
  6. package/esm/lib/config.js +3 -3
  7. package/esm/mcp-server/mcp-server.js +1 -1
  8. package/esm/mcp-server/server.js +1 -1
  9. package/esm/models/canceldeploymentop.d.ts +408 -8
  10. package/esm/models/canceldeploymentop.d.ts.map +1 -1
  11. package/esm/models/canceldeploymentop.js +446 -8
  12. package/esm/models/canceldeploymentop.js.map +1 -1
  13. package/esm/models/createdeploymentop.d.ts +408 -8
  14. package/esm/models/createdeploymentop.d.ts.map +1 -1
  15. package/esm/models/createdeploymentop.js +448 -8
  16. package/esm/models/createdeploymentop.js.map +1 -1
  17. package/esm/models/createprojectenvop.d.ts +6 -6
  18. package/esm/models/createprojectenvop.js +2 -2
  19. package/esm/models/createprojectenvop.js.map +1 -1
  20. package/esm/models/createprojectop.d.ts +137 -137
  21. package/esm/models/createprojectop.d.ts.map +1 -1
  22. package/esm/models/createprojectop.js +135 -135
  23. package/esm/models/createprojectop.js.map +1 -1
  24. package/esm/models/editprojectenvop.d.ts +3 -3
  25. package/esm/models/editprojectenvop.js +1 -1
  26. package/esm/models/editprojectenvop.js.map +1 -1
  27. package/esm/models/getdeploymentop.d.ts +408 -8
  28. package/esm/models/getdeploymentop.d.ts.map +1 -1
  29. package/esm/models/getdeploymentop.js +441 -8
  30. package/esm/models/getdeploymentop.js.map +1 -1
  31. package/esm/models/removeprojectenvop.d.ts +9 -9
  32. package/esm/models/removeprojectenvop.js +3 -3
  33. package/esm/models/removeprojectenvop.js.map +1 -1
  34. package/esm/models/updateprojectop.d.ts +137 -137
  35. package/esm/models/updateprojectop.d.ts.map +1 -1
  36. package/esm/models/updateprojectop.js +135 -135
  37. package/esm/models/updateprojectop.js.map +1 -1
  38. package/esm/types/constdatetime.js +1 -1
  39. package/jsr.json +1 -1
  40. package/package.json +1 -1
  41. package/src/__tests__/projects.test.ts +15 -13
  42. package/src/lib/config.ts +3 -3
  43. package/src/mcp-server/mcp-server.ts +1 -1
  44. package/src/mcp-server/server.ts +1 -1
  45. package/src/models/canceldeploymentop.ts +1039 -16
  46. package/src/models/createdeploymentop.ts +957 -16
  47. package/src/models/createprojectenvop.ts +2 -2
  48. package/src/models/createprojectop.ts +263 -263
  49. package/src/models/editprojectenvop.ts +1 -1
  50. package/src/models/getdeploymentop.ts +1007 -16
  51. package/src/models/removeprojectenvop.ts +3 -3
  52. package/src/models/updateprojectop.ts +263 -263
  53. package/src/types/constdatetime.ts +1 -1
  54. package/vercel-spec.json +1328 -623
@@ -1084,18 +1084,48 @@ export declare const GetDeploymentHasType: {
1084
1084
  readonly Query: "query";
1085
1085
  };
1086
1086
  export type GetDeploymentHasType = ClosedEnum<typeof GetDeploymentHasType>;
1087
+ export type GetDeploymentValueDeploymentsResponse200Eq = string | number;
1088
+ export type GetDeploymentValueDeployments2 = {
1089
+ eq?: string | number | undefined;
1090
+ neq?: string | undefined;
1091
+ inc?: Array<string> | undefined;
1092
+ ninc?: Array<string> | undefined;
1093
+ pre?: string | undefined;
1094
+ suf?: string | undefined;
1095
+ re?: string | undefined;
1096
+ gt?: number | undefined;
1097
+ gte?: number | undefined;
1098
+ lt?: number | undefined;
1099
+ lte?: number | undefined;
1100
+ };
1101
+ export type GetDeploymentHasValue = GetDeploymentValueDeployments2 | string;
1087
1102
  export type GetDeploymentHas2 = {
1088
1103
  type: GetDeploymentHasType;
1089
1104
  key: string;
1090
- value?: string | undefined;
1105
+ value?: GetDeploymentValueDeployments2 | string | undefined;
1091
1106
  };
1092
1107
  export declare const GetDeploymentHasDeploymentsType: {
1093
1108
  readonly Host: "host";
1094
1109
  };
1095
1110
  export type GetDeploymentHasDeploymentsType = ClosedEnum<typeof GetDeploymentHasDeploymentsType>;
1111
+ export type GetDeploymentValueDeploymentsResponseEq = string | number;
1112
+ export type GetDeploymentValue2 = {
1113
+ eq?: string | number | undefined;
1114
+ neq?: string | undefined;
1115
+ inc?: Array<string> | undefined;
1116
+ ninc?: Array<string> | undefined;
1117
+ pre?: string | undefined;
1118
+ suf?: string | undefined;
1119
+ re?: string | undefined;
1120
+ gt?: number | undefined;
1121
+ gte?: number | undefined;
1122
+ lt?: number | undefined;
1123
+ lte?: number | undefined;
1124
+ };
1125
+ export type GetDeploymentHasDeploymentsValue = GetDeploymentValue2 | string;
1096
1126
  export type GetDeploymentHas1 = {
1097
1127
  type: GetDeploymentHasDeploymentsType;
1098
- value: string;
1128
+ value: GetDeploymentValue2 | string;
1099
1129
  };
1100
1130
  export type GetDeploymentRoutesHas = GetDeploymentHas1 | GetDeploymentHas2;
1101
1131
  export declare const GetDeploymentMissingType: {
@@ -1104,20 +1134,58 @@ export declare const GetDeploymentMissingType: {
1104
1134
  readonly Query: "query";
1105
1135
  };
1106
1136
  export type GetDeploymentMissingType = ClosedEnum<typeof GetDeploymentMissingType>;
1137
+ export type GetDeploymentValueDeploymentsEq = string | number;
1138
+ export type GetDeploymentValueDeploymentsResponse2002 = {
1139
+ eq?: string | number | undefined;
1140
+ neq?: string | undefined;
1141
+ inc?: Array<string> | undefined;
1142
+ ninc?: Array<string> | undefined;
1143
+ pre?: string | undefined;
1144
+ suf?: string | undefined;
1145
+ re?: string | undefined;
1146
+ gt?: number | undefined;
1147
+ gte?: number | undefined;
1148
+ lt?: number | undefined;
1149
+ lte?: number | undefined;
1150
+ };
1151
+ export type GetDeploymentMissingValue = GetDeploymentValueDeploymentsResponse2002 | string;
1107
1152
  export type GetDeploymentMissing2 = {
1108
1153
  type: GetDeploymentMissingType;
1109
1154
  key: string;
1110
- value?: string | undefined;
1155
+ value?: GetDeploymentValueDeploymentsResponse2002 | string | undefined;
1111
1156
  };
1112
1157
  export declare const GetDeploymentMissingDeploymentsType: {
1113
1158
  readonly Host: "host";
1114
1159
  };
1115
1160
  export type GetDeploymentMissingDeploymentsType = ClosedEnum<typeof GetDeploymentMissingDeploymentsType>;
1161
+ export type GetDeploymentValueEq = string | number;
1162
+ export type GetDeploymentValueDeploymentsResponse2 = {
1163
+ eq?: string | number | undefined;
1164
+ neq?: string | undefined;
1165
+ inc?: Array<string> | undefined;
1166
+ ninc?: Array<string> | undefined;
1167
+ pre?: string | undefined;
1168
+ suf?: string | undefined;
1169
+ re?: string | undefined;
1170
+ gt?: number | undefined;
1171
+ gte?: number | undefined;
1172
+ lt?: number | undefined;
1173
+ lte?: number | undefined;
1174
+ };
1175
+ export type GetDeploymentMissingDeploymentsValue = GetDeploymentValueDeploymentsResponse2 | string;
1116
1176
  export type GetDeploymentMissing1 = {
1117
1177
  type: GetDeploymentMissingDeploymentsType;
1118
- value: string;
1178
+ value: GetDeploymentValueDeploymentsResponse2 | string;
1119
1179
  };
1120
1180
  export type GetDeploymentRoutesMissing = GetDeploymentMissing1 | GetDeploymentMissing2;
1181
+ export declare const GetDeploymentRoutesAction: {
1182
+ readonly Challenge: "challenge";
1183
+ readonly Deny: "deny";
1184
+ };
1185
+ export type GetDeploymentRoutesAction = ClosedEnum<typeof GetDeploymentRoutesAction>;
1186
+ export type GetDeploymentRoutesMitigate = {
1187
+ action: GetDeploymentRoutesAction;
1188
+ };
1121
1189
  export type GetDeploymentRoutesLocale = {
1122
1190
  redirect?: {
1123
1191
  [k: string]: string;
@@ -1139,6 +1207,7 @@ export type GetDeploymentRoutes1 = {
1139
1207
  status?: number | undefined;
1140
1208
  has?: Array<GetDeploymentHas1 | GetDeploymentHas2> | undefined;
1141
1209
  missing?: Array<GetDeploymentMissing1 | GetDeploymentMissing2> | undefined;
1210
+ mitigate?: GetDeploymentRoutesMitigate | undefined;
1142
1211
  locale?: GetDeploymentRoutesLocale | undefined;
1143
1212
  /**
1144
1213
  * A middleware key within the `output` key under the build result. Overrides a `middleware` definition.
@@ -4698,12 +4767,84 @@ export declare namespace GetDeploymentHasType$ {
4698
4767
  }>;
4699
4768
  }
4700
4769
  /** @internal */
4770
+ export declare const GetDeploymentValueDeploymentsResponse200Eq$inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse200Eq, z.ZodTypeDef, unknown>;
4771
+ /** @internal */
4772
+ export type GetDeploymentValueDeploymentsResponse200Eq$Outbound = string | number;
4773
+ /** @internal */
4774
+ export declare const GetDeploymentValueDeploymentsResponse200Eq$outboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse200Eq$Outbound, z.ZodTypeDef, GetDeploymentValueDeploymentsResponse200Eq>;
4775
+ /**
4776
+ * @internal
4777
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4778
+ */
4779
+ export declare namespace GetDeploymentValueDeploymentsResponse200Eq$ {
4780
+ /** @deprecated use `GetDeploymentValueDeploymentsResponse200Eq$inboundSchema` instead. */
4781
+ const inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse200Eq, z.ZodTypeDef, unknown>;
4782
+ /** @deprecated use `GetDeploymentValueDeploymentsResponse200Eq$outboundSchema` instead. */
4783
+ const outboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse200Eq$Outbound, z.ZodTypeDef, GetDeploymentValueDeploymentsResponse200Eq>;
4784
+ /** @deprecated use `GetDeploymentValueDeploymentsResponse200Eq$Outbound` instead. */
4785
+ type Outbound = GetDeploymentValueDeploymentsResponse200Eq$Outbound;
4786
+ }
4787
+ export declare function getDeploymentValueDeploymentsResponse200EqToJSON(getDeploymentValueDeploymentsResponse200Eq: GetDeploymentValueDeploymentsResponse200Eq): string;
4788
+ export declare function getDeploymentValueDeploymentsResponse200EqFromJSON(jsonString: string): SafeParseResult<GetDeploymentValueDeploymentsResponse200Eq, SDKValidationError>;
4789
+ /** @internal */
4790
+ export declare const GetDeploymentValueDeployments2$inboundSchema: z.ZodType<GetDeploymentValueDeployments2, z.ZodTypeDef, unknown>;
4791
+ /** @internal */
4792
+ export type GetDeploymentValueDeployments2$Outbound = {
4793
+ eq?: string | number | undefined;
4794
+ neq?: string | undefined;
4795
+ inc?: Array<string> | undefined;
4796
+ ninc?: Array<string> | undefined;
4797
+ pre?: string | undefined;
4798
+ suf?: string | undefined;
4799
+ re?: string | undefined;
4800
+ gt?: number | undefined;
4801
+ gte?: number | undefined;
4802
+ lt?: number | undefined;
4803
+ lte?: number | undefined;
4804
+ };
4805
+ /** @internal */
4806
+ export declare const GetDeploymentValueDeployments2$outboundSchema: z.ZodType<GetDeploymentValueDeployments2$Outbound, z.ZodTypeDef, GetDeploymentValueDeployments2>;
4807
+ /**
4808
+ * @internal
4809
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4810
+ */
4811
+ export declare namespace GetDeploymentValueDeployments2$ {
4812
+ /** @deprecated use `GetDeploymentValueDeployments2$inboundSchema` instead. */
4813
+ const inboundSchema: z.ZodType<GetDeploymentValueDeployments2, z.ZodTypeDef, unknown>;
4814
+ /** @deprecated use `GetDeploymentValueDeployments2$outboundSchema` instead. */
4815
+ const outboundSchema: z.ZodType<GetDeploymentValueDeployments2$Outbound, z.ZodTypeDef, GetDeploymentValueDeployments2>;
4816
+ /** @deprecated use `GetDeploymentValueDeployments2$Outbound` instead. */
4817
+ type Outbound = GetDeploymentValueDeployments2$Outbound;
4818
+ }
4819
+ export declare function getDeploymentValueDeployments2ToJSON(getDeploymentValueDeployments2: GetDeploymentValueDeployments2): string;
4820
+ export declare function getDeploymentValueDeployments2FromJSON(jsonString: string): SafeParseResult<GetDeploymentValueDeployments2, SDKValidationError>;
4821
+ /** @internal */
4822
+ export declare const GetDeploymentHasValue$inboundSchema: z.ZodType<GetDeploymentHasValue, z.ZodTypeDef, unknown>;
4823
+ /** @internal */
4824
+ export type GetDeploymentHasValue$Outbound = GetDeploymentValueDeployments2$Outbound | string;
4825
+ /** @internal */
4826
+ export declare const GetDeploymentHasValue$outboundSchema: z.ZodType<GetDeploymentHasValue$Outbound, z.ZodTypeDef, GetDeploymentHasValue>;
4827
+ /**
4828
+ * @internal
4829
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4830
+ */
4831
+ export declare namespace GetDeploymentHasValue$ {
4832
+ /** @deprecated use `GetDeploymentHasValue$inboundSchema` instead. */
4833
+ const inboundSchema: z.ZodType<GetDeploymentHasValue, z.ZodTypeDef, unknown>;
4834
+ /** @deprecated use `GetDeploymentHasValue$outboundSchema` instead. */
4835
+ const outboundSchema: z.ZodType<GetDeploymentHasValue$Outbound, z.ZodTypeDef, GetDeploymentHasValue>;
4836
+ /** @deprecated use `GetDeploymentHasValue$Outbound` instead. */
4837
+ type Outbound = GetDeploymentHasValue$Outbound;
4838
+ }
4839
+ export declare function getDeploymentHasValueToJSON(getDeploymentHasValue: GetDeploymentHasValue): string;
4840
+ export declare function getDeploymentHasValueFromJSON(jsonString: string): SafeParseResult<GetDeploymentHasValue, SDKValidationError>;
4841
+ /** @internal */
4701
4842
  export declare const GetDeploymentHas2$inboundSchema: z.ZodType<GetDeploymentHas2, z.ZodTypeDef, unknown>;
4702
4843
  /** @internal */
4703
4844
  export type GetDeploymentHas2$Outbound = {
4704
4845
  type: string;
4705
4846
  key: string;
4706
- value?: string | undefined;
4847
+ value?: GetDeploymentValueDeployments2$Outbound | string | undefined;
4707
4848
  };
4708
4849
  /** @internal */
4709
4850
  export declare const GetDeploymentHas2$outboundSchema: z.ZodType<GetDeploymentHas2$Outbound, z.ZodTypeDef, GetDeploymentHas2>;
@@ -4740,11 +4881,83 @@ export declare namespace GetDeploymentHasDeploymentsType$ {
4740
4881
  }>;
4741
4882
  }
4742
4883
  /** @internal */
4884
+ export declare const GetDeploymentValueDeploymentsResponseEq$inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponseEq, z.ZodTypeDef, unknown>;
4885
+ /** @internal */
4886
+ export type GetDeploymentValueDeploymentsResponseEq$Outbound = string | number;
4887
+ /** @internal */
4888
+ export declare const GetDeploymentValueDeploymentsResponseEq$outboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponseEq$Outbound, z.ZodTypeDef, GetDeploymentValueDeploymentsResponseEq>;
4889
+ /**
4890
+ * @internal
4891
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4892
+ */
4893
+ export declare namespace GetDeploymentValueDeploymentsResponseEq$ {
4894
+ /** @deprecated use `GetDeploymentValueDeploymentsResponseEq$inboundSchema` instead. */
4895
+ const inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponseEq, z.ZodTypeDef, unknown>;
4896
+ /** @deprecated use `GetDeploymentValueDeploymentsResponseEq$outboundSchema` instead. */
4897
+ const outboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponseEq$Outbound, z.ZodTypeDef, GetDeploymentValueDeploymentsResponseEq>;
4898
+ /** @deprecated use `GetDeploymentValueDeploymentsResponseEq$Outbound` instead. */
4899
+ type Outbound = GetDeploymentValueDeploymentsResponseEq$Outbound;
4900
+ }
4901
+ export declare function getDeploymentValueDeploymentsResponseEqToJSON(getDeploymentValueDeploymentsResponseEq: GetDeploymentValueDeploymentsResponseEq): string;
4902
+ export declare function getDeploymentValueDeploymentsResponseEqFromJSON(jsonString: string): SafeParseResult<GetDeploymentValueDeploymentsResponseEq, SDKValidationError>;
4903
+ /** @internal */
4904
+ export declare const GetDeploymentValue2$inboundSchema: z.ZodType<GetDeploymentValue2, z.ZodTypeDef, unknown>;
4905
+ /** @internal */
4906
+ export type GetDeploymentValue2$Outbound = {
4907
+ eq?: string | number | undefined;
4908
+ neq?: string | undefined;
4909
+ inc?: Array<string> | undefined;
4910
+ ninc?: Array<string> | undefined;
4911
+ pre?: string | undefined;
4912
+ suf?: string | undefined;
4913
+ re?: string | undefined;
4914
+ gt?: number | undefined;
4915
+ gte?: number | undefined;
4916
+ lt?: number | undefined;
4917
+ lte?: number | undefined;
4918
+ };
4919
+ /** @internal */
4920
+ export declare const GetDeploymentValue2$outboundSchema: z.ZodType<GetDeploymentValue2$Outbound, z.ZodTypeDef, GetDeploymentValue2>;
4921
+ /**
4922
+ * @internal
4923
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4924
+ */
4925
+ export declare namespace GetDeploymentValue2$ {
4926
+ /** @deprecated use `GetDeploymentValue2$inboundSchema` instead. */
4927
+ const inboundSchema: z.ZodType<GetDeploymentValue2, z.ZodTypeDef, unknown>;
4928
+ /** @deprecated use `GetDeploymentValue2$outboundSchema` instead. */
4929
+ const outboundSchema: z.ZodType<GetDeploymentValue2$Outbound, z.ZodTypeDef, GetDeploymentValue2>;
4930
+ /** @deprecated use `GetDeploymentValue2$Outbound` instead. */
4931
+ type Outbound = GetDeploymentValue2$Outbound;
4932
+ }
4933
+ export declare function getDeploymentValue2ToJSON(getDeploymentValue2: GetDeploymentValue2): string;
4934
+ export declare function getDeploymentValue2FromJSON(jsonString: string): SafeParseResult<GetDeploymentValue2, SDKValidationError>;
4935
+ /** @internal */
4936
+ export declare const GetDeploymentHasDeploymentsValue$inboundSchema: z.ZodType<GetDeploymentHasDeploymentsValue, z.ZodTypeDef, unknown>;
4937
+ /** @internal */
4938
+ export type GetDeploymentHasDeploymentsValue$Outbound = GetDeploymentValue2$Outbound | string;
4939
+ /** @internal */
4940
+ export declare const GetDeploymentHasDeploymentsValue$outboundSchema: z.ZodType<GetDeploymentHasDeploymentsValue$Outbound, z.ZodTypeDef, GetDeploymentHasDeploymentsValue>;
4941
+ /**
4942
+ * @internal
4943
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4944
+ */
4945
+ export declare namespace GetDeploymentHasDeploymentsValue$ {
4946
+ /** @deprecated use `GetDeploymentHasDeploymentsValue$inboundSchema` instead. */
4947
+ const inboundSchema: z.ZodType<GetDeploymentHasDeploymentsValue, z.ZodTypeDef, unknown>;
4948
+ /** @deprecated use `GetDeploymentHasDeploymentsValue$outboundSchema` instead. */
4949
+ const outboundSchema: z.ZodType<GetDeploymentHasDeploymentsValue$Outbound, z.ZodTypeDef, GetDeploymentHasDeploymentsValue>;
4950
+ /** @deprecated use `GetDeploymentHasDeploymentsValue$Outbound` instead. */
4951
+ type Outbound = GetDeploymentHasDeploymentsValue$Outbound;
4952
+ }
4953
+ export declare function getDeploymentHasDeploymentsValueToJSON(getDeploymentHasDeploymentsValue: GetDeploymentHasDeploymentsValue): string;
4954
+ export declare function getDeploymentHasDeploymentsValueFromJSON(jsonString: string): SafeParseResult<GetDeploymentHasDeploymentsValue, SDKValidationError>;
4955
+ /** @internal */
4743
4956
  export declare const GetDeploymentHas1$inboundSchema: z.ZodType<GetDeploymentHas1, z.ZodTypeDef, unknown>;
4744
4957
  /** @internal */
4745
4958
  export type GetDeploymentHas1$Outbound = {
4746
4959
  type: string;
4747
- value: string;
4960
+ value: GetDeploymentValue2$Outbound | string;
4748
4961
  };
4749
4962
  /** @internal */
4750
4963
  export declare const GetDeploymentHas1$outboundSchema: z.ZodType<GetDeploymentHas1$Outbound, z.ZodTypeDef, GetDeploymentHas1>;
@@ -4805,12 +5018,84 @@ export declare namespace GetDeploymentMissingType$ {
4805
5018
  }>;
4806
5019
  }
4807
5020
  /** @internal */
5021
+ export declare const GetDeploymentValueDeploymentsEq$inboundSchema: z.ZodType<GetDeploymentValueDeploymentsEq, z.ZodTypeDef, unknown>;
5022
+ /** @internal */
5023
+ export type GetDeploymentValueDeploymentsEq$Outbound = string | number;
5024
+ /** @internal */
5025
+ export declare const GetDeploymentValueDeploymentsEq$outboundSchema: z.ZodType<GetDeploymentValueDeploymentsEq$Outbound, z.ZodTypeDef, GetDeploymentValueDeploymentsEq>;
5026
+ /**
5027
+ * @internal
5028
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5029
+ */
5030
+ export declare namespace GetDeploymentValueDeploymentsEq$ {
5031
+ /** @deprecated use `GetDeploymentValueDeploymentsEq$inboundSchema` instead. */
5032
+ const inboundSchema: z.ZodType<GetDeploymentValueDeploymentsEq, z.ZodTypeDef, unknown>;
5033
+ /** @deprecated use `GetDeploymentValueDeploymentsEq$outboundSchema` instead. */
5034
+ const outboundSchema: z.ZodType<GetDeploymentValueDeploymentsEq$Outbound, z.ZodTypeDef, GetDeploymentValueDeploymentsEq>;
5035
+ /** @deprecated use `GetDeploymentValueDeploymentsEq$Outbound` instead. */
5036
+ type Outbound = GetDeploymentValueDeploymentsEq$Outbound;
5037
+ }
5038
+ export declare function getDeploymentValueDeploymentsEqToJSON(getDeploymentValueDeploymentsEq: GetDeploymentValueDeploymentsEq): string;
5039
+ export declare function getDeploymentValueDeploymentsEqFromJSON(jsonString: string): SafeParseResult<GetDeploymentValueDeploymentsEq, SDKValidationError>;
5040
+ /** @internal */
5041
+ export declare const GetDeploymentValueDeploymentsResponse2002$inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse2002, z.ZodTypeDef, unknown>;
5042
+ /** @internal */
5043
+ export type GetDeploymentValueDeploymentsResponse2002$Outbound = {
5044
+ eq?: string | number | undefined;
5045
+ neq?: string | undefined;
5046
+ inc?: Array<string> | undefined;
5047
+ ninc?: Array<string> | undefined;
5048
+ pre?: string | undefined;
5049
+ suf?: string | undefined;
5050
+ re?: string | undefined;
5051
+ gt?: number | undefined;
5052
+ gte?: number | undefined;
5053
+ lt?: number | undefined;
5054
+ lte?: number | undefined;
5055
+ };
5056
+ /** @internal */
5057
+ export declare const GetDeploymentValueDeploymentsResponse2002$outboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse2002$Outbound, z.ZodTypeDef, GetDeploymentValueDeploymentsResponse2002>;
5058
+ /**
5059
+ * @internal
5060
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5061
+ */
5062
+ export declare namespace GetDeploymentValueDeploymentsResponse2002$ {
5063
+ /** @deprecated use `GetDeploymentValueDeploymentsResponse2002$inboundSchema` instead. */
5064
+ const inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse2002, z.ZodTypeDef, unknown>;
5065
+ /** @deprecated use `GetDeploymentValueDeploymentsResponse2002$outboundSchema` instead. */
5066
+ const outboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse2002$Outbound, z.ZodTypeDef, GetDeploymentValueDeploymentsResponse2002>;
5067
+ /** @deprecated use `GetDeploymentValueDeploymentsResponse2002$Outbound` instead. */
5068
+ type Outbound = GetDeploymentValueDeploymentsResponse2002$Outbound;
5069
+ }
5070
+ export declare function getDeploymentValueDeploymentsResponse2002ToJSON(getDeploymentValueDeploymentsResponse2002: GetDeploymentValueDeploymentsResponse2002): string;
5071
+ export declare function getDeploymentValueDeploymentsResponse2002FromJSON(jsonString: string): SafeParseResult<GetDeploymentValueDeploymentsResponse2002, SDKValidationError>;
5072
+ /** @internal */
5073
+ export declare const GetDeploymentMissingValue$inboundSchema: z.ZodType<GetDeploymentMissingValue, z.ZodTypeDef, unknown>;
5074
+ /** @internal */
5075
+ export type GetDeploymentMissingValue$Outbound = GetDeploymentValueDeploymentsResponse2002$Outbound | string;
5076
+ /** @internal */
5077
+ export declare const GetDeploymentMissingValue$outboundSchema: z.ZodType<GetDeploymentMissingValue$Outbound, z.ZodTypeDef, GetDeploymentMissingValue>;
5078
+ /**
5079
+ * @internal
5080
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5081
+ */
5082
+ export declare namespace GetDeploymentMissingValue$ {
5083
+ /** @deprecated use `GetDeploymentMissingValue$inboundSchema` instead. */
5084
+ const inboundSchema: z.ZodType<GetDeploymentMissingValue, z.ZodTypeDef, unknown>;
5085
+ /** @deprecated use `GetDeploymentMissingValue$outboundSchema` instead. */
5086
+ const outboundSchema: z.ZodType<GetDeploymentMissingValue$Outbound, z.ZodTypeDef, GetDeploymentMissingValue>;
5087
+ /** @deprecated use `GetDeploymentMissingValue$Outbound` instead. */
5088
+ type Outbound = GetDeploymentMissingValue$Outbound;
5089
+ }
5090
+ export declare function getDeploymentMissingValueToJSON(getDeploymentMissingValue: GetDeploymentMissingValue): string;
5091
+ export declare function getDeploymentMissingValueFromJSON(jsonString: string): SafeParseResult<GetDeploymentMissingValue, SDKValidationError>;
5092
+ /** @internal */
4808
5093
  export declare const GetDeploymentMissing2$inboundSchema: z.ZodType<GetDeploymentMissing2, z.ZodTypeDef, unknown>;
4809
5094
  /** @internal */
4810
5095
  export type GetDeploymentMissing2$Outbound = {
4811
5096
  type: string;
4812
5097
  key: string;
4813
- value?: string | undefined;
5098
+ value?: GetDeploymentValueDeploymentsResponse2002$Outbound | string | undefined;
4814
5099
  };
4815
5100
  /** @internal */
4816
5101
  export declare const GetDeploymentMissing2$outboundSchema: z.ZodType<GetDeploymentMissing2$Outbound, z.ZodTypeDef, GetDeploymentMissing2>;
@@ -4847,11 +5132,83 @@ export declare namespace GetDeploymentMissingDeploymentsType$ {
4847
5132
  }>;
4848
5133
  }
4849
5134
  /** @internal */
5135
+ export declare const GetDeploymentValueEq$inboundSchema: z.ZodType<GetDeploymentValueEq, z.ZodTypeDef, unknown>;
5136
+ /** @internal */
5137
+ export type GetDeploymentValueEq$Outbound = string | number;
5138
+ /** @internal */
5139
+ export declare const GetDeploymentValueEq$outboundSchema: z.ZodType<GetDeploymentValueEq$Outbound, z.ZodTypeDef, GetDeploymentValueEq>;
5140
+ /**
5141
+ * @internal
5142
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5143
+ */
5144
+ export declare namespace GetDeploymentValueEq$ {
5145
+ /** @deprecated use `GetDeploymentValueEq$inboundSchema` instead. */
5146
+ const inboundSchema: z.ZodType<GetDeploymentValueEq, z.ZodTypeDef, unknown>;
5147
+ /** @deprecated use `GetDeploymentValueEq$outboundSchema` instead. */
5148
+ const outboundSchema: z.ZodType<GetDeploymentValueEq$Outbound, z.ZodTypeDef, GetDeploymentValueEq>;
5149
+ /** @deprecated use `GetDeploymentValueEq$Outbound` instead. */
5150
+ type Outbound = GetDeploymentValueEq$Outbound;
5151
+ }
5152
+ export declare function getDeploymentValueEqToJSON(getDeploymentValueEq: GetDeploymentValueEq): string;
5153
+ export declare function getDeploymentValueEqFromJSON(jsonString: string): SafeParseResult<GetDeploymentValueEq, SDKValidationError>;
5154
+ /** @internal */
5155
+ export declare const GetDeploymentValueDeploymentsResponse2$inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse2, z.ZodTypeDef, unknown>;
5156
+ /** @internal */
5157
+ export type GetDeploymentValueDeploymentsResponse2$Outbound = {
5158
+ eq?: string | number | undefined;
5159
+ neq?: string | undefined;
5160
+ inc?: Array<string> | undefined;
5161
+ ninc?: Array<string> | undefined;
5162
+ pre?: string | undefined;
5163
+ suf?: string | undefined;
5164
+ re?: string | undefined;
5165
+ gt?: number | undefined;
5166
+ gte?: number | undefined;
5167
+ lt?: number | undefined;
5168
+ lte?: number | undefined;
5169
+ };
5170
+ /** @internal */
5171
+ export declare const GetDeploymentValueDeploymentsResponse2$outboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse2$Outbound, z.ZodTypeDef, GetDeploymentValueDeploymentsResponse2>;
5172
+ /**
5173
+ * @internal
5174
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5175
+ */
5176
+ export declare namespace GetDeploymentValueDeploymentsResponse2$ {
5177
+ /** @deprecated use `GetDeploymentValueDeploymentsResponse2$inboundSchema` instead. */
5178
+ const inboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse2, z.ZodTypeDef, unknown>;
5179
+ /** @deprecated use `GetDeploymentValueDeploymentsResponse2$outboundSchema` instead. */
5180
+ const outboundSchema: z.ZodType<GetDeploymentValueDeploymentsResponse2$Outbound, z.ZodTypeDef, GetDeploymentValueDeploymentsResponse2>;
5181
+ /** @deprecated use `GetDeploymentValueDeploymentsResponse2$Outbound` instead. */
5182
+ type Outbound = GetDeploymentValueDeploymentsResponse2$Outbound;
5183
+ }
5184
+ export declare function getDeploymentValueDeploymentsResponse2ToJSON(getDeploymentValueDeploymentsResponse2: GetDeploymentValueDeploymentsResponse2): string;
5185
+ export declare function getDeploymentValueDeploymentsResponse2FromJSON(jsonString: string): SafeParseResult<GetDeploymentValueDeploymentsResponse2, SDKValidationError>;
5186
+ /** @internal */
5187
+ export declare const GetDeploymentMissingDeploymentsValue$inboundSchema: z.ZodType<GetDeploymentMissingDeploymentsValue, z.ZodTypeDef, unknown>;
5188
+ /** @internal */
5189
+ export type GetDeploymentMissingDeploymentsValue$Outbound = GetDeploymentValueDeploymentsResponse2$Outbound | string;
5190
+ /** @internal */
5191
+ export declare const GetDeploymentMissingDeploymentsValue$outboundSchema: z.ZodType<GetDeploymentMissingDeploymentsValue$Outbound, z.ZodTypeDef, GetDeploymentMissingDeploymentsValue>;
5192
+ /**
5193
+ * @internal
5194
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5195
+ */
5196
+ export declare namespace GetDeploymentMissingDeploymentsValue$ {
5197
+ /** @deprecated use `GetDeploymentMissingDeploymentsValue$inboundSchema` instead. */
5198
+ const inboundSchema: z.ZodType<GetDeploymentMissingDeploymentsValue, z.ZodTypeDef, unknown>;
5199
+ /** @deprecated use `GetDeploymentMissingDeploymentsValue$outboundSchema` instead. */
5200
+ const outboundSchema: z.ZodType<GetDeploymentMissingDeploymentsValue$Outbound, z.ZodTypeDef, GetDeploymentMissingDeploymentsValue>;
5201
+ /** @deprecated use `GetDeploymentMissingDeploymentsValue$Outbound` instead. */
5202
+ type Outbound = GetDeploymentMissingDeploymentsValue$Outbound;
5203
+ }
5204
+ export declare function getDeploymentMissingDeploymentsValueToJSON(getDeploymentMissingDeploymentsValue: GetDeploymentMissingDeploymentsValue): string;
5205
+ export declare function getDeploymentMissingDeploymentsValueFromJSON(jsonString: string): SafeParseResult<GetDeploymentMissingDeploymentsValue, SDKValidationError>;
5206
+ /** @internal */
4850
5207
  export declare const GetDeploymentMissing1$inboundSchema: z.ZodType<GetDeploymentMissing1, z.ZodTypeDef, unknown>;
4851
5208
  /** @internal */
4852
5209
  export type GetDeploymentMissing1$Outbound = {
4853
5210
  type: string;
4854
- value: string;
5211
+ value: GetDeploymentValueDeploymentsResponse2$Outbound | string;
4855
5212
  };
4856
5213
  /** @internal */
4857
5214
  export declare const GetDeploymentMissing1$outboundSchema: z.ZodType<GetDeploymentMissing1$Outbound, z.ZodTypeDef, GetDeploymentMissing1>;
@@ -4890,6 +5247,48 @@ export declare namespace GetDeploymentRoutesMissing$ {
4890
5247
  export declare function getDeploymentRoutesMissingToJSON(getDeploymentRoutesMissing: GetDeploymentRoutesMissing): string;
4891
5248
  export declare function getDeploymentRoutesMissingFromJSON(jsonString: string): SafeParseResult<GetDeploymentRoutesMissing, SDKValidationError>;
4892
5249
  /** @internal */
5250
+ export declare const GetDeploymentRoutesAction$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentRoutesAction>;
5251
+ /** @internal */
5252
+ export declare const GetDeploymentRoutesAction$outboundSchema: z.ZodNativeEnum<typeof GetDeploymentRoutesAction>;
5253
+ /**
5254
+ * @internal
5255
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5256
+ */
5257
+ export declare namespace GetDeploymentRoutesAction$ {
5258
+ /** @deprecated use `GetDeploymentRoutesAction$inboundSchema` instead. */
5259
+ const inboundSchema: z.ZodNativeEnum<{
5260
+ readonly Challenge: "challenge";
5261
+ readonly Deny: "deny";
5262
+ }>;
5263
+ /** @deprecated use `GetDeploymentRoutesAction$outboundSchema` instead. */
5264
+ const outboundSchema: z.ZodNativeEnum<{
5265
+ readonly Challenge: "challenge";
5266
+ readonly Deny: "deny";
5267
+ }>;
5268
+ }
5269
+ /** @internal */
5270
+ export declare const GetDeploymentRoutesMitigate$inboundSchema: z.ZodType<GetDeploymentRoutesMitigate, z.ZodTypeDef, unknown>;
5271
+ /** @internal */
5272
+ export type GetDeploymentRoutesMitigate$Outbound = {
5273
+ action: string;
5274
+ };
5275
+ /** @internal */
5276
+ export declare const GetDeploymentRoutesMitigate$outboundSchema: z.ZodType<GetDeploymentRoutesMitigate$Outbound, z.ZodTypeDef, GetDeploymentRoutesMitigate>;
5277
+ /**
5278
+ * @internal
5279
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5280
+ */
5281
+ export declare namespace GetDeploymentRoutesMitigate$ {
5282
+ /** @deprecated use `GetDeploymentRoutesMitigate$inboundSchema` instead. */
5283
+ const inboundSchema: z.ZodType<GetDeploymentRoutesMitigate, z.ZodTypeDef, unknown>;
5284
+ /** @deprecated use `GetDeploymentRoutesMitigate$outboundSchema` instead. */
5285
+ const outboundSchema: z.ZodType<GetDeploymentRoutesMitigate$Outbound, z.ZodTypeDef, GetDeploymentRoutesMitigate>;
5286
+ /** @deprecated use `GetDeploymentRoutesMitigate$Outbound` instead. */
5287
+ type Outbound = GetDeploymentRoutesMitigate$Outbound;
5288
+ }
5289
+ export declare function getDeploymentRoutesMitigateToJSON(getDeploymentRoutesMitigate: GetDeploymentRoutesMitigate): string;
5290
+ export declare function getDeploymentRoutesMitigateFromJSON(jsonString: string): SafeParseResult<GetDeploymentRoutesMitigate, SDKValidationError>;
5291
+ /** @internal */
4893
5292
  export declare const GetDeploymentRoutesLocale$inboundSchema: z.ZodType<GetDeploymentRoutesLocale, z.ZodTypeDef, unknown>;
4894
5293
  /** @internal */
4895
5294
  export type GetDeploymentRoutesLocale$Outbound = {
@@ -4932,6 +5331,7 @@ export type GetDeploymentRoutes1$Outbound = {
4932
5331
  status?: number | undefined;
4933
5332
  has?: Array<GetDeploymentHas1$Outbound | GetDeploymentHas2$Outbound> | undefined;
4934
5333
  missing?: Array<GetDeploymentMissing1$Outbound | GetDeploymentMissing2$Outbound> | undefined;
5334
+ mitigate?: GetDeploymentRoutesMitigate$Outbound | undefined;
4935
5335
  locale?: GetDeploymentRoutesLocale$Outbound | undefined;
4936
5336
  middlewarePath?: string | undefined;
4937
5337
  middlewareRawSrc?: Array<string> | undefined;