@vercel/sdk 1.10.1 → 1.10.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. package/bin/mcp-server.js +816 -1951
  2. package/bin/mcp-server.js.map +22 -22
  3. package/esm/__tests__/teams.test.js +2 -2
  4. package/esm/__tests__/teams.test.js.map +1 -1
  5. package/esm/funcs/domainsBuyDomain.js +2 -2
  6. package/esm/funcs/domainsBuyDomain.js.map +1 -1
  7. package/esm/funcs/domainsPatchDomain.js +2 -2
  8. package/esm/funcs/domainsPatchDomain.js.map +1 -1
  9. package/esm/lib/config.d.ts +3 -3
  10. package/esm/lib/config.js +3 -3
  11. package/esm/mcp-server/mcp-server.js +1 -1
  12. package/esm/mcp-server/server.js +1 -1
  13. package/esm/models/canceldeploymentop.d.ts +49 -49
  14. package/esm/models/canceldeploymentop.d.ts.map +1 -1
  15. package/esm/models/canceldeploymentop.js +53 -55
  16. package/esm/models/canceldeploymentop.js.map +1 -1
  17. package/esm/models/createdeploymentop.d.ts +139 -139
  18. package/esm/models/createdeploymentop.d.ts.map +1 -1
  19. package/esm/models/createdeploymentop.js +153 -152
  20. package/esm/models/createdeploymentop.js.map +1 -1
  21. package/esm/models/createprojectenvop.d.ts +6 -6
  22. package/esm/models/createprojectenvop.js +2 -2
  23. package/esm/models/createprojectenvop.js.map +1 -1
  24. package/esm/models/createprojectop.d.ts +189 -741
  25. package/esm/models/createprojectop.d.ts.map +1 -1
  26. package/esm/models/createprojectop.js +179 -678
  27. package/esm/models/createprojectop.js.map +1 -1
  28. package/esm/models/editprojectenvop.d.ts +3 -3
  29. package/esm/models/editprojectenvop.js +1 -1
  30. package/esm/models/editprojectenvop.js.map +1 -1
  31. package/esm/models/filterprojectenvsop.d.ts +9 -9
  32. package/esm/models/filterprojectenvsop.js +3 -3
  33. package/esm/models/filterprojectenvsop.js.map +1 -1
  34. package/esm/models/getdeploymentop.d.ts +90 -90
  35. package/esm/models/getdeploymentop.d.ts.map +1 -1
  36. package/esm/models/getdeploymentop.js +101 -102
  37. package/esm/models/getdeploymentop.js.map +1 -1
  38. package/esm/models/getfirewallconfigop.d.ts +3 -0
  39. package/esm/models/getfirewallconfigop.d.ts.map +1 -1
  40. package/esm/models/getfirewallconfigop.js +1 -0
  41. package/esm/models/getfirewallconfigop.js.map +1 -1
  42. package/esm/models/getprojectsop.d.ts +33 -585
  43. package/esm/models/getprojectsop.d.ts.map +1 -1
  44. package/esm/models/getprojectsop.js +31 -530
  45. package/esm/models/getprojectsop.js.map +1 -1
  46. package/esm/models/putfirewallconfigop.d.ts +3 -0
  47. package/esm/models/putfirewallconfigop.d.ts.map +1 -1
  48. package/esm/models/putfirewallconfigop.js +1 -0
  49. package/esm/models/putfirewallconfigop.js.map +1 -1
  50. package/esm/models/removeprojectenvop.d.ts +9 -9
  51. package/esm/models/removeprojectenvop.js +3 -3
  52. package/esm/models/removeprojectenvop.js.map +1 -1
  53. package/esm/models/team.d.ts +13 -10
  54. package/esm/models/team.d.ts.map +1 -1
  55. package/esm/models/team.js +6 -5
  56. package/esm/models/team.js.map +1 -1
  57. package/esm/models/updateprojectdatacacheop.d.ts +41 -593
  58. package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
  59. package/esm/models/updateprojectdatacacheop.js +43 -561
  60. package/esm/models/updateprojectdatacacheop.js.map +1 -1
  61. package/esm/models/updateprojectop.d.ts +33 -585
  62. package/esm/models/updateprojectop.d.ts.map +1 -1
  63. package/esm/models/updateprojectop.js +31 -530
  64. package/esm/models/updateprojectop.js.map +1 -1
  65. package/esm/models/userevent.d.ts +154 -124
  66. package/esm/models/userevent.d.ts.map +1 -1
  67. package/esm/models/userevent.js +166 -135
  68. package/esm/models/userevent.js.map +1 -1
  69. package/examples/package-lock.json +1 -1
  70. package/jsr.json +1 -1
  71. package/package.json +1 -1
  72. package/src/__tests__/teams.test.ts +2 -2
  73. package/src/funcs/domainsBuyDomain.ts +2 -2
  74. package/src/funcs/domainsPatchDomain.ts +2 -2
  75. package/src/lib/config.ts +3 -3
  76. package/src/mcp-server/mcp-server.ts +1 -1
  77. package/src/mcp-server/server.ts +1 -1
  78. package/src/models/canceldeploymentop.ts +78 -104
  79. package/src/models/createdeploymentop.ts +332 -335
  80. package/src/models/createprojectenvop.ts +2 -2
  81. package/src/models/createprojectop.ts +448 -1472
  82. package/src/models/editprojectenvop.ts +1 -1
  83. package/src/models/filterprojectenvsop.ts +3 -3
  84. package/src/models/getdeploymentop.ts +214 -216
  85. package/src/models/getfirewallconfigop.ts +1 -0
  86. package/src/models/getprojectsop.ts +202 -1207
  87. package/src/models/putfirewallconfigop.ts +1 -0
  88. package/src/models/removeprojectenvop.ts +3 -3
  89. package/src/models/team.ts +13 -12
  90. package/src/models/updateprojectdatacacheop.ts +171 -1168
  91. package/src/models/updateprojectop.ts +197 -1221
  92. package/src/models/userevent.ts +309 -236
  93. package/vercel-spec.json +429 -1834
