@vercel/sdk 1.10.1 → 1.10.3

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 (81) hide show
  1. package/bin/mcp-server.js +436 -1558
  2. package/bin/mcp-server.js.map +19 -19
  3. package/esm/__tests__/teams.test.js +2 -4
  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/domainsGetDomainConfig.js +1 -0
  8. package/esm/funcs/domainsGetDomainConfig.js.map +1 -1
  9. package/esm/funcs/domainsPatchDomain.js +2 -2
  10. package/esm/funcs/domainsPatchDomain.js.map +1 -1
  11. package/esm/lib/config.d.ts +3 -3
  12. package/esm/lib/config.js +3 -3
  13. package/esm/mcp-server/mcp-server.js +1 -1
  14. package/esm/mcp-server/server.js +1 -1
  15. package/esm/models/canceldeploymentop.d.ts +49 -49
  16. package/esm/models/canceldeploymentop.d.ts.map +1 -1
  17. package/esm/models/canceldeploymentop.js +53 -55
  18. package/esm/models/canceldeploymentop.js.map +1 -1
  19. package/esm/models/createdeploymentop.d.ts +174 -174
  20. package/esm/models/createdeploymentop.d.ts.map +1 -1
  21. package/esm/models/createdeploymentop.js +166 -165
  22. package/esm/models/createdeploymentop.js.map +1 -1
  23. package/esm/models/createprojectop.d.ts +33 -585
  24. package/esm/models/createprojectop.d.ts.map +1 -1
  25. package/esm/models/createprojectop.js +31 -530
  26. package/esm/models/createprojectop.js.map +1 -1
  27. package/esm/models/getdeploymentop.d.ts +90 -90
  28. package/esm/models/getdeploymentop.d.ts.map +1 -1
  29. package/esm/models/getdeploymentop.js +101 -102
  30. package/esm/models/getdeploymentop.js.map +1 -1
  31. package/esm/models/getdomainconfigop.d.ts +63 -0
  32. package/esm/models/getdomainconfigop.d.ts.map +1 -1
  33. package/esm/models/getdomainconfigop.js +52 -0
  34. package/esm/models/getdomainconfigop.js.map +1 -1
  35. package/esm/models/getprojectsop.d.ts +33 -585
  36. package/esm/models/getprojectsop.d.ts.map +1 -1
  37. package/esm/models/getprojectsop.js +31 -530
  38. package/esm/models/getprojectsop.js.map +1 -1
  39. package/esm/models/team.d.ts +13 -12
  40. package/esm/models/team.d.ts.map +1 -1
  41. package/esm/models/team.js +6 -7
  42. package/esm/models/team.js.map +1 -1
  43. package/esm/models/teamlimited.d.ts +0 -2
  44. package/esm/models/teamlimited.d.ts.map +1 -1
  45. package/esm/models/teamlimited.js +0 -2
  46. package/esm/models/teamlimited.js.map +1 -1
  47. package/esm/models/updateprojectdatacacheop.d.ts +41 -593
  48. package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
  49. package/esm/models/updateprojectdatacacheop.js +43 -561
  50. package/esm/models/updateprojectdatacacheop.js.map +1 -1
  51. package/esm/models/updateprojectop.d.ts +33 -585
  52. package/esm/models/updateprojectop.d.ts.map +1 -1
  53. package/esm/models/updateprojectop.js +31 -530
  54. package/esm/models/updateprojectop.js.map +1 -1
  55. package/esm/models/userevent.d.ts +154 -124
  56. package/esm/models/userevent.d.ts.map +1 -1
  57. package/esm/models/userevent.js +166 -135
  58. package/esm/models/userevent.js.map +1 -1
  59. package/examples/package-lock.json +1 -1
  60. package/examples/projectsUpdateProject.example.ts +1 -1
  61. package/jsr.json +1 -1
  62. package/package.json +1 -1
  63. package/src/__tests__/teams.test.ts +2 -4
  64. package/src/funcs/domainsBuyDomain.ts +2 -2
  65. package/src/funcs/domainsGetDomainConfig.ts +1 -0
  66. package/src/funcs/domainsPatchDomain.ts +2 -2
  67. package/src/lib/config.ts +3 -3
  68. package/src/mcp-server/mcp-server.ts +1 -1
  69. package/src/mcp-server/server.ts +1 -1
  70. package/src/models/canceldeploymentop.ts +78 -104
  71. package/src/models/createdeploymentop.ts +347 -350
  72. package/src/models/createprojectop.ts +197 -1221
  73. package/src/models/getdeploymentop.ts +214 -216
  74. package/src/models/getdomainconfigop.ts +129 -0
  75. package/src/models/getprojectsop.ts +202 -1207
  76. package/src/models/team.ts +13 -16
  77. package/src/models/teamlimited.ts +0 -4
  78. package/src/models/updateprojectdatacacheop.ts +171 -1168
  79. package/src/models/updateprojectop.ts +197 -1221
  80. package/src/models/userevent.ts +309 -236
  81. package/vercel-spec.json +141 -1530
