@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
@@ -4375,7 +4375,7 @@ export function getDeploymentValueDeploymentsResponse200EqFromJSON(jsonString) {
4375
4375
  return safeParse(jsonString, (x) => GetDeploymentValueDeploymentsResponse200Eq$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentValueDeploymentsResponse200Eq' from JSON`);
4376
4376
  }
4377
4377
  /** @internal */
4378
- export const GetDeploymentValueDeployments2$inboundSchema = z.object({
4378
+ export const GetDeploymentValue2$inboundSchema = z.object({
4379
4379
  eq: z.union([z.string(), z.number()]).optional(),
4380
4380
  neq: z.string().optional(),
4381
4381
  inc: z.array(z.string()).optional(),
@@ -4389,7 +4389,7 @@ export const GetDeploymentValueDeployments2$inboundSchema = z.object({
4389
4389
  lte: z.number().optional(),
4390
4390
  });
4391
4391
  /** @internal */
4392
- export const GetDeploymentValueDeployments2$outboundSchema = z.object({
4392
+ export const GetDeploymentValue2$outboundSchema = z.object({
4393
4393
  eq: z.union([z.string(), z.number()]).optional(),
4394
4394
  neq: z.string().optional(),
4395
4395
  inc: z.array(z.string()).optional(),
@@ -4406,63 +4406,53 @@ export const GetDeploymentValueDeployments2$outboundSchema = z.object({
4406
4406
  * @internal
4407
4407
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4408
4408
  */
4409
- export var GetDeploymentValueDeployments2$;
4410
- (function (GetDeploymentValueDeployments2$) {
4411
- /** @deprecated use `GetDeploymentValueDeployments2$inboundSchema` instead. */
4412
- GetDeploymentValueDeployments2$.inboundSchema = GetDeploymentValueDeployments2$inboundSchema;
4413
- /** @deprecated use `GetDeploymentValueDeployments2$outboundSchema` instead. */
4414
- GetDeploymentValueDeployments2$.outboundSchema = GetDeploymentValueDeployments2$outboundSchema;
4415
- })(GetDeploymentValueDeployments2$ || (GetDeploymentValueDeployments2$ = {}));
4416
- export function getDeploymentValueDeployments2ToJSON(getDeploymentValueDeployments2) {
4417
- return JSON.stringify(GetDeploymentValueDeployments2$outboundSchema.parse(getDeploymentValueDeployments2));
4409
+ export var GetDeploymentValue2$;
4410
+ (function (GetDeploymentValue2$) {
4411
+ /** @deprecated use `GetDeploymentValue2$inboundSchema` instead. */
4412
+ GetDeploymentValue2$.inboundSchema = GetDeploymentValue2$inboundSchema;
4413
+ /** @deprecated use `GetDeploymentValue2$outboundSchema` instead. */
4414
+ GetDeploymentValue2$.outboundSchema = GetDeploymentValue2$outboundSchema;
4415
+ })(GetDeploymentValue2$ || (GetDeploymentValue2$ = {}));
4416
+ export function getDeploymentValue2ToJSON(getDeploymentValue2) {
4417
+ return JSON.stringify(GetDeploymentValue2$outboundSchema.parse(getDeploymentValue2));
4418
4418
  }
4419
- export function getDeploymentValueDeployments2FromJSON(jsonString) {
4420
- return safeParse(jsonString, (x) => GetDeploymentValueDeployments2$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentValueDeployments2' from JSON`);
4419
+ export function getDeploymentValue2FromJSON(jsonString) {
4420
+ return safeParse(jsonString, (x) => GetDeploymentValue2$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentValue2' from JSON`);
4421
4421
  }
4422
4422
  /** @internal */
4423
- export const GetDeploymentHasValue$inboundSchema = z.union([
4424
- z.lazy(() => GetDeploymentValueDeployments2$inboundSchema),
4425
- z.string(),
4426
- ]);
4423
+ export const GetDeploymentHasDeploymentsValue$inboundSchema = z.union([z.lazy(() => GetDeploymentValue2$inboundSchema), z.string()]);
4427
4424
  /** @internal */
4428
- export const GetDeploymentHasValue$outboundSchema = z.union([
4429
- z.lazy(() => GetDeploymentValueDeployments2$outboundSchema),
4430
- z.string(),
4431
- ]);
4425
+ export const GetDeploymentHasDeploymentsValue$outboundSchema = z.union([z.lazy(() => GetDeploymentValue2$outboundSchema), z.string()]);
4432
4426
  /**
4433
4427
  * @internal
4434
4428
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4435
4429
  */
4436
- export var GetDeploymentHasValue$;
4437
- (function (GetDeploymentHasValue$) {
4438
- /** @deprecated use `GetDeploymentHasValue$inboundSchema` instead. */
4439
- GetDeploymentHasValue$.inboundSchema = GetDeploymentHasValue$inboundSchema;
4440
- /** @deprecated use `GetDeploymentHasValue$outboundSchema` instead. */
4441
- GetDeploymentHasValue$.outboundSchema = GetDeploymentHasValue$outboundSchema;
4442
- })(GetDeploymentHasValue$ || (GetDeploymentHasValue$ = {}));
4443
- export function getDeploymentHasValueToJSON(getDeploymentHasValue) {
4444
- return JSON.stringify(GetDeploymentHasValue$outboundSchema.parse(getDeploymentHasValue));
4430
+ export var GetDeploymentHasDeploymentsValue$;
4431
+ (function (GetDeploymentHasDeploymentsValue$) {
4432
+ /** @deprecated use `GetDeploymentHasDeploymentsValue$inboundSchema` instead. */
4433
+ GetDeploymentHasDeploymentsValue$.inboundSchema = GetDeploymentHasDeploymentsValue$inboundSchema;
4434
+ /** @deprecated use `GetDeploymentHasDeploymentsValue$outboundSchema` instead. */
4435
+ GetDeploymentHasDeploymentsValue$.outboundSchema = GetDeploymentHasDeploymentsValue$outboundSchema;
4436
+ })(GetDeploymentHasDeploymentsValue$ || (GetDeploymentHasDeploymentsValue$ = {}));
4437
+ export function getDeploymentHasDeploymentsValueToJSON(getDeploymentHasDeploymentsValue) {
4438
+ return JSON.stringify(GetDeploymentHasDeploymentsValue$outboundSchema.parse(getDeploymentHasDeploymentsValue));
4445
4439
  }
4446
- export function getDeploymentHasValueFromJSON(jsonString) {
4447
- return safeParse(jsonString, (x) => GetDeploymentHasValue$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentHasValue' from JSON`);
4440
+ export function getDeploymentHasDeploymentsValueFromJSON(jsonString) {
4441
+ return safeParse(jsonString, (x) => GetDeploymentHasDeploymentsValue$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentHasDeploymentsValue' from JSON`);
4448
4442
  }
4449
4443
  /** @internal */
4450
4444
  export const GetDeploymentHas2$inboundSchema = z.object({
4451
4445
  type: GetDeploymentHasType$inboundSchema,
4452
4446
  key: z.string(),
4453
- value: z.union([
4454
- z.lazy(() => GetDeploymentValueDeployments2$inboundSchema),
4455
- z.string(),
4456
- ]).optional(),
4447
+ value: z.union([z.lazy(() => GetDeploymentValue2$inboundSchema), z.string()])
4448
+ .optional(),
4457
4449
  });
4458
4450
  /** @internal */
4459
4451
  export const GetDeploymentHas2$outboundSchema = z.object({
4460
4452
  type: GetDeploymentHasType$outboundSchema,
4461
4453
  key: z.string(),
4462
- value: z.union([
4463
- z.lazy(() => GetDeploymentValueDeployments2$outboundSchema),
4464
- z.string(),
4465
- ]).optional(),
4454
+ value: z.union([z.lazy(() => GetDeploymentValue2$outboundSchema), z.string()])
4455
+ .optional(),
4466
4456
  });
4467
4457
  /**
4468
4458
  * @internal
@@ -4518,7 +4508,7 @@ export function getDeploymentValueDeploymentsResponseEqFromJSON(jsonString) {
4518
4508
  return safeParse(jsonString, (x) => GetDeploymentValueDeploymentsResponseEq$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentValueDeploymentsResponseEq' from JSON`);
4519
4509
  }
4520
4510
  /** @internal */
4521
- export const GetDeploymentValue2$inboundSchema = z.object({
4511
+ export const GetDeploymentValueDeploymentsResponse2002$inboundSchema = z.object({
4522
4512
  eq: z.union([z.string(), z.number()]).optional(),
4523
4513
  neq: z.string().optional(),
4524
4514
  inc: z.array(z.string()).optional(),
@@ -4532,7 +4522,7 @@ export const GetDeploymentValue2$inboundSchema = z.object({
4532
4522
  lte: z.number().optional(),
4533
4523
  });
4534
4524
  /** @internal */
4535
- export const GetDeploymentValue2$outboundSchema = z.object({
4525
+ export const GetDeploymentValueDeploymentsResponse2002$outboundSchema = z.object({
4536
4526
  eq: z.union([z.string(), z.number()]).optional(),
4537
4527
  neq: z.string().optional(),
4538
4528
  inc: z.array(z.string()).optional(),
@@ -4549,50 +4539,59 @@ export const GetDeploymentValue2$outboundSchema = z.object({
4549
4539
  * @internal
4550
4540
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4551
4541
  */
4552
- export var GetDeploymentValue2$;
4553
- (function (GetDeploymentValue2$) {
4554
- /** @deprecated use `GetDeploymentValue2$inboundSchema` instead. */
4555
- GetDeploymentValue2$.inboundSchema = GetDeploymentValue2$inboundSchema;
4556
- /** @deprecated use `GetDeploymentValue2$outboundSchema` instead. */
4557
- GetDeploymentValue2$.outboundSchema = GetDeploymentValue2$outboundSchema;
4558
- })(GetDeploymentValue2$ || (GetDeploymentValue2$ = {}));
4559
- export function getDeploymentValue2ToJSON(getDeploymentValue2) {
4560
- return JSON.stringify(GetDeploymentValue2$outboundSchema.parse(getDeploymentValue2));
4542
+ export var GetDeploymentValueDeploymentsResponse2002$;
4543
+ (function (GetDeploymentValueDeploymentsResponse2002$) {
4544
+ /** @deprecated use `GetDeploymentValueDeploymentsResponse2002$inboundSchema` instead. */
4545
+ GetDeploymentValueDeploymentsResponse2002$.inboundSchema = GetDeploymentValueDeploymentsResponse2002$inboundSchema;
4546
+ /** @deprecated use `GetDeploymentValueDeploymentsResponse2002$outboundSchema` instead. */
4547
+ GetDeploymentValueDeploymentsResponse2002$.outboundSchema = GetDeploymentValueDeploymentsResponse2002$outboundSchema;
4548
+ })(GetDeploymentValueDeploymentsResponse2002$ || (GetDeploymentValueDeploymentsResponse2002$ = {}));
4549
+ export function getDeploymentValueDeploymentsResponse2002ToJSON(getDeploymentValueDeploymentsResponse2002) {
4550
+ return JSON.stringify(GetDeploymentValueDeploymentsResponse2002$outboundSchema.parse(getDeploymentValueDeploymentsResponse2002));
4561
4551
  }
4562
- export function getDeploymentValue2FromJSON(jsonString) {
4563
- return safeParse(jsonString, (x) => GetDeploymentValue2$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentValue2' from JSON`);
4552
+ export function getDeploymentValueDeploymentsResponse2002FromJSON(jsonString) {
4553
+ return safeParse(jsonString, (x) => GetDeploymentValueDeploymentsResponse2002$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentValueDeploymentsResponse2002' from JSON`);
4564
4554
  }
4565
4555
  /** @internal */
4566
- export const GetDeploymentHasDeploymentsValue$inboundSchema = z.union([z.lazy(() => GetDeploymentValue2$inboundSchema), z.string()]);
4556
+ export const GetDeploymentHasValue$inboundSchema = z.union([
4557
+ z.lazy(() => GetDeploymentValueDeploymentsResponse2002$inboundSchema),
4558
+ z.string(),
4559
+ ]);
4567
4560
  /** @internal */
4568
- export const GetDeploymentHasDeploymentsValue$outboundSchema = z.union([z.lazy(() => GetDeploymentValue2$outboundSchema), z.string()]);
4561
+ export const GetDeploymentHasValue$outboundSchema = z.union([
4562
+ z.lazy(() => GetDeploymentValueDeploymentsResponse2002$outboundSchema),
4563
+ z.string(),
4564
+ ]);
4569
4565
  /**
4570
4566
  * @internal
4571
4567
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4572
4568
  */
4573
- export var GetDeploymentHasDeploymentsValue$;
4574
- (function (GetDeploymentHasDeploymentsValue$) {
4575
- /** @deprecated use `GetDeploymentHasDeploymentsValue$inboundSchema` instead. */
4576
- GetDeploymentHasDeploymentsValue$.inboundSchema = GetDeploymentHasDeploymentsValue$inboundSchema;
4577
- /** @deprecated use `GetDeploymentHasDeploymentsValue$outboundSchema` instead. */
4578
- GetDeploymentHasDeploymentsValue$.outboundSchema = GetDeploymentHasDeploymentsValue$outboundSchema;
4579
- })(GetDeploymentHasDeploymentsValue$ || (GetDeploymentHasDeploymentsValue$ = {}));
4580
- export function getDeploymentHasDeploymentsValueToJSON(getDeploymentHasDeploymentsValue) {
4581
- return JSON.stringify(GetDeploymentHasDeploymentsValue$outboundSchema.parse(getDeploymentHasDeploymentsValue));
4569
+ export var GetDeploymentHasValue$;
4570
+ (function (GetDeploymentHasValue$) {
4571
+ /** @deprecated use `GetDeploymentHasValue$inboundSchema` instead. */
4572
+ GetDeploymentHasValue$.inboundSchema = GetDeploymentHasValue$inboundSchema;
4573
+ /** @deprecated use `GetDeploymentHasValue$outboundSchema` instead. */
4574
+ GetDeploymentHasValue$.outboundSchema = GetDeploymentHasValue$outboundSchema;
4575
+ })(GetDeploymentHasValue$ || (GetDeploymentHasValue$ = {}));
4576
+ export function getDeploymentHasValueToJSON(getDeploymentHasValue) {
4577
+ return JSON.stringify(GetDeploymentHasValue$outboundSchema.parse(getDeploymentHasValue));
4582
4578
  }
4583
- export function getDeploymentHasDeploymentsValueFromJSON(jsonString) {
4584
- return safeParse(jsonString, (x) => GetDeploymentHasDeploymentsValue$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentHasDeploymentsValue' from JSON`);
4579
+ export function getDeploymentHasValueFromJSON(jsonString) {
4580
+ return safeParse(jsonString, (x) => GetDeploymentHasValue$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentHasValue' from JSON`);
4585
4581
  }
4586
4582
  /** @internal */
4587
4583
  export const GetDeploymentHas1$inboundSchema = z.object({
4588
4584
  type: GetDeploymentHasDeploymentsType$inboundSchema,
4589
- value: z.union([z.lazy(() => GetDeploymentValue2$inboundSchema), z.string()]),
4585
+ value: z.union([
4586
+ z.lazy(() => GetDeploymentValueDeploymentsResponse2002$inboundSchema),
4587
+ z.string(),
4588
+ ]),
4590
4589
  });
4591
4590
  /** @internal */
4592
4591
  export const GetDeploymentHas1$outboundSchema = z.object({
4593
4592
  type: GetDeploymentHasDeploymentsType$outboundSchema,
4594
4593
  value: z.union([
4595
- z.lazy(() => GetDeploymentValue2$outboundSchema),
4594
+ z.lazy(() => GetDeploymentValueDeploymentsResponse2002$outboundSchema),
4596
4595
  z.string(),
4597
4596
  ]),
4598
4597
  });
@@ -4677,7 +4676,7 @@ export function getDeploymentValueDeploymentsEqFromJSON(jsonString) {
4677
4676
  return safeParse(jsonString, (x) => GetDeploymentValueDeploymentsEq$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentValueDeploymentsEq' from JSON`);
4678
4677
  }
4679
4678
  /** @internal */
4680
- export const GetDeploymentValueDeploymentsResponse2002$inboundSchema = z.object({
4679
+ export const GetDeploymentValueDeploymentsResponse2$inboundSchema = z.object({
4681
4680
  eq: z.union([z.string(), z.number()]).optional(),
4682
4681
  neq: z.string().optional(),
4683
4682
  inc: z.array(z.string()).optional(),
@@ -4691,7 +4690,7 @@ export const GetDeploymentValueDeploymentsResponse2002$inboundSchema = z.object(
4691
4690
  lte: z.number().optional(),
4692
4691
  });
4693
4692
  /** @internal */
4694
- export const GetDeploymentValueDeploymentsResponse2002$outboundSchema = z.object({
4693
+ export const GetDeploymentValueDeploymentsResponse2$outboundSchema = z.object({
4695
4694
  eq: z.union([z.string(), z.number()]).optional(),
4696
4695
  neq: z.string().optional(),
4697
4696
  inc: z.array(z.string()).optional(),
@@ -4708,27 +4707,27 @@ export const GetDeploymentValueDeploymentsResponse2002$outboundSchema = z.object
4708
4707
  * @internal
4709
4708
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4710
4709
  */
4711
- export var GetDeploymentValueDeploymentsResponse2002$;
4712
- (function (GetDeploymentValueDeploymentsResponse2002$) {
4713
- /** @deprecated use `GetDeploymentValueDeploymentsResponse2002$inboundSchema` instead. */
4714
- GetDeploymentValueDeploymentsResponse2002$.inboundSchema = GetDeploymentValueDeploymentsResponse2002$inboundSchema;
4715
- /** @deprecated use `GetDeploymentValueDeploymentsResponse2002$outboundSchema` instead. */
4716
- GetDeploymentValueDeploymentsResponse2002$.outboundSchema = GetDeploymentValueDeploymentsResponse2002$outboundSchema;
4717
- })(GetDeploymentValueDeploymentsResponse2002$ || (GetDeploymentValueDeploymentsResponse2002$ = {}));
4718
- export function getDeploymentValueDeploymentsResponse2002ToJSON(getDeploymentValueDeploymentsResponse2002) {
4719
- return JSON.stringify(GetDeploymentValueDeploymentsResponse2002$outboundSchema.parse(getDeploymentValueDeploymentsResponse2002));
4710
+ export var GetDeploymentValueDeploymentsResponse2$;
4711
+ (function (GetDeploymentValueDeploymentsResponse2$) {
4712
+ /** @deprecated use `GetDeploymentValueDeploymentsResponse2$inboundSchema` instead. */
4713
+ GetDeploymentValueDeploymentsResponse2$.inboundSchema = GetDeploymentValueDeploymentsResponse2$inboundSchema;
4714
+ /** @deprecated use `GetDeploymentValueDeploymentsResponse2$outboundSchema` instead. */
4715
+ GetDeploymentValueDeploymentsResponse2$.outboundSchema = GetDeploymentValueDeploymentsResponse2$outboundSchema;
4716
+ })(GetDeploymentValueDeploymentsResponse2$ || (GetDeploymentValueDeploymentsResponse2$ = {}));
4717
+ export function getDeploymentValueDeploymentsResponse2ToJSON(getDeploymentValueDeploymentsResponse2) {
4718
+ return JSON.stringify(GetDeploymentValueDeploymentsResponse2$outboundSchema.parse(getDeploymentValueDeploymentsResponse2));
4720
4719
  }
4721
- export function getDeploymentValueDeploymentsResponse2002FromJSON(jsonString) {
4722
- return safeParse(jsonString, (x) => GetDeploymentValueDeploymentsResponse2002$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentValueDeploymentsResponse2002' from JSON`);
4720
+ export function getDeploymentValueDeploymentsResponse2FromJSON(jsonString) {
4721
+ return safeParse(jsonString, (x) => GetDeploymentValueDeploymentsResponse2$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentValueDeploymentsResponse2' from JSON`);
4723
4722
  }
4724
4723
  /** @internal */
4725
4724
  export const GetDeploymentMissingValue$inboundSchema = z.union([
4726
- z.lazy(() => GetDeploymentValueDeploymentsResponse2002$inboundSchema),
4725
+ z.lazy(() => GetDeploymentValueDeploymentsResponse2$inboundSchema),
4727
4726
  z.string(),
4728
4727
  ]);
4729
4728
  /** @internal */
4730
4729
  export const GetDeploymentMissingValue$outboundSchema = z.union([
4731
- z.lazy(() => GetDeploymentValueDeploymentsResponse2002$outboundSchema),
4730
+ z.lazy(() => GetDeploymentValueDeploymentsResponse2$outboundSchema),
4732
4731
  z.string(),
4733
4732
  ]);
4734
4733
  /**
@@ -4753,7 +4752,7 @@ export const GetDeploymentMissing2$inboundSchema = z.object({
4753
4752
  type: GetDeploymentMissingType$inboundSchema,
4754
4753
  key: z.string(),
4755
4754
  value: z.union([
4756
- z.lazy(() => GetDeploymentValueDeploymentsResponse2002$inboundSchema),
4755
+ z.lazy(() => GetDeploymentValueDeploymentsResponse2$inboundSchema),
4757
4756
  z.string(),
4758
4757
  ]).optional(),
4759
4758
  });
@@ -4762,7 +4761,7 @@ export const GetDeploymentMissing2$outboundSchema = z.object({
4762
4761
  type: GetDeploymentMissingType$outboundSchema,
4763
4762
  key: z.string(),
4764
4763
  value: z.union([
4765
- z.lazy(() => GetDeploymentValueDeploymentsResponse2002$outboundSchema),
4764
+ z.lazy(() => GetDeploymentValueDeploymentsResponse2$outboundSchema),
4766
4765
  z.string(),
4767
4766
  ]).optional(),
4768
4767
  });
@@ -4820,7 +4819,7 @@ export function getDeploymentValueEqFromJSON(jsonString) {
4820
4819
  return safeParse(jsonString, (x) => GetDeploymentValueEq$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentValueEq' from JSON`);
4821
4820
  }
4822
4821
  /** @internal */
4823
- export const GetDeploymentValueDeploymentsResponse2$inboundSchema = z.object({
4822
+ export const GetDeploymentValueDeployments2$inboundSchema = z.object({
4824
4823
  eq: z.union([z.string(), z.number()]).optional(),
4825
4824
  neq: z.string().optional(),
4826
4825
  inc: z.array(z.string()).optional(),
@@ -4834,7 +4833,7 @@ export const GetDeploymentValueDeploymentsResponse2$inboundSchema = z.object({
4834
4833
  lte: z.number().optional(),
4835
4834
  });
4836
4835
  /** @internal */
4837
- export const GetDeploymentValueDeploymentsResponse2$outboundSchema = z.object({
4836
+ export const GetDeploymentValueDeployments2$outboundSchema = z.object({
4838
4837
  eq: z.union([z.string(), z.number()]).optional(),
4839
4838
  neq: z.string().optional(),
4840
4839
  inc: z.array(z.string()).optional(),
@@ -4851,27 +4850,27 @@ export const GetDeploymentValueDeploymentsResponse2$outboundSchema = z.object({
4851
4850
  * @internal
4852
4851
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4853
4852
  */
4854
- export var GetDeploymentValueDeploymentsResponse2$;
4855
- (function (GetDeploymentValueDeploymentsResponse2$) {
4856
- /** @deprecated use `GetDeploymentValueDeploymentsResponse2$inboundSchema` instead. */
4857
- GetDeploymentValueDeploymentsResponse2$.inboundSchema = GetDeploymentValueDeploymentsResponse2$inboundSchema;
4858
- /** @deprecated use `GetDeploymentValueDeploymentsResponse2$outboundSchema` instead. */
4859
- GetDeploymentValueDeploymentsResponse2$.outboundSchema = GetDeploymentValueDeploymentsResponse2$outboundSchema;
4860
- })(GetDeploymentValueDeploymentsResponse2$ || (GetDeploymentValueDeploymentsResponse2$ = {}));
4861
- export function getDeploymentValueDeploymentsResponse2ToJSON(getDeploymentValueDeploymentsResponse2) {
4862
- return JSON.stringify(GetDeploymentValueDeploymentsResponse2$outboundSchema.parse(getDeploymentValueDeploymentsResponse2));
4853
+ export var GetDeploymentValueDeployments2$;
4854
+ (function (GetDeploymentValueDeployments2$) {
4855
+ /** @deprecated use `GetDeploymentValueDeployments2$inboundSchema` instead. */
4856
+ GetDeploymentValueDeployments2$.inboundSchema = GetDeploymentValueDeployments2$inboundSchema;
4857
+ /** @deprecated use `GetDeploymentValueDeployments2$outboundSchema` instead. */
4858
+ GetDeploymentValueDeployments2$.outboundSchema = GetDeploymentValueDeployments2$outboundSchema;
4859
+ })(GetDeploymentValueDeployments2$ || (GetDeploymentValueDeployments2$ = {}));
4860
+ export function getDeploymentValueDeployments2ToJSON(getDeploymentValueDeployments2) {
4861
+ return JSON.stringify(GetDeploymentValueDeployments2$outboundSchema.parse(getDeploymentValueDeployments2));
4863
4862
  }
4864
- export function getDeploymentValueDeploymentsResponse2FromJSON(jsonString) {
4865
- return safeParse(jsonString, (x) => GetDeploymentValueDeploymentsResponse2$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentValueDeploymentsResponse2' from JSON`);
4863
+ export function getDeploymentValueDeployments2FromJSON(jsonString) {
4864
+ return safeParse(jsonString, (x) => GetDeploymentValueDeployments2$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentValueDeployments2' from JSON`);
4866
4865
  }
4867
4866
  /** @internal */
4868
4867
  export const GetDeploymentMissingDeploymentsValue$inboundSchema = z.union([
4869
- z.lazy(() => GetDeploymentValueDeploymentsResponse2$inboundSchema),
4868
+ z.lazy(() => GetDeploymentValueDeployments2$inboundSchema),
4870
4869
  z.string(),
4871
4870
  ]);
4872
4871
  /** @internal */
4873
4872
  export const GetDeploymentMissingDeploymentsValue$outboundSchema = z.union([
4874
- z.lazy(() => GetDeploymentValueDeploymentsResponse2$outboundSchema),
4873
+ z.lazy(() => GetDeploymentValueDeployments2$outboundSchema),
4875
4874
  z.string(),
4876
4875
  ]);
4877
4876
  /**
@@ -4895,7 +4894,7 @@ export function getDeploymentMissingDeploymentsValueFromJSON(jsonString) {
4895
4894
  export const GetDeploymentMissing1$inboundSchema = z.object({
4896
4895
  type: GetDeploymentMissingDeploymentsType$inboundSchema,
4897
4896
  value: z.union([
4898
- z.lazy(() => GetDeploymentValueDeploymentsResponse2$inboundSchema),
4897
+ z.lazy(() => GetDeploymentValueDeployments2$inboundSchema),
4899
4898
  z.string(),
4900
4899
  ]),
4901
4900
  });
@@ -4903,7 +4902,7 @@ export const GetDeploymentMissing1$inboundSchema = z.object({
4903
4902
  export const GetDeploymentMissing1$outboundSchema = z.object({
4904
4903
  type: GetDeploymentMissingDeploymentsType$outboundSchema,
4905
4904
  value: z.union([
4906
- z.lazy(() => GetDeploymentValueDeploymentsResponse2$outboundSchema),
4905
+ z.lazy(() => GetDeploymentValueDeployments2$outboundSchema),
4907
4906
  z.string(),
4908
4907
  ]),
4909
4908
  });