@vercel/sdk 1.8.4 → 1.8.5
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 +1009 -313
- package/bin/mcp-server.js.map +13 -13
- package/esm/__tests__/projects.test.js +15 -13
- package/esm/__tests__/projects.test.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 +408 -8
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +446 -8
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +408 -8
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +448 -8
- 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 +137 -137
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +135 -135
- 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/getdeploymentop.d.ts +408 -8
- package/esm/models/getdeploymentop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.js +441 -8
- package/esm/models/getdeploymentop.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/updateprojectop.d.ts +137 -137
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +135 -135
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/types/constdatetime.js +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/projects.test.ts +15 -13
- 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 +1039 -16
- package/src/models/createdeploymentop.ts +957 -16
- package/src/models/createprojectenvop.ts +2 -2
- package/src/models/createprojectop.ts +263 -263
- package/src/models/editprojectenvop.ts +1 -1
- package/src/models/getdeploymentop.ts +1007 -16
- package/src/models/removeprojectenvop.ts +3 -3
- package/src/models/updateprojectop.ts +263 -263
- package/src/types/constdatetime.ts +1 -1
- package/vercel-spec.json +1328 -623
|
@@ -472,10 +472,10 @@ export type UpdateProjectTarget2 = ClosedEnum<typeof UpdateProjectTarget2>;
|
|
|
472
472
|
export type UpdateProjectTarget = Array<string> | UpdateProjectTarget2;
|
|
473
473
|
export declare const UpdateProjectType: {
|
|
474
474
|
readonly System: "system";
|
|
475
|
-
readonly Secret: "secret";
|
|
476
475
|
readonly Encrypted: "encrypted";
|
|
477
476
|
readonly Plain: "plain";
|
|
478
477
|
readonly Sensitive: "sensitive";
|
|
478
|
+
readonly Secret: "secret";
|
|
479
479
|
};
|
|
480
480
|
export type UpdateProjectType = ClosedEnum<typeof UpdateProjectType>;
|
|
481
481
|
export declare const UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type: {
|
|
@@ -1333,6 +1333,70 @@ export type UpdateProjectTargets = {
|
|
|
1333
1333
|
withCache?: boolean | undefined;
|
|
1334
1334
|
};
|
|
1335
1335
|
export type UpdateProjectPermissions = {
|
|
1336
|
+
aliasProject?: Array<ACLAction> | undefined;
|
|
1337
|
+
aliasProtectionBypass?: Array<ACLAction> | undefined;
|
|
1338
|
+
buildMachine?: Array<ACLAction> | undefined;
|
|
1339
|
+
productionAliasProtectionBypass?: Array<ACLAction> | undefined;
|
|
1340
|
+
connectConfigurationLink?: Array<ACLAction> | undefined;
|
|
1341
|
+
dataCacheNamespace?: Array<ACLAction> | undefined;
|
|
1342
|
+
deployment?: Array<ACLAction> | undefined;
|
|
1343
|
+
deploymentCheck?: Array<ACLAction> | undefined;
|
|
1344
|
+
deploymentCheckPreview?: Array<ACLAction> | undefined;
|
|
1345
|
+
deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
|
|
1346
|
+
deploymentProductionGit?: Array<ACLAction> | undefined;
|
|
1347
|
+
deploymentV0?: Array<ACLAction> | undefined;
|
|
1348
|
+
deploymentPreview?: Array<ACLAction> | undefined;
|
|
1349
|
+
deploymentPrivate?: Array<ACLAction> | undefined;
|
|
1350
|
+
deploymentPromote?: Array<ACLAction> | undefined;
|
|
1351
|
+
deploymentRollback?: Array<ACLAction> | undefined;
|
|
1352
|
+
edgeCacheNamespace?: Array<ACLAction> | undefined;
|
|
1353
|
+
environments?: Array<ACLAction> | undefined;
|
|
1354
|
+
logs?: Array<ACLAction> | undefined;
|
|
1355
|
+
logsPreset?: Array<ACLAction> | undefined;
|
|
1356
|
+
passwordProtection?: Array<ACLAction> | undefined;
|
|
1357
|
+
optionsAllowlist?: Array<ACLAction> | undefined;
|
|
1358
|
+
job?: Array<ACLAction> | undefined;
|
|
1359
|
+
observabilityData?: Array<ACLAction> | undefined;
|
|
1360
|
+
onDemandBuild?: Array<ACLAction> | undefined;
|
|
1361
|
+
onDemandConcurrency?: Array<ACLAction> | undefined;
|
|
1362
|
+
project?: Array<ACLAction> | undefined;
|
|
1363
|
+
projectFromV0?: Array<ACLAction> | undefined;
|
|
1364
|
+
projectAccessGroup?: Array<ACLAction> | undefined;
|
|
1365
|
+
projectAnalyticsSampling?: Array<ACLAction> | undefined;
|
|
1366
|
+
projectCheck?: Array<ACLAction> | undefined;
|
|
1367
|
+
projectCheckRun?: Array<ACLAction> | undefined;
|
|
1368
|
+
projectDeploymentHook?: Array<ACLAction> | undefined;
|
|
1369
|
+
projectDomain?: Array<ACLAction> | undefined;
|
|
1370
|
+
projectDomainMove?: Array<ACLAction> | undefined;
|
|
1371
|
+
projectDomainCheckConfig?: Array<ACLAction> | undefined;
|
|
1372
|
+
projectEnvVars?: Array<ACLAction> | undefined;
|
|
1373
|
+
projectEnvVarsProduction?: Array<ACLAction> | undefined;
|
|
1374
|
+
projectEnvVarsUnownedByIntegration?: Array<ACLAction> | undefined;
|
|
1375
|
+
projectFlags?: Array<ACLAction> | undefined;
|
|
1376
|
+
projectId?: Array<ACLAction> | undefined;
|
|
1377
|
+
projectIntegrationConfiguration?: Array<ACLAction> | undefined;
|
|
1378
|
+
projectLink?: Array<ACLAction> | undefined;
|
|
1379
|
+
projectMember?: Array<ACLAction> | undefined;
|
|
1380
|
+
projectMonitoring?: Array<ACLAction> | undefined;
|
|
1381
|
+
projectPermissions?: Array<ACLAction> | undefined;
|
|
1382
|
+
projectProductionBranch?: Array<ACLAction> | undefined;
|
|
1383
|
+
projectTransfer?: Array<ACLAction> | undefined;
|
|
1384
|
+
projectTransferOut?: Array<ACLAction> | undefined;
|
|
1385
|
+
projectProtectionBypass?: Array<ACLAction> | undefined;
|
|
1386
|
+
projectUsage?: Array<ACLAction> | undefined;
|
|
1387
|
+
projectAnalyticsUsage?: Array<ACLAction> | undefined;
|
|
1388
|
+
projectSupportCase?: Array<ACLAction> | undefined;
|
|
1389
|
+
projectSupportCaseComment?: Array<ACLAction> | undefined;
|
|
1390
|
+
projectDeploymentExpiration?: Array<ACLAction> | undefined;
|
|
1391
|
+
projectRollingRelease?: Array<ACLAction> | undefined;
|
|
1392
|
+
projectTier?: Array<ACLAction> | undefined;
|
|
1393
|
+
seawallConfig?: Array<ACLAction> | undefined;
|
|
1394
|
+
skewProtection?: Array<ACLAction> | undefined;
|
|
1395
|
+
analytics?: Array<ACLAction> | undefined;
|
|
1396
|
+
trustedIps?: Array<ACLAction> | undefined;
|
|
1397
|
+
webAnalytics?: Array<ACLAction> | undefined;
|
|
1398
|
+
sharedEnvVarConnection?: Array<ACLAction> | undefined;
|
|
1399
|
+
sonar?: Array<ACLAction> | undefined;
|
|
1336
1400
|
user?: Array<ACLAction> | undefined;
|
|
1337
1401
|
userConnection?: Array<ACLAction> | undefined;
|
|
1338
1402
|
userSudo?: Array<ACLAction> | undefined;
|
|
@@ -1472,70 +1536,6 @@ export type UpdateProjectPermissions = {
|
|
|
1472
1536
|
vercelRunExec?: Array<ACLAction> | undefined;
|
|
1473
1537
|
apiKey?: Array<ACLAction> | undefined;
|
|
1474
1538
|
apiKeyOwnedBySelf?: Array<ACLAction> | undefined;
|
|
1475
|
-
aliasProject?: Array<ACLAction> | undefined;
|
|
1476
|
-
aliasProtectionBypass?: Array<ACLAction> | undefined;
|
|
1477
|
-
buildMachine?: Array<ACLAction> | undefined;
|
|
1478
|
-
productionAliasProtectionBypass?: Array<ACLAction> | undefined;
|
|
1479
|
-
connectConfigurationLink?: Array<ACLAction> | undefined;
|
|
1480
|
-
dataCacheNamespace?: Array<ACLAction> | undefined;
|
|
1481
|
-
deployment?: Array<ACLAction> | undefined;
|
|
1482
|
-
deploymentCheck?: Array<ACLAction> | undefined;
|
|
1483
|
-
deploymentCheckPreview?: Array<ACLAction> | undefined;
|
|
1484
|
-
deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
|
|
1485
|
-
deploymentProductionGit?: Array<ACLAction> | undefined;
|
|
1486
|
-
deploymentV0?: Array<ACLAction> | undefined;
|
|
1487
|
-
deploymentPreview?: Array<ACLAction> | undefined;
|
|
1488
|
-
deploymentPrivate?: Array<ACLAction> | undefined;
|
|
1489
|
-
deploymentPromote?: Array<ACLAction> | undefined;
|
|
1490
|
-
deploymentRollback?: Array<ACLAction> | undefined;
|
|
1491
|
-
edgeCacheNamespace?: Array<ACLAction> | undefined;
|
|
1492
|
-
environments?: Array<ACLAction> | undefined;
|
|
1493
|
-
logs?: Array<ACLAction> | undefined;
|
|
1494
|
-
logsPreset?: Array<ACLAction> | undefined;
|
|
1495
|
-
passwordProtection?: Array<ACLAction> | undefined;
|
|
1496
|
-
optionsAllowlist?: Array<ACLAction> | undefined;
|
|
1497
|
-
job?: Array<ACLAction> | undefined;
|
|
1498
|
-
observabilityData?: Array<ACLAction> | undefined;
|
|
1499
|
-
onDemandBuild?: Array<ACLAction> | undefined;
|
|
1500
|
-
onDemandConcurrency?: Array<ACLAction> | undefined;
|
|
1501
|
-
project?: Array<ACLAction> | undefined;
|
|
1502
|
-
projectFromV0?: Array<ACLAction> | undefined;
|
|
1503
|
-
projectAccessGroup?: Array<ACLAction> | undefined;
|
|
1504
|
-
projectAnalyticsSampling?: Array<ACLAction> | undefined;
|
|
1505
|
-
projectCheck?: Array<ACLAction> | undefined;
|
|
1506
|
-
projectCheckRun?: Array<ACLAction> | undefined;
|
|
1507
|
-
projectDeploymentHook?: Array<ACLAction> | undefined;
|
|
1508
|
-
projectDomain?: Array<ACLAction> | undefined;
|
|
1509
|
-
projectDomainMove?: Array<ACLAction> | undefined;
|
|
1510
|
-
projectDomainCheckConfig?: Array<ACLAction> | undefined;
|
|
1511
|
-
projectEnvVars?: Array<ACLAction> | undefined;
|
|
1512
|
-
projectEnvVarsProduction?: Array<ACLAction> | undefined;
|
|
1513
|
-
projectEnvVarsUnownedByIntegration?: Array<ACLAction> | undefined;
|
|
1514
|
-
projectFlags?: Array<ACLAction> | undefined;
|
|
1515
|
-
projectId?: Array<ACLAction> | undefined;
|
|
1516
|
-
projectIntegrationConfiguration?: Array<ACLAction> | undefined;
|
|
1517
|
-
projectLink?: Array<ACLAction> | undefined;
|
|
1518
|
-
projectMember?: Array<ACLAction> | undefined;
|
|
1519
|
-
projectMonitoring?: Array<ACLAction> | undefined;
|
|
1520
|
-
projectPermissions?: Array<ACLAction> | undefined;
|
|
1521
|
-
projectProductionBranch?: Array<ACLAction> | undefined;
|
|
1522
|
-
projectTransfer?: Array<ACLAction> | undefined;
|
|
1523
|
-
projectTransferOut?: Array<ACLAction> | undefined;
|
|
1524
|
-
projectProtectionBypass?: Array<ACLAction> | undefined;
|
|
1525
|
-
projectUsage?: Array<ACLAction> | undefined;
|
|
1526
|
-
projectAnalyticsUsage?: Array<ACLAction> | undefined;
|
|
1527
|
-
projectSupportCase?: Array<ACLAction> | undefined;
|
|
1528
|
-
projectSupportCaseComment?: Array<ACLAction> | undefined;
|
|
1529
|
-
projectDeploymentExpiration?: Array<ACLAction> | undefined;
|
|
1530
|
-
projectRollingRelease?: Array<ACLAction> | undefined;
|
|
1531
|
-
projectTier?: Array<ACLAction> | undefined;
|
|
1532
|
-
seawallConfig?: Array<ACLAction> | undefined;
|
|
1533
|
-
skewProtection?: Array<ACLAction> | undefined;
|
|
1534
|
-
analytics?: Array<ACLAction> | undefined;
|
|
1535
|
-
trustedIps?: Array<ACLAction> | undefined;
|
|
1536
|
-
webAnalytics?: Array<ACLAction> | undefined;
|
|
1537
|
-
sharedEnvVarConnection?: Array<ACLAction> | undefined;
|
|
1538
|
-
sonar?: Array<ACLAction> | undefined;
|
|
1539
1539
|
};
|
|
1540
1540
|
export type UpdateProjectLastRollbackTarget = {};
|
|
1541
1541
|
export declare const UpdateProjectJobStatus: {
|
|
@@ -1664,8 +1664,8 @@ export type UpdateProjectSrc2 = {
|
|
|
1664
1664
|
};
|
|
1665
1665
|
export type UpdateProjectSrc = UpdateProjectSrc2 | string;
|
|
1666
1666
|
export declare const UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType: {
|
|
1667
|
-
readonly Host: "host";
|
|
1668
1667
|
readonly Path: "path";
|
|
1668
|
+
readonly Host: "host";
|
|
1669
1669
|
readonly Method: "method";
|
|
1670
1670
|
readonly Header: "header";
|
|
1671
1671
|
readonly Cookie: "cookie";
|
|
@@ -1698,8 +1698,8 @@ export type UpdateProjectHas = {
|
|
|
1698
1698
|
value?: UpdateProjectValue2 | string | undefined;
|
|
1699
1699
|
};
|
|
1700
1700
|
export declare const UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType: {
|
|
1701
|
-
readonly Host: "host";
|
|
1702
1701
|
readonly Path: "path";
|
|
1702
|
+
readonly Host: "host";
|
|
1703
1703
|
readonly Method: "method";
|
|
1704
1704
|
readonly Header: "header";
|
|
1705
1705
|
readonly Cookie: "cookie";
|
|
@@ -2839,18 +2839,18 @@ export declare namespace UpdateProjectType$ {
|
|
|
2839
2839
|
/** @deprecated use `UpdateProjectType$inboundSchema` instead. */
|
|
2840
2840
|
const inboundSchema: z.ZodNativeEnum<{
|
|
2841
2841
|
readonly System: "system";
|
|
2842
|
-
readonly Secret: "secret";
|
|
2843
2842
|
readonly Encrypted: "encrypted";
|
|
2844
2843
|
readonly Plain: "plain";
|
|
2845
2844
|
readonly Sensitive: "sensitive";
|
|
2845
|
+
readonly Secret: "secret";
|
|
2846
2846
|
}>;
|
|
2847
2847
|
/** @deprecated use `UpdateProjectType$outboundSchema` instead. */
|
|
2848
2848
|
const outboundSchema: z.ZodNativeEnum<{
|
|
2849
2849
|
readonly System: "system";
|
|
2850
|
-
readonly Secret: "secret";
|
|
2851
2850
|
readonly Encrypted: "encrypted";
|
|
2852
2851
|
readonly Plain: "plain";
|
|
2853
2852
|
readonly Sensitive: "sensitive";
|
|
2853
|
+
readonly Secret: "secret";
|
|
2854
2854
|
}>;
|
|
2855
2855
|
}
|
|
2856
2856
|
/** @internal */
|
|
@@ -5340,6 +5340,70 @@ export declare function updateProjectTargetsFromJSON(jsonString: string): SafePa
|
|
|
5340
5340
|
export declare const UpdateProjectPermissions$inboundSchema: z.ZodType<UpdateProjectPermissions, z.ZodTypeDef, unknown>;
|
|
5341
5341
|
/** @internal */
|
|
5342
5342
|
export type UpdateProjectPermissions$Outbound = {
|
|
5343
|
+
aliasProject?: Array<string> | undefined;
|
|
5344
|
+
aliasProtectionBypass?: Array<string> | undefined;
|
|
5345
|
+
buildMachine?: Array<string> | undefined;
|
|
5346
|
+
productionAliasProtectionBypass?: Array<string> | undefined;
|
|
5347
|
+
connectConfigurationLink?: Array<string> | undefined;
|
|
5348
|
+
dataCacheNamespace?: Array<string> | undefined;
|
|
5349
|
+
deployment?: Array<string> | undefined;
|
|
5350
|
+
deploymentCheck?: Array<string> | undefined;
|
|
5351
|
+
deploymentCheckPreview?: Array<string> | undefined;
|
|
5352
|
+
deploymentCheckReRunFromProductionBranch?: Array<string> | undefined;
|
|
5353
|
+
deploymentProductionGit?: Array<string> | undefined;
|
|
5354
|
+
deploymentV0?: Array<string> | undefined;
|
|
5355
|
+
deploymentPreview?: Array<string> | undefined;
|
|
5356
|
+
deploymentPrivate?: Array<string> | undefined;
|
|
5357
|
+
deploymentPromote?: Array<string> | undefined;
|
|
5358
|
+
deploymentRollback?: Array<string> | undefined;
|
|
5359
|
+
edgeCacheNamespace?: Array<string> | undefined;
|
|
5360
|
+
environments?: Array<string> | undefined;
|
|
5361
|
+
logs?: Array<string> | undefined;
|
|
5362
|
+
logsPreset?: Array<string> | undefined;
|
|
5363
|
+
passwordProtection?: Array<string> | undefined;
|
|
5364
|
+
optionsAllowlist?: Array<string> | undefined;
|
|
5365
|
+
job?: Array<string> | undefined;
|
|
5366
|
+
observabilityData?: Array<string> | undefined;
|
|
5367
|
+
onDemandBuild?: Array<string> | undefined;
|
|
5368
|
+
onDemandConcurrency?: Array<string> | undefined;
|
|
5369
|
+
project?: Array<string> | undefined;
|
|
5370
|
+
projectFromV0?: Array<string> | undefined;
|
|
5371
|
+
projectAccessGroup?: Array<string> | undefined;
|
|
5372
|
+
projectAnalyticsSampling?: Array<string> | undefined;
|
|
5373
|
+
projectCheck?: Array<string> | undefined;
|
|
5374
|
+
projectCheckRun?: Array<string> | undefined;
|
|
5375
|
+
projectDeploymentHook?: Array<string> | undefined;
|
|
5376
|
+
projectDomain?: Array<string> | undefined;
|
|
5377
|
+
projectDomainMove?: Array<string> | undefined;
|
|
5378
|
+
projectDomainCheckConfig?: Array<string> | undefined;
|
|
5379
|
+
projectEnvVars?: Array<string> | undefined;
|
|
5380
|
+
projectEnvVarsProduction?: Array<string> | undefined;
|
|
5381
|
+
projectEnvVarsUnownedByIntegration?: Array<string> | undefined;
|
|
5382
|
+
projectFlags?: Array<string> | undefined;
|
|
5383
|
+
projectId?: Array<string> | undefined;
|
|
5384
|
+
projectIntegrationConfiguration?: Array<string> | undefined;
|
|
5385
|
+
projectLink?: Array<string> | undefined;
|
|
5386
|
+
projectMember?: Array<string> | undefined;
|
|
5387
|
+
projectMonitoring?: Array<string> | undefined;
|
|
5388
|
+
projectPermissions?: Array<string> | undefined;
|
|
5389
|
+
projectProductionBranch?: Array<string> | undefined;
|
|
5390
|
+
projectTransfer?: Array<string> | undefined;
|
|
5391
|
+
projectTransferOut?: Array<string> | undefined;
|
|
5392
|
+
projectProtectionBypass?: Array<string> | undefined;
|
|
5393
|
+
projectUsage?: Array<string> | undefined;
|
|
5394
|
+
projectAnalyticsUsage?: Array<string> | undefined;
|
|
5395
|
+
projectSupportCase?: Array<string> | undefined;
|
|
5396
|
+
projectSupportCaseComment?: Array<string> | undefined;
|
|
5397
|
+
projectDeploymentExpiration?: Array<string> | undefined;
|
|
5398
|
+
projectRollingRelease?: Array<string> | undefined;
|
|
5399
|
+
projectTier?: Array<string> | undefined;
|
|
5400
|
+
seawallConfig?: Array<string> | undefined;
|
|
5401
|
+
skewProtection?: Array<string> | undefined;
|
|
5402
|
+
analytics?: Array<string> | undefined;
|
|
5403
|
+
trustedIps?: Array<string> | undefined;
|
|
5404
|
+
webAnalytics?: Array<string> | undefined;
|
|
5405
|
+
sharedEnvVarConnection?: Array<string> | undefined;
|
|
5406
|
+
sonar?: Array<string> | undefined;
|
|
5343
5407
|
user?: Array<string> | undefined;
|
|
5344
5408
|
userConnection?: Array<string> | undefined;
|
|
5345
5409
|
userSudo?: Array<string> | undefined;
|
|
@@ -5479,70 +5543,6 @@ export type UpdateProjectPermissions$Outbound = {
|
|
|
5479
5543
|
vercelRunExec?: Array<string> | undefined;
|
|
5480
5544
|
apiKey?: Array<string> | undefined;
|
|
5481
5545
|
apiKeyOwnedBySelf?: Array<string> | undefined;
|
|
5482
|
-
aliasProject?: Array<string> | undefined;
|
|
5483
|
-
aliasProtectionBypass?: Array<string> | undefined;
|
|
5484
|
-
buildMachine?: Array<string> | undefined;
|
|
5485
|
-
productionAliasProtectionBypass?: Array<string> | undefined;
|
|
5486
|
-
connectConfigurationLink?: Array<string> | undefined;
|
|
5487
|
-
dataCacheNamespace?: Array<string> | undefined;
|
|
5488
|
-
deployment?: Array<string> | undefined;
|
|
5489
|
-
deploymentCheck?: Array<string> | undefined;
|
|
5490
|
-
deploymentCheckPreview?: Array<string> | undefined;
|
|
5491
|
-
deploymentCheckReRunFromProductionBranch?: Array<string> | undefined;
|
|
5492
|
-
deploymentProductionGit?: Array<string> | undefined;
|
|
5493
|
-
deploymentV0?: Array<string> | undefined;
|
|
5494
|
-
deploymentPreview?: Array<string> | undefined;
|
|
5495
|
-
deploymentPrivate?: Array<string> | undefined;
|
|
5496
|
-
deploymentPromote?: Array<string> | undefined;
|
|
5497
|
-
deploymentRollback?: Array<string> | undefined;
|
|
5498
|
-
edgeCacheNamespace?: Array<string> | undefined;
|
|
5499
|
-
environments?: Array<string> | undefined;
|
|
5500
|
-
logs?: Array<string> | undefined;
|
|
5501
|
-
logsPreset?: Array<string> | undefined;
|
|
5502
|
-
passwordProtection?: Array<string> | undefined;
|
|
5503
|
-
optionsAllowlist?: Array<string> | undefined;
|
|
5504
|
-
job?: Array<string> | undefined;
|
|
5505
|
-
observabilityData?: Array<string> | undefined;
|
|
5506
|
-
onDemandBuild?: Array<string> | undefined;
|
|
5507
|
-
onDemandConcurrency?: Array<string> | undefined;
|
|
5508
|
-
project?: Array<string> | undefined;
|
|
5509
|
-
projectFromV0?: Array<string> | undefined;
|
|
5510
|
-
projectAccessGroup?: Array<string> | undefined;
|
|
5511
|
-
projectAnalyticsSampling?: Array<string> | undefined;
|
|
5512
|
-
projectCheck?: Array<string> | undefined;
|
|
5513
|
-
projectCheckRun?: Array<string> | undefined;
|
|
5514
|
-
projectDeploymentHook?: Array<string> | undefined;
|
|
5515
|
-
projectDomain?: Array<string> | undefined;
|
|
5516
|
-
projectDomainMove?: Array<string> | undefined;
|
|
5517
|
-
projectDomainCheckConfig?: Array<string> | undefined;
|
|
5518
|
-
projectEnvVars?: Array<string> | undefined;
|
|
5519
|
-
projectEnvVarsProduction?: Array<string> | undefined;
|
|
5520
|
-
projectEnvVarsUnownedByIntegration?: Array<string> | undefined;
|
|
5521
|
-
projectFlags?: Array<string> | undefined;
|
|
5522
|
-
projectId?: Array<string> | undefined;
|
|
5523
|
-
projectIntegrationConfiguration?: Array<string> | undefined;
|
|
5524
|
-
projectLink?: Array<string> | undefined;
|
|
5525
|
-
projectMember?: Array<string> | undefined;
|
|
5526
|
-
projectMonitoring?: Array<string> | undefined;
|
|
5527
|
-
projectPermissions?: Array<string> | undefined;
|
|
5528
|
-
projectProductionBranch?: Array<string> | undefined;
|
|
5529
|
-
projectTransfer?: Array<string> | undefined;
|
|
5530
|
-
projectTransferOut?: Array<string> | undefined;
|
|
5531
|
-
projectProtectionBypass?: Array<string> | undefined;
|
|
5532
|
-
projectUsage?: Array<string> | undefined;
|
|
5533
|
-
projectAnalyticsUsage?: Array<string> | undefined;
|
|
5534
|
-
projectSupportCase?: Array<string> | undefined;
|
|
5535
|
-
projectSupportCaseComment?: Array<string> | undefined;
|
|
5536
|
-
projectDeploymentExpiration?: Array<string> | undefined;
|
|
5537
|
-
projectRollingRelease?: Array<string> | undefined;
|
|
5538
|
-
projectTier?: Array<string> | undefined;
|
|
5539
|
-
seawallConfig?: Array<string> | undefined;
|
|
5540
|
-
skewProtection?: Array<string> | undefined;
|
|
5541
|
-
analytics?: Array<string> | undefined;
|
|
5542
|
-
trustedIps?: Array<string> | undefined;
|
|
5543
|
-
webAnalytics?: Array<string> | undefined;
|
|
5544
|
-
sharedEnvVarConnection?: Array<string> | undefined;
|
|
5545
|
-
sonar?: Array<string> | undefined;
|
|
5546
5546
|
};
|
|
5547
5547
|
/** @internal */
|
|
5548
5548
|
export declare const UpdateProjectPermissions$outboundSchema: z.ZodType<UpdateProjectPermissions$Outbound, z.ZodTypeDef, UpdateProjectPermissions>;
|
|
@@ -6070,8 +6070,8 @@ export declare const UpdateProjectProjectsResponse200ApplicationJSONResponseBody
|
|
|
6070
6070
|
export declare namespace UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType$ {
|
|
6071
6071
|
/** @deprecated use `UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType$inboundSchema` instead. */
|
|
6072
6072
|
const inboundSchema: z.ZodNativeEnum<{
|
|
6073
|
-
readonly Host: "host";
|
|
6074
6073
|
readonly Path: "path";
|
|
6074
|
+
readonly Host: "host";
|
|
6075
6075
|
readonly Method: "method";
|
|
6076
6076
|
readonly Header: "header";
|
|
6077
6077
|
readonly Cookie: "cookie";
|
|
@@ -6085,8 +6085,8 @@ export declare namespace UpdateProjectProjectsResponse200ApplicationJSONResponse
|
|
|
6085
6085
|
}>;
|
|
6086
6086
|
/** @deprecated use `UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType$outboundSchema` instead. */
|
|
6087
6087
|
const outboundSchema: z.ZodNativeEnum<{
|
|
6088
|
-
readonly Host: "host";
|
|
6089
6088
|
readonly Path: "path";
|
|
6089
|
+
readonly Host: "host";
|
|
6090
6090
|
readonly Method: "method";
|
|
6091
6091
|
readonly Header: "header";
|
|
6092
6092
|
readonly Cookie: "cookie";
|
|
@@ -6186,8 +6186,8 @@ export declare const UpdateProjectProjectsResponse200ApplicationJSONResponseBody
|
|
|
6186
6186
|
export declare namespace UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$ {
|
|
6187
6187
|
/** @deprecated use `UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$inboundSchema` instead. */
|
|
6188
6188
|
const inboundSchema: z.ZodNativeEnum<{
|
|
6189
|
-
readonly Host: "host";
|
|
6190
6189
|
readonly Path: "path";
|
|
6190
|
+
readonly Host: "host";
|
|
6191
6191
|
readonly Method: "method";
|
|
6192
6192
|
readonly Header: "header";
|
|
6193
6193
|
readonly Cookie: "cookie";
|
|
@@ -6201,8 +6201,8 @@ export declare namespace UpdateProjectProjectsResponse200ApplicationJSONResponse
|
|
|
6201
6201
|
}>;
|
|
6202
6202
|
/** @deprecated use `UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$outboundSchema` instead. */
|
|
6203
6203
|
const outboundSchema: z.ZodNativeEnum<{
|
|
6204
|
-
readonly Host: "host";
|
|
6205
6204
|
readonly Path: "path";
|
|
6205
|
+
readonly Host: "host";
|
|
6206
6206
|
readonly Method: "method";
|
|
6207
6207
|
readonly Header: "header";
|
|
6208
6208
|
readonly Cookie: "cookie";
|