@vercel/sdk 1.10.5 → 1.10.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. package/bin/mcp-server.js +496 -463
  2. package/bin/mcp-server.js.map +17 -17
  3. package/docs/sdks/projects/README.md +2 -0
  4. package/esm/__tests__/accessgroups.test.js +1 -3
  5. package/esm/__tests__/accessgroups.test.js.map +1 -1
  6. package/esm/__tests__/domains.test.js +7 -2
  7. package/esm/__tests__/domains.test.js.map +1 -1
  8. package/esm/__tests__/edgeconfig.test.js +6 -6
  9. package/esm/__tests__/edgeconfig.test.js.map +1 -1
  10. package/esm/__tests__/rollingrelease.test.js +6 -2
  11. package/esm/__tests__/rollingrelease.test.js.map +1 -1
  12. package/esm/__tests__/security.test.js +4 -4
  13. package/esm/__tests__/security.test.js.map +1 -1
  14. package/esm/funcs/projectsGetProjects.js +1 -0
  15. package/esm/funcs/projectsGetProjects.js.map +1 -1
  16. package/esm/lib/config.d.ts +3 -3
  17. package/esm/lib/config.js +3 -3
  18. package/esm/mcp-server/mcp-server.js +1 -1
  19. package/esm/mcp-server/server.js +1 -1
  20. package/esm/models/canceldeploymentop.d.ts +35 -35
  21. package/esm/models/canceldeploymentop.d.ts.map +1 -1
  22. package/esm/models/canceldeploymentop.js +13 -13
  23. package/esm/models/canceldeploymentop.js.map +1 -1
  24. package/esm/models/createdeploymentop.d.ts +33 -33
  25. package/esm/models/createdeploymentop.js +11 -11
  26. package/esm/models/createdeploymentop.js.map +1 -1
  27. package/esm/models/createprojectenvop.d.ts +6 -6
  28. package/esm/models/createprojectenvop.js +2 -2
  29. package/esm/models/createprojectenvop.js.map +1 -1
  30. package/esm/models/createprojectop.d.ts +164 -158
  31. package/esm/models/createprojectop.d.ts.map +1 -1
  32. package/esm/models/createprojectop.js +156 -150
  33. package/esm/models/createprojectop.js.map +1 -1
  34. package/esm/models/editprojectenvop.d.ts +3 -3
  35. package/esm/models/editprojectenvop.js +1 -1
  36. package/esm/models/editprojectenvop.js.map +1 -1
  37. package/esm/models/filterprojectenvsop.d.ts +9 -9
  38. package/esm/models/filterprojectenvsop.js +3 -3
  39. package/esm/models/filterprojectenvsop.js.map +1 -1
  40. package/esm/models/getconfigurationproductsop.d.ts +330 -330
  41. package/esm/models/getconfigurationproductsop.js +408 -408
  42. package/esm/models/getprojectsop.d.ts +44 -4
  43. package/esm/models/getprojectsop.d.ts.map +1 -1
  44. package/esm/models/getprojectsop.js +33 -4
  45. package/esm/models/getprojectsop.js.map +1 -1
  46. package/esm/models/removeprojectenvop.d.ts +9 -9
  47. package/esm/models/removeprojectenvop.js +3 -3
  48. package/esm/models/removeprojectenvop.js.map +1 -1
  49. package/esm/models/updateprojectdatacacheop.d.ts +4 -0
  50. package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
  51. package/esm/models/updateprojectdatacacheop.js +4 -0
  52. package/esm/models/updateprojectdatacacheop.js.map +1 -1
  53. package/esm/models/updateprojectop.d.ts +10 -4
  54. package/esm/models/updateprojectop.d.ts.map +1 -1
  55. package/esm/models/updateprojectop.js +10 -4
  56. package/esm/models/updateprojectop.js.map +1 -1
  57. package/examples/package-lock.json +1 -1
  58. package/jsr.json +1 -1
  59. package/package.json +1 -1
  60. package/src/__tests__/accessgroups.test.ts +1 -3
  61. package/src/__tests__/domains.test.ts +7 -2
  62. package/src/__tests__/edgeconfig.test.ts +6 -6
  63. package/src/__tests__/rollingrelease.test.ts +6 -2
  64. package/src/__tests__/security.test.ts +4 -4
  65. package/src/funcs/projectsGetProjects.ts +1 -0
  66. package/src/lib/config.ts +3 -3
  67. package/src/mcp-server/mcp-server.ts +1 -1
  68. package/src/mcp-server/server.ts +1 -1
  69. package/src/models/canceldeploymentop.ts +15 -15
  70. package/src/models/createdeploymentop.ts +11 -11
  71. package/src/models/createprojectenvop.ts +2 -2
  72. package/src/models/createprojectop.ts +312 -300
  73. package/src/models/editprojectenvop.ts +1 -1
  74. package/src/models/filterprojectenvsop.ts +3 -3
  75. package/src/models/getconfigurationproductsop.ts +703 -703
  76. package/src/models/getprojectsop.ts +59 -8
  77. package/src/models/removeprojectenvop.ts +3 -3
  78. package/src/models/updateprojectdatacacheop.ts +8 -0
  79. package/src/models/updateprojectop.ts +20 -8
  80. package/vercel-spec.json +396 -346
@@ -238,6 +238,7 @@ export type CreateProjectResourceConfig = {
238
238
  functionZeroConfigFailover?: boolean | undefined;
239
239
  elasticConcurrencyEnabled?: boolean | undefined;
240
240
  buildMachineType?: BuildMachineType | undefined;
241
+ isNSNBDisabled?: boolean | undefined;
241
242
  };
242
243
 
