@vercel/sdk 1.10.2 → 1.10.4
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 +582 -281
- package/bin/mcp-server.js.map +21 -21
- package/docs/sdks/aliases/README.md +1 -1
- package/esm/__tests__/aliases.test.js +1 -20
- package/esm/__tests__/aliases.test.js.map +1 -1
- package/esm/__tests__/teams.test.js +0 -2
- package/esm/__tests__/teams.test.js.map +1 -1
- package/esm/funcs/aliasesGetAlias.d.ts +2 -2
- package/esm/funcs/aliasesGetAlias.d.ts.map +1 -1
- package/esm/funcs/aliasesGetAlias.js +2 -2
- package/esm/funcs/aliasesGetAlias.js.map +1 -1
- package/esm/funcs/domainsGetDomainConfig.js +1 -0
- package/esm/funcs/domainsGetDomainConfig.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/createdeploymentop.d.ts +50 -50
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +28 -28
- 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 +156 -156
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +148 -148
- 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/getaliasop.d.ts +654 -0
- package/esm/models/getaliasop.d.ts.map +1 -1
- package/esm/models/getaliasop.js +546 -0
- package/esm/models/getaliasop.js.map +1 -1
- package/esm/models/getdomainconfigop.d.ts +63 -0
- package/esm/models/getdomainconfigop.d.ts.map +1 -1
- package/esm/models/getdomainconfigop.js +52 -0
- package/esm/models/getdomainconfigop.js.map +1 -1
- package/esm/models/getfirewallconfigop.d.ts +0 -3
- package/esm/models/getfirewallconfigop.d.ts.map +1 -1
- package/esm/models/getfirewallconfigop.js +0 -1
- package/esm/models/getfirewallconfigop.js.map +1 -1
- package/esm/models/listaliasesop.d.ts +66 -66
- package/esm/models/listaliasesop.d.ts.map +1 -1
- package/esm/models/listaliasesop.js +78 -78
- package/esm/models/listaliasesop.js.map +1 -1
- package/esm/models/listdeploymentaliasesop.d.ts +30 -30
- package/esm/models/listdeploymentaliasesop.d.ts.map +1 -1
- package/esm/models/listdeploymentaliasesop.js +34 -34
- package/esm/models/listdeploymentaliasesop.js.map +1 -1
- package/esm/models/putfirewallconfigop.d.ts +0 -3
- package/esm/models/putfirewallconfigop.d.ts.map +1 -1
- package/esm/models/putfirewallconfigop.js +0 -1
- package/esm/models/putfirewallconfigop.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/team.d.ts +0 -2
- package/esm/models/team.d.ts.map +1 -1
- package/esm/models/team.js +0 -2
- package/esm/models/team.js.map +1 -1
- package/esm/models/teamlimited.d.ts +0 -2
- package/esm/models/teamlimited.d.ts.map +1 -1
- package/esm/models/teamlimited.js +0 -2
- package/esm/models/teamlimited.js.map +1 -1
- package/esm/sdk/aliases.d.ts +2 -2
- package/esm/sdk/aliases.d.ts.map +1 -1
- package/examples/package-lock.json +1 -1
- package/examples/projectsUpdateProject.example.ts +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/aliases.test.ts +1 -20
- package/src/__tests__/teams.test.ts +0 -2
- package/src/funcs/aliasesGetAlias.ts +6 -4
- package/src/funcs/domainsGetDomainConfig.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/createdeploymentop.ts +76 -54
- package/src/models/createprojectenvop.ts +2 -2
- package/src/models/createprojectop.ts +286 -286
- package/src/models/editprojectenvop.ts +1 -1
- package/src/models/filterprojectenvsop.ts +3 -3
- package/src/models/getaliasop.ts +1262 -0
- package/src/models/getdomainconfigop.ts +129 -0
- package/src/models/getfirewallconfigop.ts +0 -1
- package/src/models/listaliasesop.ts +143 -124
- package/src/models/listdeploymentaliasesop.ts +70 -58
- package/src/models/putfirewallconfigop.ts +0 -1
- package/src/models/removeprojectenvop.ts +3 -3
- package/src/models/team.ts +0 -4
- package/src/models/teamlimited.ts +0 -4
- package/src/sdk/aliases.ts +2 -2
- package/vercel-spec.json +874 -509
|
@@ -392,10 +392,10 @@ export type CreateProjectTarget1 = ClosedEnum<typeof CreateProjectTarget1>;
|
|
|
392
392
|
export type CreateProjectProjectsTarget = Array<CreateProjectTarget1> | CreateProjectTarget2;
|
|
393
393
|
export declare const CreateProjectProjectsResponseType: {
|
|
394
394
|
readonly System: "system";
|
|
395
|
-
readonly Secret: "secret";
|
|
396
395
|
readonly Encrypted: "encrypted";
|
|
397
396
|
readonly Plain: "plain";
|
|
398
397
|
readonly Sensitive: "sensitive";
|
|
398
|
+
readonly Secret: "secret";
|
|
399
399
|
};
|
|
400
400
|
export type CreateProjectProjectsResponseType = ClosedEnum<typeof CreateProjectProjectsResponseType>;
|
|
401
401
|
export declare const CreateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type: {
|
|
@@ -954,18 +954,18 @@ export type CreateProjectLinkProjectsDeployHooks = {
|
|
|
954
954
|
};
|
|
955
955
|
export type CreateProjectLink2 = {
|
|
956
956
|
type?: CreateProjectLinkProjectsType | undefined;
|
|
957
|
+
repo?: string | undefined;
|
|
958
|
+
repoId?: number | undefined;
|
|
957
959
|
updatedAt?: number | undefined;
|
|
958
960
|
createdAt?: number | undefined;
|
|
959
|
-
repo?: string | undefined;
|
|
960
|
-
sourceless?: boolean | undefined;
|
|
961
961
|
org?: string | undefined;
|
|
962
962
|
/**
|
|
963
963
|
* 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.
|
|
964
964
|
*/
|
|
965
965
|
repoOwnerId?: number | undefined;
|
|
966
|
-
repoId?: number | undefined;
|
|
967
966
|
deployHooks: Array<CreateProjectLinkProjectsDeployHooks>;
|
|
968
967
|
gitCredentialId?: string | undefined;
|
|
968
|
+
sourceless?: boolean | undefined;
|
|
969
969
|
productionBranch?: string | undefined;
|
|
970
970
|
};
|
|
971
971
|
export declare const CreateProjectLinkType: {
|
|
@@ -1142,8 +1142,8 @@ export type CreateProjectDefaultResourceConfig = {
|
|
|
1142
1142
|
buildMachineType?: CreateProjectProjectsBuildMachineType | undefined;
|
|
1143
1143
|
};
|
|
1144
1144
|
export declare const CreateProjectProjectsDeploymentType: {
|
|
1145
|
-
readonly All: "all";
|
|
1146
1145
|
readonly Preview: "preview";
|
|
1146
|
+
readonly All: "all";
|
|
1147
1147
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
1148
1148
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
1149
1149
|
};
|
|
@@ -1283,6 +1283,72 @@ export type CreateProjectTargets = {
|
|
|
1283
1283
|
withCache?: boolean | undefined;
|
|
1284
1284
|
};
|
|
1285
1285
|
export type CreateProjectPermissions = {
|
|
1286
|
+
aliasProject?: Array<ACLAction> | undefined;
|
|
1287
|
+
aliasProtectionBypass?: Array<ACLAction> | undefined;
|
|
1288
|
+
buildMachine?: Array<ACLAction> | undefined;
|
|
1289
|
+
productionAliasProtectionBypass?: Array<ACLAction> | undefined;
|
|
1290
|
+
connectConfigurationLink?: Array<ACLAction> | undefined;
|
|
1291
|
+
dataCacheNamespace?: Array<ACLAction> | undefined;
|
|
1292
|
+
deployment?: Array<ACLAction> | undefined;
|
|
1293
|
+
deploymentBuildLogs?: Array<ACLAction> | undefined;
|
|
1294
|
+
deploymentCheck?: Array<ACLAction> | undefined;
|
|
1295
|
+
deploymentCheckPreview?: Array<ACLAction> | undefined;
|
|
1296
|
+
deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
|
|
1297
|
+
deploymentProductionGit?: Array<ACLAction> | undefined;
|
|
1298
|
+
deploymentV0?: Array<ACLAction> | undefined;
|
|
1299
|
+
deploymentPreview?: Array<ACLAction> | undefined;
|
|
1300
|
+
deploymentPrivate?: Array<ACLAction> | undefined;
|
|
1301
|
+
deploymentPromote?: Array<ACLAction> | undefined;
|
|
1302
|
+
deploymentRollback?: Array<ACLAction> | undefined;
|
|
1303
|
+
edgeCacheNamespace?: Array<ACLAction> | undefined;
|
|
1304
|
+
environments?: Array<ACLAction> | undefined;
|
|
1305
|
+
logs?: Array<ACLAction> | undefined;
|
|
1306
|
+
logsPreset?: Array<ACLAction> | undefined;
|
|
1307
|
+
passwordProtection?: Array<ACLAction> | undefined;
|
|
1308
|
+
optionsAllowlist?: Array<ACLAction> | undefined;
|
|
1309
|
+
job?: Array<ACLAction> | undefined;
|
|
1310
|
+
observabilityData?: Array<ACLAction> | undefined;
|
|
1311
|
+
onDemandBuild?: Array<ACLAction> | undefined;
|
|
1312
|
+
onDemandConcurrency?: Array<ACLAction> | undefined;
|
|
1313
|
+
project?: Array<ACLAction> | undefined;
|
|
1314
|
+
projectFromV0?: Array<ACLAction> | undefined;
|
|
1315
|
+
projectAccessGroup?: Array<ACLAction> | undefined;
|
|
1316
|
+
projectAnalyticsSampling?: Array<ACLAction> | undefined;
|
|
1317
|
+
projectCheck?: Array<ACLAction> | undefined;
|
|
1318
|
+
projectCheckRun?: Array<ACLAction> | undefined;
|
|
1319
|
+
projectDeploymentHook?: Array<ACLAction> | undefined;
|
|
1320
|
+
projectDomain?: Array<ACLAction> | undefined;
|
|
1321
|
+
projectDomainMove?: Array<ACLAction> | undefined;
|
|
1322
|
+
projectDomainCheckConfig?: Array<ACLAction> | undefined;
|
|
1323
|
+
projectEnvVars?: Array<ACLAction> | undefined;
|
|
1324
|
+
projectEnvVarsProduction?: Array<ACLAction> | undefined;
|
|
1325
|
+
projectEnvVarsUnownedByIntegration?: Array<ACLAction> | undefined;
|
|
1326
|
+
projectFlags?: Array<ACLAction> | undefined;
|
|
1327
|
+
projectId?: Array<ACLAction> | undefined;
|
|
1328
|
+
projectIntegrationConfiguration?: Array<ACLAction> | undefined;
|
|
1329
|
+
projectLink?: Array<ACLAction> | undefined;
|
|
1330
|
+
projectMember?: Array<ACLAction> | undefined;
|
|
1331
|
+
projectMonitoring?: Array<ACLAction> | undefined;
|
|
1332
|
+
projectPermissions?: Array<ACLAction> | undefined;
|
|
1333
|
+
projectProductionBranch?: Array<ACLAction> | undefined;
|
|
1334
|
+
projectTransfer?: Array<ACLAction> | undefined;
|
|
1335
|
+
projectTransferOut?: Array<ACLAction> | undefined;
|
|
1336
|
+
projectProtectionBypass?: Array<ACLAction> | undefined;
|
|
1337
|
+
projectUsage?: Array<ACLAction> | undefined;
|
|
1338
|
+
projectAnalyticsUsage?: Array<ACLAction> | undefined;
|
|
1339
|
+
projectSupportCase?: Array<ACLAction> | undefined;
|
|
1340
|
+
projectSupportCaseComment?: Array<ACLAction> | undefined;
|
|
1341
|
+
projectDeploymentExpiration?: Array<ACLAction> | undefined;
|
|
1342
|
+
projectRollingRelease?: Array<ACLAction> | undefined;
|
|
1343
|
+
projectTier?: Array<ACLAction> | undefined;
|
|
1344
|
+
projectOIDCToken?: Array<ACLAction> | undefined;
|
|
1345
|
+
seawallConfig?: Array<ACLAction> | undefined;
|
|
1346
|
+
skewProtection?: Array<ACLAction> | undefined;
|
|
1347
|
+
analytics?: Array<ACLAction> | undefined;
|
|
1348
|
+
trustedIps?: Array<ACLAction> | undefined;
|
|
1349
|
+
webAnalytics?: Array<ACLAction> | undefined;
|
|
1350
|
+
sharedEnvVarConnection?: Array<ACLAction> | undefined;
|
|
1351
|
+
sonar?: Array<ACLAction> | undefined;
|
|
1286
1352
|
oauth2Connection?: Array<ACLAction> | undefined;
|
|
1287
1353
|
user?: Array<ACLAction> | undefined;
|
|
1288
1354
|
userConnection?: Array<ACLAction> | undefined;
|
|
@@ -1428,72 +1494,6 @@ export type CreateProjectPermissions = {
|
|
|
1428
1494
|
vercelRunExec?: Array<ACLAction> | undefined;
|
|
1429
1495
|
apiKey?: Array<ACLAction> | undefined;
|
|
1430
1496
|
apiKeyOwnedBySelf?: Array<ACLAction> | undefined;
|
|
1431
|
-
aliasProject?: Array<ACLAction> | undefined;
|
|
1432
|
-
aliasProtectionBypass?: Array<ACLAction> | undefined;
|
|
1433
|
-
buildMachine?: Array<ACLAction> | undefined;
|
|
1434
|
-
productionAliasProtectionBypass?: Array<ACLAction> | undefined;
|
|
1435
|
-
connectConfigurationLink?: Array<ACLAction> | undefined;
|
|
1436
|
-
dataCacheNamespace?: Array<ACLAction> | undefined;
|
|
1437
|
-
deployment?: Array<ACLAction> | undefined;
|
|
1438
|
-
deploymentBuildLogs?: Array<ACLAction> | undefined;
|
|
1439
|
-
deploymentCheck?: Array<ACLAction> | undefined;
|
|
1440
|
-
deploymentCheckPreview?: Array<ACLAction> | undefined;
|
|
1441
|
-
deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
|
|
1442
|
-
deploymentProductionGit?: Array<ACLAction> | undefined;
|
|
1443
|
-
deploymentV0?: Array<ACLAction> | undefined;
|
|
1444
|
-
deploymentPreview?: Array<ACLAction> | undefined;
|
|
1445
|
-
deploymentPrivate?: Array<ACLAction> | undefined;
|
|
1446
|
-
deploymentPromote?: Array<ACLAction> | undefined;
|
|
1447
|
-
deploymentRollback?: Array<ACLAction> | undefined;
|
|
1448
|
-
edgeCacheNamespace?: Array<ACLAction> | undefined;
|
|
1449
|
-
environments?: Array<ACLAction> | undefined;
|
|
1450
|
-
logs?: Array<ACLAction> | undefined;
|
|
1451
|
-
logsPreset?: Array<ACLAction> | undefined;
|
|
1452
|
-
passwordProtection?: Array<ACLAction> | undefined;
|
|
1453
|
-
optionsAllowlist?: Array<ACLAction> | undefined;
|
|
1454
|
-
job?: Array<ACLAction> | undefined;
|
|
1455
|
-
observabilityData?: Array<ACLAction> | undefined;
|
|
1456
|
-
onDemandBuild?: Array<ACLAction> | undefined;
|
|
1457
|
-
onDemandConcurrency?: Array<ACLAction> | undefined;
|
|
1458
|
-
project?: Array<ACLAction> | undefined;
|
|
1459
|
-
projectFromV0?: Array<ACLAction> | undefined;
|
|
1460
|
-
projectAccessGroup?: Array<ACLAction> | undefined;
|
|
1461
|
-
projectAnalyticsSampling?: Array<ACLAction> | undefined;
|
|
1462
|
-
projectCheck?: Array<ACLAction> | undefined;
|
|
1463
|
-
projectCheckRun?: Array<ACLAction> | undefined;
|
|
1464
|
-
projectDeploymentHook?: Array<ACLAction> | undefined;
|
|
1465
|
-
projectDomain?: Array<ACLAction> | undefined;
|
|
1466
|
-
projectDomainMove?: Array<ACLAction> | undefined;
|
|
1467
|
-
projectDomainCheckConfig?: Array<ACLAction> | undefined;
|
|
1468
|
-
projectEnvVars?: Array<ACLAction> | undefined;
|
|
1469
|
-
projectEnvVarsProduction?: Array<ACLAction> | undefined;
|
|
1470
|
-
projectEnvVarsUnownedByIntegration?: Array<ACLAction> | undefined;
|
|
1471
|
-
projectFlags?: Array<ACLAction> | undefined;
|
|
1472
|
-
projectId?: Array<ACLAction> | undefined;
|
|
1473
|
-
projectIntegrationConfiguration?: Array<ACLAction> | undefined;
|
|
1474
|
-
projectLink?: Array<ACLAction> | undefined;
|
|
1475
|
-
projectMember?: Array<ACLAction> | undefined;
|
|
1476
|
-
projectMonitoring?: Array<ACLAction> | undefined;
|
|
1477
|
-
projectPermissions?: Array<ACLAction> | undefined;
|
|
1478
|
-
projectProductionBranch?: Array<ACLAction> | undefined;
|
|
1479
|
-
projectTransfer?: Array<ACLAction> | undefined;
|
|
1480
|
-
projectTransferOut?: Array<ACLAction> | undefined;
|
|
1481
|
-
projectProtectionBypass?: Array<ACLAction> | undefined;
|
|
1482
|
-
projectUsage?: Array<ACLAction> | undefined;
|
|
1483
|
-
projectAnalyticsUsage?: Array<ACLAction> | undefined;
|
|
1484
|
-
projectSupportCase?: Array<ACLAction> | undefined;
|
|
1485
|
-
projectSupportCaseComment?: Array<ACLAction> | undefined;
|
|
1486
|
-
projectDeploymentExpiration?: Array<ACLAction> | undefined;
|
|
1487
|
-
projectRollingRelease?: Array<ACLAction> | undefined;
|
|
1488
|
-
projectTier?: Array<ACLAction> | undefined;
|
|
1489
|
-
projectOIDCToken?: Array<ACLAction> | undefined;
|
|
1490
|
-
seawallConfig?: Array<ACLAction> | undefined;
|
|
1491
|
-
skewProtection?: Array<ACLAction> | undefined;
|
|
1492
|
-
analytics?: Array<ACLAction> | undefined;
|
|
1493
|
-
trustedIps?: Array<ACLAction> | undefined;
|
|
1494
|
-
webAnalytics?: Array<ACLAction> | undefined;
|
|
1495
|
-
sharedEnvVarConnection?: Array<ACLAction> | undefined;
|
|
1496
|
-
sonar?: Array<ACLAction> | undefined;
|
|
1497
1497
|
};
|
|
1498
1498
|
export type CreateProjectLastRollbackTarget = {};
|
|
1499
1499
|
export declare const CreateProjectJobStatus: {
|
|
@@ -1542,22 +1542,22 @@ export type CreateProjectProtectionBypass1 = {
|
|
|
1542
1542
|
};
|
|
1543
1543
|
export type CreateProjectProtectionBypass = CreateProjectProtectionBypass1 | CreateProjectProtectionBypass2;
|
|
1544
1544
|
export declare const CreateProjectTrustedIpsProjectsDeploymentType: {
|
|
1545
|
-
readonly All: "all";
|
|
1546
1545
|
readonly Preview: "preview";
|
|
1546
|
+
readonly Production: "production";
|
|
1547
|
+
readonly All: "all";
|
|
1547
1548
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
1548
1549
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
1549
|
-
readonly Production: "production";
|
|
1550
1550
|
};
|
|
1551
1551
|
export type CreateProjectTrustedIpsProjectsDeploymentType = ClosedEnum<typeof CreateProjectTrustedIpsProjectsDeploymentType>;
|
|
1552
1552
|
export type CreateProjectTrustedIps2 = {
|
|
1553
1553
|
deploymentType: CreateProjectTrustedIpsProjectsDeploymentType;
|
|
1554
1554
|
};
|
|
1555
1555
|
export declare const CreateProjectTrustedIpsDeploymentType: {
|
|
1556
|
-
readonly All: "all";
|
|
1557
1556
|
readonly Preview: "preview";
|
|
1557
|
+
readonly Production: "production";
|
|
1558
|
+
readonly All: "all";
|
|
1558
1559
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
1559
1560
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
1560
|
-
readonly Production: "production";
|
|
1561
1561
|
};
|
|
1562
1562
|
export type CreateProjectTrustedIpsDeploymentType = ClosedEnum<typeof CreateProjectTrustedIpsDeploymentType>;
|
|
1563
1563
|
export type TrustedIpsAddresses = {
|
|
@@ -2603,18 +2603,18 @@ export declare namespace CreateProjectProjectsResponseType$ {
|
|
|
2603
2603
|
/** @deprecated use `CreateProjectProjectsResponseType$inboundSchema` instead. */
|
|
2604
2604
|
const inboundSchema: z.ZodNativeEnum<{
|
|
2605
2605
|
readonly System: "system";
|
|
2606
|
-
readonly Secret: "secret";
|
|
2607
2606
|
readonly Encrypted: "encrypted";
|
|
2608
2607
|
readonly Plain: "plain";
|
|
2609
2608
|
readonly Sensitive: "sensitive";
|
|
2609
|
+
readonly Secret: "secret";
|
|
2610
2610
|
}>;
|
|
2611
2611
|
/** @deprecated use `CreateProjectProjectsResponseType$outboundSchema` instead. */
|
|
2612
2612
|
const outboundSchema: z.ZodNativeEnum<{
|
|
2613
2613
|
readonly System: "system";
|
|
2614
|
-
readonly Secret: "secret";
|
|
2615
2614
|
readonly Encrypted: "encrypted";
|
|
2616
2615
|
readonly Plain: "plain";
|
|
2617
2616
|
readonly Sensitive: "sensitive";
|
|
2617
|
+
readonly Secret: "secret";
|
|
2618
2618
|
}>;
|
|
2619
2619
|
}
|
|
2620
2620
|
/** @internal */
|
|
@@ -4270,15 +4270,15 @@ export declare const CreateProjectLink2$inboundSchema: z.ZodType<CreateProjectLi
|
|
|
4270
4270
|
/** @internal */
|
|
4271
4271
|
export type CreateProjectLink2$Outbound = {
|
|
4272
4272
|
type?: string | undefined;
|
|
4273
|
+
repo?: string | undefined;
|
|
4274
|
+
repoId?: number | undefined;
|
|
4273
4275
|
updatedAt?: number | undefined;
|
|
4274
4276
|
createdAt?: number | undefined;
|
|
4275
|
-
repo?: string | undefined;
|
|
4276
|
-
sourceless?: boolean | undefined;
|
|
4277
4277
|
org?: string | undefined;
|
|
4278
4278
|
repoOwnerId?: number | undefined;
|
|
4279
|
-
repoId?: number | undefined;
|
|
4280
4279
|
deployHooks: Array<CreateProjectLinkProjectsDeployHooks$Outbound>;
|
|
4281
4280
|
gitCredentialId?: string | undefined;
|
|
4281
|
+
sourceless?: boolean | undefined;
|
|
4282
4282
|
productionBranch?: string | undefined;
|
|
4283
4283
|
};
|
|
4284
4284
|
/** @internal */
|
|
@@ -4784,15 +4784,15 @@ export declare const CreateProjectProjectsDeploymentType$outboundSchema: z.ZodNa
|
|
|
4784
4784
|
export declare namespace CreateProjectProjectsDeploymentType$ {
|
|
4785
4785
|
/** @deprecated use `CreateProjectProjectsDeploymentType$inboundSchema` instead. */
|
|
4786
4786
|
const inboundSchema: z.ZodNativeEnum<{
|
|
4787
|
-
readonly All: "all";
|
|
4788
4787
|
readonly Preview: "preview";
|
|
4788
|
+
readonly All: "all";
|
|
4789
4789
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
4790
4790
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
4791
4791
|
}>;
|
|
4792
4792
|
/** @deprecated use `CreateProjectProjectsDeploymentType$outboundSchema` instead. */
|
|
4793
4793
|
const outboundSchema: z.ZodNativeEnum<{
|
|
4794
|
-
readonly All: "all";
|
|
4795
4794
|
readonly Preview: "preview";
|
|
4795
|
+
readonly All: "all";
|
|
4796
4796
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
4797
4797
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
4798
4798
|
}>;
|
|
@@ -5186,6 +5186,72 @@ export declare function createProjectTargetsFromJSON(jsonString: string): SafePa
|
|
|
5186
5186
|
export declare const CreateProjectPermissions$inboundSchema: z.ZodType<CreateProjectPermissions, z.ZodTypeDef, unknown>;
|
|
5187
5187
|
/** @internal */
|
|
5188
5188
|
export type CreateProjectPermissions$Outbound = {
|
|
5189
|
+
aliasProject?: Array<string> | undefined;
|
|
5190
|
+
aliasProtectionBypass?: Array<string> | undefined;
|
|
5191
|
+
buildMachine?: Array<string> | undefined;
|
|
5192
|
+
productionAliasProtectionBypass?: Array<string> | undefined;
|
|
5193
|
+
connectConfigurationLink?: Array<string> | undefined;
|
|
5194
|
+
dataCacheNamespace?: Array<string> | undefined;
|
|
5195
|
+
deployment?: Array<string> | undefined;
|
|
5196
|
+
deploymentBuildLogs?: Array<string> | undefined;
|
|
5197
|
+
deploymentCheck?: Array<string> | undefined;
|
|
5198
|
+
deploymentCheckPreview?: Array<string> | undefined;
|
|
5199
|
+
deploymentCheckReRunFromProductionBranch?: Array<string> | undefined;
|
|
5200
|
+
deploymentProductionGit?: Array<string> | undefined;
|
|
5201
|
+
deploymentV0?: Array<string> | undefined;
|
|
5202
|
+
deploymentPreview?: Array<string> | undefined;
|
|
5203
|
+
deploymentPrivate?: Array<string> | undefined;
|
|
5204
|
+
deploymentPromote?: Array<string> | undefined;
|
|
5205
|
+
deploymentRollback?: Array<string> | undefined;
|
|
5206
|
+
edgeCacheNamespace?: Array<string> | undefined;
|
|
5207
|
+
environments?: Array<string> | undefined;
|
|
5208
|
+
logs?: Array<string> | undefined;
|
|
5209
|
+
logsPreset?: Array<string> | undefined;
|
|
5210
|
+
passwordProtection?: Array<string> | undefined;
|
|
5211
|
+
optionsAllowlist?: Array<string> | undefined;
|
|
5212
|
+
job?: Array<string> | undefined;
|
|
5213
|
+
observabilityData?: Array<string> | undefined;
|
|
5214
|
+
onDemandBuild?: Array<string> | undefined;
|
|
5215
|
+
onDemandConcurrency?: Array<string> | undefined;
|
|
5216
|
+
project?: Array<string> | undefined;
|
|
5217
|
+
projectFromV0?: Array<string> | undefined;
|
|
5218
|
+
projectAccessGroup?: Array<string> | undefined;
|
|
5219
|
+
projectAnalyticsSampling?: Array<string> | undefined;
|
|
5220
|
+
projectCheck?: Array<string> | undefined;
|
|
5221
|
+
projectCheckRun?: Array<string> | undefined;
|
|
5222
|
+
projectDeploymentHook?: Array<string> | undefined;
|
|
5223
|
+
projectDomain?: Array<string> | undefined;
|
|
5224
|
+
projectDomainMove?: Array<string> | undefined;
|
|
5225
|
+
projectDomainCheckConfig?: Array<string> | undefined;
|
|
5226
|
+
projectEnvVars?: Array<string> | undefined;
|
|
5227
|
+
projectEnvVarsProduction?: Array<string> | undefined;
|
|
5228
|
+
projectEnvVarsUnownedByIntegration?: Array<string> | undefined;
|
|
5229
|
+
projectFlags?: Array<string> | undefined;
|
|
5230
|
+
projectId?: Array<string> | undefined;
|
|
5231
|
+
projectIntegrationConfiguration?: Array<string> | undefined;
|
|
5232
|
+
projectLink?: Array<string> | undefined;
|
|
5233
|
+
projectMember?: Array<string> | undefined;
|
|
5234
|
+
projectMonitoring?: Array<string> | undefined;
|
|
5235
|
+
projectPermissions?: Array<string> | undefined;
|
|
5236
|
+
projectProductionBranch?: Array<string> | undefined;
|
|
5237
|
+
projectTransfer?: Array<string> | undefined;
|
|
5238
|
+
projectTransferOut?: Array<string> | undefined;
|
|
5239
|
+
projectProtectionBypass?: Array<string> | undefined;
|
|
5240
|
+
projectUsage?: Array<string> | undefined;
|
|
5241
|
+
projectAnalyticsUsage?: Array<string> | undefined;
|
|
5242
|
+
projectSupportCase?: Array<string> | undefined;
|
|
5243
|
+
projectSupportCaseComment?: Array<string> | undefined;
|
|
5244
|
+
projectDeploymentExpiration?: Array<string> | undefined;
|
|
5245
|
+
projectRollingRelease?: Array<string> | undefined;
|
|
5246
|
+
projectTier?: Array<string> | undefined;
|
|
5247
|
+
projectOIDCToken?: Array<string> | undefined;
|
|
5248
|
+
seawallConfig?: Array<string> | undefined;
|
|
5249
|
+
skewProtection?: Array<string> | undefined;
|
|
5250
|
+
analytics?: Array<string> | undefined;
|
|
5251
|
+
trustedIps?: Array<string> | undefined;
|
|
5252
|
+
webAnalytics?: Array<string> | undefined;
|
|
5253
|
+
sharedEnvVarConnection?: Array<string> | undefined;
|
|
5254
|
+
sonar?: Array<string> | undefined;
|
|
5189
5255
|
oauth2Connection?: Array<string> | undefined;
|
|
5190
5256
|
user?: Array<string> | undefined;
|
|
5191
5257
|
userConnection?: Array<string> | undefined;
|
|
@@ -5331,72 +5397,6 @@ export type CreateProjectPermissions$Outbound = {
|
|
|
5331
5397
|
vercelRunExec?: Array<string> | undefined;
|
|
5332
5398
|
apiKey?: Array<string> | undefined;
|
|
5333
5399
|
apiKeyOwnedBySelf?: Array<string> | undefined;
|
|
5334
|
-
aliasProject?: Array<string> | undefined;
|
|
5335
|
-
aliasProtectionBypass?: Array<string> | undefined;
|
|
5336
|
-
buildMachine?: Array<string> | undefined;
|
|
5337
|
-
productionAliasProtectionBypass?: Array<string> | undefined;
|
|
5338
|
-
connectConfigurationLink?: Array<string> | undefined;
|
|
5339
|
-
dataCacheNamespace?: Array<string> | undefined;
|
|
5340
|
-
deployment?: Array<string> | undefined;
|
|
5341
|
-
deploymentBuildLogs?: Array<string> | undefined;
|
|
5342
|
-
deploymentCheck?: Array<string> | undefined;
|
|
5343
|
-
deploymentCheckPreview?: Array<string> | undefined;
|
|
5344
|
-
deploymentCheckReRunFromProductionBranch?: Array<string> | undefined;
|
|
5345
|
-
deploymentProductionGit?: Array<string> | undefined;
|
|
5346
|
-
deploymentV0?: Array<string> | undefined;
|
|
5347
|
-
deploymentPreview?: Array<string> | undefined;
|
|
5348
|
-
deploymentPrivate?: Array<string> | undefined;
|
|
5349
|
-
deploymentPromote?: Array<string> | undefined;
|
|
5350
|
-
deploymentRollback?: Array<string> | undefined;
|
|
5351
|
-
edgeCacheNamespace?: Array<string> | undefined;
|
|
5352
|
-
environments?: Array<string> | undefined;
|
|
5353
|
-
logs?: Array<string> | undefined;
|
|
5354
|
-
logsPreset?: Array<string> | undefined;
|
|
5355
|
-
passwordProtection?: Array<string> | undefined;
|
|
5356
|
-
optionsAllowlist?: Array<string> | undefined;
|
|
5357
|
-
job?: Array<string> | undefined;
|
|
5358
|
-
observabilityData?: Array<string> | undefined;
|
|
5359
|
-
onDemandBuild?: Array<string> | undefined;
|
|
5360
|
-
onDemandConcurrency?: Array<string> | undefined;
|
|
5361
|
-
project?: Array<string> | undefined;
|
|
5362
|
-
projectFromV0?: Array<string> | undefined;
|
|
5363
|
-
projectAccessGroup?: Array<string> | undefined;
|
|
5364
|
-
projectAnalyticsSampling?: Array<string> | undefined;
|
|
5365
|
-
projectCheck?: Array<string> | undefined;
|
|
5366
|
-
projectCheckRun?: Array<string> | undefined;
|
|
5367
|
-
projectDeploymentHook?: Array<string> | undefined;
|
|
5368
|
-
projectDomain?: Array<string> | undefined;
|
|
5369
|
-
projectDomainMove?: Array<string> | undefined;
|
|
5370
|
-
projectDomainCheckConfig?: Array<string> | undefined;
|
|
5371
|
-
projectEnvVars?: Array<string> | undefined;
|
|
5372
|
-
projectEnvVarsProduction?: Array<string> | undefined;
|
|
5373
|
-
projectEnvVarsUnownedByIntegration?: Array<string> | undefined;
|
|
5374
|
-
projectFlags?: Array<string> | undefined;
|
|
5375
|
-
projectId?: Array<string> | undefined;
|
|
5376
|
-
projectIntegrationConfiguration?: Array<string> | undefined;
|
|
5377
|
-
projectLink?: Array<string> | undefined;
|
|
5378
|
-
projectMember?: Array<string> | undefined;
|
|
5379
|
-
projectMonitoring?: Array<string> | undefined;
|
|
5380
|
-
projectPermissions?: Array<string> | undefined;
|
|
5381
|
-
projectProductionBranch?: Array<string> | undefined;
|
|
5382
|
-
projectTransfer?: Array<string> | undefined;
|
|
5383
|
-
projectTransferOut?: Array<string> | undefined;
|
|
5384
|
-
projectProtectionBypass?: Array<string> | undefined;
|
|
5385
|
-
projectUsage?: Array<string> | undefined;
|
|
5386
|
-
projectAnalyticsUsage?: Array<string> | undefined;
|
|
5387
|
-
projectSupportCase?: Array<string> | undefined;
|
|
5388
|
-
projectSupportCaseComment?: Array<string> | undefined;
|
|
5389
|
-
projectDeploymentExpiration?: Array<string> | undefined;
|
|
5390
|
-
projectRollingRelease?: Array<string> | undefined;
|
|
5391
|
-
projectTier?: Array<string> | undefined;
|
|
5392
|
-
projectOIDCToken?: Array<string> | undefined;
|
|
5393
|
-
seawallConfig?: Array<string> | undefined;
|
|
5394
|
-
skewProtection?: Array<string> | undefined;
|
|
5395
|
-
analytics?: Array<string> | undefined;
|
|
5396
|
-
trustedIps?: Array<string> | undefined;
|
|
5397
|
-
webAnalytics?: Array<string> | undefined;
|
|
5398
|
-
sharedEnvVarConnection?: Array<string> | undefined;
|
|
5399
|
-
sonar?: Array<string> | undefined;
|
|
5400
5400
|
};
|
|
5401
5401
|
/** @internal */
|
|
5402
5402
|
export declare const CreateProjectPermissions$outboundSchema: z.ZodType<CreateProjectPermissions$Outbound, z.ZodTypeDef, CreateProjectPermissions>;
|
|
@@ -5624,19 +5624,19 @@ export declare const CreateProjectTrustedIpsProjectsDeploymentType$outboundSchem
|
|
|
5624
5624
|
export declare namespace CreateProjectTrustedIpsProjectsDeploymentType$ {
|
|
5625
5625
|
/** @deprecated use `CreateProjectTrustedIpsProjectsDeploymentType$inboundSchema` instead. */
|
|
5626
5626
|
const inboundSchema: z.ZodNativeEnum<{
|
|
5627
|
-
readonly All: "all";
|
|
5628
5627
|
readonly Preview: "preview";
|
|
5628
|
+
readonly Production: "production";
|
|
5629
|
+
readonly All: "all";
|
|
5629
5630
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
5630
5631
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
5631
|
-
readonly Production: "production";
|
|
5632
5632
|
}>;
|
|
5633
5633
|
/** @deprecated use `CreateProjectTrustedIpsProjectsDeploymentType$outboundSchema` instead. */
|
|
5634
5634
|
const outboundSchema: z.ZodNativeEnum<{
|
|
5635
|
-
readonly All: "all";
|
|
5636
5635
|
readonly Preview: "preview";
|
|
5636
|
+
readonly Production: "production";
|
|
5637
|
+
readonly All: "all";
|
|
5637
5638
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
5638
5639
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
5639
|
-
readonly Production: "production";
|
|
5640
5640
|
}>;
|
|
5641
5641
|
}
|
|
5642
5642
|
/** @internal */
|
|
@@ -5672,19 +5672,19 @@ export declare const CreateProjectTrustedIpsDeploymentType$outboundSchema: z.Zod
|
|
|
5672
5672
|
export declare namespace CreateProjectTrustedIpsDeploymentType$ {
|
|
5673
5673
|
/** @deprecated use `CreateProjectTrustedIpsDeploymentType$inboundSchema` instead. */
|
|
5674
5674
|
const inboundSchema: z.ZodNativeEnum<{
|
|
5675
|
-
readonly All: "all";
|
|
5676
5675
|
readonly Preview: "preview";
|
|
5676
|
+
readonly Production: "production";
|
|
5677
|
+
readonly All: "all";
|
|
5677
5678
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
5678
5679
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
5679
|
-
readonly Production: "production";
|
|
5680
5680
|
}>;
|
|
5681
5681
|
/** @deprecated use `CreateProjectTrustedIpsDeploymentType$outboundSchema` instead. */
|
|
5682
5682
|
const outboundSchema: z.ZodNativeEnum<{
|
|
5683
|
-
readonly All: "all";
|
|
5684
5683
|
readonly Preview: "preview";
|
|
5684
|
+
readonly Production: "production";
|
|
5685
|
+
readonly All: "all";
|
|
5685
5686
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
5686
5687
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
5687
|
-
readonly Production: "production";
|
|
5688
5688
|
}>;
|
|
5689
5689
|
}
|
|
5690
5690
|
/** @internal */
|