@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.
Files changed (54) hide show
  1. package/bin/mcp-server.js +1009 -313
  2. package/bin/mcp-server.js.map +13 -13
  3. package/esm/__tests__/projects.test.js +15 -13
  4. package/esm/__tests__/projects.test.js.map +1 -1
  5. package/esm/lib/config.d.ts +3 -3
  6. package/esm/lib/config.js +3 -3
  7. package/esm/mcp-server/mcp-server.js +1 -1
  8. package/esm/mcp-server/server.js +1 -1
  9. package/esm/models/canceldeploymentop.d.ts +408 -8
  10. package/esm/models/canceldeploymentop.d.ts.map +1 -1
  11. package/esm/models/canceldeploymentop.js +446 -8
  12. package/esm/models/canceldeploymentop.js.map +1 -1
  13. package/esm/models/createdeploymentop.d.ts +408 -8
  14. package/esm/models/createdeploymentop.d.ts.map +1 -1
  15. package/esm/models/createdeploymentop.js +448 -8
  16. package/esm/models/createdeploymentop.js.map +1 -1
  17. package/esm/models/createprojectenvop.d.ts +6 -6
  18. package/esm/models/createprojectenvop.js +2 -2
  19. package/esm/models/createprojectenvop.js.map +1 -1
  20. package/esm/models/createprojectop.d.ts +137 -137
  21. package/esm/models/createprojectop.d.ts.map +1 -1
  22. package/esm/models/createprojectop.js +135 -135
  23. package/esm/models/createprojectop.js.map +1 -1
  24. package/esm/models/editprojectenvop.d.ts +3 -3
  25. package/esm/models/editprojectenvop.js +1 -1
  26. package/esm/models/editprojectenvop.js.map +1 -1
  27. package/esm/models/getdeploymentop.d.ts +408 -8
  28. package/esm/models/getdeploymentop.d.ts.map +1 -1
  29. package/esm/models/getdeploymentop.js +441 -8
  30. package/esm/models/getdeploymentop.js.map +1 -1
  31. package/esm/models/removeprojectenvop.d.ts +9 -9
  32. package/esm/models/removeprojectenvop.js +3 -3
  33. package/esm/models/removeprojectenvop.js.map +1 -1
  34. package/esm/models/updateprojectop.d.ts +137 -137
  35. package/esm/models/updateprojectop.d.ts.map +1 -1
  36. package/esm/models/updateprojectop.js +135 -135
  37. package/esm/models/updateprojectop.js.map +1 -1
  38. package/esm/types/constdatetime.js +1 -1
  39. package/jsr.json +1 -1
  40. package/package.json +1 -1
  41. package/src/__tests__/projects.test.ts +15 -13
  42. package/src/lib/config.ts +3 -3
  43. package/src/mcp-server/mcp-server.ts +1 -1
  44. package/src/mcp-server/server.ts +1 -1
  45. package/src/models/canceldeploymentop.ts +1039 -16
  46. package/src/models/createdeploymentop.ts +957 -16
  47. package/src/models/createprojectenvop.ts +2 -2
  48. package/src/models/createprojectop.ts +263 -263
  49. package/src/models/editprojectenvop.ts +1 -1
  50. package/src/models/getdeploymentop.ts +1007 -16
  51. package/src/models/removeprojectenvop.ts +3 -3
  52. package/src/models/updateprojectop.ts +263 -263
  53. package/src/types/constdatetime.ts +1 -1
  54. package/vercel-spec.json +1328 -623
@@ -371,10 +371,10 @@ export type CreateProjectTarget1 = ClosedEnum<typeof CreateProjectTarget1>;
371
371
  export type CreateProjectProjectsTarget = Array<CreateProjectTarget1> | CreateProjectTarget2;
372
372
  export declare const CreateProjectProjectsResponseType: {
373
373
  readonly System: "system";
374
- readonly Secret: "secret";
375
374
  readonly Encrypted: "encrypted";
376
375
  readonly Plain: "plain";
377
376
  readonly Sensitive: "sensitive";
377
+ readonly Secret: "secret";
378
378
  };
