@vercel/sdk 1.10.8 → 1.11.0
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 +3715 -927
- package/bin/mcp-server.js.map +20 -20
- package/esm/__tests__/accessgroups.test.js +6 -6
- package/esm/__tests__/accessgroups.test.js.map +1 -1
- package/esm/__tests__/domains.test.js +5 -6
- package/esm/__tests__/domains.test.js.map +1 -1
- package/esm/__tests__/edgeconfig.test.js +6 -6
- package/esm/__tests__/edgeconfig.test.js.map +1 -1
- package/esm/__tests__/integrations.test.js +1 -1
- package/esm/__tests__/rollingrelease.test.js +2 -2
- package/esm/__tests__/rollingrelease.test.js.map +1 -1
- package/esm/__tests__/security.test.js +11 -1
- package/esm/__tests__/security.test.js.map +1 -1
- package/esm/__tests__/teams.test.js +2 -2
- package/esm/__tests__/teams.test.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 +41 -41
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +43 -41
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +98 -98
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +113 -117
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createintegrationstoredirectop.d.ts +240 -240
- package/esm/models/createintegrationstoredirectop.js +294 -294
- package/esm/models/createprojectop.d.ts +1626 -281
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +1676 -298
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/createwebhookop.d.ts +72 -66
- package/esm/models/createwebhookop.d.ts.map +1 -1
- package/esm/models/createwebhookop.js +24 -22
- package/esm/models/createwebhookop.js.map +1 -1
- package/esm/models/getconfigurationproductsop.d.ts +330 -330
- package/esm/models/getconfigurationproductsop.js +408 -408
- package/esm/models/getdeploymentop.d.ts +16 -16
- package/esm/models/getdeploymentop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.js +24 -24
- package/esm/models/getdeploymentop.js.map +1 -1
- package/esm/models/getprojectsop.d.ts +1402 -57
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +1575 -202
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/getwebhookop.d.ts +36 -33
- package/esm/models/getwebhookop.d.ts.map +1 -1
- package/esm/models/getwebhookop.js +12 -11
- package/esm/models/getwebhookop.js.map +1 -1
- package/esm/models/getwebhooksop.d.ts +72 -66
- package/esm/models/getwebhooksop.d.ts.map +1 -1
- package/esm/models/getwebhooksop.js +24 -22
- package/esm/models/getwebhooksop.js.map +1 -1
- package/esm/models/listaccessgroupsop.d.ts +2 -5
- package/esm/models/listaccessgroupsop.d.ts.map +1 -1
- package/esm/models/listaccessgroupsop.js +2 -2
- package/esm/models/listaccessgroupsop.js.map +1 -1
- package/esm/models/readaccessgroupop.d.ts +48 -5
- package/esm/models/readaccessgroupop.d.ts.map +1 -1
- package/esm/models/readaccessgroupop.js +30 -2
- package/esm/models/readaccessgroupop.js.map +1 -1
- package/esm/models/team.d.ts +35 -18
- package/esm/models/team.d.ts.map +1 -1
- package/esm/models/team.js +15 -13
- package/esm/models/team.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +1402 -57
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +1584 -200
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +1402 -57
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +1579 -202
- package/esm/models/updateprojectop.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__/accessgroups.test.ts +6 -6
- package/src/__tests__/domains.test.ts +5 -6
- package/src/__tests__/edgeconfig.test.ts +6 -6
- package/src/__tests__/integrations.test.ts +1 -1
- package/src/__tests__/rollingrelease.test.ts +2 -2
- package/src/__tests__/security.test.ts +11 -1
- package/src/__tests__/teams.test.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 +84 -64
- package/src/models/createdeploymentop.ts +239 -192
- package/src/models/createintegrationstoredirectop.ts +505 -505
- package/src/models/createprojectop.ts +3443 -466
- package/src/models/createwebhookop.ts +24 -22
- package/src/models/getconfigurationproductsop.ts +703 -703
- package/src/models/getdeploymentop.ts +34 -34
- package/src/models/getprojectsop.ts +3255 -300
- package/src/models/getwebhookop.ts +12 -11
- package/src/models/getwebhooksop.ts +24 -22
- package/src/models/listaccessgroupsop.ts +4 -7
- package/src/models/readaccessgroupop.ts +42 -7
- package/src/models/team.ts +47 -28
- package/src/models/updateprojectdatacacheop.ts +3184 -307
- package/src/models/updateprojectop.ts +3290 -298
- package/vercel-spec.json +4895 -2034
|
@@ -678,7 +678,7 @@ export type GetProjectsLatestDeployments = {
|
|
|
678
678
|
withCache?: boolean | undefined;
|
|
679
679
|
};
|
|
680
680
|
export declare const GetProjectsLinkProjectsResponse200ApplicationJSONType: {
|
|
681
|
-
readonly
|
|
681
|
+
readonly Bitbucket: "bitbucket";
|
|
682
682
|
};
|
|
683
683
|
export type GetProjectsLinkProjectsResponse200ApplicationJSONType = ClosedEnum<typeof GetProjectsLinkProjectsResponse200ApplicationJSONType>;
|
|
684
684
|
export type GetProjectsLinkProjectsResponse200ApplicationJSONDeployHooks = {
|
|
@@ -689,15 +689,12 @@ export type GetProjectsLinkProjectsResponse200ApplicationJSONDeployHooks = {
|
|
|
689
689
|
url: string;
|
|
690
690
|
};
|
|
691
691
|
export type GetProjectsLink5 = {
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
*/
|
|
696
|
-
repoOwnerId?: number | undefined;
|
|
697
|
-
repo?: string | undefined;
|
|
698
|
-
repoId?: number | undefined;
|
|
692
|
+
name: string;
|
|
693
|
+
slug: string;
|
|
694
|
+
owner: string;
|
|
699
695
|
type: GetProjectsLinkProjectsResponse200ApplicationJSONType;
|
|
700
|
-
|
|
696
|
+
uuid: string;
|
|
697
|
+
workspaceUuid: string;
|
|
701
698
|
createdAt?: number | undefined;
|
|
702
699
|
deployHooks: Array<GetProjectsLinkProjectsResponse200ApplicationJSONDeployHooks>;
|
|
703
700
|
gitCredentialId: string;
|
|
@@ -706,7 +703,7 @@ export type GetProjectsLink5 = {
|
|
|
706
703
|
productionBranch: string;
|
|
707
704
|
};
|
|
708
705
|
export declare const GetProjectsLinkProjectsResponse200Type: {
|
|
709
|
-
readonly
|
|
706
|
+
readonly Gitlab: "gitlab";
|
|
710
707
|
};
|
|
711
708
|
export type GetProjectsLinkProjectsResponse200Type = ClosedEnum<typeof GetProjectsLinkProjectsResponse200Type>;
|
|
712
709
|
export type GetProjectsLinkProjectsResponse200DeployHooks = {
|
|
@@ -717,12 +714,16 @@ export type GetProjectsLinkProjectsResponse200DeployHooks = {
|
|
|
717
714
|
url: string;
|
|
718
715
|
};
|
|
719
716
|
export type GetProjectsLink4 = {
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
717
|
+
projectId: string;
|
|
718
|
+
projectName: string;
|
|
719
|
+
projectNameWithNamespace: string;
|
|
720
|
+
projectNamespace: string;
|
|
721
|
+
/**
|
|
722
|
+
* A new field, should be included in all new project links, is being added just in time when a deployment is created. This is needed for Protected Git scopes. This is the id of the top level group that a namespace belongs to. Gitlab supports group nesting (up to 20 levels).
|
|
723
|
+
*/
|
|
724
|
+
projectOwnerId?: number | undefined;
|
|
725
|
+
projectUrl: string;
|
|
723
726
|
type: GetProjectsLinkProjectsResponse200Type;
|
|
724
|
-
uuid: string;
|
|
725
|
-
workspaceUuid: string;
|
|
726
727
|
createdAt?: number | undefined;
|
|
727
728
|
deployHooks: Array<GetProjectsLinkProjectsResponse200DeployHooks>;
|
|
728
729
|
gitCredentialId: string;
|
|
@@ -731,7 +732,7 @@ export type GetProjectsLink4 = {
|
|
|
731
732
|
productionBranch: string;
|
|
732
733
|
};
|
|
733
734
|
export declare const GetProjectsLinkProjectsResponseType: {
|
|
734
|
-
readonly
|
|
735
|
+
readonly GithubCustomHost: "github-custom-host";
|
|
735
736
|
};
|
|
736
737
|
export type GetProjectsLinkProjectsResponseType = ClosedEnum<typeof GetProjectsLinkProjectsResponseType>;
|
|
737
738
|
export type GetProjectsLinkProjectsResponseDeployHooks = {
|
|
@@ -742,16 +743,15 @@ export type GetProjectsLinkProjectsResponseDeployHooks = {
|
|
|
742
743
|
url: string;
|
|
743
744
|
};
|
|
744
745
|
export type GetProjectsLink3 = {
|
|
745
|
-
|
|
746
|
-
projectName: string;
|
|
747
|
-
projectNameWithNamespace: string;
|
|
748
|
-
projectNamespace: string;
|
|
746
|
+
org: string;
|
|
749
747
|
/**
|
|
750
|
-
* A new field, should be included in all new project links, is being added just in time when a deployment is created. This is needed for Protected Git scopes.
|
|
748
|
+
* A new field, should be included in all new project links, is being added just in time when a deployment is created. This is needed for Protected Git scopes.
|
|
751
749
|
*/
|
|
752
|
-
|
|
753
|
-
|
|
750
|
+
repoOwnerId?: number | undefined;
|
|
751
|
+
repo?: string | undefined;
|
|
752
|
+
repoId?: number | undefined;
|
|
754
753
|
type: GetProjectsLinkProjectsResponseType;
|
|
754
|
+
host: string;
|
|
755
755
|
createdAt?: number | undefined;
|
|
756
756
|
deployHooks: Array<GetProjectsLinkProjectsResponseDeployHooks>;
|
|
757
757
|
gitCredentialId: string;
|
|
@@ -813,7 +813,7 @@ export type GetProjectsLink1 = {
|
|
|
813
813
|
sourceless?: boolean | undefined;
|
|
814
814
|
productionBranch: string;
|
|
815
815
|
};
|
|
816
|
-
export type GetProjectsLink =
|
|
816
|
+
export type GetProjectsLink = GetProjectsLink4 | GetProjectsLink5 | GetProjectsLink3 | GetProjectsLink1 | GetProjectsLink2;
|
|
817
817
|
export type GetProjectsMicrofrontends2 = {
|
|
818
818
|
updatedAt: number;
|
|
819
819
|
groupIds: Array<any>;
|
|
@@ -1256,6 +1256,7 @@ export type GetProjectsPermissions = {
|
|
|
1256
1256
|
notificationCustomerBudget?: Array<ACLAction> | undefined;
|
|
1257
1257
|
notificationStatementOfReasons?: Array<ACLAction> | undefined;
|
|
1258
1258
|
observabilityConfiguration?: Array<ACLAction> | undefined;
|
|
1259
|
+
alerts?: Array<ACLAction> | undefined;
|
|
1259
1260
|
observabilityNotebook?: Array<ACLAction> | undefined;
|
|
1260
1261
|
observabilityFunnel?: Array<ACLAction> | undefined;
|
|
1261
1262
|
openTelemetryEndpoint?: Array<ACLAction> | undefined;
|
|
@@ -1434,15 +1435,15 @@ export type GetProjectsWebAnalytics = {
|
|
|
1434
1435
|
enabledAt?: number | undefined;
|
|
1435
1436
|
hasData?: boolean | undefined;
|
|
1436
1437
|
};
|
|
1437
|
-
export declare const
|
|
1438
|
+
export declare const GetProjectsProjectsResponse200Action: {
|
|
1438
1439
|
readonly Log: "log";
|
|
1439
1440
|
readonly Challenge: "challenge";
|
|
1440
1441
|
readonly Deny: "deny";
|
|
1441
1442
|
};
|
|
1442
|
-
export type
|
|
1443
|
+
export type GetProjectsProjectsResponse200Action = ClosedEnum<typeof GetProjectsProjectsResponse200Action>;
|
|
1443
1444
|
export type GetProjectsBotFilter = {
|
|
1444
1445
|
active: boolean;
|
|
1445
|
-
action?:
|
|
1446
|
+
action?: GetProjectsProjectsResponse200Action | undefined;
|
|
1446
1447
|
};
|
|
1447
1448
|
export declare const GetProjectsProjectsAction: {
|
|
1448
1449
|
readonly Log: "log";
|
|
@@ -1513,6 +1514,224 @@ export type GetProjectsTier = ClosedEnum<typeof GetProjectsTier>;
|
|
|
1513
1514
|
export type GetProjectsFeatures = {
|
|
1514
1515
|
webAnalytics?: boolean | undefined;
|
|
1515
1516
|
};
|
|
1517
|
+
export type GetProjectsHistory = {
|
|
1518
|
+
scanner: string;
|
|
1519
|
+
reason: string;
|
|
1520
|
+
by: string;
|
|
1521
|
+
byId: string;
|
|
1522
|
+
at: number;
|
|
1523
|
+
};
|
|
1524
|
+
export declare const GetProjectsAction: {
|
|
1525
|
+
readonly Blocked: "blocked";
|
|
1526
|
+
};
|
|
1527
|
+
export type GetProjectsAction = ClosedEnum<typeof GetProjectsAction>;
|
|
1528
|
+
export type GetProjectsBlock = {
|
|
1529
|
+
action: GetProjectsAction;
|
|
1530
|
+
reason: string;
|
|
1531
|
+
statusCode: number;
|
|
1532
|
+
createdAt: number;
|
|
1533
|
+
caseId?: string | undefined;
|
|
1534
|
+
actor?: string | undefined;
|
|
1535
|
+
comment?: string | undefined;
|
|
1536
|
+
isCascading?: boolean | undefined;
|
|
1537
|
+
};
|
|
1538
|
+
export declare const GetProjectsBlockHistoryProjectsResponse200Action: {
|
|
1539
|
+
readonly RouteUnblocked: "route-unblocked";
|
|
1540
|
+
};
|
|
1541
|
+
export type GetProjectsBlockHistoryProjectsResponse200Action = ClosedEnum<typeof GetProjectsBlockHistoryProjectsResponse200Action>;
|
|
1542
|
+
export declare const GetProjectsHasProjectsResponse200Type: {
|
|
1543
|
+
readonly Host: "host";
|
|
1544
|
+
};
|
|
1545
|
+
export type GetProjectsHasProjectsResponse200Type = ClosedEnum<typeof GetProjectsHasProjectsResponse200Type>;
|
|
1546
|
+
export type GetProjectsHasProjectsResponse200Value = {
|
|
1547
|
+
eq: string;
|
|
1548
|
+
};
|
|
1549
|
+
export type GetProjectsHasProjects2 = {
|
|
1550
|
+
type: GetProjectsHasProjectsResponse200Type;
|
|
1551
|
+
value: GetProjectsHasProjectsResponse200Value;
|
|
1552
|
+
};
|
|
1553
|
+
export declare const GetProjectsHasProjectsResponseType: {
|
|
1554
|
+
readonly Header: "header";
|
|
1555
|
+
};
|
|
1556
|
+
export type GetProjectsHasProjectsResponseType = ClosedEnum<typeof GetProjectsHasProjectsResponseType>;
|
|
1557
|
+
export declare const GetProjectsHasProjectsKey: {
|
|
1558
|
+
readonly XVercelIpCountry: "x-vercel-ip-country";
|
|
1559
|
+
};
|
|
1560
|
+
export type GetProjectsHasProjectsKey = ClosedEnum<typeof GetProjectsHasProjectsKey>;
|
|
1561
|
+
export type GetProjectsHasProjectsResponseValue = {
|
|
1562
|
+
eq: string;
|
|
1563
|
+
};
|
|
1564
|
+
export type GetProjectsHasProjects1 = {
|
|
1565
|
+
type: GetProjectsHasProjectsResponseType;
|
|
1566
|
+
key: GetProjectsHasProjectsKey;
|
|
1567
|
+
value: GetProjectsHasProjectsResponseValue;
|
|
1568
|
+
};
|
|
1569
|
+
export type GetProjectsRouteProjectsHas = GetProjectsHasProjects1 | GetProjectsHasProjects2;
|
|
1570
|
+
export declare const GetProjectsRouteProjectsAction: {
|
|
1571
|
+
readonly BlockLegalCwc: "block_legal_cwc";
|
|
1572
|
+
};
|
|
1573
|
+
export type GetProjectsRouteProjectsAction = ClosedEnum<typeof GetProjectsRouteProjectsAction>;
|
|
1574
|
+
export type GetProjectsRouteProjectsMitigate = {
|
|
1575
|
+
action: GetProjectsRouteProjectsAction;
|
|
1576
|
+
};
|
|
1577
|
+
export type GetProjectsRouteProjects2 = {
|
|
1578
|
+
has: Array<GetProjectsHasProjects1 | GetProjectsHasProjects2>;
|
|
1579
|
+
mitigate: GetProjectsRouteProjectsMitigate;
|
|
1580
|
+
src?: string | undefined;
|
|
1581
|
+
};
|
|
1582
|
+
export type GetProjectsRouteProjects1 = {
|
|
1583
|
+
src: string;
|
|
1584
|
+
status: number;
|
|
1585
|
+
};
|
|
1586
|
+
export type GetProjectsBlockHistoryProjectsRoute = GetProjectsRouteProjects1 | GetProjectsRouteProjects2;
|
|
1587
|
+
export type GetProjectsBlockHistory4 = {
|
|
1588
|
+
action: GetProjectsBlockHistoryProjectsResponse200Action;
|
|
1589
|
+
route: GetProjectsRouteProjects1 | GetProjectsRouteProjects2;
|
|
1590
|
+
statusCode?: number | undefined;
|
|
1591
|
+
createdAt: number;
|
|
1592
|
+
caseId?: string | undefined;
|
|
1593
|
+
actor?: string | undefined;
|
|
1594
|
+
comment?: string | undefined;
|
|
1595
|
+
isCascading?: boolean | undefined;
|
|
1596
|
+
};
|
|
1597
|
+
export declare const GetProjectsBlockHistoryProjectsResponseAction: {
|
|
1598
|
+
readonly RouteBlocked: "route-blocked";
|
|
1599
|
+
};
|
|
1600
|
+
export type GetProjectsBlockHistoryProjectsResponseAction = ClosedEnum<typeof GetProjectsBlockHistoryProjectsResponseAction>;
|
|
1601
|
+
export declare const GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyType: {
|
|
1602
|
+
readonly Host: "host";
|
|
1603
|
+
};
|
|
1604
|
+
export type GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyType = ClosedEnum<typeof GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyType>;
|
|
1605
|
+
export type GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyValue = {
|
|
1606
|
+
eq: string;
|
|
1607
|
+
};
|
|
1608
|
+
export type GetProjectsHasProjectsResponse2 = {
|
|
1609
|
+
type: GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyType;
|
|
1610
|
+
value: GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyValue;
|
|
1611
|
+
};
|
|
1612
|
+
export declare const GetProjectsHasProjectsResponse200ApplicationJSONType: {
|
|
1613
|
+
readonly Header: "header";
|
|
1614
|
+
};
|
|
1615
|
+
export type GetProjectsHasProjectsResponse200ApplicationJSONType = ClosedEnum<typeof GetProjectsHasProjectsResponse200ApplicationJSONType>;
|
|
1616
|
+
export declare const GetProjectsHasProjectsResponseKey: {
|
|
1617
|
+
readonly XVercelIpCountry: "x-vercel-ip-country";
|
|
1618
|
+
};
|
|
1619
|
+
export type GetProjectsHasProjectsResponseKey = ClosedEnum<typeof GetProjectsHasProjectsResponseKey>;
|
|
1620
|
+
export type GetProjectsHasProjectsResponse200ApplicationJSONValue = {
|
|
1621
|
+
eq: string;
|
|
1622
|
+
};
|
|
1623
|
+
export type GetProjectsHasProjectsResponse1 = {
|
|
1624
|
+
type: GetProjectsHasProjectsResponse200ApplicationJSONType;
|
|
1625
|
+
key: GetProjectsHasProjectsResponseKey;
|
|
1626
|
+
value: GetProjectsHasProjectsResponse200ApplicationJSONValue;
|
|
1627
|
+
};
|
|
1628
|
+
export type GetProjectsRouteHas = GetProjectsHasProjectsResponse1 | GetProjectsHasProjectsResponse2;
|
|
1629
|
+
export declare const GetProjectsRouteAction: {
|
|
1630
|
+
readonly BlockLegalCwc: "block_legal_cwc";
|
|
1631
|
+
};
|
|
1632
|
+
export type GetProjectsRouteAction = ClosedEnum<typeof GetProjectsRouteAction>;
|
|
1633
|
+
export type GetProjectsRouteMitigate = {
|
|
1634
|
+
action: GetProjectsRouteAction;
|
|
1635
|
+
};
|
|
1636
|
+
export type GetProjectsRoute2 = {
|
|
1637
|
+
has: Array<GetProjectsHasProjectsResponse1 | GetProjectsHasProjectsResponse2>;
|
|
1638
|
+
mitigate: GetProjectsRouteMitigate;
|
|
1639
|
+
src?: string | undefined;
|
|
1640
|
+
};
|
|
1641
|
+
export type GetProjectsRoute1 = {
|
|
1642
|
+
src: string;
|
|
1643
|
+
status: number;
|
|
1644
|
+
};
|
|
1645
|
+
export type GetProjectsBlockHistoryRoute = GetProjectsRoute1 | GetProjectsRoute2;
|
|
1646
|
+
export type GetProjectsBlockHistory3 = {
|
|
1647
|
+
action: GetProjectsBlockHistoryProjectsResponseAction;
|
|
1648
|
+
route: GetProjectsRoute1 | GetProjectsRoute2;
|
|
1649
|
+
reason: string;
|
|
1650
|
+
createdAt: number;
|
|
1651
|
+
caseId?: string | undefined;
|
|
1652
|
+
actor?: string | undefined;
|
|
1653
|
+
comment?: string | undefined;
|
|
1654
|
+
isCascading?: boolean | undefined;
|
|
1655
|
+
};
|
|
1656
|
+
export declare const GetProjectsBlockHistoryProjectsAction: {
|
|
1657
|
+
readonly Unblocked: "unblocked";
|
|
1658
|
+
};
|
|
1659
|
+
export type GetProjectsBlockHistoryProjectsAction = ClosedEnum<typeof GetProjectsBlockHistoryProjectsAction>;
|
|
1660
|
+
export type GetProjectsBlockHistory2 = {
|
|
1661
|
+
action: GetProjectsBlockHistoryProjectsAction;
|
|
1662
|
+
createdAt: number;
|
|
1663
|
+
caseId?: string | undefined;
|
|
1664
|
+
actor?: string | undefined;
|
|
1665
|
+
comment?: string | undefined;
|
|
1666
|
+
isCascading?: boolean | undefined;
|
|
1667
|
+
};
|
|
1668
|
+
export declare const GetProjectsBlockHistoryAction: {
|
|
1669
|
+
readonly Blocked: "blocked";
|
|
1670
|
+
};
|
|
1671
|
+
export type GetProjectsBlockHistoryAction = ClosedEnum<typeof GetProjectsBlockHistoryAction>;
|
|
1672
|
+
export type GetProjectsBlockHistory1 = {
|
|
1673
|
+
action: GetProjectsBlockHistoryAction;
|
|
1674
|
+
reason: string;
|
|
1675
|
+
statusCode: number;
|
|
1676
|
+
createdAt: number;
|
|
1677
|
+
caseId?: string | undefined;
|
|
1678
|
+
actor?: string | undefined;
|
|
1679
|
+
comment?: string | undefined;
|
|
1680
|
+
isCascading?: boolean | undefined;
|
|
1681
|
+
};
|
|
1682
|
+
export type GetProjectsBlockHistory = GetProjectsBlockHistory1 | GetProjectsBlockHistory3 | GetProjectsBlockHistory4 | GetProjectsBlockHistory2;
|
|
1683
|
+
export type GetProjectsAbuse = {
|
|
1684
|
+
scanner?: string | undefined;
|
|
1685
|
+
history: Array<GetProjectsHistory>;
|
|
1686
|
+
updatedAt: number;
|
|
1687
|
+
block?: GetProjectsBlock | undefined;
|
|
1688
|
+
blockHistory?: Array<GetProjectsBlockHistory1 | GetProjectsBlockHistory3 | GetProjectsBlockHistory4 | GetProjectsBlockHistory2> | undefined;
|
|
1689
|
+
};
|
|
1690
|
+
export declare const GetProjectsHasProjectsType: {
|
|
1691
|
+
readonly Host: "host";
|
|
1692
|
+
};
|
|
1693
|
+
export type GetProjectsHasProjectsType = ClosedEnum<typeof GetProjectsHasProjectsType>;
|
|
1694
|
+
export type GetProjectsHasProjectsValue = {
|
|
1695
|
+
eq: string;
|
|
1696
|
+
};
|
|
1697
|
+
export type GetProjectsHas2 = {
|
|
1698
|
+
type: GetProjectsHasProjectsType;
|
|
1699
|
+
value: GetProjectsHasProjectsValue;
|
|
1700
|
+
};
|
|
1701
|
+
export declare const GetProjectsHasType: {
|
|
1702
|
+
readonly Header: "header";
|
|
1703
|
+
};
|
|
1704
|
+
export type GetProjectsHasType = ClosedEnum<typeof GetProjectsHasType>;
|
|
1705
|
+
export declare const GetProjectsHasKey: {
|
|
1706
|
+
readonly XVercelIpCountry: "x-vercel-ip-country";
|
|
1707
|
+
};
|
|
1708
|
+
export type GetProjectsHasKey = ClosedEnum<typeof GetProjectsHasKey>;
|
|
1709
|
+
export type GetProjectsHasValue = {
|
|
1710
|
+
eq: string;
|
|
1711
|
+
};
|
|
1712
|
+
export type GetProjectsHas1 = {
|
|
1713
|
+
type: GetProjectsHasType;
|
|
1714
|
+
key: GetProjectsHasKey;
|
|
1715
|
+
value: GetProjectsHasValue;
|
|
1716
|
+
};
|
|
1717
|
+
export type GetProjectsInternalRoutesHas = GetProjectsHas1 | GetProjectsHas2;
|
|
1718
|
+
export declare const GetProjectsInternalRoutesAction: {
|
|
1719
|
+
readonly BlockLegalCwc: "block_legal_cwc";
|
|
1720
|
+
};
|
|
1721
|
+
export type GetProjectsInternalRoutesAction = ClosedEnum<typeof GetProjectsInternalRoutesAction>;
|
|
1722
|
+
export type GetProjectsInternalRoutesMitigate = {
|
|
1723
|
+
action: GetProjectsInternalRoutesAction;
|
|
1724
|
+
};
|
|
1725
|
+
export type GetProjectsInternalRoutes2 = {
|
|
1726
|
+
has: Array<GetProjectsHas1 | GetProjectsHas2>;
|
|
1727
|
+
mitigate: GetProjectsInternalRoutesMitigate;
|
|
1728
|
+
src?: string | undefined;
|
|
1729
|
+
};
|
|
1730
|
+
export type GetProjectsInternalRoutes1 = {
|
|
1731
|
+
src: string;
|
|
1732
|
+
status: number;
|
|
1733
|
+
};
|
|
1734
|
+
export type GetProjectsInternalRoutes = GetProjectsInternalRoutes1 | GetProjectsInternalRoutes2;
|
|
1516
1735
|
export type GetProjectsProjects = {
|
|
1517
1736
|
accountId: string;
|
|
1518
1737
|
analytics?: GetProjectsAnalytics | undefined;
|
|
@@ -1545,7 +1764,7 @@ export type GetProjectsProjects = {
|
|
|
1545
1764
|
id: string;
|
|
1546
1765
|
ipBuckets?: Array<GetProjectsIpBuckets> | undefined;
|
|
1547
1766
|
latestDeployments?: Array<GetProjectsLatestDeployments> | undefined;
|
|
1548
|
-
link?:
|
|
1767
|
+
link?: GetProjectsLink4 | GetProjectsLink5 | GetProjectsLink3 | GetProjectsLink1 | GetProjectsLink2 | undefined;
|
|
1549
1768
|
microfrontends?: GetProjectsMicrofrontends1 | GetProjectsMicrofrontends2 | undefined;
|
|
1550
1769
|
name: string;
|
|
1551
1770
|
nodeVersion: GetProjectsNodeVersion;
|
|
@@ -1601,6 +1820,8 @@ export type GetProjectsProjects = {
|
|
|
1601
1820
|
tier?: GetProjectsTier | undefined;
|
|
1602
1821
|
features?: GetProjectsFeatures | undefined;
|
|
1603
1822
|
v0?: boolean | undefined;
|
|
1823
|
+
abuse?: GetProjectsAbuse | undefined;
|
|
1824
|
+
internalRoutes?: Array<GetProjectsInternalRoutes1 | GetProjectsInternalRoutes2> | undefined;
|
|
1604
1825
|
};
|
|
1605
1826
|
/**
|
|
1606
1827
|
* The paginated list of projects
|
|
@@ -3432,11 +3653,11 @@ export declare const GetProjectsLinkProjectsResponse200ApplicationJSONType$outbo
|
|
|
3432
3653
|
export declare namespace GetProjectsLinkProjectsResponse200ApplicationJSONType$ {
|
|
3433
3654
|
/** @deprecated use `GetProjectsLinkProjectsResponse200ApplicationJSONType$inboundSchema` instead. */
|
|
3434
3655
|
const inboundSchema: z.ZodNativeEnum<{
|
|
3435
|
-
readonly
|
|
3656
|
+
readonly Bitbucket: "bitbucket";
|
|
3436
3657
|
}>;
|
|
3437
3658
|
/** @deprecated use `GetProjectsLinkProjectsResponse200ApplicationJSONType$outboundSchema` instead. */
|
|
3438
3659
|
const outboundSchema: z.ZodNativeEnum<{
|
|
3439
|
-
readonly
|
|
3660
|
+
readonly Bitbucket: "bitbucket";
|
|
3440
3661
|
}>;
|
|
3441
3662
|
}
|
|
3442
3663
|
/** @internal */
|
|
@@ -3469,12 +3690,12 @@ export declare function getProjectsLinkProjectsResponse200ApplicationJSONDeployH
|
|
|
3469
3690
|
export declare const GetProjectsLink5$inboundSchema: z.ZodType<GetProjectsLink5, z.ZodTypeDef, unknown>;
|
|
3470
3691
|
/** @internal */
|
|
3471
3692
|
export type GetProjectsLink5$Outbound = {
|
|
3472
|
-
|
|
3473
|
-
|
|
3474
|
-
|
|
3475
|
-
repoId?: number | undefined;
|
|
3693
|
+
name: string;
|
|
3694
|
+
slug: string;
|
|
3695
|
+
owner: string;
|
|
3476
3696
|
type: string;
|
|
3477
|
-
|
|
3697
|
+
uuid: string;
|
|
3698
|
+
workspaceUuid: string;
|
|
3478
3699
|
createdAt?: number | undefined;
|
|
3479
3700
|
deployHooks: Array<GetProjectsLinkProjectsResponse200ApplicationJSONDeployHooks$Outbound>;
|
|
3480
3701
|
gitCredentialId: string;
|
|
@@ -3509,11 +3730,11 @@ export declare const GetProjectsLinkProjectsResponse200Type$outboundSchema: z.Zo
|
|
|
3509
3730
|
export declare namespace GetProjectsLinkProjectsResponse200Type$ {
|
|
3510
3731
|
/** @deprecated use `GetProjectsLinkProjectsResponse200Type$inboundSchema` instead. */
|
|
3511
3732
|
const inboundSchema: z.ZodNativeEnum<{
|
|
3512
|
-
readonly
|
|
3733
|
+
readonly Gitlab: "gitlab";
|
|
3513
3734
|
}>;
|
|
3514
3735
|
/** @deprecated use `GetProjectsLinkProjectsResponse200Type$outboundSchema` instead. */
|
|
3515
3736
|
const outboundSchema: z.ZodNativeEnum<{
|
|
3516
|
-
readonly
|
|
3737
|
+
readonly Gitlab: "gitlab";
|
|
3517
3738
|
}>;
|
|
3518
3739
|
}
|
|
3519
3740
|
/** @internal */
|
|
@@ -3546,12 +3767,13 @@ export declare function getProjectsLinkProjectsResponse200DeployHooksFromJSON(js
|
|
|
3546
3767
|
export declare const GetProjectsLink4$inboundSchema: z.ZodType<GetProjectsLink4, z.ZodTypeDef, unknown>;
|
|
3547
3768
|
/** @internal */
|
|
3548
3769
|
export type GetProjectsLink4$Outbound = {
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3770
|
+
projectId: string;
|
|
3771
|
+
projectName: string;
|
|
3772
|
+
projectNameWithNamespace: string;
|
|
3773
|
+
projectNamespace: string;
|
|
3774
|
+
projectOwnerId?: number | undefined;
|
|
3775
|
+
projectUrl: string;
|
|
3552
3776
|
type: string;
|
|
3553
|
-
uuid: string;
|
|
3554
|
-
workspaceUuid: string;
|
|
3555
3777
|
createdAt?: number | undefined;
|
|
3556
3778
|
deployHooks: Array<GetProjectsLinkProjectsResponse200DeployHooks$Outbound>;
|
|
3557
3779
|
gitCredentialId: string;
|
|
@@ -3586,11 +3808,11 @@ export declare const GetProjectsLinkProjectsResponseType$outboundSchema: z.ZodNa
|
|
|
3586
3808
|
export declare namespace GetProjectsLinkProjectsResponseType$ {
|
|
3587
3809
|
/** @deprecated use `GetProjectsLinkProjectsResponseType$inboundSchema` instead. */
|
|
3588
3810
|
const inboundSchema: z.ZodNativeEnum<{
|
|
3589
|
-
readonly
|
|
3811
|
+
readonly GithubCustomHost: "github-custom-host";
|
|
3590
3812
|
}>;
|
|
3591
3813
|
/** @deprecated use `GetProjectsLinkProjectsResponseType$outboundSchema` instead. */
|
|
3592
3814
|
const outboundSchema: z.ZodNativeEnum<{
|
|
3593
|
-
readonly
|
|
3815
|
+
readonly GithubCustomHost: "github-custom-host";
|
|
3594
3816
|
}>;
|
|
3595
3817
|
}
|
|
3596
3818
|
/** @internal */
|
|
@@ -3623,13 +3845,12 @@ export declare function getProjectsLinkProjectsResponseDeployHooksFromJSON(jsonS
|
|
|
3623
3845
|
export declare const GetProjectsLink3$inboundSchema: z.ZodType<GetProjectsLink3, z.ZodTypeDef, unknown>;
|
|
3624
3846
|
/** @internal */
|
|
3625
3847
|
export type GetProjectsLink3$Outbound = {
|
|
3626
|
-
|
|
3627
|
-
|
|
3628
|
-
|
|
3629
|
-
|
|
3630
|
-
projectOwnerId?: number | undefined;
|
|
3631
|
-
projectUrl: string;
|
|
3848
|
+
org: string;
|
|
3849
|
+
repoOwnerId?: number | undefined;
|
|
3850
|
+
repo?: string | undefined;
|
|
3851
|
+
repoId?: number | undefined;
|
|
3632
3852
|
type: string;
|
|
3853
|
+
host: string;
|
|
3633
3854
|
createdAt?: number | undefined;
|
|
3634
3855
|
deployHooks: Array<GetProjectsLinkProjectsResponseDeployHooks$Outbound>;
|
|
3635
3856
|
gitCredentialId: string;
|
|
@@ -3808,7 +4029,7 @@ export declare function getProjectsLink1FromJSON(jsonString: string): SafeParseR
|
|
|
3808
4029
|
/** @internal */
|
|
3809
4030
|
export declare const GetProjectsLink$inboundSchema: z.ZodType<GetProjectsLink, z.ZodTypeDef, unknown>;
|
|
3810
4031
|
/** @internal */
|
|
3811
|
-
export type GetProjectsLink$Outbound =
|
|
4032
|
+
export type GetProjectsLink$Outbound = GetProjectsLink4$Outbound | GetProjectsLink5$Outbound | GetProjectsLink3$Outbound | GetProjectsLink1$Outbound | GetProjectsLink2$Outbound;
|
|
3812
4033
|
/** @internal */
|
|
3813
4034
|
export declare const GetProjectsLink$outboundSchema: z.ZodType<GetProjectsLink$Outbound, z.ZodTypeDef, GetProjectsLink>;
|
|
3814
4035
|
/**
|
|
@@ -4773,6 +4994,7 @@ export type GetProjectsPermissions$Outbound = {
|
|
|
4773
4994
|
notificationCustomerBudget?: Array<string> | undefined;
|
|
4774
4995
|
notificationStatementOfReasons?: Array<string> | undefined;
|
|
4775
4996
|
observabilityConfiguration?: Array<string> | undefined;
|
|
4997
|
+
alerts?: Array<string> | undefined;
|
|
4776
4998
|
observabilityNotebook?: Array<string> | undefined;
|
|
4777
4999
|
observabilityFunnel?: Array<string> | undefined;
|
|
4778
5000
|
openTelemetryEndpoint?: Array<string> | undefined;
|
|
@@ -5302,21 +5524,21 @@ export declare namespace GetProjectsWebAnalytics$ {
|
|
|
5302
5524
|
export declare function getProjectsWebAnalyticsToJSON(getProjectsWebAnalytics: GetProjectsWebAnalytics): string;
|
|
5303
5525
|
export declare function getProjectsWebAnalyticsFromJSON(jsonString: string): SafeParseResult<GetProjectsWebAnalytics, SDKValidationError>;
|
|
5304
5526
|
/** @internal */
|
|
5305
|
-
export declare const
|
|
5527
|
+
export declare const GetProjectsProjectsResponse200Action$inboundSchema: z.ZodNativeEnum<typeof GetProjectsProjectsResponse200Action>;
|
|
5306
5528
|
/** @internal */
|
|
5307
|
-
export declare const
|
|
5529
|
+
export declare const GetProjectsProjectsResponse200Action$outboundSchema: z.ZodNativeEnum<typeof GetProjectsProjectsResponse200Action>;
|
|
5308
5530
|
/**
|
|
5309
5531
|
* @internal
|
|
5310
5532
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5311
5533
|
*/
|
|
5312
|
-
export declare namespace
|
|
5313
|
-
/** @deprecated use `
|
|
5534
|
+
export declare namespace GetProjectsProjectsResponse200Action$ {
|
|
5535
|
+
/** @deprecated use `GetProjectsProjectsResponse200Action$inboundSchema` instead. */
|
|
5314
5536
|
const inboundSchema: z.ZodNativeEnum<{
|
|
5315
5537
|
readonly Log: "log";
|
|
5316
5538
|
readonly Challenge: "challenge";
|
|
5317
5539
|
readonly Deny: "deny";
|
|
5318
5540
|
}>;
|
|
5319
|
-
/** @deprecated use `
|
|
5541
|
+
/** @deprecated use `GetProjectsProjectsResponse200Action$outboundSchema` instead. */
|
|
5320
5542
|
const outboundSchema: z.ZodNativeEnum<{
|
|
5321
5543
|
readonly Log: "log";
|
|
5322
5544
|
readonly Challenge: "challenge";
|
|
@@ -5581,6 +5803,1127 @@ export declare namespace GetProjectsFeatures$ {
|
|
|
5581
5803
|
export declare function getProjectsFeaturesToJSON(getProjectsFeatures: GetProjectsFeatures): string;
|
|
5582
5804
|
export declare function getProjectsFeaturesFromJSON(jsonString: string): SafeParseResult<GetProjectsFeatures, SDKValidationError>;
|
|
5583
5805
|
/** @internal */
|
|
5806
|
+
export declare const GetProjectsHistory$inboundSchema: z.ZodType<GetProjectsHistory, z.ZodTypeDef, unknown>;
|
|
5807
|
+
/** @internal */
|
|
5808
|
+
export type GetProjectsHistory$Outbound = {
|
|
5809
|
+
scanner: string;
|
|
5810
|
+
reason: string;
|
|
5811
|
+
by: string;
|
|
5812
|
+
byId: string;
|
|
5813
|
+
at: number;
|
|
5814
|
+
};
|
|
5815
|
+
/** @internal */
|
|
5816
|
+
export declare const GetProjectsHistory$outboundSchema: z.ZodType<GetProjectsHistory$Outbound, z.ZodTypeDef, GetProjectsHistory>;
|
|
5817
|
+
/**
|
|
5818
|
+
* @internal
|
|
5819
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5820
|
+
*/
|
|
5821
|
+
export declare namespace GetProjectsHistory$ {
|
|
5822
|
+
/** @deprecated use `GetProjectsHistory$inboundSchema` instead. */
|
|
5823
|
+
const inboundSchema: z.ZodType<GetProjectsHistory, z.ZodTypeDef, unknown>;
|
|
5824
|
+
/** @deprecated use `GetProjectsHistory$outboundSchema` instead. */
|
|
5825
|
+
const outboundSchema: z.ZodType<GetProjectsHistory$Outbound, z.ZodTypeDef, GetProjectsHistory>;
|
|
5826
|
+
/** @deprecated use `GetProjectsHistory$Outbound` instead. */
|
|
5827
|
+
type Outbound = GetProjectsHistory$Outbound;
|
|
5828
|
+
}
|
|
5829
|
+
export declare function getProjectsHistoryToJSON(getProjectsHistory: GetProjectsHistory): string;
|
|
5830
|
+
export declare function getProjectsHistoryFromJSON(jsonString: string): SafeParseResult<GetProjectsHistory, SDKValidationError>;
|
|
5831
|
+
/** @internal */
|
|
5832
|
+
export declare const GetProjectsAction$inboundSchema: z.ZodNativeEnum<typeof GetProjectsAction>;
|
|
5833
|
+
/** @internal */
|
|
5834
|
+
export declare const GetProjectsAction$outboundSchema: z.ZodNativeEnum<typeof GetProjectsAction>;
|
|
5835
|
+
/**
|
|
5836
|
+
* @internal
|
|
5837
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5838
|
+
*/
|
|
5839
|
+
export declare namespace GetProjectsAction$ {
|
|
5840
|
+
/** @deprecated use `GetProjectsAction$inboundSchema` instead. */
|
|
5841
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
5842
|
+
readonly Blocked: "blocked";
|
|
5843
|
+
}>;
|
|
5844
|
+
/** @deprecated use `GetProjectsAction$outboundSchema` instead. */
|
|
5845
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
5846
|
+
readonly Blocked: "blocked";
|
|
5847
|
+
}>;
|
|
5848
|
+
}
|
|
5849
|
+
/** @internal */
|
|
5850
|
+
export declare const GetProjectsBlock$inboundSchema: z.ZodType<GetProjectsBlock, z.ZodTypeDef, unknown>;
|
|
5851
|
+
/** @internal */
|
|
5852
|
+
export type GetProjectsBlock$Outbound = {
|
|
5853
|
+
action: string;
|
|
5854
|
+
reason: string;
|
|
5855
|
+
statusCode: number;
|
|
5856
|
+
createdAt: number;
|
|
5857
|
+
caseId?: string | undefined;
|
|
5858
|
+
actor?: string | undefined;
|
|
5859
|
+
comment?: string | undefined;
|
|
5860
|
+
isCascading?: boolean | undefined;
|
|
5861
|
+
};
|
|
5862
|
+
/** @internal */
|
|
5863
|
+
export declare const GetProjectsBlock$outboundSchema: z.ZodType<GetProjectsBlock$Outbound, z.ZodTypeDef, GetProjectsBlock>;
|
|
5864
|
+
/**
|
|
5865
|
+
* @internal
|
|
5866
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5867
|
+
*/
|
|
5868
|
+
export declare namespace GetProjectsBlock$ {
|
|
5869
|
+
/** @deprecated use `GetProjectsBlock$inboundSchema` instead. */
|
|
5870
|
+
const inboundSchema: z.ZodType<GetProjectsBlock, z.ZodTypeDef, unknown>;
|
|
5871
|
+
/** @deprecated use `GetProjectsBlock$outboundSchema` instead. */
|
|
5872
|
+
const outboundSchema: z.ZodType<GetProjectsBlock$Outbound, z.ZodTypeDef, GetProjectsBlock>;
|
|
5873
|
+
/** @deprecated use `GetProjectsBlock$Outbound` instead. */
|
|
5874
|
+
type Outbound = GetProjectsBlock$Outbound;
|
|
5875
|
+
}
|
|
5876
|
+
export declare function getProjectsBlockToJSON(getProjectsBlock: GetProjectsBlock): string;
|
|
5877
|
+
export declare function getProjectsBlockFromJSON(jsonString: string): SafeParseResult<GetProjectsBlock, SDKValidationError>;
|
|
5878
|
+
/** @internal */
|
|
5879
|
+
export declare const GetProjectsBlockHistoryProjectsResponse200Action$inboundSchema: z.ZodNativeEnum<typeof GetProjectsBlockHistoryProjectsResponse200Action>;
|
|
5880
|
+
/** @internal */
|
|
5881
|
+
export declare const GetProjectsBlockHistoryProjectsResponse200Action$outboundSchema: z.ZodNativeEnum<typeof GetProjectsBlockHistoryProjectsResponse200Action>;
|
|
5882
|
+
/**
|
|
5883
|
+
* @internal
|
|
5884
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5885
|
+
*/
|
|
5886
|
+
export declare namespace GetProjectsBlockHistoryProjectsResponse200Action$ {
|
|
5887
|
+
/** @deprecated use `GetProjectsBlockHistoryProjectsResponse200Action$inboundSchema` instead. */
|
|
5888
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
5889
|
+
readonly RouteUnblocked: "route-unblocked";
|
|
5890
|
+
}>;
|
|
5891
|
+
/** @deprecated use `GetProjectsBlockHistoryProjectsResponse200Action$outboundSchema` instead. */
|
|
5892
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
5893
|
+
readonly RouteUnblocked: "route-unblocked";
|
|
5894
|
+
}>;
|
|
5895
|
+
}
|
|
5896
|
+
/** @internal */
|
|
5897
|
+
export declare const GetProjectsHasProjectsResponse200Type$inboundSchema: z.ZodNativeEnum<typeof GetProjectsHasProjectsResponse200Type>;
|
|
5898
|
+
/** @internal */
|
|
5899
|
+
export declare const GetProjectsHasProjectsResponse200Type$outboundSchema: z.ZodNativeEnum<typeof GetProjectsHasProjectsResponse200Type>;
|
|
5900
|
+
/**
|
|
5901
|
+
* @internal
|
|
5902
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5903
|
+
*/
|
|
5904
|
+
export declare namespace GetProjectsHasProjectsResponse200Type$ {
|
|
5905
|
+
/** @deprecated use `GetProjectsHasProjectsResponse200Type$inboundSchema` instead. */
|
|
5906
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
5907
|
+
readonly Host: "host";
|
|
5908
|
+
}>;
|
|
5909
|
+
/** @deprecated use `GetProjectsHasProjectsResponse200Type$outboundSchema` instead. */
|
|
5910
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
5911
|
+
readonly Host: "host";
|
|
5912
|
+
}>;
|
|
5913
|
+
}
|
|
5914
|
+
/** @internal */
|
|
5915
|
+
export declare const GetProjectsHasProjectsResponse200Value$inboundSchema: z.ZodType<GetProjectsHasProjectsResponse200Value, z.ZodTypeDef, unknown>;
|
|
5916
|
+
/** @internal */
|
|
5917
|
+
export type GetProjectsHasProjectsResponse200Value$Outbound = {
|
|
5918
|
+
eq: string;
|
|
5919
|
+
};
|
|
5920
|
+
/** @internal */
|
|
5921
|
+
export declare const GetProjectsHasProjectsResponse200Value$outboundSchema: z.ZodType<GetProjectsHasProjectsResponse200Value$Outbound, z.ZodTypeDef, GetProjectsHasProjectsResponse200Value>;
|
|
5922
|
+
/**
|
|
5923
|
+
* @internal
|
|
5924
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5925
|
+
*/
|
|
5926
|
+
export declare namespace GetProjectsHasProjectsResponse200Value$ {
|
|
5927
|
+
/** @deprecated use `GetProjectsHasProjectsResponse200Value$inboundSchema` instead. */
|
|
5928
|
+
const inboundSchema: z.ZodType<GetProjectsHasProjectsResponse200Value, z.ZodTypeDef, unknown>;
|
|
5929
|
+
/** @deprecated use `GetProjectsHasProjectsResponse200Value$outboundSchema` instead. */
|
|
5930
|
+
const outboundSchema: z.ZodType<GetProjectsHasProjectsResponse200Value$Outbound, z.ZodTypeDef, GetProjectsHasProjectsResponse200Value>;
|
|
5931
|
+
/** @deprecated use `GetProjectsHasProjectsResponse200Value$Outbound` instead. */
|
|
5932
|
+
type Outbound = GetProjectsHasProjectsResponse200Value$Outbound;
|
|
5933
|
+
}
|
|
5934
|
+
export declare function getProjectsHasProjectsResponse200ValueToJSON(getProjectsHasProjectsResponse200Value: GetProjectsHasProjectsResponse200Value): string;
|
|
5935
|
+
export declare function getProjectsHasProjectsResponse200ValueFromJSON(jsonString: string): SafeParseResult<GetProjectsHasProjectsResponse200Value, SDKValidationError>;
|
|
5936
|
+
/** @internal */
|
|
5937
|
+
export declare const GetProjectsHasProjects2$inboundSchema: z.ZodType<GetProjectsHasProjects2, z.ZodTypeDef, unknown>;
|
|
5938
|
+
/** @internal */
|
|
5939
|
+
export type GetProjectsHasProjects2$Outbound = {
|
|
5940
|
+
type: string;
|
|
5941
|
+
value: GetProjectsHasProjectsResponse200Value$Outbound;
|
|
5942
|
+
};
|
|
5943
|
+
/** @internal */
|
|
5944
|
+
export declare const GetProjectsHasProjects2$outboundSchema: z.ZodType<GetProjectsHasProjects2$Outbound, z.ZodTypeDef, GetProjectsHasProjects2>;
|
|
5945
|
+
/**
|
|
5946
|
+
* @internal
|
|
5947
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5948
|
+
*/
|
|
5949
|
+
export declare namespace GetProjectsHasProjects2$ {
|
|
5950
|
+
/** @deprecated use `GetProjectsHasProjects2$inboundSchema` instead. */
|
|
5951
|
+
const inboundSchema: z.ZodType<GetProjectsHasProjects2, z.ZodTypeDef, unknown>;
|
|
5952
|
+
/** @deprecated use `GetProjectsHasProjects2$outboundSchema` instead. */
|
|
5953
|
+
const outboundSchema: z.ZodType<GetProjectsHasProjects2$Outbound, z.ZodTypeDef, GetProjectsHasProjects2>;
|
|
5954
|
+
/** @deprecated use `GetProjectsHasProjects2$Outbound` instead. */
|
|
5955
|
+
type Outbound = GetProjectsHasProjects2$Outbound;
|
|
5956
|
+
}
|
|
5957
|
+
export declare function getProjectsHasProjects2ToJSON(getProjectsHasProjects2: GetProjectsHasProjects2): string;
|
|
5958
|
+
export declare function getProjectsHasProjects2FromJSON(jsonString: string): SafeParseResult<GetProjectsHasProjects2, SDKValidationError>;
|
|
5959
|
+
/** @internal */
|
|
5960
|
+
export declare const GetProjectsHasProjectsResponseType$inboundSchema: z.ZodNativeEnum<typeof GetProjectsHasProjectsResponseType>;
|
|
5961
|
+
/** @internal */
|
|
5962
|
+
export declare const GetProjectsHasProjectsResponseType$outboundSchema: z.ZodNativeEnum<typeof GetProjectsHasProjectsResponseType>;
|
|
5963
|
+
/**
|
|
5964
|
+
* @internal
|
|
5965
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5966
|
+
*/
|
|
5967
|
+
export declare namespace GetProjectsHasProjectsResponseType$ {
|
|
5968
|
+
/** @deprecated use `GetProjectsHasProjectsResponseType$inboundSchema` instead. */
|
|
5969
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
5970
|
+
readonly Header: "header";
|
|
5971
|
+
}>;
|
|
5972
|
+
/** @deprecated use `GetProjectsHasProjectsResponseType$outboundSchema` instead. */
|
|
5973
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
5974
|
+
readonly Header: "header";
|
|
5975
|
+
}>;
|
|
5976
|
+
}
|
|
5977
|
+
/** @internal */
|
|
5978
|
+
export declare const GetProjectsHasProjectsKey$inboundSchema: z.ZodNativeEnum<typeof GetProjectsHasProjectsKey>;
|
|
5979
|
+
/** @internal */
|
|
5980
|
+
export declare const GetProjectsHasProjectsKey$outboundSchema: z.ZodNativeEnum<typeof GetProjectsHasProjectsKey>;
|
|
5981
|
+
/**
|
|
5982
|
+
* @internal
|
|
5983
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5984
|
+
*/
|
|
5985
|
+
export declare namespace GetProjectsHasProjectsKey$ {
|
|
5986
|
+
/** @deprecated use `GetProjectsHasProjectsKey$inboundSchema` instead. */
|
|
5987
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
5988
|
+
readonly XVercelIpCountry: "x-vercel-ip-country";
|
|
5989
|
+
}>;
|
|
5990
|
+
/** @deprecated use `GetProjectsHasProjectsKey$outboundSchema` instead. */
|
|
5991
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
5992
|
+
readonly XVercelIpCountry: "x-vercel-ip-country";
|
|
5993
|
+
}>;
|
|
5994
|
+
}
|
|
5995
|
+
/** @internal */
|
|
5996
|
+
export declare const GetProjectsHasProjectsResponseValue$inboundSchema: z.ZodType<GetProjectsHasProjectsResponseValue, z.ZodTypeDef, unknown>;
|
|
5997
|
+
/** @internal */
|
|
5998
|
+
export type GetProjectsHasProjectsResponseValue$Outbound = {
|
|
5999
|
+
eq: string;
|
|
6000
|
+
};
|
|
6001
|
+
/** @internal */
|
|
6002
|
+
export declare const GetProjectsHasProjectsResponseValue$outboundSchema: z.ZodType<GetProjectsHasProjectsResponseValue$Outbound, z.ZodTypeDef, GetProjectsHasProjectsResponseValue>;
|
|
6003
|
+
/**
|
|
6004
|
+
* @internal
|
|
6005
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6006
|
+
*/
|
|
6007
|
+
export declare namespace GetProjectsHasProjectsResponseValue$ {
|
|
6008
|
+
/** @deprecated use `GetProjectsHasProjectsResponseValue$inboundSchema` instead. */
|
|
6009
|
+
const inboundSchema: z.ZodType<GetProjectsHasProjectsResponseValue, z.ZodTypeDef, unknown>;
|
|
6010
|
+
/** @deprecated use `GetProjectsHasProjectsResponseValue$outboundSchema` instead. */
|
|
6011
|
+
const outboundSchema: z.ZodType<GetProjectsHasProjectsResponseValue$Outbound, z.ZodTypeDef, GetProjectsHasProjectsResponseValue>;
|
|
6012
|
+
/** @deprecated use `GetProjectsHasProjectsResponseValue$Outbound` instead. */
|
|
6013
|
+
type Outbound = GetProjectsHasProjectsResponseValue$Outbound;
|
|
6014
|
+
}
|
|
6015
|
+
export declare function getProjectsHasProjectsResponseValueToJSON(getProjectsHasProjectsResponseValue: GetProjectsHasProjectsResponseValue): string;
|
|
6016
|
+
export declare function getProjectsHasProjectsResponseValueFromJSON(jsonString: string): SafeParseResult<GetProjectsHasProjectsResponseValue, SDKValidationError>;
|
|
6017
|
+
/** @internal */
|
|
6018
|
+
export declare const GetProjectsHasProjects1$inboundSchema: z.ZodType<GetProjectsHasProjects1, z.ZodTypeDef, unknown>;
|
|
6019
|
+
/** @internal */
|
|
6020
|
+
export type GetProjectsHasProjects1$Outbound = {
|
|
6021
|
+
type: string;
|
|
6022
|
+
key: string;
|
|
6023
|
+
value: GetProjectsHasProjectsResponseValue$Outbound;
|
|
6024
|
+
};
|
|
6025
|
+
/** @internal */
|
|
6026
|
+
export declare const GetProjectsHasProjects1$outboundSchema: z.ZodType<GetProjectsHasProjects1$Outbound, z.ZodTypeDef, GetProjectsHasProjects1>;
|
|
6027
|
+
/**
|
|
6028
|
+
* @internal
|
|
6029
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6030
|
+
*/
|
|
6031
|
+
export declare namespace GetProjectsHasProjects1$ {
|
|
6032
|
+
/** @deprecated use `GetProjectsHasProjects1$inboundSchema` instead. */
|
|
6033
|
+
const inboundSchema: z.ZodType<GetProjectsHasProjects1, z.ZodTypeDef, unknown>;
|
|
6034
|
+
/** @deprecated use `GetProjectsHasProjects1$outboundSchema` instead. */
|
|
6035
|
+
const outboundSchema: z.ZodType<GetProjectsHasProjects1$Outbound, z.ZodTypeDef, GetProjectsHasProjects1>;
|
|
6036
|
+
/** @deprecated use `GetProjectsHasProjects1$Outbound` instead. */
|
|
6037
|
+
type Outbound = GetProjectsHasProjects1$Outbound;
|
|
6038
|
+
}
|
|
6039
|
+
export declare function getProjectsHasProjects1ToJSON(getProjectsHasProjects1: GetProjectsHasProjects1): string;
|
|
6040
|
+
export declare function getProjectsHasProjects1FromJSON(jsonString: string): SafeParseResult<GetProjectsHasProjects1, SDKValidationError>;
|
|
6041
|
+
/** @internal */
|
|
6042
|
+
export declare const GetProjectsRouteProjectsHas$inboundSchema: z.ZodType<GetProjectsRouteProjectsHas, z.ZodTypeDef, unknown>;
|
|
6043
|
+
/** @internal */
|
|
6044
|
+
export type GetProjectsRouteProjectsHas$Outbound = GetProjectsHasProjects1$Outbound | GetProjectsHasProjects2$Outbound;
|
|
6045
|
+
/** @internal */
|
|
6046
|
+
export declare const GetProjectsRouteProjectsHas$outboundSchema: z.ZodType<GetProjectsRouteProjectsHas$Outbound, z.ZodTypeDef, GetProjectsRouteProjectsHas>;
|
|
6047
|
+
/**
|
|
6048
|
+
* @internal
|
|
6049
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6050
|
+
*/
|
|
6051
|
+
export declare namespace GetProjectsRouteProjectsHas$ {
|
|
6052
|
+
/** @deprecated use `GetProjectsRouteProjectsHas$inboundSchema` instead. */
|
|
6053
|
+
const inboundSchema: z.ZodType<GetProjectsRouteProjectsHas, z.ZodTypeDef, unknown>;
|
|
6054
|
+
/** @deprecated use `GetProjectsRouteProjectsHas$outboundSchema` instead. */
|
|
6055
|
+
const outboundSchema: z.ZodType<GetProjectsRouteProjectsHas$Outbound, z.ZodTypeDef, GetProjectsRouteProjectsHas>;
|
|
6056
|
+
/** @deprecated use `GetProjectsRouteProjectsHas$Outbound` instead. */
|
|
6057
|
+
type Outbound = GetProjectsRouteProjectsHas$Outbound;
|
|
6058
|
+
}
|
|
6059
|
+
export declare function getProjectsRouteProjectsHasToJSON(getProjectsRouteProjectsHas: GetProjectsRouteProjectsHas): string;
|
|
6060
|
+
export declare function getProjectsRouteProjectsHasFromJSON(jsonString: string): SafeParseResult<GetProjectsRouteProjectsHas, SDKValidationError>;
|
|
6061
|
+
/** @internal */
|
|
6062
|
+
export declare const GetProjectsRouteProjectsAction$inboundSchema: z.ZodNativeEnum<typeof GetProjectsRouteProjectsAction>;
|
|
6063
|
+
/** @internal */
|
|
6064
|
+
export declare const GetProjectsRouteProjectsAction$outboundSchema: z.ZodNativeEnum<typeof GetProjectsRouteProjectsAction>;
|
|
6065
|
+
/**
|
|
6066
|
+
* @internal
|
|
6067
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6068
|
+
*/
|
|
6069
|
+
export declare namespace GetProjectsRouteProjectsAction$ {
|
|
6070
|
+
/** @deprecated use `GetProjectsRouteProjectsAction$inboundSchema` instead. */
|
|
6071
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
6072
|
+
readonly BlockLegalCwc: "block_legal_cwc";
|
|
6073
|
+
}>;
|
|
6074
|
+
/** @deprecated use `GetProjectsRouteProjectsAction$outboundSchema` instead. */
|
|
6075
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
6076
|
+
readonly BlockLegalCwc: "block_legal_cwc";
|
|
6077
|
+
}>;
|
|
6078
|
+
}
|
|
6079
|
+
/** @internal */
|
|
6080
|
+
export declare const GetProjectsRouteProjectsMitigate$inboundSchema: z.ZodType<GetProjectsRouteProjectsMitigate, z.ZodTypeDef, unknown>;
|
|
6081
|
+
/** @internal */
|
|
6082
|
+
export type GetProjectsRouteProjectsMitigate$Outbound = {
|
|
6083
|
+
action: string;
|
|
6084
|
+
};
|
|
6085
|
+
/** @internal */
|
|
6086
|
+
export declare const GetProjectsRouteProjectsMitigate$outboundSchema: z.ZodType<GetProjectsRouteProjectsMitigate$Outbound, z.ZodTypeDef, GetProjectsRouteProjectsMitigate>;
|
|
6087
|
+
/**
|
|
6088
|
+
* @internal
|
|
6089
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6090
|
+
*/
|
|
6091
|
+
export declare namespace GetProjectsRouteProjectsMitigate$ {
|
|
6092
|
+
/** @deprecated use `GetProjectsRouteProjectsMitigate$inboundSchema` instead. */
|
|
6093
|
+
const inboundSchema: z.ZodType<GetProjectsRouteProjectsMitigate, z.ZodTypeDef, unknown>;
|
|
6094
|
+
/** @deprecated use `GetProjectsRouteProjectsMitigate$outboundSchema` instead. */
|
|
6095
|
+
const outboundSchema: z.ZodType<GetProjectsRouteProjectsMitigate$Outbound, z.ZodTypeDef, GetProjectsRouteProjectsMitigate>;
|
|
6096
|
+
/** @deprecated use `GetProjectsRouteProjectsMitigate$Outbound` instead. */
|
|
6097
|
+
type Outbound = GetProjectsRouteProjectsMitigate$Outbound;
|
|
6098
|
+
}
|
|
6099
|
+
export declare function getProjectsRouteProjectsMitigateToJSON(getProjectsRouteProjectsMitigate: GetProjectsRouteProjectsMitigate): string;
|
|
6100
|
+
export declare function getProjectsRouteProjectsMitigateFromJSON(jsonString: string): SafeParseResult<GetProjectsRouteProjectsMitigate, SDKValidationError>;
|
|
6101
|
+
/** @internal */
|
|
6102
|
+
export declare const GetProjectsRouteProjects2$inboundSchema: z.ZodType<GetProjectsRouteProjects2, z.ZodTypeDef, unknown>;
|
|
6103
|
+
/** @internal */
|
|
6104
|
+
export type GetProjectsRouteProjects2$Outbound = {
|
|
6105
|
+
has: Array<GetProjectsHasProjects1$Outbound | GetProjectsHasProjects2$Outbound>;
|
|
6106
|
+
mitigate: GetProjectsRouteProjectsMitigate$Outbound;
|
|
6107
|
+
src?: string | undefined;
|
|
6108
|
+
};
|
|
6109
|
+
/** @internal */
|
|
6110
|
+
export declare const GetProjectsRouteProjects2$outboundSchema: z.ZodType<GetProjectsRouteProjects2$Outbound, z.ZodTypeDef, GetProjectsRouteProjects2>;
|
|
6111
|
+
/**
|
|
6112
|
+
* @internal
|
|
6113
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6114
|
+
*/
|
|
6115
|
+
export declare namespace GetProjectsRouteProjects2$ {
|
|
6116
|
+
/** @deprecated use `GetProjectsRouteProjects2$inboundSchema` instead. */
|
|
6117
|
+
const inboundSchema: z.ZodType<GetProjectsRouteProjects2, z.ZodTypeDef, unknown>;
|
|
6118
|
+
/** @deprecated use `GetProjectsRouteProjects2$outboundSchema` instead. */
|
|
6119
|
+
const outboundSchema: z.ZodType<GetProjectsRouteProjects2$Outbound, z.ZodTypeDef, GetProjectsRouteProjects2>;
|
|
6120
|
+
/** @deprecated use `GetProjectsRouteProjects2$Outbound` instead. */
|
|
6121
|
+
type Outbound = GetProjectsRouteProjects2$Outbound;
|
|
6122
|
+
}
|
|
6123
|
+
export declare function getProjectsRouteProjects2ToJSON(getProjectsRouteProjects2: GetProjectsRouteProjects2): string;
|
|
6124
|
+
export declare function getProjectsRouteProjects2FromJSON(jsonString: string): SafeParseResult<GetProjectsRouteProjects2, SDKValidationError>;
|
|
6125
|
+
/** @internal */
|
|
6126
|
+
export declare const GetProjectsRouteProjects1$inboundSchema: z.ZodType<GetProjectsRouteProjects1, z.ZodTypeDef, unknown>;
|
|
6127
|
+
/** @internal */
|
|
6128
|
+
export type GetProjectsRouteProjects1$Outbound = {
|
|
6129
|
+
src: string;
|
|
6130
|
+
status: number;
|
|
6131
|
+
};
|
|
6132
|
+
/** @internal */
|
|
6133
|
+
export declare const GetProjectsRouteProjects1$outboundSchema: z.ZodType<GetProjectsRouteProjects1$Outbound, z.ZodTypeDef, GetProjectsRouteProjects1>;
|
|
6134
|
+
/**
|
|
6135
|
+
* @internal
|
|
6136
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6137
|
+
*/
|
|
6138
|
+
export declare namespace GetProjectsRouteProjects1$ {
|
|
6139
|
+
/** @deprecated use `GetProjectsRouteProjects1$inboundSchema` instead. */
|
|
6140
|
+
const inboundSchema: z.ZodType<GetProjectsRouteProjects1, z.ZodTypeDef, unknown>;
|
|
6141
|
+
/** @deprecated use `GetProjectsRouteProjects1$outboundSchema` instead. */
|
|
6142
|
+
const outboundSchema: z.ZodType<GetProjectsRouteProjects1$Outbound, z.ZodTypeDef, GetProjectsRouteProjects1>;
|
|
6143
|
+
/** @deprecated use `GetProjectsRouteProjects1$Outbound` instead. */
|
|
6144
|
+
type Outbound = GetProjectsRouteProjects1$Outbound;
|
|
6145
|
+
}
|
|
6146
|
+
export declare function getProjectsRouteProjects1ToJSON(getProjectsRouteProjects1: GetProjectsRouteProjects1): string;
|
|
6147
|
+
export declare function getProjectsRouteProjects1FromJSON(jsonString: string): SafeParseResult<GetProjectsRouteProjects1, SDKValidationError>;
|
|
6148
|
+
/** @internal */
|
|
6149
|
+
export declare const GetProjectsBlockHistoryProjectsRoute$inboundSchema: z.ZodType<GetProjectsBlockHistoryProjectsRoute, z.ZodTypeDef, unknown>;
|
|
6150
|
+
/** @internal */
|
|
6151
|
+
export type GetProjectsBlockHistoryProjectsRoute$Outbound = GetProjectsRouteProjects1$Outbound | GetProjectsRouteProjects2$Outbound;
|
|
6152
|
+
/** @internal */
|
|
6153
|
+
export declare const GetProjectsBlockHistoryProjectsRoute$outboundSchema: z.ZodType<GetProjectsBlockHistoryProjectsRoute$Outbound, z.ZodTypeDef, GetProjectsBlockHistoryProjectsRoute>;
|
|
6154
|
+
/**
|
|
6155
|
+
* @internal
|
|
6156
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6157
|
+
*/
|
|
6158
|
+
export declare namespace GetProjectsBlockHistoryProjectsRoute$ {
|
|
6159
|
+
/** @deprecated use `GetProjectsBlockHistoryProjectsRoute$inboundSchema` instead. */
|
|
6160
|
+
const inboundSchema: z.ZodType<GetProjectsBlockHistoryProjectsRoute, z.ZodTypeDef, unknown>;
|
|
6161
|
+
/** @deprecated use `GetProjectsBlockHistoryProjectsRoute$outboundSchema` instead. */
|
|
6162
|
+
const outboundSchema: z.ZodType<GetProjectsBlockHistoryProjectsRoute$Outbound, z.ZodTypeDef, GetProjectsBlockHistoryProjectsRoute>;
|
|
6163
|
+
/** @deprecated use `GetProjectsBlockHistoryProjectsRoute$Outbound` instead. */
|
|
6164
|
+
type Outbound = GetProjectsBlockHistoryProjectsRoute$Outbound;
|
|
6165
|
+
}
|
|
6166
|
+
export declare function getProjectsBlockHistoryProjectsRouteToJSON(getProjectsBlockHistoryProjectsRoute: GetProjectsBlockHistoryProjectsRoute): string;
|
|
6167
|
+
export declare function getProjectsBlockHistoryProjectsRouteFromJSON(jsonString: string): SafeParseResult<GetProjectsBlockHistoryProjectsRoute, SDKValidationError>;
|
|
6168
|
+
/** @internal */
|
|
6169
|
+
export declare const GetProjectsBlockHistory4$inboundSchema: z.ZodType<GetProjectsBlockHistory4, z.ZodTypeDef, unknown>;
|
|
6170
|
+
/** @internal */
|
|
6171
|
+
export type GetProjectsBlockHistory4$Outbound = {
|
|
6172
|
+
action: string;
|
|
6173
|
+
route: GetProjectsRouteProjects1$Outbound | GetProjectsRouteProjects2$Outbound;
|
|
6174
|
+
statusCode?: number | undefined;
|
|
6175
|
+
createdAt: number;
|
|
6176
|
+
caseId?: string | undefined;
|
|
6177
|
+
actor?: string | undefined;
|
|
6178
|
+
comment?: string | undefined;
|
|
6179
|
+
isCascading?: boolean | undefined;
|
|
6180
|
+
};
|
|
6181
|
+
/** @internal */
|
|
6182
|
+
export declare const GetProjectsBlockHistory4$outboundSchema: z.ZodType<GetProjectsBlockHistory4$Outbound, z.ZodTypeDef, GetProjectsBlockHistory4>;
|
|
6183
|
+
/**
|
|
6184
|
+
* @internal
|
|
6185
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6186
|
+
*/
|
|
6187
|
+
export declare namespace GetProjectsBlockHistory4$ {
|
|
6188
|
+
/** @deprecated use `GetProjectsBlockHistory4$inboundSchema` instead. */
|
|
6189
|
+
const inboundSchema: z.ZodType<GetProjectsBlockHistory4, z.ZodTypeDef, unknown>;
|
|
6190
|
+
/** @deprecated use `GetProjectsBlockHistory4$outboundSchema` instead. */
|
|
6191
|
+
const outboundSchema: z.ZodType<GetProjectsBlockHistory4$Outbound, z.ZodTypeDef, GetProjectsBlockHistory4>;
|
|
6192
|
+
/** @deprecated use `GetProjectsBlockHistory4$Outbound` instead. */
|
|
6193
|
+
type Outbound = GetProjectsBlockHistory4$Outbound;
|
|
6194
|
+
}
|
|
6195
|
+
export declare function getProjectsBlockHistory4ToJSON(getProjectsBlockHistory4: GetProjectsBlockHistory4): string;
|
|
6196
|
+
export declare function getProjectsBlockHistory4FromJSON(jsonString: string): SafeParseResult<GetProjectsBlockHistory4, SDKValidationError>;
|
|
6197
|
+
/** @internal */
|
|
6198
|
+
export declare const GetProjectsBlockHistoryProjectsResponseAction$inboundSchema: z.ZodNativeEnum<typeof GetProjectsBlockHistoryProjectsResponseAction>;
|
|
6199
|
+
/** @internal */
|
|
6200
|
+
export declare const GetProjectsBlockHistoryProjectsResponseAction$outboundSchema: z.ZodNativeEnum<typeof GetProjectsBlockHistoryProjectsResponseAction>;
|
|
6201
|
+
/**
|
|
6202
|
+
* @internal
|
|
6203
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6204
|
+
*/
|
|
6205
|
+
export declare namespace GetProjectsBlockHistoryProjectsResponseAction$ {
|
|
6206
|
+
/** @deprecated use `GetProjectsBlockHistoryProjectsResponseAction$inboundSchema` instead. */
|
|
6207
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
6208
|
+
readonly RouteBlocked: "route-blocked";
|
|
6209
|
+
}>;
|
|
6210
|
+
/** @deprecated use `GetProjectsBlockHistoryProjectsResponseAction$outboundSchema` instead. */
|
|
6211
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
6212
|
+
readonly RouteBlocked: "route-blocked";
|
|
6213
|
+
}>;
|
|
6214
|
+
}
|
|
6215
|
+
/** @internal */
|
|
6216
|
+
export declare const GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyType$inboundSchema: z.ZodNativeEnum<typeof GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyType>;
|
|
6217
|
+
/** @internal */
|
|
6218
|
+
export declare const GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyType$outboundSchema: z.ZodNativeEnum<typeof GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyType>;
|
|
6219
|
+
/**
|
|
6220
|
+
* @internal
|
|
6221
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6222
|
+
*/
|
|
6223
|
+
export declare namespace GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyType$ {
|
|
6224
|
+
/** @deprecated use `GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyType$inboundSchema` instead. */
|
|
6225
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
6226
|
+
readonly Host: "host";
|
|
6227
|
+
}>;
|
|
6228
|
+
/** @deprecated use `GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyType$outboundSchema` instead. */
|
|
6229
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
6230
|
+
readonly Host: "host";
|
|
6231
|
+
}>;
|
|
6232
|
+
}
|
|
6233
|
+
/** @internal */
|
|
6234
|
+
export declare const GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyValue$inboundSchema: z.ZodType<GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyValue, z.ZodTypeDef, unknown>;
|
|
6235
|
+
/** @internal */
|
|
6236
|
+
export type GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyValue$Outbound = {
|
|
6237
|
+
eq: string;
|
|
6238
|
+
};
|
|
6239
|
+
/** @internal */
|
|
6240
|
+
export declare const GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyValue$outboundSchema: z.ZodType<GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyValue$Outbound, z.ZodTypeDef, GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyValue>;
|
|
6241
|
+
/**
|
|
6242
|
+
* @internal
|
|
6243
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6244
|
+
*/
|
|
6245
|
+
export declare namespace GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyValue$ {
|
|
6246
|
+
/** @deprecated use `GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyValue$inboundSchema` instead. */
|
|
6247
|
+
const inboundSchema: z.ZodType<GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyValue, z.ZodTypeDef, unknown>;
|
|
6248
|
+
/** @deprecated use `GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyValue$outboundSchema` instead. */
|
|
6249
|
+
const outboundSchema: z.ZodType<GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyValue$Outbound, z.ZodTypeDef, GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyValue>;
|
|
6250
|
+
/** @deprecated use `GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyValue$Outbound` instead. */
|
|
6251
|
+
type Outbound = GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyValue$Outbound;
|
|
6252
|
+
}
|
|
6253
|
+
export declare function getProjectsHasProjectsResponse200ApplicationJSONResponseBodyValueToJSON(getProjectsHasProjectsResponse200ApplicationJSONResponseBodyValue: GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyValue): string;
|
|
6254
|
+
export declare function getProjectsHasProjectsResponse200ApplicationJSONResponseBodyValueFromJSON(jsonString: string): SafeParseResult<GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyValue, SDKValidationError>;
|
|
6255
|
+
/** @internal */
|
|
6256
|
+
export declare const GetProjectsHasProjectsResponse2$inboundSchema: z.ZodType<GetProjectsHasProjectsResponse2, z.ZodTypeDef, unknown>;
|
|
6257
|
+
/** @internal */
|
|
6258
|
+
export type GetProjectsHasProjectsResponse2$Outbound = {
|
|
6259
|
+
type: string;
|
|
6260
|
+
value: GetProjectsHasProjectsResponse200ApplicationJSONResponseBodyValue$Outbound;
|
|
6261
|
+
};
|
|
6262
|
+
/** @internal */
|
|
6263
|
+
export declare const GetProjectsHasProjectsResponse2$outboundSchema: z.ZodType<GetProjectsHasProjectsResponse2$Outbound, z.ZodTypeDef, GetProjectsHasProjectsResponse2>;
|
|
6264
|
+
/**
|
|
6265
|
+
* @internal
|
|
6266
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6267
|
+
*/
|
|
6268
|
+
export declare namespace GetProjectsHasProjectsResponse2$ {
|
|
6269
|
+
/** @deprecated use `GetProjectsHasProjectsResponse2$inboundSchema` instead. */
|
|
6270
|
+
const inboundSchema: z.ZodType<GetProjectsHasProjectsResponse2, z.ZodTypeDef, unknown>;
|
|
6271
|
+
/** @deprecated use `GetProjectsHasProjectsResponse2$outboundSchema` instead. */
|
|
6272
|
+
const outboundSchema: z.ZodType<GetProjectsHasProjectsResponse2$Outbound, z.ZodTypeDef, GetProjectsHasProjectsResponse2>;
|
|
6273
|
+
/** @deprecated use `GetProjectsHasProjectsResponse2$Outbound` instead. */
|
|
6274
|
+
type Outbound = GetProjectsHasProjectsResponse2$Outbound;
|
|
6275
|
+
}
|
|
6276
|
+
export declare function getProjectsHasProjectsResponse2ToJSON(getProjectsHasProjectsResponse2: GetProjectsHasProjectsResponse2): string;
|
|
6277
|
+
export declare function getProjectsHasProjectsResponse2FromJSON(jsonString: string): SafeParseResult<GetProjectsHasProjectsResponse2, SDKValidationError>;
|
|
6278
|
+
/** @internal */
|
|
6279
|
+
export declare const GetProjectsHasProjectsResponse200ApplicationJSONType$inboundSchema: z.ZodNativeEnum<typeof GetProjectsHasProjectsResponse200ApplicationJSONType>;
|
|
6280
|
+
/** @internal */
|
|
6281
|
+
export declare const GetProjectsHasProjectsResponse200ApplicationJSONType$outboundSchema: z.ZodNativeEnum<typeof GetProjectsHasProjectsResponse200ApplicationJSONType>;
|
|
6282
|
+
/**
|
|
6283
|
+
* @internal
|
|
6284
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6285
|
+
*/
|
|
6286
|
+
export declare namespace GetProjectsHasProjectsResponse200ApplicationJSONType$ {
|
|
6287
|
+
/** @deprecated use `GetProjectsHasProjectsResponse200ApplicationJSONType$inboundSchema` instead. */
|
|
6288
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
6289
|
+
readonly Header: "header";
|
|
6290
|
+
}>;
|
|
6291
|
+
/** @deprecated use `GetProjectsHasProjectsResponse200ApplicationJSONType$outboundSchema` instead. */
|
|
6292
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
6293
|
+
readonly Header: "header";
|
|
6294
|
+
}>;
|
|
6295
|
+
}
|
|
6296
|
+
/** @internal */
|
|
6297
|
+
export declare const GetProjectsHasProjectsResponseKey$inboundSchema: z.ZodNativeEnum<typeof GetProjectsHasProjectsResponseKey>;
|
|
6298
|
+
/** @internal */
|
|
6299
|
+
export declare const GetProjectsHasProjectsResponseKey$outboundSchema: z.ZodNativeEnum<typeof GetProjectsHasProjectsResponseKey>;
|
|
6300
|
+
/**
|
|
6301
|
+
* @internal
|
|
6302
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6303
|
+
*/
|
|
6304
|
+
export declare namespace GetProjectsHasProjectsResponseKey$ {
|
|
6305
|
+
/** @deprecated use `GetProjectsHasProjectsResponseKey$inboundSchema` instead. */
|
|
6306
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
6307
|
+
readonly XVercelIpCountry: "x-vercel-ip-country";
|
|
6308
|
+
}>;
|
|
6309
|
+
/** @deprecated use `GetProjectsHasProjectsResponseKey$outboundSchema` instead. */
|
|
6310
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
6311
|
+
readonly XVercelIpCountry: "x-vercel-ip-country";
|
|
6312
|
+
}>;
|
|
6313
|
+
}
|
|
6314
|
+
/** @internal */
|
|
6315
|
+
export declare const GetProjectsHasProjectsResponse200ApplicationJSONValue$inboundSchema: z.ZodType<GetProjectsHasProjectsResponse200ApplicationJSONValue, z.ZodTypeDef, unknown>;
|
|
6316
|
+
/** @internal */
|
|
6317
|
+
export type GetProjectsHasProjectsResponse200ApplicationJSONValue$Outbound = {
|
|
6318
|
+
eq: string;
|
|
6319
|
+
};
|
|
6320
|
+
/** @internal */
|
|
6321
|
+
export declare const GetProjectsHasProjectsResponse200ApplicationJSONValue$outboundSchema: z.ZodType<GetProjectsHasProjectsResponse200ApplicationJSONValue$Outbound, z.ZodTypeDef, GetProjectsHasProjectsResponse200ApplicationJSONValue>;
|
|
6322
|
+
/**
|
|
6323
|
+
* @internal
|
|
6324
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6325
|
+
*/
|
|
6326
|
+
export declare namespace GetProjectsHasProjectsResponse200ApplicationJSONValue$ {
|
|
6327
|
+
/** @deprecated use `GetProjectsHasProjectsResponse200ApplicationJSONValue$inboundSchema` instead. */
|
|
6328
|
+
const inboundSchema: z.ZodType<GetProjectsHasProjectsResponse200ApplicationJSONValue, z.ZodTypeDef, unknown>;
|
|
6329
|
+
/** @deprecated use `GetProjectsHasProjectsResponse200ApplicationJSONValue$outboundSchema` instead. */
|
|
6330
|
+
const outboundSchema: z.ZodType<GetProjectsHasProjectsResponse200ApplicationJSONValue$Outbound, z.ZodTypeDef, GetProjectsHasProjectsResponse200ApplicationJSONValue>;
|
|
6331
|
+
/** @deprecated use `GetProjectsHasProjectsResponse200ApplicationJSONValue$Outbound` instead. */
|
|
6332
|
+
type Outbound = GetProjectsHasProjectsResponse200ApplicationJSONValue$Outbound;
|
|
6333
|
+
}
|
|
6334
|
+
export declare function getProjectsHasProjectsResponse200ApplicationJSONValueToJSON(getProjectsHasProjectsResponse200ApplicationJSONValue: GetProjectsHasProjectsResponse200ApplicationJSONValue): string;
|
|
6335
|
+
export declare function getProjectsHasProjectsResponse200ApplicationJSONValueFromJSON(jsonString: string): SafeParseResult<GetProjectsHasProjectsResponse200ApplicationJSONValue, SDKValidationError>;
|
|
6336
|
+
/** @internal */
|
|
6337
|
+
export declare const GetProjectsHasProjectsResponse1$inboundSchema: z.ZodType<GetProjectsHasProjectsResponse1, z.ZodTypeDef, unknown>;
|
|
6338
|
+
/** @internal */
|
|
6339
|
+
export type GetProjectsHasProjectsResponse1$Outbound = {
|
|
6340
|
+
type: string;
|
|
6341
|
+
key: string;
|
|
6342
|
+
value: GetProjectsHasProjectsResponse200ApplicationJSONValue$Outbound;
|
|
6343
|
+
};
|
|
6344
|
+
/** @internal */
|
|
6345
|
+
export declare const GetProjectsHasProjectsResponse1$outboundSchema: z.ZodType<GetProjectsHasProjectsResponse1$Outbound, z.ZodTypeDef, GetProjectsHasProjectsResponse1>;
|
|
6346
|
+
/**
|
|
6347
|
+
* @internal
|
|
6348
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6349
|
+
*/
|
|
6350
|
+
export declare namespace GetProjectsHasProjectsResponse1$ {
|
|
6351
|
+
/** @deprecated use `GetProjectsHasProjectsResponse1$inboundSchema` instead. */
|
|
6352
|
+
const inboundSchema: z.ZodType<GetProjectsHasProjectsResponse1, z.ZodTypeDef, unknown>;
|
|
6353
|
+
/** @deprecated use `GetProjectsHasProjectsResponse1$outboundSchema` instead. */
|
|
6354
|
+
const outboundSchema: z.ZodType<GetProjectsHasProjectsResponse1$Outbound, z.ZodTypeDef, GetProjectsHasProjectsResponse1>;
|
|
6355
|
+
/** @deprecated use `GetProjectsHasProjectsResponse1$Outbound` instead. */
|
|
6356
|
+
type Outbound = GetProjectsHasProjectsResponse1$Outbound;
|
|
6357
|
+
}
|
|
6358
|
+
export declare function getProjectsHasProjectsResponse1ToJSON(getProjectsHasProjectsResponse1: GetProjectsHasProjectsResponse1): string;
|
|
6359
|
+
export declare function getProjectsHasProjectsResponse1FromJSON(jsonString: string): SafeParseResult<GetProjectsHasProjectsResponse1, SDKValidationError>;
|
|
6360
|
+
/** @internal */
|
|
6361
|
+
export declare const GetProjectsRouteHas$inboundSchema: z.ZodType<GetProjectsRouteHas, z.ZodTypeDef, unknown>;
|
|
6362
|
+
/** @internal */
|
|
6363
|
+
export type GetProjectsRouteHas$Outbound = GetProjectsHasProjectsResponse1$Outbound | GetProjectsHasProjectsResponse2$Outbound;
|
|
6364
|
+
/** @internal */
|
|
6365
|
+
export declare const GetProjectsRouteHas$outboundSchema: z.ZodType<GetProjectsRouteHas$Outbound, z.ZodTypeDef, GetProjectsRouteHas>;
|
|
6366
|
+
/**
|
|
6367
|
+
* @internal
|
|
6368
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6369
|
+
*/
|
|
6370
|
+
export declare namespace GetProjectsRouteHas$ {
|
|
6371
|
+
/** @deprecated use `GetProjectsRouteHas$inboundSchema` instead. */
|
|
6372
|
+
const inboundSchema: z.ZodType<GetProjectsRouteHas, z.ZodTypeDef, unknown>;
|
|
6373
|
+
/** @deprecated use `GetProjectsRouteHas$outboundSchema` instead. */
|
|
6374
|
+
const outboundSchema: z.ZodType<GetProjectsRouteHas$Outbound, z.ZodTypeDef, GetProjectsRouteHas>;
|
|
6375
|
+
/** @deprecated use `GetProjectsRouteHas$Outbound` instead. */
|
|
6376
|
+
type Outbound = GetProjectsRouteHas$Outbound;
|
|
6377
|
+
}
|
|
6378
|
+
export declare function getProjectsRouteHasToJSON(getProjectsRouteHas: GetProjectsRouteHas): string;
|
|
6379
|
+
export declare function getProjectsRouteHasFromJSON(jsonString: string): SafeParseResult<GetProjectsRouteHas, SDKValidationError>;
|
|
6380
|
+
/** @internal */
|
|
6381
|
+
export declare const GetProjectsRouteAction$inboundSchema: z.ZodNativeEnum<typeof GetProjectsRouteAction>;
|
|
6382
|
+
/** @internal */
|
|
6383
|
+
export declare const GetProjectsRouteAction$outboundSchema: z.ZodNativeEnum<typeof GetProjectsRouteAction>;
|
|
6384
|
+
/**
|
|
6385
|
+
* @internal
|
|
6386
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6387
|
+
*/
|
|
6388
|
+
export declare namespace GetProjectsRouteAction$ {
|
|
6389
|
+
/** @deprecated use `GetProjectsRouteAction$inboundSchema` instead. */
|
|
6390
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
6391
|
+
readonly BlockLegalCwc: "block_legal_cwc";
|
|
6392
|
+
}>;
|
|
6393
|
+
/** @deprecated use `GetProjectsRouteAction$outboundSchema` instead. */
|
|
6394
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
6395
|
+
readonly BlockLegalCwc: "block_legal_cwc";
|
|
6396
|
+
}>;
|
|
6397
|
+
}
|
|
6398
|
+
/** @internal */
|
|
6399
|
+
export declare const GetProjectsRouteMitigate$inboundSchema: z.ZodType<GetProjectsRouteMitigate, z.ZodTypeDef, unknown>;
|
|
6400
|
+
/** @internal */
|
|
6401
|
+
export type GetProjectsRouteMitigate$Outbound = {
|
|
6402
|
+
action: string;
|
|
6403
|
+
};
|
|
6404
|
+
/** @internal */
|
|
6405
|
+
export declare const GetProjectsRouteMitigate$outboundSchema: z.ZodType<GetProjectsRouteMitigate$Outbound, z.ZodTypeDef, GetProjectsRouteMitigate>;
|
|
6406
|
+
/**
|
|
6407
|
+
* @internal
|
|
6408
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6409
|
+
*/
|
|
6410
|
+
export declare namespace GetProjectsRouteMitigate$ {
|
|
6411
|
+
/** @deprecated use `GetProjectsRouteMitigate$inboundSchema` instead. */
|
|
6412
|
+
const inboundSchema: z.ZodType<GetProjectsRouteMitigate, z.ZodTypeDef, unknown>;
|
|
6413
|
+
/** @deprecated use `GetProjectsRouteMitigate$outboundSchema` instead. */
|
|
6414
|
+
const outboundSchema: z.ZodType<GetProjectsRouteMitigate$Outbound, z.ZodTypeDef, GetProjectsRouteMitigate>;
|
|
6415
|
+
/** @deprecated use `GetProjectsRouteMitigate$Outbound` instead. */
|
|
6416
|
+
type Outbound = GetProjectsRouteMitigate$Outbound;
|
|
6417
|
+
}
|
|
6418
|
+
export declare function getProjectsRouteMitigateToJSON(getProjectsRouteMitigate: GetProjectsRouteMitigate): string;
|
|
6419
|
+
export declare function getProjectsRouteMitigateFromJSON(jsonString: string): SafeParseResult<GetProjectsRouteMitigate, SDKValidationError>;
|
|
6420
|
+
/** @internal */
|
|
6421
|
+
export declare const GetProjectsRoute2$inboundSchema: z.ZodType<GetProjectsRoute2, z.ZodTypeDef, unknown>;
|
|
6422
|
+
/** @internal */
|
|
6423
|
+
export type GetProjectsRoute2$Outbound = {
|
|
6424
|
+
has: Array<GetProjectsHasProjectsResponse1$Outbound | GetProjectsHasProjectsResponse2$Outbound>;
|
|
6425
|
+
mitigate: GetProjectsRouteMitigate$Outbound;
|
|
6426
|
+
src?: string | undefined;
|
|
6427
|
+
};
|
|
6428
|
+
/** @internal */
|
|
6429
|
+
export declare const GetProjectsRoute2$outboundSchema: z.ZodType<GetProjectsRoute2$Outbound, z.ZodTypeDef, GetProjectsRoute2>;
|
|
6430
|
+
/**
|
|
6431
|
+
* @internal
|
|
6432
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6433
|
+
*/
|
|
6434
|
+
export declare namespace GetProjectsRoute2$ {
|
|
6435
|
+
/** @deprecated use `GetProjectsRoute2$inboundSchema` instead. */
|
|
6436
|
+
const inboundSchema: z.ZodType<GetProjectsRoute2, z.ZodTypeDef, unknown>;
|
|
6437
|
+
/** @deprecated use `GetProjectsRoute2$outboundSchema` instead. */
|
|
6438
|
+
const outboundSchema: z.ZodType<GetProjectsRoute2$Outbound, z.ZodTypeDef, GetProjectsRoute2>;
|
|
6439
|
+
/** @deprecated use `GetProjectsRoute2$Outbound` instead. */
|
|
6440
|
+
type Outbound = GetProjectsRoute2$Outbound;
|
|
6441
|
+
}
|
|
6442
|
+
export declare function getProjectsRoute2ToJSON(getProjectsRoute2: GetProjectsRoute2): string;
|
|
6443
|
+
export declare function getProjectsRoute2FromJSON(jsonString: string): SafeParseResult<GetProjectsRoute2, SDKValidationError>;
|
|
6444
|
+
/** @internal */
|
|
6445
|
+
export declare const GetProjectsRoute1$inboundSchema: z.ZodType<GetProjectsRoute1, z.ZodTypeDef, unknown>;
|
|
6446
|
+
/** @internal */
|
|
6447
|
+
export type GetProjectsRoute1$Outbound = {
|
|
6448
|
+
src: string;
|
|
6449
|
+
status: number;
|
|
6450
|
+
};
|
|
6451
|
+
/** @internal */
|
|
6452
|
+
export declare const GetProjectsRoute1$outboundSchema: z.ZodType<GetProjectsRoute1$Outbound, z.ZodTypeDef, GetProjectsRoute1>;
|
|
6453
|
+
/**
|
|
6454
|
+
* @internal
|
|
6455
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6456
|
+
*/
|
|
6457
|
+
export declare namespace GetProjectsRoute1$ {
|
|
6458
|
+
/** @deprecated use `GetProjectsRoute1$inboundSchema` instead. */
|
|
6459
|
+
const inboundSchema: z.ZodType<GetProjectsRoute1, z.ZodTypeDef, unknown>;
|
|
6460
|
+
/** @deprecated use `GetProjectsRoute1$outboundSchema` instead. */
|
|
6461
|
+
const outboundSchema: z.ZodType<GetProjectsRoute1$Outbound, z.ZodTypeDef, GetProjectsRoute1>;
|
|
6462
|
+
/** @deprecated use `GetProjectsRoute1$Outbound` instead. */
|
|
6463
|
+
type Outbound = GetProjectsRoute1$Outbound;
|
|
6464
|
+
}
|
|
6465
|
+
export declare function getProjectsRoute1ToJSON(getProjectsRoute1: GetProjectsRoute1): string;
|
|
6466
|
+
export declare function getProjectsRoute1FromJSON(jsonString: string): SafeParseResult<GetProjectsRoute1, SDKValidationError>;
|
|
6467
|
+
/** @internal */
|
|
6468
|
+
export declare const GetProjectsBlockHistoryRoute$inboundSchema: z.ZodType<GetProjectsBlockHistoryRoute, z.ZodTypeDef, unknown>;
|
|
6469
|
+
/** @internal */
|
|
6470
|
+
export type GetProjectsBlockHistoryRoute$Outbound = GetProjectsRoute1$Outbound | GetProjectsRoute2$Outbound;
|
|
6471
|
+
/** @internal */
|
|
6472
|
+
export declare const GetProjectsBlockHistoryRoute$outboundSchema: z.ZodType<GetProjectsBlockHistoryRoute$Outbound, z.ZodTypeDef, GetProjectsBlockHistoryRoute>;
|
|
6473
|
+
/**
|
|
6474
|
+
* @internal
|
|
6475
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6476
|
+
*/
|
|
6477
|
+
export declare namespace GetProjectsBlockHistoryRoute$ {
|
|
6478
|
+
/** @deprecated use `GetProjectsBlockHistoryRoute$inboundSchema` instead. */
|
|
6479
|
+
const inboundSchema: z.ZodType<GetProjectsBlockHistoryRoute, z.ZodTypeDef, unknown>;
|
|
6480
|
+
/** @deprecated use `GetProjectsBlockHistoryRoute$outboundSchema` instead. */
|
|
6481
|
+
const outboundSchema: z.ZodType<GetProjectsBlockHistoryRoute$Outbound, z.ZodTypeDef, GetProjectsBlockHistoryRoute>;
|
|
6482
|
+
/** @deprecated use `GetProjectsBlockHistoryRoute$Outbound` instead. */
|
|
6483
|
+
type Outbound = GetProjectsBlockHistoryRoute$Outbound;
|
|
6484
|
+
}
|
|
6485
|
+
export declare function getProjectsBlockHistoryRouteToJSON(getProjectsBlockHistoryRoute: GetProjectsBlockHistoryRoute): string;
|
|
6486
|
+
export declare function getProjectsBlockHistoryRouteFromJSON(jsonString: string): SafeParseResult<GetProjectsBlockHistoryRoute, SDKValidationError>;
|
|
6487
|
+
/** @internal */
|
|
6488
|
+
export declare const GetProjectsBlockHistory3$inboundSchema: z.ZodType<GetProjectsBlockHistory3, z.ZodTypeDef, unknown>;
|
|
6489
|
+
/** @internal */
|
|
6490
|
+
export type GetProjectsBlockHistory3$Outbound = {
|
|
6491
|
+
action: string;
|
|
6492
|
+
route: GetProjectsRoute1$Outbound | GetProjectsRoute2$Outbound;
|
|
6493
|
+
reason: string;
|
|
6494
|
+
createdAt: number;
|
|
6495
|
+
caseId?: string | undefined;
|
|
6496
|
+
actor?: string | undefined;
|
|
6497
|
+
comment?: string | undefined;
|
|
6498
|
+
isCascading?: boolean | undefined;
|
|
6499
|
+
};
|
|
6500
|
+
/** @internal */
|
|
6501
|
+
export declare const GetProjectsBlockHistory3$outboundSchema: z.ZodType<GetProjectsBlockHistory3$Outbound, z.ZodTypeDef, GetProjectsBlockHistory3>;
|
|
6502
|
+
/**
|
|
6503
|
+
* @internal
|
|
6504
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6505
|
+
*/
|
|
6506
|
+
export declare namespace GetProjectsBlockHistory3$ {
|
|
6507
|
+
/** @deprecated use `GetProjectsBlockHistory3$inboundSchema` instead. */
|
|
6508
|
+
const inboundSchema: z.ZodType<GetProjectsBlockHistory3, z.ZodTypeDef, unknown>;
|
|
6509
|
+
/** @deprecated use `GetProjectsBlockHistory3$outboundSchema` instead. */
|
|
6510
|
+
const outboundSchema: z.ZodType<GetProjectsBlockHistory3$Outbound, z.ZodTypeDef, GetProjectsBlockHistory3>;
|
|
6511
|
+
/** @deprecated use `GetProjectsBlockHistory3$Outbound` instead. */
|
|
6512
|
+
type Outbound = GetProjectsBlockHistory3$Outbound;
|
|
6513
|
+
}
|
|
6514
|
+
export declare function getProjectsBlockHistory3ToJSON(getProjectsBlockHistory3: GetProjectsBlockHistory3): string;
|
|
6515
|
+
export declare function getProjectsBlockHistory3FromJSON(jsonString: string): SafeParseResult<GetProjectsBlockHistory3, SDKValidationError>;
|
|
6516
|
+
/** @internal */
|
|
6517
|
+
export declare const GetProjectsBlockHistoryProjectsAction$inboundSchema: z.ZodNativeEnum<typeof GetProjectsBlockHistoryProjectsAction>;
|
|
6518
|
+
/** @internal */
|
|
6519
|
+
export declare const GetProjectsBlockHistoryProjectsAction$outboundSchema: z.ZodNativeEnum<typeof GetProjectsBlockHistoryProjectsAction>;
|
|
6520
|
+
/**
|
|
6521
|
+
* @internal
|
|
6522
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6523
|
+
*/
|
|
6524
|
+
export declare namespace GetProjectsBlockHistoryProjectsAction$ {
|
|
6525
|
+
/** @deprecated use `GetProjectsBlockHistoryProjectsAction$inboundSchema` instead. */
|
|
6526
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
6527
|
+
readonly Unblocked: "unblocked";
|
|
6528
|
+
}>;
|
|
6529
|
+
/** @deprecated use `GetProjectsBlockHistoryProjectsAction$outboundSchema` instead. */
|
|
6530
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
6531
|
+
readonly Unblocked: "unblocked";
|
|
6532
|
+
}>;
|
|
6533
|
+
}
|
|
6534
|
+
/** @internal */
|
|
6535
|
+
export declare const GetProjectsBlockHistory2$inboundSchema: z.ZodType<GetProjectsBlockHistory2, z.ZodTypeDef, unknown>;
|
|
6536
|
+
/** @internal */
|
|
6537
|
+
export type GetProjectsBlockHistory2$Outbound = {
|
|
6538
|
+
action: string;
|
|
6539
|
+
createdAt: number;
|
|
6540
|
+
caseId?: string | undefined;
|
|
6541
|
+
actor?: string | undefined;
|
|
6542
|
+
comment?: string | undefined;
|
|
6543
|
+
isCascading?: boolean | undefined;
|
|
6544
|
+
};
|
|
6545
|
+
/** @internal */
|
|
6546
|
+
export declare const GetProjectsBlockHistory2$outboundSchema: z.ZodType<GetProjectsBlockHistory2$Outbound, z.ZodTypeDef, GetProjectsBlockHistory2>;
|
|
6547
|
+
/**
|
|
6548
|
+
* @internal
|
|
6549
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6550
|
+
*/
|
|
6551
|
+
export declare namespace GetProjectsBlockHistory2$ {
|
|
6552
|
+
/** @deprecated use `GetProjectsBlockHistory2$inboundSchema` instead. */
|
|
6553
|
+
const inboundSchema: z.ZodType<GetProjectsBlockHistory2, z.ZodTypeDef, unknown>;
|
|
6554
|
+
/** @deprecated use `GetProjectsBlockHistory2$outboundSchema` instead. */
|
|
6555
|
+
const outboundSchema: z.ZodType<GetProjectsBlockHistory2$Outbound, z.ZodTypeDef, GetProjectsBlockHistory2>;
|
|
6556
|
+
/** @deprecated use `GetProjectsBlockHistory2$Outbound` instead. */
|
|
6557
|
+
type Outbound = GetProjectsBlockHistory2$Outbound;
|
|
6558
|
+
}
|
|
6559
|
+
export declare function getProjectsBlockHistory2ToJSON(getProjectsBlockHistory2: GetProjectsBlockHistory2): string;
|
|
6560
|
+
export declare function getProjectsBlockHistory2FromJSON(jsonString: string): SafeParseResult<GetProjectsBlockHistory2, SDKValidationError>;
|
|
6561
|
+
/** @internal */
|
|
6562
|
+
export declare const GetProjectsBlockHistoryAction$inboundSchema: z.ZodNativeEnum<typeof GetProjectsBlockHistoryAction>;
|
|
6563
|
+
/** @internal */
|
|
6564
|
+
export declare const GetProjectsBlockHistoryAction$outboundSchema: z.ZodNativeEnum<typeof GetProjectsBlockHistoryAction>;
|
|
6565
|
+
/**
|
|
6566
|
+
* @internal
|
|
6567
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6568
|
+
*/
|
|
6569
|
+
export declare namespace GetProjectsBlockHistoryAction$ {
|
|
6570
|
+
/** @deprecated use `GetProjectsBlockHistoryAction$inboundSchema` instead. */
|
|
6571
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
6572
|
+
readonly Blocked: "blocked";
|
|
6573
|
+
}>;
|
|
6574
|
+
/** @deprecated use `GetProjectsBlockHistoryAction$outboundSchema` instead. */
|
|
6575
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
6576
|
+
readonly Blocked: "blocked";
|
|
6577
|
+
}>;
|
|
6578
|
+
}
|
|
6579
|
+
/** @internal */
|
|
6580
|
+
export declare const GetProjectsBlockHistory1$inboundSchema: z.ZodType<GetProjectsBlockHistory1, z.ZodTypeDef, unknown>;
|
|
6581
|
+
/** @internal */
|
|
6582
|
+
export type GetProjectsBlockHistory1$Outbound = {
|
|
6583
|
+
action: string;
|
|
6584
|
+
reason: string;
|
|
6585
|
+
statusCode: number;
|
|
6586
|
+
createdAt: number;
|
|
6587
|
+
caseId?: string | undefined;
|
|
6588
|
+
actor?: string | undefined;
|
|
6589
|
+
comment?: string | undefined;
|
|
6590
|
+
isCascading?: boolean | undefined;
|
|
6591
|
+
};
|
|
6592
|
+
/** @internal */
|
|
6593
|
+
export declare const GetProjectsBlockHistory1$outboundSchema: z.ZodType<GetProjectsBlockHistory1$Outbound, z.ZodTypeDef, GetProjectsBlockHistory1>;
|
|
6594
|
+
/**
|
|
6595
|
+
* @internal
|
|
6596
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6597
|
+
*/
|
|
6598
|
+
export declare namespace GetProjectsBlockHistory1$ {
|
|
6599
|
+
/** @deprecated use `GetProjectsBlockHistory1$inboundSchema` instead. */
|
|
6600
|
+
const inboundSchema: z.ZodType<GetProjectsBlockHistory1, z.ZodTypeDef, unknown>;
|
|
6601
|
+
/** @deprecated use `GetProjectsBlockHistory1$outboundSchema` instead. */
|
|
6602
|
+
const outboundSchema: z.ZodType<GetProjectsBlockHistory1$Outbound, z.ZodTypeDef, GetProjectsBlockHistory1>;
|
|
6603
|
+
/** @deprecated use `GetProjectsBlockHistory1$Outbound` instead. */
|
|
6604
|
+
type Outbound = GetProjectsBlockHistory1$Outbound;
|
|
6605
|
+
}
|
|
6606
|
+
export declare function getProjectsBlockHistory1ToJSON(getProjectsBlockHistory1: GetProjectsBlockHistory1): string;
|
|
6607
|
+
export declare function getProjectsBlockHistory1FromJSON(jsonString: string): SafeParseResult<GetProjectsBlockHistory1, SDKValidationError>;
|
|
6608
|
+
/** @internal */
|
|
6609
|
+
export declare const GetProjectsBlockHistory$inboundSchema: z.ZodType<GetProjectsBlockHistory, z.ZodTypeDef, unknown>;
|
|
6610
|
+
/** @internal */
|
|
6611
|
+
export type GetProjectsBlockHistory$Outbound = GetProjectsBlockHistory1$Outbound | GetProjectsBlockHistory3$Outbound | GetProjectsBlockHistory4$Outbound | GetProjectsBlockHistory2$Outbound;
|
|
6612
|
+
/** @internal */
|
|
6613
|
+
export declare const GetProjectsBlockHistory$outboundSchema: z.ZodType<GetProjectsBlockHistory$Outbound, z.ZodTypeDef, GetProjectsBlockHistory>;
|
|
6614
|
+
/**
|
|
6615
|
+
* @internal
|
|
6616
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6617
|
+
*/
|
|
6618
|
+
export declare namespace GetProjectsBlockHistory$ {
|
|
6619
|
+
/** @deprecated use `GetProjectsBlockHistory$inboundSchema` instead. */
|
|
6620
|
+
const inboundSchema: z.ZodType<GetProjectsBlockHistory, z.ZodTypeDef, unknown>;
|
|
6621
|
+
/** @deprecated use `GetProjectsBlockHistory$outboundSchema` instead. */
|
|
6622
|
+
const outboundSchema: z.ZodType<GetProjectsBlockHistory$Outbound, z.ZodTypeDef, GetProjectsBlockHistory>;
|
|
6623
|
+
/** @deprecated use `GetProjectsBlockHistory$Outbound` instead. */
|
|
6624
|
+
type Outbound = GetProjectsBlockHistory$Outbound;
|
|
6625
|
+
}
|
|
6626
|
+
export declare function getProjectsBlockHistoryToJSON(getProjectsBlockHistory: GetProjectsBlockHistory): string;
|
|
6627
|
+
export declare function getProjectsBlockHistoryFromJSON(jsonString: string): SafeParseResult<GetProjectsBlockHistory, SDKValidationError>;
|
|
6628
|
+
/** @internal */
|
|
6629
|
+
export declare const GetProjectsAbuse$inboundSchema: z.ZodType<GetProjectsAbuse, z.ZodTypeDef, unknown>;
|
|
6630
|
+
/** @internal */
|
|
6631
|
+
export type GetProjectsAbuse$Outbound = {
|
|
6632
|
+
scanner?: string | undefined;
|
|
6633
|
+
history: Array<GetProjectsHistory$Outbound>;
|
|
6634
|
+
updatedAt: number;
|
|
6635
|
+
block?: GetProjectsBlock$Outbound | undefined;
|
|
6636
|
+
blockHistory?: Array<GetProjectsBlockHistory1$Outbound | GetProjectsBlockHistory3$Outbound | GetProjectsBlockHistory4$Outbound | GetProjectsBlockHistory2$Outbound> | undefined;
|
|
6637
|
+
};
|
|
6638
|
+
/** @internal */
|
|
6639
|
+
export declare const GetProjectsAbuse$outboundSchema: z.ZodType<GetProjectsAbuse$Outbound, z.ZodTypeDef, GetProjectsAbuse>;
|
|
6640
|
+
/**
|
|
6641
|
+
* @internal
|
|
6642
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6643
|
+
*/
|
|
6644
|
+
export declare namespace GetProjectsAbuse$ {
|
|
6645
|
+
/** @deprecated use `GetProjectsAbuse$inboundSchema` instead. */
|
|
6646
|
+
const inboundSchema: z.ZodType<GetProjectsAbuse, z.ZodTypeDef, unknown>;
|
|
6647
|
+
/** @deprecated use `GetProjectsAbuse$outboundSchema` instead. */
|
|
6648
|
+
const outboundSchema: z.ZodType<GetProjectsAbuse$Outbound, z.ZodTypeDef, GetProjectsAbuse>;
|
|
6649
|
+
/** @deprecated use `GetProjectsAbuse$Outbound` instead. */
|
|
6650
|
+
type Outbound = GetProjectsAbuse$Outbound;
|
|
6651
|
+
}
|
|
6652
|
+
export declare function getProjectsAbuseToJSON(getProjectsAbuse: GetProjectsAbuse): string;
|
|
6653
|
+
export declare function getProjectsAbuseFromJSON(jsonString: string): SafeParseResult<GetProjectsAbuse, SDKValidationError>;
|
|
6654
|
+
/** @internal */
|
|
6655
|
+
export declare const GetProjectsHasProjectsType$inboundSchema: z.ZodNativeEnum<typeof GetProjectsHasProjectsType>;
|
|
6656
|
+
/** @internal */
|
|
6657
|
+
export declare const GetProjectsHasProjectsType$outboundSchema: z.ZodNativeEnum<typeof GetProjectsHasProjectsType>;
|
|
6658
|
+
/**
|
|
6659
|
+
* @internal
|
|
6660
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6661
|
+
*/
|
|
6662
|
+
export declare namespace GetProjectsHasProjectsType$ {
|
|
6663
|
+
/** @deprecated use `GetProjectsHasProjectsType$inboundSchema` instead. */
|
|
6664
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
6665
|
+
readonly Host: "host";
|
|
6666
|
+
}>;
|
|
6667
|
+
/** @deprecated use `GetProjectsHasProjectsType$outboundSchema` instead. */
|
|
6668
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
6669
|
+
readonly Host: "host";
|
|
6670
|
+
}>;
|
|
6671
|
+
}
|
|
6672
|
+
/** @internal */
|
|
6673
|
+
export declare const GetProjectsHasProjectsValue$inboundSchema: z.ZodType<GetProjectsHasProjectsValue, z.ZodTypeDef, unknown>;
|
|
6674
|
+
/** @internal */
|
|
6675
|
+
export type GetProjectsHasProjectsValue$Outbound = {
|
|
6676
|
+
eq: string;
|
|
6677
|
+
};
|
|
6678
|
+
/** @internal */
|
|
6679
|
+
export declare const GetProjectsHasProjectsValue$outboundSchema: z.ZodType<GetProjectsHasProjectsValue$Outbound, z.ZodTypeDef, GetProjectsHasProjectsValue>;
|
|
6680
|
+
/**
|
|
6681
|
+
* @internal
|
|
6682
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6683
|
+
*/
|
|
6684
|
+
export declare namespace GetProjectsHasProjectsValue$ {
|
|
6685
|
+
/** @deprecated use `GetProjectsHasProjectsValue$inboundSchema` instead. */
|
|
6686
|
+
const inboundSchema: z.ZodType<GetProjectsHasProjectsValue, z.ZodTypeDef, unknown>;
|
|
6687
|
+
/** @deprecated use `GetProjectsHasProjectsValue$outboundSchema` instead. */
|
|
6688
|
+
const outboundSchema: z.ZodType<GetProjectsHasProjectsValue$Outbound, z.ZodTypeDef, GetProjectsHasProjectsValue>;
|
|
6689
|
+
/** @deprecated use `GetProjectsHasProjectsValue$Outbound` instead. */
|
|
6690
|
+
type Outbound = GetProjectsHasProjectsValue$Outbound;
|
|
6691
|
+
}
|
|
6692
|
+
export declare function getProjectsHasProjectsValueToJSON(getProjectsHasProjectsValue: GetProjectsHasProjectsValue): string;
|
|
6693
|
+
export declare function getProjectsHasProjectsValueFromJSON(jsonString: string): SafeParseResult<GetProjectsHasProjectsValue, SDKValidationError>;
|
|
6694
|
+
/** @internal */
|
|
6695
|
+
export declare const GetProjectsHas2$inboundSchema: z.ZodType<GetProjectsHas2, z.ZodTypeDef, unknown>;
|
|
6696
|
+
/** @internal */
|
|
6697
|
+
export type GetProjectsHas2$Outbound = {
|
|
6698
|
+
type: string;
|
|
6699
|
+
value: GetProjectsHasProjectsValue$Outbound;
|
|
6700
|
+
};
|
|
6701
|
+
/** @internal */
|
|
6702
|
+
export declare const GetProjectsHas2$outboundSchema: z.ZodType<GetProjectsHas2$Outbound, z.ZodTypeDef, GetProjectsHas2>;
|
|
6703
|
+
/**
|
|
6704
|
+
* @internal
|
|
6705
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6706
|
+
*/
|
|
6707
|
+
export declare namespace GetProjectsHas2$ {
|
|
6708
|
+
/** @deprecated use `GetProjectsHas2$inboundSchema` instead. */
|
|
6709
|
+
const inboundSchema: z.ZodType<GetProjectsHas2, z.ZodTypeDef, unknown>;
|
|
6710
|
+
/** @deprecated use `GetProjectsHas2$outboundSchema` instead. */
|
|
6711
|
+
const outboundSchema: z.ZodType<GetProjectsHas2$Outbound, z.ZodTypeDef, GetProjectsHas2>;
|
|
6712
|
+
/** @deprecated use `GetProjectsHas2$Outbound` instead. */
|
|
6713
|
+
type Outbound = GetProjectsHas2$Outbound;
|
|
6714
|
+
}
|
|
6715
|
+
export declare function getProjectsHas2ToJSON(getProjectsHas2: GetProjectsHas2): string;
|
|
6716
|
+
export declare function getProjectsHas2FromJSON(jsonString: string): SafeParseResult<GetProjectsHas2, SDKValidationError>;
|
|
6717
|
+
/** @internal */
|
|
6718
|
+
export declare const GetProjectsHasType$inboundSchema: z.ZodNativeEnum<typeof GetProjectsHasType>;
|
|
6719
|
+
/** @internal */
|
|
6720
|
+
export declare const GetProjectsHasType$outboundSchema: z.ZodNativeEnum<typeof GetProjectsHasType>;
|
|
6721
|
+
/**
|
|
6722
|
+
* @internal
|
|
6723
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6724
|
+
*/
|
|
6725
|
+
export declare namespace GetProjectsHasType$ {
|
|
6726
|
+
/** @deprecated use `GetProjectsHasType$inboundSchema` instead. */
|
|
6727
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
6728
|
+
readonly Header: "header";
|
|
6729
|
+
}>;
|
|
6730
|
+
/** @deprecated use `GetProjectsHasType$outboundSchema` instead. */
|
|
6731
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
6732
|
+
readonly Header: "header";
|
|
6733
|
+
}>;
|
|
6734
|
+
}
|
|
6735
|
+
/** @internal */
|
|
6736
|
+
export declare const GetProjectsHasKey$inboundSchema: z.ZodNativeEnum<typeof GetProjectsHasKey>;
|
|
6737
|
+
/** @internal */
|
|
6738
|
+
export declare const GetProjectsHasKey$outboundSchema: z.ZodNativeEnum<typeof GetProjectsHasKey>;
|
|
6739
|
+
/**
|
|
6740
|
+
* @internal
|
|
6741
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6742
|
+
*/
|
|
6743
|
+
export declare namespace GetProjectsHasKey$ {
|
|
6744
|
+
/** @deprecated use `GetProjectsHasKey$inboundSchema` instead. */
|
|
6745
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
6746
|
+
readonly XVercelIpCountry: "x-vercel-ip-country";
|
|
6747
|
+
}>;
|
|
6748
|
+
/** @deprecated use `GetProjectsHasKey$outboundSchema` instead. */
|
|
6749
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
6750
|
+
readonly XVercelIpCountry: "x-vercel-ip-country";
|
|
6751
|
+
}>;
|
|
6752
|
+
}
|
|
6753
|
+
/** @internal */
|
|
6754
|
+
export declare const GetProjectsHasValue$inboundSchema: z.ZodType<GetProjectsHasValue, z.ZodTypeDef, unknown>;
|
|
6755
|
+
/** @internal */
|
|
6756
|
+
export type GetProjectsHasValue$Outbound = {
|
|
6757
|
+
eq: string;
|
|
6758
|
+
};
|
|
6759
|
+
/** @internal */
|
|
6760
|
+
export declare const GetProjectsHasValue$outboundSchema: z.ZodType<GetProjectsHasValue$Outbound, z.ZodTypeDef, GetProjectsHasValue>;
|
|
6761
|
+
/**
|
|
6762
|
+
* @internal
|
|
6763
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6764
|
+
*/
|
|
6765
|
+
export declare namespace GetProjectsHasValue$ {
|
|
6766
|
+
/** @deprecated use `GetProjectsHasValue$inboundSchema` instead. */
|
|
6767
|
+
const inboundSchema: z.ZodType<GetProjectsHasValue, z.ZodTypeDef, unknown>;
|
|
6768
|
+
/** @deprecated use `GetProjectsHasValue$outboundSchema` instead. */
|
|
6769
|
+
const outboundSchema: z.ZodType<GetProjectsHasValue$Outbound, z.ZodTypeDef, GetProjectsHasValue>;
|
|
6770
|
+
/** @deprecated use `GetProjectsHasValue$Outbound` instead. */
|
|
6771
|
+
type Outbound = GetProjectsHasValue$Outbound;
|
|
6772
|
+
}
|
|
6773
|
+
export declare function getProjectsHasValueToJSON(getProjectsHasValue: GetProjectsHasValue): string;
|
|
6774
|
+
export declare function getProjectsHasValueFromJSON(jsonString: string): SafeParseResult<GetProjectsHasValue, SDKValidationError>;
|
|
6775
|
+
/** @internal */
|
|
6776
|
+
export declare const GetProjectsHas1$inboundSchema: z.ZodType<GetProjectsHas1, z.ZodTypeDef, unknown>;
|
|
6777
|
+
/** @internal */
|
|
6778
|
+
export type GetProjectsHas1$Outbound = {
|
|
6779
|
+
type: string;
|
|
6780
|
+
key: string;
|
|
6781
|
+
value: GetProjectsHasValue$Outbound;
|
|
6782
|
+
};
|
|
6783
|
+
/** @internal */
|
|
6784
|
+
export declare const GetProjectsHas1$outboundSchema: z.ZodType<GetProjectsHas1$Outbound, z.ZodTypeDef, GetProjectsHas1>;
|
|
6785
|
+
/**
|
|
6786
|
+
* @internal
|
|
6787
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6788
|
+
*/
|
|
6789
|
+
export declare namespace GetProjectsHas1$ {
|
|
6790
|
+
/** @deprecated use `GetProjectsHas1$inboundSchema` instead. */
|
|
6791
|
+
const inboundSchema: z.ZodType<GetProjectsHas1, z.ZodTypeDef, unknown>;
|
|
6792
|
+
/** @deprecated use `GetProjectsHas1$outboundSchema` instead. */
|
|
6793
|
+
const outboundSchema: z.ZodType<GetProjectsHas1$Outbound, z.ZodTypeDef, GetProjectsHas1>;
|
|
6794
|
+
/** @deprecated use `GetProjectsHas1$Outbound` instead. */
|
|
6795
|
+
type Outbound = GetProjectsHas1$Outbound;
|
|
6796
|
+
}
|
|
6797
|
+
export declare function getProjectsHas1ToJSON(getProjectsHas1: GetProjectsHas1): string;
|
|
6798
|
+
export declare function getProjectsHas1FromJSON(jsonString: string): SafeParseResult<GetProjectsHas1, SDKValidationError>;
|
|
6799
|
+
/** @internal */
|
|
6800
|
+
export declare const GetProjectsInternalRoutesHas$inboundSchema: z.ZodType<GetProjectsInternalRoutesHas, z.ZodTypeDef, unknown>;
|
|
6801
|
+
/** @internal */
|
|
6802
|
+
export type GetProjectsInternalRoutesHas$Outbound = GetProjectsHas1$Outbound | GetProjectsHas2$Outbound;
|
|
6803
|
+
/** @internal */
|
|
6804
|
+
export declare const GetProjectsInternalRoutesHas$outboundSchema: z.ZodType<GetProjectsInternalRoutesHas$Outbound, z.ZodTypeDef, GetProjectsInternalRoutesHas>;
|
|
6805
|
+
/**
|
|
6806
|
+
* @internal
|
|
6807
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6808
|
+
*/
|
|
6809
|
+
export declare namespace GetProjectsInternalRoutesHas$ {
|
|
6810
|
+
/** @deprecated use `GetProjectsInternalRoutesHas$inboundSchema` instead. */
|
|
6811
|
+
const inboundSchema: z.ZodType<GetProjectsInternalRoutesHas, z.ZodTypeDef, unknown>;
|
|
6812
|
+
/** @deprecated use `GetProjectsInternalRoutesHas$outboundSchema` instead. */
|
|
6813
|
+
const outboundSchema: z.ZodType<GetProjectsInternalRoutesHas$Outbound, z.ZodTypeDef, GetProjectsInternalRoutesHas>;
|
|
6814
|
+
/** @deprecated use `GetProjectsInternalRoutesHas$Outbound` instead. */
|
|
6815
|
+
type Outbound = GetProjectsInternalRoutesHas$Outbound;
|
|
6816
|
+
}
|
|
6817
|
+
export declare function getProjectsInternalRoutesHasToJSON(getProjectsInternalRoutesHas: GetProjectsInternalRoutesHas): string;
|
|
6818
|
+
export declare function getProjectsInternalRoutesHasFromJSON(jsonString: string): SafeParseResult<GetProjectsInternalRoutesHas, SDKValidationError>;
|
|
6819
|
+
/** @internal */
|
|
6820
|
+
export declare const GetProjectsInternalRoutesAction$inboundSchema: z.ZodNativeEnum<typeof GetProjectsInternalRoutesAction>;
|
|
6821
|
+
/** @internal */
|
|
6822
|
+
export declare const GetProjectsInternalRoutesAction$outboundSchema: z.ZodNativeEnum<typeof GetProjectsInternalRoutesAction>;
|
|
6823
|
+
/**
|
|
6824
|
+
* @internal
|
|
6825
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6826
|
+
*/
|
|
6827
|
+
export declare namespace GetProjectsInternalRoutesAction$ {
|
|
6828
|
+
/** @deprecated use `GetProjectsInternalRoutesAction$inboundSchema` instead. */
|
|
6829
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
6830
|
+
readonly BlockLegalCwc: "block_legal_cwc";
|
|
6831
|
+
}>;
|
|
6832
|
+
/** @deprecated use `GetProjectsInternalRoutesAction$outboundSchema` instead. */
|
|
6833
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
6834
|
+
readonly BlockLegalCwc: "block_legal_cwc";
|
|
6835
|
+
}>;
|
|
6836
|
+
}
|
|
6837
|
+
/** @internal */
|
|
6838
|
+
export declare const GetProjectsInternalRoutesMitigate$inboundSchema: z.ZodType<GetProjectsInternalRoutesMitigate, z.ZodTypeDef, unknown>;
|
|
6839
|
+
/** @internal */
|
|
6840
|
+
export type GetProjectsInternalRoutesMitigate$Outbound = {
|
|
6841
|
+
action: string;
|
|
6842
|
+
};
|
|
6843
|
+
/** @internal */
|
|
6844
|
+
export declare const GetProjectsInternalRoutesMitigate$outboundSchema: z.ZodType<GetProjectsInternalRoutesMitigate$Outbound, z.ZodTypeDef, GetProjectsInternalRoutesMitigate>;
|
|
6845
|
+
/**
|
|
6846
|
+
* @internal
|
|
6847
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6848
|
+
*/
|
|
6849
|
+
export declare namespace GetProjectsInternalRoutesMitigate$ {
|
|
6850
|
+
/** @deprecated use `GetProjectsInternalRoutesMitigate$inboundSchema` instead. */
|
|
6851
|
+
const inboundSchema: z.ZodType<GetProjectsInternalRoutesMitigate, z.ZodTypeDef, unknown>;
|
|
6852
|
+
/** @deprecated use `GetProjectsInternalRoutesMitigate$outboundSchema` instead. */
|
|
6853
|
+
const outboundSchema: z.ZodType<GetProjectsInternalRoutesMitigate$Outbound, z.ZodTypeDef, GetProjectsInternalRoutesMitigate>;
|
|
6854
|
+
/** @deprecated use `GetProjectsInternalRoutesMitigate$Outbound` instead. */
|
|
6855
|
+
type Outbound = GetProjectsInternalRoutesMitigate$Outbound;
|
|
6856
|
+
}
|
|
6857
|
+
export declare function getProjectsInternalRoutesMitigateToJSON(getProjectsInternalRoutesMitigate: GetProjectsInternalRoutesMitigate): string;
|
|
6858
|
+
export declare function getProjectsInternalRoutesMitigateFromJSON(jsonString: string): SafeParseResult<GetProjectsInternalRoutesMitigate, SDKValidationError>;
|
|
6859
|
+
/** @internal */
|
|
6860
|
+
export declare const GetProjectsInternalRoutes2$inboundSchema: z.ZodType<GetProjectsInternalRoutes2, z.ZodTypeDef, unknown>;
|
|
6861
|
+
/** @internal */
|
|
6862
|
+
export type GetProjectsInternalRoutes2$Outbound = {
|
|
6863
|
+
has: Array<GetProjectsHas1$Outbound | GetProjectsHas2$Outbound>;
|
|
6864
|
+
mitigate: GetProjectsInternalRoutesMitigate$Outbound;
|
|
6865
|
+
src?: string | undefined;
|
|
6866
|
+
};
|
|
6867
|
+
/** @internal */
|
|
6868
|
+
export declare const GetProjectsInternalRoutes2$outboundSchema: z.ZodType<GetProjectsInternalRoutes2$Outbound, z.ZodTypeDef, GetProjectsInternalRoutes2>;
|
|
6869
|
+
/**
|
|
6870
|
+
* @internal
|
|
6871
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6872
|
+
*/
|
|
6873
|
+
export declare namespace GetProjectsInternalRoutes2$ {
|
|
6874
|
+
/** @deprecated use `GetProjectsInternalRoutes2$inboundSchema` instead. */
|
|
6875
|
+
const inboundSchema: z.ZodType<GetProjectsInternalRoutes2, z.ZodTypeDef, unknown>;
|
|
6876
|
+
/** @deprecated use `GetProjectsInternalRoutes2$outboundSchema` instead. */
|
|
6877
|
+
const outboundSchema: z.ZodType<GetProjectsInternalRoutes2$Outbound, z.ZodTypeDef, GetProjectsInternalRoutes2>;
|
|
6878
|
+
/** @deprecated use `GetProjectsInternalRoutes2$Outbound` instead. */
|
|
6879
|
+
type Outbound = GetProjectsInternalRoutes2$Outbound;
|
|
6880
|
+
}
|
|
6881
|
+
export declare function getProjectsInternalRoutes2ToJSON(getProjectsInternalRoutes2: GetProjectsInternalRoutes2): string;
|
|
6882
|
+
export declare function getProjectsInternalRoutes2FromJSON(jsonString: string): SafeParseResult<GetProjectsInternalRoutes2, SDKValidationError>;
|
|
6883
|
+
/** @internal */
|
|
6884
|
+
export declare const GetProjectsInternalRoutes1$inboundSchema: z.ZodType<GetProjectsInternalRoutes1, z.ZodTypeDef, unknown>;
|
|
6885
|
+
/** @internal */
|
|
6886
|
+
export type GetProjectsInternalRoutes1$Outbound = {
|
|
6887
|
+
src: string;
|
|
6888
|
+
status: number;
|
|
6889
|
+
};
|
|
6890
|
+
/** @internal */
|
|
6891
|
+
export declare const GetProjectsInternalRoutes1$outboundSchema: z.ZodType<GetProjectsInternalRoutes1$Outbound, z.ZodTypeDef, GetProjectsInternalRoutes1>;
|
|
6892
|
+
/**
|
|
6893
|
+
* @internal
|
|
6894
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6895
|
+
*/
|
|
6896
|
+
export declare namespace GetProjectsInternalRoutes1$ {
|
|
6897
|
+
/** @deprecated use `GetProjectsInternalRoutes1$inboundSchema` instead. */
|
|
6898
|
+
const inboundSchema: z.ZodType<GetProjectsInternalRoutes1, z.ZodTypeDef, unknown>;
|
|
6899
|
+
/** @deprecated use `GetProjectsInternalRoutes1$outboundSchema` instead. */
|
|
6900
|
+
const outboundSchema: z.ZodType<GetProjectsInternalRoutes1$Outbound, z.ZodTypeDef, GetProjectsInternalRoutes1>;
|
|
6901
|
+
/** @deprecated use `GetProjectsInternalRoutes1$Outbound` instead. */
|
|
6902
|
+
type Outbound = GetProjectsInternalRoutes1$Outbound;
|
|
6903
|
+
}
|
|
6904
|
+
export declare function getProjectsInternalRoutes1ToJSON(getProjectsInternalRoutes1: GetProjectsInternalRoutes1): string;
|
|
6905
|
+
export declare function getProjectsInternalRoutes1FromJSON(jsonString: string): SafeParseResult<GetProjectsInternalRoutes1, SDKValidationError>;
|
|
6906
|
+
/** @internal */
|
|
6907
|
+
export declare const GetProjectsInternalRoutes$inboundSchema: z.ZodType<GetProjectsInternalRoutes, z.ZodTypeDef, unknown>;
|
|
6908
|
+
/** @internal */
|
|
6909
|
+
export type GetProjectsInternalRoutes$Outbound = GetProjectsInternalRoutes1$Outbound | GetProjectsInternalRoutes2$Outbound;
|
|
6910
|
+
/** @internal */
|
|
6911
|
+
export declare const GetProjectsInternalRoutes$outboundSchema: z.ZodType<GetProjectsInternalRoutes$Outbound, z.ZodTypeDef, GetProjectsInternalRoutes>;
|
|
6912
|
+
/**
|
|
6913
|
+
* @internal
|
|
6914
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6915
|
+
*/
|
|
6916
|
+
export declare namespace GetProjectsInternalRoutes$ {
|
|
6917
|
+
/** @deprecated use `GetProjectsInternalRoutes$inboundSchema` instead. */
|
|
6918
|
+
const inboundSchema: z.ZodType<GetProjectsInternalRoutes, z.ZodTypeDef, unknown>;
|
|
6919
|
+
/** @deprecated use `GetProjectsInternalRoutes$outboundSchema` instead. */
|
|
6920
|
+
const outboundSchema: z.ZodType<GetProjectsInternalRoutes$Outbound, z.ZodTypeDef, GetProjectsInternalRoutes>;
|
|
6921
|
+
/** @deprecated use `GetProjectsInternalRoutes$Outbound` instead. */
|
|
6922
|
+
type Outbound = GetProjectsInternalRoutes$Outbound;
|
|
6923
|
+
}
|
|
6924
|
+
export declare function getProjectsInternalRoutesToJSON(getProjectsInternalRoutes: GetProjectsInternalRoutes): string;
|
|
6925
|
+
export declare function getProjectsInternalRoutesFromJSON(jsonString: string): SafeParseResult<GetProjectsInternalRoutes, SDKValidationError>;
|
|
6926
|
+
/** @internal */
|
|
5584
6927
|
export declare const GetProjectsProjects$inboundSchema: z.ZodType<GetProjectsProjects, z.ZodTypeDef, unknown>;
|
|
5585
6928
|
/** @internal */
|
|
5586
6929
|
export type GetProjectsProjects$Outbound = {
|
|
@@ -5612,7 +6955,7 @@ export type GetProjectsProjects$Outbound = {
|
|
|
5612
6955
|
id: string;
|
|
5613
6956
|
ipBuckets?: Array<GetProjectsIpBuckets$Outbound> | undefined;
|
|
5614
6957
|
latestDeployments?: Array<GetProjectsLatestDeployments$Outbound> | undefined;
|
|
5615
|
-
link?:
|
|
6958
|
+
link?: GetProjectsLink4$Outbound | GetProjectsLink5$Outbound | GetProjectsLink3$Outbound | GetProjectsLink1$Outbound | GetProjectsLink2$Outbound | undefined;
|
|
5616
6959
|
microfrontends?: GetProjectsMicrofrontends1$Outbound | GetProjectsMicrofrontends2$Outbound | undefined;
|
|
5617
6960
|
name: string;
|
|
5618
6961
|
nodeVersion: string;
|
|
@@ -5662,6 +7005,8 @@ export type GetProjectsProjects$Outbound = {
|
|
|
5662
7005
|
tier?: string | undefined;
|
|
5663
7006
|
features?: GetProjectsFeatures$Outbound | undefined;
|
|
5664
7007
|
v0?: boolean | undefined;
|
|
7008
|
+
abuse?: GetProjectsAbuse$Outbound | undefined;
|
|
7009
|
+
internalRoutes?: Array<GetProjectsInternalRoutes1$Outbound | GetProjectsInternalRoutes2$Outbound> | undefined;
|
|
5665
7010
|
};
|
|
5666
7011
|
/** @internal */
|
|
5667
7012
|
export declare const GetProjectsProjects$outboundSchema: z.ZodType<GetProjectsProjects$Outbound, z.ZodTypeDef, GetProjectsProjects>;
|