@vercel/sdk 1.8.2 → 1.8.3

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 (36) hide show
  1. package/bin/mcp-server.js +178 -149
  2. package/bin/mcp-server.js.map +10 -10
  3. package/esm/__tests__/projects.test.js +13 -15
  4. package/esm/__tests__/projects.test.js.map +1 -1
  5. package/esm/lib/config.d.ts +3 -3
  6. package/esm/lib/config.js +3 -3
  7. package/esm/lib/security.d.ts +2 -2
  8. package/esm/lib/security.d.ts.map +1 -1
  9. package/esm/mcp-server/mcp-server.js +1 -1
  10. package/esm/mcp-server/server.js +1 -1
  11. package/esm/models/filterprojectenvsop.d.ts +9 -9
  12. package/esm/models/filterprojectenvsop.js +3 -3
  13. package/esm/models/filterprojectenvsop.js.map +1 -1
  14. package/esm/models/getconfigurationop.d.ts +61 -0
  15. package/esm/models/getconfigurationop.d.ts.map +1 -1
  16. package/esm/models/getconfigurationop.js +53 -0
  17. package/esm/models/getconfigurationop.js.map +1 -1
  18. package/esm/models/getprojectenvop.d.ts +9 -9
  19. package/esm/models/getprojectenvop.js +3 -3
  20. package/esm/models/getprojectenvop.js.map +1 -1
  21. package/esm/models/getprojectsop.d.ts +128 -128
  22. package/esm/models/getprojectsop.d.ts.map +1 -1
  23. package/esm/models/getprojectsop.js +132 -132
  24. package/esm/models/getprojectsop.js.map +1 -1
  25. package/jsr.json +1 -1
  26. package/package.json +1 -1
  27. package/src/__tests__/projects.test.ts +13 -15
  28. package/src/lib/config.ts +3 -3
  29. package/src/lib/security.ts +2 -2
  30. package/src/mcp-server/mcp-server.ts +1 -1
  31. package/src/mcp-server/server.ts +1 -1
  32. package/src/models/filterprojectenvsop.ts +3 -3
  33. package/src/models/getconfigurationop.ts +105 -0
  34. package/src/models/getprojectenvop.ts +3 -3
  35. package/src/models/getprojectsop.ts +260 -260
  36. package/vercel-spec.json +242 -215
@@ -1303,6 +1303,70 @@ export type GetProjectsTargets = {
1303
1303
  };
1304
1304
 