243
244
  export type CreateProjectRequestBody = {
@@ -447,10 +448,10 @@ export type CreateProjectProjectsTarget =
447
448
 
448
449
  export const CreateProjectProjectsResponseType = {
449
450
  System: "system",
451
+ Secret: "secret",
450
452
  Encrypted: "encrypted",
451
453
  Plain: "plain",
452
454
  Sensitive: "sensitive",
453
- Secret: "secret",
454
455
  } as const;
455
456
  export type CreateProjectProjectsResponseType = ClosedEnum<
456
457
  typeof CreateProjectProjectsResponseType
@@ -1209,18 +1210,18 @@ export type CreateProjectLinkProjectsDeployHooks = {
1209
1210
 
1210
1211
  export type CreateProjectLink2 = {
1211
1212
  type: CreateProjectLinkProjectsType;
1212
- repo?: string | undefined;
1213
- repoId?: number | undefined;
1214
1213
  updatedAt?: number | undefined;
1215
1214
  createdAt?: number | undefined;
1215
+ repo?: string | undefined;
1216
+ sourceless?: boolean | undefined;
1216
1217
  org: string;
1217
1218
  /**
1218
1219
  * 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.
1219
1220
  */
1220
1221
  repoOwnerId?: number | undefined;
1222
+ repoId?: number | undefined;
1221
1223
  deployHooks: Array<CreateProjectLinkProjectsDeployHooks>;
1222
1224
  gitCredentialId: string;
1223
- sourceless?: boolean | undefined;
1224
1225
  productionBranch: string;
1225
1226
  };
1226
1227
 
@@ -1349,6 +1350,7 @@ export type CreateProjectProjectsResourceConfig = {
1349
1350
  functionZeroConfigFailover?: boolean | undefined;
1350
1351
  elasticConcurrencyEnabled?: boolean | undefined;
1351
1352
  buildMachineType?: CreateProjectBuildMachineType | undefined;
1353
+ isNSNBDisabled?: boolean | undefined;
1352
1354
  };
1353
1355
 
1354
1356
  /**
@@ -1436,11 +1438,12 @@ export type CreateProjectDefaultResourceConfig = {
1436
1438
  functionZeroConfigFailover?: boolean | undefined;
1437
1439
  elasticConcurrencyEnabled?: boolean | undefined;
1438
1440
  buildMachineType?: CreateProjectProjectsBuildMachineType | undefined;
1441
+ isNSNBDisabled?: boolean | undefined;
1439
1442
  };
1440
1443
 
1441
1444
  export const CreateProjectProjectsDeploymentType = {
1442
- Preview: "preview",
1443
1445
  All: "all",
1446
+ Preview: "preview",
1444
1447
  ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews",
1445
1448
  AllExceptCustomDomains: "all_except_custom_domains",
1446
1449
  } as const;
@@ -1613,73 +1616,6 @@ export type CreateProjectTargets = {
1613
1616
  };
1614
1617
 
1615
1618
  export type CreateProjectPermissions = {
1616
- aliasProject?: Array<ACLAction> | undefined;
1617
- aliasProtectionBypass?: Array<ACLAction> | undefined;
1618
- buildMachine?: Array<ACLAction> | undefined;
1619
- productionAliasProtectionBypass?: Array<ACLAction> | undefined;
1620
- connectConfigurationLink?: Array<ACLAction> | undefined;
1621
- dataCacheNamespace?: Array<ACLAction> | undefined;
1622
- deployment?: Array<ACLAction> | undefined;
1623
- deploymentBuildLogs?: Array<ACLAction> | undefined;
1624
- deploymentCheck?: Array<ACLAction> | undefined;
1625
- deploymentCheckPreview?: Array<ACLAction> | undefined;
1626
- deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
1627
- deploymentProductionGit?: Array<ACLAction> | undefined;
1628
- deploymentV0?: Array<ACLAction> | undefined;
1629
- deploymentPreview?: Array<ACLAction> | undefined;
1630
- deploymentPrivate?: Array<ACLAction> | undefined;
1631
- deploymentPromote?: Array<ACLAction> | undefined;
1632
- deploymentRollback?: Array<ACLAction> | undefined;
1633
- edgeCacheNamespace?: Array<ACLAction> | undefined;
1634
- environments?: Array<ACLAction> | undefined;
1635
- logs?: Array<ACLAction> | undefined;
1636
- logsPreset?: Array<ACLAction> | undefined;
1637
- passwordProtection?: Array<ACLAction> | undefined;
1638
- optionsAllowlist?: Array<ACLAction> | undefined;
1639
- job?: Array<ACLAction> | undefined;
1640
- observabilityData?: Array<ACLAction> | undefined;
1641
- onDemandBuild?: Array<ACLAction> | undefined;
1642
- onDemandConcurrency?: Array<ACLAction> | undefined;
1643
- project?: Array<ACLAction> | undefined;
1644
- projectFromV0?: Array<ACLAction> | undefined;
1645
- projectAccessGroup?: Array<ACLAction> | undefined;
1646
- projectAnalyticsSampling?: Array<ACLAction> | undefined;
1647
- projectCheck?: Array<ACLAction> | undefined;
1648
- projectCheckRun?: Array<ACLAction> | undefined;
1649
- projectDeploymentHook?: Array<ACLAction> | undefined;
1650
- projectDomain?: Array<ACLAction> | undefined;
1651
- projectDomainMove?: Array<ACLAction> | undefined;
1652
- projectDomainCheckConfig?: Array<ACLAction> | undefined;
1653
- projectEnvVars?: Array<ACLAction> | undefined;
1654
- projectEnvVarsProduction?: Array<ACLAction> | undefined;
1655
- projectEnvVarsUnownedByIntegration?: Array<ACLAction> | undefined;
1656
- projectFlags?: Array<ACLAction> | undefined;
1657
- projectId?: Array<ACLAction> | undefined;
1658
- projectIntegrationConfiguration?: Array<ACLAction> | undefined;
1659
- projectLink?: Array<ACLAction> | undefined;
1660
- projectMember?: Array<ACLAction> | undefined;
1661
- projectMonitoring?: Array<ACLAction> | undefined;
1662
- projectPermissions?: Array<ACLAction> | undefined;
1663
- projectProductionBranch?: Array<ACLAction> | undefined;
1664
- projectTransfer?: Array<ACLAction> | undefined;
1665
- projectTransferOut?: Array<ACLAction> | undefined;
1666
- projectProtectionBypass?: Array<ACLAction> | undefined;
1667
- projectUsage?: Array<ACLAction> | undefined;
1668
- projectAnalyticsUsage?: Array<ACLAction> | undefined;
1669
- projectSupportCase?: Array<ACLAction> | undefined;
1670
- projectSupportCaseComment?: Array<ACLAction> | undefined;
1671
- projectDeploymentExpiration?: Array<ACLAction> | undefined;
1672
- projectRollingRelease?: Array<ACLAction> | undefined;
1673
- projectTier?: Array<ACLAction> | undefined;
1674
- projectOIDCToken?: Array<ACLAction> | undefined;
1675
- seawallConfig?: Array<ACLAction> | undefined;
1676
- skewProtection?: Array<ACLAction> | undefined;
1677
- analytics?: Array<ACLAction> | undefined;
1678
- trustedIps?: Array<ACLAction> | undefined;
1679
- v0Chat?: Array<ACLAction> | undefined;
1680
- webAnalytics?: Array<ACLAction> | undefined;
1681
- sharedEnvVarConnection?: Array<ACLAction> | undefined;
1682
- sonar?: Array<ACLAction> | undefined;
1683
1619
  oauth2Connection?: Array<ACLAction> | undefined;
1684
1620
  user?: Array<ACLAction> | undefined;
1685
1621
  userConnection?: Array<ACLAction> | undefined;
@@ -1825,6 +1761,73 @@ export type CreateProjectPermissions = {
1825
1761
  vercelRunExec?: Array<ACLAction> | undefined;
1826
1762
  apiKey?: Array<ACLAction> | undefined;
1827
1763
  apiKeyOwnedBySelf?: Array<ACLAction> | undefined;
1764
+ aliasProject?: Array<ACLAction> | undefined;
1765
+ aliasProtectionBypass?: Array<ACLAction> | undefined;
1766
+ buildMachine?: Array<ACLAction> | undefined;
1767
+ productionAliasProtectionBypass?: Array<ACLAction> | undefined;
1768
+ connectConfigurationLink?: Array<ACLAction> | undefined;
1769
+ dataCacheNamespace?: Array<ACLAction> | undefined;
1770
+ deployment?: Array<ACLAction> | undefined;
1771
+ deploymentBuildLogs?: Array<ACLAction> | undefined;
1772
+ deploymentCheck?: Array<ACLAction> | undefined;
1773
+ deploymentCheckPreview?: Array<ACLAction> | undefined;
1774
+ deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
1775
+ deploymentProductionGit?: Array<ACLAction> | undefined;
1776
+ deploymentV0?: Array<ACLAction> | undefined;
1777
+ deploymentPreview?: Array<ACLAction> | undefined;
1778
+ deploymentPrivate?: Array<ACLAction> | undefined;
1779
+ deploymentPromote?: Array<ACLAction> | undefined;
1780
+ deploymentRollback?: Array<ACLAction> | undefined;
1781
+ edgeCacheNamespace?: Array<ACLAction> | undefined;
1782
+ environments?: Array<ACLAction> | undefined;
1783
+ logs?: Array<ACLAction> | undefined;
1784
+ logsPreset?: Array<ACLAction> | undefined;
1785
+ passwordProtection?: Array<ACLAction> | undefined;
1786
+ optionsAllowlist?: Array<ACLAction> | undefined;
1787
+ job?: Array<ACLAction> | undefined;
1788
+ observabilityData?: Array<ACLAction> | undefined;
1789
+ onDemandBuild?: Array<ACLAction> | undefined;
1790
+ onDemandConcurrency?: Array<ACLAction> | undefined;
1791
+ project?: Array<ACLAction> | undefined;
1792
+ projectFromV0?: Array<ACLAction> | undefined;
1793
+ projectAccessGroup?: Array<ACLAction> | undefined;
1794
+ projectAnalyticsSampling?: Array<ACLAction> | undefined;
1795
+ projectCheck?: Array<ACLAction> | undefined;
1796
+ projectCheckRun?: Array<ACLAction> | undefined;
1797
+ projectDeploymentHook?: Array<ACLAction> | undefined;
1798
+ projectDomain?: Array<ACLAction> | undefined;
1799
+ projectDomainMove?: Array<ACLAction> | undefined;
1800
+ projectDomainCheckConfig?: Array<ACLAction> | undefined;
1801
+ projectEnvVars?: Array<ACLAction> | undefined;
1802
+ projectEnvVarsProduction?: Array<ACLAction> | undefined;
1803
+ projectEnvVarsUnownedByIntegration?: Array<ACLAction> | undefined;
1804
+ projectFlags?: Array<ACLAction> | undefined;
1805
+ projectId?: Array<ACLAction> | undefined;
1806
+ projectIntegrationConfiguration?: Array<ACLAction> | undefined;
1807
+ projectLink?: Array<ACLAction> | undefined;
1808
+ projectMember?: Array<ACLAction> | undefined;
1809
+ projectMonitoring?: Array<ACLAction> | undefined;
1810
+ projectPermissions?: Array<ACLAction> | undefined;
1811
+ projectProductionBranch?: Array<ACLAction> | undefined;
1812
+ projectTransfer?: Array<ACLAction> | undefined;
1813
+ projectTransferOut?: Array<ACLAction> | undefined;
1814
+ projectProtectionBypass?: Array<ACLAction> | undefined;
1815
+ projectUsage?: Array<ACLAction> | undefined;
1816
+ projectAnalyticsUsage?: Array<ACLAction> | undefined;
1817
+ projectSupportCase?: Array<ACLAction> | undefined;
1818
+ projectSupportCaseComment?: Array<ACLAction> | undefined;
1819
+ projectDeploymentExpiration?: Array<ACLAction> | undefined;
1820
+ projectRollingRelease?: Array<ACLAction> | undefined;
1821
+ projectTier?: Array<ACLAction> | undefined;
1822
+ projectOIDCToken?: Array<ACLAction> | undefined;
1823
+ seawallConfig?: Array<ACLAction> | undefined;
1824
+ skewProtection?: Array<ACLAction> | undefined;
1825
+ analytics?: Array<ACLAction> | undefined;
1826
+ trustedIps?: Array<ACLAction> | undefined;
1827
+ v0Chat?: Array<ACLAction> | undefined;
1828
+ webAnalytics?: Array<ACLAction> | undefined;
1829
+ sharedEnvVarConnection?: Array<ACLAction> | undefined;
1830
+ sonar?: Array<ACLAction> | undefined;
1828
1831
  };
1829
1832
 
1830
1833
  export type CreateProjectLastRollbackTarget = {};
@@ -1894,11 +1897,11 @@ export type CreateProjectProtectionBypass =
1894
1897
  | CreateProjectProtectionBypass2;
1895
1898
 
1896
1899
  export const CreateProjectTrustedIpsProjectsDeploymentType = {
1897
- Preview: "preview",
1898
- Production: "production",
1899
1900
  All: "all",
1901
+ Preview: "preview",
1900
1902
  ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews",
1901
1903
  AllExceptCustomDomains: "all_except_custom_domains",
1904
+ Production: "production",
1902
1905
  } as const;
1903
1906
  export type CreateProjectTrustedIpsProjectsDeploymentType = ClosedEnum<
1904
1907
  typeof CreateProjectTrustedIpsProjectsDeploymentType
@@ -1909,11 +1912,11 @@ export type CreateProjectTrustedIps2 = {
1909
1912
  };
1910
1913
 
1911
1914
  export const CreateProjectTrustedIpsDeploymentType = {
1912
- Preview: "preview",
1913
- Production: "production",
1914
1915
  All: "all",
1916
+ Preview: "preview",
1915
1917
  ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews",
1916
1918
  AllExceptCustomDomains: "all_except_custom_domains",
1919
+ Production: "production",
1917
1920
  } as const;
1918
1921
  export type CreateProjectTrustedIpsDeploymentType = ClosedEnum<
1919
1922
  typeof CreateProjectTrustedIpsDeploymentType
@@ -2661,6 +2664,7 @@ export const CreateProjectResourceConfig$inboundSchema: z.ZodType<
2661
2664
  functionZeroConfigFailover: z.boolean().optional(),
2662
2665
  elasticConcurrencyEnabled: z.boolean().optional(),
2663
2666
  buildMachineType: BuildMachineType$inboundSchema.optional(),
2667
+ isNSNBDisabled: z.boolean().optional(),
2664
2668
  });
2665
2669
 
2666
2670
  /** @internal */
@@ -2672,6 +2676,7 @@ export type CreateProjectResourceConfig$Outbound = {
2672
2676
  functionZeroConfigFailover?: boolean | undefined;
2673
2677
  elasticConcurrencyEnabled?: boolean | undefined;
2674
2678
  buildMachineType?: string | undefined;
2679
+ isNSNBDisabled?: boolean | undefined;
2675
2680
  };
2676
2681
 
2677
2682
  /** @internal */
@@ -2688,6 +2693,7 @@ export const CreateProjectResourceConfig$outboundSchema: z.ZodType<
2688
2693
  functionZeroConfigFailover: z.boolean().optional(),
2689
2694
  elasticConcurrencyEnabled: z.boolean().optional(),
2690
2695
  buildMachineType: BuildMachineType$outboundSchema.optional(),
2696
+ isNSNBDisabled: z.boolean().optional(),
2691
2697
  });
