@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.
- package/bin/mcp-server.js +496 -463
- package/bin/mcp-server.js.map +17 -17
- package/docs/sdks/projects/README.md +2 -0
- package/esm/__tests__/accessgroups.test.js +1 -3
- package/esm/__tests__/accessgroups.test.js.map +1 -1
- package/esm/__tests__/domains.test.js +7 -2
- package/esm/__tests__/domains.test.js.map +1 -1
- package/esm/__tests__/edgeconfig.test.js +6 -6
- package/esm/__tests__/edgeconfig.test.js.map +1 -1
- package/esm/__tests__/rollingrelease.test.js +6 -2
- package/esm/__tests__/rollingrelease.test.js.map +1 -1
- package/esm/__tests__/security.test.js +4 -4
- package/esm/__tests__/security.test.js.map +1 -1
- package/esm/funcs/projectsGetProjects.js +1 -0
- package/esm/funcs/projectsGetProjects.js.map +1 -1
- package/esm/lib/config.d.ts +3 -3
- package/esm/lib/config.js +3 -3
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.js +1 -1
- package/esm/models/canceldeploymentop.d.ts +35 -35
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +13 -13
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +33 -33
- package/esm/models/createdeploymentop.js +11 -11
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createprojectenvop.d.ts +6 -6
- package/esm/models/createprojectenvop.js +2 -2
- package/esm/models/createprojectenvop.js.map +1 -1
- package/esm/models/createprojectop.d.ts +164 -158
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +156 -150
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/editprojectenvop.d.ts +3 -3
- package/esm/models/editprojectenvop.js +1 -1
- package/esm/models/editprojectenvop.js.map +1 -1
- package/esm/models/filterprojectenvsop.d.ts +9 -9
- package/esm/models/filterprojectenvsop.js +3 -3
- package/esm/models/filterprojectenvsop.js.map +1 -1
- package/esm/models/getconfigurationproductsop.d.ts +330 -330
- package/esm/models/getconfigurationproductsop.js +408 -408
- package/esm/models/getprojectsop.d.ts +44 -4
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +33 -4
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/removeprojectenvop.d.ts +9 -9
- package/esm/models/removeprojectenvop.js +3 -3
- package/esm/models/removeprojectenvop.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +4 -0
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +4 -0
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +10 -4
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +10 -4
- package/esm/models/updateprojectop.js.map +1 -1
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/accessgroups.test.ts +1 -3
- package/src/__tests__/domains.test.ts +7 -2
- package/src/__tests__/edgeconfig.test.ts +6 -6
- package/src/__tests__/rollingrelease.test.ts +6 -2
- package/src/__tests__/security.test.ts +4 -4
- package/src/funcs/projectsGetProjects.ts +1 -0
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/canceldeploymentop.ts +15 -15
- package/src/models/createdeploymentop.ts +11 -11
- package/src/models/createprojectenvop.ts +2 -2
- package/src/models/createprojectop.ts +312 -300
- package/src/models/editprojectenvop.ts +1 -1
- package/src/models/filterprojectenvsop.ts +3 -3
- package/src/models/getconfigurationproductsop.ts +703 -703
- package/src/models/getprojectsop.ts +59 -8
- package/src/models/removeprojectenvop.ts +3 -3
- package/src/models/updateprojectdatacacheop.ts +8 -0
- package/src/models/updateprojectop.ts +20 -8
- package/vercel-spec.json +396 -346
|
@@ -207,6 +207,7 @@ export type CreateProjectResourceConfig = {
|
|
|
207
207
|
functionZeroConfigFailover?: boolean | undefined;
|
|
208
208
|
elasticConcurrencyEnabled?: boolean | undefined;
|
|
209
209
|
buildMachineType?: BuildMachineType | undefined;
|
|
210
|
+
isNSNBDisabled?: boolean | undefined;
|
|
210
211
|
};
|
|
211
212
|
export type CreateProjectRequestBody = {
|
|
212
213
|
/**
|
|
@@ -398,10 +399,10 @@ export type CreateProjectTarget1 = ClosedEnum<typeof CreateProjectTarget1>;
|
|
|
398
399
|
export type CreateProjectProjectsTarget = Array<CreateProjectTarget1> | CreateProjectTarget2;
|
|
399
400
|
export declare const CreateProjectProjectsResponseType: {
|
|
400
401
|
readonly System: "system";
|
|
402
|
+
readonly Secret: "secret";
|
|
401
403
|
readonly Encrypted: "encrypted";
|
|
402
404
|
readonly Plain: "plain";
|
|
403
405
|
readonly Sensitive: "sensitive";
|
|
404
|
-
readonly Secret: "secret";
|
|
405
406
|
};
|
|
406
407
|
export type CreateProjectProjectsResponseType = ClosedEnum<typeof CreateProjectProjectsResponseType>;
|
|
407
408
|
export declare const CreateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type: {
|
|
@@ -962,18 +963,18 @@ export type CreateProjectLinkProjectsDeployHooks = {
|
|
|
962
963
|
};
|
|
963
964
|
export type CreateProjectLink2 = {
|
|
964
965
|
type: CreateProjectLinkProjectsType;
|
|
965
|
-
repo?: string | undefined;
|
|
966
|
-
repoId?: number | undefined;
|
|
967
966
|
updatedAt?: number | undefined;
|
|
968
967
|
createdAt?: number | undefined;
|
|
968
|
+
repo?: string | undefined;
|
|
969
|
+
sourceless?: boolean | undefined;
|
|
969
970
|
org: string;
|
|
970
971
|
/**
|
|
971
972
|
* 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.
|
|
972
973
|
*/
|
|
973
974
|
repoOwnerId?: number | undefined;
|
|
975
|
+
repoId?: number | undefined;
|
|
974
976
|
deployHooks: Array<CreateProjectLinkProjectsDeployHooks>;
|
|
975
977
|
gitCredentialId: string;
|
|
976
|
-
sourceless?: boolean | undefined;
|
|
977
978
|
productionBranch: string;
|
|
978
979
|
};
|
|
979
980
|
export declare const CreateProjectLinkType: {
|
|
@@ -1073,6 +1074,7 @@ export type CreateProjectProjectsResourceConfig = {
|
|
|
1073
1074
|
functionZeroConfigFailover?: boolean | undefined;
|
|
1074
1075
|
elasticConcurrencyEnabled?: boolean | undefined;
|
|
1075
1076
|
buildMachineType?: CreateProjectBuildMachineType | undefined;
|
|
1077
|
+
isNSNBDisabled?: boolean | undefined;
|
|
1076
1078
|
};
|
|
1077
1079
|
/**
|
|
1078
1080
|
* Description of why a project was rolled back, and by whom. Note that lastAliasRequest contains the from/to details of the rollback.
|
|
@@ -1148,10 +1150,11 @@ export type CreateProjectDefaultResourceConfig = {
|
|
|
1148
1150
|
functionZeroConfigFailover?: boolean | undefined;
|
|
1149
1151
|
elasticConcurrencyEnabled?: boolean | undefined;
|
|
1150
1152
|
buildMachineType?: CreateProjectProjectsBuildMachineType | undefined;
|
|
1153
|
+
isNSNBDisabled?: boolean | undefined;
|
|
1151
1154
|
};
|
|
1152
1155
|
export declare const CreateProjectProjectsDeploymentType: {
|
|
1153
|
-
readonly Preview: "preview";
|
|
1154
1156
|
readonly All: "all";
|
|
1157
|
+
readonly Preview: "preview";
|
|
1155
1158
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
1156
1159
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
1157
1160
|
};
|
|
@@ -1291,73 +1294,6 @@ export type CreateProjectTargets = {
|
|
|
1291
1294
|
withCache?: boolean | undefined;
|
|
1292
1295
|
};
|
|
1293
1296
|
export type CreateProjectPermissions = {
|
|
1294
|
-
aliasProject?: Array<ACLAction> | undefined;
|
|
1295
|
-
aliasProtectionBypass?: Array<ACLAction> | undefined;
|
|
1296
|
-
buildMachine?: Array<ACLAction> | undefined;
|
|
1297
|
-
productionAliasProtectionBypass?: Array<ACLAction> | undefined;
|
|
1298
|
-
connectConfigurationLink?: Array<ACLAction> | undefined;
|
|
1299
|
-
dataCacheNamespace?: Array<ACLAction> | undefined;
|
|
1300
|
-
deployment?: Array<ACLAction> | undefined;
|
|
1301
|
-
deploymentBuildLogs?: Array<ACLAction> | undefined;
|
|
1302
|
-
deploymentCheck?: Array<ACLAction> | undefined;
|
|
1303
|
-
deploymentCheckPreview?: Array<ACLAction> | undefined;
|
|
1304
|
-
deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
|
|
1305
|
-
deploymentProductionGit?: Array<ACLAction> | undefined;
|
|
1306
|
-
deploymentV0?: Array<ACLAction> | undefined;
|
|
1307
|
-
deploymentPreview?: Array<ACLAction> | undefined;
|
|
1308
|
-
deploymentPrivate?: Array<ACLAction> | undefined;
|
|
1309
|
-
deploymentPromote?: Array<ACLAction> | undefined;
|
|
1310
|
-
deploymentRollback?: Array<ACLAction> | undefined;
|
|
1311
|
-
edgeCacheNamespace?: Array<ACLAction> | undefined;
|
|
1312
|
-
environments?: Array<ACLAction> | undefined;
|
|
1313
|
-
logs?: Array<ACLAction> | undefined;
|
|
1314
|
-
logsPreset?: Array<ACLAction> | undefined;
|
|
1315
|
-
passwordProtection?: Array<ACLAction> | undefined;
|
|
1316
|
-
optionsAllowlist?: Array<ACLAction> | undefined;
|
|
1317
|
-
job?: Array<ACLAction> | undefined;
|
|
1318
|
-
observabilityData?: Array<ACLAction> | undefined;
|
|
1319
|
-
onDemandBuild?: Array<ACLAction> | undefined;
|
|
1320
|
-
onDemandConcurrency?: Array<ACLAction> | undefined;
|
|
1321
|
-
project?: Array<ACLAction> | undefined;
|
|
1322
|
-
projectFromV0?: Array<ACLAction> | undefined;
|
|
1323
|
-
projectAccessGroup?: Array<ACLAction> | undefined;
|
|
1324
|
-
projectAnalyticsSampling?: Array<ACLAction> | undefined;
|
|
1325
|
-
projectCheck?: Array<ACLAction> | undefined;
|
|
1326
|
-
projectCheckRun?: Array<ACLAction> | undefined;
|
|
1327
|
-
projectDeploymentHook?: Array<ACLAction> | undefined;
|
|
1328
|
-
projectDomain?: Array<ACLAction> | undefined;
|
|
1329
|
-
projectDomainMove?: Array<ACLAction> | undefined;
|
|
1330
|
-
projectDomainCheckConfig?: Array<ACLAction> | undefined;
|
|
1331
|
-
projectEnvVars?: Array<ACLAction> | undefined;
|
|
1332
|
-
projectEnvVarsProduction?: Array<ACLAction> | undefined;
|
|
1333
|
-
projectEnvVarsUnownedByIntegration?: Array<ACLAction> | undefined;
|
|
1334
|
-
projectFlags?: Array<ACLAction> | undefined;
|
|
1335
|
-
projectId?: Array<ACLAction> | undefined;
|
|
1336
|
-
projectIntegrationConfiguration?: Array<ACLAction> | undefined;
|
|
1337
|
-
projectLink?: Array<ACLAction> | undefined;
|
|
1338
|
-
projectMember?: Array<ACLAction> | undefined;
|
|
1339
|
-
projectMonitoring?: Array<ACLAction> | undefined;
|
|
1340
|
-
projectPermissions?: Array<ACLAction> | undefined;
|
|
1341
|
-
projectProductionBranch?: Array<ACLAction> | undefined;
|
|
1342
|
-
projectTransfer?: Array<ACLAction> | undefined;
|
|
1343
|
-
projectTransferOut?: Array<ACLAction> | undefined;
|
|
1344
|
-
projectProtectionBypass?: Array<ACLAction> | undefined;
|
|
1345
|
-
projectUsage?: Array<ACLAction> | undefined;
|
|
1346
|
-
projectAnalyticsUsage?: Array<ACLAction> | undefined;
|
|
1347
|
-
projectSupportCase?: Array<ACLAction> | undefined;
|
|
1348
|
-
projectSupportCaseComment?: Array<ACLAction> | undefined;
|
|
1349
|
-
projectDeploymentExpiration?: Array<ACLAction> | undefined;
|
|
1350
|
-
projectRollingRelease?: Array<ACLAction> | undefined;
|
|
1351
|
-
projectTier?: Array<ACLAction> | undefined;
|
|
1352
|
-
projectOIDCToken?: Array<ACLAction> | undefined;
|
|
1353
|
-
seawallConfig?: Array<ACLAction> | undefined;
|
|
1354
|
-
skewProtection?: Array<ACLAction> | undefined;
|
|
1355
|
-
analytics?: Array<ACLAction> | undefined;
|
|
1356
|
-
trustedIps?: Array<ACLAction> | undefined;
|
|
1357
|
-
v0Chat?: Array<ACLAction> | undefined;
|
|
1358
|
-
webAnalytics?: Array<ACLAction> | undefined;
|
|
1359
|
-
sharedEnvVarConnection?: Array<ACLAction> | undefined;
|
|
1360
|
-
sonar?: Array<ACLAction> | undefined;
|
|
1361
1297
|
oauth2Connection?: Array<ACLAction> | undefined;
|
|
1362
1298
|
user?: Array<ACLAction> | undefined;
|
|
1363
1299
|
userConnection?: Array<ACLAction> | undefined;
|
|
@@ -1503,6 +1439,73 @@ export type CreateProjectPermissions = {
|
|
|
1503
1439
|
vercelRunExec?: Array<ACLAction> | undefined;
|
|
1504
1440
|
apiKey?: Array<ACLAction> | undefined;
|
|
1505
1441
|
apiKeyOwnedBySelf?: Array<ACLAction> | undefined;
|
|
1442
|
+
aliasProject?: Array<ACLAction> | undefined;
|
|
1443
|
+
aliasProtectionBypass?: Array<ACLAction> | undefined;
|
|
1444
|
+
buildMachine?: Array<ACLAction> | undefined;
|
|
1445
|
+
productionAliasProtectionBypass?: Array<ACLAction> | undefined;
|
|
1446
|
+
connectConfigurationLink?: Array<ACLAction> | undefined;
|
|
1447
|
+
dataCacheNamespace?: Array<ACLAction> | undefined;
|
|
1448
|
+
deployment?: Array<ACLAction> | undefined;
|
|
1449
|
+
deploymentBuildLogs?: Array<ACLAction> | undefined;
|
|
1450
|
+
deploymentCheck?: Array<ACLAction> | undefined;
|
|
1451
|
+
deploymentCheckPreview?: Array<ACLAction> | undefined;
|
|
1452
|
+
deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
|
|
1453
|
+
deploymentProductionGit?: Array<ACLAction> | undefined;
|
|
1454
|
+
deploymentV0?: Array<ACLAction> | undefined;
|
|
1455
|
+
deploymentPreview?: Array<ACLAction> | undefined;
|
|
1456
|
+
deploymentPrivate?: Array<ACLAction> | undefined;
|
|
1457
|
+
deploymentPromote?: Array<ACLAction> | undefined;
|
|
1458
|
+
deploymentRollback?: Array<ACLAction> | undefined;
|
|
1459
|
+
edgeCacheNamespace?: Array<ACLAction> | undefined;
|
|
1460
|
+
environments?: Array<ACLAction> | undefined;
|
|
1461
|
+
logs?: Array<ACLAction> | undefined;
|
|
1462
|
+
logsPreset?: Array<ACLAction> | undefined;
|
|
1463
|
+
passwordProtection?: Array<ACLAction> | undefined;
|
|
1464
|
+
optionsAllowlist?: Array<ACLAction> | undefined;
|
|
1465
|
+
job?: Array<ACLAction> | undefined;
|
|
1466
|
+
observabilityData?: Array<ACLAction> | undefined;
|
|
1467
|
+
onDemandBuild?: Array<ACLAction> | undefined;
|
|
1468
|
+
onDemandConcurrency?: Array<ACLAction> | undefined;
|
|
1469
|
+
project?: Array<ACLAction> | undefined;
|
|
1470
|
+
projectFromV0?: Array<ACLAction> | undefined;
|
|
1471
|
+
projectAccessGroup?: Array<ACLAction> | undefined;
|
|
1472
|
+
projectAnalyticsSampling?: Array<ACLAction> | undefined;
|
|
1473
|
+
projectCheck?: Array<ACLAction> | undefined;
|
|
1474
|
+
projectCheckRun?: Array<ACLAction> | undefined;
|
|
1475
|
+
projectDeploymentHook?: Array<ACLAction> | undefined;
|
|
1476
|
+
projectDomain?: Array<ACLAction> | undefined;
|
|
1477
|
+
projectDomainMove?: Array<ACLAction> | undefined;
|
|
1478
|
+
projectDomainCheckConfig?: Array<ACLAction> | undefined;
|
|
1479
|
+
projectEnvVars?: Array<ACLAction> | undefined;
|
|
1480
|
+
projectEnvVarsProduction?: Array<ACLAction> | undefined;
|
|
1481
|
+
projectEnvVarsUnownedByIntegration?: Array<ACLAction> | undefined;
|
|
1482
|
+
projectFlags?: Array<ACLAction> | undefined;
|
|
1483
|
+
projectId?: Array<ACLAction> | undefined;
|
|
1484
|
+
projectIntegrationConfiguration?: Array<ACLAction> | undefined;
|
|
1485
|
+
projectLink?: Array<ACLAction> | undefined;
|
|
1486
|
+
projectMember?: Array<ACLAction> | undefined;
|
|
1487
|
+
projectMonitoring?: Array<ACLAction> | undefined;
|
|
1488
|
+
projectPermissions?: Array<ACLAction> | undefined;
|
|
1489
|
+
projectProductionBranch?: Array<ACLAction> | undefined;
|
|
1490
|
+
projectTransfer?: Array<ACLAction> | undefined;
|
|
1491
|
+
projectTransferOut?: Array<ACLAction> | undefined;
|
|
1492
|
+
projectProtectionBypass?: Array<ACLAction> | undefined;
|
|
1493
|
+
projectUsage?: Array<ACLAction> | undefined;
|
|
1494
|
+
projectAnalyticsUsage?: Array<ACLAction> | undefined;
|
|
1495
|
+
projectSupportCase?: Array<ACLAction> | undefined;
|
|
1496
|
+
projectSupportCaseComment?: Array<ACLAction> | undefined;
|
|
1497
|
+
projectDeploymentExpiration?: Array<ACLAction> | undefined;
|
|
1498
|
+
projectRollingRelease?: Array<ACLAction> | undefined;
|
|
1499
|
+
projectTier?: Array<ACLAction> | undefined;
|
|
1500
|
+
projectOIDCToken?: Array<ACLAction> | undefined;
|
|
1501
|
+
seawallConfig?: Array<ACLAction> | undefined;
|
|
1502
|
+
skewProtection?: Array<ACLAction> | undefined;
|
|
1503
|
+
analytics?: Array<ACLAction> | undefined;
|
|
1504
|
+
trustedIps?: Array<ACLAction> | undefined;
|
|
1505
|
+
v0Chat?: Array<ACLAction> | undefined;
|
|
1506
|
+
webAnalytics?: Array<ACLAction> | undefined;
|
|
1507
|
+
sharedEnvVarConnection?: Array<ACLAction> | undefined;
|
|
1508
|
+
sonar?: Array<ACLAction> | undefined;
|
|
1506
1509
|
};
|
|
1507
1510
|
export type CreateProjectLastRollbackTarget = {};
|
|
1508
1511
|
export declare const CreateProjectJobStatus: {
|
|
@@ -1551,22 +1554,22 @@ export type CreateProjectProtectionBypass1 = {
|
|
|
1551
1554
|
};
|
|
1552
1555
|
export type CreateProjectProtectionBypass = CreateProjectProtectionBypass1 | CreateProjectProtectionBypass2;
|
|
1553
1556
|
export declare const CreateProjectTrustedIpsProjectsDeploymentType: {
|
|
1554
|
-
readonly Preview: "preview";
|
|
1555
|
-
readonly Production: "production";
|
|
1556
1557
|
readonly All: "all";
|
|
1558
|
+
readonly Preview: "preview";
|
|
1557
1559
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
1558
1560
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
1561
|
+
readonly Production: "production";
|
|
1559
1562
|
};
|
|
1560
1563
|
export type CreateProjectTrustedIpsProjectsDeploymentType = ClosedEnum<typeof CreateProjectTrustedIpsProjectsDeploymentType>;
|
|
1561
1564
|
export type CreateProjectTrustedIps2 = {
|
|
1562
1565
|
deploymentType: CreateProjectTrustedIpsProjectsDeploymentType;
|
|
1563
1566
|
};
|
|
1564
1567
|
export declare const CreateProjectTrustedIpsDeploymentType: {
|
|
1565
|
-
readonly Preview: "preview";
|
|
1566
|
-
readonly Production: "production";
|
|
1567
1568
|
readonly All: "all";
|
|
1569
|
+
readonly Preview: "preview";
|
|
1568
1570
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
1569
1571
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
1572
|
+
readonly Production: "production";
|
|
1570
1573
|
};
|
|
1571
1574
|
export type CreateProjectTrustedIpsDeploymentType = ClosedEnum<typeof CreateProjectTrustedIpsDeploymentType>;
|
|
1572
1575
|
export type TrustedIpsAddresses = {
|
|
@@ -2211,6 +2214,7 @@ export type CreateProjectResourceConfig$Outbound = {
|
|
|
2211
2214
|
functionZeroConfigFailover?: boolean | undefined;
|
|
2212
2215
|
elasticConcurrencyEnabled?: boolean | undefined;
|
|
2213
2216
|
buildMachineType?: string | undefined;
|
|
2217
|
+
isNSNBDisabled?: boolean | undefined;
|
|
2214
2218
|
};
|
|
2215
2219
|
/** @internal */
|
|
2216
2220
|
export declare const CreateProjectResourceConfig$outboundSchema: z.ZodType<CreateProjectResourceConfig$Outbound, z.ZodTypeDef, CreateProjectResourceConfig>;
|
|
@@ -2617,18 +2621,18 @@ export declare namespace CreateProjectProjectsResponseType$ {
|
|
|
2617
2621
|
/** @deprecated use `CreateProjectProjectsResponseType$inboundSchema` instead. */
|
|
2618
2622
|
const inboundSchema: z.ZodNativeEnum<{
|
|
2619
2623
|
readonly System: "system";
|
|
2624
|
+
readonly Secret: "secret";
|
|
2620
2625
|
readonly Encrypted: "encrypted";
|
|
2621
2626
|
readonly Plain: "plain";
|
|
2622
2627
|
readonly Sensitive: "sensitive";
|
|
2623
|
-
readonly Secret: "secret";
|
|
2624
2628
|
}>;
|
|
2625
2629
|
/** @deprecated use `CreateProjectProjectsResponseType$outboundSchema` instead. */
|
|
2626
2630
|
const outboundSchema: z.ZodNativeEnum<{
|
|
2627
2631
|
readonly System: "system";
|
|
2632
|
+
readonly Secret: "secret";
|
|
2628
2633
|
readonly Encrypted: "encrypted";
|
|
2629
2634
|
readonly Plain: "plain";
|
|
2630
2635
|
readonly Sensitive: "sensitive";
|
|
2631
|
-
readonly Secret: "secret";
|
|
2632
2636
|
}>;
|
|
2633
2637
|
}
|
|
2634
2638
|
/** @internal */
|
|
@@ -4288,15 +4292,15 @@ export declare const CreateProjectLink2$inboundSchema: z.ZodType<CreateProjectLi
|
|
|
4288
4292
|
/** @internal */
|
|
4289
4293
|
export type CreateProjectLink2$Outbound = {
|
|
4290
4294
|
type: string;
|
|
4291
|
-
repo?: string | undefined;
|
|
4292
|
-
repoId?: number | undefined;
|
|
4293
4295
|
updatedAt?: number | undefined;
|
|
4294
4296
|
createdAt?: number | undefined;
|
|
4297
|
+
repo?: string | undefined;
|
|
4298
|
+
sourceless?: boolean | undefined;
|
|
4295
4299
|
org: string;
|
|
4296
4300
|
repoOwnerId?: number | undefined;
|
|
4301
|
+
repoId?: number | undefined;
|
|
4297
4302
|
deployHooks: Array<CreateProjectLinkProjectsDeployHooks$Outbound>;
|
|
4298
4303
|
gitCredentialId: string;
|
|
4299
|
-
sourceless?: boolean | undefined;
|
|
4300
4304
|
productionBranch: string;
|
|
4301
4305
|
};
|
|
4302
4306
|
/** @internal */
|
|
@@ -4631,6 +4635,7 @@ export type CreateProjectProjectsResourceConfig$Outbound = {
|
|
|
4631
4635
|
functionZeroConfigFailover?: boolean | undefined;
|
|
4632
4636
|
elasticConcurrencyEnabled?: boolean | undefined;
|
|
4633
4637
|
buildMachineType?: string | undefined;
|
|
4638
|
+
isNSNBDisabled?: boolean | undefined;
|
|
4634
4639
|
};
|
|
4635
4640
|
/** @internal */
|
|
4636
4641
|
export declare const CreateProjectProjectsResourceConfig$outboundSchema: z.ZodType<CreateProjectProjectsResourceConfig$Outbound, z.ZodTypeDef, CreateProjectProjectsResourceConfig>;
|
|
@@ -4774,6 +4779,7 @@ export type CreateProjectDefaultResourceConfig$Outbound = {
|
|
|
4774
4779
|
functionZeroConfigFailover?: boolean | undefined;
|
|
4775
4780
|
elasticConcurrencyEnabled?: boolean | undefined;
|
|
4776
4781
|
buildMachineType?: string | undefined;
|
|
4782
|
+
isNSNBDisabled?: boolean | undefined;
|
|
4777
4783
|
};
|
|
4778
4784
|
/** @internal */
|
|
4779
4785
|
export declare const CreateProjectDefaultResourceConfig$outboundSchema: z.ZodType<CreateProjectDefaultResourceConfig$Outbound, z.ZodTypeDef, CreateProjectDefaultResourceConfig>;
|
|
@@ -4802,15 +4808,15 @@ export declare const CreateProjectProjectsDeploymentType$outboundSchema: z.ZodNa
|
|
|
4802
4808
|
export declare namespace CreateProjectProjectsDeploymentType$ {
|
|
4803
4809
|
/** @deprecated use `CreateProjectProjectsDeploymentType$inboundSchema` instead. */
|
|
4804
4810
|
const inboundSchema: z.ZodNativeEnum<{
|
|
4805
|
-
readonly Preview: "preview";
|
|
4806
4811
|
readonly All: "all";
|
|
4812
|
+
readonly Preview: "preview";
|
|
4807
4813
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
4808
4814
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
4809
4815
|
}>;
|
|
4810
4816
|
/** @deprecated use `CreateProjectProjectsDeploymentType$outboundSchema` instead. */
|
|
4811
4817
|
const outboundSchema: z.ZodNativeEnum<{
|
|
4812
|
-
readonly Preview: "preview";
|
|
4813
4818
|
readonly All: "all";
|
|
4819
|
+
readonly Preview: "preview";
|
|
4814
4820
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
4815
4821
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
4816
4822
|
}>;
|
|
@@ -5204,73 +5210,6 @@ export declare function createProjectTargetsFromJSON(jsonString: string): SafePa
|
|
|
5204
5210
|
export declare const CreateProjectPermissions$inboundSchema: z.ZodType<CreateProjectPermissions, z.ZodTypeDef, unknown>;
|
|
5205
5211
|
/** @internal */
|
|
5206
5212
|
export type CreateProjectPermissions$Outbound = {
|
|
5207
|
-
aliasProject?: Array<string> | undefined;
|
|
5208
|
-
aliasProtectionBypass?: Array<string> | undefined;
|
|
5209
|
-
buildMachine?: Array<string> | undefined;
|
|
5210
|
-
productionAliasProtectionBypass?: Array<string> | undefined;
|
|
5211
|
-
connectConfigurationLink?: Array<string> | undefined;
|
|
5212
|
-
dataCacheNamespace?: Array<string> | undefined;
|
|
5213
|
-
deployment?: Array<string> | undefined;
|
|
5214
|
-
deploymentBuildLogs?: Array<string> | undefined;
|
|
5215
|
-
deploymentCheck?: Array<string> | undefined;
|
|
5216
|
-
deploymentCheckPreview?: Array<string> | undefined;
|
|
5217
|
-
deploymentCheckReRunFromProductionBranch?: Array<string> | undefined;
|
|
5218
|
-
deploymentProductionGit?: Array<string> | undefined;
|
|
5219
|
-
deploymentV0?: Array<string> | undefined;
|
|
5220
|
-
deploymentPreview?: Array<string> | undefined;
|
|
5221
|
-
deploymentPrivate?: Array<string> | undefined;
|
|
5222
|
-
deploymentPromote?: Array<string> | undefined;
|
|
5223
|
-
deploymentRollback?: Array<string> | undefined;
|
|
5224
|
-
edgeCacheNamespace?: Array<string> | undefined;
|
|
5225
|
-
environments?: Array<string> | undefined;
|
|
5226
|
-
logs?: Array<string> | undefined;
|
|
5227
|
-
logsPreset?: Array<string> | undefined;
|
|
5228
|
-
passwordProtection?: Array<string> | undefined;
|
|
5229
|
-
optionsAllowlist?: Array<string> | undefined;
|
|
5230
|
-
job?: Array<string> | undefined;
|
|
5231
|
-
observabilityData?: Array<string> | undefined;
|
|
5232
|
-
onDemandBuild?: Array<string> | undefined;
|
|
5233
|
-
onDemandConcurrency?: Array<string> | undefined;
|
|
5234
|
-
project?: Array<string> | undefined;
|
|
5235
|
-
projectFromV0?: Array<string> | undefined;
|
|
5236
|
-
projectAccessGroup?: Array<string> | undefined;
|
|
5237
|
-
projectAnalyticsSampling?: Array<string> | undefined;
|
|
5238
|
-
projectCheck?: Array<string> | undefined;
|
|
5239
|
-
projectCheckRun?: Array<string> | undefined;
|
|
5240
|
-
projectDeploymentHook?: Array<string> | undefined;
|
|
5241
|
-
projectDomain?: Array<string> | undefined;
|
|
5242
|
-
projectDomainMove?: Array<string> | undefined;
|
|
5243
|
-
projectDomainCheckConfig?: Array<string> | undefined;
|
|
5244
|
-
projectEnvVars?: Array<string> | undefined;
|
|
5245
|
-
projectEnvVarsProduction?: Array<string> | undefined;
|
|
5246
|
-
projectEnvVarsUnownedByIntegration?: Array<string> | undefined;
|
|
5247
|
-
projectFlags?: Array<string> | undefined;
|
|
5248
|
-
projectId?: Array<string> | undefined;
|
|
5249
|
-
projectIntegrationConfiguration?: Array<string> | undefined;
|
|
5250
|
-
projectLink?: Array<string> | undefined;
|
|
5251
|
-
projectMember?: Array<string> | undefined;
|
|
5252
|
-
projectMonitoring?: Array<string> | undefined;
|
|
5253
|
-
projectPermissions?: Array<string> | undefined;
|
|
5254
|
-
projectProductionBranch?: Array<string> | undefined;
|
|
5255
|
-
projectTransfer?: Array<string> | undefined;
|
|
5256
|
-
projectTransferOut?: Array<string> | undefined;
|
|
5257
|
-
projectProtectionBypass?: Array<string> | undefined;
|
|
5258
|
-
projectUsage?: Array<string> | undefined;
|
|
5259
|
-
projectAnalyticsUsage?: Array<string> | undefined;
|
|
5260
|
-
projectSupportCase?: Array<string> | undefined;
|
|
5261
|
-
projectSupportCaseComment?: Array<string> | undefined;
|
|
5262
|
-
projectDeploymentExpiration?: Array<string> | undefined;
|
|
5263
|
-
projectRollingRelease?: Array<string> | undefined;
|
|
5264
|
-
projectTier?: Array<string> | undefined;
|
|
5265
|
-
projectOIDCToken?: Array<string> | undefined;
|
|
5266
|
-
seawallConfig?: Array<string> | undefined;
|
|
5267
|
-
skewProtection?: Array<string> | undefined;
|
|
5268
|
-
analytics?: Array<string> | undefined;
|
|
5269
|
-
trustedIps?: Array<string> | undefined;
|
|
5270
|
-
v0Chat?: Array<string> | undefined;
|
|
5271
|
-
webAnalytics?: Array<string> | undefined;
|
|
5272
|
-
sharedEnvVarConnection?: Array<string> | undefined;
|
|
5273
|
-
sonar?: Array<string> | undefined;
|
|
5274
5213
|
oauth2Connection?: Array<string> | undefined;
|
|
5275
5214
|
user?: Array<string> | undefined;
|
|
5276
5215
|
userConnection?: Array<string> | undefined;
|
|
@@ -5416,6 +5355,73 @@ export type CreateProjectPermissions$Outbound = {
|
|
|
5416
5355
|
vercelRunExec?: Array<string> | undefined;
|
|
5417
5356
|
apiKey?: Array<string> | undefined;
|
|
5418
5357
|
apiKeyOwnedBySelf?: Array<string> | undefined;
|
|
5358
|
+
aliasProject?: Array<string> | undefined;
|
|
5359
|
+
aliasProtectionBypass?: Array<string> | undefined;
|
|
5360
|
+
buildMachine?: Array<string> | undefined;
|
|
5361
|
+
productionAliasProtectionBypass?: Array<string> | undefined;
|
|
5362
|
+
connectConfigurationLink?: Array<string> | undefined;
|
|
5363
|
+
dataCacheNamespace?: Array<string> | undefined;
|
|
5364
|
+
deployment?: Array<string> | undefined;
|
|
5365
|
+
deploymentBuildLogs?: Array<string> | undefined;
|
|
5366
|
+
deploymentCheck?: Array<string> | undefined;
|
|
5367
|
+
deploymentCheckPreview?: Array<string> | undefined;
|
|
5368
|
+
deploymentCheckReRunFromProductionBranch?: Array<string> | undefined;
|
|
5369
|
+
deploymentProductionGit?: Array<string> | undefined;
|
|
5370
|
+
deploymentV0?: Array<string> | undefined;
|
|
5371
|
+
deploymentPreview?: Array<string> | undefined;
|
|
5372
|
+
deploymentPrivate?: Array<string> | undefined;
|
|
5373
|
+
deploymentPromote?: Array<string> | undefined;
|
|
5374
|
+
deploymentRollback?: Array<string> | undefined;
|
|
5375
|
+
edgeCacheNamespace?: Array<string> | undefined;
|
|
5376
|
+
environments?: Array<string> | undefined;
|
|
5377
|
+
logs?: Array<string> | undefined;
|
|
5378
|
+
logsPreset?: Array<string> | undefined;
|
|
5379
|
+
passwordProtection?: Array<string> | undefined;
|
|
5380
|
+
optionsAllowlist?: Array<string> | undefined;
|
|
5381
|
+
job?: Array<string> | undefined;
|
|
5382
|
+
observabilityData?: Array<string> | undefined;
|
|
5383
|
+
onDemandBuild?: Array<string> | undefined;
|
|
5384
|
+
onDemandConcurrency?: Array<string> | undefined;
|
|
5385
|
+
project?: Array<string> | undefined;
|
|
5386
|
+
projectFromV0?: Array<string> | undefined;
|
|
5387
|
+
projectAccessGroup?: Array<string> | undefined;
|
|
5388
|
+
projectAnalyticsSampling?: Array<string> | undefined;
|
|
5389
|
+
projectCheck?: Array<string> | undefined;
|
|
5390
|
+
projectCheckRun?: Array<string> | undefined;
|
|
5391
|
+
projectDeploymentHook?: Array<string> | undefined;
|
|
5392
|
+
projectDomain?: Array<string> | undefined;
|
|
5393
|
+
projectDomainMove?: Array<string> | undefined;
|
|
5394
|
+
projectDomainCheckConfig?: Array<string> | undefined;
|
|
5395
|
+
projectEnvVars?: Array<string> | undefined;
|
|
5396
|
+
projectEnvVarsProduction?: Array<string> | undefined;
|
|
5397
|
+
projectEnvVarsUnownedByIntegration?: Array<string> | undefined;
|
|
5398
|
+
projectFlags?: Array<string> | undefined;
|
|
5399
|
+
projectId?: Array<string> | undefined;
|
|
5400
|
+
projectIntegrationConfiguration?: Array<string> | undefined;
|
|
5401
|
+
projectLink?: Array<string> | undefined;
|
|
5402
|
+
projectMember?: Array<string> | undefined;
|
|
5403
|
+
projectMonitoring?: Array<string> | undefined;
|
|
5404
|
+
projectPermissions?: Array<string> | undefined;
|
|
5405
|
+
projectProductionBranch?: Array<string> | undefined;
|
|
5406
|
+
projectTransfer?: Array<string> | undefined;
|
|
5407
|
+
projectTransferOut?: Array<string> | undefined;
|
|
5408
|
+
projectProtectionBypass?: Array<string> | undefined;
|
|
5409
|
+
projectUsage?: Array<string> | undefined;
|
|
5410
|
+
projectAnalyticsUsage?: Array<string> | undefined;
|
|
5411
|
+
projectSupportCase?: Array<string> | undefined;
|
|
5412
|
+
projectSupportCaseComment?: Array<string> | undefined;
|
|
5413
|
+
projectDeploymentExpiration?: Array<string> | undefined;
|
|
5414
|
+
projectRollingRelease?: Array<string> | undefined;
|
|
5415
|
+
projectTier?: Array<string> | undefined;
|
|
5416
|
+
projectOIDCToken?: Array<string> | undefined;
|
|
5417
|
+
seawallConfig?: Array<string> | undefined;
|
|
5418
|
+
skewProtection?: Array<string> | undefined;
|
|
5419
|
+
analytics?: Array<string> | undefined;
|
|
5420
|
+
trustedIps?: Array<string> | undefined;
|
|
5421
|
+
v0Chat?: Array<string> | undefined;
|
|
5422
|
+
webAnalytics?: Array<string> | undefined;
|
|
5423
|
+
sharedEnvVarConnection?: Array<string> | undefined;
|
|
5424
|
+
sonar?: Array<string> | undefined;
|
|
5419
5425
|
};
|
|
5420
5426
|
/** @internal */
|
|
5421
5427
|
export declare const CreateProjectPermissions$outboundSchema: z.ZodType<CreateProjectPermissions$Outbound, z.ZodTypeDef, CreateProjectPermissions>;
|
|
@@ -5643,19 +5649,19 @@ export declare const CreateProjectTrustedIpsProjectsDeploymentType$outboundSchem
|
|
|
5643
5649
|
export declare namespace CreateProjectTrustedIpsProjectsDeploymentType$ {
|
|
5644
5650
|
/** @deprecated use `CreateProjectTrustedIpsProjectsDeploymentType$inboundSchema` instead. */
|
|
5645
5651
|
const inboundSchema: z.ZodNativeEnum<{
|
|
5646
|
-
readonly Preview: "preview";
|
|
5647
|
-
readonly Production: "production";
|
|
5648
5652
|
readonly All: "all";
|
|
5653
|
+
readonly Preview: "preview";
|
|
5649
5654
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
5650
5655
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
5656
|
+
readonly Production: "production";
|
|
5651
5657
|
}>;
|
|
5652
5658
|
/** @deprecated use `CreateProjectTrustedIpsProjectsDeploymentType$outboundSchema` instead. */
|
|
5653
5659
|
const outboundSchema: z.ZodNativeEnum<{
|
|
5654
|
-
readonly Preview: "preview";
|
|
5655
|
-
readonly Production: "production";
|
|
5656
5660
|
readonly All: "all";
|
|
5661
|
+
readonly Preview: "preview";
|
|
5657
5662
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
5658
5663
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
5664
|
+
readonly Production: "production";
|
|
5659
5665
|
}>;
|
|
5660
5666
|
}
|
|
5661
5667
|
/** @internal */
|
|
@@ -5691,19 +5697,19 @@ export declare const CreateProjectTrustedIpsDeploymentType$outboundSchema: z.Zod
|
|
|
5691
5697
|
export declare namespace CreateProjectTrustedIpsDeploymentType$ {
|
|
5692
5698
|
/** @deprecated use `CreateProjectTrustedIpsDeploymentType$inboundSchema` instead. */
|
|
5693
5699
|
const inboundSchema: z.ZodNativeEnum<{
|
|
5694
|
-
readonly Preview: "preview";
|
|
5695
|
-
readonly Production: "production";
|
|
5696
5700
|
readonly All: "all";
|
|
5701
|
+
readonly Preview: "preview";
|
|
5697
5702
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
5698
5703
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
5704
|
+
readonly Production: "production";
|
|
5699
5705
|
}>;
|
|
5700
5706
|
/** @deprecated use `CreateProjectTrustedIpsDeploymentType$outboundSchema` instead. */
|
|
5701
5707
|
const outboundSchema: z.ZodNativeEnum<{
|
|
5702
|
-
readonly Preview: "preview";
|
|
5703
|
-
readonly Production: "production";
|
|
5704
5708
|
readonly All: "all";
|
|
5709
|
+
readonly Preview: "preview";
|
|
5705
5710
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
5706
5711
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
5712
|
+
readonly Production: "production";
|
|
5707
5713
|
}>;
|
|
5708
5714
|
}
|
|
5709
5715
|
/** @internal */
|