@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.
Files changed (105) hide show
  1. package/bin/mcp-server.js +3715 -927
  2. package/bin/mcp-server.js.map +20 -20
  3. package/esm/__tests__/accessgroups.test.js +6 -6
  4. package/esm/__tests__/accessgroups.test.js.map +1 -1
  5. package/esm/__tests__/domains.test.js +5 -6
  6. package/esm/__tests__/domains.test.js.map +1 -1
  7. package/esm/__tests__/edgeconfig.test.js +6 -6
  8. package/esm/__tests__/edgeconfig.test.js.map +1 -1
  9. package/esm/__tests__/integrations.test.js +1 -1
  10. package/esm/__tests__/rollingrelease.test.js +2 -2
  11. package/esm/__tests__/rollingrelease.test.js.map +1 -1
  12. package/esm/__tests__/security.test.js +11 -1
  13. package/esm/__tests__/security.test.js.map +1 -1
  14. package/esm/__tests__/teams.test.js +2 -2
  15. package/esm/__tests__/teams.test.js.map +1 -1
  16. package/esm/lib/config.d.ts +3 -3
  17. package/esm/lib/config.js +3 -3
  18. package/esm/mcp-server/mcp-server.js +1 -1
  19. package/esm/mcp-server/server.js +1 -1
  20. package/esm/models/canceldeploymentop.d.ts +41 -41
  21. package/esm/models/canceldeploymentop.d.ts.map +1 -1
  22. package/esm/models/canceldeploymentop.js +43 -41
  23. package/esm/models/canceldeploymentop.js.map +1 -1
  24. package/esm/models/createdeploymentop.d.ts +98 -98
  25. package/esm/models/createdeploymentop.d.ts.map +1 -1
  26. package/esm/models/createdeploymentop.js +113 -117
  27. package/esm/models/createdeploymentop.js.map +1 -1
  28. package/esm/models/createintegrationstoredirectop.d.ts +240 -240
  29. package/esm/models/createintegrationstoredirectop.js +294 -294
  30. package/esm/models/createprojectop.d.ts +1626 -281
  31. package/esm/models/createprojectop.d.ts.map +1 -1
  32. package/esm/models/createprojectop.js +1676 -298
  33. package/esm/models/createprojectop.js.map +1 -1
  34. package/esm/models/createwebhookop.d.ts +72 -66
  35. package/esm/models/createwebhookop.d.ts.map +1 -1
  36. package/esm/models/createwebhookop.js +24 -22
  37. package/esm/models/createwebhookop.js.map +1 -1
  38. package/esm/models/getconfigurationproductsop.d.ts +330 -330
  39. package/esm/models/getconfigurationproductsop.js +408 -408
  40. package/esm/models/getdeploymentop.d.ts +16 -16
  41. package/esm/models/getdeploymentop.d.ts.map +1 -1
  42. package/esm/models/getdeploymentop.js +24 -24
  43. package/esm/models/getdeploymentop.js.map +1 -1
  44. package/esm/models/getprojectsop.d.ts +1402 -57
  45. package/esm/models/getprojectsop.d.ts.map +1 -1
  46. package/esm/models/getprojectsop.js +1575 -202
  47. package/esm/models/getprojectsop.js.map +1 -1
  48. package/esm/models/getwebhookop.d.ts +36 -33
  49. package/esm/models/getwebhookop.d.ts.map +1 -1
  50. package/esm/models/getwebhookop.js +12 -11
  51. package/esm/models/getwebhookop.js.map +1 -1
  52. package/esm/models/getwebhooksop.d.ts +72 -66
  53. package/esm/models/getwebhooksop.d.ts.map +1 -1
  54. package/esm/models/getwebhooksop.js +24 -22
  55. package/esm/models/getwebhooksop.js.map +1 -1
  56. package/esm/models/listaccessgroupsop.d.ts +2 -5
  57. package/esm/models/listaccessgroupsop.d.ts.map +1 -1
  58. package/esm/models/listaccessgroupsop.js +2 -2
  59. package/esm/models/listaccessgroupsop.js.map +1 -1
  60. package/esm/models/readaccessgroupop.d.ts +48 -5
  61. package/esm/models/readaccessgroupop.d.ts.map +1 -1
  62. package/esm/models/readaccessgroupop.js +30 -2
  63. package/esm/models/readaccessgroupop.js.map +1 -1
  64. package/esm/models/team.d.ts +35 -18
  65. package/esm/models/team.d.ts.map +1 -1
  66. package/esm/models/team.js +15 -13
  67. package/esm/models/team.js.map +1 -1
  68. package/esm/models/updateprojectdatacacheop.d.ts +1402 -57
  69. package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
  70. package/esm/models/updateprojectdatacacheop.js +1584 -200
  71. package/esm/models/updateprojectdatacacheop.js.map +1 -1
  72. package/esm/models/updateprojectop.d.ts +1402 -57
  73. package/esm/models/updateprojectop.d.ts.map +1 -1
  74. package/esm/models/updateprojectop.js +1579 -202
  75. package/esm/models/updateprojectop.js.map +1 -1
  76. package/examples/package-lock.json +1 -1
  77. package/examples/projectsUpdateProject.example.ts +1 -1
  78. package/jsr.json +1 -1
  79. package/package.json +1 -1
  80. package/src/__tests__/accessgroups.test.ts +6 -6
  81. package/src/__tests__/domains.test.ts +5 -6
  82. package/src/__tests__/edgeconfig.test.ts +6 -6
  83. package/src/__tests__/integrations.test.ts +1 -1
  84. package/src/__tests__/rollingrelease.test.ts +2 -2
  85. package/src/__tests__/security.test.ts +11 -1
  86. package/src/__tests__/teams.test.ts +2 -2
  87. package/src/lib/config.ts +3 -3
  88. package/src/mcp-server/mcp-server.ts +1 -1
  89. package/src/mcp-server/server.ts +1 -1
  90. package/src/models/canceldeploymentop.ts +84 -64
  91. package/src/models/createdeploymentop.ts +239 -192
  92. package/src/models/createintegrationstoredirectop.ts +505 -505
  93. package/src/models/createprojectop.ts +3443 -466
  94. package/src/models/createwebhookop.ts +24 -22
  95. package/src/models/getconfigurationproductsop.ts +703 -703
  96. package/src/models/getdeploymentop.ts +34 -34
  97. package/src/models/getprojectsop.ts +3255 -300
  98. package/src/models/getwebhookop.ts +12 -11
  99. package/src/models/getwebhooksop.ts +24 -22
  100. package/src/models/listaccessgroupsop.ts +4 -7
  101. package/src/models/readaccessgroupop.ts +42 -7
  102. package/src/models/team.ts +47 -28
  103. package/src/models/updateprojectdatacacheop.ts +3184 -307
  104. package/src/models/updateprojectop.ts +3290 -298
  105. package/vercel-spec.json +4895 -2034
@@ -606,7 +606,7 @@ export type LatestDeployments = {
606
606
  withCache?: boolean | undefined;
607
607
  };
608
608
  export declare const UpdateProjectDataCacheLinkProjectsResponse200Type: {
609
- readonly GithubCustomHost: "github-custom-host";
609
+ readonly Bitbucket: "bitbucket";
610
610
  };
611
611
  export type UpdateProjectDataCacheLinkProjectsResponse200Type = ClosedEnum<typeof UpdateProjectDataCacheLinkProjectsResponse200Type>;
