@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
@@ -418,10 +418,10 @@ export type CreateProjectTarget1 = ClosedEnum<typeof CreateProjectTarget1>;
418
418
  export type CreateProjectProjectsTarget = Array<CreateProjectTarget1> | CreateProjectTarget2;
419
419
  export declare const CreateProjectProjectsResponseType: {
420
420
  readonly System: "system";
421
+ readonly Secret: "secret";
421
422
  readonly Encrypted: "encrypted";
422
423
  readonly Plain: "plain";
423
424
  readonly Sensitive: "sensitive";
424
- readonly Secret: "secret";
425
425
  };
426
426
  export type CreateProjectProjectsResponseType = ClosedEnum<typeof CreateProjectProjectsResponseType>;
427
427
  export declare const CreateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type: {
@@ -983,18 +983,18 @@ export type CreateProjectLinkProjectsDeployHooks = {
983
983
  };
984
984
  export type CreateProjectLink2 = {
985
985
  type: CreateProjectLinkProjectsType;
986
- repo?: string | undefined;
987
- repoId?: number | undefined;
988
986
  updatedAt?: number | undefined;
989
987
  createdAt?: number | undefined;
988
+ repo?: string | undefined;
989
+ sourceless?: boolean | undefined;
990
990
  org: string;
991
991
  /**
992
992
  * 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.
993
993
  */
994
994
  repoOwnerId?: number | undefined;
995
+ repoId?: number | undefined;
995
996
  deployHooks: Array<CreateProjectLinkProjectsDeployHooks>;
996
997
  gitCredentialId: string;
997
- sourceless?: boolean | undefined;
998
998
  productionBranch: string;
999
999
  };
1000
1000
  export declare const CreateProjectLinkType: {
@@ -1087,12 +1087,12 @@ export declare const CreateProjectBuildMachineType: {
1087
1087
  };
1088
1088
  export type CreateProjectBuildMachineType = ClosedEnum<typeof CreateProjectBuildMachineType>;
1089
1089
  export type CreateProjectProjectsResourceConfig = {
1090
- elasticConcurrencyEnabled?: boolean | undefined;
1091
1090
  fluid?: boolean | undefined;
1092
1091
  functionDefaultRegions: Array<string>;
1093
1092
  functionDefaultTimeout?: number | undefined;
1094
1093
  functionDefaultMemoryType?: CreateProjectFunctionDefaultMemoryType | undefined;
1095
1094
  functionZeroConfigFailover?: boolean | undefined;
1095
+ elasticConcurrencyEnabled?: boolean | undefined;
1096
1096
  buildMachineType?: CreateProjectBuildMachineType | undefined;
1097
1097
  isNSNBDisabled?: boolean | undefined;
1098
1098
  };
@@ -1163,18 +1163,18 @@ export declare const CreateProjectProjectsBuildMachineType: {
1163
1163
  };
1164
1164
  export type CreateProjectProjectsBuildMachineType = ClosedEnum<typeof CreateProjectProjectsBuildMachineType>;
1165
1165
  export type CreateProjectDefaultResourceConfig = {
1166
- elasticConcurrencyEnabled?: boolean | undefined;
1167
1166
  fluid?: boolean | undefined;
1168
1167
  functionDefaultRegions: Array<string>;
1169
1168
  functionDefaultTimeout?: number | undefined;
1170
1169
  functionDefaultMemoryType?: CreateProjectProjectsFunctionDefaultMemoryType | undefined;
1171
1170
  functionZeroConfigFailover?: boolean | undefined;
1171
+ elasticConcurrencyEnabled?: boolean | undefined;
1172
1172
  buildMachineType?: CreateProjectProjectsBuildMachineType | undefined;
1173
1173
  isNSNBDisabled?: boolean | undefined;
1174
1174
  };
1175
1175
  export declare const CreateProjectProjectsDeploymentType: {
1176
- readonly Preview: "preview";
1177
1176
  readonly All: "all";
1177
+ readonly Preview: "preview";
1178
1178
  readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
1179
1179
  readonly AllExceptCustomDomains: "all_except_custom_domains";
1180
1180
  };
@@ -1314,73 +1314,6 @@ export type CreateProjectTargets = {
1314
1314
  withCache?: boolean | undefined;
1315
1315
  };
1316
1316
  export type CreateProjectPermissions = {
1317
- aliasProject?: Array<ACLAction> | undefined;
1318
- aliasProtectionBypass?: Array<ACLAction> | undefined;
1319
- buildMachine?: Array<ACLAction> | undefined;
1320
- productionAliasProtectionBypass?: Array<ACLAction> | undefined;
1321
- connectConfigurationLink?: Array<ACLAction> | undefined;
1322
- dataCacheNamespace?: Array<ACLAction> | undefined;
1323
- deployment?: Array<ACLAction> | undefined;
1324
- deploymentBuildLogs?: Array<ACLAction> | undefined;
1325
- deploymentCheck?: Array<ACLAction> | undefined;
1326
- deploymentCheckPreview?: Array<ACLAction> | undefined;
1327
- deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
1328
- deploymentProductionGit?: Array<ACLAction> | undefined;
1329
- deploymentV0?: Array<ACLAction> | undefined;
1330
- deploymentPreview?: Array<ACLAction> | undefined;
1331
- deploymentPrivate?: Array<ACLAction> | undefined;
1332
- deploymentPromote?: Array<ACLAction> | undefined;
1333
- deploymentRollback?: Array<ACLAction> | undefined;
1334
- edgeCacheNamespace?: Array<ACLAction> | undefined;
1335
- environments?: Array<ACLAction> | undefined;
1336
- logs?: Array<ACLAction> | undefined;
1337
- logsPreset?: Array<ACLAction> | undefined;
1338
- passwordProtection?: Array<ACLAction> | undefined;
1339
- optionsAllowlist?: Array<ACLAction> | undefined;
1340
- job?: Array<ACLAction> | undefined;
1341
- observabilityData?: Array<ACLAction> | undefined;
1342
- onDemandBuild?: Array<ACLAction> | undefined;
1343
- onDemandConcurrency?: Array<ACLAction> | undefined;
1344
- project?: Array<ACLAction> | undefined;
1345
- projectFromV0?: Array<ACLAction> | undefined;
1346
- projectAccessGroup?: Array<ACLAction> | undefined;
1347
- projectAnalyticsSampling?: Array<ACLAction> | undefined;
1348
- projectCheck?: Array<ACLAction> | undefined;
1349
- projectCheckRun?: Array<ACLAction> | undefined;
1350
- projectDeploymentHook?: Array<ACLAction> | undefined;
1351
- projectDomain?: Array<ACLAction> | undefined;
1352
- projectDomainMove?: Array<ACLAction> | undefined;
1353
- projectDomainCheckConfig?: Array<ACLAction> | undefined;
1354
- projectEnvVars?: Array<ACLAction> | undefined;
1355
- projectEnvVarsProduction?: Array<ACLAction> | undefined;
1356
- projectEnvVarsUnownedByIntegration?: Array<ACLAction> | undefined;
1357
- projectFlags?: Array<ACLAction> | undefined;
1358
- projectId?: Array<ACLAction> | undefined;
1359
- projectIntegrationConfiguration?: Array<ACLAction> | undefined;
1360
- projectLink?: Array<ACLAction> | undefined;
1361
- projectMember?: Array<ACLAction> | undefined;
1362
- projectMonitoring?: Array<ACLAction> | undefined;
1363
- projectPermissions?: Array<ACLAction> | undefined;
1364
- projectProductionBranch?: Array<ACLAction> | undefined;
1365
- projectTransfer?: Array<ACLAction> | undefined;
1366
- projectTransferOut?: Array<ACLAction> | undefined;
1367
- projectProtectionBypass?: Array<ACLAction> | undefined;
1368
- projectUsage?: Array<ACLAction> | undefined;
1369
- projectAnalyticsUsage?: Array<ACLAction> | undefined;
1370
- projectSupportCase?: Array<ACLAction> | undefined;
1371
- projectSupportCaseComment?: Array<ACLAction> | undefined;
1372
- projectDeploymentExpiration?: Array<ACLAction> | undefined;
1373
- projectRollingRelease?: Array<ACLAction> | undefined;
1374
- projectTier?: Array<ACLAction> | undefined;
1375
- projectOIDCToken?: Array<ACLAction> | undefined;
1376
- seawallConfig?: Array<ACLAction> | undefined;
1377
- skewProtection?: Array<ACLAction> | undefined;
1378
- analytics?: Array<ACLAction> | undefined;
1379
- trustedIps?: Array<ACLAction> | undefined;
1380
- v0Chat?: Array<ACLAction> | undefined;
1381
- webAnalytics?: Array<ACLAction> | undefined;
1382
- sharedEnvVarConnection?: Array<ACLAction> | undefined;
1383
- sonar?: Array<ACLAction> | undefined;
1384
1317
  oauth2Connection?: Array<ACLAction> | undefined;
1385
1318
  user?: Array<ACLAction> | undefined;
1386
1319
  userConnection?: Array<ACLAction> | undefined;
@@ -1447,7 +1380,6 @@ export type CreateProjectPermissions = {
1447
1380
  jobGlobal?: Array<ACLAction> | undefined;
1448
1381
  drain?: Array<ACLAction> | undefined;
1449
1382
  logDrain?: Array<ACLAction> | undefined;
1450
- traceDrain?: Array<ACLAction> | undefined;
1451
1383
  monitoring?: Array<ACLAction> | undefined;
1452
1384
  monitoringSettings?: Array<ACLAction> | undefined;
1453
1385
  monitoringQuery?: Array<ACLAction> | undefined;
@@ -1528,6 +1460,73 @@ export type CreateProjectPermissions = {
1528
1460
  vercelRunExec?: Array<ACLAction> | undefined;
1529
1461
  apiKey?: Array<ACLAction> | undefined;
1530
1462
  apiKeyOwnedBySelf?: Array<ACLAction> | undefined;
1463
+ aliasProject?: Array<ACLAction> | undefined;
1464
+ aliasProtectionBypass?: Array<ACLAction> | undefined;
1465
+ buildMachine?: Array<ACLAction> | undefined;
1466
+ productionAliasProtectionBypass?: Array<ACLAction> | undefined;
1467
+ connectConfigurationLink?: Array<ACLAction> | undefined;
1468
+ dataCacheNamespace?: Array<ACLAction> | undefined;
1469
+ deployment?: Array<ACLAction> | undefined;
1470
+ deploymentBuildLogs?: Array<ACLAction> | undefined;
1471
+ deploymentCheck?: Array<ACLAction> | undefined;
1472
+ deploymentCheckPreview?: Array<ACLAction> | undefined;
1473
+ deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
1474
+ deploymentProductionGit?: Array<ACLAction> | undefined;
1475
+ deploymentV0?: Array<ACLAction> | undefined;
1476
+ deploymentPreview?: Array<ACLAction> | undefined;
1477
+ deploymentPrivate?: Array<ACLAction> | undefined;
1478
+ deploymentPromote?: Array<ACLAction> | undefined;
1479
+ deploymentRollback?: Array<ACLAction> | undefined;
1480
+ edgeCacheNamespace?: Array<ACLAction> | undefined;
1481
+ environments?: Array<ACLAction> | undefined;
1482
+ logs?: Array<ACLAction> | undefined;
1483
+ logsPreset?: Array<ACLAction> | undefined;
1484
+ passwordProtection?: Array<ACLAction> | undefined;
1485
+ optionsAllowlist?: Array<ACLAction> | undefined;
1486
+ job?: Array<ACLAction> | undefined;
1487
+ observabilityData?: Array<ACLAction> | undefined;
1488
+ onDemandBuild?: Array<ACLAction> | undefined;
1489
+ onDemandConcurrency?: Array<ACLAction> | undefined;
1490
+ project?: Array<ACLAction> | undefined;
1491
+ projectFromV0?: Array<ACLAction> | undefined;
1492
+ projectAccessGroup?: Array<ACLAction> | undefined;
1493
+ projectAnalyticsSampling?: Array<ACLAction> | undefined;
1494
+ projectCheck?: Array<ACLAction> | undefined;
1495
+ projectCheckRun?: Array<ACLAction> | undefined;
1496
+ projectDeploymentHook?: Array<ACLAction> | undefined;
1497
+ projectDomain?: Array<ACLAction> | undefined;
1498
+ projectDomainMove?: Array<ACLAction> | undefined;
1499
+ projectDomainCheckConfig?: Array<ACLAction> | undefined;
1500
+ projectEnvVars?: Array<ACLAction> | undefined;
1501
+ projectEnvVarsProduction?: Array<ACLAction> | undefined;
1502
+ projectEnvVarsUnownedByIntegration?: Array<ACLAction> | undefined;
1503
+ projectFlags?: Array<ACLAction> | undefined;
1504
+ projectId?: Array<ACLAction> | undefined;
1505
+ projectIntegrationConfiguration?: Array<ACLAction> | undefined;
1506
+ projectLink?: Array<ACLAction> | undefined;
1507
+ projectMember?: Array<ACLAction> | undefined;
1508
+ projectMonitoring?: Array<ACLAction> | undefined;
1509
+ projectPermissions?: Array<ACLAction> | undefined;
1510
+ projectProductionBranch?: Array<ACLAction> | undefined;
1511
+ projectTransfer?: Array<ACLAction> | undefined;
1512
+ projectTransferOut?: Array<ACLAction> | undefined;
1513
+ projectProtectionBypass?: Array<ACLAction> | undefined;
1514
+ projectUsage?: Array<ACLAction> | undefined;
1515
+ projectAnalyticsUsage?: Array<ACLAction> | undefined;
1516
+ projectSupportCase?: Array<ACLAction> | undefined;
1517
+ projectSupportCaseComment?: Array<ACLAction> | undefined;
1518
+ projectDeploymentExpiration?: Array<ACLAction> | undefined;
1519
+ projectRollingRelease?: Array<ACLAction> | undefined;
1520
+ projectTier?: Array<ACLAction> | undefined;
1521
+ projectOIDCToken?: Array<ACLAction> | undefined;
1522
+ seawallConfig?: Array<ACLAction> | undefined;
1523
+ skewProtection?: Array<ACLAction> | undefined;
1524
+ analytics?: Array<ACLAction> | undefined;
1525
+ trustedIps?: Array<ACLAction> | undefined;
1526
+ v0Chat?: Array<ACLAction> | undefined;
1527
+ webAnalytics?: Array<ACLAction> | undefined;
1528
+ sharedEnvVarConnection?: Array<ACLAction> | undefined;
1529
+ sonar?: Array<ACLAction> | undefined;
1531
1530
  };
1532
1531
  export type CreateProjectLastRollbackTarget = {};
1533
1532
  export declare const CreateProjectJobStatus: {
@@ -1576,22 +1575,22 @@ export type CreateProjectProtectionBypass1 = {
1576
1575
  };
1577
1576
  export type CreateProjectProtectionBypass = CreateProjectProtectionBypass1 | CreateProjectProtectionBypass2;
1578
1577
  export declare const CreateProjectTrustedIpsProjectsDeploymentType: {
1579
- readonly Preview: "preview";
1580
- readonly Production: "production";
1581
1578
  readonly All: "all";
1579
+ readonly Preview: "preview";
1582
1580
  readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
1583
1581
  readonly AllExceptCustomDomains: "all_except_custom_domains";
1582
+ readonly Production: "production";
1584
1583
  };
1585
1584
  export type CreateProjectTrustedIpsProjectsDeploymentType = ClosedEnum<typeof CreateProjectTrustedIpsProjectsDeploymentType>;
1586
1585
  export type CreateProjectTrustedIps2 = {
1587
1586
  deploymentType: CreateProjectTrustedIpsProjectsDeploymentType;
1588
1587
  };
1589
1588
  export declare const CreateProjectTrustedIpsDeploymentType: {
1590
- readonly Preview: "preview";
1591
- readonly Production: "production";
1592
1589
  readonly All: "all";
1590
+ readonly Preview: "preview";
1593
1591
  readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
1594
1592
  readonly AllExceptCustomDomains: "all_except_custom_domains";
1593
+ readonly Production: "production";
1595
1594
  };
1596
1595
  export type CreateProjectTrustedIpsDeploymentType = ClosedEnum<typeof CreateProjectTrustedIpsDeploymentType>;
1597
1596
  export type TrustedIpsAddresses = {
@@ -2868,18 +2867,18 @@ export declare namespace CreateProjectProjectsResponseType$ {
2868
2867
  /** @deprecated use `CreateProjectProjectsResponseType$inboundSchema` instead. */
2869
2868
  const inboundSchema: z.ZodNativeEnum<{
2870
2869
  readonly System: "system";
2870
+ readonly Secret: "secret";
2871
2871
  readonly Encrypted: "encrypted";
2872
2872
  readonly Plain: "plain";
2873
2873
  readonly Sensitive: "sensitive";
2874
- readonly Secret: "secret";
2875
2874
  }>;
2876
2875
  /** @deprecated use `CreateProjectProjectsResponseType$outboundSchema` instead. */
2877
2876
  const outboundSchema: z.ZodNativeEnum<{
2878
2877
  readonly System: "system";
2878
+ readonly Secret: "secret";
2879
2879
  readonly Encrypted: "encrypted";
2880
2880
  readonly Plain: "plain";
2881
2881
  readonly Sensitive: "sensitive";
2882
- readonly Secret: "secret";
2883
2882
  }>;
2884
2883
  }
2885
2884
  /** @internal */
@@ -4541,15 +4540,15 @@ export declare const CreateProjectLink2$inboundSchema: z.ZodType<CreateProjectLi
4541
4540
  /** @internal */
4542
4541
  export type CreateProjectLink2$Outbound = {
4543
4542
  type: string;
4544
- repo?: string | undefined;
4545
- repoId?: number | undefined;
4546
4543
  updatedAt?: number | undefined;
4547
4544
  createdAt?: number | undefined;
4545
+ repo?: string | undefined;
4546
+ sourceless?: boolean | undefined;
4548
4547
  org: string;
4549
4548
  repoOwnerId?: number | undefined;
4549
+ repoId?: number | undefined;
4550
4550
  deployHooks: Array<CreateProjectLinkProjectsDeployHooks$Outbound>;
4551
4551
  gitCredentialId: string;
4552
- sourceless?: boolean | undefined;
4553
4552
  productionBranch: string;
4554
4553
  };
4555
4554
  /** @internal */
@@ -4877,12 +4876,12 @@ export declare namespace CreateProjectBuildMachineType$ {
4877
4876
  export declare const CreateProjectProjectsResourceConfig$inboundSchema: z.ZodType<CreateProjectProjectsResourceConfig, z.ZodTypeDef, unknown>;
4878
4877
  /** @internal */
4879
4878
  export type CreateProjectProjectsResourceConfig$Outbound = {
4880
- elasticConcurrencyEnabled?: boolean | undefined;
4881
4879
  fluid?: boolean | undefined;
4882
4880
  functionDefaultRegions: Array<string>;
4883
4881
  functionDefaultTimeout?: number | undefined;
4884
4882
  functionDefaultMemoryType?: string | undefined;
4885
4883
  functionZeroConfigFailover?: boolean | undefined;
4884
+ elasticConcurrencyEnabled?: boolean | undefined;
4886
4885
  buildMachineType?: string | undefined;
4887
4886
  isNSNBDisabled?: boolean | undefined;
4888
4887
  };
@@ -5021,12 +5020,12 @@ export declare namespace CreateProjectProjectsBuildMachineType$ {
5021
5020
  export declare const CreateProjectDefaultResourceConfig$inboundSchema: z.ZodType<CreateProjectDefaultResourceConfig, z.ZodTypeDef, unknown>;
5022
5021
  /** @internal */
5023
5022
  export type CreateProjectDefaultResourceConfig$Outbound = {
5024
- elasticConcurrencyEnabled?: boolean | undefined;
5025
5023
  fluid?: boolean | undefined;
5026
5024
  functionDefaultRegions: Array<string>;
5027
5025
  functionDefaultTimeout?: number | undefined;
5028
5026
  functionDefaultMemoryType?: string | undefined;
5029
5027
  functionZeroConfigFailover?: boolean | undefined;
5028
+ elasticConcurrencyEnabled?: boolean | undefined;
5030
5029
  buildMachineType?: string | undefined;
5031
5030
  isNSNBDisabled?: boolean | undefined;
5032
5031
  };
@@ -5057,15 +5056,15 @@ export declare const CreateProjectProjectsDeploymentType$outboundSchema: z.ZodNa
5057
5056
  export declare namespace CreateProjectProjectsDeploymentType$ {
5058
5057
  /** @deprecated use `CreateProjectProjectsDeploymentType$inboundSchema` instead. */
5059
5058
  const inboundSchema: z.ZodNativeEnum<{
5060
- readonly Preview: "preview";
5061
5059
  readonly All: "all";
5060
+ readonly Preview: "preview";
5062
5061
  readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
5063
5062
  readonly AllExceptCustomDomains: "all_except_custom_domains";
5064
5063
  }>;
5065
5064
  /** @deprecated use `CreateProjectProjectsDeploymentType$outboundSchema` instead. */
5066
5065
  const outboundSchema: z.ZodNativeEnum<{
5067
- readonly Preview: "preview";
5068
5066
  readonly All: "all";
5067
+ readonly Preview: "preview";
5069
5068
  readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
5070
5069
  readonly AllExceptCustomDomains: "all_except_custom_domains";
5071
5070
  }>;
@@ -5459,73 +5458,6 @@ export declare function createProjectTargetsFromJSON(jsonString: string): SafePa
5459
5458
  export declare const CreateProjectPermissions$inboundSchema: z.ZodType<CreateProjectPermissions, z.ZodTypeDef, unknown>;
5460
5459
  /** @internal */
5461
5460
  export type CreateProjectPermissions$Outbound = {
5462
- aliasProject?: Array<string> | undefined;
5463
- aliasProtectionBypass?: Array<string> | undefined;
5464
- buildMachine?: Array<string> | undefined;
5465
- productionAliasProtectionBypass?: Array<string> | undefined;
5466
- connectConfigurationLink?: Array<string> | undefined;
5467
- dataCacheNamespace?: Array<string> | undefined;
5468
- deployment?: Array<string> | undefined;
5469
- deploymentBuildLogs?: Array<string> | undefined;
5470
- deploymentCheck?: Array<string> | undefined;
5471
- deploymentCheckPreview?: Array<string> | undefined;
5472
- deploymentCheckReRunFromProductionBranch?: Array<string> | undefined;
5473
- deploymentProductionGit?: Array<string> | undefined;
5474
- deploymentV0?: Array<string> | undefined;
5475
- deploymentPreview?: Array<string> | undefined;
5476
- deploymentPrivate?: Array<string> | undefined;
5477
- deploymentPromote?: Array<string> | undefined;
5478
- deploymentRollback?: Array<string> | undefined;
5479
- edgeCacheNamespace?: Array<string> | undefined;
5480
- environments?: Array<string> | undefined;
5481
- logs?: Array<string> | undefined;
5482
- logsPreset?: Array<string> | undefined;
5483
- passwordProtection?: Array<string> | undefined;
5484
- optionsAllowlist?: Array<string> | undefined;
5485
- job?: Array<string> | undefined;
5486
- observabilityData?: Array<string> | undefined;
5487
- onDemandBuild?: Array<string> | undefined;
5488
- onDemandConcurrency?: Array<string> | undefined;
5489
- project?: Array<string> | undefined;
5490
- projectFromV0?: Array<string> | undefined;
5491
- projectAccessGroup?: Array<string> | undefined;
5492
- projectAnalyticsSampling?: Array<string> | undefined;
5493
- projectCheck?: Array<string> | undefined;
5494
- projectCheckRun?: Array<string> | undefined;
5495
- projectDeploymentHook?: Array<string> | undefined;
5496
- projectDomain?: Array<string> | undefined;
5497
- projectDomainMove?: Array<string> | undefined;
5498
- projectDomainCheckConfig?: Array<string> | undefined;
5499
- projectEnvVars?: Array<string> | undefined;
5500
- projectEnvVarsProduction?: Array<string> | undefined;
5501
- projectEnvVarsUnownedByIntegration?: Array<string> | undefined;
5502
- projectFlags?: Array<string> | undefined;
5503
- projectId?: Array<string> | undefined;
5504
- projectIntegrationConfiguration?: Array<string> | undefined;
5505
- projectLink?: Array<string> | undefined;
5506
- projectMember?: Array<string> | undefined;
5507
- projectMonitoring?: Array<string> | undefined;
5508
- projectPermissions?: Array<string> | undefined;
5509
- projectProductionBranch?: Array<string> | undefined;
5510
- projectTransfer?: Array<string> | undefined;
5511
- projectTransferOut?: Array<string> | undefined;
5512
- projectProtectionBypass?: Array<string> | undefined;
5513
- projectUsage?: Array<string> | undefined;
5514
- projectAnalyticsUsage?: Array<string> | undefined;
5515
- projectSupportCase?: Array<string> | undefined;
5516
- projectSupportCaseComment?: Array<string> | undefined;
5517
- projectDeploymentExpiration?: Array<string> | undefined;
5518
- projectRollingRelease?: Array<string> | undefined;
5519
- projectTier?: Array<string> | undefined;
5520
- projectOIDCToken?: Array<string> | undefined;
5521
- seawallConfig?: Array<string> | undefined;
5522
- skewProtection?: Array<string> | undefined;
5523
- analytics?: Array<string> | undefined;
5524
- trustedIps?: Array<string> | undefined;
5525
- v0Chat?: Array<string> | undefined;
5526
- webAnalytics?: Array<string> | undefined;
5527
- sharedEnvVarConnection?: Array<string> | undefined;
5528
- sonar?: Array<string> | undefined;
5529
5461
  oauth2Connection?: Array<string> | undefined;
5530
5462
  user?: Array<string> | undefined;
5531
5463
  userConnection?: Array<string> | undefined;
@@ -5592,7 +5524,6 @@ export type CreateProjectPermissions$Outbound = {
5592
5524
  jobGlobal?: Array<string> | undefined;
5593
5525
  drain?: Array<string> | undefined;
5594
5526
  logDrain?: Array<string> | undefined;
5595
- traceDrain?: Array<string> | undefined;
5596
5527
  Monitoring?: Array<string> | undefined;
5597
5528
  monitoringSettings?: Array<string> | undefined;
5598
5529
  monitoringQuery?: Array<string> | undefined;
@@ -5673,6 +5604,73 @@ export type CreateProjectPermissions$Outbound = {
5673
5604
  vercelRunExec?: Array<string> | undefined;
5674
5605
  apiKey?: Array<string> | undefined;
5675
5606
  apiKeyOwnedBySelf?: Array<string> | undefined;
5607
+ aliasProject?: Array<string> | undefined;
5608
+ aliasProtectionBypass?: Array<string> | undefined;
5609
+ buildMachine?: Array<string> | undefined;
5610
+ productionAliasProtectionBypass?: Array<string> | undefined;
5611
+ connectConfigurationLink?: Array<string> | undefined;
5612
+ dataCacheNamespace?: Array<string> | undefined;
5613
+ deployment?: Array<string> | undefined;
5614
+ deploymentBuildLogs?: Array<string> | undefined;
5615
+ deploymentCheck?: Array<string> | undefined;
5616
+ deploymentCheckPreview?: Array<string> | undefined;
5617
+ deploymentCheckReRunFromProductionBranch?: Array<string> | undefined;
5618
+ deploymentProductionGit?: Array<string> | undefined;
5619
+ deploymentV0?: Array<string> | undefined;
5620
+ deploymentPreview?: Array<string> | undefined;
5621
+ deploymentPrivate?: Array<string> | undefined;
5622
+ deploymentPromote?: Array<string> | undefined;
5623
+ deploymentRollback?: Array<string> | undefined;
5624
+ edgeCacheNamespace?: Array<string> | undefined;
5625
+ environments?: Array<string> | undefined;
5626
+ logs?: Array<string> | undefined;
5627
+ logsPreset?: Array<string> | undefined;
5628
+ passwordProtection?: Array<string> | undefined;
5629
+ optionsAllowlist?: Array<string> | undefined;
5630
+ job?: Array<string> | undefined;
5631
+ observabilityData?: Array<string> | undefined;
5632
+ onDemandBuild?: Array<string> | undefined;
5633
+ onDemandConcurrency?: Array<string> | undefined;
5634
+ project?: Array<string> | undefined;
5635
+ projectFromV0?: Array<string> | undefined;
5636
+ projectAccessGroup?: Array<string> | undefined;
5637
+ projectAnalyticsSampling?: Array<string> | undefined;
5638
+ projectCheck?: Array<string> | undefined;
5639
+ projectCheckRun?: Array<string> | undefined;
5640
+ projectDeploymentHook?: Array<string> | undefined;
5641
+ projectDomain?: Array<string> | undefined;
5642
+ projectDomainMove?: Array<string> | undefined;
5643
+ projectDomainCheckConfig?: Array<string> | undefined;
5644
+ projectEnvVars?: Array<string> | undefined;
5645
+ projectEnvVarsProduction?: Array<string> | undefined;
5646
+ projectEnvVarsUnownedByIntegration?: Array<string> | undefined;
5647
+ projectFlags?: Array<string> | undefined;
5648
+ projectId?: Array<string> | undefined;
5649
+ projectIntegrationConfiguration?: Array<string> | undefined;
5650
+ projectLink?: Array<string> | undefined;
5651
+ projectMember?: Array<string> | undefined;
5652
+ projectMonitoring?: Array<string> | undefined;
5653
+ projectPermissions?: Array<string> | undefined;
5654
+ projectProductionBranch?: Array<string> | undefined;
5655
+ projectTransfer?: Array<string> | undefined;
5656
+ projectTransferOut?: Array<string> | undefined;
5657
+ projectProtectionBypass?: Array<string> | undefined;
5658
+ projectUsage?: Array<string> | undefined;
5659
+ projectAnalyticsUsage?: Array<string> | undefined;
5660
+ projectSupportCase?: Array<string> | undefined;
5661
+ projectSupportCaseComment?: Array<string> | undefined;
5662
+ projectDeploymentExpiration?: Array<string> | undefined;
5663
+ projectRollingRelease?: Array<string> | undefined;
5664
+ projectTier?: Array<string> | undefined;
5665
+ projectOIDCToken?: Array<string> | undefined;
5666
+ seawallConfig?: Array<string> | undefined;
5667
+ skewProtection?: Array<string> | undefined;
5668
+ analytics?: Array<string> | undefined;
5669
+ trustedIps?: Array<string> | undefined;
5670
+ v0Chat?: Array<string> | undefined;
5671
+ webAnalytics?: Array<string> | undefined;
5672
+ sharedEnvVarConnection?: Array<string> | undefined;
5673
+ sonar?: Array<string> | undefined;
5676
5674
  };
5677
5675
  /** @internal */
5678
5676
  export declare const CreateProjectPermissions$outboundSchema: z.ZodType<CreateProjectPermissions$Outbound, z.ZodTypeDef, CreateProjectPermissions>;
@@ -5900,19 +5898,19 @@ export declare const CreateProjectTrustedIpsProjectsDeploymentType$outboundSchem
5900
5898
  export declare namespace CreateProjectTrustedIpsProjectsDeploymentType$ {
5901
5899
  /** @deprecated use `CreateProjectTrustedIpsProjectsDeploymentType$inboundSchema` instead. */
5902
5900
  const inboundSchema: z.ZodNativeEnum<{
5903
- readonly Preview: "preview";
5904
- readonly Production: "production";
5905
5901
  readonly All: "all";
5902
+ readonly Preview: "preview";
5906
5903
  readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
5907
5904
  readonly AllExceptCustomDomains: "all_except_custom_domains";
5905
+ readonly Production: "production";
5908
5906
  }>;
5909
5907
  /** @deprecated use `CreateProjectTrustedIpsProjectsDeploymentType$outboundSchema` instead. */
5910
5908
  const outboundSchema: z.ZodNativeEnum<{
5911
- readonly Preview: "preview";
5912
- readonly Production: "production";
5913
5909
  readonly All: "all";
5910
+ readonly Preview: "preview";
5914
5911
  readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
5915
5912
  readonly AllExceptCustomDomains: "all_except_custom_domains";
5913
+ readonly Production: "production";
5916
5914
  }>;
5917
5915
  }
5918
5916
  /** @internal */
@@ -5948,19 +5946,19 @@ export declare const CreateProjectTrustedIpsDeploymentType$outboundSchema: z.Zod
5948
5946
  export declare namespace CreateProjectTrustedIpsDeploymentType$ {
5949
5947
  /** @deprecated use `CreateProjectTrustedIpsDeploymentType$inboundSchema` instead. */
5950
5948
  const inboundSchema: z.ZodNativeEnum<{
5951
- readonly Preview: "preview";
5952
- readonly Production: "production";
5953
5949
  readonly All: "all";
5950
+ readonly Preview: "preview";
5954
5951
  readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
5955
5952
  readonly AllExceptCustomDomains: "all_except_custom_domains";
5953
+ readonly Production: "production";
5956
5954
  }>;
5957
5955
  /** @deprecated use `CreateProjectTrustedIpsDeploymentType$outboundSchema` instead. */
5958
5956
  const outboundSchema: z.ZodNativeEnum<{
5959
- readonly Preview: "preview";
5960
- readonly Production: "production";
5961
5957
  readonly All: "all";
5958
+ readonly Preview: "preview";
5962
5959
  readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
5963
5960
  readonly AllExceptCustomDomains: "all_except_custom_domains";
5961
+ readonly Production: "production";
5964
5962
  }>;
5965
5963
  }
5966
5964
  /** @internal */