2692
2698
 
2693
2699
  /**
@@ -7103,32 +7109,32 @@ export const CreateProjectLink2$inboundSchema: z.ZodType<
7103
7109
  unknown
7104
7110
  > = z.object({
7105
7111
  type: CreateProjectLinkProjectsType$inboundSchema,
7106
- repo: z.string().optional(),
7107
- repoId: z.number().optional(),
7108
7112
  updatedAt: z.number().optional(),
7109
7113
  createdAt: z.number().optional(),
7114
+ repo: z.string().optional(),
7115
+ sourceless: z.boolean().optional(),
7110
7116
  org: z.string(),
7111
7117
  repoOwnerId: z.number().optional(),
7118
+ repoId: z.number().optional(),
7112
7119
  deployHooks: z.array(
7113
7120
  z.lazy(() => CreateProjectLinkProjectsDeployHooks$inboundSchema),
7114
7121
  ),
7115
7122
  gitCredentialId: z.string(),
7116
- sourceless: z.boolean().optional(),
7117
7123
  productionBranch: z.string(),
7118
7124
  });
7119
7125
 
7120
7126
  /** @internal */
7121
7127
  export type CreateProjectLink2$Outbound = {
7122
7128
  type: string;
7123
- repo?: string | undefined;
7124
- repoId?: number | undefined;
7125
7129
  updatedAt?: number | undefined;
7126
7130
  createdAt?: number | undefined;
7131
+ repo?: string | undefined;
7132
+ sourceless?: boolean | undefined;
7127
7133
  org: string;
7128
7134
  repoOwnerId?: number | undefined;
7135
+ repoId?: number | undefined;
7129
7136
  deployHooks: Array<CreateProjectLinkProjectsDeployHooks$Outbound>;
7130
7137
  gitCredentialId: string;
7131
- sourceless?: boolean | undefined;
7132
7138
  productionBranch: string;
7133
7139
  };
