@vercel/sdk 1.10.1 → 1.10.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. package/bin/mcp-server.js +816 -1951
  2. package/bin/mcp-server.js.map +22 -22
  3. package/esm/__tests__/teams.test.js +2 -2
  4. package/esm/__tests__/teams.test.js.map +1 -1
  5. package/esm/funcs/domainsBuyDomain.js +2 -2
  6. package/esm/funcs/domainsBuyDomain.js.map +1 -1
  7. package/esm/funcs/domainsPatchDomain.js +2 -2
  8. package/esm/funcs/domainsPatchDomain.js.map +1 -1
  9. package/esm/lib/config.d.ts +3 -3
  10. package/esm/lib/config.js +3 -3
  11. package/esm/mcp-server/mcp-server.js +1 -1
  12. package/esm/mcp-server/server.js +1 -1
  13. package/esm/models/canceldeploymentop.d.ts +49 -49
  14. package/esm/models/canceldeploymentop.d.ts.map +1 -1
  15. package/esm/models/canceldeploymentop.js +53 -55
  16. package/esm/models/canceldeploymentop.js.map +1 -1
  17. package/esm/models/createdeploymentop.d.ts +139 -139
  18. package/esm/models/createdeploymentop.d.ts.map +1 -1
  19. package/esm/models/createdeploymentop.js +153 -152
  20. package/esm/models/createdeploymentop.js.map +1 -1
  21. package/esm/models/createprojectenvop.d.ts +6 -6
  22. package/esm/models/createprojectenvop.js +2 -2
  23. package/esm/models/createprojectenvop.js.map +1 -1
  24. package/esm/models/createprojectop.d.ts +189 -741
  25. package/esm/models/createprojectop.d.ts.map +1 -1
  26. package/esm/models/createprojectop.js +179 -678
  27. package/esm/models/createprojectop.js.map +1 -1
  28. package/esm/models/editprojectenvop.d.ts +3 -3
  29. package/esm/models/editprojectenvop.js +1 -1
  30. package/esm/models/editprojectenvop.js.map +1 -1
  31. package/esm/models/filterprojectenvsop.d.ts +9 -9
  32. package/esm/models/filterprojectenvsop.js +3 -3
  33. package/esm/models/filterprojectenvsop.js.map +1 -1
  34. package/esm/models/getdeploymentop.d.ts +90 -90
  35. package/esm/models/getdeploymentop.d.ts.map +1 -1
  36. package/esm/models/getdeploymentop.js +101 -102
  37. package/esm/models/getdeploymentop.js.map +1 -1
  38. package/esm/models/getfirewallconfigop.d.ts +3 -0
  39. package/esm/models/getfirewallconfigop.d.ts.map +1 -1
  40. package/esm/models/getfirewallconfigop.js +1 -0
  41. package/esm/models/getfirewallconfigop.js.map +1 -1
  42. package/esm/models/getprojectsop.d.ts +33 -585
  43. package/esm/models/getprojectsop.d.ts.map +1 -1
  44. package/esm/models/getprojectsop.js +31 -530
  45. package/esm/models/getprojectsop.js.map +1 -1
  46. package/esm/models/putfirewallconfigop.d.ts +3 -0
  47. package/esm/models/putfirewallconfigop.d.ts.map +1 -1
  48. package/esm/models/putfirewallconfigop.js +1 -0
  49. package/esm/models/putfirewallconfigop.js.map +1 -1
  50. package/esm/models/removeprojectenvop.d.ts +9 -9
  51. package/esm/models/removeprojectenvop.js +3 -3
  52. package/esm/models/removeprojectenvop.js.map +1 -1
  53. package/esm/models/team.d.ts +13 -10
  54. package/esm/models/team.d.ts.map +1 -1
  55. package/esm/models/team.js +6 -5
  56. package/esm/models/team.js.map +1 -1
  57. package/esm/models/updateprojectdatacacheop.d.ts +41 -593
  58. package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
  59. package/esm/models/updateprojectdatacacheop.js +43 -561
  60. package/esm/models/updateprojectdatacacheop.js.map +1 -1
  61. package/esm/models/updateprojectop.d.ts +33 -585
  62. package/esm/models/updateprojectop.d.ts.map +1 -1
  63. package/esm/models/updateprojectop.js +31 -530
  64. package/esm/models/updateprojectop.js.map +1 -1
  65. package/esm/models/userevent.d.ts +154 -124
  66. package/esm/models/userevent.d.ts.map +1 -1
  67. package/esm/models/userevent.js +166 -135
  68. package/esm/models/userevent.js.map +1 -1
  69. package/examples/package-lock.json +1 -1
  70. package/jsr.json +1 -1
  71. package/package.json +1 -1
  72. package/src/__tests__/teams.test.ts +2 -2
  73. package/src/funcs/domainsBuyDomain.ts +2 -2
  74. package/src/funcs/domainsPatchDomain.ts +2 -2
  75. package/src/lib/config.ts +3 -3
  76. package/src/mcp-server/mcp-server.ts +1 -1
  77. package/src/mcp-server/server.ts +1 -1
  78. package/src/models/canceldeploymentop.ts +78 -104
  79. package/src/models/createdeploymentop.ts +332 -335
  80. package/src/models/createprojectenvop.ts +2 -2
  81. package/src/models/createprojectop.ts +448 -1472
  82. package/src/models/editprojectenvop.ts +1 -1
  83. package/src/models/filterprojectenvsop.ts +3 -3
  84. package/src/models/getdeploymentop.ts +214 -216
  85. package/src/models/getfirewallconfigop.ts +1 -0
  86. package/src/models/getprojectsop.ts +202 -1207
  87. package/src/models/putfirewallconfigop.ts +1 -0
  88. package/src/models/removeprojectenvop.ts +3 -3
  89. package/src/models/team.ts +13 -12
  90. package/src/models/updateprojectdatacacheop.ts +171 -1168
  91. package/src/models/updateprojectop.ts +197 -1221
  92. package/src/models/userevent.ts +309 -236
  93. package/vercel-spec.json +429 -1834
@@ -392,10 +392,10 @@ export type CreateProjectTarget1 = ClosedEnum<typeof CreateProjectTarget1>;
392
392
  export type CreateProjectProjectsTarget = Array<CreateProjectTarget1> | CreateProjectTarget2;
393
393
  export declare const CreateProjectProjectsResponseType: {
394
394
  readonly System: "system";
395
+ readonly Secret: "secret";
395
396
  readonly Encrypted: "encrypted";
396
397
  readonly Plain: "plain";
397
398
  readonly Sensitive: "sensitive";
398
- readonly Secret: "secret";
399
399
  };
400
400
  export type CreateProjectProjectsResponseType = ClosedEnum<typeof CreateProjectProjectsResponseType>;