@@ -460,11 +460,11 @@ export type CreateDeploymentProjectSettings = {
460
460
  webAnalytics?: CreateDeploymentWebAnalytics | undefined;
461
461
  };
462
462
  export declare const CreateDeploymentDeploymentsStatus: {
463
- readonly Error: "error";
464
- readonly Timeout: "timeout";
465
463
  readonly Skipped: "skipped";
466
464
  readonly Pending: "pending";
467
465
  readonly Ready: "ready";
466
+ readonly Error: "error";
467
+ readonly Timeout: "timeout";
468
468
  };
469
469
  export type CreateDeploymentDeploymentsStatus = ClosedEnum<typeof CreateDeploymentDeploymentsStatus>;
470
470
  export type Integrations = {
@@ -545,8 +545,8 @@ export type Creator = {
545
545
  avatar?: string | undefined;
546
546
  };
547
547
  export declare const CreateDeploymentReadyState: {
548
- readonly Error: "ERROR";
549
548
  readonly Building: "BUILDING";
549
+ readonly Error: "ERROR";
550
550
  readonly Initializing: "INITIALIZING";
551
551
  readonly Ready: "READY";
552
552
  };
@@ -561,8 +561,8 @@ export type CreateDeploymentOutput = {
561
561
  export type Lambdas = {
562
562
  id?: string | undefined;
563
563
  createdAt?: number | undefined;
564
- readyState?: CreateDeploymentReadyState | undefined;
565
564
  entrypoint?: string | null | undefined;
565
+ readyState?: CreateDeploymentReadyState | undefined;
566
566
  readyStateAt?: number | undefined;
567
567
  output: Array<CreateDeploymentOutput>;
568
568
  };
@@ -986,13 +986,13 @@ export declare const CreateDeploymentPlan: {
986
986
  };
987
987
  export type CreateDeploymentPlan = ClosedEnum<typeof CreateDeploymentPlan>;
988
988
  export declare const FunctionType: {
989
- readonly Standard: "standard";
990
989
  readonly Fluid: "fluid";
990
+ readonly Standard: "standard";
991
991
  };
992
992
  export type FunctionType = ClosedEnum<typeof FunctionType>;
993
993
  export declare const FunctionMemoryType: {
994
- readonly StandardLegacy: "standard_legacy";
995
994
  readonly Standard: "standard";
995
+ readonly StandardLegacy: "standard_legacy";
996
996
  readonly Performance: "performance";
997
997
  };
998
998
  export type FunctionMemoryType = ClosedEnum<typeof FunctionMemoryType>;
@@ -1066,17 +1066,17 @@ export type Routes3 = {
1066
1066
  continue: boolean;
1067
1067
  middleware: number;
1068
1068
  };
1069
- export declare const RoutesHandle: {
1070
- readonly Filesystem: "filesystem";
1069
+ export declare const Handle: {
1071
1070
  readonly Error: "error";
1071
+ readonly Filesystem: "filesystem";
1072
1072
  readonly Hit: "hit";
1073
1073
  readonly Miss: "miss";
1074
- readonly Resource: "resource";
1075
1074
  readonly Rewrite: "rewrite";
1075
+ readonly Resource: "resource";
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: {
@@ -1196,8 +1196,8 @@ export declare const RoutesType: {
1196
1196
  };
1197
1197
  export type RoutesType = ClosedEnum<typeof RoutesType>;
1198
1198
  export declare const CreateDeploymentRoutesOp: {
1199
- readonly Set: "set";
1200
1199
  readonly Append: "append";
1200
+ readonly Set: "set";
1201
1201
  readonly Delete: "delete";
1202
1202
  };
1203
1203
  export type CreateDeploymentRoutesOp = ClosedEnum<typeof CreateDeploymentRoutesOp>;
@@ -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
  /**
@@ -1355,8 +1355,8 @@ export declare const CreateDeploymentGitRepoDeploymentsType: {
1355
1355
  };
1356
1356
  export type CreateDeploymentGitRepoDeploymentsType = ClosedEnum<typeof CreateDeploymentGitRepoDeploymentsType>;
1357
1357
  export declare const CreateDeploymentGitRepoOwnerType: {
1358
- readonly User: "user";
1359
1358
  readonly Team: "team";
1359
+ readonly User: "user";
1360
1360
  };
1361
1361
  export type CreateDeploymentGitRepoOwnerType = ClosedEnum<typeof CreateDeploymentGitRepoOwnerType>;
1362
1362
  export type GitRepo3 = {
@@ -1376,8 +1376,8 @@ export declare const CreateDeploymentGitRepoType: {
1376
1376
  };
1377
1377
  export type CreateDeploymentGitRepoType = ClosedEnum<typeof CreateDeploymentGitRepoType>;
1378
1378
  export declare const GitRepoOwnerType: {
1379
- readonly User: "user";
1380
1379
  readonly Team: "team";
1380
+ readonly User: "user";
1381
1381
  };
1382
1382
  export type GitRepoOwnerType = ClosedEnum<typeof GitRepoOwnerType>;
1383
1383
  export type GitRepo2 = {
@@ -1397,8 +1397,8 @@ export declare const GitRepoType: {
1397
1397
  };
1398
1398
  export type GitRepoType = ClosedEnum<typeof GitRepoType>;
1399
1399
  export declare const OwnerType: {
1400
- readonly User: "user";
1401
1400
  readonly Team: "team";
1401
+ readonly User: "user";
1402
1402
  };
1403
1403
  export type OwnerType = ClosedEnum<typeof OwnerType>;
1404
1404
  export type GitRepo1 = {
@@ -2499,19 +2499,19 @@ export declare const CreateDeploymentDeploymentsStatus$outboundSchema: z.ZodNati
2499
2499
  export declare namespace CreateDeploymentDeploymentsStatus$ {
2500
2500
  /** @deprecated use `CreateDeploymentDeploymentsStatus$inboundSchema` instead. */
2501
2501
  const inboundSchema: z.ZodNativeEnum<{
2502
- readonly Error: "error";
2503
- readonly Timeout: "timeout";
2504
2502
  readonly Skipped: "skipped";
2505
2503
  readonly Pending: "pending";
2506
2504
  readonly Ready: "ready";
2505
+ readonly Error: "error";
2506
+ readonly Timeout: "timeout";
2507
2507
  }>;
2508
2508
  /** @deprecated use `CreateDeploymentDeploymentsStatus$outboundSchema` instead. */
2509
2509
  const outboundSchema: z.ZodNativeEnum<{
2510
- readonly Error: "error";
2511
- readonly Timeout: "timeout";
2512
2510
  readonly Skipped: "skipped";
2513
2511
  readonly Pending: "pending";
2514
2512
  readonly Ready: "ready";
2513
+ readonly Error: "error";
2514
+ readonly Timeout: "timeout";
2515
2515
  }>;
2516
2516
  }
2517
2517
  /** @internal */
@@ -2715,15 +2715,15 @@ export declare const CreateDeploymentReadyState$outboundSchema: z.ZodNativeEnum<
2715
2715
  export declare namespace CreateDeploymentReadyState$ {
2716
2716
  /** @deprecated use `CreateDeploymentReadyState$inboundSchema` instead. */
2717
2717
  const inboundSchema: z.ZodNativeEnum<{
2718
- readonly Error: "ERROR";
2719
2718
  readonly Building: "BUILDING";
2719
+ readonly Error: "ERROR";
2720
2720
  readonly Initializing: "INITIALIZING";
2721
2721
  readonly Ready: "READY";
2722
2722
  }>;
2723
2723
  /** @deprecated use `CreateDeploymentReadyState$outboundSchema` instead. */
2724
2724
  const outboundSchema: z.ZodNativeEnum<{
2725
- readonly Error: "ERROR";
2726
2725
  readonly Building: "BUILDING";
2726
+ readonly Error: "ERROR";
2727
2727
  readonly Initializing: "INITIALIZING";
2728
2728
  readonly Ready: "READY";
2729
2729
  }>;
@@ -2757,8 +2757,8 @@ export declare const Lambdas$inboundSchema: z.ZodType<Lambdas, z.ZodTypeDef, unk
2757
2757
  export type Lambdas$Outbound = {
2758
2758
  id?: string | undefined;
2759
2759
  createdAt?: number | undefined;
2760
- readyState?: string | undefined;
2761
2760
  entrypoint?: string | null | undefined;
2761
+ readyState?: string | undefined;
2762
2762
  readyStateAt?: number | undefined;
2763
2763
  output: Array<CreateDeploymentOutput$Outbound>;
2764
2764
  };
@@ -4149,13 +4149,13 @@ export declare const FunctionType$outboundSchema: z.ZodNativeEnum<typeof Functio
4149
4149
  export declare namespace FunctionType$ {
4150
4150
  /** @deprecated use `FunctionType$inboundSchema` instead. */
4151
4151
  const inboundSchema: z.ZodNativeEnum<{
4152
- readonly Standard: "standard";
4153
4152
  readonly Fluid: "fluid";
4153
+ readonly Standard: "standard";
4154
4154
  }>;
4155
4155
  /** @deprecated use `FunctionType$outboundSchema` instead. */
4156
4156
  const outboundSchema: z.ZodNativeEnum<{
4157
- readonly Standard: "standard";
4158
4157
  readonly Fluid: "fluid";
4158
+ readonly Standard: "standard";
4159
4159
  }>;
4160
4160
  }
4161
4161
  /** @internal */
@@ -4169,14 +4169,14 @@ export declare const FunctionMemoryType$outboundSchema: z.ZodNativeEnum<typeof F
4169
4169
  export declare namespace FunctionMemoryType$ {
4170
4170
  /** @deprecated use `FunctionMemoryType$inboundSchema` instead. */
4171
4171
  const inboundSchema: z.ZodNativeEnum<{
4172
- readonly StandardLegacy: "standard_legacy";
4173
4172
  readonly Standard: "standard";
4173
+ readonly StandardLegacy: "standard_legacy";
4174
4174
  readonly Performance: "performance";
4175
4175
  }>;
4176
4176
  /** @deprecated use `FunctionMemoryType$outboundSchema` instead. */
4177
4177
  const outboundSchema: z.ZodNativeEnum<{
4178
- readonly StandardLegacy: "standard_legacy";
4179
4178
  readonly Standard: "standard";
4179
+ readonly StandardLegacy: "standard_legacy";
4180
4180
  readonly Performance: "performance";
4181
4181
  }>;
4182
4182
  }
@@ -4326,31 +4326,31 @@ 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
- readonly Filesystem: "filesystem";
4340
4339
  readonly Error: "error";
4340
+ readonly Filesystem: "filesystem";
4341
4341
  readonly Hit: "hit";
4342
4342
  readonly Miss: "miss";
4343
- readonly Resource: "resource";
4344
4343
  readonly Rewrite: "rewrite";
4344
+ readonly Resource: "resource";
4345
4345
  }>;
4346
- /** @deprecated use `RoutesHandle$outboundSchema` instead. */
4346
+ /** @deprecated use `Handle$outboundSchema` instead. */
4347
4347
  const outboundSchema: z.ZodNativeEnum<{
4348
- readonly Filesystem: "filesystem";
4349
4348
  readonly Error: "error";
4349
+ readonly Filesystem: "filesystem";
4350
4350
  readonly Hit: "hit";
4351
4351
  readonly Miss: "miss";
4352
- readonly Resource: "resource";
4353
4352
  readonly Rewrite: "rewrite";
4353
+ readonly Resource: "resource";
4354
4354
  }>;
4355
4355
  }
4356
4356
  /** @internal */
@@ -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 */
@@ -4955,14 +4955,14 @@ export declare const CreateDeploymentRoutesOp$outboundSchema: z.ZodNativeEnum<ty
4955
4955
  export declare namespace CreateDeploymentRoutesOp$ {
4956
4956
  /** @deprecated use `CreateDeploymentRoutesOp$inboundSchema` instead. */
4957
4957
  const inboundSchema: z.ZodNativeEnum<{
4958
- readonly Set: "set";
4959
4958
  readonly Append: "append";
4959
+ readonly Set: "set";
4960
4960
  readonly Delete: "delete";
4961
4961
  }>;
4962
4962
  /** @deprecated use `CreateDeploymentRoutesOp$outboundSchema` instead. */
4963
4963
  const outboundSchema: z.ZodNativeEnum<{
4964
- readonly Set: "set";
4965
4964
  readonly Append: "append";
4965
+ readonly Set: "set";
4966
4966
  readonly Delete: "delete";
4967
4967
  }>;
4968
4968
  }
@@ -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;
@@ -5410,13 +5410,13 @@ export declare const CreateDeploymentGitRepoOwnerType$outboundSchema: z.ZodNativ
5410
5410
  export declare namespace CreateDeploymentGitRepoOwnerType$ {
5411
5411
  /** @deprecated use `CreateDeploymentGitRepoOwnerType$inboundSchema` instead. */
5412
5412
  const inboundSchema: z.ZodNativeEnum<{
5413
- readonly User: "user";
5414
5413
  readonly Team: "team";
5414
+ readonly User: "user";
5415
5415
  }>;
5416
5416
  /** @deprecated use `CreateDeploymentGitRepoOwnerType$outboundSchema` instead. */
5417
5417
  const outboundSchema: z.ZodNativeEnum<{
5418
- readonly User: "user";
5419
5418
  readonly Team: "team";
5419
+ readonly User: "user";
5420
5420
  }>;
5421
5421
  }
5422
5422
  /** @internal */
@@ -5479,13 +5479,13 @@ export declare const GitRepoOwnerType$outboundSchema: z.ZodNativeEnum<typeof Git
5479
5479
  export declare namespace GitRepoOwnerType$ {
5480
5480
  /** @deprecated use `GitRepoOwnerType$inboundSchema` instead. */
5481
5481
  const inboundSchema: z.ZodNativeEnum<{
5482
- readonly User: "user";
5483
5482
  readonly Team: "team";
5483
+ readonly User: "user";
5484
5484
  }>;
5485
5485
  /** @deprecated use `GitRepoOwnerType$outboundSchema` instead. */
5486
5486
  const outboundSchema: z.ZodNativeEnum<{
5487
- readonly User: "user";
5488
5487
  readonly Team: "team";
5488
+ readonly User: "user";
5489
5489
  }>;
5490
5490
  }
5491
5491
  /** @internal */
@@ -5548,13 +5548,13 @@ export declare const OwnerType$outboundSchema: z.ZodNativeEnum<typeof OwnerType>
5548
5548
  export declare namespace OwnerType$ {
5549
5549
  /** @deprecated use `OwnerType$inboundSchema` instead. */
5550
5550
  const inboundSchema: z.ZodNativeEnum<{
5551
- readonly User: "user";
5552
5551
  readonly Team: "team";
5552
+ readonly User: "user";
5553
5553
  }>;
5554
5554
  /** @deprecated use `OwnerType$outboundSchema` instead. */
5555
5555
  const outboundSchema: z.ZodNativeEnum<{
5556
- readonly User: "user";
5557
5556
  readonly Team: "team";
5557
+ readonly User: "user";
5558
5558
  }>;
5559
5559
  }
5560
5560
  /** @internal */