612
612
  export type UpdateProjectDataCacheLinkProjectsResponseDeployHooks = {
@@ -617,15 +617,12 @@ export type UpdateProjectDataCacheLinkProjectsResponseDeployHooks = {
617
617
  url: string;
618
618
  };
619
619
  export type Link5 = {
620
- org: string;
621
- /**
622
- * 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.
623
- */
624
- repoOwnerId?: number | undefined;
625
- repo?: string | undefined;
626
- repoId?: number | undefined;
620
+ name: string;
621
+ slug: string;
622
+ owner: string;
627
623
  type: UpdateProjectDataCacheLinkProjectsResponse200Type;
628
- host: string;
624
+ uuid: string;
625
+ workspaceUuid: string;
629
626
  createdAt?: number | undefined;
630
627
  deployHooks: Array<UpdateProjectDataCacheLinkProjectsResponseDeployHooks>;
631
628
  gitCredentialId: string;
@@ -634,7 +631,7 @@ export type Link5 = {
634
631
  productionBranch: string;
635
632
  };
636
633
  export declare const UpdateProjectDataCacheLinkProjectsResponseType: {
637
- readonly Bitbucket: "bitbucket";
634
+ readonly Gitlab: "gitlab";
638
635
  };
639
636
  export type UpdateProjectDataCacheLinkProjectsResponseType = ClosedEnum<typeof UpdateProjectDataCacheLinkProjectsResponseType>;
640
637
  export type UpdateProjectDataCacheLinkProjectsDeployHooks = {
@@ -645,12 +642,16 @@ export type UpdateProjectDataCacheLinkProjectsDeployHooks = {
645
642
  url: string;
646
643
  };
647
644
  export type Link4 = {
648
- name: string;
649
- slug: string;
650
- owner: string;
645
+ projectId: string;
646
+ projectName: string;
647
+ projectNameWithNamespace: string;
648
+ projectNamespace: string;
649
+ /**
650
+ * 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).
651
+ */
652
+ projectOwnerId?: number | undefined;
653
+ projectUrl: string;
651
654
  type: UpdateProjectDataCacheLinkProjectsResponseType;
652
- uuid: string;
653
- workspaceUuid: string;
654
655
  createdAt?: number | undefined;
655
656
  deployHooks: Array<UpdateProjectDataCacheLinkProjectsDeployHooks>;
656
657
  gitCredentialId: string;
@@ -659,7 +660,7 @@ export type Link4 = {
659
660
  productionBranch: string;
660
661
  };
661
662
  export declare const UpdateProjectDataCacheLinkProjectsType: {
662
- readonly Gitlab: "gitlab";
663
+ readonly GithubCustomHost: "github-custom-host";
663
664
  };
664
665
  export type UpdateProjectDataCacheLinkProjectsType = ClosedEnum<typeof UpdateProjectDataCacheLinkProjectsType>;
665
666
  export type UpdateProjectDataCacheLinkDeployHooks = {
@@ -670,16 +671,15 @@ export type UpdateProjectDataCacheLinkDeployHooks = {
670
671
  url: string;
671
672
  };
672
673
  export type Link3 = {
673
- projectId: string;
674
- projectName: string;
675
- projectNameWithNamespace: string;
676
- projectNamespace: string;
674
+ org: string;
677
675
  /**
678
- * 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).
676
+ * 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.
679
677
  */
680
- projectOwnerId?: number | undefined;
681
- projectUrl: string;
678
+ repoOwnerId?: number | undefined;
679
+ repo?: string | undefined;
680
+ repoId?: number | undefined;
682
681
  type: UpdateProjectDataCacheLinkProjectsType;
682
+ host: string;
683
683
  createdAt?: number | undefined;
684
684
  deployHooks: Array<UpdateProjectDataCacheLinkDeployHooks>;
685
685
  gitCredentialId: string;
@@ -741,7 +741,7 @@ export type Link1 = {
741
741
  sourceless?: boolean | undefined;
742
742
  productionBranch: string;
743
743
  };
744
- export type Link = Link3 | Link4 | Link5 | Link1 | Link2;
744
+ export type Link = Link4 | Link5 | Link3 | Link1 | Link2;
745
745
  export type UpdateProjectDataCacheMicrofrontends2 = {
746
746
  updatedAt: number;
747
747
  groupIds: Array<any>;
@@ -1117,6 +1117,7 @@ export type Permissions = {
1117
1117
  notificationCustomerBudget?: Array<ACLAction> | undefined;
1118
1118
  notificationStatementOfReasons?: Array<ACLAction> | undefined;
1119
1119
  observabilityConfiguration?: Array<ACLAction> | undefined;
1120
+ alerts?: Array<ACLAction> | undefined;
1120
1121
  observabilityNotebook?: Array<ACLAction> | undefined;
1121
1122
  observabilityFunnel?: Array<ACLAction> | undefined;
1122
1123
  openTelemetryEndpoint?: Array<ACLAction> | undefined;
@@ -1372,15 +1373,15 @@ export type BotFilter = {
1372
1373
  active: boolean;
1373
1374
  action?: UpdateProjectDataCacheProjectsResponseAction | undefined;
1374
1375
  };
1375
- export declare const UpdateProjectDataCacheAction: {
1376
+ export declare const UpdateProjectDataCacheProjectsResponse200Action: {
1376
1377
  readonly Log: "log";
1377
1378
  readonly Challenge: "challenge";
1378
1379
  readonly Deny: "deny";
1379
1380
  };
1380
- export type UpdateProjectDataCacheAction = ClosedEnum<typeof UpdateProjectDataCacheAction>;
1381
+ export type UpdateProjectDataCacheProjectsResponse200Action = ClosedEnum<typeof UpdateProjectDataCacheProjectsResponse200Action>;
1381
1382
  export type UpdateProjectDataCacheAiBots = {
1382
1383
  active: boolean;
1383
- action?: UpdateProjectDataCacheAction | undefined;
1384
+ action?: UpdateProjectDataCacheProjectsResponse200Action | undefined;
1384
1385
  };
1385
1386
  export declare const UpdateProjectDataCacheProjectsAction: {
1386
1387
  readonly Log: "log";
@@ -1441,6 +1442,224 @@ export type UpdateProjectDataCacheTier = ClosedEnum<typeof UpdateProjectDataCach
1441
1442
  export type Features = {
1442
1443
  webAnalytics?: boolean | undefined;
1443
1444
  };
1445
+ export type UpdateProjectDataCacheHistory = {
1446
+ scanner: string;
1447
+ reason: string;
1448
+ by: string;
1449
+ byId: string;
1450
+ at: number;
1451
+ };
1452
+ export declare const UpdateProjectDataCacheAction: {
1453
+ readonly Blocked: "blocked";
1454
+ };
1455
+ export type UpdateProjectDataCacheAction = ClosedEnum<typeof UpdateProjectDataCacheAction>;
1456
+ export type Block = {
1457
+ action: UpdateProjectDataCacheAction;
1458
+ reason: string;
1459
+ statusCode: number;
1460
+ createdAt: number;
1461
+ caseId?: string | undefined;
1462
+ actor?: string | undefined;
1463
+ comment?: string | undefined;
1464
+ isCascading?: boolean | undefined;
1465
+ };
1466
+ export declare const UpdateProjectDataCacheBlockHistoryProjectsResponseAction: {
1467
+ readonly RouteUnblocked: "route-unblocked";
1468
+ };
1469
+ export type UpdateProjectDataCacheBlockHistoryProjectsResponseAction = ClosedEnum<typeof UpdateProjectDataCacheBlockHistoryProjectsResponseAction>;
1470
+ export declare const UpdateProjectDataCacheHasProjectsResponseType: {
1471
+ readonly Host: "host";
1472
+ };
1473
+ export type UpdateProjectDataCacheHasProjectsResponseType = ClosedEnum<typeof UpdateProjectDataCacheHasProjectsResponseType>;
1474
+ export type UpdateProjectDataCacheHasProjectsValue = {
1475
+ eq: string;
1476
+ };
1477
+ export type UpdateProjectDataCacheHas2 = {
1478
+ type: UpdateProjectDataCacheHasProjectsResponseType;
1479
+ value: UpdateProjectDataCacheHasProjectsValue;
1480
+ };
1481
+ export declare const UpdateProjectDataCacheHasProjectsType: {
1482
+ readonly Header: "header";
1483
+ };
1484
+ export type UpdateProjectDataCacheHasProjectsType = ClosedEnum<typeof UpdateProjectDataCacheHasProjectsType>;
1485
+ export declare const UpdateProjectDataCacheHasProjectsKey: {
1486
+ readonly XVercelIpCountry: "x-vercel-ip-country";
1487
+ };
1488
+ export type UpdateProjectDataCacheHasProjectsKey = ClosedEnum<typeof UpdateProjectDataCacheHasProjectsKey>;
1489
+ export type UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONValue = {
1490
+ eq: string;
1491
+ };
1492
+ export type UpdateProjectDataCacheHas1 = {
1493
+ type: UpdateProjectDataCacheHasProjectsType;
1494
+ key: UpdateProjectDataCacheHasProjectsKey;
1495
+ value: UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONValue;
1496
+ };
1497
+ export type RouteHas = UpdateProjectDataCacheHas1 | UpdateProjectDataCacheHas2;
1498
+ export declare const UpdateProjectDataCacheRouteAction: {
1499
+ readonly BlockLegalCwc: "block_legal_cwc";
1500
+ };
1501
+ export type UpdateProjectDataCacheRouteAction = ClosedEnum<typeof UpdateProjectDataCacheRouteAction>;
1502
+ export type RouteMitigate = {
1503
+ action: UpdateProjectDataCacheRouteAction;
1504
+ };
1505
+ export type UpdateProjectDataCacheRoute2 = {
1506
+ has: Array<UpdateProjectDataCacheHas1 | UpdateProjectDataCacheHas2>;
1507
+ mitigate: RouteMitigate;
1508
+ src?: string | undefined;
1509
+ };
1510
+ export type UpdateProjectDataCacheRoute1 = {
1511
+ src: string;
1512
+ status: number;
1513
+ };
1514
+ export type BlockHistoryRoute = UpdateProjectDataCacheRoute1 | UpdateProjectDataCacheRoute2;
1515
+ export type BlockHistory4 = {
1516
+ action: UpdateProjectDataCacheBlockHistoryProjectsResponseAction;
1517
+ route: UpdateProjectDataCacheRoute1 | UpdateProjectDataCacheRoute2;
1518
+ statusCode?: number | undefined;
1519
+ createdAt: number;
1520
+ caseId?: string | undefined;
1521
+ actor?: string | undefined;
1522
+ comment?: string | undefined;
1523
+ isCascading?: boolean | undefined;
1524
+ };
1525
+ export declare const UpdateProjectDataCacheBlockHistoryProjectsAction: {
1526
+ readonly RouteBlocked: "route-blocked";
1527
+ };
1528
+ export type UpdateProjectDataCacheBlockHistoryProjectsAction = ClosedEnum<typeof UpdateProjectDataCacheBlockHistoryProjectsAction>;
1529
+ export declare const UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONType: {
1530
+ readonly Host: "host";
1531
+ };
1532
+ export type UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONType = ClosedEnum<typeof UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONType>;
1533
+ export type UpdateProjectDataCacheHasProjectsResponse200Value = {
1534
+ eq: string;
1535
+ };
1536
+ export type UpdateProjectDataCacheHasProjects2 = {
1537
+ type: UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONType;
1538
+ value: UpdateProjectDataCacheHasProjectsResponse200Value;
1539
+ };
1540
+ export declare const UpdateProjectDataCacheHasProjectsResponse200Type: {
1541
+ readonly Header: "header";
1542
+ };
1543
+ export type UpdateProjectDataCacheHasProjectsResponse200Type = ClosedEnum<typeof UpdateProjectDataCacheHasProjectsResponse200Type>;
1544
+ export declare const UpdateProjectDataCacheHasKey: {
1545
+ readonly XVercelIpCountry: "x-vercel-ip-country";
1546
+ };
1547
+ export type UpdateProjectDataCacheHasKey = ClosedEnum<typeof UpdateProjectDataCacheHasKey>;
1548
+ export type UpdateProjectDataCacheHasProjectsResponseValue = {
1549
+ eq: string;
1550
+ };
1551
+ export type UpdateProjectDataCacheHasProjects1 = {
1552
+ type: UpdateProjectDataCacheHasProjectsResponse200Type;
1553
+ key: UpdateProjectDataCacheHasKey;
1554
+ value: UpdateProjectDataCacheHasProjectsResponseValue;
1555
+ };
1556
+ export type UpdateProjectDataCacheRouteHas = UpdateProjectDataCacheHasProjects1 | UpdateProjectDataCacheHasProjects2;
1557
+ export declare const RouteAction: {
1558
+ readonly BlockLegalCwc: "block_legal_cwc";
1559
+ };
1560
+ export type RouteAction = ClosedEnum<typeof RouteAction>;
1561
+ export type UpdateProjectDataCacheRouteMitigate = {
1562
+ action: RouteAction;
1563
+ };
1564
+ export type Route2 = {
1565
+ has: Array<UpdateProjectDataCacheHasProjects1 | UpdateProjectDataCacheHasProjects2>;
1566
+ mitigate: UpdateProjectDataCacheRouteMitigate;
1567
+ src?: string | undefined;
1568
+ };
1569
+ export type Route1 = {
1570
+ src: string;
1571
+ status: number;
1572
+ };
1573
+ export type Route = Route1 | Route2;
1574
+ export type BlockHistory3 = {
1575
+ action: UpdateProjectDataCacheBlockHistoryProjectsAction;
1576
+ route: Route1 | Route2;
1577
+ reason: string;
1578
+ createdAt: number;
1579
+ caseId?: string | undefined;
1580
+ actor?: string | undefined;
1581
+ comment?: string | undefined;
1582
+ isCascading?: boolean | undefined;
1583
+ };
1584
+ export declare const UpdateProjectDataCacheBlockHistoryAction: {
1585
+ readonly Unblocked: "unblocked";
1586
+ };
1587
+ export type UpdateProjectDataCacheBlockHistoryAction = ClosedEnum<typeof UpdateProjectDataCacheBlockHistoryAction>;
1588
+ export type BlockHistory2 = {
1589
+ action: UpdateProjectDataCacheBlockHistoryAction;
1590
+ createdAt: number;
1591
+ caseId?: string | undefined;
1592
+ actor?: string | undefined;
1593
+ comment?: string | undefined;
1594
+ isCascading?: boolean | undefined;
1595
+ };
1596
+ export declare const BlockHistoryAction: {
1597
+ readonly Blocked: "blocked";
1598
+ };
1599
+ export type BlockHistoryAction = ClosedEnum<typeof BlockHistoryAction>;
1600
+ export type BlockHistory1 = {
1601
+ action: BlockHistoryAction;
1602
+ reason: string;
1603
+ statusCode: number;
1604
+ createdAt: number;
1605
+ caseId?: string | undefined;
1606
+ actor?: string | undefined;
1607
+ comment?: string | undefined;
1608
+ isCascading?: boolean | undefined;
1609
+ };
1610
+ export type UpdateProjectDataCacheBlockHistory = BlockHistory1 | BlockHistory3 | BlockHistory4 | BlockHistory2;
1611
+ export type UpdateProjectDataCacheAbuse = {
1612
+ scanner?: string | undefined;
1613
+ history: Array<UpdateProjectDataCacheHistory>;
1614
+ updatedAt: number;
1615
+ block?: Block | undefined;
1616
+ blockHistory?: Array<BlockHistory1 | BlockHistory3 | BlockHistory4 | BlockHistory2> | undefined;
1617
+ };
1618
+ export declare const UpdateProjectDataCacheHasType: {
1619
+ readonly Host: "host";
1620
+ };
1621
+ export type UpdateProjectDataCacheHasType = ClosedEnum<typeof UpdateProjectDataCacheHasType>;
1622
+ export type HasValue = {
1623
+ eq: string;
1624
+ };
1625
+ export type Has2 = {
1626
+ type: UpdateProjectDataCacheHasType;
1627
+ value: HasValue;
1628
+ };
1629
+ export declare const HasType: {
1630
+ readonly Header: "header";
1631
+ };
1632
+ export type HasType = ClosedEnum<typeof HasType>;
1633
+ export declare const Key: {
1634
+ readonly XVercelIpCountry: "x-vercel-ip-country";
1635
+ };
1636
+ export type Key = ClosedEnum<typeof Key>;
1637
+ export type UpdateProjectDataCacheHasValue = {
1638
+ eq: string;
1639
+ };
1640
+ export type Has1 = {
1641
+ type: HasType;
1642
+ key: Key;
1643
+ value: UpdateProjectDataCacheHasValue;
1644
+ };
1645
+ export type Has = Has1 | Has2;
1646
+ export declare const InternalRoutesAction: {
1647
+ readonly BlockLegalCwc: "block_legal_cwc";
1648
+ };
1649
+ export type InternalRoutesAction = ClosedEnum<typeof InternalRoutesAction>;
1650
+ export type UpdateProjectDataCacheInternalRoutesMitigate = {
1651
+ action: InternalRoutesAction;
1652
+ };
1653
+ export type InternalRoutes2 = {
1654
+ has: Array<Has1 | Has2>;
1655
+ mitigate: UpdateProjectDataCacheInternalRoutesMitigate;
1656
+ src?: string | undefined;
1657
+ };
1658
+ export type InternalRoutes1 = {
1659
+ src: string;
1660
+ status: number;
1661
+ };
1662
+ export type InternalRoutes = InternalRoutes1 | InternalRoutes2;
1444
1663
  export type UpdateProjectDataCacheResponseBody = {
1445
1664
  accountId: string;
1446
1665
  analytics?: Analytics | undefined;
@@ -1473,7 +1692,7 @@ export type UpdateProjectDataCacheResponseBody = {
1473
1692
  id: string;
1474
1693
  ipBuckets?: Array<UpdateProjectDataCacheIpBuckets> | undefined;
1475
1694
  latestDeployments?: Array<LatestDeployments> | undefined;
1476
- link?: Link3 | Link4 | Link5 | Link1 | Link2 | undefined;
1695
+ link?: Link4 | Link5 | Link3 | Link1 | Link2 | undefined;
1477
1696
  microfrontends?: UpdateProjectDataCacheMicrofrontends1 | UpdateProjectDataCacheMicrofrontends2 | undefined;
1478
1697
  name: string;
1479
1698
  nodeVersion: UpdateProjectDataCacheNodeVersion;
@@ -1529,6 +1748,8 @@ export type UpdateProjectDataCacheResponseBody = {
1529
1748
  tier?: UpdateProjectDataCacheTier | undefined;
1530
1749
  features?: Features | undefined;
1531
1750
  v0?: boolean | undefined;
1751
+ abuse?: UpdateProjectDataCacheAbuse | undefined;
1752
+ internalRoutes?: Array<InternalRoutes1 | InternalRoutes2> | undefined;
1532
1753
  };
1533
1754
  /** @internal */
1534
1755
  export declare const UpdateProjectDataCacheRequestBody$inboundSchema: z.ZodType<UpdateProjectDataCacheRequestBody, z.ZodTypeDef, unknown>;
@@ -3301,11 +3522,11 @@ export declare const UpdateProjectDataCacheLinkProjectsResponse200Type$outboundS
3301
3522
  export declare namespace UpdateProjectDataCacheLinkProjectsResponse200Type$ {
3302
3523
  /** @deprecated use `UpdateProjectDataCacheLinkProjectsResponse200Type$inboundSchema` instead. */
3303
3524
  const inboundSchema: z.ZodNativeEnum<{
3304
- readonly GithubCustomHost: "github-custom-host";
3525
+ readonly Bitbucket: "bitbucket";
3305
3526
  }>;
3306
3527
  /** @deprecated use `UpdateProjectDataCacheLinkProjectsResponse200Type$outboundSchema` instead. */
3307
3528
  const outboundSchema: z.ZodNativeEnum<{
3308
- readonly GithubCustomHost: "github-custom-host";
3529
+ readonly Bitbucket: "bitbucket";
3309
3530
  }>;
3310
3531
  }
3311
3532
  /** @internal */
@@ -3338,12 +3559,12 @@ export declare function updateProjectDataCacheLinkProjectsResponseDeployHooksFro
3338
3559
  export declare const Link5$inboundSchema: z.ZodType<Link5, z.ZodTypeDef, unknown>;
3339
3560
  /** @internal */
3340
3561
  export type Link5$Outbound = {
3341
- org: string;
3342
- repoOwnerId?: number | undefined;
3343
- repo?: string | undefined;
3344
- repoId?: number | undefined;
3562
+ name: string;
3563
+ slug: string;
3564
+ owner: string;
3345
3565
  type: string;
3346
- host: string;
3566
+ uuid: string;
3567
+ workspaceUuid: string;
3347
3568
  createdAt?: number | undefined;
3348
3569
  deployHooks: Array<UpdateProjectDataCacheLinkProjectsResponseDeployHooks$Outbound>;
3349
3570
  gitCredentialId: string;
@@ -3378,11 +3599,11 @@ export declare const UpdateProjectDataCacheLinkProjectsResponseType$outboundSche
3378
3599
  export declare namespace UpdateProjectDataCacheLinkProjectsResponseType$ {
3379
3600
  /** @deprecated use `UpdateProjectDataCacheLinkProjectsResponseType$inboundSchema` instead. */
3380
3601
  const inboundSchema: z.ZodNativeEnum<{
3381
- readonly Bitbucket: "bitbucket";
3602
+ readonly Gitlab: "gitlab";
3382
3603
  }>;
3383
3604
  /** @deprecated use `UpdateProjectDataCacheLinkProjectsResponseType$outboundSchema` instead. */
3384
3605
  const outboundSchema: z.ZodNativeEnum<{
3385
- readonly Bitbucket: "bitbucket";
3606
+ readonly Gitlab: "gitlab";
3386
3607
  }>;
3387
3608
  }
3388
3609
  /** @internal */
@@ -3415,12 +3636,13 @@ export declare function updateProjectDataCacheLinkProjectsDeployHooksFromJSON(js
3415
3636
  export declare const Link4$inboundSchema: z.ZodType<Link4, z.ZodTypeDef, unknown>;
3416
3637
  /** @internal */
3417
3638
  export type Link4$Outbound = {
3418
- name: string;
3419
- slug: string;
3420
- owner: string;
3639
+ projectId: string;
3640
+ projectName: string;
3641
+ projectNameWithNamespace: string;
3642
+ projectNamespace: string;
3643
+ projectOwnerId?: number | undefined;
3644
+ projectUrl: string;
3421
3645
  type: string;
3422
- uuid: string;
3423
- workspaceUuid: string;
3424
3646
  createdAt?: number | undefined;
3425
3647
  deployHooks: Array<UpdateProjectDataCacheLinkProjectsDeployHooks$Outbound>;
3426
3648
  gitCredentialId: string;
@@ -3455,11 +3677,11 @@ export declare const UpdateProjectDataCacheLinkProjectsType$outboundSchema: z.Zo
3455
3677
  export declare namespace UpdateProjectDataCacheLinkProjectsType$ {
3456
3678
  /** @deprecated use `UpdateProjectDataCacheLinkProjectsType$inboundSchema` instead. */
3457
3679
  const inboundSchema: z.ZodNativeEnum<{
3458
- readonly Gitlab: "gitlab";
3680
+ readonly GithubCustomHost: "github-custom-host";
3459
3681
  }>;
3460
3682
  /** @deprecated use `UpdateProjectDataCacheLinkProjectsType$outboundSchema` instead. */
3461
3683
  const outboundSchema: z.ZodNativeEnum<{
3462
- readonly Gitlab: "gitlab";
3684
+ readonly GithubCustomHost: "github-custom-host";
3463
3685
  }>;
3464
3686
  }
3465
3687
  /** @internal */
@@ -3492,13 +3714,12 @@ export declare function updateProjectDataCacheLinkDeployHooksFromJSON(jsonString
3492
3714
  export declare const Link3$inboundSchema: z.ZodType<Link3, z.ZodTypeDef, unknown>;
3493
3715
  /** @internal */
3494
3716
  export type Link3$Outbound = {
3495
- projectId: string;
3496
- projectName: string;
3497
- projectNameWithNamespace: string;
3498
- projectNamespace: string;
3499
- projectOwnerId?: number | undefined;
3500
- projectUrl: string;
3717
+ org: string;
3718
+ repoOwnerId?: number | undefined;
3719
+ repo?: string | undefined;
3720
+ repoId?: number | undefined;
3501
3721
  type: string;
3722
+ host: string;
3502
3723
  createdAt?: number | undefined;
3503
3724
  deployHooks: Array<UpdateProjectDataCacheLinkDeployHooks$Outbound>;
3504
3725
  gitCredentialId: string;
@@ -3677,7 +3898,7 @@ export declare function link1FromJSON(jsonString: string): SafeParseResult<Link1
3677
3898
  /** @internal */
3678
3899
  export declare const Link$inboundSchema: z.ZodType<Link, z.ZodTypeDef, unknown>;
3679
3900
  /** @internal */
3680
- export type Link$Outbound = Link3$Outbound | Link4$Outbound | Link5$Outbound | Link1$Outbound | Link2$Outbound;
3901
+ export type Link$Outbound = Link4$Outbound | Link5$Outbound | Link3$Outbound | Link1$Outbound | Link2$Outbound;
3681
3902
  /** @internal */
3682
3903
  export declare const Link$outboundSchema: z.ZodType<Link$Outbound, z.ZodTypeDef, Link>;
3683
3904
  /**
@@ -4575,6 +4796,7 @@ export type Permissions$Outbound = {
4575
4796
  notificationCustomerBudget?: Array<string> | undefined;
4576
4797
  notificationStatementOfReasons?: Array<string> | undefined;
4577
4798
  observabilityConfiguration?: Array<string> | undefined;
4799
+ alerts?: Array<string> | undefined;
4578
4800
  observabilityNotebook?: Array<string> | undefined;
4579
4801
  observabilityFunnel?: Array<string> | undefined;
4580
4802
  openTelemetryEndpoint?: Array<string> | undefined;
@@ -5216,21 +5438,21 @@ export declare namespace BotFilter$ {
5216
5438
  export declare function botFilterToJSON(botFilter: BotFilter): string;
5217
5439
  export declare function botFilterFromJSON(jsonString: string): SafeParseResult<BotFilter, SDKValidationError>;
5218
5440
  /** @internal */
5219
- export declare const UpdateProjectDataCacheAction$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheAction>;
5441
+ export declare const UpdateProjectDataCacheProjectsResponse200Action$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheProjectsResponse200Action>;
5220
5442
  /** @internal */
5221
- export declare const UpdateProjectDataCacheAction$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheAction>;
5443
+ export declare const UpdateProjectDataCacheProjectsResponse200Action$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheProjectsResponse200Action>;
5222
5444
  /**
5223
5445
  * @internal
5224
5446
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5225
5447
  */
5226
- export declare namespace UpdateProjectDataCacheAction$ {
5227
- /** @deprecated use `UpdateProjectDataCacheAction$inboundSchema` instead. */
5448
+ export declare namespace UpdateProjectDataCacheProjectsResponse200Action$ {
5449
+ /** @deprecated use `UpdateProjectDataCacheProjectsResponse200Action$inboundSchema` instead. */
5228
5450
  const inboundSchema: z.ZodNativeEnum<{
5229
5451
  readonly Log: "log";
5230
5452
  readonly Challenge: "challenge";
5231
5453
  readonly Deny: "deny";
5232
5454
  }>;
5233
- /** @deprecated use `UpdateProjectDataCacheAction$outboundSchema` instead. */
5455
+ /** @deprecated use `UpdateProjectDataCacheProjectsResponse200Action$outboundSchema` instead. */
5234
5456
  const outboundSchema: z.ZodNativeEnum<{
5235
5457
  readonly Log: "log";
5236
5458
  readonly Challenge: "challenge";
@@ -5450,6 +5672,1127 @@ export declare namespace Features$ {
5450
5672
  export declare function featuresToJSON(features: Features): string;
5451
5673
  export declare function featuresFromJSON(jsonString: string): SafeParseResult<Features, SDKValidationError>;
5452
5674
  /** @internal */
5675
+ export declare const UpdateProjectDataCacheHistory$inboundSchema: z.ZodType<UpdateProjectDataCacheHistory, z.ZodTypeDef, unknown>;
5676
+ /** @internal */
5677
+ export type UpdateProjectDataCacheHistory$Outbound = {
5678
+ scanner: string;
5679
+ reason: string;
5680
+ by: string;
5681
+ byId: string;
5682
+ at: number;
5683
+ };
5684
+ /** @internal */
5685
+ export declare const UpdateProjectDataCacheHistory$outboundSchema: z.ZodType<UpdateProjectDataCacheHistory$Outbound, z.ZodTypeDef, UpdateProjectDataCacheHistory>;
5686
+ /**
5687
+ * @internal
5688
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5689
+ */
5690
+ export declare namespace UpdateProjectDataCacheHistory$ {
5691
+ /** @deprecated use `UpdateProjectDataCacheHistory$inboundSchema` instead. */
5692
+ const inboundSchema: z.ZodType<UpdateProjectDataCacheHistory, z.ZodTypeDef, unknown>;
5693
+ /** @deprecated use `UpdateProjectDataCacheHistory$outboundSchema` instead. */
5694
+ const outboundSchema: z.ZodType<UpdateProjectDataCacheHistory$Outbound, z.ZodTypeDef, UpdateProjectDataCacheHistory>;
5695
+ /** @deprecated use `UpdateProjectDataCacheHistory$Outbound` instead. */
5696
+ type Outbound = UpdateProjectDataCacheHistory$Outbound;
5697
+ }
5698
+ export declare function updateProjectDataCacheHistoryToJSON(updateProjectDataCacheHistory: UpdateProjectDataCacheHistory): string;
5699
+ export declare function updateProjectDataCacheHistoryFromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheHistory, SDKValidationError>;
5700
+ /** @internal */
5701
+ export declare const UpdateProjectDataCacheAction$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheAction>;
5702
+ /** @internal */
5703
+ export declare const UpdateProjectDataCacheAction$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheAction>;
5704
+ /**
5705
+ * @internal
5706
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5707
+ */
5708
+ export declare namespace UpdateProjectDataCacheAction$ {
5709
+ /** @deprecated use `UpdateProjectDataCacheAction$inboundSchema` instead. */
5710
+ const inboundSchema: z.ZodNativeEnum<{
5711
+ readonly Blocked: "blocked";
5712
+ }>;
5713
+ /** @deprecated use `UpdateProjectDataCacheAction$outboundSchema` instead. */
5714
+ const outboundSchema: z.ZodNativeEnum<{
5715
+ readonly Blocked: "blocked";
5716
+ }>;
5717
+ }
5718
+ /** @internal */
5719
+ export declare const Block$inboundSchema: z.ZodType<Block, z.ZodTypeDef, unknown>;
5720
+ /** @internal */
5721
+ export type Block$Outbound = {
5722
+ action: string;
5723
+ reason: string;
5724
+ statusCode: number;
5725
+ createdAt: number;
5726
+ caseId?: string | undefined;
5727
+ actor?: string | undefined;
5728
+ comment?: string | undefined;
5729
+ isCascading?: boolean | undefined;
5730
+ };
5731
+ /** @internal */
5732
+ export declare const Block$outboundSchema: z.ZodType<Block$Outbound, z.ZodTypeDef, Block>;
5733
+ /**
5734
+ * @internal
5735
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5736
+ */
5737
+ export declare namespace Block$ {
5738
+ /** @deprecated use `Block$inboundSchema` instead. */
5739
+ const inboundSchema: z.ZodType<Block, z.ZodTypeDef, unknown>;
5740
+ /** @deprecated use `Block$outboundSchema` instead. */
5741
+ const outboundSchema: z.ZodType<Block$Outbound, z.ZodTypeDef, Block>;
5742
+ /** @deprecated use `Block$Outbound` instead. */
5743
+ type Outbound = Block$Outbound;
5744
+ }
5745
+ export declare function blockToJSON(block: Block): string;
5746
+ export declare function blockFromJSON(jsonString: string): SafeParseResult<Block, SDKValidationError>;
5747
+ /** @internal */
5748
+ export declare const UpdateProjectDataCacheBlockHistoryProjectsResponseAction$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheBlockHistoryProjectsResponseAction>;
5749
+ /** @internal */
5750
+ export declare const UpdateProjectDataCacheBlockHistoryProjectsResponseAction$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheBlockHistoryProjectsResponseAction>;
5751
+ /**
5752
+ * @internal
5753
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5754
+ */
5755
+ export declare namespace UpdateProjectDataCacheBlockHistoryProjectsResponseAction$ {
5756
+ /** @deprecated use `UpdateProjectDataCacheBlockHistoryProjectsResponseAction$inboundSchema` instead. */
5757
+ const inboundSchema: z.ZodNativeEnum<{
5758
+ readonly RouteUnblocked: "route-unblocked";
5759
+ }>;
5760
+ /** @deprecated use `UpdateProjectDataCacheBlockHistoryProjectsResponseAction$outboundSchema` instead. */
5761
+ const outboundSchema: z.ZodNativeEnum<{
5762
+ readonly RouteUnblocked: "route-unblocked";
5763
+ }>;
5764
+ }
5765
+ /** @internal */
5766
+ export declare const UpdateProjectDataCacheHasProjectsResponseType$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheHasProjectsResponseType>;
5767
+ /** @internal */
5768
+ export declare const UpdateProjectDataCacheHasProjectsResponseType$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheHasProjectsResponseType>;
5769
+ /**
5770
+ * @internal
5771
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5772
+ */
5773
+ export declare namespace UpdateProjectDataCacheHasProjectsResponseType$ {
5774
+ /** @deprecated use `UpdateProjectDataCacheHasProjectsResponseType$inboundSchema` instead. */
5775
+ const inboundSchema: z.ZodNativeEnum<{
5776
+ readonly Host: "host";
5777
+ }>;
5778
+ /** @deprecated use `UpdateProjectDataCacheHasProjectsResponseType$outboundSchema` instead. */
5779
+ const outboundSchema: z.ZodNativeEnum<{
5780
+ readonly Host: "host";
5781
+ }>;
5782
+ }
5783
+ /** @internal */
5784
+ export declare const UpdateProjectDataCacheHasProjectsValue$inboundSchema: z.ZodType<UpdateProjectDataCacheHasProjectsValue, z.ZodTypeDef, unknown>;
5785
+ /** @internal */
5786
+ export type UpdateProjectDataCacheHasProjectsValue$Outbound = {
5787
+ eq: string;
5788
+ };
5789
+ /** @internal */
5790
+ export declare const UpdateProjectDataCacheHasProjectsValue$outboundSchema: z.ZodType<UpdateProjectDataCacheHasProjectsValue$Outbound, z.ZodTypeDef, UpdateProjectDataCacheHasProjectsValue>;
5791
+ /**
5792
+ * @internal
5793
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5794
+ */
5795
+ export declare namespace UpdateProjectDataCacheHasProjectsValue$ {
5796
+ /** @deprecated use `UpdateProjectDataCacheHasProjectsValue$inboundSchema` instead. */
5797
+ const inboundSchema: z.ZodType<UpdateProjectDataCacheHasProjectsValue, z.ZodTypeDef, unknown>;
5798
+ /** @deprecated use `UpdateProjectDataCacheHasProjectsValue$outboundSchema` instead. */
5799
+ const outboundSchema: z.ZodType<UpdateProjectDataCacheHasProjectsValue$Outbound, z.ZodTypeDef, UpdateProjectDataCacheHasProjectsValue>;
5800
+ /** @deprecated use `UpdateProjectDataCacheHasProjectsValue$Outbound` instead. */
5801
+ type Outbound = UpdateProjectDataCacheHasProjectsValue$Outbound;
5802
+ }
5803
+ export declare function updateProjectDataCacheHasProjectsValueToJSON(updateProjectDataCacheHasProjectsValue: UpdateProjectDataCacheHasProjectsValue): string;
5804
+ export declare function updateProjectDataCacheHasProjectsValueFromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheHasProjectsValue, SDKValidationError>;
5805
+ /** @internal */
5806
+ export declare const UpdateProjectDataCacheHas2$inboundSchema: z.ZodType<UpdateProjectDataCacheHas2, z.ZodTypeDef, unknown>;
5807
+ /** @internal */
5808
+ export type UpdateProjectDataCacheHas2$Outbound = {
5809
+ type: string;
5810
+ value: UpdateProjectDataCacheHasProjectsValue$Outbound;
5811
+ };
5812
+ /** @internal */
5813
+ export declare const UpdateProjectDataCacheHas2$outboundSchema: z.ZodType<UpdateProjectDataCacheHas2$Outbound, z.ZodTypeDef, UpdateProjectDataCacheHas2>;
5814
+ /**
5815
+ * @internal
5816
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5817
+ */
5818
+ export declare namespace UpdateProjectDataCacheHas2$ {
5819
+ /** @deprecated use `UpdateProjectDataCacheHas2$inboundSchema` instead. */
5820
+ const inboundSchema: z.ZodType<UpdateProjectDataCacheHas2, z.ZodTypeDef, unknown>;
5821
+ /** @deprecated use `UpdateProjectDataCacheHas2$outboundSchema` instead. */
5822
+ const outboundSchema: z.ZodType<UpdateProjectDataCacheHas2$Outbound, z.ZodTypeDef, UpdateProjectDataCacheHas2>;
5823
+ /** @deprecated use `UpdateProjectDataCacheHas2$Outbound` instead. */
5824
+ type Outbound = UpdateProjectDataCacheHas2$Outbound;
5825
+ }
5826
+ export declare function updateProjectDataCacheHas2ToJSON(updateProjectDataCacheHas2: UpdateProjectDataCacheHas2): string;
5827
+ export declare function updateProjectDataCacheHas2FromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheHas2, SDKValidationError>;
5828
+ /** @internal */
5829
+ export declare const UpdateProjectDataCacheHasProjectsType$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheHasProjectsType>;
5830
+ /** @internal */
5831
+ export declare const UpdateProjectDataCacheHasProjectsType$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheHasProjectsType>;
5832
+ /**
5833
+ * @internal
5834
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5835
+ */
5836
+ export declare namespace UpdateProjectDataCacheHasProjectsType$ {
5837
+ /** @deprecated use `UpdateProjectDataCacheHasProjectsType$inboundSchema` instead. */
5838
+ const inboundSchema: z.ZodNativeEnum<{
5839
+ readonly Header: "header";
5840
+ }>;
5841
+ /** @deprecated use `UpdateProjectDataCacheHasProjectsType$outboundSchema` instead. */
5842
+ const outboundSchema: z.ZodNativeEnum<{
5843
+ readonly Header: "header";
5844
+ }>;
5845
+ }
5846
+ /** @internal */
5847
+ export declare const UpdateProjectDataCacheHasProjectsKey$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheHasProjectsKey>;
5848
+ /** @internal */
5849
+ export declare const UpdateProjectDataCacheHasProjectsKey$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheHasProjectsKey>;
5850
+ /**
5851
+ * @internal
5852
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5853
+ */
5854
+ export declare namespace UpdateProjectDataCacheHasProjectsKey$ {
5855
+ /** @deprecated use `UpdateProjectDataCacheHasProjectsKey$inboundSchema` instead. */
5856
+ const inboundSchema: z.ZodNativeEnum<{
5857
+ readonly XVercelIpCountry: "x-vercel-ip-country";
5858
+ }>;
5859
+ /** @deprecated use `UpdateProjectDataCacheHasProjectsKey$outboundSchema` instead. */
5860
+ const outboundSchema: z.ZodNativeEnum<{
5861
+ readonly XVercelIpCountry: "x-vercel-ip-country";
5862
+ }>;
5863
+ }
5864
+ /** @internal */
5865
+ export declare const UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONValue$inboundSchema: z.ZodType<UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONValue, z.ZodTypeDef, unknown>;
5866
+ /** @internal */
5867
+ export type UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONValue$Outbound = {
5868
+ eq: string;
5869
+ };
5870
+ /** @internal */
5871
+ export declare const UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONValue$outboundSchema: z.ZodType<UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONValue$Outbound, z.ZodTypeDef, UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONValue>;
5872
+ /**
5873
+ * @internal
5874
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5875
+ */
5876
+ export declare namespace UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONValue$ {
5877
+ /** @deprecated use `UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONValue$inboundSchema` instead. */
5878
+ const inboundSchema: z.ZodType<UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONValue, z.ZodTypeDef, unknown>;
5879
+ /** @deprecated use `UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONValue$outboundSchema` instead. */
5880
+ const outboundSchema: z.ZodType<UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONValue$Outbound, z.ZodTypeDef, UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONValue>;
5881
+ /** @deprecated use `UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONValue$Outbound` instead. */
5882
+ type Outbound = UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONValue$Outbound;
5883
+ }
5884
+ export declare function updateProjectDataCacheHasProjectsResponse200ApplicationJSONValueToJSON(updateProjectDataCacheHasProjectsResponse200ApplicationJSONValue: UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONValue): string;
5885
+ export declare function updateProjectDataCacheHasProjectsResponse200ApplicationJSONValueFromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONValue, SDKValidationError>;
5886
+ /** @internal */
5887
+ export declare const UpdateProjectDataCacheHas1$inboundSchema: z.ZodType<UpdateProjectDataCacheHas1, z.ZodTypeDef, unknown>;
5888
+ /** @internal */
5889
+ export type UpdateProjectDataCacheHas1$Outbound = {
5890
+ type: string;
5891
+ key: string;
5892
+ value: UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONValue$Outbound;
5893
+ };
5894
+ /** @internal */
5895
+ export declare const UpdateProjectDataCacheHas1$outboundSchema: z.ZodType<UpdateProjectDataCacheHas1$Outbound, z.ZodTypeDef, UpdateProjectDataCacheHas1>;
5896
+ /**
5897
+ * @internal
5898
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5899
+ */
5900
+ export declare namespace UpdateProjectDataCacheHas1$ {
5901
+ /** @deprecated use `UpdateProjectDataCacheHas1$inboundSchema` instead. */
5902
+ const inboundSchema: z.ZodType<UpdateProjectDataCacheHas1, z.ZodTypeDef, unknown>;
5903
+ /** @deprecated use `UpdateProjectDataCacheHas1$outboundSchema` instead. */
5904
+ const outboundSchema: z.ZodType<UpdateProjectDataCacheHas1$Outbound, z.ZodTypeDef, UpdateProjectDataCacheHas1>;
5905
+ /** @deprecated use `UpdateProjectDataCacheHas1$Outbound` instead. */
5906
+ type Outbound = UpdateProjectDataCacheHas1$Outbound;
5907
+ }
5908
+ export declare function updateProjectDataCacheHas1ToJSON(updateProjectDataCacheHas1: UpdateProjectDataCacheHas1): string;
5909
+ export declare function updateProjectDataCacheHas1FromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheHas1, SDKValidationError>;
5910
+ /** @internal */
5911
+ export declare const RouteHas$inboundSchema: z.ZodType<RouteHas, z.ZodTypeDef, unknown>;
5912
+ /** @internal */
5913
+ export type RouteHas$Outbound = UpdateProjectDataCacheHas1$Outbound | UpdateProjectDataCacheHas2$Outbound;
5914
+ /** @internal */
5915
+ export declare const RouteHas$outboundSchema: z.ZodType<RouteHas$Outbound, z.ZodTypeDef, RouteHas>;
5916
+ /**
5917
+ * @internal
5918
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5919
+ */
5920
+ export declare namespace RouteHas$ {
5921
+ /** @deprecated use `RouteHas$inboundSchema` instead. */
5922
+ const inboundSchema: z.ZodType<RouteHas, z.ZodTypeDef, unknown>;
5923
+ /** @deprecated use `RouteHas$outboundSchema` instead. */
5924
+ const outboundSchema: z.ZodType<RouteHas$Outbound, z.ZodTypeDef, RouteHas>;
5925
+ /** @deprecated use `RouteHas$Outbound` instead. */
5926
+ type Outbound = RouteHas$Outbound;
5927
+ }
5928
+ export declare function routeHasToJSON(routeHas: RouteHas): string;
5929
+ export declare function routeHasFromJSON(jsonString: string): SafeParseResult<RouteHas, SDKValidationError>;
5930
+ /** @internal */
5931
+ export declare const UpdateProjectDataCacheRouteAction$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheRouteAction>;
5932
+ /** @internal */
5933
+ export declare const UpdateProjectDataCacheRouteAction$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheRouteAction>;
5934
+ /**
5935
+ * @internal
5936
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5937
+ */
5938
+ export declare namespace UpdateProjectDataCacheRouteAction$ {
5939
+ /** @deprecated use `UpdateProjectDataCacheRouteAction$inboundSchema` instead. */
5940
+ const inboundSchema: z.ZodNativeEnum<{
5941
+ readonly BlockLegalCwc: "block_legal_cwc";
5942
+ }>;
5943
+ /** @deprecated use `UpdateProjectDataCacheRouteAction$outboundSchema` instead. */
5944
+ const outboundSchema: z.ZodNativeEnum<{
5945
+ readonly BlockLegalCwc: "block_legal_cwc";
5946
+ }>;
5947
+ }
5948
+ /** @internal */
5949
+ export declare const RouteMitigate$inboundSchema: z.ZodType<RouteMitigate, z.ZodTypeDef, unknown>;
5950
+ /** @internal */
5951
+ export type RouteMitigate$Outbound = {
5952
+ action: string;
5953
+ };
5954
+ /** @internal */
5955
+ export declare const RouteMitigate$outboundSchema: z.ZodType<RouteMitigate$Outbound, z.ZodTypeDef, RouteMitigate>;
5956
+ /**
5957
+ * @internal
5958
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5959
+ */
5960
+ export declare namespace RouteMitigate$ {
5961
+ /** @deprecated use `RouteMitigate$inboundSchema` instead. */
5962
+ const inboundSchema: z.ZodType<RouteMitigate, z.ZodTypeDef, unknown>;
5963
+ /** @deprecated use `RouteMitigate$outboundSchema` instead. */
5964
+ const outboundSchema: z.ZodType<RouteMitigate$Outbound, z.ZodTypeDef, RouteMitigate>;
5965
+ /** @deprecated use `RouteMitigate$Outbound` instead. */
5966
+ type Outbound = RouteMitigate$Outbound;
5967
+ }
5968
+ export declare function routeMitigateToJSON(routeMitigate: RouteMitigate): string;
5969
+ export declare function routeMitigateFromJSON(jsonString: string): SafeParseResult<RouteMitigate, SDKValidationError>;
5970
+ /** @internal */
5971
+ export declare const UpdateProjectDataCacheRoute2$inboundSchema: z.ZodType<UpdateProjectDataCacheRoute2, z.ZodTypeDef, unknown>;
5972
+ /** @internal */
5973
+ export type UpdateProjectDataCacheRoute2$Outbound = {
5974
+ has: Array<UpdateProjectDataCacheHas1$Outbound | UpdateProjectDataCacheHas2$Outbound>;
5975
+ mitigate: RouteMitigate$Outbound;
5976
+ src?: string | undefined;
5977
+ };
5978
+ /** @internal */
5979
+ export declare const UpdateProjectDataCacheRoute2$outboundSchema: z.ZodType<UpdateProjectDataCacheRoute2$Outbound, z.ZodTypeDef, UpdateProjectDataCacheRoute2>;
5980
+ /**
5981
+ * @internal
5982
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5983
+ */
5984
+ export declare namespace UpdateProjectDataCacheRoute2$ {
5985
+ /** @deprecated use `UpdateProjectDataCacheRoute2$inboundSchema` instead. */
5986
+ const inboundSchema: z.ZodType<UpdateProjectDataCacheRoute2, z.ZodTypeDef, unknown>;
5987
+ /** @deprecated use `UpdateProjectDataCacheRoute2$outboundSchema` instead. */
5988
+ const outboundSchema: z.ZodType<UpdateProjectDataCacheRoute2$Outbound, z.ZodTypeDef, UpdateProjectDataCacheRoute2>;
5989
+ /** @deprecated use `UpdateProjectDataCacheRoute2$Outbound` instead. */
5990
+ type Outbound = UpdateProjectDataCacheRoute2$Outbound;
5991
+ }
5992
+ export declare function updateProjectDataCacheRoute2ToJSON(updateProjectDataCacheRoute2: UpdateProjectDataCacheRoute2): string;
5993
+ export declare function updateProjectDataCacheRoute2FromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheRoute2, SDKValidationError>;
5994
+ /** @internal */
5995
+ export declare const UpdateProjectDataCacheRoute1$inboundSchema: z.ZodType<UpdateProjectDataCacheRoute1, z.ZodTypeDef, unknown>;
5996
+ /** @internal */
5997
+ export type UpdateProjectDataCacheRoute1$Outbound = {
5998
+ src: string;
5999
+ status: number;
6000
+ };
6001
+ /** @internal */
6002
+ export declare const UpdateProjectDataCacheRoute1$outboundSchema: z.ZodType<UpdateProjectDataCacheRoute1$Outbound, z.ZodTypeDef, UpdateProjectDataCacheRoute1>;
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 UpdateProjectDataCacheRoute1$ {
6008
+ /** @deprecated use `UpdateProjectDataCacheRoute1$inboundSchema` instead. */
6009
+ const inboundSchema: z.ZodType<UpdateProjectDataCacheRoute1, z.ZodTypeDef, unknown>;
6010
+ /** @deprecated use `UpdateProjectDataCacheRoute1$outboundSchema` instead. */
6011
+ const outboundSchema: z.ZodType<UpdateProjectDataCacheRoute1$Outbound, z.ZodTypeDef, UpdateProjectDataCacheRoute1>;
6012
+ /** @deprecated use `UpdateProjectDataCacheRoute1$Outbound` instead. */
6013
+ type Outbound = UpdateProjectDataCacheRoute1$Outbound;
6014
+ }
6015
+ export declare function updateProjectDataCacheRoute1ToJSON(updateProjectDataCacheRoute1: UpdateProjectDataCacheRoute1): string;
6016
+ export declare function updateProjectDataCacheRoute1FromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheRoute1, SDKValidationError>;
6017
+ /** @internal */
6018
+ export declare const BlockHistoryRoute$inboundSchema: z.ZodType<BlockHistoryRoute, z.ZodTypeDef, unknown>;
6019
+ /** @internal */
6020
+ export type BlockHistoryRoute$Outbound = UpdateProjectDataCacheRoute1$Outbound | UpdateProjectDataCacheRoute2$Outbound;
6021
+ /** @internal */
6022
+ export declare const BlockHistoryRoute$outboundSchema: z.ZodType<BlockHistoryRoute$Outbound, z.ZodTypeDef, BlockHistoryRoute>;
6023
+ /**
6024
+ * @internal
6025
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6026
+ */
6027
+ export declare namespace BlockHistoryRoute$ {
6028
+ /** @deprecated use `BlockHistoryRoute$inboundSchema` instead. */
6029
+ const inboundSchema: z.ZodType<BlockHistoryRoute, z.ZodTypeDef, unknown>;
6030
+ /** @deprecated use `BlockHistoryRoute$outboundSchema` instead. */
6031
+ const outboundSchema: z.ZodType<BlockHistoryRoute$Outbound, z.ZodTypeDef, BlockHistoryRoute>;
6032
+ /** @deprecated use `BlockHistoryRoute$Outbound` instead. */
6033
+ type Outbound = BlockHistoryRoute$Outbound;
6034
+ }
6035
+ export declare function blockHistoryRouteToJSON(blockHistoryRoute: BlockHistoryRoute): string;
6036
+ export declare function blockHistoryRouteFromJSON(jsonString: string): SafeParseResult<BlockHistoryRoute, SDKValidationError>;
6037
+ /** @internal */
6038
+ export declare const BlockHistory4$inboundSchema: z.ZodType<BlockHistory4, z.ZodTypeDef, unknown>;
6039
+ /** @internal */
6040
+ export type BlockHistory4$Outbound = {
6041
+ action: string;
6042
+ route: UpdateProjectDataCacheRoute1$Outbound | UpdateProjectDataCacheRoute2$Outbound;
6043
+ statusCode?: number | undefined;
6044
+ createdAt: number;
6045
+ caseId?: string | undefined;
6046
+ actor?: string | undefined;
6047
+ comment?: string | undefined;
6048
+ isCascading?: boolean | undefined;
6049
+ };
6050
+ /** @internal */
6051
+ export declare const BlockHistory4$outboundSchema: z.ZodType<BlockHistory4$Outbound, z.ZodTypeDef, BlockHistory4>;
6052
+ /**
6053
+ * @internal
6054
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6055
+ */
6056
+ export declare namespace BlockHistory4$ {
6057
+ /** @deprecated use `BlockHistory4$inboundSchema` instead. */
6058
+ const inboundSchema: z.ZodType<BlockHistory4, z.ZodTypeDef, unknown>;
6059
+ /** @deprecated use `BlockHistory4$outboundSchema` instead. */
6060
+ const outboundSchema: z.ZodType<BlockHistory4$Outbound, z.ZodTypeDef, BlockHistory4>;
6061
+ /** @deprecated use `BlockHistory4$Outbound` instead. */
6062
+ type Outbound = BlockHistory4$Outbound;
6063
+ }
6064
+ export declare function blockHistory4ToJSON(blockHistory4: BlockHistory4): string;
6065
+ export declare function blockHistory4FromJSON(jsonString: string): SafeParseResult<BlockHistory4, SDKValidationError>;
6066
+ /** @internal */
6067
+ export declare const UpdateProjectDataCacheBlockHistoryProjectsAction$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheBlockHistoryProjectsAction>;
6068
+ /** @internal */
6069
+ export declare const UpdateProjectDataCacheBlockHistoryProjectsAction$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheBlockHistoryProjectsAction>;
6070
+ /**
6071
+ * @internal
6072
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6073
+ */
6074
+ export declare namespace UpdateProjectDataCacheBlockHistoryProjectsAction$ {
6075
+ /** @deprecated use `UpdateProjectDataCacheBlockHistoryProjectsAction$inboundSchema` instead. */
6076
+ const inboundSchema: z.ZodNativeEnum<{
6077
+ readonly RouteBlocked: "route-blocked";
6078
+ }>;
6079
+ /** @deprecated use `UpdateProjectDataCacheBlockHistoryProjectsAction$outboundSchema` instead. */
6080
+ const outboundSchema: z.ZodNativeEnum<{
6081
+ readonly RouteBlocked: "route-blocked";
6082
+ }>;
6083
+ }
6084
+ /** @internal */
6085
+ export declare const UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONType$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONType>;
6086
+ /** @internal */
6087
+ export declare const UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONType$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONType>;
6088
+ /**
6089
+ * @internal
6090
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6091
+ */
6092
+ export declare namespace UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONType$ {
6093
+ /** @deprecated use `UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONType$inboundSchema` instead. */
6094
+ const inboundSchema: z.ZodNativeEnum<{
6095
+ readonly Host: "host";
6096
+ }>;
6097
+ /** @deprecated use `UpdateProjectDataCacheHasProjectsResponse200ApplicationJSONType$outboundSchema` instead. */
6098
+ const outboundSchema: z.ZodNativeEnum<{
6099
+ readonly Host: "host";
6100
+ }>;
6101
+ }
6102
+ /** @internal */
6103
+ export declare const UpdateProjectDataCacheHasProjectsResponse200Value$inboundSchema: z.ZodType<UpdateProjectDataCacheHasProjectsResponse200Value, z.ZodTypeDef, unknown>;
6104
+ /** @internal */
6105
+ export type UpdateProjectDataCacheHasProjectsResponse200Value$Outbound = {
6106
+ eq: string;
6107
+ };
6108
+ /** @internal */
6109
+ export declare const UpdateProjectDataCacheHasProjectsResponse200Value$outboundSchema: z.ZodType<UpdateProjectDataCacheHasProjectsResponse200Value$Outbound, z.ZodTypeDef, UpdateProjectDataCacheHasProjectsResponse200Value>;
6110
+ /**
6111
+ * @internal
6112
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6113
+ */
6114
+ export declare namespace UpdateProjectDataCacheHasProjectsResponse200Value$ {
6115
+ /** @deprecated use `UpdateProjectDataCacheHasProjectsResponse200Value$inboundSchema` instead. */
6116
+ const inboundSchema: z.ZodType<UpdateProjectDataCacheHasProjectsResponse200Value, z.ZodTypeDef, unknown>;
6117
+ /** @deprecated use `UpdateProjectDataCacheHasProjectsResponse200Value$outboundSchema` instead. */
6118
+ const outboundSchema: z.ZodType<UpdateProjectDataCacheHasProjectsResponse200Value$Outbound, z.ZodTypeDef, UpdateProjectDataCacheHasProjectsResponse200Value>;
6119
+ /** @deprecated use `UpdateProjectDataCacheHasProjectsResponse200Value$Outbound` instead. */
6120
+ type Outbound = UpdateProjectDataCacheHasProjectsResponse200Value$Outbound;
6121
+ }
6122
+ export declare function updateProjectDataCacheHasProjectsResponse200ValueToJSON(updateProjectDataCacheHasProjectsResponse200Value: UpdateProjectDataCacheHasProjectsResponse200Value): string;
6123
+ export declare function updateProjectDataCacheHasProjectsResponse200ValueFromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheHasProjectsResponse200Value, SDKValidationError>;
6124
+ /** @internal */
6125
+ export declare const UpdateProjectDataCacheHasProjects2$inboundSchema: z.ZodType<UpdateProjectDataCacheHasProjects2, z.ZodTypeDef, unknown>;
6126
+ /** @internal */
6127
+ export type UpdateProjectDataCacheHasProjects2$Outbound = {
6128
+ type: string;
6129
+ value: UpdateProjectDataCacheHasProjectsResponse200Value$Outbound;
6130
+ };
6131
+ /** @internal */
6132
+ export declare const UpdateProjectDataCacheHasProjects2$outboundSchema: z.ZodType<UpdateProjectDataCacheHasProjects2$Outbound, z.ZodTypeDef, UpdateProjectDataCacheHasProjects2>;
6133
+ /**
6134
+ * @internal
6135
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6136
+ */
6137
+ export declare namespace UpdateProjectDataCacheHasProjects2$ {
6138
+ /** @deprecated use `UpdateProjectDataCacheHasProjects2$inboundSchema` instead. */
6139
+ const inboundSchema: z.ZodType<UpdateProjectDataCacheHasProjects2, z.ZodTypeDef, unknown>;
6140
+ /** @deprecated use `UpdateProjectDataCacheHasProjects2$outboundSchema` instead. */
6141
+ const outboundSchema: z.ZodType<UpdateProjectDataCacheHasProjects2$Outbound, z.ZodTypeDef, UpdateProjectDataCacheHasProjects2>;
6142
+ /** @deprecated use `UpdateProjectDataCacheHasProjects2$Outbound` instead. */
6143
+ type Outbound = UpdateProjectDataCacheHasProjects2$Outbound;
6144
+ }
6145
+ export declare function updateProjectDataCacheHasProjects2ToJSON(updateProjectDataCacheHasProjects2: UpdateProjectDataCacheHasProjects2): string;
6146
+ export declare function updateProjectDataCacheHasProjects2FromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheHasProjects2, SDKValidationError>;
6147
+ /** @internal */
6148
+ export declare const UpdateProjectDataCacheHasProjectsResponse200Type$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheHasProjectsResponse200Type>;
6149
+ /** @internal */
6150
+ export declare const UpdateProjectDataCacheHasProjectsResponse200Type$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheHasProjectsResponse200Type>;
6151
+ /**
6152
+ * @internal
6153
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6154
+ */
6155
+ export declare namespace UpdateProjectDataCacheHasProjectsResponse200Type$ {
6156
+ /** @deprecated use `UpdateProjectDataCacheHasProjectsResponse200Type$inboundSchema` instead. */
6157
+ const inboundSchema: z.ZodNativeEnum<{
6158
+ readonly Header: "header";
6159
+ }>;
6160
+ /** @deprecated use `UpdateProjectDataCacheHasProjectsResponse200Type$outboundSchema` instead. */
6161
+ const outboundSchema: z.ZodNativeEnum<{
6162
+ readonly Header: "header";
6163
+ }>;
6164
+ }
6165
+ /** @internal */
6166
+ export declare const UpdateProjectDataCacheHasKey$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheHasKey>;
6167
+ /** @internal */
6168
+ export declare const UpdateProjectDataCacheHasKey$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheHasKey>;
6169
+ /**
6170
+ * @internal
6171
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6172
+ */
6173
+ export declare namespace UpdateProjectDataCacheHasKey$ {
6174
+ /** @deprecated use `UpdateProjectDataCacheHasKey$inboundSchema` instead. */
6175
+ const inboundSchema: z.ZodNativeEnum<{
6176
+ readonly XVercelIpCountry: "x-vercel-ip-country";
6177
+ }>;
6178
+ /** @deprecated use `UpdateProjectDataCacheHasKey$outboundSchema` instead. */
6179
+ const outboundSchema: z.ZodNativeEnum<{
6180
+ readonly XVercelIpCountry: "x-vercel-ip-country";
6181
+ }>;
6182
+ }
6183
+ /** @internal */
6184
+ export declare const UpdateProjectDataCacheHasProjectsResponseValue$inboundSchema: z.ZodType<UpdateProjectDataCacheHasProjectsResponseValue, z.ZodTypeDef, unknown>;
6185
+ /** @internal */
6186
+ export type UpdateProjectDataCacheHasProjectsResponseValue$Outbound = {
6187
+ eq: string;
6188
+ };
6189
+ /** @internal */
6190
+ export declare const UpdateProjectDataCacheHasProjectsResponseValue$outboundSchema: z.ZodType<UpdateProjectDataCacheHasProjectsResponseValue$Outbound, z.ZodTypeDef, UpdateProjectDataCacheHasProjectsResponseValue>;
6191
+ /**
6192
+ * @internal
6193
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6194
+ */
6195
+ export declare namespace UpdateProjectDataCacheHasProjectsResponseValue$ {
6196
+ /** @deprecated use `UpdateProjectDataCacheHasProjectsResponseValue$inboundSchema` instead. */
6197
+ const inboundSchema: z.ZodType<UpdateProjectDataCacheHasProjectsResponseValue, z.ZodTypeDef, unknown>;
6198
+ /** @deprecated use `UpdateProjectDataCacheHasProjectsResponseValue$outboundSchema` instead. */
6199
+ const outboundSchema: z.ZodType<UpdateProjectDataCacheHasProjectsResponseValue$Outbound, z.ZodTypeDef, UpdateProjectDataCacheHasProjectsResponseValue>;
6200
+ /** @deprecated use `UpdateProjectDataCacheHasProjectsResponseValue$Outbound` instead. */
6201
+ type Outbound = UpdateProjectDataCacheHasProjectsResponseValue$Outbound;
6202
+ }
6203
+ export declare function updateProjectDataCacheHasProjectsResponseValueToJSON(updateProjectDataCacheHasProjectsResponseValue: UpdateProjectDataCacheHasProjectsResponseValue): string;
6204
+ export declare function updateProjectDataCacheHasProjectsResponseValueFromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheHasProjectsResponseValue, SDKValidationError>;
6205
+ /** @internal */
6206
+ export declare const UpdateProjectDataCacheHasProjects1$inboundSchema: z.ZodType<UpdateProjectDataCacheHasProjects1, z.ZodTypeDef, unknown>;
6207
+ /** @internal */
6208
+ export type UpdateProjectDataCacheHasProjects1$Outbound = {
6209
+ type: string;
6210
+ key: string;
6211
+ value: UpdateProjectDataCacheHasProjectsResponseValue$Outbound;
6212
+ };
6213
+ /** @internal */
6214
+ export declare const UpdateProjectDataCacheHasProjects1$outboundSchema: z.ZodType<UpdateProjectDataCacheHasProjects1$Outbound, z.ZodTypeDef, UpdateProjectDataCacheHasProjects1>;
6215
+ /**
6216
+ * @internal
6217
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6218
+ */
6219
+ export declare namespace UpdateProjectDataCacheHasProjects1$ {
6220
+ /** @deprecated use `UpdateProjectDataCacheHasProjects1$inboundSchema` instead. */
6221
+ const inboundSchema: z.ZodType<UpdateProjectDataCacheHasProjects1, z.ZodTypeDef, unknown>;
6222
+ /** @deprecated use `UpdateProjectDataCacheHasProjects1$outboundSchema` instead. */
6223
+ const outboundSchema: z.ZodType<UpdateProjectDataCacheHasProjects1$Outbound, z.ZodTypeDef, UpdateProjectDataCacheHasProjects1>;
6224
+ /** @deprecated use `UpdateProjectDataCacheHasProjects1$Outbound` instead. */
6225
+ type Outbound = UpdateProjectDataCacheHasProjects1$Outbound;
6226
+ }
6227
+ export declare function updateProjectDataCacheHasProjects1ToJSON(updateProjectDataCacheHasProjects1: UpdateProjectDataCacheHasProjects1): string;
6228
+ export declare function updateProjectDataCacheHasProjects1FromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheHasProjects1, SDKValidationError>;
6229
+ /** @internal */
6230
+ export declare const UpdateProjectDataCacheRouteHas$inboundSchema: z.ZodType<UpdateProjectDataCacheRouteHas, z.ZodTypeDef, unknown>;
6231
+ /** @internal */
6232
+ export type UpdateProjectDataCacheRouteHas$Outbound = UpdateProjectDataCacheHasProjects1$Outbound | UpdateProjectDataCacheHasProjects2$Outbound;
6233
+ /** @internal */
6234
+ export declare const UpdateProjectDataCacheRouteHas$outboundSchema: z.ZodType<UpdateProjectDataCacheRouteHas$Outbound, z.ZodTypeDef, UpdateProjectDataCacheRouteHas>;
6235
+ /**
6236
+ * @internal
6237
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6238
+ */
6239
+ export declare namespace UpdateProjectDataCacheRouteHas$ {
6240
+ /** @deprecated use `UpdateProjectDataCacheRouteHas$inboundSchema` instead. */
6241
+ const inboundSchema: z.ZodType<UpdateProjectDataCacheRouteHas, z.ZodTypeDef, unknown>;
6242
+ /** @deprecated use `UpdateProjectDataCacheRouteHas$outboundSchema` instead. */
6243
+ const outboundSchema: z.ZodType<UpdateProjectDataCacheRouteHas$Outbound, z.ZodTypeDef, UpdateProjectDataCacheRouteHas>;
6244
+ /** @deprecated use `UpdateProjectDataCacheRouteHas$Outbound` instead. */
6245
+ type Outbound = UpdateProjectDataCacheRouteHas$Outbound;
6246
+ }
6247
+ export declare function updateProjectDataCacheRouteHasToJSON(updateProjectDataCacheRouteHas: UpdateProjectDataCacheRouteHas): string;
6248
+ export declare function updateProjectDataCacheRouteHasFromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheRouteHas, SDKValidationError>;
6249
+ /** @internal */
6250
+ export declare const RouteAction$inboundSchema: z.ZodNativeEnum<typeof RouteAction>;
6251
+ /** @internal */
6252
+ export declare const RouteAction$outboundSchema: z.ZodNativeEnum<typeof RouteAction>;
6253
+ /**
6254
+ * @internal
6255
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6256
+ */
6257
+ export declare namespace RouteAction$ {
6258
+ /** @deprecated use `RouteAction$inboundSchema` instead. */
6259
+ const inboundSchema: z.ZodNativeEnum<{
6260
+ readonly BlockLegalCwc: "block_legal_cwc";
6261
+ }>;
6262
+ /** @deprecated use `RouteAction$outboundSchema` instead. */
6263
+ const outboundSchema: z.ZodNativeEnum<{
6264
+ readonly BlockLegalCwc: "block_legal_cwc";
6265
+ }>;
6266
+ }
6267
+ /** @internal */
6268
+ export declare const UpdateProjectDataCacheRouteMitigate$inboundSchema: z.ZodType<UpdateProjectDataCacheRouteMitigate, z.ZodTypeDef, unknown>;
6269
+ /** @internal */
6270
+ export type UpdateProjectDataCacheRouteMitigate$Outbound = {
6271
+ action: string;
6272
+ };
6273
+ /** @internal */
6274
+ export declare const UpdateProjectDataCacheRouteMitigate$outboundSchema: z.ZodType<UpdateProjectDataCacheRouteMitigate$Outbound, z.ZodTypeDef, UpdateProjectDataCacheRouteMitigate>;
6275
+ /**
6276
+ * @internal
6277
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6278
+ */
6279
+ export declare namespace UpdateProjectDataCacheRouteMitigate$ {
6280
+ /** @deprecated use `UpdateProjectDataCacheRouteMitigate$inboundSchema` instead. */
6281
+ const inboundSchema: z.ZodType<UpdateProjectDataCacheRouteMitigate, z.ZodTypeDef, unknown>;
6282
+ /** @deprecated use `UpdateProjectDataCacheRouteMitigate$outboundSchema` instead. */
6283
+ const outboundSchema: z.ZodType<UpdateProjectDataCacheRouteMitigate$Outbound, z.ZodTypeDef, UpdateProjectDataCacheRouteMitigate>;
6284
+ /** @deprecated use `UpdateProjectDataCacheRouteMitigate$Outbound` instead. */
6285
+ type Outbound = UpdateProjectDataCacheRouteMitigate$Outbound;
6286
+ }
6287
+ export declare function updateProjectDataCacheRouteMitigateToJSON(updateProjectDataCacheRouteMitigate: UpdateProjectDataCacheRouteMitigate): string;
6288
+ export declare function updateProjectDataCacheRouteMitigateFromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheRouteMitigate, SDKValidationError>;
6289
+ /** @internal */
6290
+ export declare const Route2$inboundSchema: z.ZodType<Route2, z.ZodTypeDef, unknown>;
6291
+ /** @internal */
6292
+ export type Route2$Outbound = {
6293
+ has: Array<UpdateProjectDataCacheHasProjects1$Outbound | UpdateProjectDataCacheHasProjects2$Outbound>;
6294
+ mitigate: UpdateProjectDataCacheRouteMitigate$Outbound;
6295
+ src?: string | undefined;
6296
+ };
6297
+ /** @internal */
6298
+ export declare const Route2$outboundSchema: z.ZodType<Route2$Outbound, z.ZodTypeDef, Route2>;
6299
+ /**
6300
+ * @internal
6301
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6302
+ */
6303
+ export declare namespace Route2$ {
6304
+ /** @deprecated use `Route2$inboundSchema` instead. */
6305
+ const inboundSchema: z.ZodType<Route2, z.ZodTypeDef, unknown>;
6306
+ /** @deprecated use `Route2$outboundSchema` instead. */
6307
+ const outboundSchema: z.ZodType<Route2$Outbound, z.ZodTypeDef, Route2>;
6308
+ /** @deprecated use `Route2$Outbound` instead. */
6309
+ type Outbound = Route2$Outbound;
6310
+ }
6311
+ export declare function route2ToJSON(route2: Route2): string;
6312
+ export declare function route2FromJSON(jsonString: string): SafeParseResult<Route2, SDKValidationError>;
6313
+ /** @internal */
6314
+ export declare const Route1$inboundSchema: z.ZodType<Route1, z.ZodTypeDef, unknown>;
6315
+ /** @internal */
6316
+ export type Route1$Outbound = {
6317
+ src: string;
6318
+ status: number;
6319
+ };
6320
+ /** @internal */
6321
+ export declare const Route1$outboundSchema: z.ZodType<Route1$Outbound, z.ZodTypeDef, Route1>;
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 Route1$ {
6327
+ /** @deprecated use `Route1$inboundSchema` instead. */
6328
+ const inboundSchema: z.ZodType<Route1, z.ZodTypeDef, unknown>;
6329
+ /** @deprecated use `Route1$outboundSchema` instead. */
6330
+ const outboundSchema: z.ZodType<Route1$Outbound, z.ZodTypeDef, Route1>;
6331
+ /** @deprecated use `Route1$Outbound` instead. */
6332
+ type Outbound = Route1$Outbound;
6333
+ }
6334
+ export declare function route1ToJSON(route1: Route1): string;
6335
+ export declare function route1FromJSON(jsonString: string): SafeParseResult<Route1, SDKValidationError>;
6336
+ /** @internal */
6337
+ export declare const Route$inboundSchema: z.ZodType<Route, z.ZodTypeDef, unknown>;
6338
+ /** @internal */
6339
+ export type Route$Outbound = Route1$Outbound | Route2$Outbound;
6340
+ /** @internal */
6341
+ export declare const Route$outboundSchema: z.ZodType<Route$Outbound, z.ZodTypeDef, Route>;
6342
+ /**
6343
+ * @internal
6344
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6345
+ */
6346
+ export declare namespace Route$ {
6347
+ /** @deprecated use `Route$inboundSchema` instead. */
6348
+ const inboundSchema: z.ZodType<Route, z.ZodTypeDef, unknown>;
6349
+ /** @deprecated use `Route$outboundSchema` instead. */
6350
+ const outboundSchema: z.ZodType<Route$Outbound, z.ZodTypeDef, Route>;
6351
+ /** @deprecated use `Route$Outbound` instead. */
6352
+ type Outbound = Route$Outbound;
6353
+ }
6354
+ export declare function routeToJSON(route: Route): string;
6355
+ export declare function routeFromJSON(jsonString: string): SafeParseResult<Route, SDKValidationError>;
6356
+ /** @internal */
6357
+ export declare const BlockHistory3$inboundSchema: z.ZodType<BlockHistory3, z.ZodTypeDef, unknown>;
6358
+ /** @internal */
6359
+ export type BlockHistory3$Outbound = {
6360
+ action: string;
6361
+ route: Route1$Outbound | Route2$Outbound;
6362
+ reason: string;
6363
+ createdAt: number;
6364
+ caseId?: string | undefined;
6365
+ actor?: string | undefined;
6366
+ comment?: string | undefined;
6367
+ isCascading?: boolean | undefined;
6368
+ };
6369
+ /** @internal */
6370
+ export declare const BlockHistory3$outboundSchema: z.ZodType<BlockHistory3$Outbound, z.ZodTypeDef, BlockHistory3>;
6371
+ /**
6372
+ * @internal
6373
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6374
+ */
6375
+ export declare namespace BlockHistory3$ {
6376
+ /** @deprecated use `BlockHistory3$inboundSchema` instead. */
6377
+ const inboundSchema: z.ZodType<BlockHistory3, z.ZodTypeDef, unknown>;
6378
+ /** @deprecated use `BlockHistory3$outboundSchema` instead. */
6379
+ const outboundSchema: z.ZodType<BlockHistory3$Outbound, z.ZodTypeDef, BlockHistory3>;
6380
+ /** @deprecated use `BlockHistory3$Outbound` instead. */
6381
+ type Outbound = BlockHistory3$Outbound;
6382
+ }
6383
+ export declare function blockHistory3ToJSON(blockHistory3: BlockHistory3): string;
6384
+ export declare function blockHistory3FromJSON(jsonString: string): SafeParseResult<BlockHistory3, SDKValidationError>;
6385
+ /** @internal */
6386
+ export declare const UpdateProjectDataCacheBlockHistoryAction$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheBlockHistoryAction>;
6387
+ /** @internal */
6388
+ export declare const UpdateProjectDataCacheBlockHistoryAction$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheBlockHistoryAction>;
6389
+ /**
6390
+ * @internal
6391
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6392
+ */
6393
+ export declare namespace UpdateProjectDataCacheBlockHistoryAction$ {
6394
+ /** @deprecated use `UpdateProjectDataCacheBlockHistoryAction$inboundSchema` instead. */
6395
+ const inboundSchema: z.ZodNativeEnum<{
6396
+ readonly Unblocked: "unblocked";
6397
+ }>;
6398
+ /** @deprecated use `UpdateProjectDataCacheBlockHistoryAction$outboundSchema` instead. */
6399
+ const outboundSchema: z.ZodNativeEnum<{
6400
+ readonly Unblocked: "unblocked";
6401
+ }>;
6402
+ }
6403
+ /** @internal */
6404
+ export declare const BlockHistory2$inboundSchema: z.ZodType<BlockHistory2, z.ZodTypeDef, unknown>;
6405
+ /** @internal */
6406
+ export type BlockHistory2$Outbound = {
6407
+ action: string;
6408
+ createdAt: number;
6409
+ caseId?: string | undefined;
6410
+ actor?: string | undefined;
6411
+ comment?: string | undefined;
6412
+ isCascading?: boolean | undefined;
6413
+ };
6414
+ /** @internal */
6415
+ export declare const BlockHistory2$outboundSchema: z.ZodType<BlockHistory2$Outbound, z.ZodTypeDef, BlockHistory2>;
6416
+ /**
6417
+ * @internal
6418
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6419
+ */
6420
+ export declare namespace BlockHistory2$ {
6421
+ /** @deprecated use `BlockHistory2$inboundSchema` instead. */
6422
+ const inboundSchema: z.ZodType<BlockHistory2, z.ZodTypeDef, unknown>;
6423
+ /** @deprecated use `BlockHistory2$outboundSchema` instead. */
6424
+ const outboundSchema: z.ZodType<BlockHistory2$Outbound, z.ZodTypeDef, BlockHistory2>;
6425
+ /** @deprecated use `BlockHistory2$Outbound` instead. */
6426
+ type Outbound = BlockHistory2$Outbound;
6427
+ }
6428
+ export declare function blockHistory2ToJSON(blockHistory2: BlockHistory2): string;
6429
+ export declare function blockHistory2FromJSON(jsonString: string): SafeParseResult<BlockHistory2, SDKValidationError>;
6430
+ /** @internal */
6431
+ export declare const BlockHistoryAction$inboundSchema: z.ZodNativeEnum<typeof BlockHistoryAction>;
6432
+ /** @internal */
6433
+ export declare const BlockHistoryAction$outboundSchema: z.ZodNativeEnum<typeof BlockHistoryAction>;
6434
+ /**
6435
+ * @internal
6436
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6437
+ */
6438
+ export declare namespace BlockHistoryAction$ {
6439
+ /** @deprecated use `BlockHistoryAction$inboundSchema` instead. */
6440
+ const inboundSchema: z.ZodNativeEnum<{
6441
+ readonly Blocked: "blocked";
6442
+ }>;
6443
+ /** @deprecated use `BlockHistoryAction$outboundSchema` instead. */
6444
+ const outboundSchema: z.ZodNativeEnum<{
6445
+ readonly Blocked: "blocked";
6446
+ }>;
6447
+ }
6448
+ /** @internal */
6449
+ export declare const BlockHistory1$inboundSchema: z.ZodType<BlockHistory1, z.ZodTypeDef, unknown>;
6450
+ /** @internal */
6451
+ export type BlockHistory1$Outbound = {
6452
+ action: string;
6453
+ reason: string;
6454
+ statusCode: number;
6455
+ createdAt: number;
6456
+ caseId?: string | undefined;
6457
+ actor?: string | undefined;
6458
+ comment?: string | undefined;
6459
+ isCascading?: boolean | undefined;
6460
+ };
6461
+ /** @internal */
6462
+ export declare const BlockHistory1$outboundSchema: z.ZodType<BlockHistory1$Outbound, z.ZodTypeDef, BlockHistory1>;
6463
+ /**
6464
+ * @internal
6465
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6466
+ */
6467
+ export declare namespace BlockHistory1$ {
6468
+ /** @deprecated use `BlockHistory1$inboundSchema` instead. */
6469
+ const inboundSchema: z.ZodType<BlockHistory1, z.ZodTypeDef, unknown>;
6470
+ /** @deprecated use `BlockHistory1$outboundSchema` instead. */
6471
+ const outboundSchema: z.ZodType<BlockHistory1$Outbound, z.ZodTypeDef, BlockHistory1>;
6472
+ /** @deprecated use `BlockHistory1$Outbound` instead. */
6473
+ type Outbound = BlockHistory1$Outbound;
6474
+ }
6475
+ export declare function blockHistory1ToJSON(blockHistory1: BlockHistory1): string;
6476
+ export declare function blockHistory1FromJSON(jsonString: string): SafeParseResult<BlockHistory1, SDKValidationError>;
6477
+ /** @internal */
6478
+ export declare const UpdateProjectDataCacheBlockHistory$inboundSchema: z.ZodType<UpdateProjectDataCacheBlockHistory, z.ZodTypeDef, unknown>;
6479
+ /** @internal */
6480
+ export type UpdateProjectDataCacheBlockHistory$Outbound = BlockHistory1$Outbound | BlockHistory3$Outbound | BlockHistory4$Outbound | BlockHistory2$Outbound;
6481
+ /** @internal */
6482
+ export declare const UpdateProjectDataCacheBlockHistory$outboundSchema: z.ZodType<UpdateProjectDataCacheBlockHistory$Outbound, z.ZodTypeDef, UpdateProjectDataCacheBlockHistory>;
6483
+ /**
6484
+ * @internal
6485
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6486
+ */
6487
+ export declare namespace UpdateProjectDataCacheBlockHistory$ {
6488
+ /** @deprecated use `UpdateProjectDataCacheBlockHistory$inboundSchema` instead. */
6489
+ const inboundSchema: z.ZodType<UpdateProjectDataCacheBlockHistory, z.ZodTypeDef, unknown>;
6490
+ /** @deprecated use `UpdateProjectDataCacheBlockHistory$outboundSchema` instead. */
6491
+ const outboundSchema: z.ZodType<UpdateProjectDataCacheBlockHistory$Outbound, z.ZodTypeDef, UpdateProjectDataCacheBlockHistory>;
6492
+ /** @deprecated use `UpdateProjectDataCacheBlockHistory$Outbound` instead. */
6493
+ type Outbound = UpdateProjectDataCacheBlockHistory$Outbound;
6494
+ }
6495
+ export declare function updateProjectDataCacheBlockHistoryToJSON(updateProjectDataCacheBlockHistory: UpdateProjectDataCacheBlockHistory): string;
6496
+ export declare function updateProjectDataCacheBlockHistoryFromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheBlockHistory, SDKValidationError>;
6497
+ /** @internal */
6498
+ export declare const UpdateProjectDataCacheAbuse$inboundSchema: z.ZodType<UpdateProjectDataCacheAbuse, z.ZodTypeDef, unknown>;
6499
+ /** @internal */
6500
+ export type UpdateProjectDataCacheAbuse$Outbound = {
6501
+ scanner?: string | undefined;
6502
+ history: Array<UpdateProjectDataCacheHistory$Outbound>;
6503
+ updatedAt: number;
6504
+ block?: Block$Outbound | undefined;
6505
+ blockHistory?: Array<BlockHistory1$Outbound | BlockHistory3$Outbound | BlockHistory4$Outbound | BlockHistory2$Outbound> | undefined;
6506
+ };
6507
+ /** @internal */
6508
+ export declare const UpdateProjectDataCacheAbuse$outboundSchema: z.ZodType<UpdateProjectDataCacheAbuse$Outbound, z.ZodTypeDef, UpdateProjectDataCacheAbuse>;
6509
+ /**
6510
+ * @internal
6511
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6512
+ */
6513
+ export declare namespace UpdateProjectDataCacheAbuse$ {
6514
+ /** @deprecated use `UpdateProjectDataCacheAbuse$inboundSchema` instead. */
6515
+ const inboundSchema: z.ZodType<UpdateProjectDataCacheAbuse, z.ZodTypeDef, unknown>;
6516
+ /** @deprecated use `UpdateProjectDataCacheAbuse$outboundSchema` instead. */
6517
+ const outboundSchema: z.ZodType<UpdateProjectDataCacheAbuse$Outbound, z.ZodTypeDef, UpdateProjectDataCacheAbuse>;
6518
+ /** @deprecated use `UpdateProjectDataCacheAbuse$Outbound` instead. */
6519
+ type Outbound = UpdateProjectDataCacheAbuse$Outbound;
6520
+ }
6521
+ export declare function updateProjectDataCacheAbuseToJSON(updateProjectDataCacheAbuse: UpdateProjectDataCacheAbuse): string;
6522
+ export declare function updateProjectDataCacheAbuseFromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheAbuse, SDKValidationError>;
6523
+ /** @internal */
6524
+ export declare const UpdateProjectDataCacheHasType$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheHasType>;
6525
+ /** @internal */
6526
+ export declare const UpdateProjectDataCacheHasType$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheHasType>;
6527
+ /**
6528
+ * @internal
6529
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6530
+ */
6531
+ export declare namespace UpdateProjectDataCacheHasType$ {
6532
+ /** @deprecated use `UpdateProjectDataCacheHasType$inboundSchema` instead. */
6533
+ const inboundSchema: z.ZodNativeEnum<{
6534
+ readonly Host: "host";
6535
+ }>;
6536
+ /** @deprecated use `UpdateProjectDataCacheHasType$outboundSchema` instead. */
6537
+ const outboundSchema: z.ZodNativeEnum<{
6538
+ readonly Host: "host";
6539
+ }>;
6540
+ }
6541
+ /** @internal */
6542
+ export declare const HasValue$inboundSchema: z.ZodType<HasValue, z.ZodTypeDef, unknown>;
6543
+ /** @internal */
6544
+ export type HasValue$Outbound = {
6545
+ eq: string;
6546
+ };
6547
+ /** @internal */
6548
+ export declare const HasValue$outboundSchema: z.ZodType<HasValue$Outbound, z.ZodTypeDef, HasValue>;
6549
+ /**
6550
+ * @internal
6551
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6552
+ */
6553
+ export declare namespace HasValue$ {
6554
+ /** @deprecated use `HasValue$inboundSchema` instead. */
6555
+ const inboundSchema: z.ZodType<HasValue, z.ZodTypeDef, unknown>;
6556
+ /** @deprecated use `HasValue$outboundSchema` instead. */
6557
+ const outboundSchema: z.ZodType<HasValue$Outbound, z.ZodTypeDef, HasValue>;
6558
+ /** @deprecated use `HasValue$Outbound` instead. */
6559
+ type Outbound = HasValue$Outbound;
6560
+ }
6561
+ export declare function hasValueToJSON(hasValue: HasValue): string;
6562
+ export declare function hasValueFromJSON(jsonString: string): SafeParseResult<HasValue, SDKValidationError>;
6563
+ /** @internal */
6564
+ export declare const Has2$inboundSchema: z.ZodType<Has2, z.ZodTypeDef, unknown>;
6565
+ /** @internal */
6566
+ export type Has2$Outbound = {
6567
+ type: string;
6568
+ value: HasValue$Outbound;
6569
+ };
6570
+ /** @internal */
6571
+ export declare const Has2$outboundSchema: z.ZodType<Has2$Outbound, z.ZodTypeDef, Has2>;
6572
+ /**
6573
+ * @internal
6574
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6575
+ */
6576
+ export declare namespace Has2$ {
6577
+ /** @deprecated use `Has2$inboundSchema` instead. */
6578
+ const inboundSchema: z.ZodType<Has2, z.ZodTypeDef, unknown>;
6579
+ /** @deprecated use `Has2$outboundSchema` instead. */
6580
+ const outboundSchema: z.ZodType<Has2$Outbound, z.ZodTypeDef, Has2>;
6581
+ /** @deprecated use `Has2$Outbound` instead. */
6582
+ type Outbound = Has2$Outbound;
6583
+ }
6584
+ export declare function has2ToJSON(has2: Has2): string;
6585
+ export declare function has2FromJSON(jsonString: string): SafeParseResult<Has2, SDKValidationError>;
6586
+ /** @internal */
6587
+ export declare const HasType$inboundSchema: z.ZodNativeEnum<typeof HasType>;
6588
+ /** @internal */
6589
+ export declare const HasType$outboundSchema: z.ZodNativeEnum<typeof HasType>;
6590
+ /**
6591
+ * @internal
6592
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6593
+ */
6594
+ export declare namespace HasType$ {
6595
+ /** @deprecated use `HasType$inboundSchema` instead. */
6596
+ const inboundSchema: z.ZodNativeEnum<{
6597
+ readonly Header: "header";
6598
+ }>;
6599
+ /** @deprecated use `HasType$outboundSchema` instead. */
6600
+ const outboundSchema: z.ZodNativeEnum<{
6601
+ readonly Header: "header";
6602
+ }>;
6603
+ }
6604
+ /** @internal */
6605
+ export declare const Key$inboundSchema: z.ZodNativeEnum<typeof Key>;
6606
+ /** @internal */
6607
+ export declare const Key$outboundSchema: z.ZodNativeEnum<typeof Key>;
6608
+ /**
6609
+ * @internal
6610
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6611
+ */
6612
+ export declare namespace Key$ {
6613
+ /** @deprecated use `Key$inboundSchema` instead. */
6614
+ const inboundSchema: z.ZodNativeEnum<{
6615
+ readonly XVercelIpCountry: "x-vercel-ip-country";
6616
+ }>;
6617
+ /** @deprecated use `Key$outboundSchema` instead. */
6618
+ const outboundSchema: z.ZodNativeEnum<{
6619
+ readonly XVercelIpCountry: "x-vercel-ip-country";
6620
+ }>;
6621
+ }
6622
+ /** @internal */
6623
+ export declare const UpdateProjectDataCacheHasValue$inboundSchema: z.ZodType<UpdateProjectDataCacheHasValue, z.ZodTypeDef, unknown>;
6624
+ /** @internal */
6625
+ export type UpdateProjectDataCacheHasValue$Outbound = {
6626
+ eq: string;
6627
+ };
6628
+ /** @internal */
6629
+ export declare const UpdateProjectDataCacheHasValue$outboundSchema: z.ZodType<UpdateProjectDataCacheHasValue$Outbound, z.ZodTypeDef, UpdateProjectDataCacheHasValue>;
6630
+ /**
6631
+ * @internal
6632
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6633
+ */
6634
+ export declare namespace UpdateProjectDataCacheHasValue$ {
6635
+ /** @deprecated use `UpdateProjectDataCacheHasValue$inboundSchema` instead. */
6636
+ const inboundSchema: z.ZodType<UpdateProjectDataCacheHasValue, z.ZodTypeDef, unknown>;
6637
+ /** @deprecated use `UpdateProjectDataCacheHasValue$outboundSchema` instead. */
6638
+ const outboundSchema: z.ZodType<UpdateProjectDataCacheHasValue$Outbound, z.ZodTypeDef, UpdateProjectDataCacheHasValue>;
6639
+ /** @deprecated use `UpdateProjectDataCacheHasValue$Outbound` instead. */
6640
+ type Outbound = UpdateProjectDataCacheHasValue$Outbound;
6641
+ }
6642
+ export declare function updateProjectDataCacheHasValueToJSON(updateProjectDataCacheHasValue: UpdateProjectDataCacheHasValue): string;
6643
+ export declare function updateProjectDataCacheHasValueFromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheHasValue, SDKValidationError>;
6644
+ /** @internal */
6645
+ export declare const Has1$inboundSchema: z.ZodType<Has1, z.ZodTypeDef, unknown>;
6646
+ /** @internal */
6647
+ export type Has1$Outbound = {
6648
+ type: string;
6649
+ key: string;
6650
+ value: UpdateProjectDataCacheHasValue$Outbound;
6651
+ };
6652
+ /** @internal */
6653
+ export declare const Has1$outboundSchema: z.ZodType<Has1$Outbound, z.ZodTypeDef, Has1>;
6654
+ /**
6655
+ * @internal
6656
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6657
+ */
6658
+ export declare namespace Has1$ {
6659
+ /** @deprecated use `Has1$inboundSchema` instead. */
6660
+ const inboundSchema: z.ZodType<Has1, z.ZodTypeDef, unknown>;
6661
+ /** @deprecated use `Has1$outboundSchema` instead. */
6662
+ const outboundSchema: z.ZodType<Has1$Outbound, z.ZodTypeDef, Has1>;
6663
+ /** @deprecated use `Has1$Outbound` instead. */
6664
+ type Outbound = Has1$Outbound;
6665
+ }
6666
+ export declare function has1ToJSON(has1: Has1): string;
6667
+ export declare function has1FromJSON(jsonString: string): SafeParseResult<Has1, SDKValidationError>;
6668
+ /** @internal */
6669
+ export declare const Has$inboundSchema: z.ZodType<Has, z.ZodTypeDef, unknown>;
6670
+ /** @internal */
6671
+ export type Has$Outbound = Has1$Outbound | Has2$Outbound;
6672
+ /** @internal */
6673
+ export declare const Has$outboundSchema: z.ZodType<Has$Outbound, z.ZodTypeDef, Has>;
6674
+ /**
6675
+ * @internal
6676
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6677
+ */
6678
+ export declare namespace Has$ {
6679
+ /** @deprecated use `Has$inboundSchema` instead. */
6680
+ const inboundSchema: z.ZodType<Has, z.ZodTypeDef, unknown>;
6681
+ /** @deprecated use `Has$outboundSchema` instead. */
6682
+ const outboundSchema: z.ZodType<Has$Outbound, z.ZodTypeDef, Has>;
6683
+ /** @deprecated use `Has$Outbound` instead. */
6684
+ type Outbound = Has$Outbound;
6685
+ }
6686
+ export declare function hasToJSON(has: Has): string;
6687
+ export declare function hasFromJSON(jsonString: string): SafeParseResult<Has, SDKValidationError>;
6688
+ /** @internal */
6689
+ export declare const InternalRoutesAction$inboundSchema: z.ZodNativeEnum<typeof InternalRoutesAction>;
6690
+ /** @internal */
6691
+ export declare const InternalRoutesAction$outboundSchema: z.ZodNativeEnum<typeof InternalRoutesAction>;
6692
+ /**
6693
+ * @internal
6694
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6695
+ */
6696
+ export declare namespace InternalRoutesAction$ {
6697
+ /** @deprecated use `InternalRoutesAction$inboundSchema` instead. */
6698
+ const inboundSchema: z.ZodNativeEnum<{
6699
+ readonly BlockLegalCwc: "block_legal_cwc";
6700
+ }>;
6701
+ /** @deprecated use `InternalRoutesAction$outboundSchema` instead. */
6702
+ const outboundSchema: z.ZodNativeEnum<{
6703
+ readonly BlockLegalCwc: "block_legal_cwc";
6704
+ }>;
6705
+ }
6706
+ /** @internal */
6707
+ export declare const UpdateProjectDataCacheInternalRoutesMitigate$inboundSchema: z.ZodType<UpdateProjectDataCacheInternalRoutesMitigate, z.ZodTypeDef, unknown>;
6708
+ /** @internal */
6709
+ export type UpdateProjectDataCacheInternalRoutesMitigate$Outbound = {
6710
+ action: string;
6711
+ };
6712
+ /** @internal */
6713
+ export declare const UpdateProjectDataCacheInternalRoutesMitigate$outboundSchema: z.ZodType<UpdateProjectDataCacheInternalRoutesMitigate$Outbound, z.ZodTypeDef, UpdateProjectDataCacheInternalRoutesMitigate>;
6714
+ /**
6715
+ * @internal
6716
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6717
+ */
6718
+ export declare namespace UpdateProjectDataCacheInternalRoutesMitigate$ {
6719
+ /** @deprecated use `UpdateProjectDataCacheInternalRoutesMitigate$inboundSchema` instead. */
6720
+ const inboundSchema: z.ZodType<UpdateProjectDataCacheInternalRoutesMitigate, z.ZodTypeDef, unknown>;
6721
+ /** @deprecated use `UpdateProjectDataCacheInternalRoutesMitigate$outboundSchema` instead. */
6722
+ const outboundSchema: z.ZodType<UpdateProjectDataCacheInternalRoutesMitigate$Outbound, z.ZodTypeDef, UpdateProjectDataCacheInternalRoutesMitigate>;
6723
+ /** @deprecated use `UpdateProjectDataCacheInternalRoutesMitigate$Outbound` instead. */
6724
+ type Outbound = UpdateProjectDataCacheInternalRoutesMitigate$Outbound;
6725
+ }
6726
+ export declare function updateProjectDataCacheInternalRoutesMitigateToJSON(updateProjectDataCacheInternalRoutesMitigate: UpdateProjectDataCacheInternalRoutesMitigate): string;
6727
+ export declare function updateProjectDataCacheInternalRoutesMitigateFromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheInternalRoutesMitigate, SDKValidationError>;
6728
+ /** @internal */
6729
+ export declare const InternalRoutes2$inboundSchema: z.ZodType<InternalRoutes2, z.ZodTypeDef, unknown>;
6730
+ /** @internal */
6731
+ export type InternalRoutes2$Outbound = {
6732
+ has: Array<Has1$Outbound | Has2$Outbound>;
6733
+ mitigate: UpdateProjectDataCacheInternalRoutesMitigate$Outbound;
6734
+ src?: string | undefined;
6735
+ };
6736
+ /** @internal */
6737
+ export declare const InternalRoutes2$outboundSchema: z.ZodType<InternalRoutes2$Outbound, z.ZodTypeDef, InternalRoutes2>;
6738
+ /**
6739
+ * @internal
6740
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6741
+ */
6742
+ export declare namespace InternalRoutes2$ {
6743
+ /** @deprecated use `InternalRoutes2$inboundSchema` instead. */
6744
+ const inboundSchema: z.ZodType<InternalRoutes2, z.ZodTypeDef, unknown>;
6745
+ /** @deprecated use `InternalRoutes2$outboundSchema` instead. */
6746
+ const outboundSchema: z.ZodType<InternalRoutes2$Outbound, z.ZodTypeDef, InternalRoutes2>;
6747
+ /** @deprecated use `InternalRoutes2$Outbound` instead. */
6748
+ type Outbound = InternalRoutes2$Outbound;
6749
+ }
6750
+ export declare function internalRoutes2ToJSON(internalRoutes2: InternalRoutes2): string;
6751
+ export declare function internalRoutes2FromJSON(jsonString: string): SafeParseResult<InternalRoutes2, SDKValidationError>;
6752
+ /** @internal */
6753
+ export declare const InternalRoutes1$inboundSchema: z.ZodType<InternalRoutes1, z.ZodTypeDef, unknown>;
6754
+ /** @internal */
6755
+ export type InternalRoutes1$Outbound = {
6756
+ src: string;
6757
+ status: number;
6758
+ };
6759
+ /** @internal */
6760
+ export declare const InternalRoutes1$outboundSchema: z.ZodType<InternalRoutes1$Outbound, z.ZodTypeDef, InternalRoutes1>;
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 InternalRoutes1$ {
6766
+ /** @deprecated use `InternalRoutes1$inboundSchema` instead. */
6767
+ const inboundSchema: z.ZodType<InternalRoutes1, z.ZodTypeDef, unknown>;
6768
+ /** @deprecated use `InternalRoutes1$outboundSchema` instead. */
6769
+ const outboundSchema: z.ZodType<InternalRoutes1$Outbound, z.ZodTypeDef, InternalRoutes1>;
6770
+ /** @deprecated use `InternalRoutes1$Outbound` instead. */
6771
+ type Outbound = InternalRoutes1$Outbound;
6772
+ }
6773
+ export declare function internalRoutes1ToJSON(internalRoutes1: InternalRoutes1): string;
6774
+ export declare function internalRoutes1FromJSON(jsonString: string): SafeParseResult<InternalRoutes1, SDKValidationError>;
6775
+ /** @internal */
6776
+ export declare const InternalRoutes$inboundSchema: z.ZodType<InternalRoutes, z.ZodTypeDef, unknown>;
6777
+ /** @internal */
6778
+ export type InternalRoutes$Outbound = InternalRoutes1$Outbound | InternalRoutes2$Outbound;
6779
+ /** @internal */
6780
+ export declare const InternalRoutes$outboundSchema: z.ZodType<InternalRoutes$Outbound, z.ZodTypeDef, InternalRoutes>;
6781
+ /**
6782
+ * @internal
6783
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6784
+ */
6785
+ export declare namespace InternalRoutes$ {
6786
+ /** @deprecated use `InternalRoutes$inboundSchema` instead. */
6787
+ const inboundSchema: z.ZodType<InternalRoutes, z.ZodTypeDef, unknown>;
6788
+ /** @deprecated use `InternalRoutes$outboundSchema` instead. */
6789
+ const outboundSchema: z.ZodType<InternalRoutes$Outbound, z.ZodTypeDef, InternalRoutes>;
6790
+ /** @deprecated use `InternalRoutes$Outbound` instead. */
6791
+ type Outbound = InternalRoutes$Outbound;
6792
+ }
6793
+ export declare function internalRoutesToJSON(internalRoutes: InternalRoutes): string;
6794
+ export declare function internalRoutesFromJSON(jsonString: string): SafeParseResult<InternalRoutes, SDKValidationError>;
6795
+ /** @internal */
5453
6796
  export declare const UpdateProjectDataCacheResponseBody$inboundSchema: z.ZodType<UpdateProjectDataCacheResponseBody, z.ZodTypeDef, unknown>;
5454
6797
  /** @internal */
5455
6798
  export type UpdateProjectDataCacheResponseBody$Outbound = {
@@ -5481,7 +6824,7 @@ export type UpdateProjectDataCacheResponseBody$Outbound = {
5481
6824
  id: string;
5482
6825
  ipBuckets?: Array<UpdateProjectDataCacheIpBuckets$Outbound> | undefined;
5483
6826
  latestDeployments?: Array<LatestDeployments$Outbound> | undefined;
5484
- link?: Link3$Outbound | Link4$Outbound | Link5$Outbound | Link1$Outbound | Link2$Outbound | undefined;
6827
+ link?: Link4$Outbound | Link5$Outbound | Link3$Outbound | Link1$Outbound | Link2$Outbound | undefined;
5485
6828
  microfrontends?: UpdateProjectDataCacheMicrofrontends1$Outbound | UpdateProjectDataCacheMicrofrontends2$Outbound | undefined;
5486
6829
  name: string;
5487
6830
  nodeVersion: string;
@@ -5531,6 +6874,8 @@ export type UpdateProjectDataCacheResponseBody$Outbound = {
5531
6874
  tier?: string | undefined;
5532
6875
  features?: Features$Outbound | undefined;
5533
6876
  v0?: boolean | undefined;
6877
+ abuse?: UpdateProjectDataCacheAbuse$Outbound | undefined;
6878
+ internalRoutes?: Array<InternalRoutes1$Outbound | InternalRoutes2$Outbound> | undefined;
5534
6879
  };
5535
6880
  /** @internal */
5536
6881
  export declare const UpdateProjectDataCacheResponseBody$outboundSchema: z.ZodType<UpdateProjectDataCacheResponseBody$Outbound, z.ZodTypeDef, UpdateProjectDataCacheResponseBody>;