379
379
  export type CreateProjectProjectsResponseType = ClosedEnum<typeof CreateProjectProjectsResponseType>;
380
380
  export declare const CreateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type: {
@@ -1232,6 +1232,70 @@ export type CreateProjectTargets = {
1232
1232
  withCache?: boolean | undefined;
1233
1233
  };
1234
1234
  export type CreateProjectPermissions = {
1235
+ aliasProject?: Array<ACLAction> | undefined;
1236
+ aliasProtectionBypass?: Array<ACLAction> | undefined;
1237
+ buildMachine?: Array<ACLAction> | undefined;
1238
+ productionAliasProtectionBypass?: Array<ACLAction> | undefined;
1239
+ connectConfigurationLink?: Array<ACLAction> | undefined;
1240
+ dataCacheNamespace?: Array<ACLAction> | undefined;
1241
+ deployment?: Array<ACLAction> | undefined;
1242
+ deploymentCheck?: Array<ACLAction> | undefined;
1243
+ deploymentCheckPreview?: Array<ACLAction> | undefined;
1244
+ deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
1245
+ deploymentProductionGit?: Array<ACLAction> | undefined;
1246
+ deploymentV0?: Array<ACLAction> | undefined;
1247
+ deploymentPreview?: Array<ACLAction> | undefined;
1248
+ deploymentPrivate?: Array<ACLAction> | undefined;
1249
+ deploymentPromote?: Array<ACLAction> | undefined;
1250
+ deploymentRollback?: Array<ACLAction> | undefined;
1251
+ edgeCacheNamespace?: Array<ACLAction> | undefined;
1252
+ environments?: Array<ACLAction> | undefined;
1253
+ logs?: Array<ACLAction> | undefined;
1254
+ logsPreset?: Array<ACLAction> | undefined;
1255
+ passwordProtection?: Array<ACLAction> | undefined;
1256
+ optionsAllowlist?: Array<ACLAction> | undefined;
1257
+ job?: Array<ACLAction> | undefined;
1258
+ observabilityData?: Array<ACLAction> | undefined;
1259
+ onDemandBuild?: Array<ACLAction> | undefined;
1260
+ onDemandConcurrency?: Array<ACLAction> | undefined;
1261
+ project?: Array<ACLAction> | undefined;
1262
+ projectFromV0?: Array<ACLAction> | undefined;
1263
+ projectAccessGroup?: Array<ACLAction> | undefined;
1264
+ projectAnalyticsSampling?: Array<ACLAction> | undefined;
1265
+ projectCheck?: Array<ACLAction> | undefined;
1266
+ projectCheckRun?: Array<ACLAction> | undefined;
1267
+ projectDeploymentHook?: Array<ACLAction> | undefined;
1268
+ projectDomain?: Array<ACLAction> | undefined;
1269
+ projectDomainMove?: Array<ACLAction> | undefined;
1270
+ projectDomainCheckConfig?: Array<ACLAction> | undefined;
1271
+ projectEnvVars?: Array<ACLAction> | undefined;
1272
+ projectEnvVarsProduction?: Array<ACLAction> | undefined;
1273
+ projectEnvVarsUnownedByIntegration?: Array<ACLAction> | undefined;
1274
+ projectFlags?: Array<ACLAction> | undefined;
1275
+ projectId?: Array<ACLAction> | undefined;
1276
+ projectIntegrationConfiguration?: Array<ACLAction> | undefined;
1277
+ projectLink?: Array<ACLAction> | undefined;
1278
+ projectMember?: Array<ACLAction> | undefined;
1279
+ projectMonitoring?: Array<ACLAction> | undefined;
1280
+ projectPermissions?: Array<ACLAction> | undefined;
1281
+ projectProductionBranch?: Array<ACLAction> | undefined;
1282
+ projectTransfer?: Array<ACLAction> | undefined;
1283
+ projectTransferOut?: Array<ACLAction> | undefined;
1284
+ projectProtectionBypass?: Array<ACLAction> | undefined;
1285
+ projectUsage?: Array<ACLAction> | undefined;
1286
+ projectAnalyticsUsage?: Array<ACLAction> | undefined;
1287
+ projectSupportCase?: Array<ACLAction> | undefined;
1288
+ projectSupportCaseComment?: Array<ACLAction> | undefined;
1289
+ projectDeploymentExpiration?: Array<ACLAction> | undefined;
1290
+ projectRollingRelease?: Array<ACLAction> | undefined;
1291
+ projectTier?: Array<ACLAction> | undefined;
1292
+ seawallConfig?: Array<ACLAction> | undefined;
1293
+ skewProtection?: Array<ACLAction> | undefined;
1294
+ analytics?: Array<ACLAction> | undefined;
1295
+ trustedIps?: Array<ACLAction> | undefined;
1296
+ webAnalytics?: Array<ACLAction> | undefined;
1297
+ sharedEnvVarConnection?: Array<ACLAction> | undefined;
1298
+ sonar?: Array<ACLAction> | undefined;
1235
1299
  user?: Array<ACLAction> | undefined;
1236
1300
  userConnection?: Array<ACLAction> | undefined;
1237
1301
  userSudo?: Array<ACLAction> | undefined;
@@ -1371,70 +1435,6 @@ export type CreateProjectPermissions = {
1371
1435
  vercelRunExec?: Array<ACLAction> | undefined;
1372
1436
  apiKey?: Array<ACLAction> | undefined;
1373
1437
  apiKeyOwnedBySelf?: Array<ACLAction> | undefined;
1374
- aliasProject?: Array<ACLAction> | undefined;
1375
- aliasProtectionBypass?: Array<ACLAction> | undefined;
1376
- buildMachine?: Array<ACLAction> | undefined;
1377
- productionAliasProtectionBypass?: Array<ACLAction> | undefined;
1378
- connectConfigurationLink?: Array<ACLAction> | undefined;
1379
- dataCacheNamespace?: Array<ACLAction> | undefined;
1380
- deployment?: Array<ACLAction> | undefined;
1381
- deploymentCheck?: Array<ACLAction> | undefined;
1382
- deploymentCheckPreview?: Array<ACLAction> | undefined;
1383
- deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
1384
- deploymentProductionGit?: Array<ACLAction> | undefined;
1385
- deploymentV0?: Array<ACLAction> | undefined;
1386
- deploymentPreview?: Array<ACLAction> | undefined;
1387
- deploymentPrivate?: Array<ACLAction> | undefined;
1388
- deploymentPromote?: Array<ACLAction> | undefined;
1389
- deploymentRollback?: Array<ACLAction> | undefined;
1390
- edgeCacheNamespace?: Array<ACLAction> | undefined;
1391
- environments?: Array<ACLAction> | undefined;
1392
- logs?: Array<ACLAction> | undefined;
1393
- logsPreset?: Array<ACLAction> | undefined;
1394
- passwordProtection?: Array<ACLAction> | undefined;
1395
- optionsAllowlist?: Array<ACLAction> | undefined;
1396
- job?: Array<ACLAction> | undefined;
1397
- observabilityData?: Array<ACLAction> | undefined;
1398
- onDemandBuild?: Array<ACLAction> | undefined;
1399
- onDemandConcurrency?: Array<ACLAction> | undefined;
1400
- project?: Array<ACLAction> | undefined;
1401
- projectFromV0?: Array<ACLAction> | undefined;
1402
- projectAccessGroup?: Array<ACLAction> | undefined;
1403
- projectAnalyticsSampling?: Array<ACLAction> | undefined;
1404
- projectCheck?: Array<ACLAction> | undefined;
1405
- projectCheckRun?: Array<ACLAction> | undefined;
1406
- projectDeploymentHook?: Array<ACLAction> | undefined;
1407
- projectDomain?: Array<ACLAction> | undefined;
1408
- projectDomainMove?: Array<ACLAction> | undefined;
1409
- projectDomainCheckConfig?: Array<ACLAction> | undefined;
1410
- projectEnvVars?: Array<ACLAction> | undefined;
1411
- projectEnvVarsProduction?: Array<ACLAction> | undefined;
1412
- projectEnvVarsUnownedByIntegration?: Array<ACLAction> | undefined;
1413
- projectFlags?: Array<ACLAction> | undefined;
1414
- projectId?: Array<ACLAction> | undefined;
1415
- projectIntegrationConfiguration?: Array<ACLAction> | undefined;
1416
- projectLink?: Array<ACLAction> | undefined;
1417
- projectMember?: Array<ACLAction> | undefined;
1418
- projectMonitoring?: Array<ACLAction> | undefined;
1419
- projectPermissions?: Array<ACLAction> | undefined;
1420
- projectProductionBranch?: Array<ACLAction> | undefined;
1421
- projectTransfer?: Array<ACLAction> | undefined;
1422
- projectTransferOut?: Array<ACLAction> | undefined;
1423
- projectProtectionBypass?: Array<ACLAction> | undefined;
1424
- projectUsage?: Array<ACLAction> | undefined;
1425
- projectAnalyticsUsage?: Array<ACLAction> | undefined;
1426
- projectSupportCase?: Array<ACLAction> | undefined;
1427
- projectSupportCaseComment?: Array<ACLAction> | undefined;
1428
- projectDeploymentExpiration?: Array<ACLAction> | undefined;
1429
- projectRollingRelease?: Array<ACLAction> | undefined;
1430
- projectTier?: Array<ACLAction> | undefined;
1431
- seawallConfig?: Array<ACLAction> | undefined;
1432
- skewProtection?: Array<ACLAction> | undefined;
1433
- analytics?: Array<ACLAction> | undefined;
1434
- trustedIps?: Array<ACLAction> | undefined;
1435
- webAnalytics?: Array<ACLAction> | undefined;
1436
- sharedEnvVarConnection?: Array<ACLAction> | undefined;
1437
- sonar?: Array<ACLAction> | undefined;
1438
1438
  };
1439
1439
  export type CreateProjectLastRollbackTarget = {};
1440
1440
  export declare const CreateProjectJobStatus: {
@@ -1563,8 +1563,8 @@ export type CreateProjectSrc2 = {
1563
1563
  };
1564
1564
  export type CreateProjectSrc = CreateProjectSrc2 | string;
1565
1565
  export declare const CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType: {
1566
- readonly Host: "host";
1567
1566
  readonly Path: "path";
1567
+ readonly Host: "host";
1568
1568
  readonly Method: "method";
1569
1569
  readonly Header: "header";
1570
1570
  readonly Cookie: "cookie";
@@ -1597,8 +1597,8 @@ export type CreateProjectHas = {
1597
1597
  value?: CreateProjectValue2 | string | undefined;
1598
1598
  };
1599
1599
  export declare const CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType: {
1600
- readonly Host: "host";
1601
1600
  readonly Path: "path";
1601
+ readonly Host: "host";
1602
1602
  readonly Method: "method";
1603
1603
  readonly Header: "header";
1604
1604
  readonly Cookie: "cookie";
@@ -2606,18 +2606,18 @@ export declare namespace CreateProjectProjectsResponseType$ {
2606
2606
  /** @deprecated use `CreateProjectProjectsResponseType$inboundSchema` instead. */
2607
2607
  const inboundSchema: z.ZodNativeEnum<{
2608
2608
  readonly System: "system";
2609
- readonly Secret: "secret";
2610
2609
  readonly Encrypted: "encrypted";
2611
2610
  readonly Plain: "plain";
2612
2611
  readonly Sensitive: "sensitive";
2612
+ readonly Secret: "secret";
2613
2613
  }>;
2614
2614
  /** @deprecated use `CreateProjectProjectsResponseType$outboundSchema` instead. */
2615
2615
  const outboundSchema: z.ZodNativeEnum<{
2616
2616
  readonly System: "system";
2617
- readonly Secret: "secret";
2618
2617
  readonly Encrypted: "encrypted";
2619
2618
  readonly Plain: "plain";
2620
2619
  readonly Sensitive: "sensitive";
2620
+ readonly Secret: "secret";
2621
2621
  }>;
2622
2622
  }
2623
2623
  /** @internal */
@@ -5107,6 +5107,70 @@ export declare function createProjectTargetsFromJSON(jsonString: string): SafePa
5107
5107
  export declare const CreateProjectPermissions$inboundSchema: z.ZodType<CreateProjectPermissions, z.ZodTypeDef, unknown>;
5108
5108
  /** @internal */
5109
5109
  export type CreateProjectPermissions$Outbound = {
5110
+ aliasProject?: Array<string> | undefined;
5111
+ aliasProtectionBypass?: Array<string> | undefined;
5112
+ buildMachine?: Array<string> | undefined;
5113
+ productionAliasProtectionBypass?: Array<string> | undefined;
5114
+ connectConfigurationLink?: Array<string> | undefined;
5115
+ dataCacheNamespace?: Array<string> | undefined;
5116
+ deployment?: Array<string> | undefined;
5117
+ deploymentCheck?: Array<string> | undefined;
5118
+ deploymentCheckPreview?: Array<string> | undefined;
5119
+ deploymentCheckReRunFromProductionBranch?: Array<string> | undefined;
5120
+ deploymentProductionGit?: Array<string> | undefined;
5121
+ deploymentV0?: Array<string> | undefined;
5122
+ deploymentPreview?: Array<string> | undefined;
5123
+ deploymentPrivate?: Array<string> | undefined;
5124
+ deploymentPromote?: Array<string> | undefined;
5125
+ deploymentRollback?: Array<string> | undefined;
5126
+ edgeCacheNamespace?: Array<string> | undefined;
5127
+ environments?: Array<string> | undefined;
5128
+ logs?: Array<string> | undefined;
5129
+ logsPreset?: Array<string> | undefined;
5130
+ passwordProtection?: Array<string> | undefined;
5131
+ optionsAllowlist?: Array<string> | undefined;
5132
+ job?: Array<string> | undefined;
5133
+ observabilityData?: Array<string> | undefined;
5134
+ onDemandBuild?: Array<string> | undefined;
5135
+ onDemandConcurrency?: Array<string> | undefined;
5136
+ project?: Array<string> | undefined;
5137
+ projectFromV0?: Array<string> | undefined;
5138
+ projectAccessGroup?: Array<string> | undefined;
5139
+ projectAnalyticsSampling?: Array<string> | undefined;
5140
+ projectCheck?: Array<string> | undefined;
5141
+ projectCheckRun?: Array<string> | undefined;
5142
+ projectDeploymentHook?: Array<string> | undefined;
5143
+ projectDomain?: Array<string> | undefined;
5144
+ projectDomainMove?: Array<string> | undefined;
5145
+ projectDomainCheckConfig?: Array<string> | undefined;
5146
+ projectEnvVars?: Array<string> | undefined;
5147
+ projectEnvVarsProduction?: Array<string> | undefined;
5148
+ projectEnvVarsUnownedByIntegration?: Array<string> | undefined;
5149
+ projectFlags?: Array<string> | undefined;
5150
+ projectId?: Array<string> | undefined;
5151
+ projectIntegrationConfiguration?: Array<string> | undefined;
5152
+ projectLink?: Array<string> | undefined;
5153
+ projectMember?: Array<string> | undefined;
5154
+ projectMonitoring?: Array<string> | undefined;
5155
+ projectPermissions?: Array<string> | undefined;
5156
+ projectProductionBranch?: Array<string> | undefined;
5157
+ projectTransfer?: Array<string> | undefined;
5158
+ projectTransferOut?: Array<string> | undefined;
5159
+ projectProtectionBypass?: Array<string> | undefined;
5160
+ projectUsage?: Array<string> | undefined;
5161
+ projectAnalyticsUsage?: Array<string> | undefined;
5162
+ projectSupportCase?: Array<string> | undefined;
5163
+ projectSupportCaseComment?: Array<string> | undefined;
5164
+ projectDeploymentExpiration?: Array<string> | undefined;
5165
+ projectRollingRelease?: Array<string> | undefined;
5166
+ projectTier?: Array<string> | undefined;
5167
+ seawallConfig?: Array<string> | undefined;
5168
+ skewProtection?: Array<string> | undefined;
5169
+ analytics?: Array<string> | undefined;
5170
+ trustedIps?: Array<string> | undefined;
5171
+ webAnalytics?: Array<string> | undefined;
5172
+ sharedEnvVarConnection?: Array<string> | undefined;
5173
+ sonar?: Array<string> | undefined;
5110
5174
  user?: Array<string> | undefined;
5111
5175
  userConnection?: Array<string> | undefined;
5112
5176
  userSudo?: Array<string> | undefined;
@@ -5246,70 +5310,6 @@ export type CreateProjectPermissions$Outbound = {
5246
5310
  vercelRunExec?: Array<string> | undefined;
5247
5311
  apiKey?: Array<string> | undefined;
5248
5312
  apiKeyOwnedBySelf?: Array<string> | undefined;
5249
- aliasProject?: Array<string> | undefined;
5250
- aliasProtectionBypass?: Array<string> | undefined;
5251
- buildMachine?: Array<string> | undefined;
5252
- productionAliasProtectionBypass?: Array<string> | undefined;
5253
- connectConfigurationLink?: Array<string> | undefined;
5254
- dataCacheNamespace?: Array<string> | undefined;
5255
- deployment?: Array<string> | undefined;
5256
- deploymentCheck?: Array<string> | undefined;
5257
- deploymentCheckPreview?: Array<string> | undefined;
5258
- deploymentCheckReRunFromProductionBranch?: Array<string> | undefined;
5259
- deploymentProductionGit?: Array<string> | undefined;
5260
- deploymentV0?: Array<string> | undefined;
5261
- deploymentPreview?: Array<string> | undefined;
5262
- deploymentPrivate?: Array<string> | undefined;
5263
- deploymentPromote?: Array<string> | undefined;
5264
- deploymentRollback?: Array<string> | undefined;
5265
- edgeCacheNamespace?: Array<string> | undefined;
5266
- environments?: Array<string> | undefined;
5267
- logs?: Array<string> | undefined;
5268
- logsPreset?: Array<string> | undefined;
5269
- passwordProtection?: Array<string> | undefined;
5270
- optionsAllowlist?: Array<string> | undefined;
5271
- job?: Array<string> | undefined;
5272
- observabilityData?: Array<string> | undefined;
5273
- onDemandBuild?: Array<string> | undefined;
5274
- onDemandConcurrency?: Array<string> | undefined;
5275
- project?: Array<string> | undefined;
5276
- projectFromV0?: Array<string> | undefined;
5277
- projectAccessGroup?: Array<string> | undefined;
5278
- projectAnalyticsSampling?: Array<string> | undefined;
5279
- projectCheck?: Array<string> | undefined;
5280
- projectCheckRun?: Array<string> | undefined;
5281
- projectDeploymentHook?: Array<string> | undefined;
5282
- projectDomain?: Array<string> | undefined;
5283
- projectDomainMove?: Array<string> | undefined;
5284
- projectDomainCheckConfig?: Array<string> | undefined;
5285
- projectEnvVars?: Array<string> | undefined;
5286
- projectEnvVarsProduction?: Array<string> | undefined;
5287
- projectEnvVarsUnownedByIntegration?: Array<string> | undefined;
5288
- projectFlags?: Array<string> | undefined;
5289
- projectId?: Array<string> | undefined;
5290
- projectIntegrationConfiguration?: Array<string> | undefined;
5291
- projectLink?: Array<string> | undefined;
5292
- projectMember?: Array<string> | undefined;
5293
- projectMonitoring?: Array<string> | undefined;
5294
- projectPermissions?: Array<string> | undefined;
5295
- projectProductionBranch?: Array<string> | undefined;
5296
- projectTransfer?: Array<string> | undefined;
5297
- projectTransferOut?: Array<string> | undefined;
5298
- projectProtectionBypass?: Array<string> | undefined;
5299
- projectUsage?: Array<string> | undefined;
5300
- projectAnalyticsUsage?: Array<string> | undefined;
5301
- projectSupportCase?: Array<string> | undefined;
5302
- projectSupportCaseComment?: Array<string> | undefined;
5303
- projectDeploymentExpiration?: Array<string> | undefined;
5304
- projectRollingRelease?: Array<string> | undefined;
5305
- projectTier?: Array<string> | undefined;
5306
- seawallConfig?: Array<string> | undefined;
5307
- skewProtection?: Array<string> | undefined;
5308
- analytics?: Array<string> | undefined;
5309
- trustedIps?: Array<string> | undefined;
5310
- webAnalytics?: Array<string> | undefined;
5311
- sharedEnvVarConnection?: Array<string> | undefined;
5312
- sonar?: Array<string> | undefined;
5313
5313
  };
5314
5314
  /** @internal */
5315
5315
  export declare const CreateProjectPermissions$outboundSchema: z.ZodType<CreateProjectPermissions$Outbound, z.ZodTypeDef, CreateProjectPermissions>;
@@ -5837,8 +5837,8 @@ export declare const CreateProjectProjectsResponse200ApplicationJSONResponseBody
5837
5837
  export declare namespace CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType$ {
5838
5838
  /** @deprecated use `CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType$inboundSchema` instead. */
5839
5839
  const inboundSchema: z.ZodNativeEnum<{
5840
- readonly Host: "host";
5841
5840
  readonly Path: "path";
5841
+ readonly Host: "host";
5842
5842
  readonly Method: "method";
5843
5843
  readonly Header: "header";
5844
5844
  readonly Cookie: "cookie";
@@ -5852,8 +5852,8 @@ export declare namespace CreateProjectProjectsResponse200ApplicationJSONResponse
5852
5852
  }>;
5853
5853
  /** @deprecated use `CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType$outboundSchema` instead. */
5854
5854
  const outboundSchema: z.ZodNativeEnum<{
5855
- readonly Host: "host";
5856
5855
  readonly Path: "path";
5856
+ readonly Host: "host";
5857
5857
  readonly Method: "method";
5858
5858
  readonly Header: "header";
5859
5859
  readonly Cookie: "cookie";
@@ -5953,8 +5953,8 @@ export declare const CreateProjectProjectsResponse200ApplicationJSONResponseBody
5953
5953
  export declare namespace CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$ {
5954
5954
  /** @deprecated use `CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$inboundSchema` instead. */
5955
5955
  const inboundSchema: z.ZodNativeEnum<{
5956
- readonly Host: "host";
5957
5956
  readonly Path: "path";
5957
+ readonly Host: "host";
5958
5958
  readonly Method: "method";
5959
5959
  readonly Header: "header";
5960
5960
  readonly Cookie: "cookie";
@@ -5968,8 +5968,8 @@ export declare namespace CreateProjectProjectsResponse200ApplicationJSONResponse
5968
5968
  }>;
5969
5969
  /** @deprecated use `CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$outboundSchema` instead. */
5970
5970
  const outboundSchema: z.ZodNativeEnum<{
5971
- readonly Host: "host";
5972
5971
  readonly Path: "path";
5972
+ readonly Host: "host";
5973
5973
  readonly Method: "method";
5974
5974
  readonly Header: "header";
5975
5975
  readonly Cookie: "cookie";