@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.
- package/bin/mcp-server.js +436 -1558
- package/bin/mcp-server.js.map +19 -19
- package/esm/__tests__/teams.test.js +2 -4
- package/esm/__tests__/teams.test.js.map +1 -1
- package/esm/funcs/domainsBuyDomain.js +2 -2
- package/esm/funcs/domainsBuyDomain.js.map +1 -1
- package/esm/funcs/domainsGetDomainConfig.js +1 -0
- package/esm/funcs/domainsGetDomainConfig.js.map +1 -1
- package/esm/funcs/domainsPatchDomain.js +2 -2
- package/esm/funcs/domainsPatchDomain.js.map +1 -1
- package/esm/lib/config.d.ts +3 -3
- package/esm/lib/config.js +3 -3
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.js +1 -1
- package/esm/models/canceldeploymentop.d.ts +49 -49
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +53 -55
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +174 -174
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +166 -165
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createprojectop.d.ts +33 -585
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +31 -530
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/getdeploymentop.d.ts +90 -90
- package/esm/models/getdeploymentop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.js +101 -102
- package/esm/models/getdeploymentop.js.map +1 -1
- package/esm/models/getdomainconfigop.d.ts +63 -0
- package/esm/models/getdomainconfigop.d.ts.map +1 -1
- package/esm/models/getdomainconfigop.js +52 -0
- package/esm/models/getdomainconfigop.js.map +1 -1
- package/esm/models/getprojectsop.d.ts +33 -585
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +31 -530
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/team.d.ts +13 -12
- package/esm/models/team.d.ts.map +1 -1
- package/esm/models/team.js +6 -7
- package/esm/models/team.js.map +1 -1
- package/esm/models/teamlimited.d.ts +0 -2
- package/esm/models/teamlimited.d.ts.map +1 -1
- package/esm/models/teamlimited.js +0 -2
- package/esm/models/teamlimited.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +41 -593
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +43 -561
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +33 -585
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +31 -530
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/models/userevent.d.ts +154 -124
- package/esm/models/userevent.d.ts.map +1 -1
- package/esm/models/userevent.js +166 -135
- package/esm/models/userevent.js.map +1 -1
- package/examples/package-lock.json +1 -1
- package/examples/projectsUpdateProject.example.ts +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/teams.test.ts +2 -4
- package/src/funcs/domainsBuyDomain.ts +2 -2
- package/src/funcs/domainsGetDomainConfig.ts +1 -0
- package/src/funcs/domainsPatchDomain.ts +2 -2
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/canceldeploymentop.ts +78 -104
- package/src/models/createdeploymentop.ts +347 -350
- package/src/models/createprojectop.ts +197 -1221
- package/src/models/getdeploymentop.ts +214 -216
- package/src/models/getdomainconfigop.ts +129 -0
- package/src/models/getprojectsop.ts +202 -1207
- package/src/models/team.ts +13 -16
- package/src/models/teamlimited.ts +0 -4
- package/src/models/updateprojectdatacacheop.ts +171 -1168
- package/src/models/updateprojectop.ts +197 -1221
- package/src/models/userevent.ts +309 -236
- package/vercel-spec.json +141 -1530
|
@@ -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
|
|
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
|
|
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
|
|
4410
|
-
(function (
|
|
4411
|
-
/** @deprecated use `
|
|
4412
|
-
|
|
4413
|
-
/** @deprecated use `
|
|
4414
|
-
|
|
4415
|
-
})(
|
|
4416
|
-
export function
|
|
4417
|
-
return JSON.stringify(
|
|
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
|
|
4420
|
-
return safeParse(jsonString, (x) =>
|
|
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
|
|
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
|
|
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
|
|
4437
|
-
(function (
|
|
4438
|
-
/** @deprecated use `
|
|
4439
|
-
|
|
4440
|
-
/** @deprecated use `
|
|
4441
|
-
|
|
4442
|
-
})(
|
|
4443
|
-
export function
|
|
4444
|
-
return JSON.stringify(
|
|
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
|
|
4447
|
-
return safeParse(jsonString, (x) =>
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
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
|
|
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
|
|
4553
|
-
(function (
|
|
4554
|
-
/** @deprecated use `
|
|
4555
|
-
|
|
4556
|
-
/** @deprecated use `
|
|
4557
|
-
|
|
4558
|
-
})(
|
|
4559
|
-
export function
|
|
4560
|
-
return JSON.stringify(
|
|
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
|
|
4563
|
-
return safeParse(jsonString, (x) =>
|
|
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
|
|
4556
|
+
export const GetDeploymentHasValue$inboundSchema = z.union([
|
|
4557
|
+
z.lazy(() => GetDeploymentValueDeploymentsResponse2002$inboundSchema),
|
|
4558
|
+
z.string(),
|
|
4559
|
+
]);
|
|
4567
4560
|
/** @internal */
|
|
4568
|
-
export const
|
|
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
|
|
4574
|
-
(function (
|
|
4575
|
-
/** @deprecated use `
|
|
4576
|
-
|
|
4577
|
-
/** @deprecated use `
|
|
4578
|
-
|
|
4579
|
-
})(
|
|
4580
|
-
export function
|
|
4581
|
-
return JSON.stringify(
|
|
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
|
|
4584
|
-
return safeParse(jsonString, (x) =>
|
|
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([
|
|
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(() =>
|
|
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
|
|
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
|
|
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
|
|
4712
|
-
(function (
|
|
4713
|
-
/** @deprecated use `
|
|
4714
|
-
|
|
4715
|
-
/** @deprecated use `
|
|
4716
|
-
|
|
4717
|
-
})(
|
|
4718
|
-
export function
|
|
4719
|
-
return JSON.stringify(
|
|
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
|
|
4722
|
-
return safeParse(jsonString, (x) =>
|
|
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(() =>
|
|
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(() =>
|
|
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(() =>
|
|
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(() =>
|
|
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
|
|
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
|
|
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
|
|
4855
|
-
(function (
|
|
4856
|
-
/** @deprecated use `
|
|
4857
|
-
|
|
4858
|
-
/** @deprecated use `
|
|
4859
|
-
|
|
4860
|
-
})(
|
|
4861
|
-
export function
|
|
4862
|
-
return JSON.stringify(
|
|
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
|
|
4865
|
-
return safeParse(jsonString, (x) =>
|
|
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(() =>
|
|
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(() =>
|
|
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(() =>
|
|
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(() =>
|
|
4905
|
+
z.lazy(() => GetDeploymentValueDeployments2$outboundSchema),
|
|
4907
4906
|
z.string(),
|
|
4908
4907
|
]),
|
|
4909
4908
|
});
|