7134
7140
 
@@ -7139,17 +7145,17 @@ export const CreateProjectLink2$outboundSchema: z.ZodType<
7139
7145
  CreateProjectLink2
7140
7146
  > = z.object({
7141
7147
  type: CreateProjectLinkProjectsType$outboundSchema,
7142
- repo: z.string().optional(),
7143
- repoId: z.number().optional(),
7144
7148
  updatedAt: z.number().optional(),
7145
7149
  createdAt: z.number().optional(),
7150
+ repo: z.string().optional(),
7151
+ sourceless: z.boolean().optional(),
7146
7152
  org: z.string(),
7147
7153
  repoOwnerId: z.number().optional(),
7154
+ repoId: z.number().optional(),
7148
7155
  deployHooks: z.array(
7149
7156
  z.lazy(() => CreateProjectLinkProjectsDeployHooks$outboundSchema),
7150
7157
  ),
7151
7158
  gitCredentialId: z.string(),
7152
- sourceless: z.boolean().optional(),
7153
7159
  productionBranch: z.string(),
7154
7160
  });
7155
7161
 
@@ -7857,6 +7863,7 @@ export const CreateProjectProjectsResourceConfig$inboundSchema: z.ZodType<
7857
7863
  functionZeroConfigFailover: z.boolean().optional(),
7858
7864
  elasticConcurrencyEnabled: z.boolean().optional(),
7859
7865
  buildMachineType: CreateProjectBuildMachineType$inboundSchema.optional(),
7866
+ isNSNBDisabled: z.boolean().optional(),
7860
7867
  });
7861
7868
 
7862
7869
  /** @internal */
@@ -7868,6 +7875,7 @@ export type CreateProjectProjectsResourceConfig$Outbound = {
7868
7875
  functionZeroConfigFailover?: boolean | undefined;
7869
7876
  elasticConcurrencyEnabled?: boolean | undefined;
7870
7877
  buildMachineType?: string | undefined;
7878
+ isNSNBDisabled?: boolean | undefined;
7871
7879
  };
7872
7880
 
7873
7881
  /** @internal */
@@ -7884,6 +7892,7 @@ export const CreateProjectProjectsResourceConfig$outboundSchema: z.ZodType<
7884
7892
  functionZeroConfigFailover: z.boolean().optional(),
7885
7893
  elasticConcurrencyEnabled: z.boolean().optional(),
7886
7894
  buildMachineType: CreateProjectBuildMachineType$outboundSchema.optional(),
7895
+ isNSNBDisabled: z.boolean().optional(),
7887
7896
  });
7888
7897
 
7889
7898
  /**
@@ -8173,6 +8182,7 @@ export const CreateProjectDefaultResourceConfig$inboundSchema: z.ZodType<
8173
8182
  elasticConcurrencyEnabled: z.boolean().optional(),
8174
8183
  buildMachineType: CreateProjectProjectsBuildMachineType$inboundSchema
8175
8184
  .optional(),
8185
+ isNSNBDisabled: z.boolean().optional(),
8176
8186
  });
8177
8187
 
8178
8188
  /** @internal */
@@ -8184,6 +8194,7 @@ export type CreateProjectDefaultResourceConfig$Outbound = {
8184
8194
  functionZeroConfigFailover?: boolean | undefined;
8185
8195
  elasticConcurrencyEnabled?: boolean | undefined;
8186
8196
  buildMachineType?: string | undefined;
8197
+ isNSNBDisabled?: boolean | undefined;
8187
8198
  };
8188
8199
 
8189
8200
  /** @internal */
@@ -8201,6 +8212,7 @@ export const CreateProjectDefaultResourceConfig$outboundSchema: z.ZodType<
8201
8212
  elasticConcurrencyEnabled: z.boolean().optional(),
8202
8213
  buildMachineType: CreateProjectProjectsBuildMachineType$outboundSchema
8203
8214
  .optional(),
8215
+ isNSNBDisabled: z.boolean().optional(),
8204
8216
  });
8205
8217
 
