@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
@@ -1649,7 +1649,7 @@ export type GetDeploymentHasType = ClosedEnum<typeof GetDeploymentHasType>;
1649
1649
 
1650
1650
  export type GetDeploymentValueDeploymentsResponse200Eq = string | number;
1651
1651
 
1652
- export type GetDeploymentValueDeployments2 = {
1652
+ export type GetDeploymentValue2 = {
1653
1653
  eq?: string | number | undefined;
1654
1654
  neq?: string | undefined;
1655
1655
  inc?: Array<string> | undefined;
@@ -1663,12 +1663,12 @@ export type GetDeploymentValueDeployments2 = {
1663
1663
  lte?: number | undefined;
1664
1664
  };
1665
1665
 
1666
- export type GetDeploymentHasValue = GetDeploymentValueDeployments2 | string;
1666
+ export type GetDeploymentHasDeploymentsValue = GetDeploymentValue2 | string;
1667
1667
 
1668
1668
  export type GetDeploymentHas2 = {
1669
1669
  type: GetDeploymentHasType;
1670
1670
  key: string;
1671
- value?: GetDeploymentValueDeployments2 | string | undefined;
1671
+ value?: GetDeploymentValue2 | string | undefined;
1672
1672
  };
1673
1673
 
1674
1674
  export const GetDeploymentHasDeploymentsType = {
@@ -1680,7 +1680,7 @@ export type GetDeploymentHasDeploymentsType = ClosedEnum<
1680
1680
 
1681
1681
  export type GetDeploymentValueDeploymentsResponseEq = string | number;
1682
1682
 
1683
- export type GetDeploymentValue2 = {
1683
+ export type GetDeploymentValueDeploymentsResponse2002 = {
1684
1684
  eq?: string | number | undefined;
1685
1685
  neq?: string | undefined;
1686
1686
  inc?: Array<string> | undefined;
@@ -1694,11 +1694,13 @@ export type GetDeploymentValue2 = {
1694
1694
  lte?: number | undefined;
1695
1695
  };
1696
1696
 
1697
- export type GetDeploymentHasDeploymentsValue = GetDeploymentValue2 | string;
1697
+ export type GetDeploymentHasValue =
1698
+ | GetDeploymentValueDeploymentsResponse2002
1699
+ | string;
1698
1700
 
1699
1701
  export type GetDeploymentHas1 = {
1700
1702
  type: GetDeploymentHasDeploymentsType;
1701
- value: GetDeploymentValue2 | string;
1703
+ value: GetDeploymentValueDeploymentsResponse2002 | string;
1702
1704
  };
1703
1705
 
1704
1706
  export type GetDeploymentRoutesHas = GetDeploymentHas1 | GetDeploymentHas2;
@@ -1714,7 +1716,7 @@ export type GetDeploymentMissingType = ClosedEnum<
1714
1716
 
1715
1717
  export type GetDeploymentValueDeploymentsEq = string | number;
1716
1718
 
1717
- export type GetDeploymentValueDeploymentsResponse2002 = {
1719
+ export type GetDeploymentValueDeploymentsResponse2 = {
1718
1720
  eq?: string | number | undefined;
1719
1721
  neq?: string | undefined;
1720
1722
  inc?: Array<string> | undefined;
@@ -1729,13 +1731,13 @@ export type GetDeploymentValueDeploymentsResponse2002 = {
1729
1731
  };
1730
1732
 
1731
1733
  export type GetDeploymentMissingValue =
1732
- | GetDeploymentValueDeploymentsResponse2002
1734
+ | GetDeploymentValueDeploymentsResponse2
1733
1735
  | string;
1734
1736
 
1735
1737
  export type GetDeploymentMissing2 = {
1736
1738
  type: GetDeploymentMissingType;
1737
1739
  key: string;
1738
- value?: GetDeploymentValueDeploymentsResponse2002 | string | undefined;
1740
+ value?: GetDeploymentValueDeploymentsResponse2 | string | undefined;
1739
1741
  };
1740
1742
 
1741
1743
  export const GetDeploymentMissingDeploymentsType = {
@@ -1747,7 +1749,7 @@ export type GetDeploymentMissingDeploymentsType = ClosedEnum<
1747
1749
 
1748
1750
  export type GetDeploymentValueEq = string | number;
1749
1751
 
1750
- export type GetDeploymentValueDeploymentsResponse2 = {
1752
+ export type GetDeploymentValueDeployments2 = {
1751
1753
  eq?: string | number | undefined;
1752
1754
  neq?: string | undefined;
1753
1755
  inc?: Array<string> | undefined;
@@ -1762,12 +1764,12 @@ export type GetDeploymentValueDeploymentsResponse2 = {
1762
1764
  };
1763
1765
 
1764
1766
  export type GetDeploymentMissingDeploymentsValue =
1765
- | GetDeploymentValueDeploymentsResponse2
1767
+ | GetDeploymentValueDeployments2
1766
1768
  | string;
1767
1769
 
1768
1770
  export type GetDeploymentMissing1 = {
1769
1771
  type: GetDeploymentMissingDeploymentsType;
1770
- value: GetDeploymentValueDeploymentsResponse2 | string;
1772
+ value: GetDeploymentValueDeployments2 | string;
1771
1773
  };
1772
1774
 
1773
1775
  export type GetDeploymentRoutesMissing =
@@ -10110,8 +10112,8 @@ export function getDeploymentValueDeploymentsResponse200EqFromJSON(
10110
10112
  }
10111
10113
 
10112
10114
  /** @internal */
10113
- export const GetDeploymentValueDeployments2$inboundSchema: z.ZodType<
10114
- GetDeploymentValueDeployments2,
10115
+ export const GetDeploymentValue2$inboundSchema: z.ZodType<
10116
+ GetDeploymentValue2,
10115
10117
  z.ZodTypeDef,
10116
10118
  unknown
10117
10119
  > = z.object({
@@ -10129,7 +10131,7 @@ export const GetDeploymentValueDeployments2$inboundSchema: z.ZodType<
10129
10131
  });
10130
10132
 
10131
10133
  /** @internal */
10132
- export type GetDeploymentValueDeployments2$Outbound = {
10134
+ export type GetDeploymentValue2$Outbound = {
10133
10135
  eq?: string | number | undefined;
10134
10136
  neq?: string | undefined;
10135
10137
  inc?: Array<string> | undefined;
@@ -10144,10 +10146,10 @@ export type GetDeploymentValueDeployments2$Outbound = {
10144
10146
  };
10145
10147
 
10146
10148
  /** @internal */
10147
- export const GetDeploymentValueDeployments2$outboundSchema: z.ZodType<
10148
- GetDeploymentValueDeployments2$Outbound,
10149
+ export const GetDeploymentValue2$outboundSchema: z.ZodType<
10150
+ GetDeploymentValue2$Outbound,
10149
10151
  z.ZodTypeDef,
10150
- GetDeploymentValueDeployments2
10152
+ GetDeploymentValue2
10151
10153
  > = z.object({
10152
10154
  eq: z.union([z.string(), z.number()]).optional(),
10153
10155
  neq: z.string().optional(),
@@ -10166,88 +10168,82 @@ export const GetDeploymentValueDeployments2$outboundSchema: z.ZodType<
10166
10168
  * @internal
10167
10169
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
10168
10170
  */
10169
- export namespace GetDeploymentValueDeployments2$ {
10170
- /** @deprecated use `GetDeploymentValueDeployments2$inboundSchema` instead. */
10171
- export const inboundSchema = GetDeploymentValueDeployments2$inboundSchema;
10172
- /** @deprecated use `GetDeploymentValueDeployments2$outboundSchema` instead. */
10173
- export const outboundSchema = GetDeploymentValueDeployments2$outboundSchema;
10174
- /** @deprecated use `GetDeploymentValueDeployments2$Outbound` instead. */
10175
- export type Outbound = GetDeploymentValueDeployments2$Outbound;
10171
+ export namespace GetDeploymentValue2$ {
10172
+ /** @deprecated use `GetDeploymentValue2$inboundSchema` instead. */
10173
+ export const inboundSchema = GetDeploymentValue2$inboundSchema;
10174
+ /** @deprecated use `GetDeploymentValue2$outboundSchema` instead. */
10175
+ export const outboundSchema = GetDeploymentValue2$outboundSchema;
10176
+ /** @deprecated use `GetDeploymentValue2$Outbound` instead. */
10177
+ export type Outbound = GetDeploymentValue2$Outbound;
10176
10178
  }
10177
10179
 
10178
- export function getDeploymentValueDeployments2ToJSON(
10179
- getDeploymentValueDeployments2: GetDeploymentValueDeployments2,
10180
+ export function getDeploymentValue2ToJSON(
10181
+ getDeploymentValue2: GetDeploymentValue2,
10180
10182
  ): string {
10181
10183
  return JSON.stringify(
10182
- GetDeploymentValueDeployments2$outboundSchema.parse(
10183
- getDeploymentValueDeployments2,
10184
- ),
10184
+ GetDeploymentValue2$outboundSchema.parse(getDeploymentValue2),
10185
10185
  );
10186
10186
  }
10187
10187
 
10188
- export function getDeploymentValueDeployments2FromJSON(
10188
+ export function getDeploymentValue2FromJSON(
10189
10189
  jsonString: string,
10190
- ): SafeParseResult<GetDeploymentValueDeployments2, SDKValidationError> {
10190
+ ): SafeParseResult<GetDeploymentValue2, SDKValidationError> {
10191
10191
  return safeParse(
10192
10192
  jsonString,
10193
- (x) => GetDeploymentValueDeployments2$inboundSchema.parse(JSON.parse(x)),
10194
- `Failed to parse 'GetDeploymentValueDeployments2' from JSON`,
10193
+ (x) => GetDeploymentValue2$inboundSchema.parse(JSON.parse(x)),
10194
+ `Failed to parse 'GetDeploymentValue2' from JSON`,
10195
10195
  );
10196
10196
  }
10197
10197
 
10198
10198
  /** @internal */
10199
- export const GetDeploymentHasValue$inboundSchema: z.ZodType<
10200
- GetDeploymentHasValue,
10199
+ export const GetDeploymentHasDeploymentsValue$inboundSchema: z.ZodType<
10200
+ GetDeploymentHasDeploymentsValue,
10201
10201
  z.ZodTypeDef,
10202
10202
  unknown
10203
- > = z.union([
10204
- z.lazy(() => GetDeploymentValueDeployments2$inboundSchema),
10205
- z.string(),
10206
- ]);
10203
+ > = z.union([z.lazy(() => GetDeploymentValue2$inboundSchema), z.string()]);
10207
10204
 
10208
10205
  /** @internal */
10209
- export type GetDeploymentHasValue$Outbound =
10210
- | GetDeploymentValueDeployments2$Outbound
10206
+ export type GetDeploymentHasDeploymentsValue$Outbound =
10207
+ | GetDeploymentValue2$Outbound
10211
10208
  | string;
10212
10209
 
10213
10210
  /** @internal */
10214
- export const GetDeploymentHasValue$outboundSchema: z.ZodType<
10215
- GetDeploymentHasValue$Outbound,
10211
+ export const GetDeploymentHasDeploymentsValue$outboundSchema: z.ZodType<
10212
+ GetDeploymentHasDeploymentsValue$Outbound,
10216
10213
  z.ZodTypeDef,
10217
- GetDeploymentHasValue
10218
- > = z.union([
10219
- z.lazy(() => GetDeploymentValueDeployments2$outboundSchema),
10220
- z.string(),
10221
- ]);
10214
+ GetDeploymentHasDeploymentsValue
10215
+ > = z.union([z.lazy(() => GetDeploymentValue2$outboundSchema), z.string()]);
10222
10216
 
10223
10217
  /**
10224
10218
  * @internal
10225
10219
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
10226
10220
  */
10227
- export namespace GetDeploymentHasValue$ {
10228
- /** @deprecated use `GetDeploymentHasValue$inboundSchema` instead. */
10229
- export const inboundSchema = GetDeploymentHasValue$inboundSchema;
10230
- /** @deprecated use `GetDeploymentHasValue$outboundSchema` instead. */
10231
- export const outboundSchema = GetDeploymentHasValue$outboundSchema;
10232
- /** @deprecated use `GetDeploymentHasValue$Outbound` instead. */
10233
- export type Outbound = GetDeploymentHasValue$Outbound;
10221
+ export namespace GetDeploymentHasDeploymentsValue$ {
10222
+ /** @deprecated use `GetDeploymentHasDeploymentsValue$inboundSchema` instead. */
10223
+ export const inboundSchema = GetDeploymentHasDeploymentsValue$inboundSchema;
10224
+ /** @deprecated use `GetDeploymentHasDeploymentsValue$outboundSchema` instead. */
10225
+ export const outboundSchema = GetDeploymentHasDeploymentsValue$outboundSchema;
10226
+ /** @deprecated use `GetDeploymentHasDeploymentsValue$Outbound` instead. */
10227
+ export type Outbound = GetDeploymentHasDeploymentsValue$Outbound;
10234
10228
  }
10235
10229
 
10236
- export function getDeploymentHasValueToJSON(
10237
- getDeploymentHasValue: GetDeploymentHasValue,
10230
+ export function getDeploymentHasDeploymentsValueToJSON(
10231
+ getDeploymentHasDeploymentsValue: GetDeploymentHasDeploymentsValue,
10238
10232
  ): string {
10239
10233
  return JSON.stringify(
10240
- GetDeploymentHasValue$outboundSchema.parse(getDeploymentHasValue),
10234
+ GetDeploymentHasDeploymentsValue$outboundSchema.parse(
10235
+ getDeploymentHasDeploymentsValue,
10236
+ ),
10241
10237
  );
10242
10238
  }
10243
10239
 
10244
- export function getDeploymentHasValueFromJSON(
10240
+ export function getDeploymentHasDeploymentsValueFromJSON(
10245
10241
  jsonString: string,
10246
- ): SafeParseResult<GetDeploymentHasValue, SDKValidationError> {
10242
+ ): SafeParseResult<GetDeploymentHasDeploymentsValue, SDKValidationError> {
10247
10243
  return safeParse(
10248
10244
  jsonString,
10249
- (x) => GetDeploymentHasValue$inboundSchema.parse(JSON.parse(x)),
10250
- `Failed to parse 'GetDeploymentHasValue' from JSON`,
10245
+ (x) => GetDeploymentHasDeploymentsValue$inboundSchema.parse(JSON.parse(x)),
10246
+ `Failed to parse 'GetDeploymentHasDeploymentsValue' from JSON`,
10251
10247
  );
10252
10248
  }
10253
10249
 
@@ -10259,17 +10255,15 @@ export const GetDeploymentHas2$inboundSchema: z.ZodType<
10259
10255
  > = z.object({
10260
10256
  type: GetDeploymentHasType$inboundSchema,
10261
10257
  key: z.string(),
10262
- value: z.union([
10263
- z.lazy(() => GetDeploymentValueDeployments2$inboundSchema),
10264
- z.string(),
10265
- ]).optional(),
10258
+ value: z.union([z.lazy(() => GetDeploymentValue2$inboundSchema), z.string()])
10259
+ .optional(),
10266
10260
  });
10267
10261
 
10268
10262
  /** @internal */
10269
10263
  export type GetDeploymentHas2$Outbound = {
10270
10264
  type: string;
10271
10265
  key: string;
10272
- value?: GetDeploymentValueDeployments2$Outbound | string | undefined;
10266
+ value?: GetDeploymentValue2$Outbound | string | undefined;
10273
10267
  };
10274
10268
 
10275
10269
  /** @internal */
@@ -10280,10 +10274,8 @@ export const GetDeploymentHas2$outboundSchema: z.ZodType<
10280
10274
  > = z.object({
10281
10275
  type: GetDeploymentHasType$outboundSchema,
10282
10276
  key: z.string(),
10283
- value: z.union([
10284
- z.lazy(() => GetDeploymentValueDeployments2$outboundSchema),
10285
- z.string(),
10286
- ]).optional(),
10277
+ value: z.union([z.lazy(() => GetDeploymentValue2$outboundSchema), z.string()])
10278
+ .optional(),
10287
10279
  });
10288
10280
 
10289
10281
  /**
@@ -10398,8 +10390,8 @@ export function getDeploymentValueDeploymentsResponseEqFromJSON(
10398
10390
  }
10399
10391
 
10400
10392
  /** @internal */
10401
- export const GetDeploymentValue2$inboundSchema: z.ZodType<
10402
- GetDeploymentValue2,
10393
+ export const GetDeploymentValueDeploymentsResponse2002$inboundSchema: z.ZodType<
10394
+ GetDeploymentValueDeploymentsResponse2002,
10403
10395
  z.ZodTypeDef,
10404
10396
  unknown
10405
10397
  > = z.object({
@@ -10417,7 +10409,7 @@ export const GetDeploymentValue2$inboundSchema: z.ZodType<
10417
10409
  });
10418
10410
 
10419
10411
  /** @internal */
10420
- export type GetDeploymentValue2$Outbound = {
10412
+ export type GetDeploymentValueDeploymentsResponse2002$Outbound = {
10421
10413
  eq?: string | number | undefined;
10422
10414
  neq?: string | undefined;
10423
10415
  inc?: Array<string> | undefined;
@@ -10432,104 +10424,120 @@ export type GetDeploymentValue2$Outbound = {
10432
10424
  };
10433
10425
 
10434
10426
  /** @internal */
10435
- export const GetDeploymentValue2$outboundSchema: z.ZodType<
10436
- GetDeploymentValue2$Outbound,
10437
- z.ZodTypeDef,
10438
- GetDeploymentValue2
10439
- > = z.object({
10440
- eq: z.union([z.string(), z.number()]).optional(),
10441
- neq: z.string().optional(),
10442
- inc: z.array(z.string()).optional(),
10443
- ninc: z.array(z.string()).optional(),
10444
- pre: z.string().optional(),
10445
- suf: z.string().optional(),
10446
- re: z.string().optional(),
10447
- gt: z.number().optional(),
10448
- gte: z.number().optional(),
10449
- lt: z.number().optional(),
10450
- lte: z.number().optional(),
10451
- });
10427
+ export const GetDeploymentValueDeploymentsResponse2002$outboundSchema:
10428
+ z.ZodType<
10429
+ GetDeploymentValueDeploymentsResponse2002$Outbound,
10430
+ z.ZodTypeDef,
10431
+ GetDeploymentValueDeploymentsResponse2002
10432
+ > = z.object({
10433
+ eq: z.union([z.string(), z.number()]).optional(),
10434
+ neq: z.string().optional(),
10435
+ inc: z.array(z.string()).optional(),
10436
+ ninc: z.array(z.string()).optional(),
10437
+ pre: z.string().optional(),
10438
+ suf: z.string().optional(),
10439
+ re: z.string().optional(),
10440
+ gt: z.number().optional(),
10441
+ gte: z.number().optional(),
10442
+ lt: z.number().optional(),
10443
+ lte: z.number().optional(),
10444
+ });
10452
10445
 
10453
10446
  /**
10454
10447
  * @internal
10455
10448
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
10456
10449
  */
10457
- export namespace GetDeploymentValue2$ {
10458
- /** @deprecated use `GetDeploymentValue2$inboundSchema` instead. */
10459
- export const inboundSchema = GetDeploymentValue2$inboundSchema;
10460
- /** @deprecated use `GetDeploymentValue2$outboundSchema` instead. */
10461
- export const outboundSchema = GetDeploymentValue2$outboundSchema;
10462
- /** @deprecated use `GetDeploymentValue2$Outbound` instead. */
10463
- export type Outbound = GetDeploymentValue2$Outbound;
10450
+ export namespace GetDeploymentValueDeploymentsResponse2002$ {
10451
+ /** @deprecated use `GetDeploymentValueDeploymentsResponse2002$inboundSchema` instead. */
10452
+ export const inboundSchema =
10453
+ GetDeploymentValueDeploymentsResponse2002$inboundSchema;
10454
+ /** @deprecated use `GetDeploymentValueDeploymentsResponse2002$outboundSchema` instead. */
10455
+ export const outboundSchema =
10456
+ GetDeploymentValueDeploymentsResponse2002$outboundSchema;
10457
+ /** @deprecated use `GetDeploymentValueDeploymentsResponse2002$Outbound` instead. */
10458
+ export type Outbound = GetDeploymentValueDeploymentsResponse2002$Outbound;
10464
10459
  }
10465
10460
 
10466
- export function getDeploymentValue2ToJSON(
10467
- getDeploymentValue2: GetDeploymentValue2,
10461
+ export function getDeploymentValueDeploymentsResponse2002ToJSON(
10462
+ getDeploymentValueDeploymentsResponse2002:
10463
+ GetDeploymentValueDeploymentsResponse2002,
10468
10464
  ): string {
10469
10465
  return JSON.stringify(
10470
- GetDeploymentValue2$outboundSchema.parse(getDeploymentValue2),
10466
+ GetDeploymentValueDeploymentsResponse2002$outboundSchema.parse(
10467
+ getDeploymentValueDeploymentsResponse2002,
10468
+ ),
10471
10469
  );
10472
10470
  }
10473
10471
 
10474
- export function getDeploymentValue2FromJSON(
10472
+ export function getDeploymentValueDeploymentsResponse2002FromJSON(
10475
10473
  jsonString: string,
10476
- ): SafeParseResult<GetDeploymentValue2, SDKValidationError> {
10474
+ ): SafeParseResult<
10475
+ GetDeploymentValueDeploymentsResponse2002,
10476
+ SDKValidationError
10477
+ > {
10477
10478
  return safeParse(
10478
10479
  jsonString,
10479
- (x) => GetDeploymentValue2$inboundSchema.parse(JSON.parse(x)),
10480
- `Failed to parse 'GetDeploymentValue2' from JSON`,
10480
+ (x) =>
10481
+ GetDeploymentValueDeploymentsResponse2002$inboundSchema.parse(
10482
+ JSON.parse(x),
10483
+ ),
10484
+ `Failed to parse 'GetDeploymentValueDeploymentsResponse2002' from JSON`,
10481
10485
  );
10482
10486
  }
10483
10487
 
10484
10488
  /** @internal */
10485
- export const GetDeploymentHasDeploymentsValue$inboundSchema: z.ZodType<
10486
- GetDeploymentHasDeploymentsValue,
10489
+ export const GetDeploymentHasValue$inboundSchema: z.ZodType<
10490
+ GetDeploymentHasValue,
10487
10491
  z.ZodTypeDef,
10488
10492
  unknown
10489
- > = z.union([z.lazy(() => GetDeploymentValue2$inboundSchema), z.string()]);
10493
+ > = z.union([
10494
+ z.lazy(() => GetDeploymentValueDeploymentsResponse2002$inboundSchema),
10495
+ z.string(),
10496
+ ]);
10490
10497
 
10491
10498
  /** @internal */
10492
- export type GetDeploymentHasDeploymentsValue$Outbound =
10493
- | GetDeploymentValue2$Outbound
10499
+ export type GetDeploymentHasValue$Outbound =
10500
+ | GetDeploymentValueDeploymentsResponse2002$Outbound
10494
10501
  | string;
10495
10502
 
10496
10503
  /** @internal */
10497
- export const GetDeploymentHasDeploymentsValue$outboundSchema: z.ZodType<
10498
- GetDeploymentHasDeploymentsValue$Outbound,
10504
+ export const GetDeploymentHasValue$outboundSchema: z.ZodType<
10505
+ GetDeploymentHasValue$Outbound,
10499
10506
  z.ZodTypeDef,
10500
- GetDeploymentHasDeploymentsValue
10501
- > = z.union([z.lazy(() => GetDeploymentValue2$outboundSchema), z.string()]);
10507
+ GetDeploymentHasValue
10508
+ > = z.union([
10509
+ z.lazy(() => GetDeploymentValueDeploymentsResponse2002$outboundSchema),
10510
+ z.string(),
10511
+ ]);
10502
10512
 
10503
10513
  /**
10504
10514
  * @internal
10505
10515
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
10506
10516
  */
10507
- export namespace GetDeploymentHasDeploymentsValue$ {
10508
- /** @deprecated use `GetDeploymentHasDeploymentsValue$inboundSchema` instead. */
10509
- export const inboundSchema = GetDeploymentHasDeploymentsValue$inboundSchema;
10510
- /** @deprecated use `GetDeploymentHasDeploymentsValue$outboundSchema` instead. */
10511
- export const outboundSchema = GetDeploymentHasDeploymentsValue$outboundSchema;
10512
- /** @deprecated use `GetDeploymentHasDeploymentsValue$Outbound` instead. */
10513
- export type Outbound = GetDeploymentHasDeploymentsValue$Outbound;
10517
+ export namespace GetDeploymentHasValue$ {
10518
+ /** @deprecated use `GetDeploymentHasValue$inboundSchema` instead. */
10519
+ export const inboundSchema = GetDeploymentHasValue$inboundSchema;
10520
+ /** @deprecated use `GetDeploymentHasValue$outboundSchema` instead. */
10521
+ export const outboundSchema = GetDeploymentHasValue$outboundSchema;
10522
+ /** @deprecated use `GetDeploymentHasValue$Outbound` instead. */
10523
+ export type Outbound = GetDeploymentHasValue$Outbound;
10514
10524
  }
10515
10525
 
10516
- export function getDeploymentHasDeploymentsValueToJSON(
10517
- getDeploymentHasDeploymentsValue: GetDeploymentHasDeploymentsValue,
10526
+ export function getDeploymentHasValueToJSON(
10527
+ getDeploymentHasValue: GetDeploymentHasValue,
10518
10528
  ): string {
10519
10529
  return JSON.stringify(
10520
- GetDeploymentHasDeploymentsValue$outboundSchema.parse(
10521
- getDeploymentHasDeploymentsValue,
10522
- ),
10530
+ GetDeploymentHasValue$outboundSchema.parse(getDeploymentHasValue),
10523
10531
  );
10524
10532
  }
10525
10533
 
10526
- export function getDeploymentHasDeploymentsValueFromJSON(
10534
+ export function getDeploymentHasValueFromJSON(
10527
10535
  jsonString: string,
10528
- ): SafeParseResult<GetDeploymentHasDeploymentsValue, SDKValidationError> {
10536
+ ): SafeParseResult<GetDeploymentHasValue, SDKValidationError> {
10529
10537
  return safeParse(
10530
10538
  jsonString,
10531
- (x) => GetDeploymentHasDeploymentsValue$inboundSchema.parse(JSON.parse(x)),
10532
- `Failed to parse 'GetDeploymentHasDeploymentsValue' from JSON`,
10539
+ (x) => GetDeploymentHasValue$inboundSchema.parse(JSON.parse(x)),
10540
+ `Failed to parse 'GetDeploymentHasValue' from JSON`,
10533
10541
  );
10534
10542
  }
10535
10543
 
@@ -10540,13 +10548,16 @@ export const GetDeploymentHas1$inboundSchema: z.ZodType<
10540
10548
  unknown
10541
10549
  > = z.object({
10542
10550
  type: GetDeploymentHasDeploymentsType$inboundSchema,
10543
- value: z.union([z.lazy(() => GetDeploymentValue2$inboundSchema), z.string()]),
10551
+ value: z.union([
10552
+ z.lazy(() => GetDeploymentValueDeploymentsResponse2002$inboundSchema),
10553
+ z.string(),
10554
+ ]),
10544
10555
  });
10545
10556
 
10546
10557
  /** @internal */
10547
10558
  export type GetDeploymentHas1$Outbound = {
10548
10559
  type: string;
10549
- value: GetDeploymentValue2$Outbound | string;
10560
+ value: GetDeploymentValueDeploymentsResponse2002$Outbound | string;
10550
10561
  };
10551
10562
 
10552
10563
  /** @internal */
@@ -10557,7 +10568,7 @@ export const GetDeploymentHas1$outboundSchema: z.ZodType<
10557
10568
  > = z.object({
10558
10569
  type: GetDeploymentHasDeploymentsType$outboundSchema,
10559
10570
  value: z.union([
10560
- z.lazy(() => GetDeploymentValue2$outboundSchema),
10571
+ z.lazy(() => GetDeploymentValueDeploymentsResponse2002$outboundSchema),
10561
10572
  z.string(),
10562
10573
  ]),
10563
10574
  });
@@ -10721,8 +10732,8 @@ export function getDeploymentValueDeploymentsEqFromJSON(
10721
10732
  }
10722
10733
 
10723
10734
  /** @internal */
10724
- export const GetDeploymentValueDeploymentsResponse2002$inboundSchema: z.ZodType<
10725
- GetDeploymentValueDeploymentsResponse2002,
10735
+ export const GetDeploymentValueDeploymentsResponse2$inboundSchema: z.ZodType<
10736
+ GetDeploymentValueDeploymentsResponse2,
10726
10737
  z.ZodTypeDef,
10727
10738
  unknown
10728
10739
  > = z.object({
@@ -10740,7 +10751,7 @@ export const GetDeploymentValueDeploymentsResponse2002$inboundSchema: z.ZodType<
10740
10751
  });
10741
10752
 
10742
10753
  /** @internal */
10743
- export type GetDeploymentValueDeploymentsResponse2002$Outbound = {
10754
+ export type GetDeploymentValueDeploymentsResponse2$Outbound = {
10744
10755
  eq?: string | number | undefined;
10745
10756
  neq?: string | undefined;
10746
10757
  inc?: Array<string> | undefined;
@@ -10755,64 +10766,58 @@ export type GetDeploymentValueDeploymentsResponse2002$Outbound = {
10755
10766
  };
10756
10767
 
10757
10768
  /** @internal */
10758
- export const GetDeploymentValueDeploymentsResponse2002$outboundSchema:
10759
- z.ZodType<
10760
- GetDeploymentValueDeploymentsResponse2002$Outbound,
10761
- z.ZodTypeDef,
10762
- GetDeploymentValueDeploymentsResponse2002
10763
- > = z.object({
10764
- eq: z.union([z.string(), z.number()]).optional(),
10765
- neq: z.string().optional(),
10766
- inc: z.array(z.string()).optional(),
10767
- ninc: z.array(z.string()).optional(),
10768
- pre: z.string().optional(),
10769
- suf: z.string().optional(),
10770
- re: z.string().optional(),
10771
- gt: z.number().optional(),
10772
- gte: z.number().optional(),
10773
- lt: z.number().optional(),
10774
- lte: z.number().optional(),
10775
- });
10769
+ export const GetDeploymentValueDeploymentsResponse2$outboundSchema: z.ZodType<
10770
+ GetDeploymentValueDeploymentsResponse2$Outbound,
10771
+ z.ZodTypeDef,
10772
+ GetDeploymentValueDeploymentsResponse2
10773
+ > = z.object({
10774
+ eq: z.union([z.string(), z.number()]).optional(),
10775
+ neq: z.string().optional(),
10776
+ inc: z.array(z.string()).optional(),
10777
+ ninc: z.array(z.string()).optional(),
10778
+ pre: z.string().optional(),
10779
+ suf: z.string().optional(),
10780
+ re: z.string().optional(),
10781
+ gt: z.number().optional(),
10782
+ gte: z.number().optional(),
10783
+ lt: z.number().optional(),
10784
+ lte: z.number().optional(),
10785
+ });
10776
10786
 
10777
10787
  /**
10778
10788
  * @internal
10779
10789
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
10780
10790
  */
10781
- export namespace GetDeploymentValueDeploymentsResponse2002$ {
10782
- /** @deprecated use `GetDeploymentValueDeploymentsResponse2002$inboundSchema` instead. */
10791
+ export namespace GetDeploymentValueDeploymentsResponse2$ {
10792
+ /** @deprecated use `GetDeploymentValueDeploymentsResponse2$inboundSchema` instead. */
10783
10793
  export const inboundSchema =
10784
- GetDeploymentValueDeploymentsResponse2002$inboundSchema;
10785
- /** @deprecated use `GetDeploymentValueDeploymentsResponse2002$outboundSchema` instead. */
10794
+ GetDeploymentValueDeploymentsResponse2$inboundSchema;
10795
+ /** @deprecated use `GetDeploymentValueDeploymentsResponse2$outboundSchema` instead. */
10786
10796
  export const outboundSchema =
10787
- GetDeploymentValueDeploymentsResponse2002$outboundSchema;
10788
- /** @deprecated use `GetDeploymentValueDeploymentsResponse2002$Outbound` instead. */
10789
- export type Outbound = GetDeploymentValueDeploymentsResponse2002$Outbound;
10797
+ GetDeploymentValueDeploymentsResponse2$outboundSchema;
10798
+ /** @deprecated use `GetDeploymentValueDeploymentsResponse2$Outbound` instead. */
10799
+ export type Outbound = GetDeploymentValueDeploymentsResponse2$Outbound;
10790
10800
  }
10791
10801
 
10792
- export function getDeploymentValueDeploymentsResponse2002ToJSON(
10793
- getDeploymentValueDeploymentsResponse2002:
10794
- GetDeploymentValueDeploymentsResponse2002,
10802
+ export function getDeploymentValueDeploymentsResponse2ToJSON(
10803
+ getDeploymentValueDeploymentsResponse2:
10804
+ GetDeploymentValueDeploymentsResponse2,
10795
10805
  ): string {
10796
10806
  return JSON.stringify(
10797
- GetDeploymentValueDeploymentsResponse2002$outboundSchema.parse(
10798
- getDeploymentValueDeploymentsResponse2002,
10807
+ GetDeploymentValueDeploymentsResponse2$outboundSchema.parse(
10808
+ getDeploymentValueDeploymentsResponse2,
10799
10809
  ),
10800
10810
  );
10801
10811
  }
10802
10812
 
10803
- export function getDeploymentValueDeploymentsResponse2002FromJSON(
10813
+ export function getDeploymentValueDeploymentsResponse2FromJSON(
10804
10814
  jsonString: string,
10805
- ): SafeParseResult<
10806
- GetDeploymentValueDeploymentsResponse2002,
10807
- SDKValidationError
10808
- > {
10815
+ ): SafeParseResult<GetDeploymentValueDeploymentsResponse2, SDKValidationError> {
10809
10816
  return safeParse(
10810
10817
  jsonString,
10811
10818
  (x) =>
10812
- GetDeploymentValueDeploymentsResponse2002$inboundSchema.parse(
10813
- JSON.parse(x),
10814
- ),
10815
- `Failed to parse 'GetDeploymentValueDeploymentsResponse2002' from JSON`,
10819
+ GetDeploymentValueDeploymentsResponse2$inboundSchema.parse(JSON.parse(x)),
10820
+ `Failed to parse 'GetDeploymentValueDeploymentsResponse2' from JSON`,
10816
10821
  );
10817
10822
  }
10818
10823
 
@@ -10822,13 +10827,13 @@ export const GetDeploymentMissingValue$inboundSchema: z.ZodType<
10822
10827
  z.ZodTypeDef,
10823
10828
  unknown
10824
10829
  > = z.union([
10825
- z.lazy(() => GetDeploymentValueDeploymentsResponse2002$inboundSchema),
10830
+ z.lazy(() => GetDeploymentValueDeploymentsResponse2$inboundSchema),
10826
10831
  z.string(),
10827
10832
  ]);
10828
10833
 
10829
10834
  /** @internal */
10830
10835
  export type GetDeploymentMissingValue$Outbound =
10831
- | GetDeploymentValueDeploymentsResponse2002$Outbound
10836
+ | GetDeploymentValueDeploymentsResponse2$Outbound
10832
10837
  | string;
10833
10838
 
10834
10839
  /** @internal */
@@ -10837,7 +10842,7 @@ export const GetDeploymentMissingValue$outboundSchema: z.ZodType<
10837
10842
  z.ZodTypeDef,
10838
10843
  GetDeploymentMissingValue
10839
10844
  > = z.union([
10840
- z.lazy(() => GetDeploymentValueDeploymentsResponse2002$outboundSchema),
10845
+ z.lazy(() => GetDeploymentValueDeploymentsResponse2$outboundSchema),
10841
10846
  z.string(),
10842
10847
  ]);
10843
10848
 
@@ -10881,7 +10886,7 @@ export const GetDeploymentMissing2$inboundSchema: z.ZodType<
10881
10886
  type: GetDeploymentMissingType$inboundSchema,
10882
10887
  key: z.string(),
10883
10888
  value: z.union([
10884
- z.lazy(() => GetDeploymentValueDeploymentsResponse2002$inboundSchema),
10889
+ z.lazy(() => GetDeploymentValueDeploymentsResponse2$inboundSchema),
10885
10890
  z.string(),
10886
10891
  ]).optional(),
10887
10892
  });
@@ -10890,10 +10895,7 @@ export const GetDeploymentMissing2$inboundSchema: z.ZodType<
10890
10895
  export type GetDeploymentMissing2$Outbound = {
10891
10896
  type: string;
10892
10897
  key: string;
10893
- value?:
10894
- | GetDeploymentValueDeploymentsResponse2002$Outbound
10895
- | string
10896
- | undefined;
10898
+ value?: GetDeploymentValueDeploymentsResponse2$Outbound | string | undefined;
10897
10899
  };
10898
10900
 
10899
10901
  /** @internal */
@@ -10905,7 +10907,7 @@ export const GetDeploymentMissing2$outboundSchema: z.ZodType<
10905
10907
  type: GetDeploymentMissingType$outboundSchema,
10906
10908
  key: z.string(),
10907
10909
  value: z.union([
10908
- z.lazy(() => GetDeploymentValueDeploymentsResponse2002$outboundSchema),
10910
+ z.lazy(() => GetDeploymentValueDeploymentsResponse2$outboundSchema),
10909
10911
  z.string(),
10910
10912
  ]).optional(),
10911
10913
  });
@@ -11013,8 +11015,8 @@ export function getDeploymentValueEqFromJSON(
11013
11015
  }
11014
11016
 
11015
11017
  /** @internal */
11016
- export const GetDeploymentValueDeploymentsResponse2$inboundSchema: z.ZodType<
11017
- GetDeploymentValueDeploymentsResponse2,
11018
+ export const GetDeploymentValueDeployments2$inboundSchema: z.ZodType<
11019
+ GetDeploymentValueDeployments2,
11018
11020
  z.ZodTypeDef,
11019
11021
  unknown
11020
11022
  > = z.object({
@@ -11032,7 +11034,7 @@ export const GetDeploymentValueDeploymentsResponse2$inboundSchema: z.ZodType<
11032
11034
  });
11033
11035
 
11034
11036
  /** @internal */
11035
- export type GetDeploymentValueDeploymentsResponse2$Outbound = {
11037
+ export type GetDeploymentValueDeployments2$Outbound = {
11036
11038
  eq?: string | number | undefined;
11037
11039
  neq?: string | undefined;
11038
11040
  inc?: Array<string> | undefined;
@@ -11047,10 +11049,10 @@ export type GetDeploymentValueDeploymentsResponse2$Outbound = {
11047
11049
  };
11048
11050
 
11049
11051
  /** @internal */
11050
- export const GetDeploymentValueDeploymentsResponse2$outboundSchema: z.ZodType<
11051
- GetDeploymentValueDeploymentsResponse2$Outbound,
11052
+ export const GetDeploymentValueDeployments2$outboundSchema: z.ZodType<
11053
+ GetDeploymentValueDeployments2$Outbound,
11052
11054
  z.ZodTypeDef,
11053
- GetDeploymentValueDeploymentsResponse2
11055
+ GetDeploymentValueDeployments2
11054
11056
  > = z.object({
11055
11057
  eq: z.union([z.string(), z.number()]).optional(),
11056
11058
  neq: z.string().optional(),
@@ -11069,36 +11071,32 @@ export const GetDeploymentValueDeploymentsResponse2$outboundSchema: z.ZodType<
11069
11071
  * @internal
11070
11072
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
11071
11073
  */
11072
- export namespace GetDeploymentValueDeploymentsResponse2$ {
11073
- /** @deprecated use `GetDeploymentValueDeploymentsResponse2$inboundSchema` instead. */
11074
- export const inboundSchema =
11075
- GetDeploymentValueDeploymentsResponse2$inboundSchema;
11076
- /** @deprecated use `GetDeploymentValueDeploymentsResponse2$outboundSchema` instead. */
11077
- export const outboundSchema =
11078
- GetDeploymentValueDeploymentsResponse2$outboundSchema;
11079
- /** @deprecated use `GetDeploymentValueDeploymentsResponse2$Outbound` instead. */
11080
- export type Outbound = GetDeploymentValueDeploymentsResponse2$Outbound;
11074
+ export namespace GetDeploymentValueDeployments2$ {
11075
+ /** @deprecated use `GetDeploymentValueDeployments2$inboundSchema` instead. */
11076
+ export const inboundSchema = GetDeploymentValueDeployments2$inboundSchema;
11077
+ /** @deprecated use `GetDeploymentValueDeployments2$outboundSchema` instead. */
11078
+ export const outboundSchema = GetDeploymentValueDeployments2$outboundSchema;
11079
+ /** @deprecated use `GetDeploymentValueDeployments2$Outbound` instead. */
11080
+ export type Outbound = GetDeploymentValueDeployments2$Outbound;
11081
11081
  }
11082
11082
 
11083
- export function getDeploymentValueDeploymentsResponse2ToJSON(
11084
- getDeploymentValueDeploymentsResponse2:
11085
- GetDeploymentValueDeploymentsResponse2,
11083
+ export function getDeploymentValueDeployments2ToJSON(
11084
+ getDeploymentValueDeployments2: GetDeploymentValueDeployments2,
11086
11085
  ): string {
11087
11086
  return JSON.stringify(
11088
- GetDeploymentValueDeploymentsResponse2$outboundSchema.parse(
11089
- getDeploymentValueDeploymentsResponse2,
11087
+ GetDeploymentValueDeployments2$outboundSchema.parse(
11088
+ getDeploymentValueDeployments2,
11090
11089
  ),
11091
11090
  );
11092
11091
  }
11093
11092
 
11094
- export function getDeploymentValueDeploymentsResponse2FromJSON(
11093
+ export function getDeploymentValueDeployments2FromJSON(
11095
11094
  jsonString: string,
11096
- ): SafeParseResult<GetDeploymentValueDeploymentsResponse2, SDKValidationError> {
11095
+ ): SafeParseResult<GetDeploymentValueDeployments2, SDKValidationError> {
11097
11096
  return safeParse(
11098
11097
  jsonString,
11099
- (x) =>
11100
- GetDeploymentValueDeploymentsResponse2$inboundSchema.parse(JSON.parse(x)),
11101
- `Failed to parse 'GetDeploymentValueDeploymentsResponse2' from JSON`,
11098
+ (x) => GetDeploymentValueDeployments2$inboundSchema.parse(JSON.parse(x)),
11099
+ `Failed to parse 'GetDeploymentValueDeployments2' from JSON`,
11102
11100
  );
11103
11101
  }
11104
11102
 
@@ -11108,13 +11106,13 @@ export const GetDeploymentMissingDeploymentsValue$inboundSchema: z.ZodType<
11108
11106
  z.ZodTypeDef,
11109
11107
  unknown
11110
11108
  > = z.union([
11111
- z.lazy(() => GetDeploymentValueDeploymentsResponse2$inboundSchema),
11109
+ z.lazy(() => GetDeploymentValueDeployments2$inboundSchema),
11112
11110
  z.string(),
11113
11111
  ]);
11114
11112
 
11115
11113
  /** @internal */
11116
11114
  export type GetDeploymentMissingDeploymentsValue$Outbound =
11117
- | GetDeploymentValueDeploymentsResponse2$Outbound
11115
+ | GetDeploymentValueDeployments2$Outbound
11118
11116
  | string;
11119
11117
 
11120
11118
  /** @internal */
@@ -11123,7 +11121,7 @@ export const GetDeploymentMissingDeploymentsValue$outboundSchema: z.ZodType<
11123
11121
  z.ZodTypeDef,
11124
11122
  GetDeploymentMissingDeploymentsValue
11125
11123
  > = z.union([
11126
- z.lazy(() => GetDeploymentValueDeploymentsResponse2$outboundSchema),
11124
+ z.lazy(() => GetDeploymentValueDeployments2$outboundSchema),
11127
11125
  z.string(),
11128
11126
  ]);
11129
11127
 
@@ -11171,7 +11169,7 @@ export const GetDeploymentMissing1$inboundSchema: z.ZodType<
11171
11169
  > = z.object({
11172
11170
  type: GetDeploymentMissingDeploymentsType$inboundSchema,
11173
11171
  value: z.union([
11174
- z.lazy(() => GetDeploymentValueDeploymentsResponse2$inboundSchema),
11172
+ z.lazy(() => GetDeploymentValueDeployments2$inboundSchema),
11175
11173
  z.string(),
11176
11174
  ]),
11177
11175
  });
@@ -11179,7 +11177,7 @@ export const GetDeploymentMissing1$inboundSchema: z.ZodType<
11179
11177
  /** @internal */
11180
11178
  export type GetDeploymentMissing1$Outbound = {
11181
11179
  type: string;
11182
- value: GetDeploymentValueDeploymentsResponse2$Outbound | string;
11180
+ value: GetDeploymentValueDeployments2$Outbound | string;
11183
11181
  };
11184
11182
 
11185
11183
  /** @internal */
@@ -11190,7 +11188,7 @@ export const GetDeploymentMissing1$outboundSchema: z.ZodType<
11190
11188
  > = z.object({
11191
11189
  type: GetDeploymentMissingDeploymentsType$outboundSchema,
11192
11190
  value: z.union([
11193
- z.lazy(() => GetDeploymentValueDeploymentsResponse2$outboundSchema),
11191
+ z.lazy(() => GetDeploymentValueDeployments2$outboundSchema),
11194
11192
  z.string(),
11195
11193
  ]),
11196
11194
  });