@vercel/sdk 1.11.1 → 1.11.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 (97) hide show
  1. package/bin/mcp-server.js +1329 -1215
  2. package/bin/mcp-server.js.map +21 -21
  3. package/esm/__tests__/accessgroups.test.js +1 -3
  4. package/esm/__tests__/accessgroups.test.js.map +1 -1
  5. package/esm/__tests__/domains.test.js +12 -3
  6. package/esm/__tests__/domains.test.js.map +1 -1
  7. package/esm/__tests__/integrations.test.js +1 -1
  8. package/esm/__tests__/rollingrelease.test.js +6 -2
  9. package/esm/__tests__/rollingrelease.test.js.map +1 -1
  10. package/esm/__tests__/security.test.js +11 -1
  11. package/esm/__tests__/security.test.js.map +1 -1
  12. package/esm/funcs/deploymentsUploadFile.js +0 -1
  13. package/esm/funcs/deploymentsUploadFile.js.map +1 -1
  14. package/esm/funcs/domainsGetDomainTransfer.js +2 -2
  15. package/esm/funcs/domainsGetDomainTransfer.js.map +1 -1
  16. package/esm/funcs/marketplaceUpdateResourceSecrets.js +2 -2
  17. package/esm/funcs/marketplaceUpdateResourceSecrets.js.map +1 -1
  18. package/esm/lib/config.d.ts +3 -3
  19. package/esm/lib/config.js +3 -3
  20. package/esm/mcp-server/mcp-server.js +1 -1
  21. package/esm/mcp-server/server.js +1 -1
  22. package/esm/models/canceldeploymentop.d.ts +6 -6
  23. package/esm/models/canceldeploymentop.js +2 -2
  24. package/esm/models/canceldeploymentop.js.map +1 -1
  25. package/esm/models/createdeploymentop.d.ts +41 -41
  26. package/esm/models/createdeploymentop.d.ts.map +1 -1
  27. package/esm/models/createdeploymentop.js +15 -15
  28. package/esm/models/createdeploymentop.js.map +1 -1
  29. package/esm/models/createintegrationstoredirectop.d.ts +273 -246
  30. package/esm/models/createintegrationstoredirectop.d.ts.map +1 -1
  31. package/esm/models/createintegrationstoredirectop.js +317 -296
  32. package/esm/models/createintegrationstoredirectop.js.map +1 -1
  33. package/esm/models/createprojectop.d.ts +162 -164
  34. package/esm/models/createprojectop.d.ts.map +1 -1
  35. package/esm/models/createprojectop.js +154 -156
  36. package/esm/models/createprojectop.js.map +1 -1
  37. package/esm/models/getconfigurationproductsop.d.ts +330 -330
  38. package/esm/models/getconfigurationproductsop.js +408 -408
  39. package/esm/models/getdeploymentop.d.ts +6 -6
  40. package/esm/models/getdeploymentop.js +2 -2
  41. package/esm/models/getdeploymentop.js.map +1 -1
  42. package/esm/models/getdomaintransferop.d.ts +99 -25
  43. package/esm/models/getdomaintransferop.d.ts.map +1 -1
  44. package/esm/models/getdomaintransferop.js +101 -25
  45. package/esm/models/getdomaintransferop.js.map +1 -1
  46. package/esm/models/getprojectsop.d.ts +0 -2
  47. package/esm/models/getprojectsop.d.ts.map +1 -1
  48. package/esm/models/getprojectsop.js +0 -2
  49. package/esm/models/getprojectsop.js.map +1 -1
  50. package/esm/models/patchteamop.d.ts +12 -0
  51. package/esm/models/patchteamop.d.ts.map +1 -1
  52. package/esm/models/patchteamop.js +4 -0
  53. package/esm/models/patchteamop.js.map +1 -1
  54. package/esm/models/updateprojectdatacacheop.d.ts +0 -2
  55. package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
  56. package/esm/models/updateprojectdatacacheop.js +0 -2
  57. package/esm/models/updateprojectdatacacheop.js.map +1 -1
  58. package/esm/models/updateprojectop.d.ts +0 -2
  59. package/esm/models/updateprojectop.d.ts.map +1 -1
  60. package/esm/models/updateprojectop.js +0 -2
  61. package/esm/models/updateprojectop.js.map +1 -1
  62. package/esm/models/uploadfileop.d.ts +0 -5
  63. package/esm/models/uploadfileop.d.ts.map +1 -1
  64. package/esm/models/uploadfileop.js +0 -4
  65. package/esm/models/uploadfileop.js.map +1 -1
  66. package/esm/models/userevent.d.ts +960 -770
  67. package/esm/models/userevent.d.ts.map +1 -1
  68. package/esm/models/userevent.js +1102 -974
  69. package/esm/models/userevent.js.map +1 -1
  70. package/examples/package-lock.json +1 -1
  71. package/jsr.json +1 -1
  72. package/package.json +1 -1
  73. package/src/__tests__/accessgroups.test.ts +1 -3
  74. package/src/__tests__/domains.test.ts +12 -3
  75. package/src/__tests__/integrations.test.ts +1 -1
  76. package/src/__tests__/rollingrelease.test.ts +6 -2
  77. package/src/__tests__/security.test.ts +11 -1
  78. package/src/funcs/deploymentsUploadFile.ts +0 -5
  79. package/src/funcs/domainsGetDomainTransfer.ts +2 -2
  80. package/src/funcs/marketplaceUpdateResourceSecrets.ts +2 -2
  81. package/src/lib/config.ts +3 -3
  82. package/src/mcp-server/mcp-server.ts +1 -1
  83. package/src/mcp-server/server.ts +1 -1
  84. package/src/models/canceldeploymentop.ts +4 -4
  85. package/src/models/createdeploymentop.ts +19 -19
  86. package/src/models/createintegrationstoredirectop.ts +543 -507
  87. package/src/models/createprojectop.ts +299 -303
  88. package/src/models/getconfigurationproductsop.ts +703 -703
  89. package/src/models/getdeploymentop.ts +4 -4
  90. package/src/models/getdomaintransferop.ts +203 -39
  91. package/src/models/getprojectsop.ts +0 -4
  92. package/src/models/patchteamop.ts +4 -0
  93. package/src/models/updateprojectdatacacheop.ts +0 -4
  94. package/src/models/updateprojectop.ts +0 -4
  95. package/src/models/uploadfileop.ts +0 -9
  96. package/src/models/userevent.ts +2219 -1917
  97. package/vercel-spec.json +613 -503
@@ -467,10 +467,10 @@ export type CreateProjectProjectsTarget =
467
467
 
468
468
  export const CreateProjectProjectsResponseType = {
469
469
  System: "system",
470
+ Secret: "secret",
470
471
  Encrypted: "encrypted",
471
472
  Plain: "plain",
472
473
  Sensitive: "sensitive",
473
- Secret: "secret",
474
474
  } as const;
475
475
  export type CreateProjectProjectsResponseType = ClosedEnum<
476
476
  typeof CreateProjectProjectsResponseType