@@ -1099,6 +1099,7 @@ export type Permissions = {
1099
1099
  observabilityFunnel?: Array<ACLAction> | undefined;
1100
1100
  openTelemetryEndpoint?: Array<ACLAction> | undefined;
1101
1101
  vercelAppInstallation?: Array<ACLAction> | undefined;
1102
+ vercelAppInstallationRequest?: Array<ACLAction> | undefined;
1102
1103
  paymentMethod?: Array<ACLAction> | undefined;
1103
1104
  permissions?: Array<ACLAction> | undefined;
1104
1105
  postgres?: Array<ACLAction> | undefined;
@@ -1338,157 +1339,35 @@ export type UpdateProjectDataCacheWebAnalytics = {
1338
1339
  enabledAt?: number | undefined;
1339
1340
  hasData?: boolean | undefined;
1340
1341
  };
1341
- export type Src2 = {
1342
- re?: string | undefined;
1343
- eq?: string | undefined;
1344
- neq?: string | undefined;
1345
- inc?: Array<string> | undefined;
1346
- ninc?: Array<string> | undefined;
1347
- pre?: string | undefined;
1348
- suf?: string | undefined;
1349
- gt?: number | undefined;
1350
- gte?: number | undefined;
1351
- lt?: number | undefined;
1352
- lte?: number | undefined;
1353
- };
1354
- export type Src = Src2 | string;
1355
- export declare const UpdateProjectDataCacheProjectsResponse200ApplicationJSONResponseBodySecurityType: {
1356
- readonly Path: "path";
1357
- readonly Host: "host";
1358
- readonly Method: "method";
1359
- readonly Header: "header";
1360
- readonly Cookie: "cookie";
1361
- readonly Query: "query";
1362
- readonly IpAddress: "ip_address";
1363
- readonly Protocol: "protocol";
1364
- readonly Scheme: "scheme";
1365
- readonly Environment: "environment";
1366
- readonly Region: "region";
1367
- readonly InitialRequestPath: "initial_request_path";
1368
- };
1369
- export type UpdateProjectDataCacheProjectsResponse200ApplicationJSONResponseBodySecurityType = ClosedEnum<typeof UpdateProjectDataCacheProjectsResponse200ApplicationJSONResponseBodySecurityType>;
1370
- export type UpdateProjectDataCacheValueProjects2 = {
1371
- re?: string | undefined;
1372
- eq?: string | undefined;
1373
- neq?: string | undefined;
1374
- inc?: Array<string> | undefined;
1375
- ninc?: Array<string> | undefined;
1376
- pre?: string | undefined;
1377
- suf?: string | undefined;
1378
- gt?: number | undefined;
1379
- gte?: number | undefined;
1380
- lt?: number | undefined;
1381
- lte?: number | undefined;
1382
- };
1383
- export type UpdateProjectDataCacheProjectsValue = UpdateProjectDataCacheValueProjects2 | string;
1384
- export type Has = {
1385
- type: UpdateProjectDataCacheProjectsResponse200ApplicationJSONResponseBodySecurityType;
1386
- key?: string | undefined;
1387
- value?: UpdateProjectDataCacheValueProjects2 | string | undefined;
1388
- };
1389
- export declare const UpdateProjectDataCacheProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType: {
1390
- readonly Path: "path";
1391
- readonly Host: "host";
1392
- readonly Method: "method";
1393
- readonly Header: "header";
1394
- readonly Cookie: "cookie";
1395
- readonly Query: "query";
1396
- readonly IpAddress: "ip_address";
1397
- readonly Protocol: "protocol";
1398
- readonly Scheme: "scheme";
1399
- readonly Environment: "environment";
1400
- readonly Region: "region";
1401
- readonly InitialRequestPath: "initial_request_path";
1402
- };
1403
- export type UpdateProjectDataCacheProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType = ClosedEnum<typeof UpdateProjectDataCacheProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType>;
1404
- export type UpdateProjectDataCacheValue2 = {
1405
- re?: string | undefined;
1406
- eq?: string | undefined;
1407
- neq?: string | undefined;
1408
- inc?: Array<string> | undefined;
1409
- ninc?: Array<string> | undefined;
1410
- pre?: string | undefined;
1411
- suf?: string | undefined;
1412
- gt?: number | undefined;
1413
- gte?: number | undefined;
1414
- lt?: number | undefined;
1415
- lte?: number | undefined;
1416
- };
1417
- export type UpdateProjectDataCacheValue = UpdateProjectDataCacheValue2 | string;
1418
- export type Missing = {
1419
- type: UpdateProjectDataCacheProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType;
1420
- key?: string | undefined;
1421
- value?: UpdateProjectDataCacheValue2 | string | undefined;
1422
- };
1423
- export declare const Handle: {
1424
- readonly Init: "init";
1425
- readonly Finalize: "finalize";
1426
- };
1427
- export type Handle = ClosedEnum<typeof Handle>;
1428
- export declare const UpdateProjectDataCacheProjectsResponse200Action: {
1429
- readonly Deny: "deny";
1430
- readonly Challenge: "challenge";
1342
+ export declare const UpdateProjectDataCacheProjectsResponseAction: {
1431
1343
  readonly Log: "log";
1432
- readonly Bypass: "bypass";
1433
- readonly RateLimit: "rate_limit";
1434
- readonly Redirect: "redirect";
1435
- };
1436
- export type UpdateProjectDataCacheProjectsResponse200Action = ClosedEnum<typeof UpdateProjectDataCacheProjectsResponse200Action>;
1437
- export declare const UpdateProjectDataCacheAlgo: {
1438
- readonly FixedWindow: "fixed_window";
1439
- readonly TokenBucket: "token_bucket";
1440
- };
1441
- export type UpdateProjectDataCacheAlgo = ClosedEnum<typeof UpdateProjectDataCacheAlgo>;
1442
- export type Erl = {
1443
- algo: UpdateProjectDataCacheAlgo;
1444
- window: number;
1445
- limit: number;
1446
- keys: Array<string>;
1447
- };
1448
- export type UpdateProjectDataCacheMitigate = {
1449
- action: UpdateProjectDataCacheProjectsResponse200Action;
1450
- ruleId: string;
1451
- ttl?: number | undefined;
1452
- erl?: Erl | undefined;
1453
- };
1454
- export type FirewallRoutes = {
1455
- src?: Src2 | string | undefined;
1456
- has?: Array<Has> | undefined;
1457
- missing?: Array<Missing> | undefined;
1458
- dest?: string | undefined;
1459
- status?: number | undefined;
1460
- handle?: Handle | undefined;
1461
- mitigate?: UpdateProjectDataCacheMitigate | undefined;
1462
- };
1463
- export declare const UpdateProjectDataCacheAction: {
1464
- readonly Deny: "deny";
1465
1344
  readonly Challenge: "challenge";
1466
- readonly Log: "log";
1345
+ readonly Deny: "deny";
1467
1346
  };
1468
- export type UpdateProjectDataCacheAction = ClosedEnum<typeof UpdateProjectDataCacheAction>;
1347
+ export type UpdateProjectDataCacheProjectsResponseAction = ClosedEnum<typeof UpdateProjectDataCacheProjectsResponseAction>;
1469
1348
  export type BotFilter = {
1470
1349
  active: boolean;
1471
- action?: UpdateProjectDataCacheAction | undefined;
1350
+ action?: UpdateProjectDataCacheProjectsResponseAction | undefined;
1472
1351
  };
1473
- export declare const UpdateProjectDataCacheProjectsAction: {
1474
- readonly Deny: "deny";
1475
- readonly Challenge: "challenge";
1352
+ export declare const UpdateProjectDataCacheAction: {
1476
1353
  readonly Log: "log";
1354
+ readonly Challenge: "challenge";
1355
+ readonly Deny: "deny";
1477
1356
  };
1478
- export type UpdateProjectDataCacheProjectsAction = ClosedEnum<typeof UpdateProjectDataCacheProjectsAction>;
1357
+ export type UpdateProjectDataCacheAction = ClosedEnum<typeof UpdateProjectDataCacheAction>;
1479
1358
  export type UpdateProjectDataCacheAiBots = {
1480
1359
  active: boolean;
1481
- action?: UpdateProjectDataCacheProjectsAction | undefined;
1360
+ action?: UpdateProjectDataCacheAction | undefined;
1482
1361
  };
1483
- export declare const UpdateProjectDataCacheProjectsResponseAction: {
1484
- readonly Deny: "deny";
1485
- readonly Challenge: "challenge";
1362
+ export declare const UpdateProjectDataCacheProjectsAction: {
1486
1363
  readonly Log: "log";
1364
+ readonly Challenge: "challenge";
1365
+ readonly Deny: "deny";
1487
1366
  };
1488
- export type UpdateProjectDataCacheProjectsResponseAction = ClosedEnum<typeof UpdateProjectDataCacheProjectsResponseAction>;
1367
+ export type UpdateProjectDataCacheProjectsAction = ClosedEnum<typeof UpdateProjectDataCacheProjectsAction>;
1489
1368
  export type UpdateProjectDataCacheOwasp = {
1490
1369
  active: boolean;
1491
- action?: UpdateProjectDataCacheProjectsResponseAction | undefined;
1370
+ action?: UpdateProjectDataCacheProjectsAction | undefined;
1492
1371
  };
1493
1372
  export type UpdateProjectDataCacheManagedRules = {
1494
1373
  botFilter: BotFilter;
@@ -1502,7 +1381,6 @@ export type UpdateProjectDataCacheSecurity = {
1502
1381
  firewallUpdatedAt?: number | undefined;
1503
1382
  attackModeActiveUntil?: number | null | undefined;
1504
1383
  firewallConfigVersion?: number | undefined;
1505
- firewallRoutes?: Array<FirewallRoutes> | undefined;
1506
1384
  firewallSeawallEnabled?: boolean | undefined;
1507
1385
  ja3Enabled?: boolean | undefined;
1508
1386
  ja4Enabled?: boolean | undefined;
@@ -4669,6 +4547,7 @@ export type Permissions$Outbound = {
4669
4547
  observabilityFunnel?: Array<string> | undefined;
4670
4548
  openTelemetryEndpoint?: Array<string> | undefined;
4671
4549
  vercelAppInstallation?: Array<string> | undefined;
4550
+ vercelAppInstallationRequest?: Array<string> | undefined;
4672
4551
  paymentMethod?: Array<string> | undefined;
4673
4552
  permissions?: Array<string> | undefined;
4674
4553
  postgres?: Array<string> | undefined;
@@ -5259,455 +5138,25 @@ export declare namespace UpdateProjectDataCacheWebAnalytics$ {
5259
5138
  export declare function updateProjectDataCacheWebAnalyticsToJSON(updateProjectDataCacheWebAnalytics: UpdateProjectDataCacheWebAnalytics): string;
5260
5139
  export declare function updateProjectDataCacheWebAnalyticsFromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheWebAnalytics, SDKValidationError>;
5261
5140
  /** @internal */
5262
- export declare const Src2$inboundSchema: z.ZodType<Src2, z.ZodTypeDef, unknown>;
5263
- /** @internal */
5264
- export type Src2$Outbound = {
5265
- re?: string | undefined;
5266
- eq?: string | undefined;
5267
- neq?: string | undefined;
5268
- inc?: Array<string> | undefined;
5269
- ninc?: Array<string> | undefined;
5270
- pre?: string | undefined;
5271
- suf?: string | undefined;
5272
- gt?: number | undefined;
5273
- gte?: number | undefined;
5274
- lt?: number | undefined;
5275
- lte?: number | undefined;
5276
- };
5277
- /** @internal */
5278
- export declare const Src2$outboundSchema: z.ZodType<Src2$Outbound, z.ZodTypeDef, Src2>;
5279
- /**
5280
- * @internal
5281
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5282
- */
5283
- export declare namespace Src2$ {
5284
- /** @deprecated use `Src2$inboundSchema` instead. */
5285
- const inboundSchema: z.ZodType<Src2, z.ZodTypeDef, unknown>;
5286
- /** @deprecated use `Src2$outboundSchema` instead. */
5287
- const outboundSchema: z.ZodType<Src2$Outbound, z.ZodTypeDef, Src2>;
5288
- /** @deprecated use `Src2$Outbound` instead. */
5289
- type Outbound = Src2$Outbound;
5290
- }
5291
- export declare function src2ToJSON(src2: Src2): string;
5292
- export declare function src2FromJSON(jsonString: string): SafeParseResult<Src2, SDKValidationError>;
5293
- /** @internal */
5294
- export declare const Src$inboundSchema: z.ZodType<Src, z.ZodTypeDef, unknown>;
5295
- /** @internal */
5296
- export type Src$Outbound = Src2$Outbound | string;
5297
- /** @internal */
5298
- export declare const Src$outboundSchema: z.ZodType<Src$Outbound, z.ZodTypeDef, Src>;
5299
- /**
5300
- * @internal
5301
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5302
- */
5303
- export declare namespace Src$ {
5304
- /** @deprecated use `Src$inboundSchema` instead. */
5305
- const inboundSchema: z.ZodType<Src, z.ZodTypeDef, unknown>;
5306
- /** @deprecated use `Src$outboundSchema` instead. */
5307
- const outboundSchema: z.ZodType<Src$Outbound, z.ZodTypeDef, Src>;
5308
- /** @deprecated use `Src$Outbound` instead. */
5309
- type Outbound = Src$Outbound;
5310
- }
5311
- export declare function srcToJSON(src: Src): string;
5312
- export declare function srcFromJSON(jsonString: string): SafeParseResult<Src, SDKValidationError>;
5313
- /** @internal */
5314
- export declare const UpdateProjectDataCacheProjectsResponse200ApplicationJSONResponseBodySecurityType$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheProjectsResponse200ApplicationJSONResponseBodySecurityType>;
5315
- /** @internal */
5316
- export declare const UpdateProjectDataCacheProjectsResponse200ApplicationJSONResponseBodySecurityType$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheProjectsResponse200ApplicationJSONResponseBodySecurityType>;
5317
- /**
5318
- * @internal
5319
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5320
- */
5321
- export declare namespace UpdateProjectDataCacheProjectsResponse200ApplicationJSONResponseBodySecurityType$ {
5322
- /** @deprecated use `UpdateProjectDataCacheProjectsResponse200ApplicationJSONResponseBodySecurityType$inboundSchema` instead. */
5323
- const inboundSchema: z.ZodNativeEnum<{
5324
- readonly Path: "path";
5325
- readonly Host: "host";
5326
- readonly Method: "method";
5327
- readonly Header: "header";
5328
- readonly Cookie: "cookie";
5329
- readonly Query: "query";
5330
- readonly IpAddress: "ip_address";
5331
- readonly Protocol: "protocol";
5332
- readonly Scheme: "scheme";
5333
- readonly Environment: "environment";
5334
- readonly Region: "region";
5335
- readonly InitialRequestPath: "initial_request_path";
5336
- }>;
5337
- /** @deprecated use `UpdateProjectDataCacheProjectsResponse200ApplicationJSONResponseBodySecurityType$outboundSchema` instead. */
5338
- const outboundSchema: z.ZodNativeEnum<{
5339
- readonly Path: "path";
5340
- readonly Host: "host";
5341
- readonly Method: "method";
5342
- readonly Header: "header";
5343
- readonly Cookie: "cookie";
5344
- readonly Query: "query";
5345
- readonly IpAddress: "ip_address";
5346
- readonly Protocol: "protocol";
5347
- readonly Scheme: "scheme";
5348
- readonly Environment: "environment";
5349
- readonly Region: "region";
5350
- readonly InitialRequestPath: "initial_request_path";
5351
- }>;
5352
- }
5353
- /** @internal */
5354
- export declare const UpdateProjectDataCacheValueProjects2$inboundSchema: z.ZodType<UpdateProjectDataCacheValueProjects2, z.ZodTypeDef, unknown>;
5355
- /** @internal */
5356
- export type UpdateProjectDataCacheValueProjects2$Outbound = {
5357
- re?: string | undefined;
5358
- eq?: string | undefined;
5359
- neq?: string | undefined;
5360
- inc?: Array<string> | undefined;
5361
- ninc?: Array<string> | undefined;
5362
- pre?: string | undefined;
5363
- suf?: string | undefined;
5364
- gt?: number | undefined;
5365
- gte?: number | undefined;
5366
- lt?: number | undefined;
5367
- lte?: number | undefined;
5368
- };
5369
- /** @internal */
5370
- export declare const UpdateProjectDataCacheValueProjects2$outboundSchema: z.ZodType<UpdateProjectDataCacheValueProjects2$Outbound, z.ZodTypeDef, UpdateProjectDataCacheValueProjects2>;
5371
- /**
5372
- * @internal
5373
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5374
- */
5375
- export declare namespace UpdateProjectDataCacheValueProjects2$ {
5376
- /** @deprecated use `UpdateProjectDataCacheValueProjects2$inboundSchema` instead. */
5377
- const inboundSchema: z.ZodType<UpdateProjectDataCacheValueProjects2, z.ZodTypeDef, unknown>;
5378
- /** @deprecated use `UpdateProjectDataCacheValueProjects2$outboundSchema` instead. */
5379
- const outboundSchema: z.ZodType<UpdateProjectDataCacheValueProjects2$Outbound, z.ZodTypeDef, UpdateProjectDataCacheValueProjects2>;
5380
- /** @deprecated use `UpdateProjectDataCacheValueProjects2$Outbound` instead. */
5381
- type Outbound = UpdateProjectDataCacheValueProjects2$Outbound;
5382
- }
5383
- export declare function updateProjectDataCacheValueProjects2ToJSON(updateProjectDataCacheValueProjects2: UpdateProjectDataCacheValueProjects2): string;
5384
- export declare function updateProjectDataCacheValueProjects2FromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheValueProjects2, SDKValidationError>;
5385
- /** @internal */
5386
- export declare const UpdateProjectDataCacheProjectsValue$inboundSchema: z.ZodType<UpdateProjectDataCacheProjectsValue, z.ZodTypeDef, unknown>;
5387
- /** @internal */
5388
- export type UpdateProjectDataCacheProjectsValue$Outbound = UpdateProjectDataCacheValueProjects2$Outbound | string;
5389
- /** @internal */
5390
- export declare const UpdateProjectDataCacheProjectsValue$outboundSchema: z.ZodType<UpdateProjectDataCacheProjectsValue$Outbound, z.ZodTypeDef, UpdateProjectDataCacheProjectsValue>;
5391
- /**
5392
- * @internal
5393
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5394
- */
5395
- export declare namespace UpdateProjectDataCacheProjectsValue$ {
5396
- /** @deprecated use `UpdateProjectDataCacheProjectsValue$inboundSchema` instead. */
5397
- const inboundSchema: z.ZodType<UpdateProjectDataCacheProjectsValue, z.ZodTypeDef, unknown>;
5398
- /** @deprecated use `UpdateProjectDataCacheProjectsValue$outboundSchema` instead. */
5399
- const outboundSchema: z.ZodType<UpdateProjectDataCacheProjectsValue$Outbound, z.ZodTypeDef, UpdateProjectDataCacheProjectsValue>;
5400
- /** @deprecated use `UpdateProjectDataCacheProjectsValue$Outbound` instead. */
5401
- type Outbound = UpdateProjectDataCacheProjectsValue$Outbound;
5402
- }
5403
- export declare function updateProjectDataCacheProjectsValueToJSON(updateProjectDataCacheProjectsValue: UpdateProjectDataCacheProjectsValue): string;
5404
- export declare function updateProjectDataCacheProjectsValueFromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheProjectsValue, SDKValidationError>;
5405
- /** @internal */
5406
- export declare const Has$inboundSchema: z.ZodType<Has, z.ZodTypeDef, unknown>;
5407
- /** @internal */
5408
- export type Has$Outbound = {
5409
- type: string;
5410
- key?: string | undefined;
5411
- value?: UpdateProjectDataCacheValueProjects2$Outbound | string | undefined;
5412
- };
5413
- /** @internal */
5414
- export declare const Has$outboundSchema: z.ZodType<Has$Outbound, z.ZodTypeDef, Has>;
5415
- /**
5416
- * @internal
5417
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5418
- */
5419
- export declare namespace Has$ {
5420
- /** @deprecated use `Has$inboundSchema` instead. */
5421
- const inboundSchema: z.ZodType<Has, z.ZodTypeDef, unknown>;
5422
- /** @deprecated use `Has$outboundSchema` instead. */
5423
- const outboundSchema: z.ZodType<Has$Outbound, z.ZodTypeDef, Has>;
5424
- /** @deprecated use `Has$Outbound` instead. */
5425
- type Outbound = Has$Outbound;
5426
- }
5427
- export declare function hasToJSON(has: Has): string;
5428
- export declare function hasFromJSON(jsonString: string): SafeParseResult<Has, SDKValidationError>;
5429
- /** @internal */
5430
- export declare const UpdateProjectDataCacheProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType>;
5431
- /** @internal */
5432
- export declare const UpdateProjectDataCacheProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType>;
5433
- /**
5434
- * @internal
5435
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5436
- */
5437
- export declare namespace UpdateProjectDataCacheProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$ {
5438
- /** @deprecated use `UpdateProjectDataCacheProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$inboundSchema` instead. */
5439
- const inboundSchema: z.ZodNativeEnum<{
5440
- readonly Path: "path";
5441
- readonly Host: "host";
5442
- readonly Method: "method";
5443
- readonly Header: "header";
5444
- readonly Cookie: "cookie";
5445
- readonly Query: "query";
5446
- readonly IpAddress: "ip_address";
5447
- readonly Protocol: "protocol";
5448
- readonly Scheme: "scheme";
5449
- readonly Environment: "environment";
5450
- readonly Region: "region";
5451
- readonly InitialRequestPath: "initial_request_path";
5452
- }>;
5453
- /** @deprecated use `UpdateProjectDataCacheProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$outboundSchema` instead. */
5454
- const outboundSchema: z.ZodNativeEnum<{
5455
- readonly Path: "path";
5456
- readonly Host: "host";
5457
- readonly Method: "method";
5458
- readonly Header: "header";
5459
- readonly Cookie: "cookie";
5460
- readonly Query: "query";
5461
- readonly IpAddress: "ip_address";
5462
- readonly Protocol: "protocol";
5463
- readonly Scheme: "scheme";
5464
- readonly Environment: "environment";
5465
- readonly Region: "region";
5466
- readonly InitialRequestPath: "initial_request_path";
5467
- }>;
5468
- }
5469
- /** @internal */
5470
- export declare const UpdateProjectDataCacheValue2$inboundSchema: z.ZodType<UpdateProjectDataCacheValue2, z.ZodTypeDef, unknown>;
5471
- /** @internal */
5472
- export type UpdateProjectDataCacheValue2$Outbound = {
5473
- re?: string | undefined;
5474
- eq?: string | undefined;
5475
- neq?: string | undefined;
5476
- inc?: Array<string> | undefined;
5477
- ninc?: Array<string> | undefined;
5478
- pre?: string | undefined;
5479
- suf?: string | undefined;
5480
- gt?: number | undefined;
5481
- gte?: number | undefined;
5482
- lt?: number | undefined;
5483
- lte?: number | undefined;
5484
- };
5485
- /** @internal */
5486
- export declare const UpdateProjectDataCacheValue2$outboundSchema: z.ZodType<UpdateProjectDataCacheValue2$Outbound, z.ZodTypeDef, UpdateProjectDataCacheValue2>;
5487
- /**
5488
- * @internal
5489
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5490
- */
5491
- export declare namespace UpdateProjectDataCacheValue2$ {
5492
- /** @deprecated use `UpdateProjectDataCacheValue2$inboundSchema` instead. */
5493
- const inboundSchema: z.ZodType<UpdateProjectDataCacheValue2, z.ZodTypeDef, unknown>;
5494
- /** @deprecated use `UpdateProjectDataCacheValue2$outboundSchema` instead. */
5495
- const outboundSchema: z.ZodType<UpdateProjectDataCacheValue2$Outbound, z.ZodTypeDef, UpdateProjectDataCacheValue2>;
5496
- /** @deprecated use `UpdateProjectDataCacheValue2$Outbound` instead. */
5497
- type Outbound = UpdateProjectDataCacheValue2$Outbound;
5498
- }
5499
- export declare function updateProjectDataCacheValue2ToJSON(updateProjectDataCacheValue2: UpdateProjectDataCacheValue2): string;
5500
- export declare function updateProjectDataCacheValue2FromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheValue2, SDKValidationError>;
5501
- /** @internal */
5502
- export declare const UpdateProjectDataCacheValue$inboundSchema: z.ZodType<UpdateProjectDataCacheValue, z.ZodTypeDef, unknown>;
5503
- /** @internal */
5504
- export type UpdateProjectDataCacheValue$Outbound = UpdateProjectDataCacheValue2$Outbound | string;
5505
- /** @internal */
5506
- export declare const UpdateProjectDataCacheValue$outboundSchema: z.ZodType<UpdateProjectDataCacheValue$Outbound, z.ZodTypeDef, UpdateProjectDataCacheValue>;
5507
- /**
5508
- * @internal
5509
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5510
- */
5511
- export declare namespace UpdateProjectDataCacheValue$ {
5512
- /** @deprecated use `UpdateProjectDataCacheValue$inboundSchema` instead. */
5513
- const inboundSchema: z.ZodType<UpdateProjectDataCacheValue, z.ZodTypeDef, unknown>;
5514
- /** @deprecated use `UpdateProjectDataCacheValue$outboundSchema` instead. */
5515
- const outboundSchema: z.ZodType<UpdateProjectDataCacheValue$Outbound, z.ZodTypeDef, UpdateProjectDataCacheValue>;
5516
- /** @deprecated use `UpdateProjectDataCacheValue$Outbound` instead. */
5517
- type Outbound = UpdateProjectDataCacheValue$Outbound;
5518
- }
5519
- export declare function updateProjectDataCacheValueToJSON(updateProjectDataCacheValue: UpdateProjectDataCacheValue): string;
5520
- export declare function updateProjectDataCacheValueFromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheValue, SDKValidationError>;
5521
- /** @internal */
5522
- export declare const Missing$inboundSchema: z.ZodType<Missing, z.ZodTypeDef, unknown>;
5523
- /** @internal */
5524
- export type Missing$Outbound = {
5525
- type: string;
5526
- key?: string | undefined;
5527
- value?: UpdateProjectDataCacheValue2$Outbound | string | undefined;
5528
- };
5529
- /** @internal */
5530
- export declare const Missing$outboundSchema: z.ZodType<Missing$Outbound, z.ZodTypeDef, Missing>;
5531
- /**
5532
- * @internal
5533
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5534
- */
5535
- export declare namespace Missing$ {
5536
- /** @deprecated use `Missing$inboundSchema` instead. */
5537
- const inboundSchema: z.ZodType<Missing, z.ZodTypeDef, unknown>;
5538
- /** @deprecated use `Missing$outboundSchema` instead. */
5539
- const outboundSchema: z.ZodType<Missing$Outbound, z.ZodTypeDef, Missing>;
5540
- /** @deprecated use `Missing$Outbound` instead. */
5541
- type Outbound = Missing$Outbound;
5542
- }
5543
- export declare function missingToJSON(missing: Missing): string;
5544
- export declare function missingFromJSON(jsonString: string): SafeParseResult<Missing, SDKValidationError>;
5545
- /** @internal */
5546
- export declare const Handle$inboundSchema: z.ZodNativeEnum<typeof Handle>;
5547
- /** @internal */
5548
- export declare const Handle$outboundSchema: z.ZodNativeEnum<typeof Handle>;
5549
- /**
5550
- * @internal
5551
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5552
- */
5553
- export declare namespace Handle$ {
5554
- /** @deprecated use `Handle$inboundSchema` instead. */
5555
- const inboundSchema: z.ZodNativeEnum<{
5556
- readonly Init: "init";
5557
- readonly Finalize: "finalize";
5558
- }>;
5559
- /** @deprecated use `Handle$outboundSchema` instead. */
5560
- const outboundSchema: z.ZodNativeEnum<{
5561
- readonly Init: "init";
5562
- readonly Finalize: "finalize";
5563
- }>;
5564
- }
5565
- /** @internal */
5566
- export declare const UpdateProjectDataCacheProjectsResponse200Action$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheProjectsResponse200Action>;
5141
+ export declare const UpdateProjectDataCacheProjectsResponseAction$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheProjectsResponseAction>;
5567
5142
  /** @internal */
5568
- export declare const UpdateProjectDataCacheProjectsResponse200Action$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheProjectsResponse200Action>;
5143
+ export declare const UpdateProjectDataCacheProjectsResponseAction$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheProjectsResponseAction>;
5569
5144
  /**
5570
5145
  * @internal
5571
5146
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5572
5147
  */
5573
- export declare namespace UpdateProjectDataCacheProjectsResponse200Action$ {
5574
- /** @deprecated use `UpdateProjectDataCacheProjectsResponse200Action$inboundSchema` instead. */
5148
+ export declare namespace UpdateProjectDataCacheProjectsResponseAction$ {
5149
+ /** @deprecated use `UpdateProjectDataCacheProjectsResponseAction$inboundSchema` instead. */
5575
5150
  const inboundSchema: z.ZodNativeEnum<{
5576
- readonly Deny: "deny";
5577
- readonly Challenge: "challenge";
5578
5151
  readonly Log: "log";
5579
- readonly Bypass: "bypass";
5580
- readonly RateLimit: "rate_limit";
5581
- readonly Redirect: "redirect";
5582
- }>;
5583
- /** @deprecated use `UpdateProjectDataCacheProjectsResponse200Action$outboundSchema` instead. */
5584
- const outboundSchema: z.ZodNativeEnum<{
5585
- readonly Deny: "deny";
5586
5152
  readonly Challenge: "challenge";
5587
- readonly Log: "log";
5588
- readonly Bypass: "bypass";
5589
- readonly RateLimit: "rate_limit";
5590
- readonly Redirect: "redirect";
5591
- }>;
5592
- }
5593
- /** @internal */
5594
- export declare const UpdateProjectDataCacheAlgo$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheAlgo>;
5595
- /** @internal */
5596
- export declare const UpdateProjectDataCacheAlgo$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheAlgo>;
5597
- /**
5598
- * @internal
5599
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5600
- */
5601
- export declare namespace UpdateProjectDataCacheAlgo$ {
5602
- /** @deprecated use `UpdateProjectDataCacheAlgo$inboundSchema` instead. */
5603
- const inboundSchema: z.ZodNativeEnum<{
5604
- readonly FixedWindow: "fixed_window";
5605
- readonly TokenBucket: "token_bucket";
5606
- }>;
5607
- /** @deprecated use `UpdateProjectDataCacheAlgo$outboundSchema` instead. */
5608
- const outboundSchema: z.ZodNativeEnum<{
5609
- readonly FixedWindow: "fixed_window";
5610
- readonly TokenBucket: "token_bucket";
5611
- }>;
5612
- }
5613
- /** @internal */
5614
- export declare const Erl$inboundSchema: z.ZodType<Erl, z.ZodTypeDef, unknown>;
5615
- /** @internal */
5616
- export type Erl$Outbound = {
5617
- algo: string;
5618
- window: number;
5619
- limit: number;
5620
- keys: Array<string>;
5621
- };
5622
- /** @internal */
5623
- export declare const Erl$outboundSchema: z.ZodType<Erl$Outbound, z.ZodTypeDef, Erl>;
5624
- /**
5625
- * @internal
5626
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5627
- */
5628
- export declare namespace Erl$ {
5629
- /** @deprecated use `Erl$inboundSchema` instead. */
5630
- const inboundSchema: z.ZodType<Erl, z.ZodTypeDef, unknown>;
5631
- /** @deprecated use `Erl$outboundSchema` instead. */
5632
- const outboundSchema: z.ZodType<Erl$Outbound, z.ZodTypeDef, Erl>;
5633
- /** @deprecated use `Erl$Outbound` instead. */
5634
- type Outbound = Erl$Outbound;
5635
- }
5636
- export declare function erlToJSON(erl: Erl): string;
5637
- export declare function erlFromJSON(jsonString: string): SafeParseResult<Erl, SDKValidationError>;
5638
- /** @internal */
5639
- export declare const UpdateProjectDataCacheMitigate$inboundSchema: z.ZodType<UpdateProjectDataCacheMitigate, z.ZodTypeDef, unknown>;
5640
- /** @internal */
5641
- export type UpdateProjectDataCacheMitigate$Outbound = {
5642
- action: string;
5643
- rule_id: string;
5644
- ttl?: number | undefined;
5645
- erl?: Erl$Outbound | undefined;
5646
- };
5647
- /** @internal */
5648
- export declare const UpdateProjectDataCacheMitigate$outboundSchema: z.ZodType<UpdateProjectDataCacheMitigate$Outbound, z.ZodTypeDef, UpdateProjectDataCacheMitigate>;
5649
- /**
5650
- * @internal
5651
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5652
- */
5653
- export declare namespace UpdateProjectDataCacheMitigate$ {
5654
- /** @deprecated use `UpdateProjectDataCacheMitigate$inboundSchema` instead. */
5655
- const inboundSchema: z.ZodType<UpdateProjectDataCacheMitigate, z.ZodTypeDef, unknown>;
5656
- /** @deprecated use `UpdateProjectDataCacheMitigate$outboundSchema` instead. */
5657
- const outboundSchema: z.ZodType<UpdateProjectDataCacheMitigate$Outbound, z.ZodTypeDef, UpdateProjectDataCacheMitigate>;
5658
- /** @deprecated use `UpdateProjectDataCacheMitigate$Outbound` instead. */
5659
- type Outbound = UpdateProjectDataCacheMitigate$Outbound;
5660
- }
5661
- export declare function updateProjectDataCacheMitigateToJSON(updateProjectDataCacheMitigate: UpdateProjectDataCacheMitigate): string;
5662
- export declare function updateProjectDataCacheMitigateFromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheMitigate, SDKValidationError>;
5663
- /** @internal */
5664
- export declare const FirewallRoutes$inboundSchema: z.ZodType<FirewallRoutes, z.ZodTypeDef, unknown>;
5665
- /** @internal */
5666
- export type FirewallRoutes$Outbound = {
5667
- src?: Src2$Outbound | string | undefined;
5668
- has?: Array<Has$Outbound> | undefined;
5669
- missing?: Array<Missing$Outbound> | undefined;
5670
- dest?: string | undefined;
5671
- status?: number | undefined;
5672
- handle?: string | undefined;
5673
- mitigate?: UpdateProjectDataCacheMitigate$Outbound | undefined;
5674
- };
5675
- /** @internal */
5676
- export declare const FirewallRoutes$outboundSchema: z.ZodType<FirewallRoutes$Outbound, z.ZodTypeDef, FirewallRoutes>;
5677
- /**
5678
- * @internal
5679
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5680
- */
5681
- export declare namespace FirewallRoutes$ {
5682
- /** @deprecated use `FirewallRoutes$inboundSchema` instead. */
5683
- const inboundSchema: z.ZodType<FirewallRoutes, z.ZodTypeDef, unknown>;
5684
- /** @deprecated use `FirewallRoutes$outboundSchema` instead. */
5685
- const outboundSchema: z.ZodType<FirewallRoutes$Outbound, z.ZodTypeDef, FirewallRoutes>;
5686
- /** @deprecated use `FirewallRoutes$Outbound` instead. */
5687
- type Outbound = FirewallRoutes$Outbound;
5688
- }
5689
- export declare function firewallRoutesToJSON(firewallRoutes: FirewallRoutes): string;
5690
- export declare function firewallRoutesFromJSON(jsonString: string): SafeParseResult<FirewallRoutes, SDKValidationError>;
5691
- /** @internal */
5692
- export declare const UpdateProjectDataCacheAction$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheAction>;
5693
- /** @internal */
5694
- export declare const UpdateProjectDataCacheAction$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheAction>;
5695
- /**
5696
- * @internal
5697
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5698
- */
5699
- export declare namespace UpdateProjectDataCacheAction$ {
5700
- /** @deprecated use `UpdateProjectDataCacheAction$inboundSchema` instead. */
5701
- const inboundSchema: z.ZodNativeEnum<{
5702
5153
  readonly Deny: "deny";
5703
- readonly Challenge: "challenge";
5704
- readonly Log: "log";
5705
5154
  }>;
5706
- /** @deprecated use `UpdateProjectDataCacheAction$outboundSchema` instead. */
5155
+ /** @deprecated use `UpdateProjectDataCacheProjectsResponseAction$outboundSchema` instead. */
5707
5156
  const outboundSchema: z.ZodNativeEnum<{
5708
- readonly Deny: "deny";
5709
- readonly Challenge: "challenge";
5710
5157
  readonly Log: "log";
5158
+ readonly Challenge: "challenge";
5159
+ readonly Deny: "deny";
5711
5160
  }>;
5712
5161
  }
5713
5162
  /** @internal */
@@ -5734,25 +5183,25 @@ export declare namespace BotFilter$ {
5734
5183
  export declare function botFilterToJSON(botFilter: BotFilter): string;
5735
5184
  export declare function botFilterFromJSON(jsonString: string): SafeParseResult<BotFilter, SDKValidationError>;
5736
5185
  /** @internal */
5737
- export declare const UpdateProjectDataCacheProjectsAction$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheProjectsAction>;
5186
+ export declare const UpdateProjectDataCacheAction$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheAction>;
5738
5187
  /** @internal */
5739
- export declare const UpdateProjectDataCacheProjectsAction$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheProjectsAction>;
5188
+ export declare const UpdateProjectDataCacheAction$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheAction>;
5740
5189
  /**
5741
5190
  * @internal
5742
5191
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5743
5192
  */
5744
- export declare namespace UpdateProjectDataCacheProjectsAction$ {
5745
- /** @deprecated use `UpdateProjectDataCacheProjectsAction$inboundSchema` instead. */
5193
+ export declare namespace UpdateProjectDataCacheAction$ {
5194
+ /** @deprecated use `UpdateProjectDataCacheAction$inboundSchema` instead. */
5746
5195
  const inboundSchema: z.ZodNativeEnum<{
5747
- readonly Deny: "deny";
5748
- readonly Challenge: "challenge";
5749
5196
  readonly Log: "log";
5197
+ readonly Challenge: "challenge";
5198
+ readonly Deny: "deny";
5750
5199
  }>;
5751
- /** @deprecated use `UpdateProjectDataCacheProjectsAction$outboundSchema` instead. */
5200
+ /** @deprecated use `UpdateProjectDataCacheAction$outboundSchema` instead. */
5752
5201
  const outboundSchema: z.ZodNativeEnum<{
5753
- readonly Deny: "deny";
5754
- readonly Challenge: "challenge";
5755
5202
  readonly Log: "log";
5203
+ readonly Challenge: "challenge";
5204
+ readonly Deny: "deny";
5756
5205
  }>;
5757
5206
  }
5758
5207
  /** @internal */
@@ -5779,25 +5228,25 @@ export declare namespace UpdateProjectDataCacheAiBots$ {
5779
5228
  export declare function updateProjectDataCacheAiBotsToJSON(updateProjectDataCacheAiBots: UpdateProjectDataCacheAiBots): string;
5780
5229
  export declare function updateProjectDataCacheAiBotsFromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheAiBots, SDKValidationError>;
5781
5230
  /** @internal */
5782
- export declare const UpdateProjectDataCacheProjectsResponseAction$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheProjectsResponseAction>;
5231
+ export declare const UpdateProjectDataCacheProjectsAction$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheProjectsAction>;
5783
5232
  /** @internal */
5784
- export declare const UpdateProjectDataCacheProjectsResponseAction$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheProjectsResponseAction>;
5233
+ export declare const UpdateProjectDataCacheProjectsAction$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheProjectsAction>;
5785
5234
  /**
5786
5235
  * @internal
5787
5236
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5788
5237
  */
5789
- export declare namespace UpdateProjectDataCacheProjectsResponseAction$ {
5790
- /** @deprecated use `UpdateProjectDataCacheProjectsResponseAction$inboundSchema` instead. */
5238
+ export declare namespace UpdateProjectDataCacheProjectsAction$ {
5239
+ /** @deprecated use `UpdateProjectDataCacheProjectsAction$inboundSchema` instead. */
5791
5240
  const inboundSchema: z.ZodNativeEnum<{
5792
- readonly Deny: "deny";
5793
- readonly Challenge: "challenge";
5794
5241
  readonly Log: "log";
5242
+ readonly Challenge: "challenge";
5243
+ readonly Deny: "deny";
5795
5244
  }>;
5796
- /** @deprecated use `UpdateProjectDataCacheProjectsResponseAction$outboundSchema` instead. */
5245
+ /** @deprecated use `UpdateProjectDataCacheProjectsAction$outboundSchema` instead. */
5797
5246
  const outboundSchema: z.ZodNativeEnum<{
5798
- readonly Deny: "deny";
5799
- readonly Challenge: "challenge";
5800
5247
  readonly Log: "log";
5248
+ readonly Challenge: "challenge";
5249
+ readonly Deny: "deny";
5801
5250
  }>;
5802
5251
  }
5803
5252
  /** @internal */
@@ -5857,7 +5306,6 @@ export type UpdateProjectDataCacheSecurity$Outbound = {
5857
5306
  firewallUpdatedAt?: number | undefined;
5858
5307
  attackModeActiveUntil?: number | null | undefined;
5859
5308
  firewallConfigVersion?: number | undefined;
5860
- firewallRoutes?: Array<FirewallRoutes$Outbound> | undefined;
5861
5309
  firewallSeawallEnabled?: boolean | undefined;
5862
5310
  ja3Enabled?: boolean | undefined;
5863
5311
  ja4Enabled?: boolean | undefined;