@vercel/sdk 1.8.4 → 1.8.6
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/README.md +11 -3
- package/bin/mcp-server.js +2697 -1100
- package/bin/mcp-server.js.map +41 -29
- package/docs/sdks/marketplace/README.md +310 -78
- package/docs/sdks/rollingrelease/README.md +80 -0
- package/esm/__tests__/marketplace.test.js +53 -0
- package/esm/__tests__/marketplace.test.js.map +1 -1
- package/esm/__tests__/projects.test.js +15 -13
- package/esm/__tests__/projects.test.js.map +1 -1
- package/esm/__tests__/rollingrelease.test.js +23 -0
- package/esm/__tests__/rollingrelease.test.js.map +1 -1
- package/esm/funcs/domainsCheckDomainStatus.js +2 -2
- package/esm/funcs/domainsCheckDomainStatus.js.map +1 -1
- package/esm/funcs/marketplaceDeleteResource.d.ts +20 -0
- package/esm/funcs/marketplaceDeleteResource.d.ts.map +1 -0
- package/esm/funcs/marketplaceDeleteResource.js +91 -0
- package/esm/funcs/marketplaceDeleteResource.js.map +1 -0
- package/esm/funcs/marketplaceGetResource.d.ts +20 -0
- package/esm/funcs/marketplaceGetResource.d.ts.map +1 -0
- package/esm/funcs/marketplaceGetResource.js +90 -0
- package/esm/funcs/marketplaceGetResource.js.map +1 -0
- package/esm/funcs/marketplaceGetResources.d.ts +20 -0
- package/esm/funcs/marketplaceGetResources.d.ts.map +1 -0
- package/esm/funcs/marketplaceGetResources.js +86 -0
- package/esm/funcs/marketplaceGetResources.js.map +1 -0
- package/esm/funcs/rollingReleaseGetRollingReleaseBillingStatus.d.ts +20 -0
- package/esm/funcs/rollingReleaseGetRollingReleaseBillingStatus.d.ts.map +1 -0
- package/esm/funcs/rollingReleaseGetRollingReleaseBillingStatus.js +94 -0
- package/esm/funcs/rollingReleaseGetRollingReleaseBillingStatus.js.map +1 -0
- 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.d.ts.map +1 -1
- package/esm/mcp-server/server.js +10 -2
- package/esm/mcp-server/server.js.map +1 -1
- package/esm/mcp-server/tools/marketplaceDeleteResource.d.ts +7 -0
- package/esm/mcp-server/tools/marketplaceDeleteResource.d.ts.map +1 -0
- package/esm/mcp-server/tools/marketplaceDeleteResource.js +27 -0
- package/esm/mcp-server/tools/marketplaceDeleteResource.js.map +1 -0
- package/esm/mcp-server/tools/marketplaceGetResource.d.ts +7 -0
- package/esm/mcp-server/tools/marketplaceGetResource.d.ts.map +1 -0
- package/esm/mcp-server/tools/marketplaceGetResource.js +28 -0
- package/esm/mcp-server/tools/marketplaceGetResource.js.map +1 -0
- package/esm/mcp-server/tools/marketplaceGetResources.d.ts +7 -0
- package/esm/mcp-server/tools/marketplaceGetResources.d.ts.map +1 -0
- package/esm/mcp-server/tools/marketplaceGetResources.js +28 -0
- package/esm/mcp-server/tools/marketplaceGetResources.js.map +1 -0
- package/esm/mcp-server/tools/rollingReleaseGetRollingReleaseBillingStatus.d.ts +7 -0
- package/esm/mcp-server/tools/rollingReleaseGetRollingReleaseBillingStatus.d.ts.map +1 -0
- package/esm/mcp-server/tools/rollingReleaseGetRollingReleaseBillingStatus.js +28 -0
- package/esm/mcp-server/tools/rollingReleaseGetRollingReleaseBillingStatus.js.map +1 -0
- package/esm/models/canceldeploymentop.d.ts +427 -25
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +465 -25
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +459 -114
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +503 -118
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createprojectenvop.d.ts +6 -6
- package/esm/models/createprojectenvop.js +2 -2
- package/esm/models/createprojectenvop.js.map +1 -1
- package/esm/models/createprojectop.d.ts +139 -137
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +137 -135
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/createwebhookop.d.ts +6 -0
- package/esm/models/createwebhookop.d.ts.map +1 -1
- package/esm/models/createwebhookop.js +2 -0
- package/esm/models/createwebhookop.js.map +1 -1
- package/esm/models/deleteresourceop.d.ts +31 -0
- package/esm/models/deleteresourceop.d.ts.map +1 -0
- package/esm/models/deleteresourceop.js +33 -0
- package/esm/models/deleteresourceop.js.map +1 -0
- package/esm/models/editprojectenvop.d.ts +3 -3
- package/esm/models/editprojectenvop.js +1 -1
- package/esm/models/editprojectenvop.js.map +1 -1
- package/esm/models/getdeploymentop.d.ts +410 -8
- package/esm/models/getdeploymentop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.js +443 -8
- package/esm/models/getdeploymentop.js.map +1 -1
- package/esm/models/getedgeconfigbackupop.d.ts +15 -15
- package/esm/models/getedgeconfigbackupop.d.ts.map +1 -1
- package/esm/models/getedgeconfigbackupop.js +15 -15
- package/esm/models/getedgeconfigbackupop.js.map +1 -1
- package/esm/models/getfirewallconfigop.d.ts +2 -0
- package/esm/models/getfirewallconfigop.d.ts.map +1 -1
- package/esm/models/getfirewallconfigop.js +2 -0
- package/esm/models/getfirewallconfigop.js.map +1 -1
- package/esm/models/getmemberop.d.ts +9 -0
- package/esm/models/getmemberop.d.ts.map +1 -1
- package/esm/models/getmemberop.js +3 -0
- package/esm/models/getmemberop.js.map +1 -1
- package/esm/models/getprojectsop.d.ts +2 -0
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +2 -0
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/getresourceop.d.ts +293 -0
- package/esm/models/getresourceop.d.ts.map +1 -0
- package/esm/models/getresourceop.js +250 -0
- package/esm/models/getresourceop.js.map +1 -0
- package/esm/models/getresourcesop.d.ts +310 -0
- package/esm/models/getresourcesop.d.ts.map +1 -0
- package/esm/models/getresourcesop.js +278 -0
- package/esm/models/getresourcesop.js.map +1 -0
- package/esm/models/getrollingreleasebillingstatusop.d.ts +284 -0
- package/esm/models/getrollingreleasebillingstatusop.d.ts.map +1 -0
- package/esm/models/getrollingreleasebillingstatusop.js +267 -0
- package/esm/models/getrollingreleasebillingstatusop.js.map +1 -0
- package/esm/models/getwebhookop.d.ts +3 -0
- package/esm/models/getwebhookop.d.ts.map +1 -1
- package/esm/models/getwebhookop.js +1 -0
- package/esm/models/getwebhookop.js.map +1 -1
- package/esm/models/getwebhooksop.d.ts +6 -0
- package/esm/models/getwebhooksop.d.ts.map +1 -1
- package/esm/models/getwebhooksop.js +2 -0
- package/esm/models/getwebhooksop.js.map +1 -1
- package/esm/models/importresourceop.d.ts +15 -15
- package/esm/models/importresourceop.d.ts.map +1 -1
- package/esm/models/importresourceop.js +17 -15
- package/esm/models/importresourceop.js.map +1 -1
- package/esm/models/putfirewallconfigop.d.ts +4 -0
- package/esm/models/putfirewallconfigop.d.ts.map +1 -1
- package/esm/models/putfirewallconfigop.js +4 -0
- package/esm/models/putfirewallconfigop.js.map +1 -1
- package/esm/models/removeprojectenvop.d.ts +9 -9
- package/esm/models/removeprojectenvop.js +3 -3
- package/esm/models/removeprojectenvop.js.map +1 -1
- package/esm/models/updatefirewallconfigop.d.ts +36 -4
- package/esm/models/updatefirewallconfigop.d.ts.map +1 -1
- package/esm/models/updatefirewallconfigop.js +33 -0
- package/esm/models/updatefirewallconfigop.js.map +1 -1
- package/esm/models/updateintegrationdeploymentactionop.d.ts +2 -0
- package/esm/models/updateintegrationdeploymentactionop.d.ts.map +1 -1
- package/esm/models/updateintegrationdeploymentactionop.js +2 -0
- package/esm/models/updateintegrationdeploymentactionop.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +2 -0
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +2 -0
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +139 -137
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +137 -135
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/models/updateresourcesecretsop.d.ts +15 -15
- package/esm/models/updateresourcesecretsop.d.ts.map +1 -1
- package/esm/models/updateresourcesecretsop.js +15 -17
- package/esm/models/updateresourcesecretsop.js.map +1 -1
- package/esm/models/userevent.d.ts +5 -0
- package/esm/models/userevent.d.ts.map +1 -1
- package/esm/models/userevent.js +2 -0
- package/esm/models/userevent.js.map +1 -1
- package/esm/sdk/marketplace.d.ts +31 -7
- package/esm/sdk/marketplace.d.ts.map +1 -1
- package/esm/sdk/marketplace.js +39 -9
- package/esm/sdk/marketplace.js.map +1 -1
- package/esm/sdk/rollingrelease.d.ts +8 -0
- package/esm/sdk/rollingrelease.d.ts.map +1 -1
- package/esm/sdk/rollingrelease.js +10 -0
- package/esm/sdk/rollingrelease.js.map +1 -1
- package/esm/types/constdatetime.js +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/marketplace.test.ts +62 -0
- package/src/__tests__/projects.test.ts +15 -13
- package/src/__tests__/rollingrelease.test.ts +26 -0
- package/src/funcs/domainsCheckDomainStatus.ts +2 -2
- package/src/funcs/marketplaceDeleteResource.ts +205 -0
- package/src/funcs/marketplaceGetResource.ts +206 -0
- package/src/funcs/marketplaceGetResources.ts +202 -0
- package/src/funcs/rollingReleaseGetRollingReleaseBillingStatus.ts +208 -0
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +10 -2
- package/src/mcp-server/tools/marketplaceDeleteResource.ts +35 -0
- package/src/mcp-server/tools/marketplaceGetResource.ts +37 -0
- package/src/mcp-server/tools/marketplaceGetResources.ts +37 -0
- package/src/mcp-server/tools/rollingReleaseGetRollingReleaseBillingStatus.ts +40 -0
- package/src/models/canceldeploymentop.ts +1071 -48
- package/src/models/createdeploymentop.ts +1064 -236
- package/src/models/createprojectenvop.ts +2 -2
- package/src/models/createprojectop.ts +267 -263
- package/src/models/createwebhookop.ts +2 -0
- package/src/models/deleteresourceop.ts +70 -0
- package/src/models/editprojectenvop.ts +1 -1
- package/src/models/getdeploymentop.ts +1011 -16
- package/src/models/getedgeconfigbackupop.ts +41 -24
- package/src/models/getfirewallconfigop.ts +4 -0
- package/src/models/getmemberop.ts +9 -0
- package/src/models/getprojectsop.ts +4 -0
- package/src/models/getresourceop.ts +545 -0
- package/src/models/getresourcesop.ts +604 -0
- package/src/models/getrollingreleasebillingstatusop.ts +614 -0
- package/src/models/getwebhookop.ts +1 -0
- package/src/models/getwebhooksop.ts +2 -0
- package/src/models/importresourceop.ts +27 -35
- package/src/models/putfirewallconfigop.ts +8 -0
- package/src/models/removeprojectenvop.ts +3 -3
- package/src/models/updatefirewallconfigop.ts +73 -0
- package/src/models/updateintegrationdeploymentactionop.ts +4 -0
- package/src/models/updateprojectdatacacheop.ts +4 -0
- package/src/models/updateprojectop.ts +267 -263
- package/src/models/updateresourcesecretsop.ts +49 -33
- package/src/models/userevent.ts +7 -0
- package/src/sdk/marketplace.ts +80 -17
- package/src/sdk/rollingrelease.ts +22 -0
- package/src/types/constdatetime.ts +1 -1
- package/vercel-spec.json +2321 -931
|
@@ -1428,10 +1428,28 @@ export const GetDeploymentHasType = {
|
|
|
1428
1428
|
} as const;
|
|
1429
1429
|
export type GetDeploymentHasType = ClosedEnum<typeof GetDeploymentHasType>;
|
|
1430
1430
|
|
|
1431
|
+
export type GetDeploymentValueDeploymentsResponse200Eq = string | number;
|
|
1432
|
+
|
|
1433
|
+
export type GetDeploymentValueDeployments2 = {
|
|
1434
|
+
eq?: string | number | undefined;
|
|
1435
|
+
neq?: string | undefined;
|
|
1436
|
+
inc?: Array<string> | undefined;
|
|
1437
|
+
ninc?: Array<string> | undefined;
|
|
1438
|
+
pre?: string | undefined;
|
|
1439
|
+
suf?: string | undefined;
|
|
1440
|
+
re?: string | undefined;
|
|
1441
|
+
gt?: number | undefined;
|
|
1442
|
+
gte?: number | undefined;
|
|
1443
|
+
lt?: number | undefined;
|
|
1444
|
+
lte?: number | undefined;
|
|
1445
|
+
};
|
|
1446
|
+
|
|
1447
|
+
export type GetDeploymentHasValue = GetDeploymentValueDeployments2 | string;
|
|
1448
|
+
|
|
1431
1449
|
export type GetDeploymentHas2 = {
|
|
1432
1450
|
type: GetDeploymentHasType;
|
|
1433
1451
|
key: string;
|
|
1434
|
-
value?: string | undefined;
|
|
1452
|
+
value?: GetDeploymentValueDeployments2 | string | undefined;
|
|
1435
1453
|
};
|
|
1436
1454
|
|
|
1437
1455
|
export const GetDeploymentHasDeploymentsType = {
|
|
@@ -1441,9 +1459,27 @@ export type GetDeploymentHasDeploymentsType = ClosedEnum<
|
|
|
1441
1459
|
typeof GetDeploymentHasDeploymentsType
|
|
1442
1460
|
>;
|
|
1443
1461
|
|
|
1462
|
+
export type GetDeploymentValueDeploymentsResponseEq = string | number;
|
|
1463
|
+
|
|
1464
|
+
export type GetDeploymentValue2 = {
|
|
1465
|
+
eq?: string | number | undefined;
|
|
1466
|
+
neq?: string | undefined;
|
|
1467
|
+
inc?: Array<string> | undefined;
|
|
1468
|
+
ninc?: Array<string> | undefined;
|
|
1469
|
+
pre?: string | undefined;
|
|
1470
|
+
suf?: string | undefined;
|
|
1471
|
+
re?: string | undefined;
|
|
1472
|
+
gt?: number | undefined;
|
|
1473
|
+
gte?: number | undefined;
|
|
1474
|
+
lt?: number | undefined;
|
|
1475
|
+
lte?: number | undefined;
|
|
1476
|
+
};
|
|
1477
|
+
|
|
1478
|
+
export type GetDeploymentHasDeploymentsValue = GetDeploymentValue2 | string;
|
|
1479
|
+
|
|
1444
1480
|
export type GetDeploymentHas1 = {
|
|
1445
1481
|
type: GetDeploymentHasDeploymentsType;
|
|
1446
|
-
value: string;
|
|
1482
|
+
value: GetDeploymentValue2 | string;
|
|
1447
1483
|
};
|
|
1448
1484
|
|
|
1449
1485
|
export type GetDeploymentRoutesHas = GetDeploymentHas1 | GetDeploymentHas2;
|
|
@@ -1457,10 +1493,30 @@ export type GetDeploymentMissingType = ClosedEnum<
|
|
|
1457
1493
|
typeof GetDeploymentMissingType
|
|
1458
1494
|
>;
|
|
1459
1495
|
|
|
1496
|
+
export type GetDeploymentValueDeploymentsEq = string | number;
|
|
1497
|
+
|
|
1498
|
+
export type GetDeploymentValueDeploymentsResponse2002 = {
|
|
1499
|
+
eq?: string | number | undefined;
|
|
1500
|
+
neq?: string | undefined;
|
|
1501
|
+
inc?: Array<string> | undefined;
|
|
1502
|
+
ninc?: Array<string> | undefined;
|
|
1503
|
+
pre?: string | undefined;
|
|
1504
|
+
suf?: string | undefined;
|
|
1505
|
+
re?: string | undefined;
|
|
1506
|
+
gt?: number | undefined;
|
|
1507
|
+
gte?: number | undefined;
|
|
1508
|
+
lt?: number | undefined;
|
|
1509
|
+
lte?: number | undefined;
|
|
1510
|
+
};
|
|
1511
|
+
|
|
1512
|
+
export type GetDeploymentMissingValue =
|
|
1513
|
+
| GetDeploymentValueDeploymentsResponse2002
|
|
1514
|
+
| string;
|
|
1515
|
+
|
|
1460
1516
|
export type GetDeploymentMissing2 = {
|
|
1461
1517
|
type: GetDeploymentMissingType;
|
|
1462
1518
|
key: string;
|
|
1463
|
-
value?: string | undefined;
|
|
1519
|
+
value?: GetDeploymentValueDeploymentsResponse2002 | string | undefined;
|
|
1464
1520
|
};
|
|
1465
1521
|
|
|
1466
1522
|
export const GetDeploymentMissingDeploymentsType = {
|
|
@@ -1470,15 +1526,47 @@ export type GetDeploymentMissingDeploymentsType = ClosedEnum<
|
|
|
1470
1526
|
typeof GetDeploymentMissingDeploymentsType
|
|
1471
1527
|
>;
|
|
1472
1528
|
|
|
1529
|
+
export type GetDeploymentValueEq = string | number;
|
|
1530
|
+
|
|
1531
|
+
export type GetDeploymentValueDeploymentsResponse2 = {
|
|
1532
|
+
eq?: string | number | undefined;
|
|
1533
|
+
neq?: string | undefined;
|
|
1534
|
+
inc?: Array<string> | undefined;
|
|
1535
|
+
ninc?: Array<string> | undefined;
|
|
1536
|
+
pre?: string | undefined;
|
|
1537
|
+
suf?: string | undefined;
|
|
1538
|
+
re?: string | undefined;
|
|
1539
|
+
gt?: number | undefined;
|
|
1540
|
+
gte?: number | undefined;
|
|
1541
|
+
lt?: number | undefined;
|
|
1542
|
+
lte?: number | undefined;
|
|
1543
|
+
};
|
|
1544
|
+
|
|
1545
|
+
export type GetDeploymentMissingDeploymentsValue =
|
|
1546
|
+
| GetDeploymentValueDeploymentsResponse2
|
|
1547
|
+
| string;
|
|
1548
|
+
|
|
1473
1549
|
export type GetDeploymentMissing1 = {
|
|
1474
1550
|
type: GetDeploymentMissingDeploymentsType;
|
|
1475
|
-
value: string;
|
|
1551
|
+
value: GetDeploymentValueDeploymentsResponse2 | string;
|
|
1476
1552
|
};
|
|
1477
1553
|
|
|
1478
1554
|
export type GetDeploymentRoutesMissing =
|
|
1479
1555
|
| GetDeploymentMissing1
|
|
1480
1556
|
| GetDeploymentMissing2;
|
|
1481
1557
|
|
|
1558
|
+
export const GetDeploymentRoutesAction = {
|
|
1559
|
+
Challenge: "challenge",
|
|
1560
|
+
Deny: "deny",
|
|
1561
|
+
} as const;
|
|
1562
|
+
export type GetDeploymentRoutesAction = ClosedEnum<
|
|
1563
|
+
typeof GetDeploymentRoutesAction
|
|
1564
|
+
>;
|
|
1565
|
+
|
|
1566
|
+
export type GetDeploymentRoutesMitigate = {
|
|
1567
|
+
action: GetDeploymentRoutesAction;
|
|
1568
|
+
};
|
|
1569
|
+
|
|
1482
1570
|
export type GetDeploymentRoutesLocale = {
|
|
1483
1571
|
redirect?: { [k: string]: string } | undefined;
|
|
1484
1572
|
cookie?: string | undefined;
|
|
@@ -1497,6 +1585,7 @@ export type GetDeploymentRoutes1 = {
|
|
|
1497
1585
|
status?: number | undefined;
|
|
1498
1586
|
has?: Array<GetDeploymentHas1 | GetDeploymentHas2> | undefined;
|
|
1499
1587
|
missing?: Array<GetDeploymentMissing1 | GetDeploymentMissing2> | undefined;
|
|
1588
|
+
mitigate?: GetDeploymentRoutesMitigate | undefined;
|
|
1500
1589
|
locale?: GetDeploymentRoutesLocale | undefined;
|
|
1501
1590
|
/**
|
|
1502
1591
|
* A middleware key within the `output` key under the build result. Overrides a `middleware` definition.
|
|
@@ -1636,6 +1725,7 @@ export type ResponseBodyFlags =
|
|
|
1636
1725
|
* A map of the other applications that are part of this group. Only defined on the default application. The field is set after deployments have been created, so can be undefined, but should be there for a successful deployment.
|
|
1637
1726
|
*/
|
|
1638
1727
|
export type GetDeploymentMicrofrontendsApplications = {
|
|
1728
|
+
isDefaultApp?: boolean | undefined;
|
|
1639
1729
|
/**
|
|
1640
1730
|
* This is the production alias, it will always show the most up to date of each application.
|
|
1641
1731
|
*/
|
|
@@ -8771,6 +8861,208 @@ export namespace GetDeploymentHasType$ {
|
|
|
8771
8861
|
export const outboundSchema = GetDeploymentHasType$outboundSchema;
|
|
8772
8862
|
}
|
|
8773
8863
|
|
|
8864
|
+
/** @internal */
|
|
8865
|
+
export const GetDeploymentValueDeploymentsResponse200Eq$inboundSchema:
|
|
8866
|
+
z.ZodType<GetDeploymentValueDeploymentsResponse200Eq, z.ZodTypeDef, unknown> =
|
|
8867
|
+
z.union([z.string(), z.number()]);
|
|
8868
|
+
|
|
8869
|
+
/** @internal */
|
|
8870
|
+
export type GetDeploymentValueDeploymentsResponse200Eq$Outbound =
|
|
8871
|
+
| string
|
|
8872
|
+
| number;
|
|
8873
|
+
|
|
8874
|
+
/** @internal */
|
|
8875
|
+
export const GetDeploymentValueDeploymentsResponse200Eq$outboundSchema:
|
|
8876
|
+
z.ZodType<
|
|
8877
|
+
GetDeploymentValueDeploymentsResponse200Eq$Outbound,
|
|
8878
|
+
z.ZodTypeDef,
|
|
8879
|
+
GetDeploymentValueDeploymentsResponse200Eq
|
|
8880
|
+
> = z.union([z.string(), z.number()]);
|
|
8881
|
+
|
|
8882
|
+
/**
|
|
8883
|
+
* @internal
|
|
8884
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
8885
|
+
*/
|
|
8886
|
+
export namespace GetDeploymentValueDeploymentsResponse200Eq$ {
|
|
8887
|
+
/** @deprecated use `GetDeploymentValueDeploymentsResponse200Eq$inboundSchema` instead. */
|
|
8888
|
+
export const inboundSchema =
|
|
8889
|
+
GetDeploymentValueDeploymentsResponse200Eq$inboundSchema;
|
|
8890
|
+
/** @deprecated use `GetDeploymentValueDeploymentsResponse200Eq$outboundSchema` instead. */
|
|
8891
|
+
export const outboundSchema =
|
|
8892
|
+
GetDeploymentValueDeploymentsResponse200Eq$outboundSchema;
|
|
8893
|
+
/** @deprecated use `GetDeploymentValueDeploymentsResponse200Eq$Outbound` instead. */
|
|
8894
|
+
export type Outbound = GetDeploymentValueDeploymentsResponse200Eq$Outbound;
|
|
8895
|
+
}
|
|
8896
|
+
|
|
8897
|
+
export function getDeploymentValueDeploymentsResponse200EqToJSON(
|
|
8898
|
+
getDeploymentValueDeploymentsResponse200Eq:
|
|
8899
|
+
GetDeploymentValueDeploymentsResponse200Eq,
|
|
8900
|
+
): string {
|
|
8901
|
+
return JSON.stringify(
|
|
8902
|
+
GetDeploymentValueDeploymentsResponse200Eq$outboundSchema.parse(
|
|
8903
|
+
getDeploymentValueDeploymentsResponse200Eq,
|
|
8904
|
+
),
|
|
8905
|
+
);
|
|
8906
|
+
}
|
|
8907
|
+
|
|
8908
|
+
export function getDeploymentValueDeploymentsResponse200EqFromJSON(
|
|
8909
|
+
jsonString: string,
|
|
8910
|
+
): SafeParseResult<
|
|
8911
|
+
GetDeploymentValueDeploymentsResponse200Eq,
|
|
8912
|
+
SDKValidationError
|
|
8913
|
+
> {
|
|
8914
|
+
return safeParse(
|
|
8915
|
+
jsonString,
|
|
8916
|
+
(x) =>
|
|
8917
|
+
GetDeploymentValueDeploymentsResponse200Eq$inboundSchema.parse(
|
|
8918
|
+
JSON.parse(x),
|
|
8919
|
+
),
|
|
8920
|
+
`Failed to parse 'GetDeploymentValueDeploymentsResponse200Eq' from JSON`,
|
|
8921
|
+
);
|
|
8922
|
+
}
|
|
8923
|
+
|
|
8924
|
+
/** @internal */
|
|
8925
|
+
export const GetDeploymentValueDeployments2$inboundSchema: z.ZodType<
|
|
8926
|
+
GetDeploymentValueDeployments2,
|
|
8927
|
+
z.ZodTypeDef,
|
|
8928
|
+
unknown
|
|
8929
|
+
> = z.object({
|
|
8930
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
8931
|
+
neq: z.string().optional(),
|
|
8932
|
+
inc: z.array(z.string()).optional(),
|
|
8933
|
+
ninc: z.array(z.string()).optional(),
|
|
8934
|
+
pre: z.string().optional(),
|
|
8935
|
+
suf: z.string().optional(),
|
|
8936
|
+
re: z.string().optional(),
|
|
8937
|
+
gt: z.number().optional(),
|
|
8938
|
+
gte: z.number().optional(),
|
|
8939
|
+
lt: z.number().optional(),
|
|
8940
|
+
lte: z.number().optional(),
|
|
8941
|
+
});
|
|
8942
|
+
|
|
8943
|
+
/** @internal */
|
|
8944
|
+
export type GetDeploymentValueDeployments2$Outbound = {
|
|
8945
|
+
eq?: string | number | undefined;
|
|
8946
|
+
neq?: string | undefined;
|
|
8947
|
+
inc?: Array<string> | undefined;
|
|
8948
|
+
ninc?: Array<string> | undefined;
|
|
8949
|
+
pre?: string | undefined;
|
|
8950
|
+
suf?: string | undefined;
|
|
8951
|
+
re?: string | undefined;
|
|
8952
|
+
gt?: number | undefined;
|
|
8953
|
+
gte?: number | undefined;
|
|
8954
|
+
lt?: number | undefined;
|
|
8955
|
+
lte?: number | undefined;
|
|
8956
|
+
};
|
|
8957
|
+
|
|
8958
|
+
/** @internal */
|
|
8959
|
+
export const GetDeploymentValueDeployments2$outboundSchema: z.ZodType<
|
|
8960
|
+
GetDeploymentValueDeployments2$Outbound,
|
|
8961
|
+
z.ZodTypeDef,
|
|
8962
|
+
GetDeploymentValueDeployments2
|
|
8963
|
+
> = z.object({
|
|
8964
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
8965
|
+
neq: z.string().optional(),
|
|
8966
|
+
inc: z.array(z.string()).optional(),
|
|
8967
|
+
ninc: z.array(z.string()).optional(),
|
|
8968
|
+
pre: z.string().optional(),
|
|
8969
|
+
suf: z.string().optional(),
|
|
8970
|
+
re: z.string().optional(),
|
|
8971
|
+
gt: z.number().optional(),
|
|
8972
|
+
gte: z.number().optional(),
|
|
8973
|
+
lt: z.number().optional(),
|
|
8974
|
+
lte: z.number().optional(),
|
|
8975
|
+
});
|
|
8976
|
+
|
|
8977
|
+
/**
|
|
8978
|
+
* @internal
|
|
8979
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
8980
|
+
*/
|
|
8981
|
+
export namespace GetDeploymentValueDeployments2$ {
|
|
8982
|
+
/** @deprecated use `GetDeploymentValueDeployments2$inboundSchema` instead. */
|
|
8983
|
+
export const inboundSchema = GetDeploymentValueDeployments2$inboundSchema;
|
|
8984
|
+
/** @deprecated use `GetDeploymentValueDeployments2$outboundSchema` instead. */
|
|
8985
|
+
export const outboundSchema = GetDeploymentValueDeployments2$outboundSchema;
|
|
8986
|
+
/** @deprecated use `GetDeploymentValueDeployments2$Outbound` instead. */
|
|
8987
|
+
export type Outbound = GetDeploymentValueDeployments2$Outbound;
|
|
8988
|
+
}
|
|
8989
|
+
|
|
8990
|
+
export function getDeploymentValueDeployments2ToJSON(
|
|
8991
|
+
getDeploymentValueDeployments2: GetDeploymentValueDeployments2,
|
|
8992
|
+
): string {
|
|
8993
|
+
return JSON.stringify(
|
|
8994
|
+
GetDeploymentValueDeployments2$outboundSchema.parse(
|
|
8995
|
+
getDeploymentValueDeployments2,
|
|
8996
|
+
),
|
|
8997
|
+
);
|
|
8998
|
+
}
|
|
8999
|
+
|
|
9000
|
+
export function getDeploymentValueDeployments2FromJSON(
|
|
9001
|
+
jsonString: string,
|
|
9002
|
+
): SafeParseResult<GetDeploymentValueDeployments2, SDKValidationError> {
|
|
9003
|
+
return safeParse(
|
|
9004
|
+
jsonString,
|
|
9005
|
+
(x) => GetDeploymentValueDeployments2$inboundSchema.parse(JSON.parse(x)),
|
|
9006
|
+
`Failed to parse 'GetDeploymentValueDeployments2' from JSON`,
|
|
9007
|
+
);
|
|
9008
|
+
}
|
|
9009
|
+
|
|
9010
|
+
/** @internal */
|
|
9011
|
+
export const GetDeploymentHasValue$inboundSchema: z.ZodType<
|
|
9012
|
+
GetDeploymentHasValue,
|
|
9013
|
+
z.ZodTypeDef,
|
|
9014
|
+
unknown
|
|
9015
|
+
> = z.union([
|
|
9016
|
+
z.lazy(() => GetDeploymentValueDeployments2$inboundSchema),
|
|
9017
|
+
z.string(),
|
|
9018
|
+
]);
|
|
9019
|
+
|
|
9020
|
+
/** @internal */
|
|
9021
|
+
export type GetDeploymentHasValue$Outbound =
|
|
9022
|
+
| GetDeploymentValueDeployments2$Outbound
|
|
9023
|
+
| string;
|
|
9024
|
+
|
|
9025
|
+
/** @internal */
|
|
9026
|
+
export const GetDeploymentHasValue$outboundSchema: z.ZodType<
|
|
9027
|
+
GetDeploymentHasValue$Outbound,
|
|
9028
|
+
z.ZodTypeDef,
|
|
9029
|
+
GetDeploymentHasValue
|
|
9030
|
+
> = z.union([
|
|
9031
|
+
z.lazy(() => GetDeploymentValueDeployments2$outboundSchema),
|
|
9032
|
+
z.string(),
|
|
9033
|
+
]);
|
|
9034
|
+
|
|
9035
|
+
/**
|
|
9036
|
+
* @internal
|
|
9037
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
9038
|
+
*/
|
|
9039
|
+
export namespace GetDeploymentHasValue$ {
|
|
9040
|
+
/** @deprecated use `GetDeploymentHasValue$inboundSchema` instead. */
|
|
9041
|
+
export const inboundSchema = GetDeploymentHasValue$inboundSchema;
|
|
9042
|
+
/** @deprecated use `GetDeploymentHasValue$outboundSchema` instead. */
|
|
9043
|
+
export const outboundSchema = GetDeploymentHasValue$outboundSchema;
|
|
9044
|
+
/** @deprecated use `GetDeploymentHasValue$Outbound` instead. */
|
|
9045
|
+
export type Outbound = GetDeploymentHasValue$Outbound;
|
|
9046
|
+
}
|
|
9047
|
+
|
|
9048
|
+
export function getDeploymentHasValueToJSON(
|
|
9049
|
+
getDeploymentHasValue: GetDeploymentHasValue,
|
|
9050
|
+
): string {
|
|
9051
|
+
return JSON.stringify(
|
|
9052
|
+
GetDeploymentHasValue$outboundSchema.parse(getDeploymentHasValue),
|
|
9053
|
+
);
|
|
9054
|
+
}
|
|
9055
|
+
|
|
9056
|
+
export function getDeploymentHasValueFromJSON(
|
|
9057
|
+
jsonString: string,
|
|
9058
|
+
): SafeParseResult<GetDeploymentHasValue, SDKValidationError> {
|
|
9059
|
+
return safeParse(
|
|
9060
|
+
jsonString,
|
|
9061
|
+
(x) => GetDeploymentHasValue$inboundSchema.parse(JSON.parse(x)),
|
|
9062
|
+
`Failed to parse 'GetDeploymentHasValue' from JSON`,
|
|
9063
|
+
);
|
|
9064
|
+
}
|
|
9065
|
+
|
|
8774
9066
|
/** @internal */
|
|
8775
9067
|
export const GetDeploymentHas2$inboundSchema: z.ZodType<
|
|
8776
9068
|
GetDeploymentHas2,
|
|
@@ -8779,14 +9071,17 @@ export const GetDeploymentHas2$inboundSchema: z.ZodType<
|
|
|
8779
9071
|
> = z.object({
|
|
8780
9072
|
type: GetDeploymentHasType$inboundSchema,
|
|
8781
9073
|
key: z.string(),
|
|
8782
|
-
value: z.
|
|
9074
|
+
value: z.union([
|
|
9075
|
+
z.lazy(() => GetDeploymentValueDeployments2$inboundSchema),
|
|
9076
|
+
z.string(),
|
|
9077
|
+
]).optional(),
|
|
8783
9078
|
});
|
|
8784
9079
|
|
|
8785
9080
|
/** @internal */
|
|
8786
9081
|
export type GetDeploymentHas2$Outbound = {
|
|
8787
9082
|
type: string;
|
|
8788
9083
|
key: string;
|
|
8789
|
-
value?: string | undefined;
|
|
9084
|
+
value?: GetDeploymentValueDeployments2$Outbound | string | undefined;
|
|
8790
9085
|
};
|
|
8791
9086
|
|
|
8792
9087
|
/** @internal */
|
|
@@ -8797,7 +9092,10 @@ export const GetDeploymentHas2$outboundSchema: z.ZodType<
|
|
|
8797
9092
|
> = z.object({
|
|
8798
9093
|
type: GetDeploymentHasType$outboundSchema,
|
|
8799
9094
|
key: z.string(),
|
|
8800
|
-
value: z.
|
|
9095
|
+
value: z.union([
|
|
9096
|
+
z.lazy(() => GetDeploymentValueDeployments2$outboundSchema),
|
|
9097
|
+
z.string(),
|
|
9098
|
+
]).optional(),
|
|
8801
9099
|
});
|
|
8802
9100
|
|
|
8803
9101
|
/**
|
|
@@ -8852,6 +9150,201 @@ export namespace GetDeploymentHasDeploymentsType$ {
|
|
|
8852
9150
|
export const outboundSchema = GetDeploymentHasDeploymentsType$outboundSchema;
|
|
8853
9151
|
}
|
|
8854
9152
|
|
|
9153
|
+
/** @internal */
|
|
9154
|
+
export const GetDeploymentValueDeploymentsResponseEq$inboundSchema: z.ZodType<
|
|
9155
|
+
GetDeploymentValueDeploymentsResponseEq,
|
|
9156
|
+
z.ZodTypeDef,
|
|
9157
|
+
unknown
|
|
9158
|
+
> = z.union([z.string(), z.number()]);
|
|
9159
|
+
|
|
9160
|
+
/** @internal */
|
|
9161
|
+
export type GetDeploymentValueDeploymentsResponseEq$Outbound = string | number;
|
|
9162
|
+
|
|
9163
|
+
/** @internal */
|
|
9164
|
+
export const GetDeploymentValueDeploymentsResponseEq$outboundSchema: z.ZodType<
|
|
9165
|
+
GetDeploymentValueDeploymentsResponseEq$Outbound,
|
|
9166
|
+
z.ZodTypeDef,
|
|
9167
|
+
GetDeploymentValueDeploymentsResponseEq
|
|
9168
|
+
> = z.union([z.string(), z.number()]);
|
|
9169
|
+
|
|
9170
|
+
/**
|
|
9171
|
+
* @internal
|
|
9172
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
9173
|
+
*/
|
|
9174
|
+
export namespace GetDeploymentValueDeploymentsResponseEq$ {
|
|
9175
|
+
/** @deprecated use `GetDeploymentValueDeploymentsResponseEq$inboundSchema` instead. */
|
|
9176
|
+
export const inboundSchema =
|
|
9177
|
+
GetDeploymentValueDeploymentsResponseEq$inboundSchema;
|
|
9178
|
+
/** @deprecated use `GetDeploymentValueDeploymentsResponseEq$outboundSchema` instead. */
|
|
9179
|
+
export const outboundSchema =
|
|
9180
|
+
GetDeploymentValueDeploymentsResponseEq$outboundSchema;
|
|
9181
|
+
/** @deprecated use `GetDeploymentValueDeploymentsResponseEq$Outbound` instead. */
|
|
9182
|
+
export type Outbound = GetDeploymentValueDeploymentsResponseEq$Outbound;
|
|
9183
|
+
}
|
|
9184
|
+
|
|
9185
|
+
export function getDeploymentValueDeploymentsResponseEqToJSON(
|
|
9186
|
+
getDeploymentValueDeploymentsResponseEq:
|
|
9187
|
+
GetDeploymentValueDeploymentsResponseEq,
|
|
9188
|
+
): string {
|
|
9189
|
+
return JSON.stringify(
|
|
9190
|
+
GetDeploymentValueDeploymentsResponseEq$outboundSchema.parse(
|
|
9191
|
+
getDeploymentValueDeploymentsResponseEq,
|
|
9192
|
+
),
|
|
9193
|
+
);
|
|
9194
|
+
}
|
|
9195
|
+
|
|
9196
|
+
export function getDeploymentValueDeploymentsResponseEqFromJSON(
|
|
9197
|
+
jsonString: string,
|
|
9198
|
+
): SafeParseResult<
|
|
9199
|
+
GetDeploymentValueDeploymentsResponseEq,
|
|
9200
|
+
SDKValidationError
|
|
9201
|
+
> {
|
|
9202
|
+
return safeParse(
|
|
9203
|
+
jsonString,
|
|
9204
|
+
(x) =>
|
|
9205
|
+
GetDeploymentValueDeploymentsResponseEq$inboundSchema.parse(
|
|
9206
|
+
JSON.parse(x),
|
|
9207
|
+
),
|
|
9208
|
+
`Failed to parse 'GetDeploymentValueDeploymentsResponseEq' from JSON`,
|
|
9209
|
+
);
|
|
9210
|
+
}
|
|
9211
|
+
|
|
9212
|
+
/** @internal */
|
|
9213
|
+
export const GetDeploymentValue2$inboundSchema: z.ZodType<
|
|
9214
|
+
GetDeploymentValue2,
|
|
9215
|
+
z.ZodTypeDef,
|
|
9216
|
+
unknown
|
|
9217
|
+
> = z.object({
|
|
9218
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
9219
|
+
neq: z.string().optional(),
|
|
9220
|
+
inc: z.array(z.string()).optional(),
|
|
9221
|
+
ninc: z.array(z.string()).optional(),
|
|
9222
|
+
pre: z.string().optional(),
|
|
9223
|
+
suf: z.string().optional(),
|
|
9224
|
+
re: z.string().optional(),
|
|
9225
|
+
gt: z.number().optional(),
|
|
9226
|
+
gte: z.number().optional(),
|
|
9227
|
+
lt: z.number().optional(),
|
|
9228
|
+
lte: z.number().optional(),
|
|
9229
|
+
});
|
|
9230
|
+
|
|
9231
|
+
/** @internal */
|
|
9232
|
+
export type GetDeploymentValue2$Outbound = {
|
|
9233
|
+
eq?: string | number | undefined;
|
|
9234
|
+
neq?: string | undefined;
|
|
9235
|
+
inc?: Array<string> | undefined;
|
|
9236
|
+
ninc?: Array<string> | undefined;
|
|
9237
|
+
pre?: string | undefined;
|
|
9238
|
+
suf?: string | undefined;
|
|
9239
|
+
re?: string | undefined;
|
|
9240
|
+
gt?: number | undefined;
|
|
9241
|
+
gte?: number | undefined;
|
|
9242
|
+
lt?: number | undefined;
|
|
9243
|
+
lte?: number | undefined;
|
|
9244
|
+
};
|
|
9245
|
+
|
|
9246
|
+
/** @internal */
|
|
9247
|
+
export const GetDeploymentValue2$outboundSchema: z.ZodType<
|
|
9248
|
+
GetDeploymentValue2$Outbound,
|
|
9249
|
+
z.ZodTypeDef,
|
|
9250
|
+
GetDeploymentValue2
|
|
9251
|
+
> = z.object({
|
|
9252
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
9253
|
+
neq: z.string().optional(),
|
|
9254
|
+
inc: z.array(z.string()).optional(),
|
|
9255
|
+
ninc: z.array(z.string()).optional(),
|
|
9256
|
+
pre: z.string().optional(),
|
|
9257
|
+
suf: z.string().optional(),
|
|
9258
|
+
re: z.string().optional(),
|
|
9259
|
+
gt: z.number().optional(),
|
|
9260
|
+
gte: z.number().optional(),
|
|
9261
|
+
lt: z.number().optional(),
|
|
9262
|
+
lte: z.number().optional(),
|
|
9263
|
+
});
|
|
9264
|
+
|
|
9265
|
+
/**
|
|
9266
|
+
* @internal
|
|
9267
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
9268
|
+
*/
|
|
9269
|
+
export namespace GetDeploymentValue2$ {
|
|
9270
|
+
/** @deprecated use `GetDeploymentValue2$inboundSchema` instead. */
|
|
9271
|
+
export const inboundSchema = GetDeploymentValue2$inboundSchema;
|
|
9272
|
+
/** @deprecated use `GetDeploymentValue2$outboundSchema` instead. */
|
|
9273
|
+
export const outboundSchema = GetDeploymentValue2$outboundSchema;
|
|
9274
|
+
/** @deprecated use `GetDeploymentValue2$Outbound` instead. */
|
|
9275
|
+
export type Outbound = GetDeploymentValue2$Outbound;
|
|
9276
|
+
}
|
|
9277
|
+
|
|
9278
|
+
export function getDeploymentValue2ToJSON(
|
|
9279
|
+
getDeploymentValue2: GetDeploymentValue2,
|
|
9280
|
+
): string {
|
|
9281
|
+
return JSON.stringify(
|
|
9282
|
+
GetDeploymentValue2$outboundSchema.parse(getDeploymentValue2),
|
|
9283
|
+
);
|
|
9284
|
+
}
|
|
9285
|
+
|
|
9286
|
+
export function getDeploymentValue2FromJSON(
|
|
9287
|
+
jsonString: string,
|
|
9288
|
+
): SafeParseResult<GetDeploymentValue2, SDKValidationError> {
|
|
9289
|
+
return safeParse(
|
|
9290
|
+
jsonString,
|
|
9291
|
+
(x) => GetDeploymentValue2$inboundSchema.parse(JSON.parse(x)),
|
|
9292
|
+
`Failed to parse 'GetDeploymentValue2' from JSON`,
|
|
9293
|
+
);
|
|
9294
|
+
}
|
|
9295
|
+
|
|
9296
|
+
/** @internal */
|
|
9297
|
+
export const GetDeploymentHasDeploymentsValue$inboundSchema: z.ZodType<
|
|
9298
|
+
GetDeploymentHasDeploymentsValue,
|
|
9299
|
+
z.ZodTypeDef,
|
|
9300
|
+
unknown
|
|
9301
|
+
> = z.union([z.lazy(() => GetDeploymentValue2$inboundSchema), z.string()]);
|
|
9302
|
+
|
|
9303
|
+
/** @internal */
|
|
9304
|
+
export type GetDeploymentHasDeploymentsValue$Outbound =
|
|
9305
|
+
| GetDeploymentValue2$Outbound
|
|
9306
|
+
| string;
|
|
9307
|
+
|
|
9308
|
+
/** @internal */
|
|
9309
|
+
export const GetDeploymentHasDeploymentsValue$outboundSchema: z.ZodType<
|
|
9310
|
+
GetDeploymentHasDeploymentsValue$Outbound,
|
|
9311
|
+
z.ZodTypeDef,
|
|
9312
|
+
GetDeploymentHasDeploymentsValue
|
|
9313
|
+
> = z.union([z.lazy(() => GetDeploymentValue2$outboundSchema), z.string()]);
|
|
9314
|
+
|
|
9315
|
+
/**
|
|
9316
|
+
* @internal
|
|
9317
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
9318
|
+
*/
|
|
9319
|
+
export namespace GetDeploymentHasDeploymentsValue$ {
|
|
9320
|
+
/** @deprecated use `GetDeploymentHasDeploymentsValue$inboundSchema` instead. */
|
|
9321
|
+
export const inboundSchema = GetDeploymentHasDeploymentsValue$inboundSchema;
|
|
9322
|
+
/** @deprecated use `GetDeploymentHasDeploymentsValue$outboundSchema` instead. */
|
|
9323
|
+
export const outboundSchema = GetDeploymentHasDeploymentsValue$outboundSchema;
|
|
9324
|
+
/** @deprecated use `GetDeploymentHasDeploymentsValue$Outbound` instead. */
|
|
9325
|
+
export type Outbound = GetDeploymentHasDeploymentsValue$Outbound;
|
|
9326
|
+
}
|
|
9327
|
+
|
|
9328
|
+
export function getDeploymentHasDeploymentsValueToJSON(
|
|
9329
|
+
getDeploymentHasDeploymentsValue: GetDeploymentHasDeploymentsValue,
|
|
9330
|
+
): string {
|
|
9331
|
+
return JSON.stringify(
|
|
9332
|
+
GetDeploymentHasDeploymentsValue$outboundSchema.parse(
|
|
9333
|
+
getDeploymentHasDeploymentsValue,
|
|
9334
|
+
),
|
|
9335
|
+
);
|
|
9336
|
+
}
|
|
9337
|
+
|
|
9338
|
+
export function getDeploymentHasDeploymentsValueFromJSON(
|
|
9339
|
+
jsonString: string,
|
|
9340
|
+
): SafeParseResult<GetDeploymentHasDeploymentsValue, SDKValidationError> {
|
|
9341
|
+
return safeParse(
|
|
9342
|
+
jsonString,
|
|
9343
|
+
(x) => GetDeploymentHasDeploymentsValue$inboundSchema.parse(JSON.parse(x)),
|
|
9344
|
+
`Failed to parse 'GetDeploymentHasDeploymentsValue' from JSON`,
|
|
9345
|
+
);
|
|
9346
|
+
}
|
|
9347
|
+
|
|
8855
9348
|
/** @internal */
|
|
8856
9349
|
export const GetDeploymentHas1$inboundSchema: z.ZodType<
|
|
8857
9350
|
GetDeploymentHas1,
|
|
@@ -8859,13 +9352,13 @@ export const GetDeploymentHas1$inboundSchema: z.ZodType<
|
|
|
8859
9352
|
unknown
|
|
8860
9353
|
> = z.object({
|
|
8861
9354
|
type: GetDeploymentHasDeploymentsType$inboundSchema,
|
|
8862
|
-
value: z.string(),
|
|
9355
|
+
value: z.union([z.lazy(() => GetDeploymentValue2$inboundSchema), z.string()]),
|
|
8863
9356
|
});
|
|
8864
9357
|
|
|
8865
9358
|
/** @internal */
|
|
8866
9359
|
export type GetDeploymentHas1$Outbound = {
|
|
8867
9360
|
type: string;
|
|
8868
|
-
value: string;
|
|
9361
|
+
value: GetDeploymentValue2$Outbound | string;
|
|
8869
9362
|
};
|
|
8870
9363
|
|
|
8871
9364
|
/** @internal */
|
|
@@ -8875,7 +9368,10 @@ export const GetDeploymentHas1$outboundSchema: z.ZodType<
|
|
|
8875
9368
|
GetDeploymentHas1
|
|
8876
9369
|
> = z.object({
|
|
8877
9370
|
type: GetDeploymentHasDeploymentsType$outboundSchema,
|
|
8878
|
-
value: z.
|
|
9371
|
+
value: z.union([
|
|
9372
|
+
z.lazy(() => GetDeploymentValue2$outboundSchema),
|
|
9373
|
+
z.string(),
|
|
9374
|
+
]),
|
|
8879
9375
|
});
|
|
8880
9376
|
|
|
8881
9377
|
/**
|
|
@@ -8986,6 +9482,208 @@ export namespace GetDeploymentMissingType$ {
|
|
|
8986
9482
|
export const outboundSchema = GetDeploymentMissingType$outboundSchema;
|
|
8987
9483
|
}
|
|
8988
9484
|
|
|
9485
|
+
/** @internal */
|
|
9486
|
+
export const GetDeploymentValueDeploymentsEq$inboundSchema: z.ZodType<
|
|
9487
|
+
GetDeploymentValueDeploymentsEq,
|
|
9488
|
+
z.ZodTypeDef,
|
|
9489
|
+
unknown
|
|
9490
|
+
> = z.union([z.string(), z.number()]);
|
|
9491
|
+
|
|
9492
|
+
/** @internal */
|
|
9493
|
+
export type GetDeploymentValueDeploymentsEq$Outbound = string | number;
|
|
9494
|
+
|
|
9495
|
+
/** @internal */
|
|
9496
|
+
export const GetDeploymentValueDeploymentsEq$outboundSchema: z.ZodType<
|
|
9497
|
+
GetDeploymentValueDeploymentsEq$Outbound,
|
|
9498
|
+
z.ZodTypeDef,
|
|
9499
|
+
GetDeploymentValueDeploymentsEq
|
|
9500
|
+
> = z.union([z.string(), z.number()]);
|
|
9501
|
+
|
|
9502
|
+
/**
|
|
9503
|
+
* @internal
|
|
9504
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
9505
|
+
*/
|
|
9506
|
+
export namespace GetDeploymentValueDeploymentsEq$ {
|
|
9507
|
+
/** @deprecated use `GetDeploymentValueDeploymentsEq$inboundSchema` instead. */
|
|
9508
|
+
export const inboundSchema = GetDeploymentValueDeploymentsEq$inboundSchema;
|
|
9509
|
+
/** @deprecated use `GetDeploymentValueDeploymentsEq$outboundSchema` instead. */
|
|
9510
|
+
export const outboundSchema = GetDeploymentValueDeploymentsEq$outboundSchema;
|
|
9511
|
+
/** @deprecated use `GetDeploymentValueDeploymentsEq$Outbound` instead. */
|
|
9512
|
+
export type Outbound = GetDeploymentValueDeploymentsEq$Outbound;
|
|
9513
|
+
}
|
|
9514
|
+
|
|
9515
|
+
export function getDeploymentValueDeploymentsEqToJSON(
|
|
9516
|
+
getDeploymentValueDeploymentsEq: GetDeploymentValueDeploymentsEq,
|
|
9517
|
+
): string {
|
|
9518
|
+
return JSON.stringify(
|
|
9519
|
+
GetDeploymentValueDeploymentsEq$outboundSchema.parse(
|
|
9520
|
+
getDeploymentValueDeploymentsEq,
|
|
9521
|
+
),
|
|
9522
|
+
);
|
|
9523
|
+
}
|
|
9524
|
+
|
|
9525
|
+
export function getDeploymentValueDeploymentsEqFromJSON(
|
|
9526
|
+
jsonString: string,
|
|
9527
|
+
): SafeParseResult<GetDeploymentValueDeploymentsEq, SDKValidationError> {
|
|
9528
|
+
return safeParse(
|
|
9529
|
+
jsonString,
|
|
9530
|
+
(x) => GetDeploymentValueDeploymentsEq$inboundSchema.parse(JSON.parse(x)),
|
|
9531
|
+
`Failed to parse 'GetDeploymentValueDeploymentsEq' from JSON`,
|
|
9532
|
+
);
|
|
9533
|
+
}
|
|
9534
|
+
|
|
9535
|
+
/** @internal */
|
|
9536
|
+
export const GetDeploymentValueDeploymentsResponse2002$inboundSchema: z.ZodType<
|
|
9537
|
+
GetDeploymentValueDeploymentsResponse2002,
|
|
9538
|
+
z.ZodTypeDef,
|
|
9539
|
+
unknown
|
|
9540
|
+
> = z.object({
|
|
9541
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
9542
|
+
neq: z.string().optional(),
|
|
9543
|
+
inc: z.array(z.string()).optional(),
|
|
9544
|
+
ninc: z.array(z.string()).optional(),
|
|
9545
|
+
pre: z.string().optional(),
|
|
9546
|
+
suf: z.string().optional(),
|
|
9547
|
+
re: z.string().optional(),
|
|
9548
|
+
gt: z.number().optional(),
|
|
9549
|
+
gte: z.number().optional(),
|
|
9550
|
+
lt: z.number().optional(),
|
|
9551
|
+
lte: z.number().optional(),
|
|
9552
|
+
});
|
|
9553
|
+
|
|
9554
|
+
/** @internal */
|
|
9555
|
+
export type GetDeploymentValueDeploymentsResponse2002$Outbound = {
|
|
9556
|
+
eq?: string | number | undefined;
|
|
9557
|
+
neq?: string | undefined;
|
|
9558
|
+
inc?: Array<string> | undefined;
|
|
9559
|
+
ninc?: Array<string> | undefined;
|
|
9560
|
+
pre?: string | undefined;
|
|
9561
|
+
suf?: string | undefined;
|
|
9562
|
+
re?: string | undefined;
|
|
9563
|
+
gt?: number | undefined;
|
|
9564
|
+
gte?: number | undefined;
|
|
9565
|
+
lt?: number | undefined;
|
|
9566
|
+
lte?: number | undefined;
|
|
9567
|
+
};
|
|
9568
|
+
|
|
9569
|
+
/** @internal */
|
|
9570
|
+
export const GetDeploymentValueDeploymentsResponse2002$outboundSchema:
|
|
9571
|
+
z.ZodType<
|
|
9572
|
+
GetDeploymentValueDeploymentsResponse2002$Outbound,
|
|
9573
|
+
z.ZodTypeDef,
|
|
9574
|
+
GetDeploymentValueDeploymentsResponse2002
|
|
9575
|
+
> = z.object({
|
|
9576
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
9577
|
+
neq: z.string().optional(),
|
|
9578
|
+
inc: z.array(z.string()).optional(),
|
|
9579
|
+
ninc: z.array(z.string()).optional(),
|
|
9580
|
+
pre: z.string().optional(),
|
|
9581
|
+
suf: z.string().optional(),
|
|
9582
|
+
re: z.string().optional(),
|
|
9583
|
+
gt: z.number().optional(),
|
|
9584
|
+
gte: z.number().optional(),
|
|
9585
|
+
lt: z.number().optional(),
|
|
9586
|
+
lte: z.number().optional(),
|
|
9587
|
+
});
|
|
9588
|
+
|
|
9589
|
+
/**
|
|
9590
|
+
* @internal
|
|
9591
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
9592
|
+
*/
|
|
9593
|
+
export namespace GetDeploymentValueDeploymentsResponse2002$ {
|
|
9594
|
+
/** @deprecated use `GetDeploymentValueDeploymentsResponse2002$inboundSchema` instead. */
|
|
9595
|
+
export const inboundSchema =
|
|
9596
|
+
GetDeploymentValueDeploymentsResponse2002$inboundSchema;
|
|
9597
|
+
/** @deprecated use `GetDeploymentValueDeploymentsResponse2002$outboundSchema` instead. */
|
|
9598
|
+
export const outboundSchema =
|
|
9599
|
+
GetDeploymentValueDeploymentsResponse2002$outboundSchema;
|
|
9600
|
+
/** @deprecated use `GetDeploymentValueDeploymentsResponse2002$Outbound` instead. */
|
|
9601
|
+
export type Outbound = GetDeploymentValueDeploymentsResponse2002$Outbound;
|
|
9602
|
+
}
|
|
9603
|
+
|
|
9604
|
+
export function getDeploymentValueDeploymentsResponse2002ToJSON(
|
|
9605
|
+
getDeploymentValueDeploymentsResponse2002:
|
|
9606
|
+
GetDeploymentValueDeploymentsResponse2002,
|
|
9607
|
+
): string {
|
|
9608
|
+
return JSON.stringify(
|
|
9609
|
+
GetDeploymentValueDeploymentsResponse2002$outboundSchema.parse(
|
|
9610
|
+
getDeploymentValueDeploymentsResponse2002,
|
|
9611
|
+
),
|
|
9612
|
+
);
|
|
9613
|
+
}
|
|
9614
|
+
|
|
9615
|
+
export function getDeploymentValueDeploymentsResponse2002FromJSON(
|
|
9616
|
+
jsonString: string,
|
|
9617
|
+
): SafeParseResult<
|
|
9618
|
+
GetDeploymentValueDeploymentsResponse2002,
|
|
9619
|
+
SDKValidationError
|
|
9620
|
+
> {
|
|
9621
|
+
return safeParse(
|
|
9622
|
+
jsonString,
|
|
9623
|
+
(x) =>
|
|
9624
|
+
GetDeploymentValueDeploymentsResponse2002$inboundSchema.parse(
|
|
9625
|
+
JSON.parse(x),
|
|
9626
|
+
),
|
|
9627
|
+
`Failed to parse 'GetDeploymentValueDeploymentsResponse2002' from JSON`,
|
|
9628
|
+
);
|
|
9629
|
+
}
|
|
9630
|
+
|
|
9631
|
+
/** @internal */
|
|
9632
|
+
export const GetDeploymentMissingValue$inboundSchema: z.ZodType<
|
|
9633
|
+
GetDeploymentMissingValue,
|
|
9634
|
+
z.ZodTypeDef,
|
|
9635
|
+
unknown
|
|
9636
|
+
> = z.union([
|
|
9637
|
+
z.lazy(() => GetDeploymentValueDeploymentsResponse2002$inboundSchema),
|
|
9638
|
+
z.string(),
|
|
9639
|
+
]);
|
|
9640
|
+
|
|
9641
|
+
/** @internal */
|
|
9642
|
+
export type GetDeploymentMissingValue$Outbound =
|
|
9643
|
+
| GetDeploymentValueDeploymentsResponse2002$Outbound
|
|
9644
|
+
| string;
|
|
9645
|
+
|
|
9646
|
+
/** @internal */
|
|
9647
|
+
export const GetDeploymentMissingValue$outboundSchema: z.ZodType<
|
|
9648
|
+
GetDeploymentMissingValue$Outbound,
|
|
9649
|
+
z.ZodTypeDef,
|
|
9650
|
+
GetDeploymentMissingValue
|
|
9651
|
+
> = z.union([
|
|
9652
|
+
z.lazy(() => GetDeploymentValueDeploymentsResponse2002$outboundSchema),
|
|
9653
|
+
z.string(),
|
|
9654
|
+
]);
|
|
9655
|
+
|
|
9656
|
+
/**
|
|
9657
|
+
* @internal
|
|
9658
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
9659
|
+
*/
|
|
9660
|
+
export namespace GetDeploymentMissingValue$ {
|
|
9661
|
+
/** @deprecated use `GetDeploymentMissingValue$inboundSchema` instead. */
|
|
9662
|
+
export const inboundSchema = GetDeploymentMissingValue$inboundSchema;
|
|
9663
|
+
/** @deprecated use `GetDeploymentMissingValue$outboundSchema` instead. */
|
|
9664
|
+
export const outboundSchema = GetDeploymentMissingValue$outboundSchema;
|
|
9665
|
+
/** @deprecated use `GetDeploymentMissingValue$Outbound` instead. */
|
|
9666
|
+
export type Outbound = GetDeploymentMissingValue$Outbound;
|
|
9667
|
+
}
|
|
9668
|
+
|
|
9669
|
+
export function getDeploymentMissingValueToJSON(
|
|
9670
|
+
getDeploymentMissingValue: GetDeploymentMissingValue,
|
|
9671
|
+
): string {
|
|
9672
|
+
return JSON.stringify(
|
|
9673
|
+
GetDeploymentMissingValue$outboundSchema.parse(getDeploymentMissingValue),
|
|
9674
|
+
);
|
|
9675
|
+
}
|
|
9676
|
+
|
|
9677
|
+
export function getDeploymentMissingValueFromJSON(
|
|
9678
|
+
jsonString: string,
|
|
9679
|
+
): SafeParseResult<GetDeploymentMissingValue, SDKValidationError> {
|
|
9680
|
+
return safeParse(
|
|
9681
|
+
jsonString,
|
|
9682
|
+
(x) => GetDeploymentMissingValue$inboundSchema.parse(JSON.parse(x)),
|
|
9683
|
+
`Failed to parse 'GetDeploymentMissingValue' from JSON`,
|
|
9684
|
+
);
|
|
9685
|
+
}
|
|
9686
|
+
|
|
8989
9687
|
/** @internal */
|
|
8990
9688
|
export const GetDeploymentMissing2$inboundSchema: z.ZodType<
|
|
8991
9689
|
GetDeploymentMissing2,
|
|
@@ -8994,14 +9692,20 @@ export const GetDeploymentMissing2$inboundSchema: z.ZodType<
|
|
|
8994
9692
|
> = z.object({
|
|
8995
9693
|
type: GetDeploymentMissingType$inboundSchema,
|
|
8996
9694
|
key: z.string(),
|
|
8997
|
-
value: z.
|
|
9695
|
+
value: z.union([
|
|
9696
|
+
z.lazy(() => GetDeploymentValueDeploymentsResponse2002$inboundSchema),
|
|
9697
|
+
z.string(),
|
|
9698
|
+
]).optional(),
|
|
8998
9699
|
});
|
|
8999
9700
|
|
|
9000
9701
|
/** @internal */
|
|
9001
9702
|
export type GetDeploymentMissing2$Outbound = {
|
|
9002
9703
|
type: string;
|
|
9003
9704
|
key: string;
|
|
9004
|
-
value?:
|
|
9705
|
+
value?:
|
|
9706
|
+
| GetDeploymentValueDeploymentsResponse2002$Outbound
|
|
9707
|
+
| string
|
|
9708
|
+
| undefined;
|
|
9005
9709
|
};
|
|
9006
9710
|
|
|
9007
9711
|
/** @internal */
|
|
@@ -9012,7 +9716,10 @@ export const GetDeploymentMissing2$outboundSchema: z.ZodType<
|
|
|
9012
9716
|
> = z.object({
|
|
9013
9717
|
type: GetDeploymentMissingType$outboundSchema,
|
|
9014
9718
|
key: z.string(),
|
|
9015
|
-
value: z.
|
|
9719
|
+
value: z.union([
|
|
9720
|
+
z.lazy(() => GetDeploymentValueDeploymentsResponse2002$outboundSchema),
|
|
9721
|
+
z.string(),
|
|
9722
|
+
]).optional(),
|
|
9016
9723
|
});
|
|
9017
9724
|
|
|
9018
9725
|
/**
|
|
@@ -9069,6 +9776,205 @@ export namespace GetDeploymentMissingDeploymentsType$ {
|
|
|
9069
9776
|
GetDeploymentMissingDeploymentsType$outboundSchema;
|
|
9070
9777
|
}
|
|
9071
9778
|
|
|
9779
|
+
/** @internal */
|
|
9780
|
+
export const GetDeploymentValueEq$inboundSchema: z.ZodType<
|
|
9781
|
+
GetDeploymentValueEq,
|
|
9782
|
+
z.ZodTypeDef,
|
|
9783
|
+
unknown
|
|
9784
|
+
> = z.union([z.string(), z.number()]);
|
|
9785
|
+
|
|
9786
|
+
/** @internal */
|
|
9787
|
+
export type GetDeploymentValueEq$Outbound = string | number;
|
|
9788
|
+
|
|
9789
|
+
/** @internal */
|
|
9790
|
+
export const GetDeploymentValueEq$outboundSchema: z.ZodType<
|
|
9791
|
+
GetDeploymentValueEq$Outbound,
|
|
9792
|
+
z.ZodTypeDef,
|
|
9793
|
+
GetDeploymentValueEq
|
|
9794
|
+
> = z.union([z.string(), z.number()]);
|
|
9795
|
+
|
|
9796
|
+
/**
|
|
9797
|
+
* @internal
|
|
9798
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
9799
|
+
*/
|
|
9800
|
+
export namespace GetDeploymentValueEq$ {
|
|
9801
|
+
/** @deprecated use `GetDeploymentValueEq$inboundSchema` instead. */
|
|
9802
|
+
export const inboundSchema = GetDeploymentValueEq$inboundSchema;
|
|
9803
|
+
/** @deprecated use `GetDeploymentValueEq$outboundSchema` instead. */
|
|
9804
|
+
export const outboundSchema = GetDeploymentValueEq$outboundSchema;
|
|
9805
|
+
/** @deprecated use `GetDeploymentValueEq$Outbound` instead. */
|
|
9806
|
+
export type Outbound = GetDeploymentValueEq$Outbound;
|
|
9807
|
+
}
|
|
9808
|
+
|
|
9809
|
+
export function getDeploymentValueEqToJSON(
|
|
9810
|
+
getDeploymentValueEq: GetDeploymentValueEq,
|
|
9811
|
+
): string {
|
|
9812
|
+
return JSON.stringify(
|
|
9813
|
+
GetDeploymentValueEq$outboundSchema.parse(getDeploymentValueEq),
|
|
9814
|
+
);
|
|
9815
|
+
}
|
|
9816
|
+
|
|
9817
|
+
export function getDeploymentValueEqFromJSON(
|
|
9818
|
+
jsonString: string,
|
|
9819
|
+
): SafeParseResult<GetDeploymentValueEq, SDKValidationError> {
|
|
9820
|
+
return safeParse(
|
|
9821
|
+
jsonString,
|
|
9822
|
+
(x) => GetDeploymentValueEq$inboundSchema.parse(JSON.parse(x)),
|
|
9823
|
+
`Failed to parse 'GetDeploymentValueEq' from JSON`,
|
|
9824
|
+
);
|
|
9825
|
+
}
|
|
9826
|
+
|
|
9827
|
+
/** @internal */
|
|
9828
|
+
export const GetDeploymentValueDeploymentsResponse2$inboundSchema: z.ZodType<
|
|
9829
|
+
GetDeploymentValueDeploymentsResponse2,
|
|
9830
|
+
z.ZodTypeDef,
|
|
9831
|
+
unknown
|
|
9832
|
+
> = z.object({
|
|
9833
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
9834
|
+
neq: z.string().optional(),
|
|
9835
|
+
inc: z.array(z.string()).optional(),
|
|
9836
|
+
ninc: z.array(z.string()).optional(),
|
|
9837
|
+
pre: z.string().optional(),
|
|
9838
|
+
suf: z.string().optional(),
|
|
9839
|
+
re: z.string().optional(),
|
|
9840
|
+
gt: z.number().optional(),
|
|
9841
|
+
gte: z.number().optional(),
|
|
9842
|
+
lt: z.number().optional(),
|
|
9843
|
+
lte: z.number().optional(),
|
|
9844
|
+
});
|
|
9845
|
+
|
|
9846
|
+
/** @internal */
|
|
9847
|
+
export type GetDeploymentValueDeploymentsResponse2$Outbound = {
|
|
9848
|
+
eq?: string | number | undefined;
|
|
9849
|
+
neq?: string | undefined;
|
|
9850
|
+
inc?: Array<string> | undefined;
|
|
9851
|
+
ninc?: Array<string> | undefined;
|
|
9852
|
+
pre?: string | undefined;
|
|
9853
|
+
suf?: string | undefined;
|
|
9854
|
+
re?: string | undefined;
|
|
9855
|
+
gt?: number | undefined;
|
|
9856
|
+
gte?: number | undefined;
|
|
9857
|
+
lt?: number | undefined;
|
|
9858
|
+
lte?: number | undefined;
|
|
9859
|
+
};
|
|
9860
|
+
|
|
9861
|
+
/** @internal */
|
|
9862
|
+
export const GetDeploymentValueDeploymentsResponse2$outboundSchema: z.ZodType<
|
|
9863
|
+
GetDeploymentValueDeploymentsResponse2$Outbound,
|
|
9864
|
+
z.ZodTypeDef,
|
|
9865
|
+
GetDeploymentValueDeploymentsResponse2
|
|
9866
|
+
> = z.object({
|
|
9867
|
+
eq: z.union([z.string(), z.number()]).optional(),
|
|
9868
|
+
neq: z.string().optional(),
|
|
9869
|
+
inc: z.array(z.string()).optional(),
|
|
9870
|
+
ninc: z.array(z.string()).optional(),
|
|
9871
|
+
pre: z.string().optional(),
|
|
9872
|
+
suf: z.string().optional(),
|
|
9873
|
+
re: z.string().optional(),
|
|
9874
|
+
gt: z.number().optional(),
|
|
9875
|
+
gte: z.number().optional(),
|
|
9876
|
+
lt: z.number().optional(),
|
|
9877
|
+
lte: z.number().optional(),
|
|
9878
|
+
});
|
|
9879
|
+
|
|
9880
|
+
/**
|
|
9881
|
+
* @internal
|
|
9882
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
9883
|
+
*/
|
|
9884
|
+
export namespace GetDeploymentValueDeploymentsResponse2$ {
|
|
9885
|
+
/** @deprecated use `GetDeploymentValueDeploymentsResponse2$inboundSchema` instead. */
|
|
9886
|
+
export const inboundSchema =
|
|
9887
|
+
GetDeploymentValueDeploymentsResponse2$inboundSchema;
|
|
9888
|
+
/** @deprecated use `GetDeploymentValueDeploymentsResponse2$outboundSchema` instead. */
|
|
9889
|
+
export const outboundSchema =
|
|
9890
|
+
GetDeploymentValueDeploymentsResponse2$outboundSchema;
|
|
9891
|
+
/** @deprecated use `GetDeploymentValueDeploymentsResponse2$Outbound` instead. */
|
|
9892
|
+
export type Outbound = GetDeploymentValueDeploymentsResponse2$Outbound;
|
|
9893
|
+
}
|
|
9894
|
+
|
|
9895
|
+
export function getDeploymentValueDeploymentsResponse2ToJSON(
|
|
9896
|
+
getDeploymentValueDeploymentsResponse2:
|
|
9897
|
+
GetDeploymentValueDeploymentsResponse2,
|
|
9898
|
+
): string {
|
|
9899
|
+
return JSON.stringify(
|
|
9900
|
+
GetDeploymentValueDeploymentsResponse2$outboundSchema.parse(
|
|
9901
|
+
getDeploymentValueDeploymentsResponse2,
|
|
9902
|
+
),
|
|
9903
|
+
);
|
|
9904
|
+
}
|
|
9905
|
+
|
|
9906
|
+
export function getDeploymentValueDeploymentsResponse2FromJSON(
|
|
9907
|
+
jsonString: string,
|
|
9908
|
+
): SafeParseResult<GetDeploymentValueDeploymentsResponse2, SDKValidationError> {
|
|
9909
|
+
return safeParse(
|
|
9910
|
+
jsonString,
|
|
9911
|
+
(x) =>
|
|
9912
|
+
GetDeploymentValueDeploymentsResponse2$inboundSchema.parse(JSON.parse(x)),
|
|
9913
|
+
`Failed to parse 'GetDeploymentValueDeploymentsResponse2' from JSON`,
|
|
9914
|
+
);
|
|
9915
|
+
}
|
|
9916
|
+
|
|
9917
|
+
/** @internal */
|
|
9918
|
+
export const GetDeploymentMissingDeploymentsValue$inboundSchema: z.ZodType<
|
|
9919
|
+
GetDeploymentMissingDeploymentsValue,
|
|
9920
|
+
z.ZodTypeDef,
|
|
9921
|
+
unknown
|
|
9922
|
+
> = z.union([
|
|
9923
|
+
z.lazy(() => GetDeploymentValueDeploymentsResponse2$inboundSchema),
|
|
9924
|
+
z.string(),
|
|
9925
|
+
]);
|
|
9926
|
+
|
|
9927
|
+
/** @internal */
|
|
9928
|
+
export type GetDeploymentMissingDeploymentsValue$Outbound =
|
|
9929
|
+
| GetDeploymentValueDeploymentsResponse2$Outbound
|
|
9930
|
+
| string;
|
|
9931
|
+
|
|
9932
|
+
/** @internal */
|
|
9933
|
+
export const GetDeploymentMissingDeploymentsValue$outboundSchema: z.ZodType<
|
|
9934
|
+
GetDeploymentMissingDeploymentsValue$Outbound,
|
|
9935
|
+
z.ZodTypeDef,
|
|
9936
|
+
GetDeploymentMissingDeploymentsValue
|
|
9937
|
+
> = z.union([
|
|
9938
|
+
z.lazy(() => GetDeploymentValueDeploymentsResponse2$outboundSchema),
|
|
9939
|
+
z.string(),
|
|
9940
|
+
]);
|
|
9941
|
+
|
|
9942
|
+
/**
|
|
9943
|
+
* @internal
|
|
9944
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
9945
|
+
*/
|
|
9946
|
+
export namespace GetDeploymentMissingDeploymentsValue$ {
|
|
9947
|
+
/** @deprecated use `GetDeploymentMissingDeploymentsValue$inboundSchema` instead. */
|
|
9948
|
+
export const inboundSchema =
|
|
9949
|
+
GetDeploymentMissingDeploymentsValue$inboundSchema;
|
|
9950
|
+
/** @deprecated use `GetDeploymentMissingDeploymentsValue$outboundSchema` instead. */
|
|
9951
|
+
export const outboundSchema =
|
|
9952
|
+
GetDeploymentMissingDeploymentsValue$outboundSchema;
|
|
9953
|
+
/** @deprecated use `GetDeploymentMissingDeploymentsValue$Outbound` instead. */
|
|
9954
|
+
export type Outbound = GetDeploymentMissingDeploymentsValue$Outbound;
|
|
9955
|
+
}
|
|
9956
|
+
|
|
9957
|
+
export function getDeploymentMissingDeploymentsValueToJSON(
|
|
9958
|
+
getDeploymentMissingDeploymentsValue: GetDeploymentMissingDeploymentsValue,
|
|
9959
|
+
): string {
|
|
9960
|
+
return JSON.stringify(
|
|
9961
|
+
GetDeploymentMissingDeploymentsValue$outboundSchema.parse(
|
|
9962
|
+
getDeploymentMissingDeploymentsValue,
|
|
9963
|
+
),
|
|
9964
|
+
);
|
|
9965
|
+
}
|
|
9966
|
+
|
|
9967
|
+
export function getDeploymentMissingDeploymentsValueFromJSON(
|
|
9968
|
+
jsonString: string,
|
|
9969
|
+
): SafeParseResult<GetDeploymentMissingDeploymentsValue, SDKValidationError> {
|
|
9970
|
+
return safeParse(
|
|
9971
|
+
jsonString,
|
|
9972
|
+
(x) =>
|
|
9973
|
+
GetDeploymentMissingDeploymentsValue$inboundSchema.parse(JSON.parse(x)),
|
|
9974
|
+
`Failed to parse 'GetDeploymentMissingDeploymentsValue' from JSON`,
|
|
9975
|
+
);
|
|
9976
|
+
}
|
|
9977
|
+
|
|
9072
9978
|
/** @internal */
|
|
9073
9979
|
export const GetDeploymentMissing1$inboundSchema: z.ZodType<
|
|
9074
9980
|
GetDeploymentMissing1,
|
|
@@ -9076,13 +9982,16 @@ export const GetDeploymentMissing1$inboundSchema: z.ZodType<
|
|
|
9076
9982
|
unknown
|
|
9077
9983
|
> = z.object({
|
|
9078
9984
|
type: GetDeploymentMissingDeploymentsType$inboundSchema,
|
|
9079
|
-
value: z.
|
|
9985
|
+
value: z.union([
|
|
9986
|
+
z.lazy(() => GetDeploymentValueDeploymentsResponse2$inboundSchema),
|
|
9987
|
+
z.string(),
|
|
9988
|
+
]),
|
|
9080
9989
|
});
|
|
9081
9990
|
|
|
9082
9991
|
/** @internal */
|
|
9083
9992
|
export type GetDeploymentMissing1$Outbound = {
|
|
9084
9993
|
type: string;
|
|
9085
|
-
value: string;
|
|
9994
|
+
value: GetDeploymentValueDeploymentsResponse2$Outbound | string;
|
|
9086
9995
|
};
|
|
9087
9996
|
|
|
9088
9997
|
/** @internal */
|
|
@@ -9092,7 +10001,10 @@ export const GetDeploymentMissing1$outboundSchema: z.ZodType<
|
|
|
9092
10001
|
GetDeploymentMissing1
|
|
9093
10002
|
> = z.object({
|
|
9094
10003
|
type: GetDeploymentMissingDeploymentsType$outboundSchema,
|
|
9095
|
-
value: z.
|
|
10004
|
+
value: z.union([
|
|
10005
|
+
z.lazy(() => GetDeploymentValueDeploymentsResponse2$outboundSchema),
|
|
10006
|
+
z.string(),
|
|
10007
|
+
]),
|
|
9096
10008
|
});
|
|
9097
10009
|
|
|
9098
10010
|
/**
|
|
@@ -9182,6 +10094,83 @@ export function getDeploymentRoutesMissingFromJSON(
|
|
|
9182
10094
|
);
|
|
9183
10095
|
}
|
|
9184
10096
|
|
|
10097
|
+
/** @internal */
|
|
10098
|
+
export const GetDeploymentRoutesAction$inboundSchema: z.ZodNativeEnum<
|
|
10099
|
+
typeof GetDeploymentRoutesAction
|
|
10100
|
+
> = z.nativeEnum(GetDeploymentRoutesAction);
|
|
10101
|
+
|
|
10102
|
+
/** @internal */
|
|
10103
|
+
export const GetDeploymentRoutesAction$outboundSchema: z.ZodNativeEnum<
|
|
10104
|
+
typeof GetDeploymentRoutesAction
|
|
10105
|
+
> = GetDeploymentRoutesAction$inboundSchema;
|
|
10106
|
+
|
|
10107
|
+
/**
|
|
10108
|
+
* @internal
|
|
10109
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
10110
|
+
*/
|
|
10111
|
+
export namespace GetDeploymentRoutesAction$ {
|
|
10112
|
+
/** @deprecated use `GetDeploymentRoutesAction$inboundSchema` instead. */
|
|
10113
|
+
export const inboundSchema = GetDeploymentRoutesAction$inboundSchema;
|
|
10114
|
+
/** @deprecated use `GetDeploymentRoutesAction$outboundSchema` instead. */
|
|
10115
|
+
export const outboundSchema = GetDeploymentRoutesAction$outboundSchema;
|
|
10116
|
+
}
|
|
10117
|
+
|
|
10118
|
+
/** @internal */
|
|
10119
|
+
export const GetDeploymentRoutesMitigate$inboundSchema: z.ZodType<
|
|
10120
|
+
GetDeploymentRoutesMitigate,
|
|
10121
|
+
z.ZodTypeDef,
|
|
10122
|
+
unknown
|
|
10123
|
+
> = z.object({
|
|
10124
|
+
action: GetDeploymentRoutesAction$inboundSchema,
|
|
10125
|
+
});
|
|
10126
|
+
|
|
10127
|
+
/** @internal */
|
|
10128
|
+
export type GetDeploymentRoutesMitigate$Outbound = {
|
|
10129
|
+
action: string;
|
|
10130
|
+
};
|
|
10131
|
+
|
|
10132
|
+
/** @internal */
|
|
10133
|
+
export const GetDeploymentRoutesMitigate$outboundSchema: z.ZodType<
|
|
10134
|
+
GetDeploymentRoutesMitigate$Outbound,
|
|
10135
|
+
z.ZodTypeDef,
|
|
10136
|
+
GetDeploymentRoutesMitigate
|
|
10137
|
+
> = z.object({
|
|
10138
|
+
action: GetDeploymentRoutesAction$outboundSchema,
|
|
10139
|
+
});
|
|
10140
|
+
|
|
10141
|
+
/**
|
|
10142
|
+
* @internal
|
|
10143
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
10144
|
+
*/
|
|
10145
|
+
export namespace GetDeploymentRoutesMitigate$ {
|
|
10146
|
+
/** @deprecated use `GetDeploymentRoutesMitigate$inboundSchema` instead. */
|
|
10147
|
+
export const inboundSchema = GetDeploymentRoutesMitigate$inboundSchema;
|
|
10148
|
+
/** @deprecated use `GetDeploymentRoutesMitigate$outboundSchema` instead. */
|
|
10149
|
+
export const outboundSchema = GetDeploymentRoutesMitigate$outboundSchema;
|
|
10150
|
+
/** @deprecated use `GetDeploymentRoutesMitigate$Outbound` instead. */
|
|
10151
|
+
export type Outbound = GetDeploymentRoutesMitigate$Outbound;
|
|
10152
|
+
}
|
|
10153
|
+
|
|
10154
|
+
export function getDeploymentRoutesMitigateToJSON(
|
|
10155
|
+
getDeploymentRoutesMitigate: GetDeploymentRoutesMitigate,
|
|
10156
|
+
): string {
|
|
10157
|
+
return JSON.stringify(
|
|
10158
|
+
GetDeploymentRoutesMitigate$outboundSchema.parse(
|
|
10159
|
+
getDeploymentRoutesMitigate,
|
|
10160
|
+
),
|
|
10161
|
+
);
|
|
10162
|
+
}
|
|
10163
|
+
|
|
10164
|
+
export function getDeploymentRoutesMitigateFromJSON(
|
|
10165
|
+
jsonString: string,
|
|
10166
|
+
): SafeParseResult<GetDeploymentRoutesMitigate, SDKValidationError> {
|
|
10167
|
+
return safeParse(
|
|
10168
|
+
jsonString,
|
|
10169
|
+
(x) => GetDeploymentRoutesMitigate$inboundSchema.parse(JSON.parse(x)),
|
|
10170
|
+
`Failed to parse 'GetDeploymentRoutesMitigate' from JSON`,
|
|
10171
|
+
);
|
|
10172
|
+
}
|
|
10173
|
+
|
|
9185
10174
|
/** @internal */
|
|
9186
10175
|
export const GetDeploymentRoutesLocale$inboundSchema: z.ZodType<
|
|
9187
10176
|
GetDeploymentRoutesLocale,
|
|
@@ -9267,6 +10256,7 @@ export const GetDeploymentRoutes1$inboundSchema: z.ZodType<
|
|
|
9267
10256
|
z.lazy(() => GetDeploymentMissing2$inboundSchema),
|
|
9268
10257
|
]),
|
|
9269
10258
|
).optional(),
|
|
10259
|
+
mitigate: z.lazy(() => GetDeploymentRoutesMitigate$inboundSchema).optional(),
|
|
9270
10260
|
locale: z.lazy(() => GetDeploymentRoutesLocale$inboundSchema).optional(),
|
|
9271
10261
|
middlewarePath: z.string().optional(),
|
|
9272
10262
|
middlewareRawSrc: z.array(z.string()).optional(),
|
|
@@ -9291,6 +10281,7 @@ export type GetDeploymentRoutes1$Outbound = {
|
|
|
9291
10281
|
missing?:
|
|
9292
10282
|
| Array<GetDeploymentMissing1$Outbound | GetDeploymentMissing2$Outbound>
|
|
9293
10283
|
| undefined;
|
|
10284
|
+
mitigate?: GetDeploymentRoutesMitigate$Outbound | undefined;
|
|
9294
10285
|
locale?: GetDeploymentRoutesLocale$Outbound | undefined;
|
|
9295
10286
|
middlewarePath?: string | undefined;
|
|
9296
10287
|
middlewareRawSrc?: Array<string> | undefined;
|
|
@@ -9325,6 +10316,7 @@ export const GetDeploymentRoutes1$outboundSchema: z.ZodType<
|
|
|
9325
10316
|
z.lazy(() => GetDeploymentMissing2$outboundSchema),
|
|
9326
10317
|
]),
|
|
9327
10318
|
).optional(),
|
|
10319
|
+
mitigate: z.lazy(() => GetDeploymentRoutesMitigate$outboundSchema).optional(),
|
|
9328
10320
|
locale: z.lazy(() => GetDeploymentRoutesLocale$outboundSchema).optional(),
|
|
9329
10321
|
middlewarePath: z.string().optional(),
|
|
9330
10322
|
middlewareRawSrc: z.array(z.string()).optional(),
|
|
@@ -10143,6 +11135,7 @@ export const GetDeploymentMicrofrontendsApplications$inboundSchema: z.ZodType<
|
|
|
10143
11135
|
z.ZodTypeDef,
|
|
10144
11136
|
unknown
|
|
10145
11137
|
> = z.object({
|
|
11138
|
+
isDefaultApp: z.boolean().optional(),
|
|
10146
11139
|
productionHost: z.string(),
|
|
10147
11140
|
deploymentAlias: z.string().optional(),
|
|
10148
11141
|
deploymentHost: z.string().optional(),
|
|
@@ -10150,6 +11143,7 @@ export const GetDeploymentMicrofrontendsApplications$inboundSchema: z.ZodType<
|
|
|
10150
11143
|
|
|
10151
11144
|
/** @internal */
|
|
10152
11145
|
export type GetDeploymentMicrofrontendsApplications$Outbound = {
|
|
11146
|
+
isDefaultApp?: boolean | undefined;
|
|
10153
11147
|
productionHost: string;
|
|
10154
11148
|
deploymentAlias?: string | undefined;
|
|
10155
11149
|
deploymentHost?: string | undefined;
|
|
@@ -10161,6 +11155,7 @@ export const GetDeploymentMicrofrontendsApplications$outboundSchema: z.ZodType<
|
|
|
10161
11155
|
z.ZodTypeDef,
|
|
10162
11156
|
GetDeploymentMicrofrontendsApplications
|
|
10163
11157
|
> = z.object({
|
|
11158
|
+
isDefaultApp: z.boolean().optional(),
|
|
10164
11159
|
productionHost: z.string(),
|
|
10165
11160
|
deploymentAlias: z.string().optional(),
|
|
10166
11161
|
deploymentHost: z.string().optional(),
|