@@ -1230,18 +1230,18 @@ export type CreateProjectLinkProjectsDeployHooks = {
1230
1230
 
1231
1231
  export type CreateProjectLink2 = {
1232
1232
  type: CreateProjectLinkProjectsType;
1233
- repo?: string | undefined;
1234
- repoId?: number | undefined;
1235
1233
  updatedAt?: number | undefined;
1236
1234
  createdAt?: number | undefined;
1235
+ repo?: string | undefined;
1236
+ sourceless?: boolean | undefined;
1237
1237
  org: string;
1238
1238
  /**
1239
1239
  * 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.
1240
1240
  */
1241
1241
  repoOwnerId?: number | undefined;
1242
+ repoId?: number | undefined;
1242
1243
  deployHooks: Array<CreateProjectLinkProjectsDeployHooks>;
1243
1244
  gitCredentialId: string;
1244
- sourceless?: boolean | undefined;
1245
1245
  productionBranch: string;
1246
1246
  };
1247
1247
 
@@ -1361,7 +1361,6 @@ export type CreateProjectBuildMachineType = ClosedEnum<
1361
1361
  >;
1362
1362
 
1363
1363
  export type CreateProjectProjectsResourceConfig = {
1364
- elasticConcurrencyEnabled?: boolean | undefined;
1365
1364
  fluid?: boolean | undefined;
1366
1365
  functionDefaultRegions: Array<string>;
1367
1366
  functionDefaultTimeout?: number | undefined;
@@ -1369,6 +1368,7 @@ export type CreateProjectProjectsResourceConfig = {
1369
1368
  | CreateProjectFunctionDefaultMemoryType
1370
1369
  | undefined;
1371
1370
  functionZeroConfigFailover?: boolean | undefined;
1371
+ elasticConcurrencyEnabled?: boolean | undefined;
1372
1372
  buildMachineType?: CreateProjectBuildMachineType | undefined;
1373
1373
  isNSNBDisabled?: boolean | undefined;
1374
1374
  };
@@ -1449,7 +1449,6 @@ export type CreateProjectProjectsBuildMachineType = ClosedEnum<
1449
1449
  >;
1450
1450
 
1451
1451
  export type CreateProjectDefaultResourceConfig = {
1452
- elasticConcurrencyEnabled?: boolean | undefined;
1453
1452
  fluid?: boolean | undefined;
1454
1453
  functionDefaultRegions: Array<string>;
1455
1454
  functionDefaultTimeout?: number | undefined;
@@ -1457,13 +1456,14 @@ export type CreateProjectDefaultResourceConfig = {
1457
1456
  | CreateProjectProjectsFunctionDefaultMemoryType
1458
1457
  | undefined;
1459
1458
  functionZeroConfigFailover?: boolean | undefined;
1459
+ elasticConcurrencyEnabled?: boolean | undefined;
1460
1460
  buildMachineType?: CreateProjectProjectsBuildMachineType | undefined;
1461
1461
  isNSNBDisabled?: boolean | undefined;
1462
1462
  };
1463
1463
 
1464
1464
  export const CreateProjectProjectsDeploymentType = {
1465
- Preview: "preview",
1466
1465
  All: "all",
1466
+ Preview: "preview",
1467
1467
  ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews",
1468
1468
  AllExceptCustomDomains: "all_except_custom_domains",
1469
1469
  } as const;
@@ -1636,73 +1636,6 @@ export type CreateProjectTargets = {
1636
1636
  };
1637
1637
 
1638
1638
  export type CreateProjectPermissions = {
1639
- aliasProject?: Array<ACLAction> | undefined;
1640
- aliasProtectionBypass?: Array<ACLAction> | undefined;
1641
- buildMachine?: Array<ACLAction> | undefined;
1642
- productionAliasProtectionBypass?: Array<ACLAction> | undefined;
1643
- connectConfigurationLink?: Array<ACLAction> | undefined;
1644
- dataCacheNamespace?: Array<ACLAction> | undefined;
1645
- deployment?: Array<ACLAction> | undefined;
1646
- deploymentBuildLogs?: Array<ACLAction> | undefined;
1647
- deploymentCheck?: Array<ACLAction> | undefined;
1648
- deploymentCheckPreview?: Array<ACLAction> | undefined;
1649
- deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
1650
- deploymentProductionGit?: Array<ACLAction> | undefined;
1651
- deploymentV0?: Array<ACLAction> | undefined;
1652
- deploymentPreview?: Array<ACLAction> | undefined;
1653
- deploymentPrivate?: Array<ACLAction> | undefined;
1654
- deploymentPromote?: Array<ACLAction> | undefined;
1655
- deploymentRollback?: Array<ACLAction> | undefined;
1656
- edgeCacheNamespace?: Array<ACLAction> | undefined;
1657
- environments?: Array<ACLAction> | undefined;
1658
- logs?: Array<ACLAction> | undefined;
1659
- logsPreset?: Array<ACLAction> | undefined;
1660
- passwordProtection?: Array<ACLAction> | undefined;
1661
- optionsAllowlist?: Array<ACLAction> | undefined;
1662
- job?: Array<ACLAction> | undefined;
1663
- observabilityData?: Array<ACLAction> | undefined;
1664
- onDemandBuild?: Array<ACLAction> | undefined;
1665
- onDemandConcurrency?: Array<ACLAction> | undefined;
1666
- project?: Array<ACLAction> | undefined;
1667
- projectFromV0?: Array<ACLAction> | undefined;
1668
- projectAccessGroup?: Array<ACLAction> | undefined;
1669
- projectAnalyticsSampling?: Array<ACLAction> | undefined;
1670
- projectCheck?: Array<ACLAction> | undefined;
1671
- projectCheckRun?: Array<ACLAction> | undefined;
1672
- projectDeploymentHook?: Array<ACLAction> | undefined;
1673
- projectDomain?: Array<ACLAction> | undefined;
1674
- projectDomainMove?: Array<ACLAction> | undefined;
1675
- projectDomainCheckConfig?: Array<ACLAction> | undefined;
1676
- projectEnvVars?: Array<ACLAction> | undefined;
1677
- projectEnvVarsProduction?: Array<ACLAction> | undefined;
1678
- projectEnvVarsUnownedByIntegration?: Array<ACLAction> | undefined;
1679
- projectFlags?: Array<ACLAction> | undefined;
1680
- projectId?: Array<ACLAction> | undefined;
1681
- projectIntegrationConfiguration?: Array<ACLAction> | undefined;
1682
- projectLink?: Array<ACLAction> | undefined;
1683
- projectMember?: Array<ACLAction> | undefined;
1684
- projectMonitoring?: Array<ACLAction> | undefined;
1685
- projectPermissions?: Array<ACLAction> | undefined;
1686
- projectProductionBranch?: Array<ACLAction> | undefined;
1687
- projectTransfer?: Array<ACLAction> | undefined;
1688
- projectTransferOut?: Array<ACLAction> | undefined;
1689
- projectProtectionBypass?: Array<ACLAction> | undefined;
1690
- projectUsage?: Array<ACLAction> | undefined;
1691
- projectAnalyticsUsage?: Array<ACLAction> | undefined;
1692
- projectSupportCase?: Array<ACLAction> | undefined;
1693
- projectSupportCaseComment?: Array<ACLAction> | undefined;
1694
- projectDeploymentExpiration?: Array<ACLAction> | undefined;
1695
- projectRollingRelease?: Array<ACLAction> | undefined;
1696
- projectTier?: Array<ACLAction> | undefined;
1697
- projectOIDCToken?: Array<ACLAction> | undefined;
1698
- seawallConfig?: Array<ACLAction> | undefined;
1699
- skewProtection?: Array<ACLAction> | undefined;
1700
- analytics?: Array<ACLAction> | undefined;
1701
- trustedIps?: Array<ACLAction> | undefined;
1702
- v0Chat?: Array<ACLAction> | undefined;
1703
- webAnalytics?: Array<ACLAction> | undefined;
1704
- sharedEnvVarConnection?: Array<ACLAction> | undefined;
1705
- sonar?: Array<ACLAction> | undefined;
1706
1639
  oauth2Connection?: Array<ACLAction> | undefined;
1707
1640
  user?: Array<ACLAction> | undefined;
1708
1641
  userConnection?: Array<ACLAction> | undefined;
@@ -1769,7 +1702,6 @@ export type CreateProjectPermissions = {
1769
1702
  jobGlobal?: Array<ACLAction> | undefined;
1770
1703
  drain?: Array<ACLAction> | undefined;
1771
1704
  logDrain?: Array<ACLAction> | undefined;
1772
- traceDrain?: Array<ACLAction> | undefined;
1773
1705
  monitoring?: Array<ACLAction> | undefined;
1774
1706
  monitoringSettings?: Array<ACLAction> | undefined;
1775
1707
  monitoringQuery?: Array<ACLAction> | undefined;
@@ -1850,6 +1782,73 @@ export type CreateProjectPermissions = {
1850
1782
  vercelRunExec?: Array<ACLAction> | undefined;
1851
1783
  apiKey?: Array<ACLAction> | undefined;
1852
1784
  apiKeyOwnedBySelf?: Array<ACLAction> | undefined;
1785
+ aliasProject?: Array<ACLAction> | undefined;
1786
+ aliasProtectionBypass?: Array<ACLAction> | undefined;
1787
+ buildMachine?: Array<ACLAction> | undefined;
1788
+ productionAliasProtectionBypass?: Array<ACLAction> | undefined;
1789
+ connectConfigurationLink?: Array<ACLAction> | undefined;
1790
+ dataCacheNamespace?: Array<ACLAction> | undefined;
1791
+ deployment?: Array<ACLAction> | undefined;
1792
+ deploymentBuildLogs?: Array<ACLAction> | undefined;
1793
+ deploymentCheck?: Array<ACLAction> | undefined;
1794
+ deploymentCheckPreview?: Array<ACLAction> | undefined;
1795
+ deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
1796
+ deploymentProductionGit?: Array<ACLAction> | undefined;
1797
+ deploymentV0?: Array<ACLAction> | undefined;
1798
+ deploymentPreview?: Array<ACLAction> | undefined;
1799
+ deploymentPrivate?: Array<ACLAction> | undefined;
1800
+ deploymentPromote?: Array<ACLAction> | undefined;
1801
+ deploymentRollback?: Array<ACLAction> | undefined;
1802
+ edgeCacheNamespace?: Array<ACLAction> | undefined;
1803
+ environments?: Array<ACLAction> | undefined;
1804
+ logs?: Array<ACLAction> | undefined;
1805
+ logsPreset?: Array<ACLAction> | undefined;
1806
+ passwordProtection?: Array<ACLAction> | undefined;
1807
+ optionsAllowlist?: Array<ACLAction> | undefined;
1808
+ job?: Array<ACLAction> | undefined;
1809
+ observabilityData?: Array<ACLAction> | undefined;
1810
+ onDemandBuild?: Array<ACLAction> | undefined;
1811
+ onDemandConcurrency?: Array<ACLAction> | undefined;
1812
+ project?: Array<ACLAction> | undefined;
1813
+ projectFromV0?: Array<ACLAction> | undefined;
1814
+ projectAccessGroup?: Array<ACLAction> | undefined;
1815
+ projectAnalyticsSampling?: Array<ACLAction> | undefined;
1816
+ projectCheck?: Array<ACLAction> | undefined;
1817
+ projectCheckRun?: Array<ACLAction> | undefined;
1818
+ projectDeploymentHook?: Array<ACLAction> | undefined;
1819
+ projectDomain?: Array<ACLAction> | undefined;
1820
+ projectDomainMove?: Array<ACLAction> | undefined;
1821
+ projectDomainCheckConfig?: Array<ACLAction> | undefined;
1822
+ projectEnvVars?: Array<ACLAction> | undefined;
1823
+ projectEnvVarsProduction?: Array<ACLAction> | undefined;
1824
+ projectEnvVarsUnownedByIntegration?: Array<ACLAction> | undefined;
1825
+ projectFlags?: Array<ACLAction> | undefined;
1826
+ projectId?: Array<ACLAction> | undefined;
1827
+ projectIntegrationConfiguration?: Array<ACLAction> | undefined;
1828
+ projectLink?: Array<ACLAction> | undefined;
1829
+ projectMember?: Array<ACLAction> | undefined;
1830
+ projectMonitoring?: Array<ACLAction> | undefined;
1831
+ projectPermissions?: Array<ACLAction> | undefined;
1832
+ projectProductionBranch?: Array<ACLAction> | undefined;
1833
+ projectTransfer?: Array<ACLAction> | undefined;
1834
+ projectTransferOut?: Array<ACLAction> | undefined;
1835
+ projectProtectionBypass?: Array<ACLAction> | undefined;
1836
+ projectUsage?: Array<ACLAction> | undefined;
1837
+ projectAnalyticsUsage?: Array<ACLAction> | undefined;
1838
+ projectSupportCase?: Array<ACLAction> | undefined;
1839
+ projectSupportCaseComment?: Array<ACLAction> | undefined;
1840
+ projectDeploymentExpiration?: Array<ACLAction> | undefined;
1841
+ projectRollingRelease?: Array<ACLAction> | undefined;
1842
+ projectTier?: Array<ACLAction> | undefined;
1843
+ projectOIDCToken?: Array<ACLAction> | undefined;
1844
+ seawallConfig?: Array<ACLAction> | undefined;
1845
+ skewProtection?: Array<ACLAction> | undefined;
1846
+ analytics?: Array<ACLAction> | undefined;
1847
+ trustedIps?: Array<ACLAction> | undefined;
1848
+ v0Chat?: Array<ACLAction> | undefined;
1849
+ webAnalytics?: Array<ACLAction> | undefined;
1850
+ sharedEnvVarConnection?: Array<ACLAction> | undefined;
1851
+ sonar?: Array<ACLAction> | undefined;
1853
1852
  };
1854
1853
 
1855
1854
  export type CreateProjectLastRollbackTarget = {};
@@ -1919,11 +1918,11 @@ export type CreateProjectProtectionBypass =
1919
1918
  | CreateProjectProtectionBypass2;
1920
1919
 
1921
1920
  export const CreateProjectTrustedIpsProjectsDeploymentType = {
1922
- Preview: "preview",
1923
- Production: "production",
1924
1921
  All: "all",
1922
+ Preview: "preview",
1925
1923
  ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews",
1926
1924
  AllExceptCustomDomains: "all_except_custom_domains",
1925
+ Production: "production",
1927
1926
  } as const;
1928
1927
  export type CreateProjectTrustedIpsProjectsDeploymentType = ClosedEnum<
1929
1928
  typeof CreateProjectTrustedIpsProjectsDeploymentType
@@ -1934,11 +1933,11 @@ export type CreateProjectTrustedIps2 = {
1934
1933
  };
1935
1934
 
1936
1935
  export const CreateProjectTrustedIpsDeploymentType = {
1937
- Preview: "preview",
1938
- Production: "production",
1939
1936
  All: "all",
1937
+ Preview: "preview",
1940
1938
  ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews",
1941
1939
  AllExceptCustomDomains: "all_except_custom_domains",
1940
+ Production: "production",
1942
1941
  } as const;
1943
1942
  export type CreateProjectTrustedIpsDeploymentType = ClosedEnum<
1944
1943
  typeof CreateProjectTrustedIpsDeploymentType
@@ -7462,32 +7461,32 @@ export const CreateProjectLink2$inboundSchema: z.ZodType<
7462
7461
  unknown
7463
7462
  > = z.object({
7464
7463
  type: CreateProjectLinkProjectsType$inboundSchema,
7465
- repo: z.string().optional(),
7466
- repoId: z.number().optional(),
7467
7464
  updatedAt: z.number().optional(),
7468
7465
  createdAt: z.number().optional(),
7466
+ repo: z.string().optional(),
7467
+ sourceless: z.boolean().optional(),
7469
7468
  org: z.string(),
7470
7469
  repoOwnerId: z.number().optional(),
7470
+ repoId: z.number().optional(),
7471
7471
  deployHooks: z.array(
7472
7472
  z.lazy(() => CreateProjectLinkProjectsDeployHooks$inboundSchema),
7473
7473
  ),
7474
7474
  gitCredentialId: z.string(),
7475
- sourceless: z.boolean().optional(),
7476
7475
  productionBranch: z.string(),
7477
7476
  });
7478
7477
 
7479
7478
  /** @internal */
7480
7479
  export type CreateProjectLink2$Outbound = {
7481
7480
  type: string;
7482
- repo?: string | undefined;
7483
- repoId?: number | undefined;
7484
7481
  updatedAt?: number | undefined;
7485
7482
  createdAt?: number | undefined;
7483
+ repo?: string | undefined;
7484
+ sourceless?: boolean | undefined;
7486
7485
  org: string;
7487
7486
  repoOwnerId?: number | undefined;
7487
+ repoId?: number | undefined;
7488
7488
  deployHooks: Array<CreateProjectLinkProjectsDeployHooks$Outbound>;
7489
7489
  gitCredentialId: string;
7490
- sourceless?: boolean | undefined;
7491
7490
  productionBranch: string;
7492
7491
  };
7493
7492
 
@@ -7498,17 +7497,17 @@ export const CreateProjectLink2$outboundSchema: z.ZodType<
7498
7497
  CreateProjectLink2
7499
7498
  > = z.object({
7500
7499
  type: CreateProjectLinkProjectsType$outboundSchema,
7501
- repo: z.string().optional(),
7502
- repoId: z.number().optional(),
7503
7500
  updatedAt: z.number().optional(),
7504
7501
  createdAt: z.number().optional(),
7502
+ repo: z.string().optional(),
7503
+ sourceless: z.boolean().optional(),
7505
7504
  org: z.string(),
7506
7505
  repoOwnerId: z.number().optional(),
7506
+ repoId: z.number().optional(),
7507
7507
  deployHooks: z.array(
7508
7508
  z.lazy(() => CreateProjectLinkProjectsDeployHooks$outboundSchema),
7509
7509
  ),
7510
7510
  gitCredentialId: z.string(),
7511
- sourceless: z.boolean().optional(),
7512
7511
  productionBranch: z.string(),
7513
7512
  });
7514
7513
 
@@ -8208,25 +8207,25 @@ export const CreateProjectProjectsResourceConfig$inboundSchema: z.ZodType<
8208
8207
  z.ZodTypeDef,
8209
8208
  unknown
8210
8209
  > = z.object({
8211
- elasticConcurrencyEnabled: z.boolean().optional(),
8212
8210
  fluid: z.boolean().optional(),
8213
8211
  functionDefaultRegions: z.array(z.string()),
8214
8212
  functionDefaultTimeout: z.number().optional(),
8215
8213
  functionDefaultMemoryType:
8216
8214
  CreateProjectFunctionDefaultMemoryType$inboundSchema.optional(),
8217
8215
  functionZeroConfigFailover: z.boolean().optional(),
8216
+ elasticConcurrencyEnabled: z.boolean().optional(),
8218
8217
  buildMachineType: CreateProjectBuildMachineType$inboundSchema.optional(),
8219
8218
  isNSNBDisabled: z.boolean().optional(),
8220
8219
  });
8221
8220
 
8222
8221
  /** @internal */
8223
8222
  export type CreateProjectProjectsResourceConfig$Outbound = {
8224
- elasticConcurrencyEnabled?: boolean | undefined;
8225
8223
  fluid?: boolean | undefined;
8226
8224
  functionDefaultRegions: Array<string>;
8227
8225
  functionDefaultTimeout?: number | undefined;
8228
8226
  functionDefaultMemoryType?: string | undefined;
8229
8227
  functionZeroConfigFailover?: boolean | undefined;
8228
+ elasticConcurrencyEnabled?: boolean | undefined;
8230
8229
  buildMachineType?: string | undefined;
8231
8230
  isNSNBDisabled?: boolean | undefined;
8232
8231
  };
@@ -8237,13 +8236,13 @@ export const CreateProjectProjectsResourceConfig$outboundSchema: z.ZodType<
8237
8236
  z.ZodTypeDef,
8238
8237
  CreateProjectProjectsResourceConfig
8239
8238
  > = z.object({
8240
- elasticConcurrencyEnabled: z.boolean().optional(),
8241
8239
  fluid: z.boolean().optional(),
8242
8240
  functionDefaultRegions: z.array(z.string()),
8243
8241
  functionDefaultTimeout: z.number().optional(),
8244
8242
  functionDefaultMemoryType:
8245
8243
  CreateProjectFunctionDefaultMemoryType$outboundSchema.optional(),
8246
8244
  functionZeroConfigFailover: z.boolean().optional(),
8245
+ elasticConcurrencyEnabled: z.boolean().optional(),
8247
8246
  buildMachineType: CreateProjectBuildMachineType$outboundSchema.optional(),
8248
8247
  isNSNBDisabled: z.boolean().optional(),
8249
8248
  });
@@ -8526,13 +8525,13 @@ export const CreateProjectDefaultResourceConfig$inboundSchema: z.ZodType<
8526
8525
  z.ZodTypeDef,
8527
8526
  unknown
8528
8527
  > = z.object({
8529
- elasticConcurrencyEnabled: z.boolean().optional(),
8530
8528
  fluid: z.boolean().optional(),
8531
8529
  functionDefaultRegions: z.array(z.string()),
8532
8530
  functionDefaultTimeout: z.number().optional(),
8533
8531
  functionDefaultMemoryType:
8534
8532
  CreateProjectProjectsFunctionDefaultMemoryType$inboundSchema.optional(),
8535
8533
  functionZeroConfigFailover: z.boolean().optional(),
8534
+ elasticConcurrencyEnabled: z.boolean().optional(),
8536
8535
  buildMachineType: CreateProjectProjectsBuildMachineType$inboundSchema
8537
8536
  .optional(),
8538
8537
  isNSNBDisabled: z.boolean().optional(),
@@ -8540,12 +8539,12 @@ export const CreateProjectDefaultResourceConfig$inboundSchema: z.ZodType<
8540
8539
 
8541
8540
  /** @internal */
8542
8541
  export type CreateProjectDefaultResourceConfig$Outbound = {
8543
- elasticConcurrencyEnabled?: boolean | undefined;
8544
8542
  fluid?: boolean | undefined;
8545
8543
  functionDefaultRegions: Array<string>;
8546
8544
  functionDefaultTimeout?: number | undefined;
8547
8545
  functionDefaultMemoryType?: string | undefined;
8548
8546
  functionZeroConfigFailover?: boolean | undefined;
8547
+ elasticConcurrencyEnabled?: boolean | undefined;
8549
8548
  buildMachineType?: string | undefined;
8550
8549
  isNSNBDisabled?: boolean | undefined;
8551
8550
  };
@@ -8556,13 +8555,13 @@ export const CreateProjectDefaultResourceConfig$outboundSchema: z.ZodType<
8556
8555
  z.ZodTypeDef,
8557
8556
  CreateProjectDefaultResourceConfig
8558
8557
  > = z.object({
8559
- elasticConcurrencyEnabled: z.boolean().optional(),
8560
8558
  fluid: z.boolean().optional(),
8561
8559
  functionDefaultRegions: z.array(z.string()),
8562
8560
  functionDefaultTimeout: z.number().optional(),
8563
8561
  functionDefaultMemoryType:
8564
8562
  CreateProjectProjectsFunctionDefaultMemoryType$outboundSchema.optional(),
8565
8563
  functionZeroConfigFailover: z.boolean().optional(),
8564
+ elasticConcurrencyEnabled: z.boolean().optional(),
8566
8565
  buildMachineType: CreateProjectProjectsBuildMachineType$outboundSchema
8567
8566
  .optional(),
8568
8567
  isNSNBDisabled: z.boolean().optional(),
@@ -9439,75 +9438,6 @@ export const CreateProjectPermissions$inboundSchema: z.ZodType<
9439
9438
  z.ZodTypeDef,
9440
9439
  unknown
9441
9440
  > = z.object({
9442
- aliasProject: z.array(ACLAction$inboundSchema).optional(),
9443
- aliasProtectionBypass: z.array(ACLAction$inboundSchema).optional(),
9444
- buildMachine: z.array(ACLAction$inboundSchema).optional(),
9445
- productionAliasProtectionBypass: z.array(ACLAction$inboundSchema).optional(),
9446
- connectConfigurationLink: z.array(ACLAction$inboundSchema).optional(),
9447
- dataCacheNamespace: z.array(ACLAction$inboundSchema).optional(),
9448
- deployment: z.array(ACLAction$inboundSchema).optional(),
9449
- deploymentBuildLogs: z.array(ACLAction$inboundSchema).optional(),
9450
- deploymentCheck: z.array(ACLAction$inboundSchema).optional(),
9451
- deploymentCheckPreview: z.array(ACLAction$inboundSchema).optional(),
9452
- deploymentCheckReRunFromProductionBranch: z.array(ACLAction$inboundSchema)
9453
- .optional(),
9454
- deploymentProductionGit: z.array(ACLAction$inboundSchema).optional(),
9455
- deploymentV0: z.array(ACLAction$inboundSchema).optional(),
9456
- deploymentPreview: z.array(ACLAction$inboundSchema).optional(),
9457
- deploymentPrivate: z.array(ACLAction$inboundSchema).optional(),
9458
- deploymentPromote: z.array(ACLAction$inboundSchema).optional(),
9459
- deploymentRollback: z.array(ACLAction$inboundSchema).optional(),
9460
- edgeCacheNamespace: z.array(ACLAction$inboundSchema).optional(),
9461
- environments: z.array(ACLAction$inboundSchema).optional(),
9462
- logs: z.array(ACLAction$inboundSchema).optional(),
9463
- logsPreset: z.array(ACLAction$inboundSchema).optional(),
9464
- passwordProtection: z.array(ACLAction$inboundSchema).optional(),
9465
- optionsAllowlist: z.array(ACLAction$inboundSchema).optional(),
9466
- job: z.array(ACLAction$inboundSchema).optional(),
9467
- observabilityData: z.array(ACLAction$inboundSchema).optional(),
9468
- onDemandBuild: z.array(ACLAction$inboundSchema).optional(),
9469
- onDemandConcurrency: z.array(ACLAction$inboundSchema).optional(),
9470
- project: z.array(ACLAction$inboundSchema).optional(),
9471
- projectFromV0: z.array(ACLAction$inboundSchema).optional(),
9472
- projectAccessGroup: z.array(ACLAction$inboundSchema).optional(),
9473
- projectAnalyticsSampling: z.array(ACLAction$inboundSchema).optional(),
9474
- projectCheck: z.array(ACLAction$inboundSchema).optional(),
9475
- projectCheckRun: z.array(ACLAction$inboundSchema).optional(),
9476
- projectDeploymentHook: z.array(ACLAction$inboundSchema).optional(),
9477
- projectDomain: z.array(ACLAction$inboundSchema).optional(),
9478
- projectDomainMove: z.array(ACLAction$inboundSchema).optional(),
9479
- projectDomainCheckConfig: z.array(ACLAction$inboundSchema).optional(),
9480
- projectEnvVars: z.array(ACLAction$inboundSchema).optional(),
9481
- projectEnvVarsProduction: z.array(ACLAction$inboundSchema).optional(),
9482
- projectEnvVarsUnownedByIntegration: z.array(ACLAction$inboundSchema)
9483
- .optional(),
9484
- projectFlags: z.array(ACLAction$inboundSchema).optional(),
9485
- projectId: z.array(ACLAction$inboundSchema).optional(),
9486
- projectIntegrationConfiguration: z.array(ACLAction$inboundSchema).optional(),
9487
- projectLink: z.array(ACLAction$inboundSchema).optional(),
9488
- projectMember: z.array(ACLAction$inboundSchema).optional(),
9489
- projectMonitoring: z.array(ACLAction$inboundSchema).optional(),
9490
- projectPermissions: z.array(ACLAction$inboundSchema).optional(),
9491
- projectProductionBranch: z.array(ACLAction$inboundSchema).optional(),
9492
- projectTransfer: z.array(ACLAction$inboundSchema).optional(),
9493
- projectTransferOut: z.array(ACLAction$inboundSchema).optional(),
9494
- projectProtectionBypass: z.array(ACLAction$inboundSchema).optional(),
9495
- projectUsage: z.array(ACLAction$inboundSchema).optional(),
9496
- projectAnalyticsUsage: z.array(ACLAction$inboundSchema).optional(),
9497
- projectSupportCase: z.array(ACLAction$inboundSchema).optional(),
9498
- projectSupportCaseComment: z.array(ACLAction$inboundSchema).optional(),
9499
- projectDeploymentExpiration: z.array(ACLAction$inboundSchema).optional(),
9500
- projectRollingRelease: z.array(ACLAction$inboundSchema).optional(),
9501
- projectTier: z.array(ACLAction$inboundSchema).optional(),
9502
- projectOIDCToken: z.array(ACLAction$inboundSchema).optional(),
9503
- seawallConfig: z.array(ACLAction$inboundSchema).optional(),
9504
- skewProtection: z.array(ACLAction$inboundSchema).optional(),
9505
- analytics: z.array(ACLAction$inboundSchema).optional(),
9506
- trustedIps: z.array(ACLAction$inboundSchema).optional(),
9507
- v0Chat: z.array(ACLAction$inboundSchema).optional(),
9508
- webAnalytics: z.array(ACLAction$inboundSchema).optional(),
9509
- sharedEnvVarConnection: z.array(ACLAction$inboundSchema).optional(),
9510
- sonar: z.array(ACLAction$inboundSchema).optional(),
9511
9441
  oauth2Connection: z.array(ACLAction$inboundSchema).optional(),
9512
9442
  user: z.array(ACLAction$inboundSchema).optional(),
9513
9443
  userConnection: z.array(ACLAction$inboundSchema).optional(),
@@ -9577,7 +9507,6 @@ export const CreateProjectPermissions$inboundSchema: z.ZodType<
9577
9507
  jobGlobal: z.array(ACLAction$inboundSchema).optional(),
9578
9508
  drain: z.array(ACLAction$inboundSchema).optional(),
9579
9509
  logDrain: z.array(ACLAction$inboundSchema).optional(),
9580
- traceDrain: z.array(ACLAction$inboundSchema).optional(),
9581
9510
  Monitoring: z.array(ACLAction$inboundSchema).optional(),
9582
9511
  monitoringSettings: z.array(ACLAction$inboundSchema).optional(),
9583
9512
  monitoringQuery: z.array(ACLAction$inboundSchema).optional(),
@@ -9658,7 +9587,76 @@ export const CreateProjectPermissions$inboundSchema: z.ZodType<
9658
9587
  vercelRunExec: z.array(ACLAction$inboundSchema).optional(),
9659
9588
  apiKey: z.array(ACLAction$inboundSchema).optional(),
9660
9589
  apiKeyOwnedBySelf: z.array(ACLAction$inboundSchema).optional(),
9661
- }).transform((v) => {
9590
+ aliasProject: z.array(ACLAction$inboundSchema).optional(),
9591
+ aliasProtectionBypass: z.array(ACLAction$inboundSchema).optional(),
9592
+ buildMachine: z.array(ACLAction$inboundSchema).optional(),
9593
+ productionAliasProtectionBypass: z.array(ACLAction$inboundSchema).optional(),
9594
+ connectConfigurationLink: z.array(ACLAction$inboundSchema).optional(),
9595
+ dataCacheNamespace: z.array(ACLAction$inboundSchema).optional(),
9596
+ deployment: z.array(ACLAction$inboundSchema).optional(),
9597
+ deploymentBuildLogs: z.array(ACLAction$inboundSchema).optional(),
9598
+ deploymentCheck: z.array(ACLAction$inboundSchema).optional(),
9599
+ deploymentCheckPreview: z.array(ACLAction$inboundSchema).optional(),
9600
+ deploymentCheckReRunFromProductionBranch: z.array(ACLAction$inboundSchema)
9601
+ .optional(),
9602
+ deploymentProductionGit: z.array(ACLAction$inboundSchema).optional(),
9603
+ deploymentV0: z.array(ACLAction$inboundSchema).optional(),
9604
+ deploymentPreview: z.array(ACLAction$inboundSchema).optional(),
9605
+ deploymentPrivate: z.array(ACLAction$inboundSchema).optional(),
9606
+ deploymentPromote: z.array(ACLAction$inboundSchema).optional(),
9607
+ deploymentRollback: z.array(ACLAction$inboundSchema).optional(),
9608
+ edgeCacheNamespace: z.array(ACLAction$inboundSchema).optional(),
9609
+ environments: z.array(ACLAction$inboundSchema).optional(),
9610
+ logs: z.array(ACLAction$inboundSchema).optional(),
9611
+ logsPreset: z.array(ACLAction$inboundSchema).optional(),
9612
+ passwordProtection: z.array(ACLAction$inboundSchema).optional(),
9613
+ optionsAllowlist: z.array(ACLAction$inboundSchema).optional(),
9614
+ job: z.array(ACLAction$inboundSchema).optional(),
9615
+ observabilityData: z.array(ACLAction$inboundSchema).optional(),
9616
+ onDemandBuild: z.array(ACLAction$inboundSchema).optional(),
9617
+ onDemandConcurrency: z.array(ACLAction$inboundSchema).optional(),
9618
+ project: z.array(ACLAction$inboundSchema).optional(),
9619
+ projectFromV0: z.array(ACLAction$inboundSchema).optional(),
9620
+ projectAccessGroup: z.array(ACLAction$inboundSchema).optional(),
9621
+ projectAnalyticsSampling: z.array(ACLAction$inboundSchema).optional(),
9622
+ projectCheck: z.array(ACLAction$inboundSchema).optional(),
9623
+ projectCheckRun: z.array(ACLAction$inboundSchema).optional(),
9624
+ projectDeploymentHook: z.array(ACLAction$inboundSchema).optional(),
9625
+ projectDomain: z.array(ACLAction$inboundSchema).optional(),
9626
+ projectDomainMove: z.array(ACLAction$inboundSchema).optional(),
9627
+ projectDomainCheckConfig: z.array(ACLAction$inboundSchema).optional(),
9628
+ projectEnvVars: z.array(ACLAction$inboundSchema).optional(),
9629
+ projectEnvVarsProduction: z.array(ACLAction$inboundSchema).optional(),
9630
+ projectEnvVarsUnownedByIntegration: z.array(ACLAction$inboundSchema)
9631
+ .optional(),
9632
+ projectFlags: z.array(ACLAction$inboundSchema).optional(),
9633
+ projectId: z.array(ACLAction$inboundSchema).optional(),
9634
+ projectIntegrationConfiguration: z.array(ACLAction$inboundSchema).optional(),
9635
+ projectLink: z.array(ACLAction$inboundSchema).optional(),
9636
+ projectMember: z.array(ACLAction$inboundSchema).optional(),
9637
+ projectMonitoring: z.array(ACLAction$inboundSchema).optional(),
9638
+ projectPermissions: z.array(ACLAction$inboundSchema).optional(),
9639
+ projectProductionBranch: z.array(ACLAction$inboundSchema).optional(),
9640
+ projectTransfer: z.array(ACLAction$inboundSchema).optional(),
9641
+ projectTransferOut: z.array(ACLAction$inboundSchema).optional(),
9642
+ projectProtectionBypass: z.array(ACLAction$inboundSchema).optional(),
9643
+ projectUsage: z.array(ACLAction$inboundSchema).optional(),
9644
+ projectAnalyticsUsage: z.array(ACLAction$inboundSchema).optional(),
9645
+ projectSupportCase: z.array(ACLAction$inboundSchema).optional(),
9646
+ projectSupportCaseComment: z.array(ACLAction$inboundSchema).optional(),
9647
+ projectDeploymentExpiration: z.array(ACLAction$inboundSchema).optional(),
9648
+ projectRollingRelease: z.array(ACLAction$inboundSchema).optional(),
9649
+ projectTier: z.array(ACLAction$inboundSchema).optional(),
9650
+ projectOIDCToken: z.array(ACLAction$inboundSchema).optional(),
9651
+ seawallConfig: z.array(ACLAction$inboundSchema).optional(),
9652
+ skewProtection: z.array(ACLAction$inboundSchema).optional(),
9653
+ analytics: z.array(ACLAction$inboundSchema).optional(),
9654
+ trustedIps: z.array(ACLAction$inboundSchema).optional(),
9655
+ v0Chat: z.array(ACLAction$inboundSchema).optional(),
9656
+ webAnalytics: z.array(ACLAction$inboundSchema).optional(),
9657
+ sharedEnvVarConnection: z.array(ACLAction$inboundSchema).optional(),
9658
+ sonar: z.array(ACLAction$inboundSchema).optional(),
9659
+ }).transform((v) => {
9662
9660
  return remap$(v, {
9663
9661
  "Monitoring": "monitoring",
9664
9662
  "NotificationMonitoringAlert": "notificationMonitoringAlert",
@@ -9668,73 +9666,6 @@ export const CreateProjectPermissions$inboundSchema: z.ZodType<
9668
9666
 
9669
9667
  /** @internal */
9670
9668
  export type CreateProjectPermissions$Outbound = {
9671
- aliasProject?: Array<string> | undefined;
9672
- aliasProtectionBypass?: Array<string> | undefined;
9673
- buildMachine?: Array<string> | undefined;
9674
- productionAliasProtectionBypass?: Array<string> | undefined;
9675
- connectConfigurationLink?: Array<string> | undefined;
9676
- dataCacheNamespace?: Array<string> | undefined;
9677
- deployment?: Array<string> | undefined;
9678
- deploymentBuildLogs?: Array<string> | undefined;
9679
- deploymentCheck?: Array<string> | undefined;
9680
- deploymentCheckPreview?: Array<string> | undefined;
9681
- deploymentCheckReRunFromProductionBranch?: Array<string> | undefined;
9682
- deploymentProductionGit?: Array<string> | undefined;
9683
- deploymentV0?: Array<string> | undefined;
9684
- deploymentPreview?: Array<string> | undefined;
9685
- deploymentPrivate?: Array<string> | undefined;
9686
- deploymentPromote?: Array<string> | undefined;
9687
- deploymentRollback?: Array<string> | undefined;
9688
- edgeCacheNamespace?: Array<string> | undefined;
9689
- environments?: Array<string> | undefined;
9690
- logs?: Array<string> | undefined;
9691
- logsPreset?: Array<string> | undefined;
9692
- passwordProtection?: Array<string> | undefined;
9693
- optionsAllowlist?: Array<string> | undefined;
9694
- job?: Array<string> | undefined;
9695
- observabilityData?: Array<string> | undefined;
9696
- onDemandBuild?: Array<string> | undefined;
9697
- onDemandConcurrency?: Array<string> | undefined;
9698
- project?: Array<string> | undefined;
9699
- projectFromV0?: Array<string> | undefined;
9700
- projectAccessGroup?: Array<string> | undefined;
9701
- projectAnalyticsSampling?: Array<string> | undefined;
9702
- projectCheck?: Array<string> | undefined;
9703
- projectCheckRun?: Array<string> | undefined;
9704
- projectDeploymentHook?: Array<string> | undefined;
9705
- projectDomain?: Array<string> | undefined;
9706
- projectDomainMove?: Array<string> | undefined;
9707
- projectDomainCheckConfig?: Array<string> | undefined;
9708
- projectEnvVars?: Array<string> | undefined;
9709
- projectEnvVarsProduction?: Array<string> | undefined;
9710
- projectEnvVarsUnownedByIntegration?: Array<string> | undefined;
9711
- projectFlags?: Array<string> | undefined;
9712
- projectId?: Array<string> | undefined;
9713
- projectIntegrationConfiguration?: Array<string> | undefined;
9714
- projectLink?: Array<string> | undefined;
9715
- projectMember?: Array<string> | undefined;
9716
- projectMonitoring?: Array<string> | undefined;
9717
- projectPermissions?: Array<string> | undefined;
9718
- projectProductionBranch?: Array<string> | undefined;
9719
- projectTransfer?: Array<string> | undefined;
9720
- projectTransferOut?: Array<string> | undefined;
9721
- projectProtectionBypass?: Array<string> | undefined;
9722
- projectUsage?: Array<string> | undefined;
9723
- projectAnalyticsUsage?: Array<string> | undefined;
9724
- projectSupportCase?: Array<string> | undefined;
9725
- projectSupportCaseComment?: Array<string> | undefined;
9726
- projectDeploymentExpiration?: Array<string> | undefined;
9727
- projectRollingRelease?: Array<string> | undefined;
9728
- projectTier?: Array<string> | undefined;
9729
- projectOIDCToken?: Array<string> | undefined;
9730
- seawallConfig?: Array<string> | undefined;
9731
- skewProtection?: Array<string> | undefined;
9732
- analytics?: Array<string> | undefined;
9733
- trustedIps?: Array<string> | undefined;
9734
- v0Chat?: Array<string> | undefined;
9735
- webAnalytics?: Array<string> | undefined;
9736
- sharedEnvVarConnection?: Array<string> | undefined;
9737
- sonar?: Array<string> | undefined;
9738
9669
  oauth2Connection?: Array<string> | undefined;
9739
9670
  user?: Array<string> | undefined;
9740
9671
  userConnection?: Array<string> | undefined;
@@ -9801,7 +9732,6 @@ export type CreateProjectPermissions$Outbound = {
9801
9732
  jobGlobal?: Array<string> | undefined;
9802
9733
  drain?: Array<string> | undefined;
9803
9734
  logDrain?: Array<string> | undefined;
9804
- traceDrain?: Array<string> | undefined;
9805
9735
  Monitoring?: Array<string> | undefined;
9806
9736
  monitoringSettings?: Array<string> | undefined;
9807
9737
  monitoringQuery?: Array<string> | undefined;
@@ -9882,6 +9812,73 @@ export type CreateProjectPermissions$Outbound = {
9882
9812
  vercelRunExec?: Array<string> | undefined;
9883
9813
  apiKey?: Array<string> | undefined;
9884
9814
  apiKeyOwnedBySelf?: Array<string> | undefined;
9815
+ aliasProject?: Array<string> | undefined;
9816
+ aliasProtectionBypass?: Array<string> | undefined;
9817
+ buildMachine?: Array<string> | undefined;
9818
+ productionAliasProtectionBypass?: Array<string> | undefined;
9819
+ connectConfigurationLink?: Array<string> | undefined;
9820
+ dataCacheNamespace?: Array<string> | undefined;
9821
+ deployment?: Array<string> | undefined;
9822
+ deploymentBuildLogs?: Array<string> | undefined;
9823
+ deploymentCheck?: Array<string> | undefined;
9824
+ deploymentCheckPreview?: Array<string> | undefined;
9825
+ deploymentCheckReRunFromProductionBranch?: Array<string> | undefined;
9826
+ deploymentProductionGit?: Array<string> | undefined;
9827
+ deploymentV0?: Array<string> | undefined;
9828
+ deploymentPreview?: Array<string> | undefined;
9829
+ deploymentPrivate?: Array<string> | undefined;
9830
+ deploymentPromote?: Array<string> | undefined;
9831
+ deploymentRollback?: Array<string> | undefined;
9832
+ edgeCacheNamespace?: Array<string> | undefined;
9833
+ environments?: Array<string> | undefined;
9834
+ logs?: Array<string> | undefined;
9835
+ logsPreset?: Array<string> | undefined;
9836
+ passwordProtection?: Array<string> | undefined;
9837
+ optionsAllowlist?: Array<string> | undefined;
9838
+ job?: Array<string> | undefined;
9839
+ observabilityData?: Array<string> | undefined;
9840
+ onDemandBuild?: Array<string> | undefined;
9841
+ onDemandConcurrency?: Array<string> | undefined;
9842
+ project?: Array<string> | undefined;
9843
+ projectFromV0?: Array<string> | undefined;
9844
+ projectAccessGroup?: Array<string> | undefined;
9845
+ projectAnalyticsSampling?: Array<string> | undefined;
9846
+ projectCheck?: Array<string> | undefined;
9847
+ projectCheckRun?: Array<string> | undefined;
9848
+ projectDeploymentHook?: Array<string> | undefined;
9849
+ projectDomain?: Array<string> | undefined;
9850
+ projectDomainMove?: Array<string> | undefined;
9851
+ projectDomainCheckConfig?: Array<string> | undefined;
9852
+ projectEnvVars?: Array<string> | undefined;
9853
+ projectEnvVarsProduction?: Array<string> | undefined;
9854
+ projectEnvVarsUnownedByIntegration?: Array<string> | undefined;
9855
+ projectFlags?: Array<string> | undefined;
9856
+ projectId?: Array<string> | undefined;
9857
+ projectIntegrationConfiguration?: Array<string> | undefined;
9858
+ projectLink?: Array<string> | undefined;
9859
+ projectMember?: Array<string> | undefined;
9860
+ projectMonitoring?: Array<string> | undefined;
9861
+ projectPermissions?: Array<string> | undefined;
9862
+ projectProductionBranch?: Array<string> | undefined;
9863
+ projectTransfer?: Array<string> | undefined;
9864
+ projectTransferOut?: Array<string> | undefined;
9865
+ projectProtectionBypass?: Array<string> | undefined;
9866
+ projectUsage?: Array<string> | undefined;
9867
+ projectAnalyticsUsage?: Array<string> | undefined;
9868
+ projectSupportCase?: Array<string> | undefined;
9869
+ projectSupportCaseComment?: Array<string> | undefined;
9870
+ projectDeploymentExpiration?: Array<string> | undefined;
9871
+ projectRollingRelease?: Array<string> | undefined;
9872
+ projectTier?: Array<string> | undefined;
9873
+ projectOIDCToken?: Array<string> | undefined;
9874
+ seawallConfig?: Array<string> | undefined;
9875
+ skewProtection?: Array<string> | undefined;
9876
+ analytics?: Array<string> | undefined;
9877
+ trustedIps?: Array<string> | undefined;
9878
+ v0Chat?: Array<string> | undefined;
9879
+ webAnalytics?: Array<string> | undefined;
9880
+ sharedEnvVarConnection?: Array<string> | undefined;
9881
+ sonar?: Array<string> | undefined;
9885
9882
  };
9886
9883
 
9887
9884
  /** @internal */
@@ -9890,75 +9887,6 @@ export const CreateProjectPermissions$outboundSchema: z.ZodType<
9890
9887
  z.ZodTypeDef,
9891
9888
  CreateProjectPermissions
9892
9889
  > = z.object({
9893
- aliasProject: z.array(ACLAction$outboundSchema).optional(),
9894
- aliasProtectionBypass: z.array(ACLAction$outboundSchema).optional(),
9895
- buildMachine: z.array(ACLAction$outboundSchema).optional(),
9896
- productionAliasProtectionBypass: z.array(ACLAction$outboundSchema).optional(),
9897
- connectConfigurationLink: z.array(ACLAction$outboundSchema).optional(),
9898
- dataCacheNamespace: z.array(ACLAction$outboundSchema).optional(),
9899
- deployment: z.array(ACLAction$outboundSchema).optional(),
9900
- deploymentBuildLogs: z.array(ACLAction$outboundSchema).optional(),
9901
- deploymentCheck: z.array(ACLAction$outboundSchema).optional(),
9902
- deploymentCheckPreview: z.array(ACLAction$outboundSchema).optional(),
9903
- deploymentCheckReRunFromProductionBranch: z.array(ACLAction$outboundSchema)
9904
- .optional(),
9905
- deploymentProductionGit: z.array(ACLAction$outboundSchema).optional(),
9906
- deploymentV0: z.array(ACLAction$outboundSchema).optional(),
9907
- deploymentPreview: z.array(ACLAction$outboundSchema).optional(),
9908
- deploymentPrivate: z.array(ACLAction$outboundSchema).optional(),
9909
- deploymentPromote: z.array(ACLAction$outboundSchema).optional(),
9910
- deploymentRollback: z.array(ACLAction$outboundSchema).optional(),
9911
- edgeCacheNamespace: z.array(ACLAction$outboundSchema).optional(),
9912
- environments: z.array(ACLAction$outboundSchema).optional(),
9913
- logs: z.array(ACLAction$outboundSchema).optional(),
9914
- logsPreset: z.array(ACLAction$outboundSchema).optional(),
9915
- passwordProtection: z.array(ACLAction$outboundSchema).optional(),
9916
- optionsAllowlist: z.array(ACLAction$outboundSchema).optional(),
9917
- job: z.array(ACLAction$outboundSchema).optional(),
9918
- observabilityData: z.array(ACLAction$outboundSchema).optional(),
9919
- onDemandBuild: z.array(ACLAction$outboundSchema).optional(),
9920
- onDemandConcurrency: z.array(ACLAction$outboundSchema).optional(),
9921
- project: z.array(ACLAction$outboundSchema).optional(),
9922
- projectFromV0: z.array(ACLAction$outboundSchema).optional(),
9923
- projectAccessGroup: z.array(ACLAction$outboundSchema).optional(),
9924
- projectAnalyticsSampling: z.array(ACLAction$outboundSchema).optional(),
9925
- projectCheck: z.array(ACLAction$outboundSchema).optional(),
9926
- projectCheckRun: z.array(ACLAction$outboundSchema).optional(),
9927
- projectDeploymentHook: z.array(ACLAction$outboundSchema).optional(),
9928
- projectDomain: z.array(ACLAction$outboundSchema).optional(),
9929
- projectDomainMove: z.array(ACLAction$outboundSchema).optional(),
9930
- projectDomainCheckConfig: z.array(ACLAction$outboundSchema).optional(),
9931
- projectEnvVars: z.array(ACLAction$outboundSchema).optional(),
9932
- projectEnvVarsProduction: z.array(ACLAction$outboundSchema).optional(),
9933
- projectEnvVarsUnownedByIntegration: z.array(ACLAction$outboundSchema)
9934
- .optional(),
9935
- projectFlags: z.array(ACLAction$outboundSchema).optional(),
9936
- projectId: z.array(ACLAction$outboundSchema).optional(),
9937
- projectIntegrationConfiguration: z.array(ACLAction$outboundSchema).optional(),
9938
- projectLink: z.array(ACLAction$outboundSchema).optional(),
9939
- projectMember: z.array(ACLAction$outboundSchema).optional(),
9940
- projectMonitoring: z.array(ACLAction$outboundSchema).optional(),
9941
- projectPermissions: z.array(ACLAction$outboundSchema).optional(),
9942
- projectProductionBranch: z.array(ACLAction$outboundSchema).optional(),
9943
- projectTransfer: z.array(ACLAction$outboundSchema).optional(),
9944
- projectTransferOut: z.array(ACLAction$outboundSchema).optional(),
9945
- projectProtectionBypass: z.array(ACLAction$outboundSchema).optional(),
9946
- projectUsage: z.array(ACLAction$outboundSchema).optional(),
9947
- projectAnalyticsUsage: z.array(ACLAction$outboundSchema).optional(),
9948
- projectSupportCase: z.array(ACLAction$outboundSchema).optional(),
9949
- projectSupportCaseComment: z.array(ACLAction$outboundSchema).optional(),
9950
- projectDeploymentExpiration: z.array(ACLAction$outboundSchema).optional(),
9951
- projectRollingRelease: z.array(ACLAction$outboundSchema).optional(),
9952
- projectTier: z.array(ACLAction$outboundSchema).optional(),
9953
- projectOIDCToken: z.array(ACLAction$outboundSchema).optional(),
9954
- seawallConfig: z.array(ACLAction$outboundSchema).optional(),
9955
- skewProtection: z.array(ACLAction$outboundSchema).optional(),
9956
- analytics: z.array(ACLAction$outboundSchema).optional(),
9957
- trustedIps: z.array(ACLAction$outboundSchema).optional(),
9958
- v0Chat: z.array(ACLAction$outboundSchema).optional(),
9959
- webAnalytics: z.array(ACLAction$outboundSchema).optional(),
9960
- sharedEnvVarConnection: z.array(ACLAction$outboundSchema).optional(),
9961
- sonar: z.array(ACLAction$outboundSchema).optional(),
9962
9890
  oauth2Connection: z.array(ACLAction$outboundSchema).optional(),
9963
9891
  user: z.array(ACLAction$outboundSchema).optional(),
9964
9892
  userConnection: z.array(ACLAction$outboundSchema).optional(),
@@ -10030,7 +9958,6 @@ export const CreateProjectPermissions$outboundSchema: z.ZodType<
10030
9958
  jobGlobal: z.array(ACLAction$outboundSchema).optional(),
10031
9959
  drain: z.array(ACLAction$outboundSchema).optional(),
10032
9960
  logDrain: z.array(ACLAction$outboundSchema).optional(),
10033
- traceDrain: z.array(ACLAction$outboundSchema).optional(),
10034
9961
  monitoring: z.array(ACLAction$outboundSchema).optional(),
10035
9962
  monitoringSettings: z.array(ACLAction$outboundSchema).optional(),
10036
9963
  monitoringQuery: z.array(ACLAction$outboundSchema).optional(),
@@ -10111,6 +10038,75 @@ export const CreateProjectPermissions$outboundSchema: z.ZodType<
10111
10038
  vercelRunExec: z.array(ACLAction$outboundSchema).optional(),
10112
10039
  apiKey: z.array(ACLAction$outboundSchema).optional(),
10113
10040
  apiKeyOwnedBySelf: z.array(ACLAction$outboundSchema).optional(),
10041
+ aliasProject: z.array(ACLAction$outboundSchema).optional(),
10042
+ aliasProtectionBypass: z.array(ACLAction$outboundSchema).optional(),
10043
+ buildMachine: z.array(ACLAction$outboundSchema).optional(),
10044
+ productionAliasProtectionBypass: z.array(ACLAction$outboundSchema).optional(),
10045
+ connectConfigurationLink: z.array(ACLAction$outboundSchema).optional(),
10046
+ dataCacheNamespace: z.array(ACLAction$outboundSchema).optional(),
10047
+ deployment: z.array(ACLAction$outboundSchema).optional(),
10048
+ deploymentBuildLogs: z.array(ACLAction$outboundSchema).optional(),
10049
+ deploymentCheck: z.array(ACLAction$outboundSchema).optional(),
10050
+ deploymentCheckPreview: z.array(ACLAction$outboundSchema).optional(),
10051
+ deploymentCheckReRunFromProductionBranch: z.array(ACLAction$outboundSchema)
10052
+ .optional(),
10053
+ deploymentProductionGit: z.array(ACLAction$outboundSchema).optional(),
10054
+ deploymentV0: z.array(ACLAction$outboundSchema).optional(),
10055
+ deploymentPreview: z.array(ACLAction$outboundSchema).optional(),
10056
+ deploymentPrivate: z.array(ACLAction$outboundSchema).optional(),
10057
+ deploymentPromote: z.array(ACLAction$outboundSchema).optional(),
10058
+ deploymentRollback: z.array(ACLAction$outboundSchema).optional(),
10059
+ edgeCacheNamespace: z.array(ACLAction$outboundSchema).optional(),
10060
+ environments: z.array(ACLAction$outboundSchema).optional(),
10061
+ logs: z.array(ACLAction$outboundSchema).optional(),
10062
+ logsPreset: z.array(ACLAction$outboundSchema).optional(),
10063
+ passwordProtection: z.array(ACLAction$outboundSchema).optional(),
10064
+ optionsAllowlist: z.array(ACLAction$outboundSchema).optional(),
10065
+ job: z.array(ACLAction$outboundSchema).optional(),
10066
+ observabilityData: z.array(ACLAction$outboundSchema).optional(),
10067
+ onDemandBuild: z.array(ACLAction$outboundSchema).optional(),
10068
+ onDemandConcurrency: z.array(ACLAction$outboundSchema).optional(),
10069
+ project: z.array(ACLAction$outboundSchema).optional(),
10070
+ projectFromV0: z.array(ACLAction$outboundSchema).optional(),
10071
+ projectAccessGroup: z.array(ACLAction$outboundSchema).optional(),
10072
+ projectAnalyticsSampling: z.array(ACLAction$outboundSchema).optional(),
10073
+ projectCheck: z.array(ACLAction$outboundSchema).optional(),
10074
+ projectCheckRun: z.array(ACLAction$outboundSchema).optional(),
10075
+ projectDeploymentHook: z.array(ACLAction$outboundSchema).optional(),
10076
+ projectDomain: z.array(ACLAction$outboundSchema).optional(),
10077
+ projectDomainMove: z.array(ACLAction$outboundSchema).optional(),
10078
+ projectDomainCheckConfig: z.array(ACLAction$outboundSchema).optional(),
10079
+ projectEnvVars: z.array(ACLAction$outboundSchema).optional(),
10080
+ projectEnvVarsProduction: z.array(ACLAction$outboundSchema).optional(),
10081
+ projectEnvVarsUnownedByIntegration: z.array(ACLAction$outboundSchema)
10082
+ .optional(),
10083
+ projectFlags: z.array(ACLAction$outboundSchema).optional(),
10084
+ projectId: z.array(ACLAction$outboundSchema).optional(),
10085
+ projectIntegrationConfiguration: z.array(ACLAction$outboundSchema).optional(),
10086
+ projectLink: z.array(ACLAction$outboundSchema).optional(),
10087
+ projectMember: z.array(ACLAction$outboundSchema).optional(),
10088
+ projectMonitoring: z.array(ACLAction$outboundSchema).optional(),
10089
+ projectPermissions: z.array(ACLAction$outboundSchema).optional(),
10090
+ projectProductionBranch: z.array(ACLAction$outboundSchema).optional(),
10091
+ projectTransfer: z.array(ACLAction$outboundSchema).optional(),
10092
+ projectTransferOut: z.array(ACLAction$outboundSchema).optional(),
10093
+ projectProtectionBypass: z.array(ACLAction$outboundSchema).optional(),
10094
+ projectUsage: z.array(ACLAction$outboundSchema).optional(),
10095
+ projectAnalyticsUsage: z.array(ACLAction$outboundSchema).optional(),
10096
+ projectSupportCase: z.array(ACLAction$outboundSchema).optional(),
10097
+ projectSupportCaseComment: z.array(ACLAction$outboundSchema).optional(),
10098
+ projectDeploymentExpiration: z.array(ACLAction$outboundSchema).optional(),
10099
+ projectRollingRelease: z.array(ACLAction$outboundSchema).optional(),
10100
+ projectTier: z.array(ACLAction$outboundSchema).optional(),
10101
+ projectOIDCToken: z.array(ACLAction$outboundSchema).optional(),
10102
+ seawallConfig: z.array(ACLAction$outboundSchema).optional(),
10103
+ skewProtection: z.array(ACLAction$outboundSchema).optional(),
10104
+ analytics: z.array(ACLAction$outboundSchema).optional(),
10105
+ trustedIps: z.array(ACLAction$outboundSchema).optional(),
10106
+ v0Chat: z.array(ACLAction$outboundSchema).optional(),
10107
+ webAnalytics: z.array(ACLAction$outboundSchema).optional(),
10108
+ sharedEnvVarConnection: z.array(ACLAction$outboundSchema).optional(),
10109
+ sonar: z.array(ACLAction$outboundSchema).optional(),
10114
10110
  }).transform((v) => {
10115
10111
  return remap$(v, {
10116
10112
  monitoring: "Monitoring",