8206
8218
  /**
@@ -9074,75 +9086,6 @@ export const CreateProjectPermissions$inboundSchema: z.ZodType<
9074
9086
  z.ZodTypeDef,
9075
9087
  unknown
9076
9088
  > = z.object({
9077
- aliasProject: z.array(ACLAction$inboundSchema).optional(),
9078
- aliasProtectionBypass: z.array(ACLAction$inboundSchema).optional(),
9079
- buildMachine: z.array(ACLAction$inboundSchema).optional(),
9080
- productionAliasProtectionBypass: z.array(ACLAction$inboundSchema).optional(),
9081
- connectConfigurationLink: z.array(ACLAction$inboundSchema).optional(),
9082
- dataCacheNamespace: z.array(ACLAction$inboundSchema).optional(),
9083
- deployment: z.array(ACLAction$inboundSchema).optional(),
9084
- deploymentBuildLogs: z.array(ACLAction$inboundSchema).optional(),
9085
- deploymentCheck: z.array(ACLAction$inboundSchema).optional(),
9086
- deploymentCheckPreview: z.array(ACLAction$inboundSchema).optional(),
9087
- deploymentCheckReRunFromProductionBranch: z.array(ACLAction$inboundSchema)
9088
- .optional(),
9089
- deploymentProductionGit: z.array(ACLAction$inboundSchema).optional(),
9090
- deploymentV0: z.array(ACLAction$inboundSchema).optional(),
9091
- deploymentPreview: z.array(ACLAction$inboundSchema).optional(),
9092
- deploymentPrivate: z.array(ACLAction$inboundSchema).optional(),
9093
- deploymentPromote: z.array(ACLAction$inboundSchema).optional(),
9094
- deploymentRollback: z.array(ACLAction$inboundSchema).optional(),
9095
- edgeCacheNamespace: z.array(ACLAction$inboundSchema).optional(),
9096
- environments: z.array(ACLAction$inboundSchema).optional(),
9097
- logs: z.array(ACLAction$inboundSchema).optional(),
9098
- logsPreset: z.array(ACLAction$inboundSchema).optional(),
9099
- passwordProtection: z.array(ACLAction$inboundSchema).optional(),
9100
- optionsAllowlist: z.array(ACLAction$inboundSchema).optional(),
9101
- job: z.array(ACLAction$inboundSchema).optional(),
9102
- observabilityData: z.array(ACLAction$inboundSchema).optional(),
9103
- onDemandBuild: z.array(ACLAction$inboundSchema).optional(),
9104
- onDemandConcurrency: z.array(ACLAction$inboundSchema).optional(),
9105
- project: z.array(ACLAction$inboundSchema).optional(),
9106
- projectFromV0: z.array(ACLAction$inboundSchema).optional(),
9107
- projectAccessGroup: z.array(ACLAction$inboundSchema).optional(),
9108
- projectAnalyticsSampling: z.array(ACLAction$inboundSchema).optional(),
9109
- projectCheck: z.array(ACLAction$inboundSchema).optional(),
9110
- projectCheckRun: z.array(ACLAction$inboundSchema).optional(),
9111
- projectDeploymentHook: z.array(ACLAction$inboundSchema).optional(),
9112
- projectDomain: z.array(ACLAction$inboundSchema).optional(),
9113
- projectDomainMove: z.array(ACLAction$inboundSchema).optional(),
9114
- projectDomainCheckConfig: z.array(ACLAction$inboundSchema).optional(),
9115
- projectEnvVars: z.array(ACLAction$inboundSchema).optional(),
9116
- projectEnvVarsProduction: z.array(ACLAction$inboundSchema).optional(),
9117
- projectEnvVarsUnownedByIntegration: z.array(ACLAction$inboundSchema)
9118
- .optional(),
9119
- projectFlags: z.array(ACLAction$inboundSchema).optional(),
9120
- projectId: z.array(ACLAction$inboundSchema).optional(),
9121
- projectIntegrationConfiguration: z.array(ACLAction$inboundSchema).optional(),
9122
- projectLink: z.array(ACLAction$inboundSchema).optional(),
9123
- projectMember: z.array(ACLAction$inboundSchema).optional(),
9124
- projectMonitoring: z.array(ACLAction$inboundSchema).optional(),
9125
- projectPermissions: z.array(ACLAction$inboundSchema).optional(),
9126
- projectProductionBranch: z.array(ACLAction$inboundSchema).optional(),
9127
- projectTransfer: z.array(ACLAction$inboundSchema).optional(),
9128
- projectTransferOut: z.array(ACLAction$inboundSchema).optional(),
9129
- projectProtectionBypass: z.array(ACLAction$inboundSchema).optional(),
9130
- projectUsage: z.array(ACLAction$inboundSchema).optional(),
9131
- projectAnalyticsUsage: z.array(ACLAction$inboundSchema).optional(),
9132
- projectSupportCase: z.array(ACLAction$inboundSchema).optional(),
9133
- projectSupportCaseComment: z.array(ACLAction$inboundSchema).optional(),
9134
- projectDeploymentExpiration: z.array(ACLAction$inboundSchema).optional(),
9135
- projectRollingRelease: z.array(ACLAction$inboundSchema).optional(),
9136
- projectTier: z.array(ACLAction$inboundSchema).optional(),
9137
- projectOIDCToken: z.array(ACLAction$inboundSchema).optional(),
9138
- seawallConfig: z.array(ACLAction$inboundSchema).optional(),
9139
- skewProtection: z.array(ACLAction$inboundSchema).optional(),
9140
- analytics: z.array(ACLAction$inboundSchema).optional(),
9141
- trustedIps: z.array(ACLAction$inboundSchema).optional(),
9142
- v0Chat: z.array(ACLAction$inboundSchema).optional(),
9143
- webAnalytics: z.array(ACLAction$inboundSchema).optional(),
9144
- sharedEnvVarConnection: z.array(ACLAction$inboundSchema).optional(),
9145
- sonar: z.array(ACLAction$inboundSchema).optional(),
9146
9089
  oauth2Connection: z.array(ACLAction$inboundSchema).optional(),
9147
9090
  user: z.array(ACLAction$inboundSchema).optional(),
9148
9091
  userConnection: z.array(ACLAction$inboundSchema).optional(),
@@ -9291,83 +9234,85 @@ export const CreateProjectPermissions$inboundSchema: z.ZodType<
9291
9234
  vercelRunExec: z.array(ACLAction$inboundSchema).optional(),
9292
9235
  apiKey: z.array(ACLAction$inboundSchema).optional(),
9293
9236
  apiKeyOwnedBySelf: z.array(ACLAction$inboundSchema).optional(),
9294
- }).transform((v) => {
9295
- return remap$(v, {
9296
- "Monitoring": "monitoring",
9297
- "NotificationMonitoringAlert": "notificationMonitoringAlert",
9298
- "webhook-event": "webhookEvent",
9299
- });
9300
- });
9301
-
9302
- /** @internal */
9303
- export type CreateProjectPermissions$Outbound = {
9304
- aliasProject?: Array<string> | undefined;
9305
- aliasProtectionBypass?: Array<string> | undefined;
9306
- buildMachine?: Array<string> | undefined;
9307
- productionAliasProtectionBypass?: Array<string> | undefined;
9308
- connectConfigurationLink?: Array<string> | undefined;
9309
- dataCacheNamespace?: Array<string> | undefined;
9310
- deployment?: Array<string> | undefined;
9311
- deploymentBuildLogs?: Array<string> | undefined;
9312
- deploymentCheck?: Array<string> | undefined;
9313
- deploymentCheckPreview?: Array<string> | undefined;
9314
- deploymentCheckReRunFromProductionBranch?: Array<string> | undefined;
9315
- deploymentProductionGit?: Array<string> | undefined;
9316
- deploymentV0?: Array<string> | undefined;
9317
- deploymentPreview?: Array<string> | undefined;
9318
- deploymentPrivate?: Array<string> | undefined;
9319
- deploymentPromote?: Array<string> | undefined;
9320
- deploymentRollback?: Array<string> | undefined;
9321
- edgeCacheNamespace?: Array<string> | undefined;
9322
- environments?: Array<string> | undefined;
9323
- logs?: Array<string> | undefined;
9324
- logsPreset?: Array<string> | undefined;
9325
- passwordProtection?: Array<string> | undefined;
9326
- optionsAllowlist?: Array<string> | undefined;
9327
- job?: Array<string> | undefined;
9328
- observabilityData?: Array<string> | undefined;
9329
- onDemandBuild?: Array<string> | undefined;
9330
- onDemandConcurrency?: Array<string> | undefined;
9331
- project?: Array<string> | undefined;
9332
- projectFromV0?: Array<string> | undefined;
9333
- projectAccessGroup?: Array<string> | undefined;
9334
- projectAnalyticsSampling?: Array<string> | undefined;
9335
- projectCheck?: Array<string> | undefined;
9336
- projectCheckRun?: Array<string> | undefined;
9337
- projectDeploymentHook?: Array<string> | undefined;
9338
- projectDomain?: Array<string> | undefined;
9339
- projectDomainMove?: Array<string> | undefined;
9340
- projectDomainCheckConfig?: Array<string> | undefined;
9341
- projectEnvVars?: Array<string> | undefined;
9342
- projectEnvVarsProduction?: Array<string> | undefined;
9343
- projectEnvVarsUnownedByIntegration?: Array<string> | undefined;
9344
- projectFlags?: Array<string> | undefined;
9345
- projectId?: Array<string> | undefined;
9346
- projectIntegrationConfiguration?: Array<string> | undefined;
9347
- projectLink?: Array<string> | undefined;
9348
- projectMember?: Array<string> | undefined;
9349
- projectMonitoring?: Array<string> | undefined;
9350
- projectPermissions?: Array<string> | undefined;
9351
- projectProductionBranch?: Array<string> | undefined;
9352
- projectTransfer?: Array<string> | undefined;
9353
- projectTransferOut?: Array<string> | undefined;
9354
- projectProtectionBypass?: Array<string> | undefined;
9355
- projectUsage?: Array<string> | undefined;
9356
- projectAnalyticsUsage?: Array<string> | undefined;
9357
- projectSupportCase?: Array<string> | undefined;
9358
- projectSupportCaseComment?: Array<string> | undefined;
9359
- projectDeploymentExpiration?: Array<string> | undefined;
9360
- projectRollingRelease?: Array<string> | undefined;
9361
- projectTier?: Array<string> | undefined;
9362
- projectOIDCToken?: Array<string> | undefined;
9363
- seawallConfig?: Array<string> | undefined;
9364
- skewProtection?: Array<string> | undefined;
9365
- analytics?: Array<string> | undefined;
9366
- trustedIps?: Array<string> | undefined;
9367
- v0Chat?: Array<string> | undefined;
9368
- webAnalytics?: Array<string> | undefined;
9369
- sharedEnvVarConnection?: Array<string> | undefined;
9370
- sonar?: Array<string> | undefined;
9237
+ aliasProject: z.array(ACLAction$inboundSchema).optional(),
9238
+ aliasProtectionBypass: z.array(ACLAction$inboundSchema).optional(),
9239
+ buildMachine: z.array(ACLAction$inboundSchema).optional(),
9240
+ productionAliasProtectionBypass: z.array(ACLAction$inboundSchema).optional(),
9241
+ connectConfigurationLink: z.array(ACLAction$inboundSchema).optional(),
9242
+ dataCacheNamespace: z.array(ACLAction$inboundSchema).optional(),
9243
+ deployment: z.array(ACLAction$inboundSchema).optional(),
9244
+ deploymentBuildLogs: z.array(ACLAction$inboundSchema).optional(),
9245
+ deploymentCheck: z.array(ACLAction$inboundSchema).optional(),
9246
+ deploymentCheckPreview: z.array(ACLAction$inboundSchema).optional(),
9247
+ deploymentCheckReRunFromProductionBranch: z.array(ACLAction$inboundSchema)
9248
+ .optional(),
9249
+ deploymentProductionGit: z.array(ACLAction$inboundSchema).optional(),
9250
+ deploymentV0: z.array(ACLAction$inboundSchema).optional(),
9251
+ deploymentPreview: z.array(ACLAction$inboundSchema).optional(),
9252
+ deploymentPrivate: z.array(ACLAction$inboundSchema).optional(),
9253
+ deploymentPromote: z.array(ACLAction$inboundSchema).optional(),
9254
+ deploymentRollback: z.array(ACLAction$inboundSchema).optional(),
9255
+ edgeCacheNamespace: z.array(ACLAction$inboundSchema).optional(),
9256
+ environments: z.array(ACLAction$inboundSchema).optional(),
9257
+ logs: z.array(ACLAction$inboundSchema).optional(),
9258
+ logsPreset: z.array(ACLAction$inboundSchema).optional(),
9259
+ passwordProtection: z.array(ACLAction$inboundSchema).optional(),
9260
+ optionsAllowlist: z.array(ACLAction$inboundSchema).optional(),
9261
+ job: z.array(ACLAction$inboundSchema).optional(),
9262
+ observabilityData: z.array(ACLAction$inboundSchema).optional(),
9263
+ onDemandBuild: z.array(ACLAction$inboundSchema).optional(),
9264
+ onDemandConcurrency: z.array(ACLAction$inboundSchema).optional(),
9265
+ project: z.array(ACLAction$inboundSchema).optional(),
9266
+ projectFromV0: z.array(ACLAction$inboundSchema).optional(),
9267
+ projectAccessGroup: z.array(ACLAction$inboundSchema).optional(),
9268
+ projectAnalyticsSampling: z.array(ACLAction$inboundSchema).optional(),
9269
+ projectCheck: z.array(ACLAction$inboundSchema).optional(),
9270
+ projectCheckRun: z.array(ACLAction$inboundSchema).optional(),
9271
+ projectDeploymentHook: z.array(ACLAction$inboundSchema).optional(),
9272
+ projectDomain: z.array(ACLAction$inboundSchema).optional(),
9273
+ projectDomainMove: z.array(ACLAction$inboundSchema).optional(),
9274
+ projectDomainCheckConfig: z.array(ACLAction$inboundSchema).optional(),
9275
+ projectEnvVars: z.array(ACLAction$inboundSchema).optional(),
9276
+ projectEnvVarsProduction: z.array(ACLAction$inboundSchema).optional(),
9277
+ projectEnvVarsUnownedByIntegration: z.array(ACLAction$inboundSchema)
9278
+ .optional(),
9279
+ projectFlags: z.array(ACLAction$inboundSchema).optional(),
9280
+ projectId: z.array(ACLAction$inboundSchema).optional(),
9281
+ projectIntegrationConfiguration: z.array(ACLAction$inboundSchema).optional(),
9282
+ projectLink: z.array(ACLAction$inboundSchema).optional(),
9283
+ projectMember: z.array(ACLAction$inboundSchema).optional(),
9284
+ projectMonitoring: z.array(ACLAction$inboundSchema).optional(),
9285
+ projectPermissions: z.array(ACLAction$inboundSchema).optional(),
9286
+ projectProductionBranch: z.array(ACLAction$inboundSchema).optional(),
9287
+ projectTransfer: z.array(ACLAction$inboundSchema).optional(),
9288
+ projectTransferOut: z.array(ACLAction$inboundSchema).optional(),
9289
+ projectProtectionBypass: z.array(ACLAction$inboundSchema).optional(),
9290
+ projectUsage: z.array(ACLAction$inboundSchema).optional(),
9291
+ projectAnalyticsUsage: z.array(ACLAction$inboundSchema).optional(),
9292
+ projectSupportCase: z.array(ACLAction$inboundSchema).optional(),
9293
+ projectSupportCaseComment: z.array(ACLAction$inboundSchema).optional(),
9294
+ projectDeploymentExpiration: z.array(ACLAction$inboundSchema).optional(),
9295
+ projectRollingRelease: z.array(ACLAction$inboundSchema).optional(),
9296
+ projectTier: z.array(ACLAction$inboundSchema).optional(),
9297
+ projectOIDCToken: z.array(ACLAction$inboundSchema).optional(),
9298
+ seawallConfig: z.array(ACLAction$inboundSchema).optional(),
9299
+ skewProtection: z.array(ACLAction$inboundSchema).optional(),
9300
+ analytics: z.array(ACLAction$inboundSchema).optional(),
9301
+ trustedIps: z.array(ACLAction$inboundSchema).optional(),
9302
+ v0Chat: z.array(ACLAction$inboundSchema).optional(),
9303
+ webAnalytics: z.array(ACLAction$inboundSchema).optional(),
9304
+ sharedEnvVarConnection: z.array(ACLAction$inboundSchema).optional(),
9305
+ sonar: z.array(ACLAction$inboundSchema).optional(),
9306
+ }).transform((v) => {
9307
+ return remap$(v, {
9308
+ "Monitoring": "monitoring",
9309
+ "NotificationMonitoringAlert": "notificationMonitoringAlert",
9310
+ "webhook-event": "webhookEvent",
9311
+ });
9312
+ });
9313
+
9314
+ /** @internal */
9315
+ export type CreateProjectPermissions$Outbound = {
9371
9316
  oauth2Connection?: Array<string> | undefined;
9372
9317
  user?: Array<string> | undefined;
9373
9318
  userConnection?: Array<string> | undefined;
@@ -9513,6 +9458,73 @@ export type CreateProjectPermissions$Outbound = {
9513
9458
  vercelRunExec?: Array<string> | undefined;
9514
9459
  apiKey?: Array<string> | undefined;
9515
9460
  apiKeyOwnedBySelf?: Array<string> | undefined;
9461
+ aliasProject?: Array<string> | undefined;
9462
+ aliasProtectionBypass?: Array<string> | undefined;
9463
+ buildMachine?: Array<string> | undefined;
9464
+ productionAliasProtectionBypass?: Array<string> | undefined;
9465
+ connectConfigurationLink?: Array<string> | undefined;
9466
+ dataCacheNamespace?: Array<string> | undefined;
9467
+ deployment?: Array<string> | undefined;
9468
+ deploymentBuildLogs?: Array<string> | undefined;
9469
+ deploymentCheck?: Array<string> | undefined;
9470
+ deploymentCheckPreview?: Array<string> | undefined;
9471
+ deploymentCheckReRunFromProductionBranch?: Array<string> | undefined;
9472
+ deploymentProductionGit?: Array<string> | undefined;
9473
+ deploymentV0?: Array<string> | undefined;
9474
+ deploymentPreview?: Array<string> | undefined;
9475
+ deploymentPrivate?: Array<string> | undefined;
9476
+ deploymentPromote?: Array<string> | undefined;
9477
+ deploymentRollback?: Array<string> | undefined;
9478
+ edgeCacheNamespace?: Array<string> | undefined;
9479
+ environments?: Array<string> | undefined;
9480
+ logs?: Array<string> | undefined;
9481
+ logsPreset?: Array<string> | undefined;
9482
+ passwordProtection?: Array<string> | undefined;
9483
+ optionsAllowlist?: Array<string> | undefined;
9484
+ job?: Array<string> | undefined;
9485
+ observabilityData?: Array<string> | undefined;
9486
+ onDemandBuild?: Array<string> | undefined;
9487
+ onDemandConcurrency?: Array<string> | undefined;
9488
+ project?: Array<string> | undefined;
9489
+ projectFromV0?: Array<string> | undefined;
9490
+ projectAccessGroup?: Array<string> | undefined;
9491
+ projectAnalyticsSampling?: Array<string> | undefined;
9492
+ projectCheck?: Array<string> | undefined;
9493
+ projectCheckRun?: Array<string> | undefined;
9494
+ projectDeploymentHook?: Array<string> | undefined;
9495
+ projectDomain?: Array<string> | undefined;
9496
+ projectDomainMove?: Array<string> | undefined;
9497
+ projectDomainCheckConfig?: Array<string> | undefined;
9498
+ projectEnvVars?: Array<string> | undefined;
9499
+ projectEnvVarsProduction?: Array<string> | undefined;
9500
+ projectEnvVarsUnownedByIntegration?: Array<string> | undefined;
9501
+ projectFlags?: Array<string> | undefined;
9502
+ projectId?: Array<string> | undefined;
9503
+ projectIntegrationConfiguration?: Array<string> | undefined;
9504
+ projectLink?: Array<string> | undefined;
9505
+ projectMember?: Array<string> | undefined;
9506
+ projectMonitoring?: Array<string> | undefined;
9507
+ projectPermissions?: Array<string> | undefined;
9508
+ projectProductionBranch?: Array<string> | undefined;
9509
+ projectTransfer?: Array<string> | undefined;
9510
+ projectTransferOut?: Array<string> | undefined;
9511
+ projectProtectionBypass?: Array<string> | undefined;
9512
+ projectUsage?: Array<string> | undefined;
9513
+ projectAnalyticsUsage?: Array<string> | undefined;
9514
+ projectSupportCase?: Array<string> | undefined;
9515
+ projectSupportCaseComment?: Array<string> | undefined;
9516
+ projectDeploymentExpiration?: Array<string> | undefined;
9517
+ projectRollingRelease?: Array<string> | undefined;
9518
+ projectTier?: Array<string> | undefined;
9519
+ projectOIDCToken?: Array<string> | undefined;
9520
+ seawallConfig?: Array<string> | undefined;
9521
+ skewProtection?: Array<string> | undefined;
9522
+ analytics?: Array<string> | undefined;
9523
+ trustedIps?: Array<string> | undefined;
9524
+ v0Chat?: Array<string> | undefined;
9525
+ webAnalytics?: Array<string> | undefined;
9526
+ sharedEnvVarConnection?: Array<string> | undefined;
9527
+ sonar?: Array<string> | undefined;
9516
9528
  };
9517
9529
 
9518
9530
  /** @internal */
@@ -9521,75 +9533,6 @@ export const CreateProjectPermissions$outboundSchema: z.ZodType<
9521
9533
  z.ZodTypeDef,
9522
9534
  CreateProjectPermissions
9523
9535
  > = z.object({
9524
- aliasProject: z.array(ACLAction$outboundSchema).optional(),
9525
- aliasProtectionBypass: z.array(ACLAction$outboundSchema).optional(),
9526
- buildMachine: z.array(ACLAction$outboundSchema).optional(),
9527
- productionAliasProtectionBypass: z.array(ACLAction$outboundSchema).optional(),
9528
- connectConfigurationLink: z.array(ACLAction$outboundSchema).optional(),
9529
- dataCacheNamespace: z.array(ACLAction$outboundSchema).optional(),
9530
- deployment: z.array(ACLAction$outboundSchema).optional(),
9531
- deploymentBuildLogs: z.array(ACLAction$outboundSchema).optional(),
9532
- deploymentCheck: z.array(ACLAction$outboundSchema).optional(),
9533
- deploymentCheckPreview: z.array(ACLAction$outboundSchema).optional(),
9534
- deploymentCheckReRunFromProductionBranch: z.array(ACLAction$outboundSchema)
9535
- .optional(),
9536
- deploymentProductionGit: z.array(ACLAction$outboundSchema).optional(),
9537
- deploymentV0: z.array(ACLAction$outboundSchema).optional(),
9538
- deploymentPreview: z.array(ACLAction$outboundSchema).optional(),
9539
- deploymentPrivate: z.array(ACLAction$outboundSchema).optional(),
9540
- deploymentPromote: z.array(ACLAction$outboundSchema).optional(),
9541
- deploymentRollback: z.array(ACLAction$outboundSchema).optional(),
9542
- edgeCacheNamespace: z.array(ACLAction$outboundSchema).optional(),
9543
- environments: z.array(ACLAction$outboundSchema).optional(),
9544
- logs: z.array(ACLAction$outboundSchema).optional(),
9545
- logsPreset: z.array(ACLAction$outboundSchema).optional(),
9546
- passwordProtection: z.array(ACLAction$outboundSchema).optional(),
9547
- optionsAllowlist: z.array(ACLAction$outboundSchema).optional(),
9548
- job: z.array(ACLAction$outboundSchema).optional(),
9549
- observabilityData: z.array(ACLAction$outboundSchema).optional(),
9550
- onDemandBuild: z.array(ACLAction$outboundSchema).optional(),
9551
- onDemandConcurrency: z.array(ACLAction$outboundSchema).optional(),
9552
- project: z.array(ACLAction$outboundSchema).optional(),
9553
- projectFromV0: z.array(ACLAction$outboundSchema).optional(),
9554
- projectAccessGroup: z.array(ACLAction$outboundSchema).optional(),
9555
- projectAnalyticsSampling: z.array(ACLAction$outboundSchema).optional(),
9556
- projectCheck: z.array(ACLAction$outboundSchema).optional(),
9557
- projectCheckRun: z.array(ACLAction$outboundSchema).optional(),
9558
- projectDeploymentHook: z.array(ACLAction$outboundSchema).optional(),
9559
- projectDomain: z.array(ACLAction$outboundSchema).optional(),
9560
- projectDomainMove: z.array(ACLAction$outboundSchema).optional(),
9561
- projectDomainCheckConfig: z.array(ACLAction$outboundSchema).optional(),
9562
- projectEnvVars: z.array(ACLAction$outboundSchema).optional(),
9563
- projectEnvVarsProduction: z.array(ACLAction$outboundSchema).optional(),
9564
- projectEnvVarsUnownedByIntegration: z.array(ACLAction$outboundSchema)
9565
- .optional(),
9566
- projectFlags: z.array(ACLAction$outboundSchema).optional(),
9567
- projectId: z.array(ACLAction$outboundSchema).optional(),
9568
- projectIntegrationConfiguration: z.array(ACLAction$outboundSchema).optional(),
9569
- projectLink: z.array(ACLAction$outboundSchema).optional(),
9570
- projectMember: z.array(ACLAction$outboundSchema).optional(),
9571
- projectMonitoring: z.array(ACLAction$outboundSchema).optional(),
9572
- projectPermissions: z.array(ACLAction$outboundSchema).optional(),
9573
- projectProductionBranch: z.array(ACLAction$outboundSchema).optional(),
9574
- projectTransfer: z.array(ACLAction$outboundSchema).optional(),
9575
- projectTransferOut: z.array(ACLAction$outboundSchema).optional(),
9576
- projectProtectionBypass: z.array(ACLAction$outboundSchema).optional(),
9577
- projectUsage: z.array(ACLAction$outboundSchema).optional(),
9578
- projectAnalyticsUsage: z.array(ACLAction$outboundSchema).optional(),
9579
- projectSupportCase: z.array(ACLAction$outboundSchema).optional(),
9580
- projectSupportCaseComment: z.array(ACLAction$outboundSchema).optional(),
9581
- projectDeploymentExpiration: z.array(ACLAction$outboundSchema).optional(),
9582
- projectRollingRelease: z.array(ACLAction$outboundSchema).optional(),
9583
- projectTier: z.array(ACLAction$outboundSchema).optional(),
9584
- projectOIDCToken: z.array(ACLAction$outboundSchema).optional(),
9585
- seawallConfig: z.array(ACLAction$outboundSchema).optional(),
9586
- skewProtection: z.array(ACLAction$outboundSchema).optional(),
9587
- analytics: z.array(ACLAction$outboundSchema).optional(),
9588
- trustedIps: z.array(ACLAction$outboundSchema).optional(),
9589
- v0Chat: z.array(ACLAction$outboundSchema).optional(),
9590
- webAnalytics: z.array(ACLAction$outboundSchema).optional(),
9591
- sharedEnvVarConnection: z.array(ACLAction$outboundSchema).optional(),
9592
- sonar: z.array(ACLAction$outboundSchema).optional(),
9593
9536
  oauth2Connection: z.array(ACLAction$outboundSchema).optional(),
9594
9537
  user: z.array(ACLAction$outboundSchema).optional(),
9595
9538
  userConnection: z.array(ACLAction$outboundSchema).optional(),
@@ -9740,6 +9683,75 @@ export const CreateProjectPermissions$outboundSchema: z.ZodType<
9740
9683
  vercelRunExec: z.array(ACLAction$outboundSchema).optional(),
9741
9684
  apiKey: z.array(ACLAction$outboundSchema).optional(),
9742
9685
  apiKeyOwnedBySelf: z.array(ACLAction$outboundSchema).optional(),
9686
+ aliasProject: z.array(ACLAction$outboundSchema).optional(),
9687
+ aliasProtectionBypass: z.array(ACLAction$outboundSchema).optional(),
9688
+ buildMachine: z.array(ACLAction$outboundSchema).optional(),
9689
+ productionAliasProtectionBypass: z.array(ACLAction$outboundSchema).optional(),
9690
+ connectConfigurationLink: z.array(ACLAction$outboundSchema).optional(),
9691
+ dataCacheNamespace: z.array(ACLAction$outboundSchema).optional(),
9692
+ deployment: z.array(ACLAction$outboundSchema).optional(),
9693
+ deploymentBuildLogs: z.array(ACLAction$outboundSchema).optional(),
9694
+ deploymentCheck: z.array(ACLAction$outboundSchema).optional(),
9695
+ deploymentCheckPreview: z.array(ACLAction$outboundSchema).optional(),
9696
+ deploymentCheckReRunFromProductionBranch: z.array(ACLAction$outboundSchema)
9697
+ .optional(),
9698
+ deploymentProductionGit: z.array(ACLAction$outboundSchema).optional(),
9699
+ deploymentV0: z.array(ACLAction$outboundSchema).optional(),
9700
+ deploymentPreview: z.array(ACLAction$outboundSchema).optional(),
9701
+ deploymentPrivate: z.array(ACLAction$outboundSchema).optional(),
9702
+ deploymentPromote: z.array(ACLAction$outboundSchema).optional(),
9703
+ deploymentRollback: z.array(ACLAction$outboundSchema).optional(),
9704
+ edgeCacheNamespace: z.array(ACLAction$outboundSchema).optional(),
9705
+ environments: z.array(ACLAction$outboundSchema).optional(),
9706
+ logs: z.array(ACLAction$outboundSchema).optional(),
9707
+ logsPreset: z.array(ACLAction$outboundSchema).optional(),
9708
+ passwordProtection: z.array(ACLAction$outboundSchema).optional(),
9709
+ optionsAllowlist: z.array(ACLAction$outboundSchema).optional(),
9710
+ job: z.array(ACLAction$outboundSchema).optional(),
9711
+ observabilityData: z.array(ACLAction$outboundSchema).optional(),
9712
+ onDemandBuild: z.array(ACLAction$outboundSchema).optional(),
9713
+ onDemandConcurrency: z.array(ACLAction$outboundSchema).optional(),
9714
+ project: z.array(ACLAction$outboundSchema).optional(),
9715
+ projectFromV0: z.array(ACLAction$outboundSchema).optional(),
9716
+ projectAccessGroup: z.array(ACLAction$outboundSchema).optional(),
9717
+ projectAnalyticsSampling: z.array(ACLAction$outboundSchema).optional(),
9718
+ projectCheck: z.array(ACLAction$outboundSchema).optional(),
9719
+ projectCheckRun: z.array(ACLAction$outboundSchema).optional(),
9720
+ projectDeploymentHook: z.array(ACLAction$outboundSchema).optional(),
9721
+ projectDomain: z.array(ACLAction$outboundSchema).optional(),
9722
+ projectDomainMove: z.array(ACLAction$outboundSchema).optional(),
9723
+ projectDomainCheckConfig: z.array(ACLAction$outboundSchema).optional(),
9724
+ projectEnvVars: z.array(ACLAction$outboundSchema).optional(),
9725
+ projectEnvVarsProduction: z.array(ACLAction$outboundSchema).optional(),
9726
+ projectEnvVarsUnownedByIntegration: z.array(ACLAction$outboundSchema)
9727
+ .optional(),
9728
+ projectFlags: z.array(ACLAction$outboundSchema).optional(),
9729
+ projectId: z.array(ACLAction$outboundSchema).optional(),
9730
+ projectIntegrationConfiguration: z.array(ACLAction$outboundSchema).optional(),
9731
+ projectLink: z.array(ACLAction$outboundSchema).optional(),
9732
+ projectMember: z.array(ACLAction$outboundSchema).optional(),
9733
+ projectMonitoring: z.array(ACLAction$outboundSchema).optional(),
9734
+ projectPermissions: z.array(ACLAction$outboundSchema).optional(),
9735
+ projectProductionBranch: z.array(ACLAction$outboundSchema).optional(),
9736
+ projectTransfer: z.array(ACLAction$outboundSchema).optional(),
9737
+ projectTransferOut: z.array(ACLAction$outboundSchema).optional(),
9738
+ projectProtectionBypass: z.array(ACLAction$outboundSchema).optional(),
9739
+ projectUsage: z.array(ACLAction$outboundSchema).optional(),
9740
+ projectAnalyticsUsage: z.array(ACLAction$outboundSchema).optional(),
9741
+ projectSupportCase: z.array(ACLAction$outboundSchema).optional(),
9742
+ projectSupportCaseComment: z.array(ACLAction$outboundSchema).optional(),
9743
+ projectDeploymentExpiration: z.array(ACLAction$outboundSchema).optional(),
9744
+ projectRollingRelease: z.array(ACLAction$outboundSchema).optional(),
9745
+ projectTier: z.array(ACLAction$outboundSchema).optional(),
9746
+ projectOIDCToken: z.array(ACLAction$outboundSchema).optional(),
9747
+ seawallConfig: z.array(ACLAction$outboundSchema).optional(),
9748
+ skewProtection: z.array(ACLAction$outboundSchema).optional(),
9749
+ analytics: z.array(ACLAction$outboundSchema).optional(),
9750
+ trustedIps: z.array(ACLAction$outboundSchema).optional(),
9751
+ v0Chat: z.array(ACLAction$outboundSchema).optional(),
9752
+ webAnalytics: z.array(ACLAction$outboundSchema).optional(),
9753
+ sharedEnvVarConnection: z.array(ACLAction$outboundSchema).optional(),
9754
+ sonar: z.array(ACLAction$outboundSchema).optional(),
9743
9755
  }).transform((v) => {
9744
9756
  return remap$(v, {
9745
9757
  monitoring: "Monitoring",