@vercel/sdk 1.10.1 → 1.10.2

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 (93) hide show
  1. package/bin/mcp-server.js +816 -1951
  2. package/bin/mcp-server.js.map +22 -22
  3. package/esm/__tests__/teams.test.js +2 -2
  4. package/esm/__tests__/teams.test.js.map +1 -1
  5. package/esm/funcs/domainsBuyDomain.js +2 -2
  6. package/esm/funcs/domainsBuyDomain.js.map +1 -1
  7. package/esm/funcs/domainsPatchDomain.js +2 -2
  8. package/esm/funcs/domainsPatchDomain.js.map +1 -1
  9. package/esm/lib/config.d.ts +3 -3
  10. package/esm/lib/config.js +3 -3
  11. package/esm/mcp-server/mcp-server.js +1 -1
  12. package/esm/mcp-server/server.js +1 -1
  13. package/esm/models/canceldeploymentop.d.ts +49 -49
  14. package/esm/models/canceldeploymentop.d.ts.map +1 -1
  15. package/esm/models/canceldeploymentop.js +53 -55
  16. package/esm/models/canceldeploymentop.js.map +1 -1
  17. package/esm/models/createdeploymentop.d.ts +139 -139
  18. package/esm/models/createdeploymentop.d.ts.map +1 -1
  19. package/esm/models/createdeploymentop.js +153 -152
  20. package/esm/models/createdeploymentop.js.map +1 -1
  21. package/esm/models/createprojectenvop.d.ts +6 -6
  22. package/esm/models/createprojectenvop.js +2 -2
  23. package/esm/models/createprojectenvop.js.map +1 -1
  24. package/esm/models/createprojectop.d.ts +189 -741
  25. package/esm/models/createprojectop.d.ts.map +1 -1
  26. package/esm/models/createprojectop.js +179 -678
  27. package/esm/models/createprojectop.js.map +1 -1
  28. package/esm/models/editprojectenvop.d.ts +3 -3
  29. package/esm/models/editprojectenvop.js +1 -1
  30. package/esm/models/editprojectenvop.js.map +1 -1
  31. package/esm/models/filterprojectenvsop.d.ts +9 -9
  32. package/esm/models/filterprojectenvsop.js +3 -3
  33. package/esm/models/filterprojectenvsop.js.map +1 -1
  34. package/esm/models/getdeploymentop.d.ts +90 -90
  35. package/esm/models/getdeploymentop.d.ts.map +1 -1
  36. package/esm/models/getdeploymentop.js +101 -102
  37. package/esm/models/getdeploymentop.js.map +1 -1
  38. package/esm/models/getfirewallconfigop.d.ts +3 -0
  39. package/esm/models/getfirewallconfigop.d.ts.map +1 -1
  40. package/esm/models/getfirewallconfigop.js +1 -0
  41. package/esm/models/getfirewallconfigop.js.map +1 -1
  42. package/esm/models/getprojectsop.d.ts +33 -585
  43. package/esm/models/getprojectsop.d.ts.map +1 -1
  44. package/esm/models/getprojectsop.js +31 -530
  45. package/esm/models/getprojectsop.js.map +1 -1
  46. package/esm/models/putfirewallconfigop.d.ts +3 -0
  47. package/esm/models/putfirewallconfigop.d.ts.map +1 -1
  48. package/esm/models/putfirewallconfigop.js +1 -0
  49. package/esm/models/putfirewallconfigop.js.map +1 -1
  50. package/esm/models/removeprojectenvop.d.ts +9 -9
  51. package/esm/models/removeprojectenvop.js +3 -3
  52. package/esm/models/removeprojectenvop.js.map +1 -1
  53. package/esm/models/team.d.ts +13 -10
  54. package/esm/models/team.d.ts.map +1 -1
  55. package/esm/models/team.js +6 -5
  56. package/esm/models/team.js.map +1 -1
  57. package/esm/models/updateprojectdatacacheop.d.ts +41 -593
  58. package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
  59. package/esm/models/updateprojectdatacacheop.js +43 -561
  60. package/esm/models/updateprojectdatacacheop.js.map +1 -1
  61. package/esm/models/updateprojectop.d.ts +33 -585
  62. package/esm/models/updateprojectop.d.ts.map +1 -1
  63. package/esm/models/updateprojectop.js +31 -530
  64. package/esm/models/updateprojectop.js.map +1 -1
  65. package/esm/models/userevent.d.ts +154 -124
  66. package/esm/models/userevent.d.ts.map +1 -1
  67. package/esm/models/userevent.js +166 -135
  68. package/esm/models/userevent.js.map +1 -1
  69. package/examples/package-lock.json +1 -1
  70. package/jsr.json +1 -1
  71. package/package.json +1 -1
  72. package/src/__tests__/teams.test.ts +2 -2
  73. package/src/funcs/domainsBuyDomain.ts +2 -2
  74. package/src/funcs/domainsPatchDomain.ts +2 -2
  75. package/src/lib/config.ts +3 -3
  76. package/src/mcp-server/mcp-server.ts +1 -1
  77. package/src/mcp-server/server.ts +1 -1
  78. package/src/models/canceldeploymentop.ts +78 -104
  79. package/src/models/createdeploymentop.ts +332 -335
  80. package/src/models/createprojectenvop.ts +2 -2
  81. package/src/models/createprojectop.ts +448 -1472
  82. package/src/models/editprojectenvop.ts +1 -1
  83. package/src/models/filterprojectenvsop.ts +3 -3
  84. package/src/models/getdeploymentop.ts +214 -216
  85. package/src/models/getfirewallconfigop.ts +1 -0
  86. package/src/models/getprojectsop.ts +202 -1207
  87. package/src/models/putfirewallconfigop.ts +1 -0
  88. package/src/models/removeprojectenvop.ts +3 -3
  89. package/src/models/team.ts +13 -12
  90. package/src/models/updateprojectdatacacheop.ts +171 -1168
  91. package/src/models/updateprojectop.ts +197 -1221
  92. package/src/models/userevent.ts +309 -236
  93. package/vercel-spec.json +429 -1834
@@ -1066,7 +1066,7 @@ export type Routes3 = {
1066
1066
  continue: boolean;
1067
1067
  middleware: number;
1068
1068
  };