1305
1305
  export type GetProjectsPermissions = {
1306
+ aliasProject?: Array<ACLAction> | undefined;
1307
+ aliasProtectionBypass?: Array<ACLAction> | undefined;
1308
+ buildMachine?: Array<ACLAction> | undefined;
1309
+ productionAliasProtectionBypass?: Array<ACLAction> | undefined;
1310
+ connectConfigurationLink?: Array<ACLAction> | undefined;
1311
+ dataCacheNamespace?: Array<ACLAction> | undefined;
1312
+ deployment?: Array<ACLAction> | undefined;
1313
+ deploymentCheck?: Array<ACLAction> | undefined;
1314
+ deploymentCheckPreview?: Array<ACLAction> | undefined;
1315
+ deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
1316
+ deploymentProductionGit?: Array<ACLAction> | undefined;
1317
+ deploymentV0?: Array<ACLAction> | undefined;
1318
+ deploymentPreview?: Array<ACLAction> | undefined;
1319
+ deploymentPrivate?: Array<ACLAction> | undefined;
1320
+ deploymentPromote?: Array<ACLAction> | undefined;
1321
+ deploymentRollback?: Array<ACLAction> | undefined;
1322
+ edgeCacheNamespace?: Array<ACLAction> | undefined;
1323
+ environments?: Array<ACLAction> | undefined;
1324
+ logs?: Array<ACLAction> | undefined;
1325
+ logsPreset?: Array<ACLAction> | undefined;
1326
+ passwordProtection?: Array<ACLAction> | undefined;
1327
+ optionsAllowlist?: Array<ACLAction> | undefined;
1328
+ job?: Array<ACLAction> | undefined;
1329
+ observabilityData?: Array<ACLAction> | undefined;
1330
+ onDemandBuild?: Array<ACLAction> | undefined;
1331
+ onDemandConcurrency?: Array<ACLAction> | undefined;
1332
+ project?: Array<ACLAction> | undefined;
1333
+ projectFromV0?: Array<ACLAction> | undefined;
1334
+ projectAccessGroup?: Array<ACLAction> | undefined;
1335
+ projectAnalyticsSampling?: Array<ACLAction> | undefined;
1336
+ projectCheck?: Array<ACLAction> | undefined;
1337
+ projectCheckRun?: Array<ACLAction> | undefined;
1338
+ projectDeploymentHook?: Array<ACLAction> | undefined;
1339
+ projectDomain?: Array<ACLAction> | undefined;
1340
+ projectDomainMove?: Array<ACLAction> | undefined;
1341
+ projectDomainCheckConfig?: Array<ACLAction> | undefined;
1342
+ projectEnvVars?: Array<ACLAction> | undefined;
1343
+ projectEnvVarsProduction?: Array<ACLAction> | undefined;
1344
+ projectEnvVarsUnownedByIntegration?: Array<ACLAction> | undefined;
1345
+ projectFlags?: Array<ACLAction> | undefined;
1346
+ projectId?: Array<ACLAction> | undefined;
1347
+ projectIntegrationConfiguration?: Array<ACLAction> | undefined;
1348
+ projectLink?: Array<ACLAction> | undefined;
1349
+ projectMember?: Array<ACLAction> | undefined;
1350
+ projectMonitoring?: Array<ACLAction> | undefined;
1351
+ projectPermissions?: Array<ACLAction> | undefined;
1352
+ projectProductionBranch?: Array<ACLAction> | undefined;
1353
+ projectTransfer?: Array<ACLAction> | undefined;
1354
+ projectTransferOut?: Array<ACLAction> | undefined;
1355
+ projectProtectionBypass?: Array<ACLAction> | undefined;
1356
+ projectUsage?: Array<ACLAction> | undefined;
1357
+ projectAnalyticsUsage?: Array<ACLAction> | undefined;
1358
+ projectSupportCase?: Array<ACLAction> | undefined;
1359
+ projectSupportCaseComment?: Array<ACLAction> | undefined;
1360
+ projectDeploymentExpiration?: Array<ACLAction> | undefined;
1361
+ projectRollingRelease?: Array<ACLAction> | undefined;
1362
+ projectTier?: Array<ACLAction> | undefined;
1363
+ seawallConfig?: Array<ACLAction> | undefined;
1364
+ skewProtection?: Array<ACLAction> | undefined;
1365
+ analytics?: Array<ACLAction> | undefined;
1366
+ trustedIps?: Array<ACLAction> | undefined;
1367
+ webAnalytics?: Array<ACLAction> | undefined;
1368
+ sharedEnvVarConnection?: Array<ACLAction> | undefined;
1369
+ sonar?: Array<ACLAction> | undefined;
1306
1370
  user?: Array<ACLAction> | undefined;
1307
1371
  userConnection?: Array<ACLAction> | undefined;
1308
1372
  userSudo?: Array<ACLAction> | undefined;
@@ -1442,70 +1506,6 @@ export type GetProjectsPermissions = {
1442
1506
  vercelRunExec?: Array<ACLAction> | undefined;
1443
1507
  apiKey?: Array<ACLAction> | undefined;
1444
1508
  apiKeyOwnedBySelf?: Array<ACLAction> | undefined;
1445
- aliasProject?: Array<ACLAction> | undefined;
1446
- aliasProtectionBypass?: Array<ACLAction> | undefined;
1447
- buildMachine?: Array<ACLAction> | undefined;
1448
- productionAliasProtectionBypass?: Array<ACLAction> | undefined;
1449
- connectConfigurationLink?: Array<ACLAction> | undefined;
1450
- dataCacheNamespace?: Array<ACLAction> | undefined;
1451
- deployment?: Array<ACLAction> | undefined;
1452
- deploymentCheck?: Array<ACLAction> | undefined;
1453
- deploymentCheckPreview?: Array<ACLAction> | undefined;
1454
- deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
1455
- deploymentProductionGit?: Array<ACLAction> | undefined;
1456
- deploymentV0?: Array<ACLAction> | undefined;
1457
- deploymentPreview?: Array<ACLAction> | undefined;
1458
- deploymentPrivate?: Array<ACLAction> | undefined;
1459
- deploymentPromote?: Array<ACLAction> | undefined;
1460
- deploymentRollback?: Array<ACLAction> | undefined;
1461
- edgeCacheNamespace?: Array<ACLAction> | undefined;
1462
- environments?: Array<ACLAction> | undefined;
1463
- logs?: Array<ACLAction> | undefined;
1464
- logsPreset?: Array<ACLAction> | undefined;
1465
- passwordProtection?: Array<ACLAction> | undefined;
1466
- optionsAllowlist?: Array<ACLAction> | undefined;
1467
- job?: Array<ACLAction> | undefined;
1468
- observabilityData?: Array<ACLAction> | undefined;
1469
- onDemandBuild?: Array<ACLAction> | undefined;
1470
- onDemandConcurrency?: Array<ACLAction> | undefined;
1471
- project?: Array<ACLAction> | undefined;
1472
- projectFromV0?: Array<ACLAction> | undefined;
1473
- projectAccessGroup?: Array<ACLAction> | undefined;
1474
- projectAnalyticsSampling?: Array<ACLAction> | undefined;
1475
- projectCheck?: Array<ACLAction> | undefined;
1476
- projectCheckRun?: Array<ACLAction> | undefined;
1477
- projectDeploymentHook?: Array<ACLAction> | undefined;
1478
- projectDomain?: Array<ACLAction> | undefined;
1479
- projectDomainMove?: Array<ACLAction> | undefined;
1480
- projectDomainCheckConfig?: Array<ACLAction> | undefined;
1481
- projectEnvVars?: Array<ACLAction> | undefined;
1482
- projectEnvVarsProduction?: Array<ACLAction> | undefined;
1483
- projectEnvVarsUnownedByIntegration?: Array<ACLAction> | undefined;
1484
- projectFlags?: Array<ACLAction> | undefined;
1485
- projectId?: Array<ACLAction> | undefined;
1486
- projectIntegrationConfiguration?: Array<ACLAction> | undefined;
1487
- projectLink?: Array<ACLAction> | undefined;
1488
- projectMember?: Array<ACLAction> | undefined;
1489
- projectMonitoring?: Array<ACLAction> | undefined;
1490
- projectPermissions?: Array<ACLAction> | undefined;
1491
- projectProductionBranch?: Array<ACLAction> | undefined;
1492
- projectTransfer?: Array<ACLAction> | undefined;
1493
- projectTransferOut?: Array<ACLAction> | undefined;
1494
- projectProtectionBypass?: Array<ACLAction> | undefined;
1495
- projectUsage?: Array<ACLAction> | undefined;
1496
- projectAnalyticsUsage?: Array<ACLAction> | undefined;
1497
- projectSupportCase?: Array<ACLAction> | undefined;
1498
- projectSupportCaseComment?: Array<ACLAction> | undefined;
1499
- projectDeploymentExpiration?: Array<ACLAction> | undefined;
1500
- projectRollingRelease?: Array<ACLAction> | undefined;
1501
- projectTier?: Array<ACLAction> | undefined;
1502
- seawallConfig?: Array<ACLAction> | undefined;
1503
- skewProtection?: Array<ACLAction> | undefined;
1504
- analytics?: Array<ACLAction> | undefined;
1505
- trustedIps?: Array<ACLAction> | undefined;
1506
- webAnalytics?: Array<ACLAction> | undefined;
1507
- sharedEnvVarConnection?: Array<ACLAction> | undefined;
1508
- sonar?: Array<ACLAction> | undefined;
1509
1509
  };
1510
1510
 
1511
1511
  export type GetProjectsLastRollbackTarget = {};
@@ -7997,6 +7997,72 @@ export const GetProjectsPermissions$inboundSchema: z.ZodType<
7997
7997
  z.ZodTypeDef,
7998
7998
  unknown
7999
7999
  > = z.object({
8000
+ aliasProject: z.array(ACLAction$inboundSchema).optional(),
8001
+ aliasProtectionBypass: z.array(ACLAction$inboundSchema).optional(),
8002
+ buildMachine: z.array(ACLAction$inboundSchema).optional(),
8003
+ productionAliasProtectionBypass: z.array(ACLAction$inboundSchema).optional(),
8004
+ connectConfigurationLink: z.array(ACLAction$inboundSchema).optional(),
8005
+ dataCacheNamespace: z.array(ACLAction$inboundSchema).optional(),
8006
+ deployment: z.array(ACLAction$inboundSchema).optional(),
8007
+ deploymentCheck: z.array(ACLAction$inboundSchema).optional(),
8008
+ deploymentCheckPreview: z.array(ACLAction$inboundSchema).optional(),
8009
+ deploymentCheckReRunFromProductionBranch: z.array(ACLAction$inboundSchema)
8010
+ .optional(),
8011
+ deploymentProductionGit: z.array(ACLAction$inboundSchema).optional(),
8012
+ deploymentV0: z.array(ACLAction$inboundSchema).optional(),
8013
+ deploymentPreview: z.array(ACLAction$inboundSchema).optional(),
8014
+ deploymentPrivate: z.array(ACLAction$inboundSchema).optional(),
8015
+ deploymentPromote: z.array(ACLAction$inboundSchema).optional(),
8016
+ deploymentRollback: z.array(ACLAction$inboundSchema).optional(),
8017
+ edgeCacheNamespace: z.array(ACLAction$inboundSchema).optional(),
8018
+ environments: z.array(ACLAction$inboundSchema).optional(),
8019
+ logs: z.array(ACLAction$inboundSchema).optional(),
8020
+ logsPreset: z.array(ACLAction$inboundSchema).optional(),
8021
+ passwordProtection: z.array(ACLAction$inboundSchema).optional(),
8022
+ optionsAllowlist: z.array(ACLAction$inboundSchema).optional(),
8023
+ job: z.array(ACLAction$inboundSchema).optional(),
8024
+ observabilityData: z.array(ACLAction$inboundSchema).optional(),
8025
+ onDemandBuild: z.array(ACLAction$inboundSchema).optional(),
8026
+ onDemandConcurrency: z.array(ACLAction$inboundSchema).optional(),
8027
+ project: z.array(ACLAction$inboundSchema).optional(),
8028
+ projectFromV0: z.array(ACLAction$inboundSchema).optional(),
8029
+ projectAccessGroup: z.array(ACLAction$inboundSchema).optional(),
8030
+ projectAnalyticsSampling: z.array(ACLAction$inboundSchema).optional(),
8031
+ projectCheck: z.array(ACLAction$inboundSchema).optional(),
8032
+ projectCheckRun: z.array(ACLAction$inboundSchema).optional(),
8033
+ projectDeploymentHook: z.array(ACLAction$inboundSchema).optional(),
8034
+ projectDomain: z.array(ACLAction$inboundSchema).optional(),
8035
+ projectDomainMove: z.array(ACLAction$inboundSchema).optional(),
8036
+ projectDomainCheckConfig: z.array(ACLAction$inboundSchema).optional(),
8037
+ projectEnvVars: z.array(ACLAction$inboundSchema).optional(),
8038
+ projectEnvVarsProduction: z.array(ACLAction$inboundSchema).optional(),
8039
+ projectEnvVarsUnownedByIntegration: z.array(ACLAction$inboundSchema)
8040
+ .optional(),
8041
+ projectFlags: z.array(ACLAction$inboundSchema).optional(),
8042
+ projectId: z.array(ACLAction$inboundSchema).optional(),
8043
+ projectIntegrationConfiguration: z.array(ACLAction$inboundSchema).optional(),
8044
+ projectLink: z.array(ACLAction$inboundSchema).optional(),
8045
+ projectMember: z.array(ACLAction$inboundSchema).optional(),
8046
+ projectMonitoring: z.array(ACLAction$inboundSchema).optional(),
8047
+ projectPermissions: z.array(ACLAction$inboundSchema).optional(),
8048
+ projectProductionBranch: z.array(ACLAction$inboundSchema).optional(),
8049
+ projectTransfer: z.array(ACLAction$inboundSchema).optional(),
8050
+ projectTransferOut: z.array(ACLAction$inboundSchema).optional(),
8051
+ projectProtectionBypass: z.array(ACLAction$inboundSchema).optional(),
8052
+ projectUsage: z.array(ACLAction$inboundSchema).optional(),
8053
+ projectAnalyticsUsage: z.array(ACLAction$inboundSchema).optional(),
8054
+ projectSupportCase: z.array(ACLAction$inboundSchema).optional(),
8055
+ projectSupportCaseComment: z.array(ACLAction$inboundSchema).optional(),
8056
+ projectDeploymentExpiration: z.array(ACLAction$inboundSchema).optional(),
8057
+ projectRollingRelease: z.array(ACLAction$inboundSchema).optional(),
8058
+ projectTier: z.array(ACLAction$inboundSchema).optional(),
8059
+ seawallConfig: z.array(ACLAction$inboundSchema).optional(),
8060
+ skewProtection: z.array(ACLAction$inboundSchema).optional(),
8061
+ analytics: z.array(ACLAction$inboundSchema).optional(),
8062
+ trustedIps: z.array(ACLAction$inboundSchema).optional(),
8063
+ webAnalytics: z.array(ACLAction$inboundSchema).optional(),
8064
+ sharedEnvVarConnection: z.array(ACLAction$inboundSchema).optional(),
8065
+ sonar: z.array(ACLAction$inboundSchema).optional(),
8000
8066
  user: z.array(ACLAction$inboundSchema).optional(),
8001
8067
  userConnection: z.array(ACLAction$inboundSchema).optional(),
8002
8068
  userSudo: z.array(ACLAction$inboundSchema).optional(),
@@ -8139,72 +8205,6 @@ export const GetProjectsPermissions$inboundSchema: z.ZodType<
8139
8205
  vercelRunExec: z.array(ACLAction$inboundSchema).optional(),
8140
8206
  apiKey: z.array(ACLAction$inboundSchema).optional(),
8141
8207
  apiKeyOwnedBySelf: z.array(ACLAction$inboundSchema).optional(),
8142
- aliasProject: z.array(ACLAction$inboundSchema).optional(),
8143
- aliasProtectionBypass: z.array(ACLAction$inboundSchema).optional(),
8144
- buildMachine: z.array(ACLAction$inboundSchema).optional(),
8145
- productionAliasProtectionBypass: z.array(ACLAction$inboundSchema).optional(),
8146
- connectConfigurationLink: z.array(ACLAction$inboundSchema).optional(),
8147
- dataCacheNamespace: z.array(ACLAction$inboundSchema).optional(),
8148
- deployment: z.array(ACLAction$inboundSchema).optional(),
8149
- deploymentCheck: z.array(ACLAction$inboundSchema).optional(),
8150
- deploymentCheckPreview: z.array(ACLAction$inboundSchema).optional(),
8151
- deploymentCheckReRunFromProductionBranch: z.array(ACLAction$inboundSchema)
8152
- .optional(),
8153
- deploymentProductionGit: z.array(ACLAction$inboundSchema).optional(),
8154
- deploymentV0: z.array(ACLAction$inboundSchema).optional(),
8155
- deploymentPreview: z.array(ACLAction$inboundSchema).optional(),
8156
- deploymentPrivate: z.array(ACLAction$inboundSchema).optional(),
8157
- deploymentPromote: z.array(ACLAction$inboundSchema).optional(),
8158
- deploymentRollback: z.array(ACLAction$inboundSchema).optional(),
8159
- edgeCacheNamespace: z.array(ACLAction$inboundSchema).optional(),
8160
- environments: z.array(ACLAction$inboundSchema).optional(),
8161
- logs: z.array(ACLAction$inboundSchema).optional(),
8162
- logsPreset: z.array(ACLAction$inboundSchema).optional(),
8163
- passwordProtection: z.array(ACLAction$inboundSchema).optional(),
8164
- optionsAllowlist: z.array(ACLAction$inboundSchema).optional(),
8165
- job: z.array(ACLAction$inboundSchema).optional(),
8166
- observabilityData: z.array(ACLAction$inboundSchema).optional(),
8167
- onDemandBuild: z.array(ACLAction$inboundSchema).optional(),
8168
- onDemandConcurrency: z.array(ACLAction$inboundSchema).optional(),
8169
- project: z.array(ACLAction$inboundSchema).optional(),
8170
- projectFromV0: z.array(ACLAction$inboundSchema).optional(),
8171
- projectAccessGroup: z.array(ACLAction$inboundSchema).optional(),
8172
- projectAnalyticsSampling: z.array(ACLAction$inboundSchema).optional(),
8173
- projectCheck: z.array(ACLAction$inboundSchema).optional(),
8174
- projectCheckRun: z.array(ACLAction$inboundSchema).optional(),
8175
- projectDeploymentHook: z.array(ACLAction$inboundSchema).optional(),
8176
- projectDomain: z.array(ACLAction$inboundSchema).optional(),
8177
- projectDomainMove: z.array(ACLAction$inboundSchema).optional(),
8178
- projectDomainCheckConfig: z.array(ACLAction$inboundSchema).optional(),
8179
- projectEnvVars: z.array(ACLAction$inboundSchema).optional(),
8180
- projectEnvVarsProduction: z.array(ACLAction$inboundSchema).optional(),
8181
- projectEnvVarsUnownedByIntegration: z.array(ACLAction$inboundSchema)
8182
- .optional(),
8183
- projectFlags: z.array(ACLAction$inboundSchema).optional(),
8184
- projectId: z.array(ACLAction$inboundSchema).optional(),
8185
- projectIntegrationConfiguration: z.array(ACLAction$inboundSchema).optional(),
8186
- projectLink: z.array(ACLAction$inboundSchema).optional(),
8187
- projectMember: z.array(ACLAction$inboundSchema).optional(),
8188
- projectMonitoring: z.array(ACLAction$inboundSchema).optional(),
8189
- projectPermissions: z.array(ACLAction$inboundSchema).optional(),
8190
- projectProductionBranch: z.array(ACLAction$inboundSchema).optional(),
8191
- projectTransfer: z.array(ACLAction$inboundSchema).optional(),
8192
- projectTransferOut: z.array(ACLAction$inboundSchema).optional(),
8193
- projectProtectionBypass: z.array(ACLAction$inboundSchema).optional(),
8194
- projectUsage: z.array(ACLAction$inboundSchema).optional(),
8195
- projectAnalyticsUsage: z.array(ACLAction$inboundSchema).optional(),
8196
- projectSupportCase: z.array(ACLAction$inboundSchema).optional(),
8197
- projectSupportCaseComment: z.array(ACLAction$inboundSchema).optional(),
8198
- projectDeploymentExpiration: z.array(ACLAction$inboundSchema).optional(),
8199
- projectRollingRelease: z.array(ACLAction$inboundSchema).optional(),
8200
- projectTier: z.array(ACLAction$inboundSchema).optional(),
8201
- seawallConfig: z.array(ACLAction$inboundSchema).optional(),
8202
- skewProtection: z.array(ACLAction$inboundSchema).optional(),
8203
- analytics: z.array(ACLAction$inboundSchema).optional(),
8204
- trustedIps: z.array(ACLAction$inboundSchema).optional(),
8205
- webAnalytics: z.array(ACLAction$inboundSchema).optional(),
8206
- sharedEnvVarConnection: z.array(ACLAction$inboundSchema).optional(),
8207
- sonar: z.array(ACLAction$inboundSchema).optional(),
8208
8208
  }).transform((v) => {
8209
8209
  return remap$(v, {
8210
8210
  "Monitoring": "monitoring",
@@ -8215,6 +8215,70 @@ export const GetProjectsPermissions$inboundSchema: z.ZodType<
8215
8215
 
8216
8216
  /** @internal */
8217
8217
  export type GetProjectsPermissions$Outbound = {
8218
+ aliasProject?: Array<string> | undefined;
8219
+ aliasProtectionBypass?: Array<string> | undefined;
8220
+ buildMachine?: Array<string> | undefined;
8221
+ productionAliasProtectionBypass?: Array<string> | undefined;
8222
+ connectConfigurationLink?: Array<string> | undefined;
8223
+ dataCacheNamespace?: Array<string> | undefined;
8224
+ deployment?: Array<string> | undefined;
8225
+ deploymentCheck?: Array<string> | undefined;
8226
+ deploymentCheckPreview?: Array<string> | undefined;
8227
+ deploymentCheckReRunFromProductionBranch?: Array<string> | undefined;
8228
+ deploymentProductionGit?: Array<string> | undefined;
8229
+ deploymentV0?: Array<string> | undefined;
8230
+ deploymentPreview?: Array<string> | undefined;
8231
+ deploymentPrivate?: Array<string> | undefined;
8232
+ deploymentPromote?: Array<string> | undefined;
8233
+ deploymentRollback?: Array<string> | undefined;
8234
+ edgeCacheNamespace?: Array<string> | undefined;
8235
+ environments?: Array<string> | undefined;
8236
+ logs?: Array<string> | undefined;
8237
+ logsPreset?: Array<string> | undefined;
8238
+ passwordProtection?: Array<string> | undefined;
8239
+ optionsAllowlist?: Array<string> | undefined;
8240
+ job?: Array<string> | undefined;
8241
+ observabilityData?: Array<string> | undefined;
8242
+ onDemandBuild?: Array<string> | undefined;
8243
+ onDemandConcurrency?: Array<string> | undefined;
8244
+ project?: Array<string> | undefined;
8245
+ projectFromV0?: Array<string> | undefined;
8246
+ projectAccessGroup?: Array<string> | undefined;
8247
+ projectAnalyticsSampling?: Array<string> | undefined;
8248
+ projectCheck?: Array<string> | undefined;
8249
+ projectCheckRun?: Array<string> | undefined;
8250
+ projectDeploymentHook?: Array<string> | undefined;
8251
+ projectDomain?: Array<string> | undefined;
8252
+ projectDomainMove?: Array<string> | undefined;
8253
+ projectDomainCheckConfig?: Array<string> | undefined;
8254
+ projectEnvVars?: Array<string> | undefined;
8255
+ projectEnvVarsProduction?: Array<string> | undefined;
8256
+ projectEnvVarsUnownedByIntegration?: Array<string> | undefined;
8257
+ projectFlags?: Array<string> | undefined;
8258
+ projectId?: Array<string> | undefined;
8259
+ projectIntegrationConfiguration?: Array<string> | undefined;
8260
+ projectLink?: Array<string> | undefined;
8261
+ projectMember?: Array<string> | undefined;
8262
+ projectMonitoring?: Array<string> | undefined;
8263
+ projectPermissions?: Array<string> | undefined;
8264
+ projectProductionBranch?: Array<string> | undefined;
8265
+ projectTransfer?: Array<string> | undefined;
8266
+ projectTransferOut?: Array<string> | undefined;
8267
+ projectProtectionBypass?: Array<string> | undefined;
8268
+ projectUsage?: Array<string> | undefined;
8269
+ projectAnalyticsUsage?: Array<string> | undefined;
8270
+ projectSupportCase?: Array<string> | undefined;
8271
+ projectSupportCaseComment?: Array<string> | undefined;
8272
+ projectDeploymentExpiration?: Array<string> | undefined;
8273
+ projectRollingRelease?: Array<string> | undefined;
8274
+ projectTier?: Array<string> | undefined;
8275
+ seawallConfig?: Array<string> | undefined;
8276
+ skewProtection?: Array<string> | undefined;
8277
+ analytics?: Array<string> | undefined;
8278
+ trustedIps?: Array<string> | undefined;
8279
+ webAnalytics?: Array<string> | undefined;
8280
+ sharedEnvVarConnection?: Array<string> | undefined;
8281
+ sonar?: Array<string> | undefined;
8218
8282
  user?: Array<string> | undefined;
8219
8283
  userConnection?: Array<string> | undefined;
8220
8284
  userSudo?: Array<string> | undefined;
@@ -8354,70 +8418,6 @@ export type GetProjectsPermissions$Outbound = {
8354
8418
  vercelRunExec?: Array<string> | undefined;
8355
8419
  apiKey?: Array<string> | undefined;
8356
8420
  apiKeyOwnedBySelf?: Array<string> | undefined;
8357
- aliasProject?: Array<string> | undefined;
8358
- aliasProtectionBypass?: Array<string> | undefined;
8359
- buildMachine?: Array<string> | undefined;
8360
- productionAliasProtectionBypass?: Array<string> | undefined;
8361
- connectConfigurationLink?: Array<string> | undefined;
8362
- dataCacheNamespace?: Array<string> | undefined;
8363
- deployment?: Array<string> | undefined;
8364
- deploymentCheck?: Array<string> | undefined;
8365
- deploymentCheckPreview?: Array<string> | undefined;
8366
- deploymentCheckReRunFromProductionBranch?: Array<string> | undefined;
8367
- deploymentProductionGit?: Array<string> | undefined;
8368
- deploymentV0?: Array<string> | undefined;
8369
- deploymentPreview?: Array<string> | undefined;
8370
- deploymentPrivate?: Array<string> | undefined;
8371
- deploymentPromote?: Array<string> | undefined;
8372
- deploymentRollback?: Array<string> | undefined;
8373
- edgeCacheNamespace?: Array<string> | undefined;
8374
- environments?: Array<string> | undefined;
8375
- logs?: Array<string> | undefined;
8376
- logsPreset?: Array<string> | undefined;
8377
- passwordProtection?: Array<string> | undefined;
8378
- optionsAllowlist?: Array<string> | undefined;
8379
- job?: Array<string> | undefined;
8380
- observabilityData?: Array<string> | undefined;
8381
- onDemandBuild?: Array<string> | undefined;
8382
- onDemandConcurrency?: Array<string> | undefined;
8383
- project?: Array<string> | undefined;
8384
- projectFromV0?: Array<string> | undefined;
8385
- projectAccessGroup?: Array<string> | undefined;
8386
- projectAnalyticsSampling?: Array<string> | undefined;
8387
- projectCheck?: Array<string> | undefined;
8388
- projectCheckRun?: Array<string> | undefined;
8389
- projectDeploymentHook?: Array<string> | undefined;
8390
- projectDomain?: Array<string> | undefined;
8391
- projectDomainMove?: Array<string> | undefined;
8392
- projectDomainCheckConfig?: Array<string> | undefined;
8393
- projectEnvVars?: Array<string> | undefined;
8394
- projectEnvVarsProduction?: Array<string> | undefined;
8395
- projectEnvVarsUnownedByIntegration?: Array<string> | undefined;
8396
- projectFlags?: Array<string> | undefined;
8397
- projectId?: Array<string> | undefined;
8398
- projectIntegrationConfiguration?: Array<string> | undefined;
8399
- projectLink?: Array<string> | undefined;
8400
- projectMember?: Array<string> | undefined;
8401
- projectMonitoring?: Array<string> | undefined;
8402
- projectPermissions?: Array<string> | undefined;
8403
- projectProductionBranch?: Array<string> | undefined;
8404
- projectTransfer?: Array<string> | undefined;
8405
- projectTransferOut?: Array<string> | undefined;
8406
- projectProtectionBypass?: Array<string> | undefined;
8407
- projectUsage?: Array<string> | undefined;
8408
- projectAnalyticsUsage?: Array<string> | undefined;
8409
- projectSupportCase?: Array<string> | undefined;
8410
- projectSupportCaseComment?: Array<string> | undefined;
8411
- projectDeploymentExpiration?: Array<string> | undefined;
8412
- projectRollingRelease?: Array<string> | undefined;
8413
- projectTier?: Array<string> | undefined;
8414
- seawallConfig?: Array<string> | undefined;
8415
- skewProtection?: Array<string> | undefined;
8416
- analytics?: Array<string> | undefined;
8417
- trustedIps?: Array<string> | undefined;
8418
- webAnalytics?: Array<string> | undefined;
8419
- sharedEnvVarConnection?: Array<string> | undefined;
8420
- sonar?: Array<string> | undefined;
8421
8421
  };
8422
8422
 
8423
8423
  /** @internal */
@@ -8426,6 +8426,72 @@ export const GetProjectsPermissions$outboundSchema: z.ZodType<
8426
8426
  z.ZodTypeDef,
8427
8427
  GetProjectsPermissions
8428
8428
  > = z.object({
8429
+ aliasProject: z.array(ACLAction$outboundSchema).optional(),
8430
+ aliasProtectionBypass: z.array(ACLAction$outboundSchema).optional(),
8431
+ buildMachine: z.array(ACLAction$outboundSchema).optional(),
8432
+ productionAliasProtectionBypass: z.array(ACLAction$outboundSchema).optional(),
8433
+ connectConfigurationLink: z.array(ACLAction$outboundSchema).optional(),
8434
+ dataCacheNamespace: z.array(ACLAction$outboundSchema).optional(),
8435
+ deployment: z.array(ACLAction$outboundSchema).optional(),
8436
+ deploymentCheck: z.array(ACLAction$outboundSchema).optional(),
8437
+ deploymentCheckPreview: z.array(ACLAction$outboundSchema).optional(),
8438
+ deploymentCheckReRunFromProductionBranch: z.array(ACLAction$outboundSchema)
8439
+ .optional(),
8440
+ deploymentProductionGit: z.array(ACLAction$outboundSchema).optional(),
8441
+ deploymentV0: z.array(ACLAction$outboundSchema).optional(),
8442
+ deploymentPreview: z.array(ACLAction$outboundSchema).optional(),
8443
+ deploymentPrivate: z.array(ACLAction$outboundSchema).optional(),
8444
+ deploymentPromote: z.array(ACLAction$outboundSchema).optional(),
8445
+ deploymentRollback: z.array(ACLAction$outboundSchema).optional(),
8446
+ edgeCacheNamespace: z.array(ACLAction$outboundSchema).optional(),
8447
+ environments: z.array(ACLAction$outboundSchema).optional(),
8448
+ logs: z.array(ACLAction$outboundSchema).optional(),
8449
+ logsPreset: z.array(ACLAction$outboundSchema).optional(),
8450
+ passwordProtection: z.array(ACLAction$outboundSchema).optional(),
8451
+ optionsAllowlist: z.array(ACLAction$outboundSchema).optional(),
8452
+ job: z.array(ACLAction$outboundSchema).optional(),
8453
+ observabilityData: z.array(ACLAction$outboundSchema).optional(),
8454
+ onDemandBuild: z.array(ACLAction$outboundSchema).optional(),
8455
+ onDemandConcurrency: z.array(ACLAction$outboundSchema).optional(),
8456
+ project: z.array(ACLAction$outboundSchema).optional(),
8457
+ projectFromV0: z.array(ACLAction$outboundSchema).optional(),
8458
+ projectAccessGroup: z.array(ACLAction$outboundSchema).optional(),
8459
+ projectAnalyticsSampling: z.array(ACLAction$outboundSchema).optional(),
8460
+ projectCheck: z.array(ACLAction$outboundSchema).optional(),
8461
+ projectCheckRun: z.array(ACLAction$outboundSchema).optional(),
8462
+ projectDeploymentHook: z.array(ACLAction$outboundSchema).optional(),
8463
+ projectDomain: z.array(ACLAction$outboundSchema).optional(),
8464
+ projectDomainMove: z.array(ACLAction$outboundSchema).optional(),
8465
+ projectDomainCheckConfig: z.array(ACLAction$outboundSchema).optional(),
8466
+ projectEnvVars: z.array(ACLAction$outboundSchema).optional(),
8467
+ projectEnvVarsProduction: z.array(ACLAction$outboundSchema).optional(),
8468
+ projectEnvVarsUnownedByIntegration: z.array(ACLAction$outboundSchema)
8469
+ .optional(),
8470
+ projectFlags: z.array(ACLAction$outboundSchema).optional(),
8471
+ projectId: z.array(ACLAction$outboundSchema).optional(),
8472
+ projectIntegrationConfiguration: z.array(ACLAction$outboundSchema).optional(),
8473
+ projectLink: z.array(ACLAction$outboundSchema).optional(),
8474
+ projectMember: z.array(ACLAction$outboundSchema).optional(),
8475
+ projectMonitoring: z.array(ACLAction$outboundSchema).optional(),
8476
+ projectPermissions: z.array(ACLAction$outboundSchema).optional(),
8477
+ projectProductionBranch: z.array(ACLAction$outboundSchema).optional(),
8478
+ projectTransfer: z.array(ACLAction$outboundSchema).optional(),
8479
+ projectTransferOut: z.array(ACLAction$outboundSchema).optional(),
8480
+ projectProtectionBypass: z.array(ACLAction$outboundSchema).optional(),
8481
+ projectUsage: z.array(ACLAction$outboundSchema).optional(),
8482
+ projectAnalyticsUsage: z.array(ACLAction$outboundSchema).optional(),
8483
+ projectSupportCase: z.array(ACLAction$outboundSchema).optional(),
8484
+ projectSupportCaseComment: z.array(ACLAction$outboundSchema).optional(),
8485
+ projectDeploymentExpiration: z.array(ACLAction$outboundSchema).optional(),
8486
+ projectRollingRelease: z.array(ACLAction$outboundSchema).optional(),
8487
+ projectTier: z.array(ACLAction$outboundSchema).optional(),
8488
+ seawallConfig: z.array(ACLAction$outboundSchema).optional(),
8489
+ skewProtection: z.array(ACLAction$outboundSchema).optional(),
8490
+ analytics: z.array(ACLAction$outboundSchema).optional(),
8491
+ trustedIps: z.array(ACLAction$outboundSchema).optional(),
8492
+ webAnalytics: z.array(ACLAction$outboundSchema).optional(),
8493
+ sharedEnvVarConnection: z.array(ACLAction$outboundSchema).optional(),
8494
+ sonar: z.array(ACLAction$outboundSchema).optional(),
8429
8495
  user: z.array(ACLAction$outboundSchema).optional(),
8430
8496
  userConnection: z.array(ACLAction$outboundSchema).optional(),
8431
8497
  userSudo: z.array(ACLAction$outboundSchema).optional(),
@@ -8570,72 +8636,6 @@ export const GetProjectsPermissions$outboundSchema: z.ZodType<
8570
8636
  vercelRunExec: z.array(ACLAction$outboundSchema).optional(),
8571
8637
  apiKey: z.array(ACLAction$outboundSchema).optional(),
8572
8638
  apiKeyOwnedBySelf: z.array(ACLAction$outboundSchema).optional(),
8573
- aliasProject: z.array(ACLAction$outboundSchema).optional(),
8574
- aliasProtectionBypass: z.array(ACLAction$outboundSchema).optional(),
8575
- buildMachine: z.array(ACLAction$outboundSchema).optional(),
8576
- productionAliasProtectionBypass: z.array(ACLAction$outboundSchema).optional(),
8577
- connectConfigurationLink: z.array(ACLAction$outboundSchema).optional(),
8578
- dataCacheNamespace: z.array(ACLAction$outboundSchema).optional(),
8579
- deployment: z.array(ACLAction$outboundSchema).optional(),
8580
- deploymentCheck: z.array(ACLAction$outboundSchema).optional(),
8581
- deploymentCheckPreview: z.array(ACLAction$outboundSchema).optional(),
8582
- deploymentCheckReRunFromProductionBranch: z.array(ACLAction$outboundSchema)
8583
- .optional(),
8584
- deploymentProductionGit: z.array(ACLAction$outboundSchema).optional(),
8585
- deploymentV0: z.array(ACLAction$outboundSchema).optional(),
8586
- deploymentPreview: z.array(ACLAction$outboundSchema).optional(),
8587
- deploymentPrivate: z.array(ACLAction$outboundSchema).optional(),
8588
- deploymentPromote: z.array(ACLAction$outboundSchema).optional(),
8589
- deploymentRollback: z.array(ACLAction$outboundSchema).optional(),
8590
- edgeCacheNamespace: z.array(ACLAction$outboundSchema).optional(),
8591
- environments: z.array(ACLAction$outboundSchema).optional(),
8592
- logs: z.array(ACLAction$outboundSchema).optional(),
8593
- logsPreset: z.array(ACLAction$outboundSchema).optional(),
8594
- passwordProtection: z.array(ACLAction$outboundSchema).optional(),
8595
- optionsAllowlist: z.array(ACLAction$outboundSchema).optional(),
8596
- job: z.array(ACLAction$outboundSchema).optional(),
8597
- observabilityData: z.array(ACLAction$outboundSchema).optional(),
8598
- onDemandBuild: z.array(ACLAction$outboundSchema).optional(),
8599
- onDemandConcurrency: z.array(ACLAction$outboundSchema).optional(),
8600
- project: z.array(ACLAction$outboundSchema).optional(),
8601
- projectFromV0: z.array(ACLAction$outboundSchema).optional(),
8602
- projectAccessGroup: z.array(ACLAction$outboundSchema).optional(),
8603
- projectAnalyticsSampling: z.array(ACLAction$outboundSchema).optional(),
8604
- projectCheck: z.array(ACLAction$outboundSchema).optional(),
8605
- projectCheckRun: z.array(ACLAction$outboundSchema).optional(),
8606
- projectDeploymentHook: z.array(ACLAction$outboundSchema).optional(),
8607
- projectDomain: z.array(ACLAction$outboundSchema).optional(),
8608
- projectDomainMove: z.array(ACLAction$outboundSchema).optional(),
8609
- projectDomainCheckConfig: z.array(ACLAction$outboundSchema).optional(),
8610
- projectEnvVars: z.array(ACLAction$outboundSchema).optional(),
8611
- projectEnvVarsProduction: z.array(ACLAction$outboundSchema).optional(),
8612
- projectEnvVarsUnownedByIntegration: z.array(ACLAction$outboundSchema)
8613
- .optional(),
8614
- projectFlags: z.array(ACLAction$outboundSchema).optional(),
8615
- projectId: z.array(ACLAction$outboundSchema).optional(),
8616
- projectIntegrationConfiguration: z.array(ACLAction$outboundSchema).optional(),
8617
- projectLink: z.array(ACLAction$outboundSchema).optional(),
8618
- projectMember: z.array(ACLAction$outboundSchema).optional(),
8619
- projectMonitoring: z.array(ACLAction$outboundSchema).optional(),
8620
- projectPermissions: z.array(ACLAction$outboundSchema).optional(),
8621
- projectProductionBranch: z.array(ACLAction$outboundSchema).optional(),
8622
- projectTransfer: z.array(ACLAction$outboundSchema).optional(),
8623
- projectTransferOut: z.array(ACLAction$outboundSchema).optional(),
8624
- projectProtectionBypass: z.array(ACLAction$outboundSchema).optional(),
8625
- projectUsage: z.array(ACLAction$outboundSchema).optional(),
8626
- projectAnalyticsUsage: z.array(ACLAction$outboundSchema).optional(),
8627
- projectSupportCase: z.array(ACLAction$outboundSchema).optional(),
8628
- projectSupportCaseComment: z.array(ACLAction$outboundSchema).optional(),
8629
- projectDeploymentExpiration: z.array(ACLAction$outboundSchema).optional(),
8630
- projectRollingRelease: z.array(ACLAction$outboundSchema).optional(),
8631
- projectTier: z.array(ACLAction$outboundSchema).optional(),
8632
- seawallConfig: z.array(ACLAction$outboundSchema).optional(),
8633
- skewProtection: z.array(ACLAction$outboundSchema).optional(),
8634
- analytics: z.array(ACLAction$outboundSchema).optional(),
8635
- trustedIps: z.array(ACLAction$outboundSchema).optional(),
8636
- webAnalytics: z.array(ACLAction$outboundSchema).optional(),
8637
- sharedEnvVarConnection: z.array(ACLAction$outboundSchema).optional(),
8638
- sonar: z.array(ACLAction$outboundSchema).optional(),
8639
8639
  }).transform((v) => {
8640
8640
  return remap$(v, {
8641
8641
  monitoring: "Monitoring",