@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
|
@@ -801,10 +801,30 @@ export type CancelDeploymentHasDeploymentsType = ClosedEnum<
|
|
|
801
801
|
typeof CancelDeploymentHasDeploymentsType
|
|
802
802
|
>;
|
|
803
803
|
|
|
804
|
+
export type CancelDeploymentValueDeploymentsEq = string | number;
|
|
805
|
+
|
|
806
|
+
export type CancelDeploymentValueDeployments2 = {
|
|
807
|
+
eq?: string | number | undefined;
|
|
808
|
+
neq?: string | undefined;
|
|
809
|
+
inc?: Array<string> | undefined;
|
|
810
|
+
ninc?: Array<string> | undefined;
|
|
811
|
+
pre?: string | undefined;
|
|
812
|
+
suf?: string | undefined;
|
|
813
|
+
re?: string | undefined;
|
|
814
|
+
gt?: number | undefined;
|
|
815
|
+
gte?: number | undefined;
|
|
816
|
+
lt?: number | undefined;
|
|
817
|
+
lte?: number | undefined;
|
|
818
|
+
};
|
|
819
|
+
|
|
820
|
+
export type CancelDeploymentHasDeploymentsValue =
|
|
821
|
+
| CancelDeploymentValueDeployments2
|
|
822
|
+
| string;
|
|
823
|
+
|
|
804
824
|
export type CancelDeploymentHas2 = {
|
|
805
825
|
type: CancelDeploymentHasDeploymentsType;
|
|
806
826
|
key: string;
|
|
807
|
-
value?: string | undefined;
|
|
827
|
+
value?: CancelDeploymentValueDeployments2 | string | undefined;
|
|
808
828
|
};
|
|
809
829
|
|
|
810
830
|
export const CancelDeploymentHasType = {
|
|
@@ -814,9 +834,27 @@ export type CancelDeploymentHasType = ClosedEnum<
|
|
|
814
834
|
typeof CancelDeploymentHasType
|
|
815
835
|
>;
|
|
816
836
|
|
|
837
|
+
export type CancelDeploymentValueEq = string | number;
|
|
838
|
+
|
|
839
|
+
export type CancelDeploymentValue2 = {
|
|
840
|
+
eq?: string | number | undefined;
|
|
841
|
+
neq?: string | undefined;
|
|
842
|
+
inc?: Array<string> | undefined;
|
|
843
|
+
ninc?: Array<string> | undefined;
|
|
844
|
+
pre?: string | undefined;
|
|
845
|
+
suf?: string | undefined;
|
|
846
|
+
re?: string | undefined;
|
|
847
|
+
gt?: number | undefined;
|
|
848
|
+
gte?: number | undefined;
|
|
849
|
+
lt?: number | undefined;
|
|
850
|
+
lte?: number | undefined;
|
|
851
|
+
};
|
|
852
|
+
|
|
853
|
+
export type CancelDeploymentHasValue = CancelDeploymentValue2 | string;
|
|
854
|
+
|
|
817
855
|
export type CancelDeploymentHas1 = {
|
|
818
856
|
type: CancelDeploymentHasType;
|
|
819
|
-
value: string;
|
|
857
|
+
value: CancelDeploymentValue2 | string;
|
|
820
858
|
};
|
|
821
859
|
|
|
822
860
|
export type CancelDeploymentRoutesHas =
|
|
@@ -832,10 +870,30 @@ export type CancelDeploymentMissingDeploymentsType = ClosedEnum<
|
|
|
832
870
|
typeof CancelDeploymentMissingDeploymentsType
|
|
833
871
|
>;
|
|
834
872
|
|
|
873
|
+
export type CancelDeploymentValueDeploymentsResponse200Eq = string | number;
|
|
874
|
+
|
|
875
|
+
export type CancelDeploymentValueDeploymentsResponse2002 = {
|
|
876
|
+
eq?: string | number | undefined;
|
|
877
|
+
neq?: string | undefined;
|
|
878
|
+
inc?: Array<string> | undefined;
|
|
879
|
+
ninc?: Array<string> | undefined;
|
|
880
|
+
pre?: string | undefined;
|
|
881
|
+
suf?: string | undefined;
|
|
882
|
+
re?: string | undefined;
|
|
883
|
+
gt?: number | undefined;
|
|
884
|
+
gte?: number | undefined;
|
|
885
|
+
lt?: number | undefined;
|
|
886
|
+
lte?: number | undefined;
|
|
887
|
+
};
|
|
888
|
+
|
|
889
|
+
export type CancelDeploymentMissingDeploymentsValue =
|
|
890
|
+
| CancelDeploymentValueDeploymentsResponse2002
|
|
891
|
+
| string;
|
|
892
|
+
|
|
835
893
|
export type CancelDeploymentMissing2 = {
|
|
836
894
|
type: CancelDeploymentMissingDeploymentsType;
|
|
837
895
|
key: string;
|
|
838
|
-
value?: string | undefined;
|
|
896
|
+
value?: CancelDeploymentValueDeploymentsResponse2002 | string | undefined;
|
|
839
897
|
};
|
|
840
898
|
|
|
841
899
|
export const CancelDeploymentMissingType = {
|
|
@@ -845,15 +903,47 @@ export type CancelDeploymentMissingType = ClosedEnum<
|
|
|
845
903
|
typeof CancelDeploymentMissingType
|
|
846
904
|
>;
|
|
847
905
|
|
|
906
|
+
export type CancelDeploymentValueDeploymentsResponseEq = string | number;
|
|
907
|
+
|
|
908
|
+
export type CancelDeploymentValueDeploymentsResponse2 = {
|
|
909
|
+
eq?: string | number | undefined;
|
|
910
|
+
neq?: string | undefined;
|
|
911
|
+
inc?: Array<string> | undefined;
|
|
912
|
+
ninc?: Array<string> | undefined;
|
|
913
|
+
pre?: string | undefined;
|
|
914
|
+
suf?: string | undefined;
|
|
915
|
+
re?: string | undefined;
|
|
916
|
+
gt?: number | undefined;
|
|
917
|
+
gte?: number | undefined;
|
|
918
|
+
lt?: number | undefined;
|
|
919
|
+
lte?: number | undefined;
|
|
920
|
+
};
|
|
921
|
+
|
|
922
|
+
export type CancelDeploymentMissingValue =
|
|
923
|
+
| CancelDeploymentValueDeploymentsResponse2
|
|
924
|
+
| string;
|
|
925
|
+
|
|
848
926
|
export type CancelDeploymentMissing1 = {
|
|
849
927
|
type: CancelDeploymentMissingType;
|
|
850
|
-
value: string;
|
|
928
|
+
value: CancelDeploymentValueDeploymentsResponse2 | string;
|
|
851
929
|
};
|
|
852
930
|
|
|
853
931
|
export type CancelDeploymentRoutesMissing =
|
|
854
932
|
| CancelDeploymentMissing1
|
|
855
933
|
| CancelDeploymentMissing2;
|
|
856
934
|
|
|
935
|
+
export const CancelDeploymentRoutesAction = {
|
|
936
|
+
Challenge: "challenge",
|
|
937
|
+
Deny: "deny",
|
|
938
|
+
} as const;
|
|
939
|
+
export type CancelDeploymentRoutesAction = ClosedEnum<
|
|
940
|
+
typeof CancelDeploymentRoutesAction
|
|
941
|
+
>;
|
|
942
|
+
|
|
943
|
+
export type CancelDeploymentRoutesMitigate = {
|
|
944
|
+
action: CancelDeploymentRoutesAction;
|
|
945
|
+
};
|
|
946
|
+
|
|
857
947
|
export type RoutesLocale = {
|
|
858
948
|
redirect?: { [k: string]: string } | undefined;
|
|
859
949
|
cookie?: string | undefined;
|
|
@@ -874,6 +964,7 @@ export type CancelDeploymentRoutes1 = {
|
|
|
874
964
|
missing?:
|
|
875
965
|
| Array<CancelDeploymentMissing1 | CancelDeploymentMissing2>
|
|
876
966
|
| undefined;
|
|
967
|
+
mitigate?: CancelDeploymentRoutesMitigate | undefined;
|
|
877
968
|
locale?: RoutesLocale | undefined;
|
|
878
969
|
/**
|
|
879
970
|
* A middleware key within the `output` key under the build result. Overrides a `middleware` definition.
|
|
@@ -5045,6 +5136,206 @@ export namespace CancelDeploymentHasDeploymentsType$ {
|
|
|
5045
5136
|
CancelDeploymentHasDeploymentsType$outboundSchema;
|
|
5046
5137
|
}
|
|
5047
5138
|
|
|
5139
|
+
/** @internal */
|
|
5140
|
+
export const CancelDeploymentValueDeploymentsEq$inboundSchema: z.ZodType<
|
|
5141
|
+
CancelDeploymentValueDeploymentsEq,
|
|
5142
|
+
z.ZodTypeDef,
|
|
5143
|
+
unknown
|
|
5144
|
+
> = z.union([z.string(), z.number()]);
|
|
5145
|
+
|
|
5146
|
+
/** @internal */
|
|
5147
|
+
export type CancelDeploymentValueDeploymentsEq$Outbound = string | number;
|
|
5148
|
+
|
|
5149
|
+
/** @internal */
|
|
5150
|
+
export const CancelDeploymentValueDeploymentsEq$outboundSchema: z.ZodType<
|
|
5151
|
+
CancelDeploymentValueDeploymentsEq$Outbound,
|
|
5152
|
+
z.ZodTypeDef,
|
|
5153
|
+
CancelDeploymentValueDeploymentsEq
|
|
5154
|
+
> = z.union([z.string(), z.number()]);
|
|
5155
|
+
|
|
5156
|
+
/**
|
|
5157
|
+
* @internal
|
|
5158
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5159
|
+
*/
|
|
5160
|
+
export namespace CancelDeploymentValueDeploymentsEq$ {
|
|
5161
|
+
/** @deprecated use `CancelDeploymentValueDeploymentsEq$inboundSchema` instead. */
|
|
5162
|
+
export const inboundSchema = CancelDeploymentValueDeploymentsEq$inboundSchema;
|
|
5163
|
+
/** @deprecated use `CancelDeploymentValueDeploymentsEq$outboundSchema` instead. */
|
|
5164
|
+
export const outboundSchema =
|
|
5165
|
+
CancelDeploymentValueDeploymentsEq$outboundSchema;
|
|
5166
|
+
/** @deprecated use `CancelDeploymentValueDeploymentsEq$Outbound` instead. */
|
|
5167
|
+
export type Outbound = CancelDeploymentValueDeploymentsEq$Outbound;
|
|
5168
|
+
}
|
|
5169
|
+
|
|
5170
|
+
export function cancelDeploymentValueDeploymentsEqToJSON(
|
|
5171
|
+
cancelDeploymentValueDeploymentsEq: CancelDeploymentValueDeploymentsEq,
|
|
5172
|
+
): string {
|
|
5173
|
+
return JSON.stringify(
|
|
5174
|
+
CancelDeploymentValueDeploymentsEq$outboundSchema.parse(
|
|
5175
|
+
cancelDeploymentValueDeploymentsEq,
|
|
5176
|
+
),
|
|
5177
|
+
);
|
|
5178
|
+
}
|
|
5179
|
+
|
|
5180
|
+
export function cancelDeploymentValueDeploymentsEqFromJSON(
|
|
5181
|
+
jsonString: string,
|
|
5182
|
+
): SafeParseResult<CancelDeploymentValueDeploymentsEq, SDKValidationError> {
|
|
5183
|
+
return safeParse(
|
|
5184
|
+
jsonString,
|
|
5185
|
+
(x) =>
|
|
5186
|
+
CancelDeploymentValueDeploymentsEq$inboundSchema.parse(JSON.parse(x)),
|
|
5187
|
+
`Failed to parse 'CancelDeploymentValueDeploymentsEq' from JSON`,
|
|
5188
|
+
);
|
|
5189
|
+
}
|
|
5190
|
+
|
|
5191
|
+
/** @internal */
|
|
5192
|
+
export const CancelDeploymentValueDeployments2$inboundSchema: z.ZodType<
|
|
5193
|
+
CancelDeploymentValueDeployments2,
|
|
5194
|
+
z.ZodTypeDef,
|
|
5195
|
+
unknown
|
|
5196
|
+
> = z.object({
|
|
5197
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
5198
|
+
neq: z.string().optional(),
|
|
5199
|
+
inc: z.array(z.string()).optional(),
|
|
5200
|
+
ninc: z.array(z.string()).optional(),
|
|
5201
|
+
pre: z.string().optional(),
|
|
5202
|
+
suf: z.string().optional(),
|
|
5203
|
+
re: z.string().optional(),
|
|
5204
|
+
gt: z.number().optional(),
|
|
5205
|
+
gte: z.number().optional(),
|
|
5206
|
+
lt: z.number().optional(),
|
|
5207
|
+
lte: z.number().optional(),
|
|
5208
|
+
});
|
|
5209
|
+
|
|
5210
|
+
/** @internal */
|
|
5211
|
+
export type CancelDeploymentValueDeployments2$Outbound = {
|
|
5212
|
+
eq?: string | number | undefined;
|
|
5213
|
+
neq?: string | undefined;
|
|
5214
|
+
inc?: Array<string> | undefined;
|
|
5215
|
+
ninc?: Array<string> | undefined;
|
|
5216
|
+
pre?: string | undefined;
|
|
5217
|
+
suf?: string | undefined;
|
|
5218
|
+
re?: string | undefined;
|
|
5219
|
+
gt?: number | undefined;
|
|
5220
|
+
gte?: number | undefined;
|
|
5221
|
+
lt?: number | undefined;
|
|
5222
|
+
lte?: number | undefined;
|
|
5223
|
+
};
|
|
5224
|
+
|
|
5225
|
+
/** @internal */
|
|
5226
|
+
export const CancelDeploymentValueDeployments2$outboundSchema: z.ZodType<
|
|
5227
|
+
CancelDeploymentValueDeployments2$Outbound,
|
|
5228
|
+
z.ZodTypeDef,
|
|
5229
|
+
CancelDeploymentValueDeployments2
|
|
5230
|
+
> = z.object({
|
|
5231
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
5232
|
+
neq: z.string().optional(),
|
|
5233
|
+
inc: z.array(z.string()).optional(),
|
|
5234
|
+
ninc: z.array(z.string()).optional(),
|
|
5235
|
+
pre: z.string().optional(),
|
|
5236
|
+
suf: z.string().optional(),
|
|
5237
|
+
re: z.string().optional(),
|
|
5238
|
+
gt: z.number().optional(),
|
|
5239
|
+
gte: z.number().optional(),
|
|
5240
|
+
lt: z.number().optional(),
|
|
5241
|
+
lte: z.number().optional(),
|
|
5242
|
+
});
|
|
5243
|
+
|
|
5244
|
+
/**
|
|
5245
|
+
* @internal
|
|
5246
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5247
|
+
*/
|
|
5248
|
+
export namespace CancelDeploymentValueDeployments2$ {
|
|
5249
|
+
/** @deprecated use `CancelDeploymentValueDeployments2$inboundSchema` instead. */
|
|
5250
|
+
export const inboundSchema = CancelDeploymentValueDeployments2$inboundSchema;
|
|
5251
|
+
/** @deprecated use `CancelDeploymentValueDeployments2$outboundSchema` instead. */
|
|
5252
|
+
export const outboundSchema =
|
|
5253
|
+
CancelDeploymentValueDeployments2$outboundSchema;
|
|
5254
|
+
/** @deprecated use `CancelDeploymentValueDeployments2$Outbound` instead. */
|
|
5255
|
+
export type Outbound = CancelDeploymentValueDeployments2$Outbound;
|
|
5256
|
+
}
|
|
5257
|
+
|
|
5258
|
+
export function cancelDeploymentValueDeployments2ToJSON(
|
|
5259
|
+
cancelDeploymentValueDeployments2: CancelDeploymentValueDeployments2,
|
|
5260
|
+
): string {
|
|
5261
|
+
return JSON.stringify(
|
|
5262
|
+
CancelDeploymentValueDeployments2$outboundSchema.parse(
|
|
5263
|
+
cancelDeploymentValueDeployments2,
|
|
5264
|
+
),
|
|
5265
|
+
);
|
|
5266
|
+
}
|
|
5267
|
+
|
|
5268
|
+
export function cancelDeploymentValueDeployments2FromJSON(
|
|
5269
|
+
jsonString: string,
|
|
5270
|
+
): SafeParseResult<CancelDeploymentValueDeployments2, SDKValidationError> {
|
|
5271
|
+
return safeParse(
|
|
5272
|
+
jsonString,
|
|
5273
|
+
(x) => CancelDeploymentValueDeployments2$inboundSchema.parse(JSON.parse(x)),
|
|
5274
|
+
`Failed to parse 'CancelDeploymentValueDeployments2' from JSON`,
|
|
5275
|
+
);
|
|
5276
|
+
}
|
|
5277
|
+
|
|
5278
|
+
/** @internal */
|
|
5279
|
+
export const CancelDeploymentHasDeploymentsValue$inboundSchema: z.ZodType<
|
|
5280
|
+
CancelDeploymentHasDeploymentsValue,
|
|
5281
|
+
z.ZodTypeDef,
|
|
5282
|
+
unknown
|
|
5283
|
+
> = z.union([
|
|
5284
|
+
z.lazy(() => CancelDeploymentValueDeployments2$inboundSchema),
|
|
5285
|
+
z.string(),
|
|
5286
|
+
]);
|
|
5287
|
+
|
|
5288
|
+
/** @internal */
|
|
5289
|
+
export type CancelDeploymentHasDeploymentsValue$Outbound =
|
|
5290
|
+
| CancelDeploymentValueDeployments2$Outbound
|
|
5291
|
+
| string;
|
|
5292
|
+
|
|
5293
|
+
/** @internal */
|
|
5294
|
+
export const CancelDeploymentHasDeploymentsValue$outboundSchema: z.ZodType<
|
|
5295
|
+
CancelDeploymentHasDeploymentsValue$Outbound,
|
|
5296
|
+
z.ZodTypeDef,
|
|
5297
|
+
CancelDeploymentHasDeploymentsValue
|
|
5298
|
+
> = z.union([
|
|
5299
|
+
z.lazy(() => CancelDeploymentValueDeployments2$outboundSchema),
|
|
5300
|
+
z.string(),
|
|
5301
|
+
]);
|
|
5302
|
+
|
|
5303
|
+
/**
|
|
5304
|
+
* @internal
|
|
5305
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5306
|
+
*/
|
|
5307
|
+
export namespace CancelDeploymentHasDeploymentsValue$ {
|
|
5308
|
+
/** @deprecated use `CancelDeploymentHasDeploymentsValue$inboundSchema` instead. */
|
|
5309
|
+
export const inboundSchema =
|
|
5310
|
+
CancelDeploymentHasDeploymentsValue$inboundSchema;
|
|
5311
|
+
/** @deprecated use `CancelDeploymentHasDeploymentsValue$outboundSchema` instead. */
|
|
5312
|
+
export const outboundSchema =
|
|
5313
|
+
CancelDeploymentHasDeploymentsValue$outboundSchema;
|
|
5314
|
+
/** @deprecated use `CancelDeploymentHasDeploymentsValue$Outbound` instead. */
|
|
5315
|
+
export type Outbound = CancelDeploymentHasDeploymentsValue$Outbound;
|
|
5316
|
+
}
|
|
5317
|
+
|
|
5318
|
+
export function cancelDeploymentHasDeploymentsValueToJSON(
|
|
5319
|
+
cancelDeploymentHasDeploymentsValue: CancelDeploymentHasDeploymentsValue,
|
|
5320
|
+
): string {
|
|
5321
|
+
return JSON.stringify(
|
|
5322
|
+
CancelDeploymentHasDeploymentsValue$outboundSchema.parse(
|
|
5323
|
+
cancelDeploymentHasDeploymentsValue,
|
|
5324
|
+
),
|
|
5325
|
+
);
|
|
5326
|
+
}
|
|
5327
|
+
|
|
5328
|
+
export function cancelDeploymentHasDeploymentsValueFromJSON(
|
|
5329
|
+
jsonString: string,
|
|
5330
|
+
): SafeParseResult<CancelDeploymentHasDeploymentsValue, SDKValidationError> {
|
|
5331
|
+
return safeParse(
|
|
5332
|
+
jsonString,
|
|
5333
|
+
(x) =>
|
|
5334
|
+
CancelDeploymentHasDeploymentsValue$inboundSchema.parse(JSON.parse(x)),
|
|
5335
|
+
`Failed to parse 'CancelDeploymentHasDeploymentsValue' from JSON`,
|
|
5336
|
+
);
|
|
5337
|
+
}
|
|
5338
|
+
|
|
5048
5339
|
/** @internal */
|
|
5049
5340
|
export const CancelDeploymentHas2$inboundSchema: z.ZodType<
|
|
5050
5341
|
CancelDeploymentHas2,
|
|
@@ -5053,14 +5344,17 @@ export const CancelDeploymentHas2$inboundSchema: z.ZodType<
|
|
|
5053
5344
|
> = z.object({
|
|
5054
5345
|
type: CancelDeploymentHasDeploymentsType$inboundSchema,
|
|
5055
5346
|
key: z.string(),
|
|
5056
|
-
value: z.
|
|
5347
|
+
value: z.union([
|
|
5348
|
+
z.lazy(() => CancelDeploymentValueDeployments2$inboundSchema),
|
|
5349
|
+
z.string(),
|
|
5350
|
+
]).optional(),
|
|
5057
5351
|
});
|
|
5058
5352
|
|
|
5059
5353
|
/** @internal */
|
|
5060
5354
|
export type CancelDeploymentHas2$Outbound = {
|
|
5061
5355
|
type: string;
|
|
5062
5356
|
key: string;
|
|
5063
|
-
value?: string | undefined;
|
|
5357
|
+
value?: CancelDeploymentValueDeployments2$Outbound | string | undefined;
|
|
5064
5358
|
};
|
|
5065
5359
|
|
|
5066
5360
|
/** @internal */
|
|
@@ -5071,7 +5365,10 @@ export const CancelDeploymentHas2$outboundSchema: z.ZodType<
|
|
|
5071
5365
|
> = z.object({
|
|
5072
5366
|
type: CancelDeploymentHasDeploymentsType$outboundSchema,
|
|
5073
5367
|
key: z.string(),
|
|
5074
|
-
value: z.
|
|
5368
|
+
value: z.union([
|
|
5369
|
+
z.lazy(() => CancelDeploymentValueDeployments2$outboundSchema),
|
|
5370
|
+
z.string(),
|
|
5371
|
+
]).optional(),
|
|
5075
5372
|
});
|
|
5076
5373
|
|
|
5077
5374
|
/**
|
|
@@ -5126,6 +5423,188 @@ export namespace CancelDeploymentHasType$ {
|
|
|
5126
5423
|
export const outboundSchema = CancelDeploymentHasType$outboundSchema;
|
|
5127
5424
|
}
|
|
5128
5425
|
|
|
5426
|
+
/** @internal */
|
|
5427
|
+
export const CancelDeploymentValueEq$inboundSchema: z.ZodType<
|
|
5428
|
+
CancelDeploymentValueEq,
|
|
5429
|
+
z.ZodTypeDef,
|
|
5430
|
+
unknown
|
|
5431
|
+
> = z.union([z.string(), z.number()]);
|
|
5432
|
+
|
|
5433
|
+
/** @internal */
|
|
5434
|
+
export type CancelDeploymentValueEq$Outbound = string | number;
|
|
5435
|
+
|
|
5436
|
+
/** @internal */
|
|
5437
|
+
export const CancelDeploymentValueEq$outboundSchema: z.ZodType<
|
|
5438
|
+
CancelDeploymentValueEq$Outbound,
|
|
5439
|
+
z.ZodTypeDef,
|
|
5440
|
+
CancelDeploymentValueEq
|
|
5441
|
+
> = z.union([z.string(), z.number()]);
|
|
5442
|
+
|
|
5443
|
+
/**
|
|
5444
|
+
* @internal
|
|
5445
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5446
|
+
*/
|
|
5447
|
+
export namespace CancelDeploymentValueEq$ {
|
|
5448
|
+
/** @deprecated use `CancelDeploymentValueEq$inboundSchema` instead. */
|
|
5449
|
+
export const inboundSchema = CancelDeploymentValueEq$inboundSchema;
|
|
5450
|
+
/** @deprecated use `CancelDeploymentValueEq$outboundSchema` instead. */
|
|
5451
|
+
export const outboundSchema = CancelDeploymentValueEq$outboundSchema;
|
|
5452
|
+
/** @deprecated use `CancelDeploymentValueEq$Outbound` instead. */
|
|
5453
|
+
export type Outbound = CancelDeploymentValueEq$Outbound;
|
|
5454
|
+
}
|
|
5455
|
+
|
|
5456
|
+
export function cancelDeploymentValueEqToJSON(
|
|
5457
|
+
cancelDeploymentValueEq: CancelDeploymentValueEq,
|
|
5458
|
+
): string {
|
|
5459
|
+
return JSON.stringify(
|
|
5460
|
+
CancelDeploymentValueEq$outboundSchema.parse(cancelDeploymentValueEq),
|
|
5461
|
+
);
|
|
5462
|
+
}
|
|
5463
|
+
|
|
5464
|
+
export function cancelDeploymentValueEqFromJSON(
|
|
5465
|
+
jsonString: string,
|
|
5466
|
+
): SafeParseResult<CancelDeploymentValueEq, SDKValidationError> {
|
|
5467
|
+
return safeParse(
|
|
5468
|
+
jsonString,
|
|
5469
|
+
(x) => CancelDeploymentValueEq$inboundSchema.parse(JSON.parse(x)),
|
|
5470
|
+
`Failed to parse 'CancelDeploymentValueEq' from JSON`,
|
|
5471
|
+
);
|
|
5472
|
+
}
|
|
5473
|
+
|
|
5474
|
+
/** @internal */
|
|
5475
|
+
export const CancelDeploymentValue2$inboundSchema: z.ZodType<
|
|
5476
|
+
CancelDeploymentValue2,
|
|
5477
|
+
z.ZodTypeDef,
|
|
5478
|
+
unknown
|
|
5479
|
+
> = z.object({
|
|
5480
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
5481
|
+
neq: z.string().optional(),
|
|
5482
|
+
inc: z.array(z.string()).optional(),
|
|
5483
|
+
ninc: z.array(z.string()).optional(),
|
|
5484
|
+
pre: z.string().optional(),
|
|
5485
|
+
suf: z.string().optional(),
|
|
5486
|
+
re: z.string().optional(),
|
|
5487
|
+
gt: z.number().optional(),
|
|
5488
|
+
gte: z.number().optional(),
|
|
5489
|
+
lt: z.number().optional(),
|
|
5490
|
+
lte: z.number().optional(),
|
|
5491
|
+
});
|
|
5492
|
+
|
|
5493
|
+
/** @internal */
|
|
5494
|
+
export type CancelDeploymentValue2$Outbound = {
|
|
5495
|
+
eq?: string | number | undefined;
|
|
5496
|
+
neq?: string | undefined;
|
|
5497
|
+
inc?: Array<string> | undefined;
|
|
5498
|
+
ninc?: Array<string> | undefined;
|
|
5499
|
+
pre?: string | undefined;
|
|
5500
|
+
suf?: string | undefined;
|
|
5501
|
+
re?: string | undefined;
|
|
5502
|
+
gt?: number | undefined;
|
|
5503
|
+
gte?: number | undefined;
|
|
5504
|
+
lt?: number | undefined;
|
|
5505
|
+
lte?: number | undefined;
|
|
5506
|
+
};
|
|
5507
|
+
|
|
5508
|
+
/** @internal */
|
|
5509
|
+
export const CancelDeploymentValue2$outboundSchema: z.ZodType<
|
|
5510
|
+
CancelDeploymentValue2$Outbound,
|
|
5511
|
+
z.ZodTypeDef,
|
|
5512
|
+
CancelDeploymentValue2
|
|
5513
|
+
> = z.object({
|
|
5514
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
5515
|
+
neq: z.string().optional(),
|
|
5516
|
+
inc: z.array(z.string()).optional(),
|
|
5517
|
+
ninc: z.array(z.string()).optional(),
|
|
5518
|
+
pre: z.string().optional(),
|
|
5519
|
+
suf: z.string().optional(),
|
|
5520
|
+
re: z.string().optional(),
|
|
5521
|
+
gt: z.number().optional(),
|
|
5522
|
+
gte: z.number().optional(),
|
|
5523
|
+
lt: z.number().optional(),
|
|
5524
|
+
lte: z.number().optional(),
|
|
5525
|
+
});
|
|
5526
|
+
|
|
5527
|
+
/**
|
|
5528
|
+
* @internal
|
|
5529
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5530
|
+
*/
|
|
5531
|
+
export namespace CancelDeploymentValue2$ {
|
|
5532
|
+
/** @deprecated use `CancelDeploymentValue2$inboundSchema` instead. */
|
|
5533
|
+
export const inboundSchema = CancelDeploymentValue2$inboundSchema;
|
|
5534
|
+
/** @deprecated use `CancelDeploymentValue2$outboundSchema` instead. */
|
|
5535
|
+
export const outboundSchema = CancelDeploymentValue2$outboundSchema;
|
|
5536
|
+
/** @deprecated use `CancelDeploymentValue2$Outbound` instead. */
|
|
5537
|
+
export type Outbound = CancelDeploymentValue2$Outbound;
|
|
5538
|
+
}
|
|
5539
|
+
|
|
5540
|
+
export function cancelDeploymentValue2ToJSON(
|
|
5541
|
+
cancelDeploymentValue2: CancelDeploymentValue2,
|
|
5542
|
+
): string {
|
|
5543
|
+
return JSON.stringify(
|
|
5544
|
+
CancelDeploymentValue2$outboundSchema.parse(cancelDeploymentValue2),
|
|
5545
|
+
);
|
|
5546
|
+
}
|
|
5547
|
+
|
|
5548
|
+
export function cancelDeploymentValue2FromJSON(
|
|
5549
|
+
jsonString: string,
|
|
5550
|
+
): SafeParseResult<CancelDeploymentValue2, SDKValidationError> {
|
|
5551
|
+
return safeParse(
|
|
5552
|
+
jsonString,
|
|
5553
|
+
(x) => CancelDeploymentValue2$inboundSchema.parse(JSON.parse(x)),
|
|
5554
|
+
`Failed to parse 'CancelDeploymentValue2' from JSON`,
|
|
5555
|
+
);
|
|
5556
|
+
}
|
|
5557
|
+
|
|
5558
|
+
/** @internal */
|
|
5559
|
+
export const CancelDeploymentHasValue$inboundSchema: z.ZodType<
|
|
5560
|
+
CancelDeploymentHasValue,
|
|
5561
|
+
z.ZodTypeDef,
|
|
5562
|
+
unknown
|
|
5563
|
+
> = z.union([z.lazy(() => CancelDeploymentValue2$inboundSchema), z.string()]);
|
|
5564
|
+
|
|
5565
|
+
/** @internal */
|
|
5566
|
+
export type CancelDeploymentHasValue$Outbound =
|
|
5567
|
+
| CancelDeploymentValue2$Outbound
|
|
5568
|
+
| string;
|
|
5569
|
+
|
|
5570
|
+
/** @internal */
|
|
5571
|
+
export const CancelDeploymentHasValue$outboundSchema: z.ZodType<
|
|
5572
|
+
CancelDeploymentHasValue$Outbound,
|
|
5573
|
+
z.ZodTypeDef,
|
|
5574
|
+
CancelDeploymentHasValue
|
|
5575
|
+
> = z.union([z.lazy(() => CancelDeploymentValue2$outboundSchema), z.string()]);
|
|
5576
|
+
|
|
5577
|
+
/**
|
|
5578
|
+
* @internal
|
|
5579
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5580
|
+
*/
|
|
5581
|
+
export namespace CancelDeploymentHasValue$ {
|
|
5582
|
+
/** @deprecated use `CancelDeploymentHasValue$inboundSchema` instead. */
|
|
5583
|
+
export const inboundSchema = CancelDeploymentHasValue$inboundSchema;
|
|
5584
|
+
/** @deprecated use `CancelDeploymentHasValue$outboundSchema` instead. */
|
|
5585
|
+
export const outboundSchema = CancelDeploymentHasValue$outboundSchema;
|
|
5586
|
+
/** @deprecated use `CancelDeploymentHasValue$Outbound` instead. */
|
|
5587
|
+
export type Outbound = CancelDeploymentHasValue$Outbound;
|
|
5588
|
+
}
|
|
5589
|
+
|
|
5590
|
+
export function cancelDeploymentHasValueToJSON(
|
|
5591
|
+
cancelDeploymentHasValue: CancelDeploymentHasValue,
|
|
5592
|
+
): string {
|
|
5593
|
+
return JSON.stringify(
|
|
5594
|
+
CancelDeploymentHasValue$outboundSchema.parse(cancelDeploymentHasValue),
|
|
5595
|
+
);
|
|
5596
|
+
}
|
|
5597
|
+
|
|
5598
|
+
export function cancelDeploymentHasValueFromJSON(
|
|
5599
|
+
jsonString: string,
|
|
5600
|
+
): SafeParseResult<CancelDeploymentHasValue, SDKValidationError> {
|
|
5601
|
+
return safeParse(
|
|
5602
|
+
jsonString,
|
|
5603
|
+
(x) => CancelDeploymentHasValue$inboundSchema.parse(JSON.parse(x)),
|
|
5604
|
+
`Failed to parse 'CancelDeploymentHasValue' from JSON`,
|
|
5605
|
+
);
|
|
5606
|
+
}
|
|
5607
|
+
|
|
5129
5608
|
/** @internal */
|
|
5130
5609
|
export const CancelDeploymentHas1$inboundSchema: z.ZodType<
|
|
5131
5610
|
CancelDeploymentHas1,
|
|
@@ -5133,13 +5612,16 @@ export const CancelDeploymentHas1$inboundSchema: z.ZodType<
|
|
|
5133
5612
|
unknown
|
|
5134
5613
|
> = z.object({
|
|
5135
5614
|
type: CancelDeploymentHasType$inboundSchema,
|
|
5136
|
-
value: z.
|
|
5615
|
+
value: z.union([
|
|
5616
|
+
z.lazy(() => CancelDeploymentValue2$inboundSchema),
|
|
5617
|
+
z.string(),
|
|
5618
|
+
]),
|
|
5137
5619
|
});
|
|
5138
5620
|
|
|
5139
5621
|
/** @internal */
|
|
5140
5622
|
export type CancelDeploymentHas1$Outbound = {
|
|
5141
5623
|
type: string;
|
|
5142
|
-
value: string;
|
|
5624
|
+
value: CancelDeploymentValue2$Outbound | string;
|
|
5143
5625
|
};
|
|
5144
5626
|
|
|
5145
5627
|
/** @internal */
|
|
@@ -5149,7 +5631,10 @@ export const CancelDeploymentHas1$outboundSchema: z.ZodType<
|
|
|
5149
5631
|
CancelDeploymentHas1
|
|
5150
5632
|
> = z.object({
|
|
5151
5633
|
type: CancelDeploymentHasType$outboundSchema,
|
|
5152
|
-
value: z.
|
|
5634
|
+
value: z.union([
|
|
5635
|
+
z.lazy(() => CancelDeploymentValue2$outboundSchema),
|
|
5636
|
+
z.string(),
|
|
5637
|
+
]),
|
|
5153
5638
|
});
|
|
5154
5639
|
|
|
5155
5640
|
/**
|
|
@@ -5263,6 +5748,233 @@ export namespace CancelDeploymentMissingDeploymentsType$ {
|
|
|
5263
5748
|
CancelDeploymentMissingDeploymentsType$outboundSchema;
|
|
5264
5749
|
}
|
|
5265
5750
|
|
|
5751
|
+
/** @internal */
|
|
5752
|
+
export const CancelDeploymentValueDeploymentsResponse200Eq$inboundSchema:
|
|
5753
|
+
z.ZodType<
|
|
5754
|
+
CancelDeploymentValueDeploymentsResponse200Eq,
|
|
5755
|
+
z.ZodTypeDef,
|
|
5756
|
+
unknown
|
|
5757
|
+
> = z.union([z.string(), z.number()]);
|
|
5758
|
+
|
|
5759
|
+
/** @internal */
|
|
5760
|
+
export type CancelDeploymentValueDeploymentsResponse200Eq$Outbound =
|
|
5761
|
+
| string
|
|
5762
|
+
| number;
|
|
5763
|
+
|
|
5764
|
+
/** @internal */
|
|
5765
|
+
export const CancelDeploymentValueDeploymentsResponse200Eq$outboundSchema:
|
|
5766
|
+
z.ZodType<
|
|
5767
|
+
CancelDeploymentValueDeploymentsResponse200Eq$Outbound,
|
|
5768
|
+
z.ZodTypeDef,
|
|
5769
|
+
CancelDeploymentValueDeploymentsResponse200Eq
|
|
5770
|
+
> = z.union([z.string(), z.number()]);
|
|
5771
|
+
|
|
5772
|
+
/**
|
|
5773
|
+
* @internal
|
|
5774
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5775
|
+
*/
|
|
5776
|
+
export namespace CancelDeploymentValueDeploymentsResponse200Eq$ {
|
|
5777
|
+
/** @deprecated use `CancelDeploymentValueDeploymentsResponse200Eq$inboundSchema` instead. */
|
|
5778
|
+
export const inboundSchema =
|
|
5779
|
+
CancelDeploymentValueDeploymentsResponse200Eq$inboundSchema;
|
|
5780
|
+
/** @deprecated use `CancelDeploymentValueDeploymentsResponse200Eq$outboundSchema` instead. */
|
|
5781
|
+
export const outboundSchema =
|
|
5782
|
+
CancelDeploymentValueDeploymentsResponse200Eq$outboundSchema;
|
|
5783
|
+
/** @deprecated use `CancelDeploymentValueDeploymentsResponse200Eq$Outbound` instead. */
|
|
5784
|
+
export type Outbound = CancelDeploymentValueDeploymentsResponse200Eq$Outbound;
|
|
5785
|
+
}
|
|
5786
|
+
|
|
5787
|
+
export function cancelDeploymentValueDeploymentsResponse200EqToJSON(
|
|
5788
|
+
cancelDeploymentValueDeploymentsResponse200Eq:
|
|
5789
|
+
CancelDeploymentValueDeploymentsResponse200Eq,
|
|
5790
|
+
): string {
|
|
5791
|
+
return JSON.stringify(
|
|
5792
|
+
CancelDeploymentValueDeploymentsResponse200Eq$outboundSchema.parse(
|
|
5793
|
+
cancelDeploymentValueDeploymentsResponse200Eq,
|
|
5794
|
+
),
|
|
5795
|
+
);
|
|
5796
|
+
}
|
|
5797
|
+
|
|
5798
|
+
export function cancelDeploymentValueDeploymentsResponse200EqFromJSON(
|
|
5799
|
+
jsonString: string,
|
|
5800
|
+
): SafeParseResult<
|
|
5801
|
+
CancelDeploymentValueDeploymentsResponse200Eq,
|
|
5802
|
+
SDKValidationError
|
|
5803
|
+
> {
|
|
5804
|
+
return safeParse(
|
|
5805
|
+
jsonString,
|
|
5806
|
+
(x) =>
|
|
5807
|
+
CancelDeploymentValueDeploymentsResponse200Eq$inboundSchema.parse(
|
|
5808
|
+
JSON.parse(x),
|
|
5809
|
+
),
|
|
5810
|
+
`Failed to parse 'CancelDeploymentValueDeploymentsResponse200Eq' from JSON`,
|
|
5811
|
+
);
|
|
5812
|
+
}
|
|
5813
|
+
|
|
5814
|
+
/** @internal */
|
|
5815
|
+
export const CancelDeploymentValueDeploymentsResponse2002$inboundSchema:
|
|
5816
|
+
z.ZodType<
|
|
5817
|
+
CancelDeploymentValueDeploymentsResponse2002,
|
|
5818
|
+
z.ZodTypeDef,
|
|
5819
|
+
unknown
|
|
5820
|
+
> = z.object({
|
|
5821
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
5822
|
+
neq: z.string().optional(),
|
|
5823
|
+
inc: z.array(z.string()).optional(),
|
|
5824
|
+
ninc: z.array(z.string()).optional(),
|
|
5825
|
+
pre: z.string().optional(),
|
|
5826
|
+
suf: z.string().optional(),
|
|
5827
|
+
re: z.string().optional(),
|
|
5828
|
+
gt: z.number().optional(),
|
|
5829
|
+
gte: z.number().optional(),
|
|
5830
|
+
lt: z.number().optional(),
|
|
5831
|
+
lte: z.number().optional(),
|
|
5832
|
+
});
|
|
5833
|
+
|
|
5834
|
+
/** @internal */
|
|
5835
|
+
export type CancelDeploymentValueDeploymentsResponse2002$Outbound = {
|
|
5836
|
+
eq?: string | number | undefined;
|
|
5837
|
+
neq?: string | undefined;
|
|
5838
|
+
inc?: Array<string> | undefined;
|
|
5839
|
+
ninc?: Array<string> | undefined;
|
|
5840
|
+
pre?: string | undefined;
|
|
5841
|
+
suf?: string | undefined;
|
|
5842
|
+
re?: string | undefined;
|
|
5843
|
+
gt?: number | undefined;
|
|
5844
|
+
gte?: number | undefined;
|
|
5845
|
+
lt?: number | undefined;
|
|
5846
|
+
lte?: number | undefined;
|
|
5847
|
+
};
|
|
5848
|
+
|
|
5849
|
+
/** @internal */
|
|
5850
|
+
export const CancelDeploymentValueDeploymentsResponse2002$outboundSchema:
|
|
5851
|
+
z.ZodType<
|
|
5852
|
+
CancelDeploymentValueDeploymentsResponse2002$Outbound,
|
|
5853
|
+
z.ZodTypeDef,
|
|
5854
|
+
CancelDeploymentValueDeploymentsResponse2002
|
|
5855
|
+
> = z.object({
|
|
5856
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
5857
|
+
neq: z.string().optional(),
|
|
5858
|
+
inc: z.array(z.string()).optional(),
|
|
5859
|
+
ninc: z.array(z.string()).optional(),
|
|
5860
|
+
pre: z.string().optional(),
|
|
5861
|
+
suf: z.string().optional(),
|
|
5862
|
+
re: z.string().optional(),
|
|
5863
|
+
gt: z.number().optional(),
|
|
5864
|
+
gte: z.number().optional(),
|
|
5865
|
+
lt: z.number().optional(),
|
|
5866
|
+
lte: z.number().optional(),
|
|
5867
|
+
});
|
|
5868
|
+
|
|
5869
|
+
/**
|
|
5870
|
+
* @internal
|
|
5871
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5872
|
+
*/
|
|
5873
|
+
export namespace CancelDeploymentValueDeploymentsResponse2002$ {
|
|
5874
|
+
/** @deprecated use `CancelDeploymentValueDeploymentsResponse2002$inboundSchema` instead. */
|
|
5875
|
+
export const inboundSchema =
|
|
5876
|
+
CancelDeploymentValueDeploymentsResponse2002$inboundSchema;
|
|
5877
|
+
/** @deprecated use `CancelDeploymentValueDeploymentsResponse2002$outboundSchema` instead. */
|
|
5878
|
+
export const outboundSchema =
|
|
5879
|
+
CancelDeploymentValueDeploymentsResponse2002$outboundSchema;
|
|
5880
|
+
/** @deprecated use `CancelDeploymentValueDeploymentsResponse2002$Outbound` instead. */
|
|
5881
|
+
export type Outbound = CancelDeploymentValueDeploymentsResponse2002$Outbound;
|
|
5882
|
+
}
|
|
5883
|
+
|
|
5884
|
+
export function cancelDeploymentValueDeploymentsResponse2002ToJSON(
|
|
5885
|
+
cancelDeploymentValueDeploymentsResponse2002:
|
|
5886
|
+
CancelDeploymentValueDeploymentsResponse2002,
|
|
5887
|
+
): string {
|
|
5888
|
+
return JSON.stringify(
|
|
5889
|
+
CancelDeploymentValueDeploymentsResponse2002$outboundSchema.parse(
|
|
5890
|
+
cancelDeploymentValueDeploymentsResponse2002,
|
|
5891
|
+
),
|
|
5892
|
+
);
|
|
5893
|
+
}
|
|
5894
|
+
|
|
5895
|
+
export function cancelDeploymentValueDeploymentsResponse2002FromJSON(
|
|
5896
|
+
jsonString: string,
|
|
5897
|
+
): SafeParseResult<
|
|
5898
|
+
CancelDeploymentValueDeploymentsResponse2002,
|
|
5899
|
+
SDKValidationError
|
|
5900
|
+
> {
|
|
5901
|
+
return safeParse(
|
|
5902
|
+
jsonString,
|
|
5903
|
+
(x) =>
|
|
5904
|
+
CancelDeploymentValueDeploymentsResponse2002$inboundSchema.parse(
|
|
5905
|
+
JSON.parse(x),
|
|
5906
|
+
),
|
|
5907
|
+
`Failed to parse 'CancelDeploymentValueDeploymentsResponse2002' from JSON`,
|
|
5908
|
+
);
|
|
5909
|
+
}
|
|
5910
|
+
|
|
5911
|
+
/** @internal */
|
|
5912
|
+
export const CancelDeploymentMissingDeploymentsValue$inboundSchema: z.ZodType<
|
|
5913
|
+
CancelDeploymentMissingDeploymentsValue,
|
|
5914
|
+
z.ZodTypeDef,
|
|
5915
|
+
unknown
|
|
5916
|
+
> = z.union([
|
|
5917
|
+
z.lazy(() => CancelDeploymentValueDeploymentsResponse2002$inboundSchema),
|
|
5918
|
+
z.string(),
|
|
5919
|
+
]);
|
|
5920
|
+
|
|
5921
|
+
/** @internal */
|
|
5922
|
+
export type CancelDeploymentMissingDeploymentsValue$Outbound =
|
|
5923
|
+
| CancelDeploymentValueDeploymentsResponse2002$Outbound
|
|
5924
|
+
| string;
|
|
5925
|
+
|
|
5926
|
+
/** @internal */
|
|
5927
|
+
export const CancelDeploymentMissingDeploymentsValue$outboundSchema: z.ZodType<
|
|
5928
|
+
CancelDeploymentMissingDeploymentsValue$Outbound,
|
|
5929
|
+
z.ZodTypeDef,
|
|
5930
|
+
CancelDeploymentMissingDeploymentsValue
|
|
5931
|
+
> = z.union([
|
|
5932
|
+
z.lazy(() => CancelDeploymentValueDeploymentsResponse2002$outboundSchema),
|
|
5933
|
+
z.string(),
|
|
5934
|
+
]);
|
|
5935
|
+
|
|
5936
|
+
/**
|
|
5937
|
+
* @internal
|
|
5938
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5939
|
+
*/
|
|
5940
|
+
export namespace CancelDeploymentMissingDeploymentsValue$ {
|
|
5941
|
+
/** @deprecated use `CancelDeploymentMissingDeploymentsValue$inboundSchema` instead. */
|
|
5942
|
+
export const inboundSchema =
|
|
5943
|
+
CancelDeploymentMissingDeploymentsValue$inboundSchema;
|
|
5944
|
+
/** @deprecated use `CancelDeploymentMissingDeploymentsValue$outboundSchema` instead. */
|
|
5945
|
+
export const outboundSchema =
|
|
5946
|
+
CancelDeploymentMissingDeploymentsValue$outboundSchema;
|
|
5947
|
+
/** @deprecated use `CancelDeploymentMissingDeploymentsValue$Outbound` instead. */
|
|
5948
|
+
export type Outbound = CancelDeploymentMissingDeploymentsValue$Outbound;
|
|
5949
|
+
}
|
|
5950
|
+
|
|
5951
|
+
export function cancelDeploymentMissingDeploymentsValueToJSON(
|
|
5952
|
+
cancelDeploymentMissingDeploymentsValue:
|
|
5953
|
+
CancelDeploymentMissingDeploymentsValue,
|
|
5954
|
+
): string {
|
|
5955
|
+
return JSON.stringify(
|
|
5956
|
+
CancelDeploymentMissingDeploymentsValue$outboundSchema.parse(
|
|
5957
|
+
cancelDeploymentMissingDeploymentsValue,
|
|
5958
|
+
),
|
|
5959
|
+
);
|
|
5960
|
+
}
|
|
5961
|
+
|
|
5962
|
+
export function cancelDeploymentMissingDeploymentsValueFromJSON(
|
|
5963
|
+
jsonString: string,
|
|
5964
|
+
): SafeParseResult<
|
|
5965
|
+
CancelDeploymentMissingDeploymentsValue,
|
|
5966
|
+
SDKValidationError
|
|
5967
|
+
> {
|
|
5968
|
+
return safeParse(
|
|
5969
|
+
jsonString,
|
|
5970
|
+
(x) =>
|
|
5971
|
+
CancelDeploymentMissingDeploymentsValue$inboundSchema.parse(
|
|
5972
|
+
JSON.parse(x),
|
|
5973
|
+
),
|
|
5974
|
+
`Failed to parse 'CancelDeploymentMissingDeploymentsValue' from JSON`,
|
|
5975
|
+
);
|
|
5976
|
+
}
|
|
5977
|
+
|
|
5266
5978
|
/** @internal */
|
|
5267
5979
|
export const CancelDeploymentMissing2$inboundSchema: z.ZodType<
|
|
5268
5980
|
CancelDeploymentMissing2,
|
|
@@ -5271,14 +5983,20 @@ export const CancelDeploymentMissing2$inboundSchema: z.ZodType<
|
|
|
5271
5983
|
> = z.object({
|
|
5272
5984
|
type: CancelDeploymentMissingDeploymentsType$inboundSchema,
|
|
5273
5985
|
key: z.string(),
|
|
5274
|
-
value: z.
|
|
5986
|
+
value: z.union([
|
|
5987
|
+
z.lazy(() => CancelDeploymentValueDeploymentsResponse2002$inboundSchema),
|
|
5988
|
+
z.string(),
|
|
5989
|
+
]).optional(),
|
|
5275
5990
|
});
|
|
5276
5991
|
|
|
5277
5992
|
/** @internal */
|
|
5278
5993
|
export type CancelDeploymentMissing2$Outbound = {
|
|
5279
5994
|
type: string;
|
|
5280
5995
|
key: string;
|
|
5281
|
-
value?:
|
|
5996
|
+
value?:
|
|
5997
|
+
| CancelDeploymentValueDeploymentsResponse2002$Outbound
|
|
5998
|
+
| string
|
|
5999
|
+
| undefined;
|
|
5282
6000
|
};
|
|
5283
6001
|
|
|
5284
6002
|
/** @internal */
|
|
@@ -5289,7 +6007,10 @@ export const CancelDeploymentMissing2$outboundSchema: z.ZodType<
|
|
|
5289
6007
|
> = z.object({
|
|
5290
6008
|
type: CancelDeploymentMissingDeploymentsType$outboundSchema,
|
|
5291
6009
|
key: z.string(),
|
|
5292
|
-
value: z.
|
|
6010
|
+
value: z.union([
|
|
6011
|
+
z.lazy(() => CancelDeploymentValueDeploymentsResponse2002$outboundSchema),
|
|
6012
|
+
z.string(),
|
|
6013
|
+
]).optional(),
|
|
5293
6014
|
});
|
|
5294
6015
|
|
|
5295
6016
|
/**
|
|
@@ -5344,6 +6065,220 @@ export namespace CancelDeploymentMissingType$ {
|
|
|
5344
6065
|
export const outboundSchema = CancelDeploymentMissingType$outboundSchema;
|
|
5345
6066
|
}
|
|
5346
6067
|
|
|
6068
|
+
/** @internal */
|
|
6069
|
+
export const CancelDeploymentValueDeploymentsResponseEq$inboundSchema:
|
|
6070
|
+
z.ZodType<CancelDeploymentValueDeploymentsResponseEq, z.ZodTypeDef, unknown> =
|
|
6071
|
+
z.union([z.string(), z.number()]);
|
|
6072
|
+
|
|
6073
|
+
/** @internal */
|
|
6074
|
+
export type CancelDeploymentValueDeploymentsResponseEq$Outbound =
|
|
6075
|
+
| string
|
|
6076
|
+
| number;
|
|
6077
|
+
|
|
6078
|
+
/** @internal */
|
|
6079
|
+
export const CancelDeploymentValueDeploymentsResponseEq$outboundSchema:
|
|
6080
|
+
z.ZodType<
|
|
6081
|
+
CancelDeploymentValueDeploymentsResponseEq$Outbound,
|
|
6082
|
+
z.ZodTypeDef,
|
|
6083
|
+
CancelDeploymentValueDeploymentsResponseEq
|
|
6084
|
+
> = z.union([z.string(), z.number()]);
|
|
6085
|
+
|
|
6086
|
+
/**
|
|
6087
|
+
* @internal
|
|
6088
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6089
|
+
*/
|
|
6090
|
+
export namespace CancelDeploymentValueDeploymentsResponseEq$ {
|
|
6091
|
+
/** @deprecated use `CancelDeploymentValueDeploymentsResponseEq$inboundSchema` instead. */
|
|
6092
|
+
export const inboundSchema =
|
|
6093
|
+
CancelDeploymentValueDeploymentsResponseEq$inboundSchema;
|
|
6094
|
+
/** @deprecated use `CancelDeploymentValueDeploymentsResponseEq$outboundSchema` instead. */
|
|
6095
|
+
export const outboundSchema =
|
|
6096
|
+
CancelDeploymentValueDeploymentsResponseEq$outboundSchema;
|
|
6097
|
+
/** @deprecated use `CancelDeploymentValueDeploymentsResponseEq$Outbound` instead. */
|
|
6098
|
+
export type Outbound = CancelDeploymentValueDeploymentsResponseEq$Outbound;
|
|
6099
|
+
}
|
|
6100
|
+
|
|
6101
|
+
export function cancelDeploymentValueDeploymentsResponseEqToJSON(
|
|
6102
|
+
cancelDeploymentValueDeploymentsResponseEq:
|
|
6103
|
+
CancelDeploymentValueDeploymentsResponseEq,
|
|
6104
|
+
): string {
|
|
6105
|
+
return JSON.stringify(
|
|
6106
|
+
CancelDeploymentValueDeploymentsResponseEq$outboundSchema.parse(
|
|
6107
|
+
cancelDeploymentValueDeploymentsResponseEq,
|
|
6108
|
+
),
|
|
6109
|
+
);
|
|
6110
|
+
}
|
|
6111
|
+
|
|
6112
|
+
export function cancelDeploymentValueDeploymentsResponseEqFromJSON(
|
|
6113
|
+
jsonString: string,
|
|
6114
|
+
): SafeParseResult<
|
|
6115
|
+
CancelDeploymentValueDeploymentsResponseEq,
|
|
6116
|
+
SDKValidationError
|
|
6117
|
+
> {
|
|
6118
|
+
return safeParse(
|
|
6119
|
+
jsonString,
|
|
6120
|
+
(x) =>
|
|
6121
|
+
CancelDeploymentValueDeploymentsResponseEq$inboundSchema.parse(
|
|
6122
|
+
JSON.parse(x),
|
|
6123
|
+
),
|
|
6124
|
+
`Failed to parse 'CancelDeploymentValueDeploymentsResponseEq' from JSON`,
|
|
6125
|
+
);
|
|
6126
|
+
}
|
|
6127
|
+
|
|
6128
|
+
/** @internal */
|
|
6129
|
+
export const CancelDeploymentValueDeploymentsResponse2$inboundSchema: z.ZodType<
|
|
6130
|
+
CancelDeploymentValueDeploymentsResponse2,
|
|
6131
|
+
z.ZodTypeDef,
|
|
6132
|
+
unknown
|
|
6133
|
+
> = z.object({
|
|
6134
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
6135
|
+
neq: z.string().optional(),
|
|
6136
|
+
inc: z.array(z.string()).optional(),
|
|
6137
|
+
ninc: z.array(z.string()).optional(),
|
|
6138
|
+
pre: z.string().optional(),
|
|
6139
|
+
suf: z.string().optional(),
|
|
6140
|
+
re: z.string().optional(),
|
|
6141
|
+
gt: z.number().optional(),
|
|
6142
|
+
gte: z.number().optional(),
|
|
6143
|
+
lt: z.number().optional(),
|
|
6144
|
+
lte: z.number().optional(),
|
|
6145
|
+
});
|
|
6146
|
+
|
|
6147
|
+
/** @internal */
|
|
6148
|
+
export type CancelDeploymentValueDeploymentsResponse2$Outbound = {
|
|
6149
|
+
eq?: string | number | undefined;
|
|
6150
|
+
neq?: string | undefined;
|
|
6151
|
+
inc?: Array<string> | undefined;
|
|
6152
|
+
ninc?: Array<string> | undefined;
|
|
6153
|
+
pre?: string | undefined;
|
|
6154
|
+
suf?: string | undefined;
|
|
6155
|
+
re?: string | undefined;
|
|
6156
|
+
gt?: number | undefined;
|
|
6157
|
+
gte?: number | undefined;
|
|
6158
|
+
lt?: number | undefined;
|
|
6159
|
+
lte?: number | undefined;
|
|
6160
|
+
};
|
|
6161
|
+
|
|
6162
|
+
/** @internal */
|
|
6163
|
+
export const CancelDeploymentValueDeploymentsResponse2$outboundSchema:
|
|
6164
|
+
z.ZodType<
|
|
6165
|
+
CancelDeploymentValueDeploymentsResponse2$Outbound,
|
|
6166
|
+
z.ZodTypeDef,
|
|
6167
|
+
CancelDeploymentValueDeploymentsResponse2
|
|
6168
|
+
> = z.object({
|
|
6169
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
6170
|
+
neq: z.string().optional(),
|
|
6171
|
+
inc: z.array(z.string()).optional(),
|
|
6172
|
+
ninc: z.array(z.string()).optional(),
|
|
6173
|
+
pre: z.string().optional(),
|
|
6174
|
+
suf: z.string().optional(),
|
|
6175
|
+
re: z.string().optional(),
|
|
6176
|
+
gt: z.number().optional(),
|
|
6177
|
+
gte: z.number().optional(),
|
|
6178
|
+
lt: z.number().optional(),
|
|
6179
|
+
lte: z.number().optional(),
|
|
6180
|
+
});
|
|
6181
|
+
|
|
6182
|
+
/**
|
|
6183
|
+
* @internal
|
|
6184
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6185
|
+
*/
|
|
6186
|
+
export namespace CancelDeploymentValueDeploymentsResponse2$ {
|
|
6187
|
+
/** @deprecated use `CancelDeploymentValueDeploymentsResponse2$inboundSchema` instead. */
|
|
6188
|
+
export const inboundSchema =
|
|
6189
|
+
CancelDeploymentValueDeploymentsResponse2$inboundSchema;
|
|
6190
|
+
/** @deprecated use `CancelDeploymentValueDeploymentsResponse2$outboundSchema` instead. */
|
|
6191
|
+
export const outboundSchema =
|
|
6192
|
+
CancelDeploymentValueDeploymentsResponse2$outboundSchema;
|
|
6193
|
+
/** @deprecated use `CancelDeploymentValueDeploymentsResponse2$Outbound` instead. */
|
|
6194
|
+
export type Outbound = CancelDeploymentValueDeploymentsResponse2$Outbound;
|
|
6195
|
+
}
|
|
6196
|
+
|
|
6197
|
+
export function cancelDeploymentValueDeploymentsResponse2ToJSON(
|
|
6198
|
+
cancelDeploymentValueDeploymentsResponse2:
|
|
6199
|
+
CancelDeploymentValueDeploymentsResponse2,
|
|
6200
|
+
): string {
|
|
6201
|
+
return JSON.stringify(
|
|
6202
|
+
CancelDeploymentValueDeploymentsResponse2$outboundSchema.parse(
|
|
6203
|
+
cancelDeploymentValueDeploymentsResponse2,
|
|
6204
|
+
),
|
|
6205
|
+
);
|
|
6206
|
+
}
|
|
6207
|
+
|
|
6208
|
+
export function cancelDeploymentValueDeploymentsResponse2FromJSON(
|
|
6209
|
+
jsonString: string,
|
|
6210
|
+
): SafeParseResult<
|
|
6211
|
+
CancelDeploymentValueDeploymentsResponse2,
|
|
6212
|
+
SDKValidationError
|
|
6213
|
+
> {
|
|
6214
|
+
return safeParse(
|
|
6215
|
+
jsonString,
|
|
6216
|
+
(x) =>
|
|
6217
|
+
CancelDeploymentValueDeploymentsResponse2$inboundSchema.parse(
|
|
6218
|
+
JSON.parse(x),
|
|
6219
|
+
),
|
|
6220
|
+
`Failed to parse 'CancelDeploymentValueDeploymentsResponse2' from JSON`,
|
|
6221
|
+
);
|
|
6222
|
+
}
|
|
6223
|
+
|
|
6224
|
+
/** @internal */
|
|
6225
|
+
export const CancelDeploymentMissingValue$inboundSchema: z.ZodType<
|
|
6226
|
+
CancelDeploymentMissingValue,
|
|
6227
|
+
z.ZodTypeDef,
|
|
6228
|
+
unknown
|
|
6229
|
+
> = z.union([
|
|
6230
|
+
z.lazy(() => CancelDeploymentValueDeploymentsResponse2$inboundSchema),
|
|
6231
|
+
z.string(),
|
|
6232
|
+
]);
|
|
6233
|
+
|
|
6234
|
+
/** @internal */
|
|
6235
|
+
export type CancelDeploymentMissingValue$Outbound =
|
|
6236
|
+
| CancelDeploymentValueDeploymentsResponse2$Outbound
|
|
6237
|
+
| string;
|
|
6238
|
+
|
|
6239
|
+
/** @internal */
|
|
6240
|
+
export const CancelDeploymentMissingValue$outboundSchema: z.ZodType<
|
|
6241
|
+
CancelDeploymentMissingValue$Outbound,
|
|
6242
|
+
z.ZodTypeDef,
|
|
6243
|
+
CancelDeploymentMissingValue
|
|
6244
|
+
> = z.union([
|
|
6245
|
+
z.lazy(() => CancelDeploymentValueDeploymentsResponse2$outboundSchema),
|
|
6246
|
+
z.string(),
|
|
6247
|
+
]);
|
|
6248
|
+
|
|
6249
|
+
/**
|
|
6250
|
+
* @internal
|
|
6251
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6252
|
+
*/
|
|
6253
|
+
export namespace CancelDeploymentMissingValue$ {
|
|
6254
|
+
/** @deprecated use `CancelDeploymentMissingValue$inboundSchema` instead. */
|
|
6255
|
+
export const inboundSchema = CancelDeploymentMissingValue$inboundSchema;
|
|
6256
|
+
/** @deprecated use `CancelDeploymentMissingValue$outboundSchema` instead. */
|
|
6257
|
+
export const outboundSchema = CancelDeploymentMissingValue$outboundSchema;
|
|
6258
|
+
/** @deprecated use `CancelDeploymentMissingValue$Outbound` instead. */
|
|
6259
|
+
export type Outbound = CancelDeploymentMissingValue$Outbound;
|
|
6260
|
+
}
|
|
6261
|
+
|
|
6262
|
+
export function cancelDeploymentMissingValueToJSON(
|
|
6263
|
+
cancelDeploymentMissingValue: CancelDeploymentMissingValue,
|
|
6264
|
+
): string {
|
|
6265
|
+
return JSON.stringify(
|
|
6266
|
+
CancelDeploymentMissingValue$outboundSchema.parse(
|
|
6267
|
+
cancelDeploymentMissingValue,
|
|
6268
|
+
),
|
|
6269
|
+
);
|
|
6270
|
+
}
|
|
6271
|
+
|
|
6272
|
+
export function cancelDeploymentMissingValueFromJSON(
|
|
6273
|
+
jsonString: string,
|
|
6274
|
+
): SafeParseResult<CancelDeploymentMissingValue, SDKValidationError> {
|
|
6275
|
+
return safeParse(
|
|
6276
|
+
jsonString,
|
|
6277
|
+
(x) => CancelDeploymentMissingValue$inboundSchema.parse(JSON.parse(x)),
|
|
6278
|
+
`Failed to parse 'CancelDeploymentMissingValue' from JSON`,
|
|
6279
|
+
);
|
|
6280
|
+
}
|
|
6281
|
+
|
|
5347
6282
|
/** @internal */
|
|
5348
6283
|
export const CancelDeploymentMissing1$inboundSchema: z.ZodType<
|
|
5349
6284
|
CancelDeploymentMissing1,
|
|
@@ -5351,13 +6286,16 @@ export const CancelDeploymentMissing1$inboundSchema: z.ZodType<
|
|
|
5351
6286
|
unknown
|
|
5352
6287
|
> = z.object({
|
|
5353
6288
|
type: CancelDeploymentMissingType$inboundSchema,
|
|
5354
|
-
value: z.
|
|
6289
|
+
value: z.union([
|
|
6290
|
+
z.lazy(() => CancelDeploymentValueDeploymentsResponse2$inboundSchema),
|
|
6291
|
+
z.string(),
|
|
6292
|
+
]),
|
|
5355
6293
|
});
|
|
5356
6294
|
|
|
5357
6295
|
/** @internal */
|
|
5358
6296
|
export type CancelDeploymentMissing1$Outbound = {
|
|
5359
6297
|
type: string;
|
|
5360
|
-
value: string;
|
|
6298
|
+
value: CancelDeploymentValueDeploymentsResponse2$Outbound | string;
|
|
5361
6299
|
};
|
|
5362
6300
|
|
|
5363
6301
|
/** @internal */
|
|
@@ -5367,7 +6305,10 @@ export const CancelDeploymentMissing1$outboundSchema: z.ZodType<
|
|
|
5367
6305
|
CancelDeploymentMissing1
|
|
5368
6306
|
> = z.object({
|
|
5369
6307
|
type: CancelDeploymentMissingType$outboundSchema,
|
|
5370
|
-
value: z.
|
|
6308
|
+
value: z.union([
|
|
6309
|
+
z.lazy(() => CancelDeploymentValueDeploymentsResponse2$outboundSchema),
|
|
6310
|
+
z.string(),
|
|
6311
|
+
]),
|
|
5371
6312
|
});
|
|
5372
6313
|
|
|
5373
6314
|
/**
|
|
@@ -5459,6 +6400,83 @@ export function cancelDeploymentRoutesMissingFromJSON(
|
|
|
5459
6400
|
);
|
|
5460
6401
|
}
|
|
5461
6402
|
|
|
6403
|
+
/** @internal */
|
|
6404
|
+
export const CancelDeploymentRoutesAction$inboundSchema: z.ZodNativeEnum<
|
|
6405
|
+
typeof CancelDeploymentRoutesAction
|
|
6406
|
+
> = z.nativeEnum(CancelDeploymentRoutesAction);
|
|
6407
|
+
|
|
6408
|
+
/** @internal */
|
|
6409
|
+
export const CancelDeploymentRoutesAction$outboundSchema: z.ZodNativeEnum<
|
|
6410
|
+
typeof CancelDeploymentRoutesAction
|
|
6411
|
+
> = CancelDeploymentRoutesAction$inboundSchema;
|
|
6412
|
+
|
|
6413
|
+
/**
|
|
6414
|
+
* @internal
|
|
6415
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6416
|
+
*/
|
|
6417
|
+
export namespace CancelDeploymentRoutesAction$ {
|
|
6418
|
+
/** @deprecated use `CancelDeploymentRoutesAction$inboundSchema` instead. */
|
|
6419
|
+
export const inboundSchema = CancelDeploymentRoutesAction$inboundSchema;
|
|
6420
|
+
/** @deprecated use `CancelDeploymentRoutesAction$outboundSchema` instead. */
|
|
6421
|
+
export const outboundSchema = CancelDeploymentRoutesAction$outboundSchema;
|
|
6422
|
+
}
|
|
6423
|
+
|
|
6424
|
+
/** @internal */
|
|
6425
|
+
export const CancelDeploymentRoutesMitigate$inboundSchema: z.ZodType<
|
|
6426
|
+
CancelDeploymentRoutesMitigate,
|
|
6427
|
+
z.ZodTypeDef,
|
|
6428
|
+
unknown
|
|
6429
|
+
> = z.object({
|
|
6430
|
+
action: CancelDeploymentRoutesAction$inboundSchema,
|
|
6431
|
+
});
|
|
6432
|
+
|
|
6433
|
+
/** @internal */
|
|
6434
|
+
export type CancelDeploymentRoutesMitigate$Outbound = {
|
|
6435
|
+
action: string;
|
|
6436
|
+
};
|
|
6437
|
+
|
|
6438
|
+
/** @internal */
|
|
6439
|
+
export const CancelDeploymentRoutesMitigate$outboundSchema: z.ZodType<
|
|
6440
|
+
CancelDeploymentRoutesMitigate$Outbound,
|
|
6441
|
+
z.ZodTypeDef,
|
|
6442
|
+
CancelDeploymentRoutesMitigate
|
|
6443
|
+
> = z.object({
|
|
6444
|
+
action: CancelDeploymentRoutesAction$outboundSchema,
|
|
6445
|
+
});
|
|
6446
|
+
|
|
6447
|
+
/**
|
|
6448
|
+
* @internal
|
|
6449
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6450
|
+
*/
|
|
6451
|
+
export namespace CancelDeploymentRoutesMitigate$ {
|
|
6452
|
+
/** @deprecated use `CancelDeploymentRoutesMitigate$inboundSchema` instead. */
|
|
6453
|
+
export const inboundSchema = CancelDeploymentRoutesMitigate$inboundSchema;
|
|
6454
|
+
/** @deprecated use `CancelDeploymentRoutesMitigate$outboundSchema` instead. */
|
|
6455
|
+
export const outboundSchema = CancelDeploymentRoutesMitigate$outboundSchema;
|
|
6456
|
+
/** @deprecated use `CancelDeploymentRoutesMitigate$Outbound` instead. */
|
|
6457
|
+
export type Outbound = CancelDeploymentRoutesMitigate$Outbound;
|
|
6458
|
+
}
|
|
6459
|
+
|
|
6460
|
+
export function cancelDeploymentRoutesMitigateToJSON(
|
|
6461
|
+
cancelDeploymentRoutesMitigate: CancelDeploymentRoutesMitigate,
|
|
6462
|
+
): string {
|
|
6463
|
+
return JSON.stringify(
|
|
6464
|
+
CancelDeploymentRoutesMitigate$outboundSchema.parse(
|
|
6465
|
+
cancelDeploymentRoutesMitigate,
|
|
6466
|
+
),
|
|
6467
|
+
);
|
|
6468
|
+
}
|
|
6469
|
+
|
|
6470
|
+
export function cancelDeploymentRoutesMitigateFromJSON(
|
|
6471
|
+
jsonString: string,
|
|
6472
|
+
): SafeParseResult<CancelDeploymentRoutesMitigate, SDKValidationError> {
|
|
6473
|
+
return safeParse(
|
|
6474
|
+
jsonString,
|
|
6475
|
+
(x) => CancelDeploymentRoutesMitigate$inboundSchema.parse(JSON.parse(x)),
|
|
6476
|
+
`Failed to parse 'CancelDeploymentRoutesMitigate' from JSON`,
|
|
6477
|
+
);
|
|
6478
|
+
}
|
|
6479
|
+
|
|
5462
6480
|
/** @internal */
|
|
5463
6481
|
export const RoutesLocale$inboundSchema: z.ZodType<
|
|
5464
6482
|
RoutesLocale,
|
|
@@ -5540,6 +6558,8 @@ export const CancelDeploymentRoutes1$inboundSchema: z.ZodType<
|
|
|
5540
6558
|
z.lazy(() => CancelDeploymentMissing2$inboundSchema),
|
|
5541
6559
|
]),
|
|
5542
6560
|
).optional(),
|
|
6561
|
+
mitigate: z.lazy(() => CancelDeploymentRoutesMitigate$inboundSchema)
|
|
6562
|
+
.optional(),
|
|
5543
6563
|
locale: z.lazy(() => RoutesLocale$inboundSchema).optional(),
|
|
5544
6564
|
middlewarePath: z.string().optional(),
|
|
5545
6565
|
middlewareRawSrc: z.array(z.string()).optional(),
|
|
@@ -5566,6 +6586,7 @@ export type CancelDeploymentRoutes1$Outbound = {
|
|
|
5566
6586
|
CancelDeploymentMissing1$Outbound | CancelDeploymentMissing2$Outbound
|
|
5567
6587
|
>
|
|
5568
6588
|
| undefined;
|
|
6589
|
+
mitigate?: CancelDeploymentRoutesMitigate$Outbound | undefined;
|
|
5569
6590
|
locale?: RoutesLocale$Outbound | undefined;
|
|
5570
6591
|
middlewarePath?: string | undefined;
|
|
5571
6592
|
middlewareRawSrc?: Array<string> | undefined;
|
|
@@ -5600,6 +6621,8 @@ export const CancelDeploymentRoutes1$outboundSchema: z.ZodType<
|
|
|
5600
6621
|
z.lazy(() => CancelDeploymentMissing2$outboundSchema),
|
|
5601
6622
|
]),
|
|
5602
6623
|
).optional(),
|
|
6624
|
+
mitigate: z.lazy(() => CancelDeploymentRoutesMitigate$outboundSchema)
|
|
6625
|
+
.optional(),
|
|
5603
6626
|
locale: z.lazy(() => RoutesLocale$outboundSchema).optional(),
|
|
5604
6627
|
middlewarePath: z.string().optional(),
|
|
5605
6628
|
middlewareRawSrc: z.array(z.string()).optional(),
|