401
401
  export declare const CreateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type: {
@@ -954,18 +954,18 @@ export type CreateProjectLinkProjectsDeployHooks = {
954
954
  };
955
955
  export type CreateProjectLink2 = {
956
956
  type?: CreateProjectLinkProjectsType | undefined;
957
- repo?: string | undefined;
958
- repoId?: number | undefined;
959
957
  updatedAt?: number | undefined;
960
958
  createdAt?: number | undefined;
959
+ repo?: string | undefined;
960
+ sourceless?: boolean | undefined;
961
961
  org?: string | undefined;
962
962
  /**
963
963
  * 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.
964
964
  */
965
965
  repoOwnerId?: number | undefined;
966
+ repoId?: number | undefined;
966
967
  deployHooks: Array<CreateProjectLinkProjectsDeployHooks>;
967
968
  gitCredentialId?: string | undefined;
968
- sourceless?: boolean | undefined;
969
969
  productionBranch?: string | undefined;
970
970
  };
971
971
  export declare const CreateProjectLinkType: {
@@ -1142,8 +1142,8 @@ export type CreateProjectDefaultResourceConfig = {
1142
1142
  buildMachineType?: CreateProjectProjectsBuildMachineType | undefined;
1143
1143
  };
1144
1144
  export declare const CreateProjectProjectsDeploymentType: {
1145
- readonly Preview: "preview";
1146
1145
  readonly All: "all";
1146
+ readonly Preview: "preview";
1147
1147
  readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
1148
1148
  readonly AllExceptCustomDomains: "all_except_custom_domains";
1149
1149
  };
@@ -1283,72 +1283,6 @@ export type CreateProjectTargets = {
1283
1283
  withCache?: boolean | undefined;
1284
1284
  };
1285
1285
  export type CreateProjectPermissions = {
1286
- aliasProject?: Array<ACLAction> | undefined;
1287
- aliasProtectionBypass?: Array<ACLAction> | undefined;
1288
- buildMachine?: Array<ACLAction> | undefined;
1289
- productionAliasProtectionBypass?: Array<ACLAction> | undefined;
1290
- connectConfigurationLink?: Array<ACLAction> | undefined;
1291
- dataCacheNamespace?: Array<ACLAction> | undefined;
1292
- deployment?: Array<ACLAction> | undefined;
1293
- deploymentBuildLogs?: Array<ACLAction> | undefined;
1294
- deploymentCheck?: Array<ACLAction> | undefined;
1295
- deploymentCheckPreview?: Array<ACLAction> | undefined;
1296
- deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
1297
- deploymentProductionGit?: Array<ACLAction> | undefined;
1298
- deploymentV0?: Array<ACLAction> | undefined;
1299
- deploymentPreview?: Array<ACLAction> | undefined;
1300
- deploymentPrivate?: Array<ACLAction> | undefined;
1301
- deploymentPromote?: Array<ACLAction> | undefined;
1302
- deploymentRollback?: Array<ACLAction> | undefined;
1303
- edgeCacheNamespace?: Array<ACLAction> | undefined;
1304
- environments?: Array<ACLAction> | undefined;
1305
- logs?: Array<ACLAction> | undefined;
1306
- logsPreset?: Array<ACLAction> | undefined;
1307
- passwordProtection?: Array<ACLAction> | undefined;
1308
- optionsAllowlist?: Array<ACLAction> | undefined;
1309
- job?: Array<ACLAction> | undefined;
1310
- observabilityData?: Array<ACLAction> | undefined;
1311
- onDemandBuild?: Array<ACLAction> | undefined;
1312
- onDemandConcurrency?: Array<ACLAction> | undefined;
1313
- project?: Array<ACLAction> | undefined;
1314
- projectFromV0?: Array<ACLAction> | undefined;
1315
- projectAccessGroup?: Array<ACLAction> | undefined;
1316
- projectAnalyticsSampling?: Array<ACLAction> | undefined;
1317
- projectCheck?: Array<ACLAction> | undefined;
1318
- projectCheckRun?: Array<ACLAction> | undefined;
1319
- projectDeploymentHook?: Array<ACLAction> | undefined;
1320
- projectDomain?: Array<ACLAction> | undefined;
1321
- projectDomainMove?: Array<ACLAction> | undefined;
1322
- projectDomainCheckConfig?: Array<ACLAction> | undefined;
1323
- projectEnvVars?: Array<ACLAction> | undefined;
1324
- projectEnvVarsProduction?: Array<ACLAction> | undefined;
1325
- projectEnvVarsUnownedByIntegration?: Array<ACLAction> | undefined;
1326
- projectFlags?: Array<ACLAction> | undefined;
1327
- projectId?: Array<ACLAction> | undefined;
1328
- projectIntegrationConfiguration?: Array<ACLAction> | undefined;
1329
- projectLink?: Array<ACLAction> | undefined;
1330
- projectMember?: Array<ACLAction> | undefined;
1331
- projectMonitoring?: Array<ACLAction> | undefined;
1332
- projectPermissions?: Array<ACLAction> | undefined;
1333
- projectProductionBranch?: Array<ACLAction> | undefined;
1334
- projectTransfer?: Array<ACLAction> | undefined;
1335
- projectTransferOut?: Array<ACLAction> | undefined;
1336
- projectProtectionBypass?: Array<ACLAction> | undefined;
1337
- projectUsage?: Array<ACLAction> | undefined;
1338
- projectAnalyticsUsage?: Array<ACLAction> | undefined;
1339
- projectSupportCase?: Array<ACLAction> | undefined;
1340
- projectSupportCaseComment?: Array<ACLAction> | undefined;
1341
- projectDeploymentExpiration?: Array<ACLAction> | undefined;
1342
- projectRollingRelease?: Array<ACLAction> | undefined;
1343
- projectTier?: Array<ACLAction> | undefined;
1344
- projectOIDCToken?: Array<ACLAction> | undefined;
1345
- seawallConfig?: Array<ACLAction> | undefined;
1346
- skewProtection?: Array<ACLAction> | undefined;
1347
- analytics?: Array<ACLAction> | undefined;
1348
- trustedIps?: Array<ACLAction> | undefined;
1349
- webAnalytics?: Array<ACLAction> | undefined;
1350
- sharedEnvVarConnection?: Array<ACLAction> | undefined;
1351
- sonar?: Array<ACLAction> | undefined;
1352
1286
  oauth2Connection?: Array<ACLAction> | undefined;
1353
1287
  user?: Array<ACLAction> | undefined;
1354
1288
  userConnection?: Array<ACLAction> | undefined;
@@ -1439,6 +1373,7 @@ export type CreateProjectPermissions = {
1439
1373
  observabilityFunnel?: Array<ACLAction> | undefined;
1440
1374
  openTelemetryEndpoint?: Array<ACLAction> | undefined;
1441
1375
  vercelAppInstallation?: Array<ACLAction> | undefined;
1376
+ vercelAppInstallationRequest?: Array<ACLAction> | undefined;
1442
1377
  paymentMethod?: Array<ACLAction> | undefined;
1443
1378
  permissions?: Array<ACLAction> | undefined;
1444
1379
  postgres?: Array<ACLAction> | undefined;
@@ -1493,6 +1428,72 @@ export type CreateProjectPermissions = {
1493
1428
  vercelRunExec?: Array<ACLAction> | undefined;
1494
1429
  apiKey?: Array<ACLAction> | undefined;
1495
1430
  apiKeyOwnedBySelf?: Array<ACLAction> | undefined;
1431
+ aliasProject?: Array<ACLAction> | undefined;
1432
+ aliasProtectionBypass?: Array<ACLAction> | undefined;
1433
+ buildMachine?: Array<ACLAction> | undefined;
1434
+ productionAliasProtectionBypass?: Array<ACLAction> | undefined;
1435
+ connectConfigurationLink?: Array<ACLAction> | undefined;
1436
+ dataCacheNamespace?: Array<ACLAction> | undefined;
1437
+ deployment?: Array<ACLAction> | undefined;
1438
+ deploymentBuildLogs?: Array<ACLAction> | undefined;
1439
+ deploymentCheck?: Array<ACLAction> | undefined;
1440
+ deploymentCheckPreview?: Array<ACLAction> | undefined;
1441
+ deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
1442
+ deploymentProductionGit?: Array<ACLAction> | undefined;
1443
+ deploymentV0?: Array<ACLAction> | undefined;
1444
+ deploymentPreview?: Array<ACLAction> | undefined;
1445
+ deploymentPrivate?: Array<ACLAction> | undefined;
1446
+ deploymentPromote?: Array<ACLAction> | undefined;
1447
+ deploymentRollback?: Array<ACLAction> | undefined;
1448
+ edgeCacheNamespace?: Array<ACLAction> | undefined;
1449
+ environments?: Array<ACLAction> | undefined;
1450
+ logs?: Array<ACLAction> | undefined;
1451
+ logsPreset?: Array<ACLAction> | undefined;
1452
+ passwordProtection?: Array<ACLAction> | undefined;
1453
+ optionsAllowlist?: Array<ACLAction> | undefined;
1454
+ job?: Array<ACLAction> | undefined;
1455
+ observabilityData?: Array<ACLAction> | undefined;
1456
+ onDemandBuild?: Array<ACLAction> | undefined;
1457
+ onDemandConcurrency?: Array<ACLAction> | undefined;
1458
+ project?: Array<ACLAction> | undefined;
1459
+ projectFromV0?: Array<ACLAction> | undefined;
1460
+ projectAccessGroup?: Array<ACLAction> | undefined;
1461
+ projectAnalyticsSampling?: Array<ACLAction> | undefined;
1462
+ projectCheck?: Array<ACLAction> | undefined;
1463
+ projectCheckRun?: Array<ACLAction> | undefined;
1464
+ projectDeploymentHook?: Array<ACLAction> | undefined;
1465
+ projectDomain?: Array<ACLAction> | undefined;
1466
+ projectDomainMove?: Array<ACLAction> | undefined;
1467
+ projectDomainCheckConfig?: Array<ACLAction> | undefined;
1468
+ projectEnvVars?: Array<ACLAction> | undefined;
1469
+ projectEnvVarsProduction?: Array<ACLAction> | undefined;
1470
+ projectEnvVarsUnownedByIntegration?: Array<ACLAction> | undefined;
1471
+ projectFlags?: Array<ACLAction> | undefined;
1472
+ projectId?: Array<ACLAction> | undefined;
1473
+ projectIntegrationConfiguration?: Array<ACLAction> | undefined;
1474
+ projectLink?: Array<ACLAction> | undefined;
1475
+ projectMember?: Array<ACLAction> | undefined;
1476
+ projectMonitoring?: Array<ACLAction> | undefined;
1477
+ projectPermissions?: Array<ACLAction> | undefined;
1478
+ projectProductionBranch?: Array<ACLAction> | undefined;
1479
+ projectTransfer?: Array<ACLAction> | undefined;
1480
+ projectTransferOut?: Array<ACLAction> | undefined;
1481
+ projectProtectionBypass?: Array<ACLAction> | undefined;
1482
+ projectUsage?: Array<ACLAction> | undefined;
1483
+ projectAnalyticsUsage?: Array<ACLAction> | undefined;
1484
+ projectSupportCase?: Array<ACLAction> | undefined;
1485
+ projectSupportCaseComment?: Array<ACLAction> | undefined;
1486
+ projectDeploymentExpiration?: Array<ACLAction> | undefined;
1487
+ projectRollingRelease?: Array<ACLAction> | undefined;
1488
+ projectTier?: Array<ACLAction> | undefined;
1489
+ projectOIDCToken?: Array<ACLAction> | undefined;
1490
+ seawallConfig?: Array<ACLAction> | undefined;
1491
+ skewProtection?: Array<ACLAction> | undefined;
1492
+ analytics?: Array<ACLAction> | undefined;
1493
+ trustedIps?: Array<ACLAction> | undefined;
1494
+ webAnalytics?: Array<ACLAction> | undefined;
1495
+ sharedEnvVarConnection?: Array<ACLAction> | undefined;
1496
+ sonar?: Array<ACLAction> | undefined;
1496
1497
  };
1497
1498
  export type CreateProjectLastRollbackTarget = {};
1498
1499
  export declare const CreateProjectJobStatus: {
@@ -1541,22 +1542,22 @@ export type CreateProjectProtectionBypass1 = {
1541
1542
  };
1542
1543
  export type CreateProjectProtectionBypass = CreateProjectProtectionBypass1 | CreateProjectProtectionBypass2;
1543
1544
  export declare const CreateProjectTrustedIpsProjectsDeploymentType: {
1544
- readonly Preview: "preview";
1545
- readonly Production: "production";
1546
1545
  readonly All: "all";
1546
+ readonly Preview: "preview";
1547
1547
  readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
1548
1548
  readonly AllExceptCustomDomains: "all_except_custom_domains";
1549
+ readonly Production: "production";
1549
1550
  };
1550
1551
  export type CreateProjectTrustedIpsProjectsDeploymentType = ClosedEnum<typeof CreateProjectTrustedIpsProjectsDeploymentType>;
1551
1552
  export type CreateProjectTrustedIps2 = {
1552
1553
  deploymentType: CreateProjectTrustedIpsProjectsDeploymentType;
1553
1554
  };
1554
1555
  export declare const CreateProjectTrustedIpsDeploymentType: {
1555
- readonly Preview: "preview";
1556
- readonly Production: "production";
1557
1556
  readonly All: "all";
1557
+ readonly Preview: "preview";
1558
1558
  readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
1559
1559
  readonly AllExceptCustomDomains: "all_except_custom_domains";
1560
+ readonly Production: "production";
1560
1561
  };
1561
1562
  export type CreateProjectTrustedIpsDeploymentType = ClosedEnum<typeof CreateProjectTrustedIpsDeploymentType>;
1562
1563
  export type TrustedIpsAddresses = {
@@ -1612,157 +1613,35 @@ export type CreateProjectWebAnalytics = {
1612
1613
  enabledAt?: number | undefined;
1613
1614
  hasData?: boolean | undefined;
1614
1615
  };
1615
- export type CreateProjectSrc2 = {
1616
- re?: string | undefined;
1617
- eq?: string | undefined;
1618
- neq?: string | undefined;
1619
- inc?: Array<string> | undefined;
1620
- ninc?: Array<string> | undefined;
1621
- pre?: string | undefined;
1622
- suf?: string | undefined;
1623
- gt?: number | undefined;
1624
- gte?: number | undefined;
1625
- lt?: number | undefined;
1626
- lte?: number | undefined;
1627
- };
1628
- export type CreateProjectSrc = CreateProjectSrc2 | string;
1629
- export declare const CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType: {
1630
- readonly Path: "path";
1631
- readonly Host: "host";
1632
- readonly Method: "method";
1633
- readonly Header: "header";
1634
- readonly Cookie: "cookie";
1635
- readonly Query: "query";
1636
- readonly IpAddress: "ip_address";
1637
- readonly Protocol: "protocol";
1638
- readonly Scheme: "scheme";
1639
- readonly Environment: "environment";
1640
- readonly Region: "region";
1641
- readonly InitialRequestPath: "initial_request_path";
1642
- };
1643
- export type CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType = ClosedEnum<typeof CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType>;
1644
- export type CreateProjectValue2 = {
1645
- re?: string | undefined;
1646
- eq?: string | undefined;
1647
- neq?: string | undefined;
1648
- inc?: Array<string> | undefined;
1649
- ninc?: Array<string> | undefined;
1650
- pre?: string | undefined;
1651
- suf?: string | undefined;
1652
- gt?: number | undefined;
1653
- gte?: number | undefined;
1654
- lt?: number | undefined;
1655
- lte?: number | undefined;
1656
- };
1657
- export type CreateProjectValue = CreateProjectValue2 | string;
1658
- export type CreateProjectHas = {
1659
- type: CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType;
1660
- key?: string | undefined;
1661
- value?: CreateProjectValue2 | string | undefined;
1662
- };
1663
- export declare const CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType: {
1664
- readonly Path: "path";
1665
- readonly Host: "host";
1666
- readonly Method: "method";
1667
- readonly Header: "header";
1668
- readonly Cookie: "cookie";
1669
- readonly Query: "query";
1670
- readonly IpAddress: "ip_address";
1671
- readonly Protocol: "protocol";
1672
- readonly Scheme: "scheme";
1673
- readonly Environment: "environment";
1674
- readonly Region: "region";
1675
- readonly InitialRequestPath: "initial_request_path";
1676
- };
1677
- export type CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType = ClosedEnum<typeof CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType>;
1678
- export type CreateProjectValueProjects2 = {
1679
- re?: string | undefined;
1680
- eq?: string | undefined;
1681
- neq?: string | undefined;
1682
- inc?: Array<string> | undefined;
1683
- ninc?: Array<string> | undefined;
1684
- pre?: string | undefined;
1685
- suf?: string | undefined;
1686
- gt?: number | undefined;
1687
- gte?: number | undefined;
1688
- lt?: number | undefined;
1689
- lte?: number | undefined;
1690
- };
1691
- export type CreateProjectProjectsValue = CreateProjectValueProjects2 | string;
1692
- export type CreateProjectMissing = {
1693
- type: CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType;
1694
- key?: string | undefined;
1695
- value?: CreateProjectValueProjects2 | string | undefined;
1696
- };
1697
- export declare const CreateProjectHandle: {
1698
- readonly Init: "init";
1699
- readonly Finalize: "finalize";
1700
- };
1701
- export type CreateProjectHandle = ClosedEnum<typeof CreateProjectHandle>;
1702
1616
  export declare const CreateProjectAction: {
1703
- readonly Deny: "deny";
1704
- readonly Challenge: "challenge";
1705
1617
  readonly Log: "log";
1706
- readonly Bypass: "bypass";
1707
- readonly RateLimit: "rate_limit";
1708
- readonly Redirect: "redirect";
1618
+ readonly Challenge: "challenge";
1619
+ readonly Deny: "deny";
1709
1620
  };
1710
1621
  export type CreateProjectAction = ClosedEnum<typeof CreateProjectAction>;
1711
- export declare const CreateProjectAlgo: {
1712
- readonly FixedWindow: "fixed_window";
1713
- readonly TokenBucket: "token_bucket";
1714
- };
1715
- export type CreateProjectAlgo = ClosedEnum<typeof CreateProjectAlgo>;
1716
- export type CreateProjectErl = {
1717
- algo: CreateProjectAlgo;
1718
- window: number;
1719
- limit: number;
1720
- keys: Array<string>;
1721
- };
1722
- export type CreateProjectMitigate = {
1723
- action: CreateProjectAction;
1724
- ruleId: string;
1725
- ttl?: number | undefined;
1726
- erl?: CreateProjectErl | undefined;
1727
- };
1728
- export type CreateProjectFirewallRoutes = {
1729
- src?: CreateProjectSrc2 | string | undefined;
1730
- has?: Array<CreateProjectHas> | undefined;
1731
- missing?: Array<CreateProjectMissing> | undefined;
1732
- dest?: string | undefined;
1733
- status?: number | undefined;
1734
- handle?: CreateProjectHandle | undefined;
1735
- mitigate?: CreateProjectMitigate | undefined;
1622
+ export type CreateProjectBotFilter = {
1623
+ active: boolean;
1624
+ action?: CreateProjectAction | undefined;
1736
1625
  };
1737
1626
  export declare const CreateProjectProjectsAction: {
1738
- readonly Deny: "deny";
1739
- readonly Challenge: "challenge";
1740
1627
  readonly Log: "log";
1628
+ readonly Challenge: "challenge";
1629
+ readonly Deny: "deny";
1741
1630
  };
1742
1631
  export type CreateProjectProjectsAction = ClosedEnum<typeof CreateProjectProjectsAction>;
1743
- export type CreateProjectBotFilter = {
1632
+ export type CreateProjectAiBots = {
1744
1633
  active: boolean;
1745
1634
  action?: CreateProjectProjectsAction | undefined;
1746
1635
  };
1747
1636
  export declare const CreateProjectProjectsResponseAction: {
1748
- readonly Deny: "deny";
1749
- readonly Challenge: "challenge";
1750
1637
  readonly Log: "log";
1751
- };
1752
- export type CreateProjectProjectsResponseAction = ClosedEnum<typeof CreateProjectProjectsResponseAction>;
1753
- export type CreateProjectAiBots = {
1754
- active: boolean;
1755
- action?: CreateProjectProjectsResponseAction | undefined;
1756
- };
1757
- export declare const CreateProjectProjectsResponse200Action: {
1758
- readonly Deny: "deny";
1759
1638
  readonly Challenge: "challenge";
1760
- readonly Log: "log";
1639
+ readonly Deny: "deny";
1761
1640
  };
1762
- export type CreateProjectProjectsResponse200Action = ClosedEnum<typeof CreateProjectProjectsResponse200Action>;
1641
+ export type CreateProjectProjectsResponseAction = ClosedEnum<typeof CreateProjectProjectsResponseAction>;
1763
1642
  export type CreateProjectOwasp = {
1764
1643
  active: boolean;
1765
- action?: CreateProjectProjectsResponse200Action | undefined;
1644
+ action?: CreateProjectProjectsResponseAction | undefined;
1766
1645
  };
1767
1646
  export type CreateProjectManagedRules = {
1768
1647
  botFilter: CreateProjectBotFilter;
@@ -1776,7 +1655,6 @@ export type CreateProjectSecurity = {
1776
1655
  firewallUpdatedAt?: number | undefined;
1777
1656
  attackModeActiveUntil?: number | null | undefined;
1778
1657
  firewallConfigVersion?: number | undefined;
1779
- firewallRoutes?: Array<CreateProjectFirewallRoutes> | undefined;
1780
1658
  firewallSeawallEnabled?: boolean | undefined;
1781
1659
  ja3Enabled?: boolean | undefined;
1782
1660
  ja4Enabled?: boolean | undefined;
@@ -2725,18 +2603,18 @@ export declare namespace CreateProjectProjectsResponseType$ {
2725
2603
  /** @deprecated use `CreateProjectProjectsResponseType$inboundSchema` instead. */
2726
2604
  const inboundSchema: z.ZodNativeEnum<{
2727
2605
  readonly System: "system";
2606
+ readonly Secret: "secret";
2728
2607
  readonly Encrypted: "encrypted";
2729
2608
  readonly Plain: "plain";
2730
2609
  readonly Sensitive: "sensitive";
2731
- readonly Secret: "secret";
2732
2610
  }>;
2733
2611
  /** @deprecated use `CreateProjectProjectsResponseType$outboundSchema` instead. */
2734
2612
  const outboundSchema: z.ZodNativeEnum<{
2735
2613
  readonly System: "system";
2614
+ readonly Secret: "secret";
2736
2615
  readonly Encrypted: "encrypted";
2737
2616
  readonly Plain: "plain";
2738
2617
  readonly Sensitive: "sensitive";
2739
- readonly Secret: "secret";
2740
2618
  }>;
2741
2619
  }
2742
2620
  /** @internal */
@@ -4392,15 +4270,15 @@ export declare const CreateProjectLink2$inboundSchema: z.ZodType<CreateProjectLi
4392
4270
  /** @internal */
4393
4271
  export type CreateProjectLink2$Outbound = {
4394
4272
  type?: string | undefined;
4395
- repo?: string | undefined;
4396
- repoId?: number | undefined;
4397
4273
  updatedAt?: number | undefined;
4398
4274
  createdAt?: number | undefined;
4275
+ repo?: string | undefined;
4276
+ sourceless?: boolean | undefined;
4399
4277
  org?: string | undefined;
4400
4278
  repoOwnerId?: number | undefined;
4279
+ repoId?: number | undefined;
4401
4280
  deployHooks: Array<CreateProjectLinkProjectsDeployHooks$Outbound>;
4402
4281
  gitCredentialId?: string | undefined;
4403
- sourceless?: boolean | undefined;
4404
4282
  productionBranch?: string | undefined;
4405
4283
  };
4406
4284
  /** @internal */
@@ -4906,15 +4784,15 @@ export declare const CreateProjectProjectsDeploymentType$outboundSchema: z.ZodNa
4906
4784
  export declare namespace CreateProjectProjectsDeploymentType$ {
4907
4785
  /** @deprecated use `CreateProjectProjectsDeploymentType$inboundSchema` instead. */
4908
4786
  const inboundSchema: z.ZodNativeEnum<{
4909
- readonly Preview: "preview";
4910
4787
  readonly All: "all";
4788
+ readonly Preview: "preview";
4911
4789
  readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
4912
4790
  readonly AllExceptCustomDomains: "all_except_custom_domains";
4913
4791
  }>;
4914
4792
  /** @deprecated use `CreateProjectProjectsDeploymentType$outboundSchema` instead. */
4915
4793
  const outboundSchema: z.ZodNativeEnum<{
4916
- readonly Preview: "preview";
4917
4794
  readonly All: "all";
4795
+ readonly Preview: "preview";
4918
4796
  readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
4919
4797
  readonly AllExceptCustomDomains: "all_except_custom_domains";
4920
4798
  }>;
@@ -5308,72 +5186,6 @@ export declare function createProjectTargetsFromJSON(jsonString: string): SafePa
5308
5186
  export declare const CreateProjectPermissions$inboundSchema: z.ZodType<CreateProjectPermissions, z.ZodTypeDef, unknown>;
5309
5187
  /** @internal */
5310
5188
  export type CreateProjectPermissions$Outbound = {
5311
- aliasProject?: Array<string> | undefined;
5312
- aliasProtectionBypass?: Array<string> | undefined;
5313
- buildMachine?: Array<string> | undefined;
5314
- productionAliasProtectionBypass?: Array<string> | undefined;
5315
- connectConfigurationLink?: Array<string> | undefined;
5316
- dataCacheNamespace?: Array<string> | undefined;
5317
- deployment?: Array<string> | undefined;
5318
- deploymentBuildLogs?: Array<string> | undefined;
5319
- deploymentCheck?: Array<string> | undefined;
5320
- deploymentCheckPreview?: Array<string> | undefined;
5321
- deploymentCheckReRunFromProductionBranch?: Array<string> | undefined;
5322
- deploymentProductionGit?: Array<string> | undefined;
5323
- deploymentV0?: Array<string> | undefined;
5324
- deploymentPreview?: Array<string> | undefined;
5325
- deploymentPrivate?: Array<string> | undefined;
5326
- deploymentPromote?: Array<string> | undefined;
5327
- deploymentRollback?: Array<string> | undefined;
5328
- edgeCacheNamespace?: Array<string> | undefined;
5329
- environments?: Array<string> | undefined;
5330
- logs?: Array<string> | undefined;
5331
- logsPreset?: Array<string> | undefined;
5332
- passwordProtection?: Array<string> | undefined;
5333
- optionsAllowlist?: Array<string> | undefined;
5334
- job?: Array<string> | undefined;
5335
- observabilityData?: Array<string> | undefined;
5336
- onDemandBuild?: Array<string> | undefined;
5337
- onDemandConcurrency?: Array<string> | undefined;
5338
- project?: Array<string> | undefined;
5339
- projectFromV0?: Array<string> | undefined;
5340
- projectAccessGroup?: Array<string> | undefined;
5341
- projectAnalyticsSampling?: Array<string> | undefined;
5342
- projectCheck?: Array<string> | undefined;
5343
- projectCheckRun?: Array<string> | undefined;
5344
- projectDeploymentHook?: Array<string> | undefined;
5345
- projectDomain?: Array<string> | undefined;
5346
- projectDomainMove?: Array<string> | undefined;
5347
- projectDomainCheckConfig?: Array<string> | undefined;
5348
- projectEnvVars?: Array<string> | undefined;
5349
- projectEnvVarsProduction?: Array<string> | undefined;
5350
- projectEnvVarsUnownedByIntegration?: Array<string> | undefined;
5351
- projectFlags?: Array<string> | undefined;
5352
- projectId?: Array<string> | undefined;
5353
- projectIntegrationConfiguration?: Array<string> | undefined;
5354
- projectLink?: Array<string> | undefined;
5355
- projectMember?: Array<string> | undefined;
5356
- projectMonitoring?: Array<string> | undefined;
5357
- projectPermissions?: Array<string> | undefined;
5358
- projectProductionBranch?: Array<string> | undefined;
5359
- projectTransfer?: Array<string> | undefined;
5360
- projectTransferOut?: Array<string> | undefined;
5361
- projectProtectionBypass?: Array<string> | undefined;
5362
- projectUsage?: Array<string> | undefined;
5363
- projectAnalyticsUsage?: Array<string> | undefined;
5364
- projectSupportCase?: Array<string> | undefined;
5365
- projectSupportCaseComment?: Array<string> | undefined;
5366
- projectDeploymentExpiration?: Array<string> | undefined;
5367
- projectRollingRelease?: Array<string> | undefined;
5368
- projectTier?: Array<string> | undefined;
5369
- projectOIDCToken?: Array<string> | undefined;
5370
- seawallConfig?: Array<string> | undefined;
5371
- skewProtection?: Array<string> | undefined;
5372
- analytics?: Array<string> | undefined;
5373
- trustedIps?: Array<string> | undefined;
5374
- webAnalytics?: Array<string> | undefined;
5375
- sharedEnvVarConnection?: Array<string> | undefined;
5376
- sonar?: Array<string> | undefined;
5377
5189
  oauth2Connection?: Array<string> | undefined;
5378
5190
  user?: Array<string> | undefined;
5379
5191
  userConnection?: Array<string> | undefined;
@@ -5464,6 +5276,7 @@ export type CreateProjectPermissions$Outbound = {
5464
5276
  observabilityFunnel?: Array<string> | undefined;
5465
5277
  openTelemetryEndpoint?: Array<string> | undefined;
5466
5278
  vercelAppInstallation?: Array<string> | undefined;
5279
+ vercelAppInstallationRequest?: Array<string> | undefined;
5467
5280
  paymentMethod?: Array<string> | undefined;
5468
5281
  permissions?: Array<string> | undefined;
5469
5282
  postgres?: Array<string> | undefined;
@@ -5518,6 +5331,72 @@ export type CreateProjectPermissions$Outbound = {
5518
5331
  vercelRunExec?: Array<string> | undefined;
5519
5332
  apiKey?: Array<string> | undefined;
5520
5333
  apiKeyOwnedBySelf?: Array<string> | undefined;
5334
+ aliasProject?: Array<string> | undefined;
5335
+ aliasProtectionBypass?: Array<string> | undefined;
5336
+ buildMachine?: Array<string> | undefined;
5337
+ productionAliasProtectionBypass?: Array<string> | undefined;
5338
+ connectConfigurationLink?: Array<string> | undefined;
5339
+ dataCacheNamespace?: Array<string> | undefined;
5340
+ deployment?: Array<string> | undefined;
5341
+ deploymentBuildLogs?: Array<string> | undefined;
5342
+ deploymentCheck?: Array<string> | undefined;
5343
+ deploymentCheckPreview?: Array<string> | undefined;
5344
+ deploymentCheckReRunFromProductionBranch?: Array<string> | undefined;
5345
+ deploymentProductionGit?: Array<string> | undefined;
5346
+ deploymentV0?: Array<string> | undefined;
5347
+ deploymentPreview?: Array<string> | undefined;
5348
+ deploymentPrivate?: Array<string> | undefined;
5349
+ deploymentPromote?: Array<string> | undefined;
5350
+ deploymentRollback?: Array<string> | undefined;
5351
+ edgeCacheNamespace?: Array<string> | undefined;
5352
+ environments?: Array<string> | undefined;
5353
+ logs?: Array<string> | undefined;
5354
+ logsPreset?: Array<string> | undefined;
5355
+ passwordProtection?: Array<string> | undefined;
5356
+ optionsAllowlist?: Array<string> | undefined;
5357
+ job?: Array<string> | undefined;
5358
+ observabilityData?: Array<string> | undefined;
5359
+ onDemandBuild?: Array<string> | undefined;
5360
+ onDemandConcurrency?: Array<string> | undefined;
5361
+ project?: Array<string> | undefined;
5362
+ projectFromV0?: Array<string> | undefined;
5363
+ projectAccessGroup?: Array<string> | undefined;
5364
+ projectAnalyticsSampling?: Array<string> | undefined;
5365
+ projectCheck?: Array<string> | undefined;
5366
+ projectCheckRun?: Array<string> | undefined;
5367
+ projectDeploymentHook?: Array<string> | undefined;
5368
+ projectDomain?: Array<string> | undefined;
5369
+ projectDomainMove?: Array<string> | undefined;
5370
+ projectDomainCheckConfig?: Array<string> | undefined;
5371
+ projectEnvVars?: Array<string> | undefined;
5372
+ projectEnvVarsProduction?: Array<string> | undefined;
5373
+ projectEnvVarsUnownedByIntegration?: Array<string> | undefined;
5374
+ projectFlags?: Array<string> | undefined;
5375
+ projectId?: Array<string> | undefined;
5376
+ projectIntegrationConfiguration?: Array<string> | undefined;
5377
+ projectLink?: Array<string> | undefined;
5378
+ projectMember?: Array<string> | undefined;
5379
+ projectMonitoring?: Array<string> | undefined;
5380
+ projectPermissions?: Array<string> | undefined;
5381
+ projectProductionBranch?: Array<string> | undefined;
5382
+ projectTransfer?: Array<string> | undefined;
5383
+ projectTransferOut?: Array<string> | undefined;
5384
+ projectProtectionBypass?: Array<string> | undefined;
5385
+ projectUsage?: Array<string> | undefined;
5386
+ projectAnalyticsUsage?: Array<string> | undefined;
5387
+ projectSupportCase?: Array<string> | undefined;
5388
+ projectSupportCaseComment?: Array<string> | undefined;
5389
+ projectDeploymentExpiration?: Array<string> | undefined;
5390
+ projectRollingRelease?: Array<string> | undefined;
5391
+ projectTier?: Array<string> | undefined;
5392
+ projectOIDCToken?: Array<string> | undefined;
5393
+ seawallConfig?: Array<string> | undefined;
5394
+ skewProtection?: Array<string> | undefined;
5395
+ analytics?: Array<string> | undefined;
5396
+ trustedIps?: Array<string> | undefined;
5397
+ webAnalytics?: Array<string> | undefined;
5398
+ sharedEnvVarConnection?: Array<string> | undefined;
5399
+ sonar?: Array<string> | undefined;
5521
5400
  };
5522
5401
  /** @internal */
5523
5402
  export declare const CreateProjectPermissions$outboundSchema: z.ZodType<CreateProjectPermissions$Outbound, z.ZodTypeDef, CreateProjectPermissions>;
@@ -5745,19 +5624,19 @@ export declare const CreateProjectTrustedIpsProjectsDeploymentType$outboundSchem
5745
5624
  export declare namespace CreateProjectTrustedIpsProjectsDeploymentType$ {
5746
5625
  /** @deprecated use `CreateProjectTrustedIpsProjectsDeploymentType$inboundSchema` instead. */
5747
5626
  const inboundSchema: z.ZodNativeEnum<{
5748
- readonly Preview: "preview";
5749
- readonly Production: "production";
5750
5627
  readonly All: "all";
5628
+ readonly Preview: "preview";
5751
5629
  readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
5752
5630
  readonly AllExceptCustomDomains: "all_except_custom_domains";
5631
+ readonly Production: "production";
5753
5632
  }>;
5754
5633
  /** @deprecated use `CreateProjectTrustedIpsProjectsDeploymentType$outboundSchema` instead. */
5755
5634
  const outboundSchema: z.ZodNativeEnum<{
5756
- readonly Preview: "preview";
5757
- readonly Production: "production";
5758
5635
  readonly All: "all";
5636
+ readonly Preview: "preview";
5759
5637
  readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
5760
5638
  readonly AllExceptCustomDomains: "all_except_custom_domains";
5639
+ readonly Production: "production";
5761
5640
  }>;
5762
5641
  }
5763
5642
  /** @internal */
@@ -5793,19 +5672,19 @@ export declare const CreateProjectTrustedIpsDeploymentType$outboundSchema: z.Zod
5793
5672
  export declare namespace CreateProjectTrustedIpsDeploymentType$ {
5794
5673
  /** @deprecated use `CreateProjectTrustedIpsDeploymentType$inboundSchema` instead. */
5795
5674
  const inboundSchema: z.ZodNativeEnum<{
5796
- readonly Preview: "preview";
5797
- readonly Production: "production";
5798
5675
  readonly All: "all";
5676
+ readonly Preview: "preview";
5799
5677
  readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
5800
5678
  readonly AllExceptCustomDomains: "all_except_custom_domains";
5679
+ readonly Production: "production";
5801
5680
  }>;
5802
5681
  /** @deprecated use `CreateProjectTrustedIpsDeploymentType$outboundSchema` instead. */
5803
5682
  const outboundSchema: z.ZodNativeEnum<{
5804
- readonly Preview: "preview";
5805
- readonly Production: "production";
5806
5683
  readonly All: "all";
5684
+ readonly Preview: "preview";
5807
5685
  readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
5808
5686
  readonly AllExceptCustomDomains: "all_except_custom_domains";
5687
+ readonly Production: "production";
5809
5688
  }>;
5810
5689
  }
5811
5690
  /** @internal */
@@ -5988,310 +5867,6 @@ export declare namespace CreateProjectWebAnalytics$ {
5988
5867
  export declare function createProjectWebAnalyticsToJSON(createProjectWebAnalytics: CreateProjectWebAnalytics): string;
5989
5868
  export declare function createProjectWebAnalyticsFromJSON(jsonString: string): SafeParseResult<CreateProjectWebAnalytics, SDKValidationError>;
5990
5869
  /** @internal */
5991
- export declare const CreateProjectSrc2$inboundSchema: z.ZodType<CreateProjectSrc2, z.ZodTypeDef, unknown>;
5992
- /** @internal */
5993
- export type CreateProjectSrc2$Outbound = {
5994
- re?: string | undefined;
5995
- eq?: string | undefined;
5996
- neq?: string | undefined;
5997
- inc?: Array<string> | undefined;
5998
- ninc?: Array<string> | undefined;
5999
- pre?: string | undefined;
6000
- suf?: string | undefined;
6001
- gt?: number | undefined;
6002
- gte?: number | undefined;
6003
- lt?: number | undefined;
6004
- lte?: number | undefined;
6005
- };
6006
- /** @internal */
6007
- export declare const CreateProjectSrc2$outboundSchema: z.ZodType<CreateProjectSrc2$Outbound, z.ZodTypeDef, CreateProjectSrc2>;
6008
- /**
6009
- * @internal
6010
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6011
- */
6012
- export declare namespace CreateProjectSrc2$ {
6013
- /** @deprecated use `CreateProjectSrc2$inboundSchema` instead. */
6014
- const inboundSchema: z.ZodType<CreateProjectSrc2, z.ZodTypeDef, unknown>;
6015
- /** @deprecated use `CreateProjectSrc2$outboundSchema` instead. */
6016
- const outboundSchema: z.ZodType<CreateProjectSrc2$Outbound, z.ZodTypeDef, CreateProjectSrc2>;
6017
- /** @deprecated use `CreateProjectSrc2$Outbound` instead. */
6018
- type Outbound = CreateProjectSrc2$Outbound;
6019
- }
6020
- export declare function createProjectSrc2ToJSON(createProjectSrc2: CreateProjectSrc2): string;
6021
- export declare function createProjectSrc2FromJSON(jsonString: string): SafeParseResult<CreateProjectSrc2, SDKValidationError>;
6022
- /** @internal */
6023
- export declare const CreateProjectSrc$inboundSchema: z.ZodType<CreateProjectSrc, z.ZodTypeDef, unknown>;
6024
- /** @internal */
6025
- export type CreateProjectSrc$Outbound = CreateProjectSrc2$Outbound | string;
6026
- /** @internal */
6027
- export declare const CreateProjectSrc$outboundSchema: z.ZodType<CreateProjectSrc$Outbound, z.ZodTypeDef, CreateProjectSrc>;
6028
- /**
6029
- * @internal
6030
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6031
- */
6032
- export declare namespace CreateProjectSrc$ {
6033
- /** @deprecated use `CreateProjectSrc$inboundSchema` instead. */
6034
- const inboundSchema: z.ZodType<CreateProjectSrc, z.ZodTypeDef, unknown>;
6035
- /** @deprecated use `CreateProjectSrc$outboundSchema` instead. */
6036
- const outboundSchema: z.ZodType<CreateProjectSrc$Outbound, z.ZodTypeDef, CreateProjectSrc>;
6037
- /** @deprecated use `CreateProjectSrc$Outbound` instead. */
6038
- type Outbound = CreateProjectSrc$Outbound;
6039
- }
6040
- export declare function createProjectSrcToJSON(createProjectSrc: CreateProjectSrc): string;
6041
- export declare function createProjectSrcFromJSON(jsonString: string): SafeParseResult<CreateProjectSrc, SDKValidationError>;
6042
- /** @internal */
6043
- export declare const CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType$inboundSchema: z.ZodNativeEnum<typeof CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType>;
6044
- /** @internal */
6045
- export declare const CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType$outboundSchema: z.ZodNativeEnum<typeof CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType>;
6046
- /**
6047
- * @internal
6048
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6049
- */
6050
- export declare namespace CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType$ {
6051
- /** @deprecated use `CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType$inboundSchema` instead. */
6052
- const inboundSchema: z.ZodNativeEnum<{
6053
- readonly Path: "path";
6054
- readonly Host: "host";
6055
- readonly Method: "method";
6056
- readonly Header: "header";
6057
- readonly Cookie: "cookie";
6058
- readonly Query: "query";
6059
- readonly IpAddress: "ip_address";
6060
- readonly Protocol: "protocol";
6061
- readonly Scheme: "scheme";
6062
- readonly Environment: "environment";
6063
- readonly Region: "region";
6064
- readonly InitialRequestPath: "initial_request_path";
6065
- }>;
6066
- /** @deprecated use `CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType$outboundSchema` instead. */
6067
- const outboundSchema: z.ZodNativeEnum<{
6068
- readonly Path: "path";
6069
- readonly Host: "host";
6070
- readonly Method: "method";
6071
- readonly Header: "header";
6072
- readonly Cookie: "cookie";
6073
- readonly Query: "query";
6074
- readonly IpAddress: "ip_address";
6075
- readonly Protocol: "protocol";
6076
- readonly Scheme: "scheme";
6077
- readonly Environment: "environment";
6078
- readonly Region: "region";
6079
- readonly InitialRequestPath: "initial_request_path";
6080
- }>;
6081
- }
6082
- /** @internal */
6083
- export declare const CreateProjectValue2$inboundSchema: z.ZodType<CreateProjectValue2, z.ZodTypeDef, unknown>;
6084
- /** @internal */
6085
- export type CreateProjectValue2$Outbound = {
6086
- re?: string | undefined;
6087
- eq?: string | undefined;
6088
- neq?: string | undefined;
6089
- inc?: Array<string> | undefined;
6090
- ninc?: Array<string> | undefined;
6091
- pre?: string | undefined;
6092
- suf?: string | undefined;
6093
- gt?: number | undefined;
6094
- gte?: number | undefined;
6095
- lt?: number | undefined;
6096
- lte?: number | undefined;
6097
- };
6098
- /** @internal */
6099
- export declare const CreateProjectValue2$outboundSchema: z.ZodType<CreateProjectValue2$Outbound, z.ZodTypeDef, CreateProjectValue2>;
6100
- /**
6101
- * @internal
6102
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6103
- */
6104
- export declare namespace CreateProjectValue2$ {
6105
- /** @deprecated use `CreateProjectValue2$inboundSchema` instead. */
6106
- const inboundSchema: z.ZodType<CreateProjectValue2, z.ZodTypeDef, unknown>;
6107
- /** @deprecated use `CreateProjectValue2$outboundSchema` instead. */
6108
- const outboundSchema: z.ZodType<CreateProjectValue2$Outbound, z.ZodTypeDef, CreateProjectValue2>;
6109
- /** @deprecated use `CreateProjectValue2$Outbound` instead. */
6110
- type Outbound = CreateProjectValue2$Outbound;
6111
- }
6112
- export declare function createProjectValue2ToJSON(createProjectValue2: CreateProjectValue2): string;
6113
- export declare function createProjectValue2FromJSON(jsonString: string): SafeParseResult<CreateProjectValue2, SDKValidationError>;
6114
- /** @internal */
6115
- export declare const CreateProjectValue$inboundSchema: z.ZodType<CreateProjectValue, z.ZodTypeDef, unknown>;
6116
- /** @internal */
6117
- export type CreateProjectValue$Outbound = CreateProjectValue2$Outbound | string;
6118
- /** @internal */
6119
- export declare const CreateProjectValue$outboundSchema: z.ZodType<CreateProjectValue$Outbound, z.ZodTypeDef, CreateProjectValue>;
6120
- /**
6121
- * @internal
6122
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6123
- */
6124
- export declare namespace CreateProjectValue$ {
6125
- /** @deprecated use `CreateProjectValue$inboundSchema` instead. */
6126
- const inboundSchema: z.ZodType<CreateProjectValue, z.ZodTypeDef, unknown>;
6127
- /** @deprecated use `CreateProjectValue$outboundSchema` instead. */
6128
- const outboundSchema: z.ZodType<CreateProjectValue$Outbound, z.ZodTypeDef, CreateProjectValue>;
6129
- /** @deprecated use `CreateProjectValue$Outbound` instead. */
6130
- type Outbound = CreateProjectValue$Outbound;
6131
- }
6132
- export declare function createProjectValueToJSON(createProjectValue: CreateProjectValue): string;
6133
- export declare function createProjectValueFromJSON(jsonString: string): SafeParseResult<CreateProjectValue, SDKValidationError>;
6134
- /** @internal */
6135
- export declare const CreateProjectHas$inboundSchema: z.ZodType<CreateProjectHas, z.ZodTypeDef, unknown>;
6136
- /** @internal */
6137
- export type CreateProjectHas$Outbound = {
6138
- type: string;
6139
- key?: string | undefined;
6140
- value?: CreateProjectValue2$Outbound | string | undefined;
6141
- };
6142
- /** @internal */
6143
- export declare const CreateProjectHas$outboundSchema: z.ZodType<CreateProjectHas$Outbound, z.ZodTypeDef, CreateProjectHas>;
6144
- /**
6145
- * @internal
6146
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6147
- */
6148
- export declare namespace CreateProjectHas$ {
6149
- /** @deprecated use `CreateProjectHas$inboundSchema` instead. */
6150
- const inboundSchema: z.ZodType<CreateProjectHas, z.ZodTypeDef, unknown>;
6151
- /** @deprecated use `CreateProjectHas$outboundSchema` instead. */
6152
- const outboundSchema: z.ZodType<CreateProjectHas$Outbound, z.ZodTypeDef, CreateProjectHas>;
6153
- /** @deprecated use `CreateProjectHas$Outbound` instead. */
6154
- type Outbound = CreateProjectHas$Outbound;
6155
- }
6156
- export declare function createProjectHasToJSON(createProjectHas: CreateProjectHas): string;
6157
- export declare function createProjectHasFromJSON(jsonString: string): SafeParseResult<CreateProjectHas, SDKValidationError>;
6158
- /** @internal */
6159
- export declare const CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$inboundSchema: z.ZodNativeEnum<typeof CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType>;
6160
- /** @internal */
6161
- export declare const CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$outboundSchema: z.ZodNativeEnum<typeof CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType>;
6162
- /**
6163
- * @internal
6164
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6165
- */
6166
- export declare namespace CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$ {
6167
- /** @deprecated use `CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$inboundSchema` instead. */
6168
- const inboundSchema: z.ZodNativeEnum<{
6169
- readonly Path: "path";
6170
- readonly Host: "host";
6171
- readonly Method: "method";
6172
- readonly Header: "header";
6173
- readonly Cookie: "cookie";
6174
- readonly Query: "query";
6175
- readonly IpAddress: "ip_address";
6176
- readonly Protocol: "protocol";
6177
- readonly Scheme: "scheme";
6178
- readonly Environment: "environment";
6179
- readonly Region: "region";
6180
- readonly InitialRequestPath: "initial_request_path";
6181
- }>;
6182
- /** @deprecated use `CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$outboundSchema` instead. */
6183
- const outboundSchema: z.ZodNativeEnum<{
6184
- readonly Path: "path";
6185
- readonly Host: "host";
6186
- readonly Method: "method";
6187
- readonly Header: "header";
6188
- readonly Cookie: "cookie";
6189
- readonly Query: "query";
6190
- readonly IpAddress: "ip_address";
6191
- readonly Protocol: "protocol";
6192
- readonly Scheme: "scheme";
6193
- readonly Environment: "environment";
6194
- readonly Region: "region";
6195
- readonly InitialRequestPath: "initial_request_path";
6196
- }>;
6197
- }
6198
- /** @internal */
6199
- export declare const CreateProjectValueProjects2$inboundSchema: z.ZodType<CreateProjectValueProjects2, z.ZodTypeDef, unknown>;
6200
- /** @internal */
6201
- export type CreateProjectValueProjects2$Outbound = {
6202
- re?: string | undefined;
6203
- eq?: string | undefined;
6204
- neq?: string | undefined;
6205
- inc?: Array<string> | undefined;
6206
- ninc?: Array<string> | undefined;
6207
- pre?: string | undefined;
6208
- suf?: string | undefined;
6209
- gt?: number | undefined;
6210
- gte?: number | undefined;
6211
- lt?: number | undefined;
6212
- lte?: number | undefined;
6213
- };
6214
- /** @internal */
6215
- export declare const CreateProjectValueProjects2$outboundSchema: z.ZodType<CreateProjectValueProjects2$Outbound, z.ZodTypeDef, CreateProjectValueProjects2>;
6216
- /**
6217
- * @internal
6218
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6219
- */
6220
- export declare namespace CreateProjectValueProjects2$ {
6221
- /** @deprecated use `CreateProjectValueProjects2$inboundSchema` instead. */
6222
- const inboundSchema: z.ZodType<CreateProjectValueProjects2, z.ZodTypeDef, unknown>;
6223
- /** @deprecated use `CreateProjectValueProjects2$outboundSchema` instead. */
6224
- const outboundSchema: z.ZodType<CreateProjectValueProjects2$Outbound, z.ZodTypeDef, CreateProjectValueProjects2>;
6225
- /** @deprecated use `CreateProjectValueProjects2$Outbound` instead. */
6226
- type Outbound = CreateProjectValueProjects2$Outbound;
6227
- }
6228
- export declare function createProjectValueProjects2ToJSON(createProjectValueProjects2: CreateProjectValueProjects2): string;
6229
- export declare function createProjectValueProjects2FromJSON(jsonString: string): SafeParseResult<CreateProjectValueProjects2, SDKValidationError>;
6230
- /** @internal */
6231
- export declare const CreateProjectProjectsValue$inboundSchema: z.ZodType<CreateProjectProjectsValue, z.ZodTypeDef, unknown>;
6232
- /** @internal */
6233
- export type CreateProjectProjectsValue$Outbound = CreateProjectValueProjects2$Outbound | string;
6234
- /** @internal */
6235
- export declare const CreateProjectProjectsValue$outboundSchema: z.ZodType<CreateProjectProjectsValue$Outbound, z.ZodTypeDef, CreateProjectProjectsValue>;
6236
- /**
6237
- * @internal
6238
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6239
- */
6240
- export declare namespace CreateProjectProjectsValue$ {
6241
- /** @deprecated use `CreateProjectProjectsValue$inboundSchema` instead. */
6242
- const inboundSchema: z.ZodType<CreateProjectProjectsValue, z.ZodTypeDef, unknown>;
6243
- /** @deprecated use `CreateProjectProjectsValue$outboundSchema` instead. */
6244
- const outboundSchema: z.ZodType<CreateProjectProjectsValue$Outbound, z.ZodTypeDef, CreateProjectProjectsValue>;
6245
- /** @deprecated use `CreateProjectProjectsValue$Outbound` instead. */
6246
- type Outbound = CreateProjectProjectsValue$Outbound;
6247
- }
6248
- export declare function createProjectProjectsValueToJSON(createProjectProjectsValue: CreateProjectProjectsValue): string;
6249
- export declare function createProjectProjectsValueFromJSON(jsonString: string): SafeParseResult<CreateProjectProjectsValue, SDKValidationError>;
6250
- /** @internal */
6251
- export declare const CreateProjectMissing$inboundSchema: z.ZodType<CreateProjectMissing, z.ZodTypeDef, unknown>;
6252
- /** @internal */
6253
- export type CreateProjectMissing$Outbound = {
6254
- type: string;
6255
- key?: string | undefined;
6256
- value?: CreateProjectValueProjects2$Outbound | string | undefined;
6257
- };
6258
- /** @internal */
6259
- export declare const CreateProjectMissing$outboundSchema: z.ZodType<CreateProjectMissing$Outbound, z.ZodTypeDef, CreateProjectMissing>;
6260
- /**
6261
- * @internal
6262
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6263
- */
6264
- export declare namespace CreateProjectMissing$ {
6265
- /** @deprecated use `CreateProjectMissing$inboundSchema` instead. */
6266
- const inboundSchema: z.ZodType<CreateProjectMissing, z.ZodTypeDef, unknown>;
6267
- /** @deprecated use `CreateProjectMissing$outboundSchema` instead. */
6268
- const outboundSchema: z.ZodType<CreateProjectMissing$Outbound, z.ZodTypeDef, CreateProjectMissing>;
6269
- /** @deprecated use `CreateProjectMissing$Outbound` instead. */
6270
- type Outbound = CreateProjectMissing$Outbound;
6271
- }
6272
- export declare function createProjectMissingToJSON(createProjectMissing: CreateProjectMissing): string;
6273
- export declare function createProjectMissingFromJSON(jsonString: string): SafeParseResult<CreateProjectMissing, SDKValidationError>;
6274
- /** @internal */
6275
- export declare const CreateProjectHandle$inboundSchema: z.ZodNativeEnum<typeof CreateProjectHandle>;
6276
- /** @internal */
6277
- export declare const CreateProjectHandle$outboundSchema: z.ZodNativeEnum<typeof CreateProjectHandle>;
6278
- /**
6279
- * @internal
6280
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6281
- */
6282
- export declare namespace CreateProjectHandle$ {
6283
- /** @deprecated use `CreateProjectHandle$inboundSchema` instead. */
6284
- const inboundSchema: z.ZodNativeEnum<{
6285
- readonly Init: "init";
6286
- readonly Finalize: "finalize";
6287
- }>;
6288
- /** @deprecated use `CreateProjectHandle$outboundSchema` instead. */
6289
- const outboundSchema: z.ZodNativeEnum<{
6290
- readonly Init: "init";
6291
- readonly Finalize: "finalize";
6292
- }>;
6293
- }
6294
- /** @internal */
6295
5870
  export declare const CreateProjectAction$inboundSchema: z.ZodNativeEnum<typeof CreateProjectAction>;
6296
5871
  /** @internal */
6297
5872
  export declare const CreateProjectAction$outboundSchema: z.ZodNativeEnum<typeof CreateProjectAction>;
@@ -6302,141 +5877,15 @@ export declare const CreateProjectAction$outboundSchema: z.ZodNativeEnum<typeof
6302
5877
  export declare namespace CreateProjectAction$ {
6303
5878
  /** @deprecated use `CreateProjectAction$inboundSchema` instead. */
6304
5879
  const inboundSchema: z.ZodNativeEnum<{
6305
- readonly Deny: "deny";
6306
- readonly Challenge: "challenge";
6307
5880
  readonly Log: "log";
6308
- readonly Bypass: "bypass";
6309
- readonly RateLimit: "rate_limit";
6310
- readonly Redirect: "redirect";
5881
+ readonly Challenge: "challenge";
5882
+ readonly Deny: "deny";
6311
5883
  }>;
6312
5884
  /** @deprecated use `CreateProjectAction$outboundSchema` instead. */
6313
5885
  const outboundSchema: z.ZodNativeEnum<{
6314
- readonly Deny: "deny";
6315
- readonly Challenge: "challenge";
6316
5886
  readonly Log: "log";
6317
- readonly Bypass: "bypass";
6318
- readonly RateLimit: "rate_limit";
6319
- readonly Redirect: "redirect";
6320
- }>;
6321
- }
6322
- /** @internal */
6323
- export declare const CreateProjectAlgo$inboundSchema: z.ZodNativeEnum<typeof CreateProjectAlgo>;
6324
- /** @internal */
6325
- export declare const CreateProjectAlgo$outboundSchema: z.ZodNativeEnum<typeof CreateProjectAlgo>;
6326
- /**
6327
- * @internal
6328
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6329
- */
6330
- export declare namespace CreateProjectAlgo$ {
6331
- /** @deprecated use `CreateProjectAlgo$inboundSchema` instead. */
6332
- const inboundSchema: z.ZodNativeEnum<{
6333
- readonly FixedWindow: "fixed_window";
6334
- readonly TokenBucket: "token_bucket";
6335
- }>;
6336
- /** @deprecated use `CreateProjectAlgo$outboundSchema` instead. */
6337
- const outboundSchema: z.ZodNativeEnum<{
6338
- readonly FixedWindow: "fixed_window";
6339
- readonly TokenBucket: "token_bucket";
6340
- }>;
6341
- }
6342
- /** @internal */
6343
- export declare const CreateProjectErl$inboundSchema: z.ZodType<CreateProjectErl, z.ZodTypeDef, unknown>;
6344
- /** @internal */
6345
- export type CreateProjectErl$Outbound = {
6346
- algo: string;
6347
- window: number;
6348
- limit: number;
6349
- keys: Array<string>;
6350
- };
6351
- /** @internal */
6352
- export declare const CreateProjectErl$outboundSchema: z.ZodType<CreateProjectErl$Outbound, z.ZodTypeDef, CreateProjectErl>;
6353
- /**
6354
- * @internal
6355
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6356
- */
6357
- export declare namespace CreateProjectErl$ {
6358
- /** @deprecated use `CreateProjectErl$inboundSchema` instead. */
6359
- const inboundSchema: z.ZodType<CreateProjectErl, z.ZodTypeDef, unknown>;
6360
- /** @deprecated use `CreateProjectErl$outboundSchema` instead. */
6361
- const outboundSchema: z.ZodType<CreateProjectErl$Outbound, z.ZodTypeDef, CreateProjectErl>;
6362
- /** @deprecated use `CreateProjectErl$Outbound` instead. */
6363
- type Outbound = CreateProjectErl$Outbound;
6364
- }
6365
- export declare function createProjectErlToJSON(createProjectErl: CreateProjectErl): string;
6366
- export declare function createProjectErlFromJSON(jsonString: string): SafeParseResult<CreateProjectErl, SDKValidationError>;
6367
- /** @internal */
6368
- export declare const CreateProjectMitigate$inboundSchema: z.ZodType<CreateProjectMitigate, z.ZodTypeDef, unknown>;
6369
- /** @internal */
6370
- export type CreateProjectMitigate$Outbound = {
6371
- action: string;
6372
- rule_id: string;
6373
- ttl?: number | undefined;
6374
- erl?: CreateProjectErl$Outbound | undefined;
6375
- };
6376
- /** @internal */
6377
- export declare const CreateProjectMitigate$outboundSchema: z.ZodType<CreateProjectMitigate$Outbound, z.ZodTypeDef, CreateProjectMitigate>;
6378
- /**
6379
- * @internal
6380
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6381
- */
6382
- export declare namespace CreateProjectMitigate$ {
6383
- /** @deprecated use `CreateProjectMitigate$inboundSchema` instead. */
6384
- const inboundSchema: z.ZodType<CreateProjectMitigate, z.ZodTypeDef, unknown>;
6385
- /** @deprecated use `CreateProjectMitigate$outboundSchema` instead. */
6386
- const outboundSchema: z.ZodType<CreateProjectMitigate$Outbound, z.ZodTypeDef, CreateProjectMitigate>;
6387
- /** @deprecated use `CreateProjectMitigate$Outbound` instead. */
6388
- type Outbound = CreateProjectMitigate$Outbound;
6389
- }
6390
- export declare function createProjectMitigateToJSON(createProjectMitigate: CreateProjectMitigate): string;
6391
- export declare function createProjectMitigateFromJSON(jsonString: string): SafeParseResult<CreateProjectMitigate, SDKValidationError>;
6392
- /** @internal */
6393
- export declare const CreateProjectFirewallRoutes$inboundSchema: z.ZodType<CreateProjectFirewallRoutes, z.ZodTypeDef, unknown>;
6394
- /** @internal */
6395
- export type CreateProjectFirewallRoutes$Outbound = {
6396
- src?: CreateProjectSrc2$Outbound | string | undefined;
6397
- has?: Array<CreateProjectHas$Outbound> | undefined;
6398
- missing?: Array<CreateProjectMissing$Outbound> | undefined;
6399
- dest?: string | undefined;
6400
- status?: number | undefined;
6401
- handle?: string | undefined;
6402
- mitigate?: CreateProjectMitigate$Outbound | undefined;
6403
- };
6404
- /** @internal */
6405
- export declare const CreateProjectFirewallRoutes$outboundSchema: z.ZodType<CreateProjectFirewallRoutes$Outbound, z.ZodTypeDef, CreateProjectFirewallRoutes>;
6406
- /**
6407
- * @internal
6408
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6409
- */
6410
- export declare namespace CreateProjectFirewallRoutes$ {
6411
- /** @deprecated use `CreateProjectFirewallRoutes$inboundSchema` instead. */
6412
- const inboundSchema: z.ZodType<CreateProjectFirewallRoutes, z.ZodTypeDef, unknown>;
6413
- /** @deprecated use `CreateProjectFirewallRoutes$outboundSchema` instead. */
6414
- const outboundSchema: z.ZodType<CreateProjectFirewallRoutes$Outbound, z.ZodTypeDef, CreateProjectFirewallRoutes>;
6415
- /** @deprecated use `CreateProjectFirewallRoutes$Outbound` instead. */
6416
- type Outbound = CreateProjectFirewallRoutes$Outbound;
6417
- }
6418
- export declare function createProjectFirewallRoutesToJSON(createProjectFirewallRoutes: CreateProjectFirewallRoutes): string;
6419
- export declare function createProjectFirewallRoutesFromJSON(jsonString: string): SafeParseResult<CreateProjectFirewallRoutes, SDKValidationError>;
6420
- /** @internal */
6421
- export declare const CreateProjectProjectsAction$inboundSchema: z.ZodNativeEnum<typeof CreateProjectProjectsAction>;
6422
- /** @internal */
6423
- export declare const CreateProjectProjectsAction$outboundSchema: z.ZodNativeEnum<typeof CreateProjectProjectsAction>;
6424
- /**
6425
- * @internal
6426
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6427
- */
6428
- export declare namespace CreateProjectProjectsAction$ {
6429
- /** @deprecated use `CreateProjectProjectsAction$inboundSchema` instead. */
6430
- const inboundSchema: z.ZodNativeEnum<{
6431
- readonly Deny: "deny";
6432
5887
  readonly Challenge: "challenge";
6433
- readonly Log: "log";
6434
- }>;
6435
- /** @deprecated use `CreateProjectProjectsAction$outboundSchema` instead. */
6436
- const outboundSchema: z.ZodNativeEnum<{
6437
5888
  readonly Deny: "deny";
6438
- readonly Challenge: "challenge";
6439
- readonly Log: "log";
6440
5889
  }>;
6441
5890
  }
6442
5891
  /** @internal */
@@ -6463,25 +5912,25 @@ export declare namespace CreateProjectBotFilter$ {
6463
5912
  export declare function createProjectBotFilterToJSON(createProjectBotFilter: CreateProjectBotFilter): string;
6464
5913
  export declare function createProjectBotFilterFromJSON(jsonString: string): SafeParseResult<CreateProjectBotFilter, SDKValidationError>;
6465
5914
  /** @internal */
6466
- export declare const CreateProjectProjectsResponseAction$inboundSchema: z.ZodNativeEnum<typeof CreateProjectProjectsResponseAction>;
5915
+ export declare const CreateProjectProjectsAction$inboundSchema: z.ZodNativeEnum<typeof CreateProjectProjectsAction>;
6467
5916
  /** @internal */
6468
- export declare const CreateProjectProjectsResponseAction$outboundSchema: z.ZodNativeEnum<typeof CreateProjectProjectsResponseAction>;
5917
+ export declare const CreateProjectProjectsAction$outboundSchema: z.ZodNativeEnum<typeof CreateProjectProjectsAction>;
6469
5918
  /**
6470
5919
  * @internal
6471
5920
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6472
5921
  */
6473
- export declare namespace CreateProjectProjectsResponseAction$ {
6474
- /** @deprecated use `CreateProjectProjectsResponseAction$inboundSchema` instead. */
5922
+ export declare namespace CreateProjectProjectsAction$ {
5923
+ /** @deprecated use `CreateProjectProjectsAction$inboundSchema` instead. */
6475
5924
  const inboundSchema: z.ZodNativeEnum<{
6476
- readonly Deny: "deny";
6477
- readonly Challenge: "challenge";
6478
5925
  readonly Log: "log";
5926
+ readonly Challenge: "challenge";
5927
+ readonly Deny: "deny";
6479
5928
  }>;
6480
- /** @deprecated use `CreateProjectProjectsResponseAction$outboundSchema` instead. */
5929
+ /** @deprecated use `CreateProjectProjectsAction$outboundSchema` instead. */
6481
5930
  const outboundSchema: z.ZodNativeEnum<{
6482
- readonly Deny: "deny";
6483
- readonly Challenge: "challenge";
6484
5931
  readonly Log: "log";
5932
+ readonly Challenge: "challenge";
5933
+ readonly Deny: "deny";
6485
5934
  }>;
6486
5935
  }
6487
5936
  /** @internal */
@@ -6508,25 +5957,25 @@ export declare namespace CreateProjectAiBots$ {
6508
5957
  export declare function createProjectAiBotsToJSON(createProjectAiBots: CreateProjectAiBots): string;
6509
5958
  export declare function createProjectAiBotsFromJSON(jsonString: string): SafeParseResult<CreateProjectAiBots, SDKValidationError>;
6510
5959
  /** @internal */
6511
- export declare const CreateProjectProjectsResponse200Action$inboundSchema: z.ZodNativeEnum<typeof CreateProjectProjectsResponse200Action>;
5960
+ export declare const CreateProjectProjectsResponseAction$inboundSchema: z.ZodNativeEnum<typeof CreateProjectProjectsResponseAction>;
6512
5961
  /** @internal */
6513
- export declare const CreateProjectProjectsResponse200Action$outboundSchema: z.ZodNativeEnum<typeof CreateProjectProjectsResponse200Action>;
5962
+ export declare const CreateProjectProjectsResponseAction$outboundSchema: z.ZodNativeEnum<typeof CreateProjectProjectsResponseAction>;
6514
5963
  /**
6515
5964
  * @internal
6516
5965
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6517
5966
  */
6518
- export declare namespace CreateProjectProjectsResponse200Action$ {
6519
- /** @deprecated use `CreateProjectProjectsResponse200Action$inboundSchema` instead. */
5967
+ export declare namespace CreateProjectProjectsResponseAction$ {
5968
+ /** @deprecated use `CreateProjectProjectsResponseAction$inboundSchema` instead. */
6520
5969
  const inboundSchema: z.ZodNativeEnum<{
6521
- readonly Deny: "deny";
6522
- readonly Challenge: "challenge";
6523
5970
  readonly Log: "log";
5971
+ readonly Challenge: "challenge";
5972
+ readonly Deny: "deny";
6524
5973
  }>;
6525
- /** @deprecated use `CreateProjectProjectsResponse200Action$outboundSchema` instead. */
5974
+ /** @deprecated use `CreateProjectProjectsResponseAction$outboundSchema` instead. */
6526
5975
  const outboundSchema: z.ZodNativeEnum<{
6527
- readonly Deny: "deny";
6528
- readonly Challenge: "challenge";
6529
5976
  readonly Log: "log";
5977
+ readonly Challenge: "challenge";
5978
+ readonly Deny: "deny";
6530
5979
  }>;
6531
5980
  }
6532
5981
  /** @internal */
@@ -6586,7 +6035,6 @@ export type CreateProjectSecurity$Outbound = {
6586
6035
  firewallUpdatedAt?: number | undefined;
6587
6036
  attackModeActiveUntil?: number | null | undefined;
6588
6037
  firewallConfigVersion?: number | undefined;
6589
- firewallRoutes?: Array<CreateProjectFirewallRoutes$Outbound> | undefined;
6590
6038
  firewallSeawallEnabled?: boolean | undefined;
6591
6039
  ja3Enabled?: boolean | undefined;
6592
6040
  ja4Enabled?: boolean | undefined;