1069
- export declare const RoutesHandle: {
1069
+ export declare const Handle: {
1070
1070
  readonly Filesystem: "filesystem";
1071
1071
  readonly Error: "error";
1072
1072
  readonly Hit: "hit";
@@ -1074,9 +1074,9 @@ export declare const RoutesHandle: {
1074
1074
  readonly Resource: "resource";
1075
1075
  readonly Rewrite: "rewrite";
1076
1076
  };
1077
- export type RoutesHandle = ClosedEnum<typeof RoutesHandle>;
1077
+ export type Handle = ClosedEnum<typeof Handle>;
1078
1078
  export type Routes2 = {
1079
- handle: RoutesHandle;
1079
+ handle: Handle;
1080
1080
  src?: string | undefined;
1081
1081
  dest?: string | undefined;
1082
1082
  status?: number | undefined;
@@ -1088,7 +1088,7 @@ export declare const CreateDeploymentHasType: {
1088
1088
  };
1089
1089
  export type CreateDeploymentHasType = ClosedEnum<typeof CreateDeploymentHasType>;
1090
1090
  export type ValueEq = string | number;
1091
- export type CreateDeploymentValueDeployments2 = {
1091
+ export type CreateDeploymentValue2 = {
1092
1092
  eq?: string | number | undefined;
1093
1093
  neq?: string | undefined;
1094
1094
  inc?: Array<string> | undefined;
@@ -1101,18 +1101,18 @@ export type CreateDeploymentValueDeployments2 = {
1101
1101
  lt?: number | undefined;
1102
1102
  lte?: number | undefined;
1103
1103
  };
1104
- export type CreateDeploymentHasValue = CreateDeploymentValueDeployments2 | string;
1104
+ export type HasValue = CreateDeploymentValue2 | string;
1105
1105
  export type Has2 = {
1106
1106
  type: CreateDeploymentHasType;
1107
1107
  key: string;
1108
- value?: CreateDeploymentValueDeployments2 | string | undefined;
1108
+ value?: CreateDeploymentValue2 | string | undefined;
1109
1109
  };
1110
1110
  export declare const HasType: {
1111
1111
  readonly Host: "host";
1112
1112
  };
1113
1113
  export type HasType = ClosedEnum<typeof HasType>;
1114
1114
  export type Eq = string | number;
1115
- export type CreateDeploymentValue2 = {
1115
+ export type CreateDeploymentValueDeploymentsResponse2002 = {
1116
1116
  eq?: string | number | undefined;
1117
1117
  neq?: string | undefined;
1118
1118
  inc?: Array<string> | undefined;
@@ -1125,12 +1125,12 @@ export type CreateDeploymentValue2 = {
1125
1125
  lt?: number | undefined;
1126
1126
  lte?: number | undefined;
1127
1127
  };
1128
- export type HasValue = CreateDeploymentValue2 | string;
1128
+ export type CreateDeploymentHasValue = CreateDeploymentValueDeploymentsResponse2002 | string;
1129
1129
  export type Has1 = {
1130
1130
  type: HasType;
1131
- value: CreateDeploymentValue2 | string;
1131
+ value: CreateDeploymentValueDeploymentsResponse2002 | string;
1132
1132
  };
1133
- export type RoutesHas = Has1 | Has2;
1133
+ export type Has = Has1 | Has2;
1134
1134
  export declare const CreateDeploymentMissingType: {
1135
1135
  readonly Header: "header";
1136
1136
  readonly Cookie: "cookie";
@@ -1138,7 +1138,7 @@ export declare const CreateDeploymentMissingType: {
1138
1138
  };
1139
1139
  export type CreateDeploymentMissingType = ClosedEnum<typeof CreateDeploymentMissingType>;
1140
1140
  export type CreateDeploymentValueDeploymentsEq = string | number;
1141
- export type CreateDeploymentValueDeploymentsResponse2002 = {
1141
+ export type CreateDeploymentValueDeploymentsResponse2 = {
1142
1142
  eq?: string | number | undefined;
1143
1143
  neq?: string | undefined;
1144
1144
  inc?: Array<string> | undefined;
@@ -1151,18 +1151,18 @@ export type CreateDeploymentValueDeploymentsResponse2002 = {
1151
1151
  lt?: number | undefined;
1152
1152
  lte?: number | undefined;
1153
1153
  };
1154
- export type CreateDeploymentMissingValue = CreateDeploymentValueDeploymentsResponse2002 | string;
1154
+ export type CreateDeploymentMissingValue = CreateDeploymentValueDeploymentsResponse2 | string;
1155
1155
  export type Missing2 = {
1156
1156
  type: CreateDeploymentMissingType;
1157
1157
  key: string;
1158
- value?: CreateDeploymentValueDeploymentsResponse2002 | string | undefined;
1158
+ value?: CreateDeploymentValueDeploymentsResponse2 | string | undefined;
1159
1159
  };
1160
1160
  export declare const MissingType: {
1161
1161
  readonly Host: "host";
1162
1162
  };
1163
1163
  export type MissingType = ClosedEnum<typeof MissingType>;
1164
1164
  export type CreateDeploymentValueEq = string | number;
1165
- export type CreateDeploymentValueDeploymentsResponse2 = {
1165
+ export type CreateDeploymentValueDeployments2 = {
1166
1166
  eq?: string | number | undefined;
1167
1167
  neq?: string | undefined;
1168
1168
  inc?: Array<string> | undefined;
@@ -1175,18 +1175,18 @@ export type CreateDeploymentValueDeploymentsResponse2 = {
1175
1175
  lt?: number | undefined;
1176
1176
  lte?: number | undefined;
1177
1177
  };
1178
- export type MissingValue = CreateDeploymentValueDeploymentsResponse2 | string;
1178
+ export type MissingValue = CreateDeploymentValueDeployments2 | string;
1179
1179
  export type Missing1 = {
1180
1180
  type: MissingType;
1181
- value: CreateDeploymentValueDeploymentsResponse2 | string;
1181
+ value: CreateDeploymentValueDeployments2 | string;
1182
1182
  };
1183
- export type RoutesMissing = Missing1 | Missing2;
1183
+ export type Missing = Missing1 | Missing2;
1184
1184
  export declare const RoutesAction: {
1185
1185
  readonly Challenge: "challenge";
1186
1186
  readonly Deny: "deny";
1187
1187
  };
1188
1188
  export type RoutesAction = ClosedEnum<typeof RoutesAction>;
1189
- export type RoutesMitigate = {
1189
+ export type CreateDeploymentRoutesMitigate = {
1190
1190
  action: RoutesAction;
1191
1191
  };
1192
1192
  export declare const RoutesType: {
@@ -1246,7 +1246,7 @@ export type Routes1 = {
1246
1246
  status?: number | undefined;
1247
1247
  has?: Array<Has1 | Has2> | undefined;
1248
1248
  missing?: Array<Missing1 | Missing2> | undefined;
1249
- mitigate?: RoutesMitigate | undefined;
1249
+ mitigate?: CreateDeploymentRoutesMitigate | undefined;
1250
1250
  transforms?: Array<Transforms> | undefined;
1251
1251
  locale?: Locale | undefined;
1252
1252
  /**
@@ -4326,15 +4326,15 @@ export declare namespace Routes3$ {
4326
4326
  export declare function routes3ToJSON(routes3: Routes3): string;
4327
4327
  export declare function routes3FromJSON(jsonString: string): SafeParseResult<Routes3, SDKValidationError>;
4328
4328
  /** @internal */
4329
- export declare const RoutesHandle$inboundSchema: z.ZodNativeEnum<typeof RoutesHandle>;
4329
+ export declare const Handle$inboundSchema: z.ZodNativeEnum<typeof Handle>;
4330
4330
  /** @internal */
4331
- export declare const RoutesHandle$outboundSchema: z.ZodNativeEnum<typeof RoutesHandle>;
4331
+ export declare const Handle$outboundSchema: z.ZodNativeEnum<typeof Handle>;
4332
4332
  /**
4333
4333
  * @internal
4334
4334
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4335
4335
  */
4336
- export declare namespace RoutesHandle$ {
4337
- /** @deprecated use `RoutesHandle$inboundSchema` instead. */
4336
+ export declare namespace Handle$ {
4337
+ /** @deprecated use `Handle$inboundSchema` instead. */
4338
4338
  const inboundSchema: z.ZodNativeEnum<{
4339
4339
  readonly Filesystem: "filesystem";
4340
4340
  readonly Error: "error";
@@ -4343,7 +4343,7 @@ export declare namespace RoutesHandle$ {
4343
4343
  readonly Resource: "resource";
4344
4344
  readonly Rewrite: "rewrite";
4345
4345
  }>;
4346
- /** @deprecated use `RoutesHandle$outboundSchema` instead. */
4346
+ /** @deprecated use `Handle$outboundSchema` instead. */
4347
4347
  const outboundSchema: z.ZodNativeEnum<{
4348
4348
  readonly Filesystem: "filesystem";
4349
4349
  readonly Error: "error";
@@ -4421,9 +4421,9 @@ export declare namespace ValueEq$ {
4421
4421
  export declare function valueEqToJSON(valueEq: ValueEq): string;
4422
4422
  export declare function valueEqFromJSON(jsonString: string): SafeParseResult<ValueEq, SDKValidationError>;
4423
4423
  /** @internal */
4424
- export declare const CreateDeploymentValueDeployments2$inboundSchema: z.ZodType<CreateDeploymentValueDeployments2, z.ZodTypeDef, unknown>;
4424
+ export declare const CreateDeploymentValue2$inboundSchema: z.ZodType<CreateDeploymentValue2, z.ZodTypeDef, unknown>;
4425
4425
  /** @internal */
4426
- export type CreateDeploymentValueDeployments2$Outbound = {
4426
+ export type CreateDeploymentValue2$Outbound = {
4427
4427
  eq?: string | number | undefined;
4428
4428
  neq?: string | undefined;
4429
4429
  inc?: Array<string> | undefined;
@@ -4437,48 +4437,48 @@ export type CreateDeploymentValueDeployments2$Outbound = {
4437
4437
  lte?: number | undefined;
4438
4438
  };
4439
4439
  /** @internal */
4440
- export declare const CreateDeploymentValueDeployments2$outboundSchema: z.ZodType<CreateDeploymentValueDeployments2$Outbound, z.ZodTypeDef, CreateDeploymentValueDeployments2>;
4440
+ export declare const CreateDeploymentValue2$outboundSchema: z.ZodType<CreateDeploymentValue2$Outbound, z.ZodTypeDef, CreateDeploymentValue2>;
4441
4441
  /**
4442
4442
  * @internal
4443
4443
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4444
4444
  */
4445
- export declare namespace CreateDeploymentValueDeployments2$ {
4446
- /** @deprecated use `CreateDeploymentValueDeployments2$inboundSchema` instead. */
4447
- const inboundSchema: z.ZodType<CreateDeploymentValueDeployments2, z.ZodTypeDef, unknown>;
4448
- /** @deprecated use `CreateDeploymentValueDeployments2$outboundSchema` instead. */
4449
- const outboundSchema: z.ZodType<CreateDeploymentValueDeployments2$Outbound, z.ZodTypeDef, CreateDeploymentValueDeployments2>;
4450
- /** @deprecated use `CreateDeploymentValueDeployments2$Outbound` instead. */
4451
- type Outbound = CreateDeploymentValueDeployments2$Outbound;
4445
+ export declare namespace CreateDeploymentValue2$ {
4446
+ /** @deprecated use `CreateDeploymentValue2$inboundSchema` instead. */
4447
+ const inboundSchema: z.ZodType<CreateDeploymentValue2, z.ZodTypeDef, unknown>;
4448
+ /** @deprecated use `CreateDeploymentValue2$outboundSchema` instead. */
4449
+ const outboundSchema: z.ZodType<CreateDeploymentValue2$Outbound, z.ZodTypeDef, CreateDeploymentValue2>;
4450
+ /** @deprecated use `CreateDeploymentValue2$Outbound` instead. */
4451
+ type Outbound = CreateDeploymentValue2$Outbound;
4452
4452
  }
4453
- export declare function createDeploymentValueDeployments2ToJSON(createDeploymentValueDeployments2: CreateDeploymentValueDeployments2): string;
4454
- export declare function createDeploymentValueDeployments2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeployments2, SDKValidationError>;
4453
+ export declare function createDeploymentValue2ToJSON(createDeploymentValue2: CreateDeploymentValue2): string;
4454
+ export declare function createDeploymentValue2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValue2, SDKValidationError>;
4455
4455
  /** @internal */
4456
- export declare const CreateDeploymentHasValue$inboundSchema: z.ZodType<CreateDeploymentHasValue, z.ZodTypeDef, unknown>;
4456
+ export declare const HasValue$inboundSchema: z.ZodType<HasValue, z.ZodTypeDef, unknown>;
4457
4457
  /** @internal */
4458
- export type CreateDeploymentHasValue$Outbound = CreateDeploymentValueDeployments2$Outbound | string;
4458
+ export type HasValue$Outbound = CreateDeploymentValue2$Outbound | string;
4459
4459
  /** @internal */
4460
- export declare const CreateDeploymentHasValue$outboundSchema: z.ZodType<CreateDeploymentHasValue$Outbound, z.ZodTypeDef, CreateDeploymentHasValue>;
4460
+ export declare const HasValue$outboundSchema: z.ZodType<HasValue$Outbound, z.ZodTypeDef, HasValue>;
4461
4461
  /**
4462
4462
  * @internal
4463
4463
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4464
4464
  */
4465
- export declare namespace CreateDeploymentHasValue$ {
4466
- /** @deprecated use `CreateDeploymentHasValue$inboundSchema` instead. */
4467
- const inboundSchema: z.ZodType<CreateDeploymentHasValue, z.ZodTypeDef, unknown>;
4468
- /** @deprecated use `CreateDeploymentHasValue$outboundSchema` instead. */
4469
- const outboundSchema: z.ZodType<CreateDeploymentHasValue$Outbound, z.ZodTypeDef, CreateDeploymentHasValue>;
4470
- /** @deprecated use `CreateDeploymentHasValue$Outbound` instead. */
4471
- type Outbound = CreateDeploymentHasValue$Outbound;
4465
+ export declare namespace HasValue$ {
4466
+ /** @deprecated use `HasValue$inboundSchema` instead. */
4467
+ const inboundSchema: z.ZodType<HasValue, z.ZodTypeDef, unknown>;
4468
+ /** @deprecated use `HasValue$outboundSchema` instead. */
4469
+ const outboundSchema: z.ZodType<HasValue$Outbound, z.ZodTypeDef, HasValue>;
4470
+ /** @deprecated use `HasValue$Outbound` instead. */
4471
+ type Outbound = HasValue$Outbound;
4472
4472
  }
4473
- export declare function createDeploymentHasValueToJSON(createDeploymentHasValue: CreateDeploymentHasValue): string;
4474
- export declare function createDeploymentHasValueFromJSON(jsonString: string): SafeParseResult<CreateDeploymentHasValue, SDKValidationError>;
4473
+ export declare function hasValueToJSON(hasValue: HasValue): string;
4474
+ export declare function hasValueFromJSON(jsonString: string): SafeParseResult<HasValue, SDKValidationError>;
4475
4475
  /** @internal */
4476
4476
  export declare const Has2$inboundSchema: z.ZodType<Has2, z.ZodTypeDef, unknown>;
4477
4477
  /** @internal */
4478
4478
  export type Has2$Outbound = {
4479
4479
  type: string;
4480
4480
  key: string;
4481
- value?: CreateDeploymentValueDeployments2$Outbound | string | undefined;
4481
+ value?: CreateDeploymentValue2$Outbound | string | undefined;
4482
4482
  };
4483
4483
  /** @internal */
4484
4484
  export declare const Has2$outboundSchema: z.ZodType<Has2$Outbound, z.ZodTypeDef, Has2>;
@@ -4535,9 +4535,9 @@ export declare namespace Eq$ {
4535
4535
  export declare function eqToJSON(eq: Eq): string;
4536
4536
  export declare function eqFromJSON(jsonString: string): SafeParseResult<Eq, SDKValidationError>;
4537
4537
  /** @internal */
4538
- export declare const CreateDeploymentValue2$inboundSchema: z.ZodType<CreateDeploymentValue2, z.ZodTypeDef, unknown>;
4538
+ export declare const CreateDeploymentValueDeploymentsResponse2002$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2002, z.ZodTypeDef, unknown>;
4539
4539
  /** @internal */
4540
- export type CreateDeploymentValue2$Outbound = {
4540
+ export type CreateDeploymentValueDeploymentsResponse2002$Outbound = {
4541
4541
  eq?: string | number | undefined;
4542
4542
  neq?: string | undefined;
4543
4543
  inc?: Array<string> | undefined;
@@ -4551,47 +4551,47 @@ export type CreateDeploymentValue2$Outbound = {
4551
4551
  lte?: number | undefined;
4552
4552
  };
4553
4553
  /** @internal */
4554
- export declare const CreateDeploymentValue2$outboundSchema: z.ZodType<CreateDeploymentValue2$Outbound, z.ZodTypeDef, CreateDeploymentValue2>;
4554
+ export declare const CreateDeploymentValueDeploymentsResponse2002$outboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2002$Outbound, z.ZodTypeDef, CreateDeploymentValueDeploymentsResponse2002>;
4555
4555
  /**
4556
4556
  * @internal
4557
4557
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4558
4558
  */
4559
- export declare namespace CreateDeploymentValue2$ {
4560
- /** @deprecated use `CreateDeploymentValue2$inboundSchema` instead. */
4561
- const inboundSchema: z.ZodType<CreateDeploymentValue2, z.ZodTypeDef, unknown>;
4562
- /** @deprecated use `CreateDeploymentValue2$outboundSchema` instead. */
4563
- const outboundSchema: z.ZodType<CreateDeploymentValue2$Outbound, z.ZodTypeDef, CreateDeploymentValue2>;
4564
- /** @deprecated use `CreateDeploymentValue2$Outbound` instead. */
4565
- type Outbound = CreateDeploymentValue2$Outbound;
4559
+ export declare namespace CreateDeploymentValueDeploymentsResponse2002$ {
4560
+ /** @deprecated use `CreateDeploymentValueDeploymentsResponse2002$inboundSchema` instead. */
4561
+ const inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2002, z.ZodTypeDef, unknown>;
4562
+ /** @deprecated use `CreateDeploymentValueDeploymentsResponse2002$outboundSchema` instead. */
4563
+ const outboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2002$Outbound, z.ZodTypeDef, CreateDeploymentValueDeploymentsResponse2002>;
4564
+ /** @deprecated use `CreateDeploymentValueDeploymentsResponse2002$Outbound` instead. */
4565
+ type Outbound = CreateDeploymentValueDeploymentsResponse2002$Outbound;
4566
4566
  }
4567
- export declare function createDeploymentValue2ToJSON(createDeploymentValue2: CreateDeploymentValue2): string;
4568
- export declare function createDeploymentValue2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValue2, SDKValidationError>;
4567
+ export declare function createDeploymentValueDeploymentsResponse2002ToJSON(createDeploymentValueDeploymentsResponse2002: CreateDeploymentValueDeploymentsResponse2002): string;
4568
+ export declare function createDeploymentValueDeploymentsResponse2002FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse2002, SDKValidationError>;
4569
4569
  /** @internal */
4570
- export declare const HasValue$inboundSchema: z.ZodType<HasValue, z.ZodTypeDef, unknown>;
4570
+ export declare const CreateDeploymentHasValue$inboundSchema: z.ZodType<CreateDeploymentHasValue, z.ZodTypeDef, unknown>;
4571
4571
  /** @internal */
4572
- export type HasValue$Outbound = CreateDeploymentValue2$Outbound | string;
4572
+ export type CreateDeploymentHasValue$Outbound = CreateDeploymentValueDeploymentsResponse2002$Outbound | string;
4573
4573
  /** @internal */
4574
- export declare const HasValue$outboundSchema: z.ZodType<HasValue$Outbound, z.ZodTypeDef, HasValue>;
4574
+ export declare const CreateDeploymentHasValue$outboundSchema: z.ZodType<CreateDeploymentHasValue$Outbound, z.ZodTypeDef, CreateDeploymentHasValue>;
4575
4575
  /**
4576
4576
  * @internal
4577
4577
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4578
4578
  */
4579
- export declare namespace HasValue$ {
4580
- /** @deprecated use `HasValue$inboundSchema` instead. */
4581
- const inboundSchema: z.ZodType<HasValue, z.ZodTypeDef, unknown>;
4582
- /** @deprecated use `HasValue$outboundSchema` instead. */
4583
- const outboundSchema: z.ZodType<HasValue$Outbound, z.ZodTypeDef, HasValue>;
4584
- /** @deprecated use `HasValue$Outbound` instead. */
4585
- type Outbound = HasValue$Outbound;
4579
+ export declare namespace CreateDeploymentHasValue$ {
4580
+ /** @deprecated use `CreateDeploymentHasValue$inboundSchema` instead. */
4581
+ const inboundSchema: z.ZodType<CreateDeploymentHasValue, z.ZodTypeDef, unknown>;
4582
+ /** @deprecated use `CreateDeploymentHasValue$outboundSchema` instead. */
4583
+ const outboundSchema: z.ZodType<CreateDeploymentHasValue$Outbound, z.ZodTypeDef, CreateDeploymentHasValue>;
4584
+ /** @deprecated use `CreateDeploymentHasValue$Outbound` instead. */
4585
+ type Outbound = CreateDeploymentHasValue$Outbound;
4586
4586
  }
4587
- export declare function hasValueToJSON(hasValue: HasValue): string;
4588
- export declare function hasValueFromJSON(jsonString: string): SafeParseResult<HasValue, SDKValidationError>;
4587
+ export declare function createDeploymentHasValueToJSON(createDeploymentHasValue: CreateDeploymentHasValue): string;
4588
+ export declare function createDeploymentHasValueFromJSON(jsonString: string): SafeParseResult<CreateDeploymentHasValue, SDKValidationError>;
4589
4589
  /** @internal */
4590
4590
  export declare const Has1$inboundSchema: z.ZodType<Has1, z.ZodTypeDef, unknown>;
4591
4591
  /** @internal */
4592
4592
  export type Has1$Outbound = {
4593
4593
  type: string;
4594
- value: CreateDeploymentValue2$Outbound | string;
4594
+ value: CreateDeploymentValueDeploymentsResponse2002$Outbound | string;
4595
4595
  };
4596
4596
  /** @internal */
4597
4597
  export declare const Has1$outboundSchema: z.ZodType<Has1$Outbound, z.ZodTypeDef, Has1>;
@@ -4610,25 +4610,25 @@ export declare namespace Has1$ {
4610
4610
  export declare function has1ToJSON(has1: Has1): string;
4611
4611
  export declare function has1FromJSON(jsonString: string): SafeParseResult<Has1, SDKValidationError>;
4612
4612
  /** @internal */
4613
- export declare const RoutesHas$inboundSchema: z.ZodType<RoutesHas, z.ZodTypeDef, unknown>;
4613
+ export declare const Has$inboundSchema: z.ZodType<Has, z.ZodTypeDef, unknown>;
4614
4614
  /** @internal */
4615
- export type RoutesHas$Outbound = Has1$Outbound | Has2$Outbound;
4615
+ export type Has$Outbound = Has1$Outbound | Has2$Outbound;
4616
4616
  /** @internal */
4617
- export declare const RoutesHas$outboundSchema: z.ZodType<RoutesHas$Outbound, z.ZodTypeDef, RoutesHas>;
4617
+ export declare const Has$outboundSchema: z.ZodType<Has$Outbound, z.ZodTypeDef, Has>;
4618
4618
  /**
4619
4619
  * @internal
4620
4620
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4621
4621
  */
4622
- export declare namespace RoutesHas$ {
4623
- /** @deprecated use `RoutesHas$inboundSchema` instead. */
4624
- const inboundSchema: z.ZodType<RoutesHas, z.ZodTypeDef, unknown>;
4625
- /** @deprecated use `RoutesHas$outboundSchema` instead. */
4626
- const outboundSchema: z.ZodType<RoutesHas$Outbound, z.ZodTypeDef, RoutesHas>;
4627
- /** @deprecated use `RoutesHas$Outbound` instead. */
4628
- type Outbound = RoutesHas$Outbound;
4622
+ export declare namespace Has$ {
4623
+ /** @deprecated use `Has$inboundSchema` instead. */
4624
+ const inboundSchema: z.ZodType<Has, z.ZodTypeDef, unknown>;
4625
+ /** @deprecated use `Has$outboundSchema` instead. */
4626
+ const outboundSchema: z.ZodType<Has$Outbound, z.ZodTypeDef, Has>;
4627
+ /** @deprecated use `Has$Outbound` instead. */
4628
+ type Outbound = Has$Outbound;
4629
4629
  }
4630
- export declare function routesHasToJSON(routesHas: RoutesHas): string;
4631
- export declare function routesHasFromJSON(jsonString: string): SafeParseResult<RoutesHas, SDKValidationError>;
4630
+ export declare function hasToJSON(has: Has): string;
4631
+ export declare function hasFromJSON(jsonString: string): SafeParseResult<Has, SDKValidationError>;
4632
4632
  /** @internal */
4633
4633
  export declare const CreateDeploymentMissingType$inboundSchema: z.ZodNativeEnum<typeof CreateDeploymentMissingType>;
4634
4634
  /** @internal */
@@ -4672,9 +4672,9 @@ export declare namespace CreateDeploymentValueDeploymentsEq$ {
4672
4672
  export declare function createDeploymentValueDeploymentsEqToJSON(createDeploymentValueDeploymentsEq: CreateDeploymentValueDeploymentsEq): string;
4673
4673
  export declare function createDeploymentValueDeploymentsEqFromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsEq, SDKValidationError>;
4674
4674
  /** @internal */
4675
- export declare const CreateDeploymentValueDeploymentsResponse2002$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2002, z.ZodTypeDef, unknown>;
4675
+ export declare const CreateDeploymentValueDeploymentsResponse2$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2, z.ZodTypeDef, unknown>;
4676
4676
  /** @internal */
4677
- export type CreateDeploymentValueDeploymentsResponse2002$Outbound = {
4677
+ export type CreateDeploymentValueDeploymentsResponse2$Outbound = {
4678
4678
  eq?: string | number | undefined;
4679
4679
  neq?: string | undefined;
4680
4680
  inc?: Array<string> | undefined;
@@ -4688,25 +4688,25 @@ export type CreateDeploymentValueDeploymentsResponse2002$Outbound = {
4688
4688
  lte?: number | undefined;
4689
4689
  };
4690
4690
  /** @internal */
4691
- export declare const CreateDeploymentValueDeploymentsResponse2002$outboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2002$Outbound, z.ZodTypeDef, CreateDeploymentValueDeploymentsResponse2002>;
4691
+ export declare const CreateDeploymentValueDeploymentsResponse2$outboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2$Outbound, z.ZodTypeDef, CreateDeploymentValueDeploymentsResponse2>;
4692
4692
  /**
4693
4693
  * @internal
4694
4694
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4695
4695
  */
4696
- export declare namespace CreateDeploymentValueDeploymentsResponse2002$ {
4697
- /** @deprecated use `CreateDeploymentValueDeploymentsResponse2002$inboundSchema` instead. */
4698
- const inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2002, z.ZodTypeDef, unknown>;
4699
- /** @deprecated use `CreateDeploymentValueDeploymentsResponse2002$outboundSchema` instead. */
4700
- const outboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2002$Outbound, z.ZodTypeDef, CreateDeploymentValueDeploymentsResponse2002>;
4701
- /** @deprecated use `CreateDeploymentValueDeploymentsResponse2002$Outbound` instead. */
4702
- type Outbound = CreateDeploymentValueDeploymentsResponse2002$Outbound;
4696
+ export declare namespace CreateDeploymentValueDeploymentsResponse2$ {
4697
+ /** @deprecated use `CreateDeploymentValueDeploymentsResponse2$inboundSchema` instead. */
4698
+ const inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2, z.ZodTypeDef, unknown>;
4699
+ /** @deprecated use `CreateDeploymentValueDeploymentsResponse2$outboundSchema` instead. */
4700
+ const outboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2$Outbound, z.ZodTypeDef, CreateDeploymentValueDeploymentsResponse2>;
4701
+ /** @deprecated use `CreateDeploymentValueDeploymentsResponse2$Outbound` instead. */
4702
+ type Outbound = CreateDeploymentValueDeploymentsResponse2$Outbound;
4703
4703
  }
4704
- export declare function createDeploymentValueDeploymentsResponse2002ToJSON(createDeploymentValueDeploymentsResponse2002: CreateDeploymentValueDeploymentsResponse2002): string;
4705
- export declare function createDeploymentValueDeploymentsResponse2002FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse2002, SDKValidationError>;
4704
+ export declare function createDeploymentValueDeploymentsResponse2ToJSON(createDeploymentValueDeploymentsResponse2: CreateDeploymentValueDeploymentsResponse2): string;
4705
+ export declare function createDeploymentValueDeploymentsResponse2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse2, SDKValidationError>;
4706
4706
  /** @internal */
4707
4707
  export declare const CreateDeploymentMissingValue$inboundSchema: z.ZodType<CreateDeploymentMissingValue, z.ZodTypeDef, unknown>;
4708
4708
  /** @internal */
4709
- export type CreateDeploymentMissingValue$Outbound = CreateDeploymentValueDeploymentsResponse2002$Outbound | string;
4709
+ export type CreateDeploymentMissingValue$Outbound = CreateDeploymentValueDeploymentsResponse2$Outbound | string;
4710
4710
  /** @internal */
4711
4711
  export declare const CreateDeploymentMissingValue$outboundSchema: z.ZodType<CreateDeploymentMissingValue$Outbound, z.ZodTypeDef, CreateDeploymentMissingValue>;
4712
4712
  /**
@@ -4729,7 +4729,7 @@ export declare const Missing2$inboundSchema: z.ZodType<Missing2, z.ZodTypeDef, u
4729
4729
  export type Missing2$Outbound = {
4730
4730
  type: string;
4731
4731
  key: string;
4732
- value?: CreateDeploymentValueDeploymentsResponse2002$Outbound | string | undefined;
4732
+ value?: CreateDeploymentValueDeploymentsResponse2$Outbound | string | undefined;
4733
4733
  };
4734
4734
  /** @internal */
4735
4735
  export declare const Missing2$outboundSchema: z.ZodType<Missing2$Outbound, z.ZodTypeDef, Missing2>;
@@ -4786,9 +4786,9 @@ export declare namespace CreateDeploymentValueEq$ {
4786
4786
  export declare function createDeploymentValueEqToJSON(createDeploymentValueEq: CreateDeploymentValueEq): string;
4787
4787
  export declare function createDeploymentValueEqFromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueEq, SDKValidationError>;
4788
4788
  /** @internal */
4789
- export declare const CreateDeploymentValueDeploymentsResponse2$inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2, z.ZodTypeDef, unknown>;
4789
+ export declare const CreateDeploymentValueDeployments2$inboundSchema: z.ZodType<CreateDeploymentValueDeployments2, z.ZodTypeDef, unknown>;
4790
4790
  /** @internal */
4791
- export type CreateDeploymentValueDeploymentsResponse2$Outbound = {
4791
+ export type CreateDeploymentValueDeployments2$Outbound = {
4792
4792
  eq?: string | number | undefined;
4793
4793
  neq?: string | undefined;
4794
4794
  inc?: Array<string> | undefined;
@@ -4802,25 +4802,25 @@ export type CreateDeploymentValueDeploymentsResponse2$Outbound = {
4802
4802
  lte?: number | undefined;
4803
4803
  };
4804
4804
  /** @internal */
4805
- export declare const CreateDeploymentValueDeploymentsResponse2$outboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2$Outbound, z.ZodTypeDef, CreateDeploymentValueDeploymentsResponse2>;
4805
+ export declare const CreateDeploymentValueDeployments2$outboundSchema: z.ZodType<CreateDeploymentValueDeployments2$Outbound, z.ZodTypeDef, CreateDeploymentValueDeployments2>;
4806
4806
  /**
4807
4807
  * @internal
4808
4808
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4809
4809
  */
4810
- export declare namespace CreateDeploymentValueDeploymentsResponse2$ {
4811
- /** @deprecated use `CreateDeploymentValueDeploymentsResponse2$inboundSchema` instead. */
4812
- const inboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2, z.ZodTypeDef, unknown>;
4813
- /** @deprecated use `CreateDeploymentValueDeploymentsResponse2$outboundSchema` instead. */
4814
- const outboundSchema: z.ZodType<CreateDeploymentValueDeploymentsResponse2$Outbound, z.ZodTypeDef, CreateDeploymentValueDeploymentsResponse2>;
4815
- /** @deprecated use `CreateDeploymentValueDeploymentsResponse2$Outbound` instead. */
4816
- type Outbound = CreateDeploymentValueDeploymentsResponse2$Outbound;
4810
+ export declare namespace CreateDeploymentValueDeployments2$ {
4811
+ /** @deprecated use `CreateDeploymentValueDeployments2$inboundSchema` instead. */
4812
+ const inboundSchema: z.ZodType<CreateDeploymentValueDeployments2, z.ZodTypeDef, unknown>;
4813
+ /** @deprecated use `CreateDeploymentValueDeployments2$outboundSchema` instead. */
4814
+ const outboundSchema: z.ZodType<CreateDeploymentValueDeployments2$Outbound, z.ZodTypeDef, CreateDeploymentValueDeployments2>;
4815
+ /** @deprecated use `CreateDeploymentValueDeployments2$Outbound` instead. */
4816
+ type Outbound = CreateDeploymentValueDeployments2$Outbound;
4817
4817
  }
4818
- export declare function createDeploymentValueDeploymentsResponse2ToJSON(createDeploymentValueDeploymentsResponse2: CreateDeploymentValueDeploymentsResponse2): string;
4819
- export declare function createDeploymentValueDeploymentsResponse2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeploymentsResponse2, SDKValidationError>;
4818
+ export declare function createDeploymentValueDeployments2ToJSON(createDeploymentValueDeployments2: CreateDeploymentValueDeployments2): string;
4819
+ export declare function createDeploymentValueDeployments2FromJSON(jsonString: string): SafeParseResult<CreateDeploymentValueDeployments2, SDKValidationError>;
4820
4820
  /** @internal */
4821
4821
  export declare const MissingValue$inboundSchema: z.ZodType<MissingValue, z.ZodTypeDef, unknown>;
4822
4822
  /** @internal */
4823
- export type MissingValue$Outbound = CreateDeploymentValueDeploymentsResponse2$Outbound | string;
4823
+ export type MissingValue$Outbound = CreateDeploymentValueDeployments2$Outbound | string;
4824
4824
  /** @internal */
4825
4825
  export declare const MissingValue$outboundSchema: z.ZodType<MissingValue$Outbound, z.ZodTypeDef, MissingValue>;
4826
4826
  /**
@@ -4842,7 +4842,7 @@ export declare const Missing1$inboundSchema: z.ZodType<Missing1, z.ZodTypeDef, u
4842
4842
  /** @internal */
4843
4843
  export type Missing1$Outbound = {
4844
4844
  type: string;
4845
- value: CreateDeploymentValueDeploymentsResponse2$Outbound | string;
4845
+ value: CreateDeploymentValueDeployments2$Outbound | string;
4846
4846
  };
4847
4847
  /** @internal */
4848
4848
  export declare const Missing1$outboundSchema: z.ZodType<Missing1$Outbound, z.ZodTypeDef, Missing1>;
@@ -4861,25 +4861,25 @@ export declare namespace Missing1$ {
4861
4861
  export declare function missing1ToJSON(missing1: Missing1): string;
4862
4862
  export declare function missing1FromJSON(jsonString: string): SafeParseResult<Missing1, SDKValidationError>;
4863
4863
  /** @internal */
4864
- export declare const RoutesMissing$inboundSchema: z.ZodType<RoutesMissing, z.ZodTypeDef, unknown>;
4864
+ export declare const Missing$inboundSchema: z.ZodType<Missing, z.ZodTypeDef, unknown>;
4865
4865
  /** @internal */
4866
- export type RoutesMissing$Outbound = Missing1$Outbound | Missing2$Outbound;
4866
+ export type Missing$Outbound = Missing1$Outbound | Missing2$Outbound;
4867
4867
  /** @internal */
4868
- export declare const RoutesMissing$outboundSchema: z.ZodType<RoutesMissing$Outbound, z.ZodTypeDef, RoutesMissing>;
4868
+ export declare const Missing$outboundSchema: z.ZodType<Missing$Outbound, z.ZodTypeDef, Missing>;
4869
4869
  /**
4870
4870
  * @internal
4871
4871
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4872
4872
  */
4873
- export declare namespace RoutesMissing$ {
4874
- /** @deprecated use `RoutesMissing$inboundSchema` instead. */
4875
- const inboundSchema: z.ZodType<RoutesMissing, z.ZodTypeDef, unknown>;
4876
- /** @deprecated use `RoutesMissing$outboundSchema` instead. */
4877
- const outboundSchema: z.ZodType<RoutesMissing$Outbound, z.ZodTypeDef, RoutesMissing>;
4878
- /** @deprecated use `RoutesMissing$Outbound` instead. */
4879
- type Outbound = RoutesMissing$Outbound;
4873
+ export declare namespace Missing$ {
4874
+ /** @deprecated use `Missing$inboundSchema` instead. */
4875
+ const inboundSchema: z.ZodType<Missing, z.ZodTypeDef, unknown>;
4876
+ /** @deprecated use `Missing$outboundSchema` instead. */
4877
+ const outboundSchema: z.ZodType<Missing$Outbound, z.ZodTypeDef, Missing>;
4878
+ /** @deprecated use `Missing$Outbound` instead. */
4879
+ type Outbound = Missing$Outbound;
4880
4880
  }
4881
- export declare function routesMissingToJSON(routesMissing: RoutesMissing): string;
4882
- export declare function routesMissingFromJSON(jsonString: string): SafeParseResult<RoutesMissing, SDKValidationError>;
4881
+ export declare function missingToJSON(missing: Missing): string;
4882
+ export declare function missingFromJSON(jsonString: string): SafeParseResult<Missing, SDKValidationError>;
4883
4883
  /** @internal */
4884
4884
  export declare const RoutesAction$inboundSchema: z.ZodNativeEnum<typeof RoutesAction>;
4885
4885
  /** @internal */
@@ -4901,27 +4901,27 @@ export declare namespace RoutesAction$ {
4901
4901
  }>;
4902
4902
  }
4903
4903
  /** @internal */
4904
- export declare const RoutesMitigate$inboundSchema: z.ZodType<RoutesMitigate, z.ZodTypeDef, unknown>;
4904
+ export declare const CreateDeploymentRoutesMitigate$inboundSchema: z.ZodType<CreateDeploymentRoutesMitigate, z.ZodTypeDef, unknown>;
4905
4905
  /** @internal */
4906
- export type RoutesMitigate$Outbound = {
4906
+ export type CreateDeploymentRoutesMitigate$Outbound = {
4907
4907
  action: string;
4908
4908
  };
4909
4909
  /** @internal */
4910
- export declare const RoutesMitigate$outboundSchema: z.ZodType<RoutesMitigate$Outbound, z.ZodTypeDef, RoutesMitigate>;
4910
+ export declare const CreateDeploymentRoutesMitigate$outboundSchema: z.ZodType<CreateDeploymentRoutesMitigate$Outbound, z.ZodTypeDef, CreateDeploymentRoutesMitigate>;
4911
4911
  /**
4912
4912
  * @internal
4913
4913
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4914
4914
  */
4915
- export declare namespace RoutesMitigate$ {
4916
- /** @deprecated use `RoutesMitigate$inboundSchema` instead. */
4917
- const inboundSchema: z.ZodType<RoutesMitigate, z.ZodTypeDef, unknown>;
4918
- /** @deprecated use `RoutesMitigate$outboundSchema` instead. */
4919
- const outboundSchema: z.ZodType<RoutesMitigate$Outbound, z.ZodTypeDef, RoutesMitigate>;
4920
- /** @deprecated use `RoutesMitigate$Outbound` instead. */
4921
- type Outbound = RoutesMitigate$Outbound;
4915
+ export declare namespace CreateDeploymentRoutesMitigate$ {
4916
+ /** @deprecated use `CreateDeploymentRoutesMitigate$inboundSchema` instead. */
4917
+ const inboundSchema: z.ZodType<CreateDeploymentRoutesMitigate, z.ZodTypeDef, unknown>;
4918
+ /** @deprecated use `CreateDeploymentRoutesMitigate$outboundSchema` instead. */
4919
+ const outboundSchema: z.ZodType<CreateDeploymentRoutesMitigate$Outbound, z.ZodTypeDef, CreateDeploymentRoutesMitigate>;
4920
+ /** @deprecated use `CreateDeploymentRoutesMitigate$Outbound` instead. */
4921
+ type Outbound = CreateDeploymentRoutesMitigate$Outbound;
4922
4922
  }
4923
- export declare function routesMitigateToJSON(routesMitigate: RoutesMitigate): string;
4924
- export declare function routesMitigateFromJSON(jsonString: string): SafeParseResult<RoutesMitigate, SDKValidationError>;
4923
+ export declare function createDeploymentRoutesMitigateToJSON(createDeploymentRoutesMitigate: CreateDeploymentRoutesMitigate): string;
4924
+ export declare function createDeploymentRoutesMitigateFromJSON(jsonString: string): SafeParseResult<CreateDeploymentRoutesMitigate, SDKValidationError>;
4925
4925
  /** @internal */
4926
4926
  export declare const RoutesType$inboundSchema: z.ZodNativeEnum<typeof RoutesType>;
4927
4927
  /** @internal */
@@ -5147,7 +5147,7 @@ export type Routes1$Outbound = {
5147
5147
  status?: number | undefined;
5148
5148
  has?: Array<Has1$Outbound | Has2$Outbound> | undefined;
5149
5149
  missing?: Array<Missing1$Outbound | Missing2$Outbound> | undefined;
5150
- mitigate?: RoutesMitigate$Outbound | undefined;
5150
+ mitigate?: CreateDeploymentRoutesMitigate$Outbound | undefined;
5151
5151
  transforms?: Array<Transforms$Outbound> | undefined;
5152
5152
  locale?: Locale$Outbound | undefined;
5153
5153
  middlewarePath?: string | undefined;