@vercel/sdk 1.10.1 → 1.10.3
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 +436 -1558
- package/bin/mcp-server.js.map +19 -19
- package/esm/__tests__/teams.test.js +2 -4
- package/esm/__tests__/teams.test.js.map +1 -1
- package/esm/funcs/domainsBuyDomain.js +2 -2
- package/esm/funcs/domainsBuyDomain.js.map +1 -1
- package/esm/funcs/domainsGetDomainConfig.js +1 -0
- package/esm/funcs/domainsGetDomainConfig.js.map +1 -1
- package/esm/funcs/domainsPatchDomain.js +2 -2
- package/esm/funcs/domainsPatchDomain.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 +49 -49
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +53 -55
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +174 -174
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +166 -165
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createprojectop.d.ts +33 -585
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +31 -530
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/getdeploymentop.d.ts +90 -90
- package/esm/models/getdeploymentop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.js +101 -102
- package/esm/models/getdeploymentop.js.map +1 -1
- package/esm/models/getdomainconfigop.d.ts +63 -0
- package/esm/models/getdomainconfigop.d.ts.map +1 -1
- package/esm/models/getdomainconfigop.js +52 -0
- package/esm/models/getdomainconfigop.js.map +1 -1
- package/esm/models/getprojectsop.d.ts +33 -585
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +31 -530
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/team.d.ts +13 -12
- package/esm/models/team.d.ts.map +1 -1
- package/esm/models/team.js +6 -7
- package/esm/models/team.js.map +1 -1
- package/esm/models/teamlimited.d.ts +0 -2
- package/esm/models/teamlimited.d.ts.map +1 -1
- package/esm/models/teamlimited.js +0 -2
- package/esm/models/teamlimited.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +41 -593
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +43 -561
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +33 -585
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +31 -530
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/models/userevent.d.ts +154 -124
- package/esm/models/userevent.d.ts.map +1 -1
- package/esm/models/userevent.js +166 -135
- package/esm/models/userevent.js.map +1 -1
- package/examples/package-lock.json +1 -1
- package/examples/projectsUpdateProject.example.ts +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/teams.test.ts +2 -4
- package/src/funcs/domainsBuyDomain.ts +2 -2
- package/src/funcs/domainsGetDomainConfig.ts +1 -0
- package/src/funcs/domainsPatchDomain.ts +2 -2
- 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 +78 -104
- package/src/models/createdeploymentop.ts +347 -350
- package/src/models/createprojectop.ts +197 -1221
- package/src/models/getdeploymentop.ts +214 -216
- package/src/models/getdomainconfigop.ts +129 -0
- package/src/models/getprojectsop.ts +202 -1207
- package/src/models/team.ts +13 -16
- package/src/models/teamlimited.ts +0 -4
- package/src/models/updateprojectdatacacheop.ts +171 -1168
- package/src/models/updateprojectop.ts +197 -1221
- package/src/models/userevent.ts +309 -236
- package/vercel-spec.json +141 -1530
|
@@ -1207,6 +1207,7 @@ export type GetProjectsPermissions = {
|
|
|
1207
1207
|
observabilityFunnel?: Array<ACLAction> | undefined;
|
|
1208
1208
|
openTelemetryEndpoint?: Array<ACLAction> | undefined;
|
|
1209
1209
|
vercelAppInstallation?: Array<ACLAction> | undefined;
|
|
1210
|
+
vercelAppInstallationRequest?: Array<ACLAction> | undefined;
|
|
1210
1211
|
paymentMethod?: Array<ACLAction> | undefined;
|
|
1211
1212
|
permissions?: Array<ACLAction> | undefined;
|
|
1212
1213
|
postgres?: Array<ACLAction> | undefined;
|
|
@@ -1380,157 +1381,35 @@ export type GetProjectsWebAnalytics = {
|
|
|
1380
1381
|
enabledAt?: number | undefined;
|
|
1381
1382
|
hasData?: boolean | undefined;
|
|
1382
1383
|
};
|
|
1383
|
-
export type GetProjectsSrc2 = {
|
|
1384
|
-
re?: string | undefined;
|
|
1385
|
-
eq?: string | undefined;
|
|
1386
|
-
neq?: string | undefined;
|
|
1387
|
-
inc?: Array<string> | undefined;
|
|
1388
|
-
ninc?: Array<string> | undefined;
|
|
1389
|
-
pre?: string | undefined;
|
|
1390
|
-
suf?: string | undefined;
|
|
1391
|
-
gt?: number | undefined;
|
|
1392
|
-
gte?: number | undefined;
|
|
1393
|
-
lt?: number | undefined;
|
|
1394
|
-
lte?: number | undefined;
|
|
1395
|
-
};
|
|
1396
|
-
export type GetProjectsSrc = GetProjectsSrc2 | string;
|
|
1397
|
-
export declare const GetProjectsProjectsResponse200ApplicationJSONResponseBodyProjectsSecurityType: {
|
|
1398
|
-
readonly Path: "path";
|
|
1399
|
-
readonly Host: "host";
|
|
1400
|
-
readonly Method: "method";
|
|
1401
|
-
readonly Header: "header";
|
|
1402
|
-
readonly Cookie: "cookie";
|
|
1403
|
-
readonly Query: "query";
|
|
1404
|
-
readonly IpAddress: "ip_address";
|
|
1405
|
-
readonly Protocol: "protocol";
|
|
1406
|
-
readonly Scheme: "scheme";
|
|
1407
|
-
readonly Environment: "environment";
|
|
1408
|
-
readonly Region: "region";
|
|
1409
|
-
readonly InitialRequestPath: "initial_request_path";
|
|
1410
|
-
};
|
|
1411
|
-
export type GetProjectsProjectsResponse200ApplicationJSONResponseBodyProjectsSecurityType = ClosedEnum<typeof GetProjectsProjectsResponse200ApplicationJSONResponseBodyProjectsSecurityType>;
|
|
1412
|
-
export type GetProjectsValue2 = {
|
|
1413
|
-
re?: string | undefined;
|
|
1414
|
-
eq?: string | undefined;
|
|
1415
|
-
neq?: string | undefined;
|
|
1416
|
-
inc?: Array<string> | undefined;
|
|
1417
|
-
ninc?: Array<string> | undefined;
|
|
1418
|
-
pre?: string | undefined;
|
|
1419
|
-
suf?: string | undefined;
|
|
1420
|
-
gt?: number | undefined;
|
|
1421
|
-
gte?: number | undefined;
|
|
1422
|
-
lt?: number | undefined;
|
|
1423
|
-
lte?: number | undefined;
|
|
1424
|
-
};
|
|
1425
|
-
export type GetProjectsValue = GetProjectsValue2 | string;
|
|
1426
|
-
export type GetProjectsHas = {
|
|
1427
|
-
type: GetProjectsProjectsResponse200ApplicationJSONResponseBodyProjectsSecurityType;
|
|
1428
|
-
key?: string | undefined;
|
|
1429
|
-
value?: GetProjectsValue2 | string | undefined;
|
|
1430
|
-
};
|
|
1431
|
-
export declare const GetProjectsProjectsResponse200ApplicationJSONResponseBodyProjectsSecurityFirewallRoutesType: {
|
|
1432
|
-
readonly Path: "path";
|
|
1433
|
-
readonly Host: "host";
|
|
1434
|
-
readonly Method: "method";
|
|
1435
|
-
readonly Header: "header";
|
|
1436
|
-
readonly Cookie: "cookie";
|
|
1437
|
-
readonly Query: "query";
|
|
1438
|
-
readonly IpAddress: "ip_address";
|
|
1439
|
-
readonly Protocol: "protocol";
|
|
1440
|
-
readonly Scheme: "scheme";
|
|
1441
|
-
readonly Environment: "environment";
|
|
1442
|
-
readonly Region: "region";
|
|
1443
|
-
readonly InitialRequestPath: "initial_request_path";
|
|
1444
|
-
};
|
|
1445
|
-
export type GetProjectsProjectsResponse200ApplicationJSONResponseBodyProjectsSecurityFirewallRoutesType = ClosedEnum<typeof GetProjectsProjectsResponse200ApplicationJSONResponseBodyProjectsSecurityFirewallRoutesType>;
|
|
1446
|
-
export type GetProjectsValueProjects2 = {
|
|
1447
|
-
re?: string | undefined;
|
|
1448
|
-
eq?: string | undefined;
|
|
1449
|
-
neq?: string | undefined;
|
|
1450
|
-
inc?: Array<string> | undefined;
|
|
1451
|
-
ninc?: Array<string> | undefined;
|
|
1452
|
-
pre?: string | undefined;
|
|
1453
|
-
suf?: string | undefined;
|
|
1454
|
-
gt?: number | undefined;
|
|
1455
|
-
gte?: number | undefined;
|
|
1456
|
-
lt?: number | undefined;
|
|
1457
|
-
lte?: number | undefined;
|
|
1458
|
-
};
|
|
1459
|
-
export type GetProjectsProjectsValue = GetProjectsValueProjects2 | string;
|
|
1460
|
-
export type GetProjectsMissing = {
|
|
1461
|
-
type: GetProjectsProjectsResponse200ApplicationJSONResponseBodyProjectsSecurityFirewallRoutesType;
|
|
1462
|
-
key?: string | undefined;
|
|
1463
|
-
value?: GetProjectsValueProjects2 | string | undefined;
|
|
1464
|
-
};
|
|
1465
|
-
export declare const GetProjectsHandle: {
|
|
1466
|
-
readonly Init: "init";
|
|
1467
|
-
readonly Finalize: "finalize";
|
|
1468
|
-
};
|
|
1469
|
-
export type GetProjectsHandle = ClosedEnum<typeof GetProjectsHandle>;
|
|
1470
1384
|
export declare const GetProjectsAction: {
|
|
1471
|
-
readonly Deny: "deny";
|
|
1472
|
-
readonly Challenge: "challenge";
|
|
1473
1385
|
readonly Log: "log";
|
|
1474
|
-
readonly
|
|
1475
|
-
readonly
|
|
1476
|
-
readonly Redirect: "redirect";
|
|
1386
|
+
readonly Challenge: "challenge";
|
|
1387
|
+
readonly Deny: "deny";
|
|
1477
1388
|
};
|
|
1478
1389
|
export type GetProjectsAction = ClosedEnum<typeof GetProjectsAction>;
|
|
1479
|
-
export
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
};
|
|
1483
|
-
export type GetProjectsAlgo = ClosedEnum<typeof GetProjectsAlgo>;
|
|
1484
|
-
export type GetProjectsErl = {
|
|
1485
|
-
algo: GetProjectsAlgo;
|
|
1486
|
-
window: number;
|
|
1487
|
-
limit: number;
|
|
1488
|
-
keys: Array<string>;
|
|
1489
|
-
};
|
|
1490
|
-
export type GetProjectsMitigate = {
|
|
1491
|
-
action: GetProjectsAction;
|
|
1492
|
-
ruleId: string;
|
|
1493
|
-
ttl?: number | undefined;
|
|
1494
|
-
erl?: GetProjectsErl | undefined;
|
|
1495
|
-
};
|
|
1496
|
-
export type GetProjectsFirewallRoutes = {
|
|
1497
|
-
src?: GetProjectsSrc2 | string | undefined;
|
|
1498
|
-
has?: Array<GetProjectsHas> | undefined;
|
|
1499
|
-
missing?: Array<GetProjectsMissing> | undefined;
|
|
1500
|
-
dest?: string | undefined;
|
|
1501
|
-
status?: number | undefined;
|
|
1502
|
-
handle?: GetProjectsHandle | undefined;
|
|
1503
|
-
mitigate?: GetProjectsMitigate | undefined;
|
|
1390
|
+
export type GetProjectsBotFilter = {
|
|
1391
|
+
active: boolean;
|
|
1392
|
+
action?: GetProjectsAction | undefined;
|
|
1504
1393
|
};
|
|
1505
1394
|
export declare const GetProjectsProjectsAction: {
|
|
1506
|
-
readonly Deny: "deny";
|
|
1507
|
-
readonly Challenge: "challenge";
|
|
1508
1395
|
readonly Log: "log";
|
|
1396
|
+
readonly Challenge: "challenge";
|
|
1397
|
+
readonly Deny: "deny";
|
|
1509
1398
|
};
|
|
1510
1399
|
export type GetProjectsProjectsAction = ClosedEnum<typeof GetProjectsProjectsAction>;
|
|
1511
|
-
export type
|
|
1400
|
+
export type GetProjectsAiBots = {
|
|
1512
1401
|
active: boolean;
|
|
1513
1402
|
action?: GetProjectsProjectsAction | undefined;
|
|
1514
1403
|
};
|
|
1515
1404
|
export declare const GetProjectsProjectsResponseAction: {
|
|
1516
|
-
readonly Deny: "deny";
|
|
1517
|
-
readonly Challenge: "challenge";
|
|
1518
1405
|
readonly Log: "log";
|
|
1519
|
-
};
|
|
1520
|
-
export type GetProjectsProjectsResponseAction = ClosedEnum<typeof GetProjectsProjectsResponseAction>;
|
|
1521
|
-
export type GetProjectsAiBots = {
|
|
1522
|
-
active: boolean;
|
|
1523
|
-
action?: GetProjectsProjectsResponseAction | undefined;
|
|
1524
|
-
};
|
|
1525
|
-
export declare const GetProjectsProjectsResponse200Action: {
|
|
1526
|
-
readonly Deny: "deny";
|
|
1527
1406
|
readonly Challenge: "challenge";
|
|
1528
|
-
readonly
|
|
1407
|
+
readonly Deny: "deny";
|
|
1529
1408
|
};
|
|
1530
|
-
export type
|
|
1409
|
+
export type GetProjectsProjectsResponseAction = ClosedEnum<typeof GetProjectsProjectsResponseAction>;
|
|
1531
1410
|
export type GetProjectsOwasp = {
|
|
1532
1411
|
active: boolean;
|
|
1533
|
-
action?:
|
|
1412
|
+
action?: GetProjectsProjectsResponseAction | undefined;
|
|
1534
1413
|
};
|
|
1535
1414
|
export type GetProjectsManagedRules = {
|
|
1536
1415
|
botFilter: GetProjectsBotFilter;
|
|
@@ -1544,7 +1423,6 @@ export type GetProjectsSecurity = {
|
|
|
1544
1423
|
firewallUpdatedAt?: number | undefined;
|
|
1545
1424
|
attackModeActiveUntil?: number | null | undefined;
|
|
1546
1425
|
firewallConfigVersion?: number | undefined;
|
|
1547
|
-
firewallRoutes?: Array<GetProjectsFirewallRoutes> | undefined;
|
|
1548
1426
|
firewallSeawallEnabled?: boolean | undefined;
|
|
1549
1427
|
ja3Enabled?: boolean | undefined;
|
|
1550
1428
|
ja4Enabled?: boolean | undefined;
|
|
@@ -4794,6 +4672,7 @@ export type GetProjectsPermissions$Outbound = {
|
|
|
4794
4672
|
observabilityFunnel?: Array<string> | undefined;
|
|
4795
4673
|
openTelemetryEndpoint?: Array<string> | undefined;
|
|
4796
4674
|
vercelAppInstallation?: Array<string> | undefined;
|
|
4675
|
+
vercelAppInstallationRequest?: Array<string> | undefined;
|
|
4797
4676
|
paymentMethod?: Array<string> | undefined;
|
|
4798
4677
|
permissions?: Array<string> | undefined;
|
|
4799
4678
|
postgres?: Array<string> | undefined;
|
|
@@ -5318,310 +5197,6 @@ export declare namespace GetProjectsWebAnalytics$ {
|
|
|
5318
5197
|
export declare function getProjectsWebAnalyticsToJSON(getProjectsWebAnalytics: GetProjectsWebAnalytics): string;
|
|
5319
5198
|
export declare function getProjectsWebAnalyticsFromJSON(jsonString: string): SafeParseResult<GetProjectsWebAnalytics, SDKValidationError>;
|
|
5320
5199
|
/** @internal */
|
|
5321
|
-
export declare const GetProjectsSrc2$inboundSchema: z.ZodType<GetProjectsSrc2, z.ZodTypeDef, unknown>;
|
|
5322
|
-
/** @internal */
|
|
5323
|
-
export type GetProjectsSrc2$Outbound = {
|
|
5324
|
-
re?: string | undefined;
|
|
5325
|
-
eq?: string | undefined;
|
|
5326
|
-
neq?: string | undefined;
|
|
5327
|
-
inc?: Array<string> | undefined;
|
|
5328
|
-
ninc?: Array<string> | undefined;
|
|
5329
|
-
pre?: string | undefined;
|
|
5330
|
-
suf?: string | undefined;
|
|
5331
|
-
gt?: number | undefined;
|
|
5332
|
-
gte?: number | undefined;
|
|
5333
|
-
lt?: number | undefined;
|
|
5334
|
-
lte?: number | undefined;
|
|
5335
|
-
};
|
|
5336
|
-
/** @internal */
|
|
5337
|
-
export declare const GetProjectsSrc2$outboundSchema: z.ZodType<GetProjectsSrc2$Outbound, z.ZodTypeDef, GetProjectsSrc2>;
|
|
5338
|
-
/**
|
|
5339
|
-
* @internal
|
|
5340
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5341
|
-
*/
|
|
5342
|
-
export declare namespace GetProjectsSrc2$ {
|
|
5343
|
-
/** @deprecated use `GetProjectsSrc2$inboundSchema` instead. */
|
|
5344
|
-
const inboundSchema: z.ZodType<GetProjectsSrc2, z.ZodTypeDef, unknown>;
|
|
5345
|
-
/** @deprecated use `GetProjectsSrc2$outboundSchema` instead. */
|
|
5346
|
-
const outboundSchema: z.ZodType<GetProjectsSrc2$Outbound, z.ZodTypeDef, GetProjectsSrc2>;
|
|
5347
|
-
/** @deprecated use `GetProjectsSrc2$Outbound` instead. */
|
|
5348
|
-
type Outbound = GetProjectsSrc2$Outbound;
|
|
5349
|
-
}
|
|
5350
|
-
export declare function getProjectsSrc2ToJSON(getProjectsSrc2: GetProjectsSrc2): string;
|
|
5351
|
-
export declare function getProjectsSrc2FromJSON(jsonString: string): SafeParseResult<GetProjectsSrc2, SDKValidationError>;
|
|
5352
|
-
/** @internal */
|
|
5353
|
-
export declare const GetProjectsSrc$inboundSchema: z.ZodType<GetProjectsSrc, z.ZodTypeDef, unknown>;
|
|
5354
|
-
/** @internal */
|
|
5355
|
-
export type GetProjectsSrc$Outbound = GetProjectsSrc2$Outbound | string;
|
|
5356
|
-
/** @internal */
|
|
5357
|
-
export declare const GetProjectsSrc$outboundSchema: z.ZodType<GetProjectsSrc$Outbound, z.ZodTypeDef, GetProjectsSrc>;
|
|
5358
|
-
/**
|
|
5359
|
-
* @internal
|
|
5360
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5361
|
-
*/
|
|
5362
|
-
export declare namespace GetProjectsSrc$ {
|
|
5363
|
-
/** @deprecated use `GetProjectsSrc$inboundSchema` instead. */
|
|
5364
|
-
const inboundSchema: z.ZodType<GetProjectsSrc, z.ZodTypeDef, unknown>;
|
|
5365
|
-
/** @deprecated use `GetProjectsSrc$outboundSchema` instead. */
|
|
5366
|
-
const outboundSchema: z.ZodType<GetProjectsSrc$Outbound, z.ZodTypeDef, GetProjectsSrc>;
|
|
5367
|
-
/** @deprecated use `GetProjectsSrc$Outbound` instead. */
|
|
5368
|
-
type Outbound = GetProjectsSrc$Outbound;
|
|
5369
|
-
}
|
|
5370
|
-
export declare function getProjectsSrcToJSON(getProjectsSrc: GetProjectsSrc): string;
|
|
5371
|
-
export declare function getProjectsSrcFromJSON(jsonString: string): SafeParseResult<GetProjectsSrc, SDKValidationError>;
|
|
5372
|
-
/** @internal */
|
|
5373
|
-
export declare const GetProjectsProjectsResponse200ApplicationJSONResponseBodyProjectsSecurityType$inboundSchema: z.ZodNativeEnum<typeof GetProjectsProjectsResponse200ApplicationJSONResponseBodyProjectsSecurityType>;
|
|
5374
|
-
/** @internal */
|
|
5375
|
-
export declare const GetProjectsProjectsResponse200ApplicationJSONResponseBodyProjectsSecurityType$outboundSchema: z.ZodNativeEnum<typeof GetProjectsProjectsResponse200ApplicationJSONResponseBodyProjectsSecurityType>;
|
|
5376
|
-
/**
|
|
5377
|
-
* @internal
|
|
5378
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5379
|
-
*/
|
|
5380
|
-
export declare namespace GetProjectsProjectsResponse200ApplicationJSONResponseBodyProjectsSecurityType$ {
|
|
5381
|
-
/** @deprecated use `GetProjectsProjectsResponse200ApplicationJSONResponseBodyProjectsSecurityType$inboundSchema` instead. */
|
|
5382
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
5383
|
-
readonly Path: "path";
|
|
5384
|
-
readonly Host: "host";
|
|
5385
|
-
readonly Method: "method";
|
|
5386
|
-
readonly Header: "header";
|
|
5387
|
-
readonly Cookie: "cookie";
|
|
5388
|
-
readonly Query: "query";
|
|
5389
|
-
readonly IpAddress: "ip_address";
|
|
5390
|
-
readonly Protocol: "protocol";
|
|
5391
|
-
readonly Scheme: "scheme";
|
|
5392
|
-
readonly Environment: "environment";
|
|
5393
|
-
readonly Region: "region";
|
|
5394
|
-
readonly InitialRequestPath: "initial_request_path";
|
|
5395
|
-
}>;
|
|
5396
|
-
/** @deprecated use `GetProjectsProjectsResponse200ApplicationJSONResponseBodyProjectsSecurityType$outboundSchema` instead. */
|
|
5397
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
5398
|
-
readonly Path: "path";
|
|
5399
|
-
readonly Host: "host";
|
|
5400
|
-
readonly Method: "method";
|
|
5401
|
-
readonly Header: "header";
|
|
5402
|
-
readonly Cookie: "cookie";
|
|
5403
|
-
readonly Query: "query";
|
|
5404
|
-
readonly IpAddress: "ip_address";
|
|
5405
|
-
readonly Protocol: "protocol";
|
|
5406
|
-
readonly Scheme: "scheme";
|
|
5407
|
-
readonly Environment: "environment";
|
|
5408
|
-
readonly Region: "region";
|
|
5409
|
-
readonly InitialRequestPath: "initial_request_path";
|
|
5410
|
-
}>;
|
|
5411
|
-
}
|
|
5412
|
-
/** @internal */
|
|
5413
|
-
export declare const GetProjectsValue2$inboundSchema: z.ZodType<GetProjectsValue2, z.ZodTypeDef, unknown>;
|
|
5414
|
-
/** @internal */
|
|
5415
|
-
export type GetProjectsValue2$Outbound = {
|
|
5416
|
-
re?: string | undefined;
|
|
5417
|
-
eq?: string | undefined;
|
|
5418
|
-
neq?: string | undefined;
|
|
5419
|
-
inc?: Array<string> | undefined;
|
|
5420
|
-
ninc?: Array<string> | undefined;
|
|
5421
|
-
pre?: string | undefined;
|
|
5422
|
-
suf?: string | undefined;
|
|
5423
|
-
gt?: number | undefined;
|
|
5424
|
-
gte?: number | undefined;
|
|
5425
|
-
lt?: number | undefined;
|
|
5426
|
-
lte?: number | undefined;
|
|
5427
|
-
};
|
|
5428
|
-
/** @internal */
|
|
5429
|
-
export declare const GetProjectsValue2$outboundSchema: z.ZodType<GetProjectsValue2$Outbound, z.ZodTypeDef, GetProjectsValue2>;
|
|
5430
|
-
/**
|
|
5431
|
-
* @internal
|
|
5432
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5433
|
-
*/
|
|
5434
|
-
export declare namespace GetProjectsValue2$ {
|
|
5435
|
-
/** @deprecated use `GetProjectsValue2$inboundSchema` instead. */
|
|
5436
|
-
const inboundSchema: z.ZodType<GetProjectsValue2, z.ZodTypeDef, unknown>;
|
|
5437
|
-
/** @deprecated use `GetProjectsValue2$outboundSchema` instead. */
|
|
5438
|
-
const outboundSchema: z.ZodType<GetProjectsValue2$Outbound, z.ZodTypeDef, GetProjectsValue2>;
|
|
5439
|
-
/** @deprecated use `GetProjectsValue2$Outbound` instead. */
|
|
5440
|
-
type Outbound = GetProjectsValue2$Outbound;
|
|
5441
|
-
}
|
|
5442
|
-
export declare function getProjectsValue2ToJSON(getProjectsValue2: GetProjectsValue2): string;
|
|
5443
|
-
export declare function getProjectsValue2FromJSON(jsonString: string): SafeParseResult<GetProjectsValue2, SDKValidationError>;
|
|
5444
|
-
/** @internal */
|
|
5445
|
-
export declare const GetProjectsValue$inboundSchema: z.ZodType<GetProjectsValue, z.ZodTypeDef, unknown>;
|
|
5446
|
-
/** @internal */
|
|
5447
|
-
export type GetProjectsValue$Outbound = GetProjectsValue2$Outbound | string;
|
|
5448
|
-
/** @internal */
|
|
5449
|
-
export declare const GetProjectsValue$outboundSchema: z.ZodType<GetProjectsValue$Outbound, z.ZodTypeDef, GetProjectsValue>;
|
|
5450
|
-
/**
|
|
5451
|
-
* @internal
|
|
5452
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5453
|
-
*/
|
|
5454
|
-
export declare namespace GetProjectsValue$ {
|
|
5455
|
-
/** @deprecated use `GetProjectsValue$inboundSchema` instead. */
|
|
5456
|
-
const inboundSchema: z.ZodType<GetProjectsValue, z.ZodTypeDef, unknown>;
|
|
5457
|
-
/** @deprecated use `GetProjectsValue$outboundSchema` instead. */
|
|
5458
|
-
const outboundSchema: z.ZodType<GetProjectsValue$Outbound, z.ZodTypeDef, GetProjectsValue>;
|
|
5459
|
-
/** @deprecated use `GetProjectsValue$Outbound` instead. */
|
|
5460
|
-
type Outbound = GetProjectsValue$Outbound;
|
|
5461
|
-
}
|
|
5462
|
-
export declare function getProjectsValueToJSON(getProjectsValue: GetProjectsValue): string;
|
|
5463
|
-
export declare function getProjectsValueFromJSON(jsonString: string): SafeParseResult<GetProjectsValue, SDKValidationError>;
|
|
5464
|
-
/** @internal */
|
|
5465
|
-
export declare const GetProjectsHas$inboundSchema: z.ZodType<GetProjectsHas, z.ZodTypeDef, unknown>;
|
|
5466
|
-
/** @internal */
|
|
5467
|
-
export type GetProjectsHas$Outbound = {
|
|
5468
|
-
type: string;
|
|
5469
|
-
key?: string | undefined;
|
|
5470
|
-
value?: GetProjectsValue2$Outbound | string | undefined;
|
|
5471
|
-
};
|
|
5472
|
-
/** @internal */
|
|
5473
|
-
export declare const GetProjectsHas$outboundSchema: z.ZodType<GetProjectsHas$Outbound, z.ZodTypeDef, GetProjectsHas>;
|
|
5474
|
-
/**
|
|
5475
|
-
* @internal
|
|
5476
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5477
|
-
*/
|
|
5478
|
-
export declare namespace GetProjectsHas$ {
|
|
5479
|
-
/** @deprecated use `GetProjectsHas$inboundSchema` instead. */
|
|
5480
|
-
const inboundSchema: z.ZodType<GetProjectsHas, z.ZodTypeDef, unknown>;
|
|
5481
|
-
/** @deprecated use `GetProjectsHas$outboundSchema` instead. */
|
|
5482
|
-
const outboundSchema: z.ZodType<GetProjectsHas$Outbound, z.ZodTypeDef, GetProjectsHas>;
|
|
5483
|
-
/** @deprecated use `GetProjectsHas$Outbound` instead. */
|
|
5484
|
-
type Outbound = GetProjectsHas$Outbound;
|
|
5485
|
-
}
|
|
5486
|
-
export declare function getProjectsHasToJSON(getProjectsHas: GetProjectsHas): string;
|
|
5487
|
-
export declare function getProjectsHasFromJSON(jsonString: string): SafeParseResult<GetProjectsHas, SDKValidationError>;
|
|
5488
|
-
/** @internal */
|
|
5489
|
-
export declare const GetProjectsProjectsResponse200ApplicationJSONResponseBodyProjectsSecurityFirewallRoutesType$inboundSchema: z.ZodNativeEnum<typeof GetProjectsProjectsResponse200ApplicationJSONResponseBodyProjectsSecurityFirewallRoutesType>;
|
|
5490
|
-
/** @internal */
|
|
5491
|
-
export declare const GetProjectsProjectsResponse200ApplicationJSONResponseBodyProjectsSecurityFirewallRoutesType$outboundSchema: z.ZodNativeEnum<typeof GetProjectsProjectsResponse200ApplicationJSONResponseBodyProjectsSecurityFirewallRoutesType>;
|
|
5492
|
-
/**
|
|
5493
|
-
* @internal
|
|
5494
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5495
|
-
*/
|
|
5496
|
-
export declare namespace GetProjectsProjectsResponse200ApplicationJSONResponseBodyProjectsSecurityFirewallRoutesType$ {
|
|
5497
|
-
/** @deprecated use `GetProjectsProjectsResponse200ApplicationJSONResponseBodyProjectsSecurityFirewallRoutesType$inboundSchema` instead. */
|
|
5498
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
5499
|
-
readonly Path: "path";
|
|
5500
|
-
readonly Host: "host";
|
|
5501
|
-
readonly Method: "method";
|
|
5502
|
-
readonly Header: "header";
|
|
5503
|
-
readonly Cookie: "cookie";
|
|
5504
|
-
readonly Query: "query";
|
|
5505
|
-
readonly IpAddress: "ip_address";
|
|
5506
|
-
readonly Protocol: "protocol";
|
|
5507
|
-
readonly Scheme: "scheme";
|
|
5508
|
-
readonly Environment: "environment";
|
|
5509
|
-
readonly Region: "region";
|
|
5510
|
-
readonly InitialRequestPath: "initial_request_path";
|
|
5511
|
-
}>;
|
|
5512
|
-
/** @deprecated use `GetProjectsProjectsResponse200ApplicationJSONResponseBodyProjectsSecurityFirewallRoutesType$outboundSchema` instead. */
|
|
5513
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
5514
|
-
readonly Path: "path";
|
|
5515
|
-
readonly Host: "host";
|
|
5516
|
-
readonly Method: "method";
|
|
5517
|
-
readonly Header: "header";
|
|
5518
|
-
readonly Cookie: "cookie";
|
|
5519
|
-
readonly Query: "query";
|
|
5520
|
-
readonly IpAddress: "ip_address";
|
|
5521
|
-
readonly Protocol: "protocol";
|
|
5522
|
-
readonly Scheme: "scheme";
|
|
5523
|
-
readonly Environment: "environment";
|
|
5524
|
-
readonly Region: "region";
|
|
5525
|
-
readonly InitialRequestPath: "initial_request_path";
|
|
5526
|
-
}>;
|
|
5527
|
-
}
|
|
5528
|
-
/** @internal */
|
|
5529
|
-
export declare const GetProjectsValueProjects2$inboundSchema: z.ZodType<GetProjectsValueProjects2, z.ZodTypeDef, unknown>;
|
|
5530
|
-
/** @internal */
|
|
5531
|
-
export type GetProjectsValueProjects2$Outbound = {
|
|
5532
|
-
re?: string | undefined;
|
|
5533
|
-
eq?: string | undefined;
|
|
5534
|
-
neq?: string | undefined;
|
|
5535
|
-
inc?: Array<string> | undefined;
|
|
5536
|
-
ninc?: Array<string> | undefined;
|
|
5537
|
-
pre?: string | undefined;
|
|
5538
|
-
suf?: string | undefined;
|
|
5539
|
-
gt?: number | undefined;
|
|
5540
|
-
gte?: number | undefined;
|
|
5541
|
-
lt?: number | undefined;
|
|
5542
|
-
lte?: number | undefined;
|
|
5543
|
-
};
|
|
5544
|
-
/** @internal */
|
|
5545
|
-
export declare const GetProjectsValueProjects2$outboundSchema: z.ZodType<GetProjectsValueProjects2$Outbound, z.ZodTypeDef, GetProjectsValueProjects2>;
|
|
5546
|
-
/**
|
|
5547
|
-
* @internal
|
|
5548
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5549
|
-
*/
|
|
5550
|
-
export declare namespace GetProjectsValueProjects2$ {
|
|
5551
|
-
/** @deprecated use `GetProjectsValueProjects2$inboundSchema` instead. */
|
|
5552
|
-
const inboundSchema: z.ZodType<GetProjectsValueProjects2, z.ZodTypeDef, unknown>;
|
|
5553
|
-
/** @deprecated use `GetProjectsValueProjects2$outboundSchema` instead. */
|
|
5554
|
-
const outboundSchema: z.ZodType<GetProjectsValueProjects2$Outbound, z.ZodTypeDef, GetProjectsValueProjects2>;
|
|
5555
|
-
/** @deprecated use `GetProjectsValueProjects2$Outbound` instead. */
|
|
5556
|
-
type Outbound = GetProjectsValueProjects2$Outbound;
|
|
5557
|
-
}
|
|
5558
|
-
export declare function getProjectsValueProjects2ToJSON(getProjectsValueProjects2: GetProjectsValueProjects2): string;
|
|
5559
|
-
export declare function getProjectsValueProjects2FromJSON(jsonString: string): SafeParseResult<GetProjectsValueProjects2, SDKValidationError>;
|
|
5560
|
-
/** @internal */
|
|
5561
|
-
export declare const GetProjectsProjectsValue$inboundSchema: z.ZodType<GetProjectsProjectsValue, z.ZodTypeDef, unknown>;
|
|
5562
|
-
/** @internal */
|
|
5563
|
-
export type GetProjectsProjectsValue$Outbound = GetProjectsValueProjects2$Outbound | string;
|
|
5564
|
-
/** @internal */
|
|
5565
|
-
export declare const GetProjectsProjectsValue$outboundSchema: z.ZodType<GetProjectsProjectsValue$Outbound, z.ZodTypeDef, GetProjectsProjectsValue>;
|
|
5566
|
-
/**
|
|
5567
|
-
* @internal
|
|
5568
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5569
|
-
*/
|
|
5570
|
-
export declare namespace GetProjectsProjectsValue$ {
|
|
5571
|
-
/** @deprecated use `GetProjectsProjectsValue$inboundSchema` instead. */
|
|
5572
|
-
const inboundSchema: z.ZodType<GetProjectsProjectsValue, z.ZodTypeDef, unknown>;
|
|
5573
|
-
/** @deprecated use `GetProjectsProjectsValue$outboundSchema` instead. */
|
|
5574
|
-
const outboundSchema: z.ZodType<GetProjectsProjectsValue$Outbound, z.ZodTypeDef, GetProjectsProjectsValue>;
|
|
5575
|
-
/** @deprecated use `GetProjectsProjectsValue$Outbound` instead. */
|
|
5576
|
-
type Outbound = GetProjectsProjectsValue$Outbound;
|
|
5577
|
-
}
|
|
5578
|
-
export declare function getProjectsProjectsValueToJSON(getProjectsProjectsValue: GetProjectsProjectsValue): string;
|
|
5579
|
-
export declare function getProjectsProjectsValueFromJSON(jsonString: string): SafeParseResult<GetProjectsProjectsValue, SDKValidationError>;
|
|
5580
|
-
/** @internal */
|
|
5581
|
-
export declare const GetProjectsMissing$inboundSchema: z.ZodType<GetProjectsMissing, z.ZodTypeDef, unknown>;
|
|
5582
|
-
/** @internal */
|
|
5583
|
-
export type GetProjectsMissing$Outbound = {
|
|
5584
|
-
type: string;
|
|
5585
|
-
key?: string | undefined;
|
|
5586
|
-
value?: GetProjectsValueProjects2$Outbound | string | undefined;
|
|
5587
|
-
};
|
|
5588
|
-
/** @internal */
|
|
5589
|
-
export declare const GetProjectsMissing$outboundSchema: z.ZodType<GetProjectsMissing$Outbound, z.ZodTypeDef, GetProjectsMissing>;
|
|
5590
|
-
/**
|
|
5591
|
-
* @internal
|
|
5592
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5593
|
-
*/
|
|
5594
|
-
export declare namespace GetProjectsMissing$ {
|
|
5595
|
-
/** @deprecated use `GetProjectsMissing$inboundSchema` instead. */
|
|
5596
|
-
const inboundSchema: z.ZodType<GetProjectsMissing, z.ZodTypeDef, unknown>;
|
|
5597
|
-
/** @deprecated use `GetProjectsMissing$outboundSchema` instead. */
|
|
5598
|
-
const outboundSchema: z.ZodType<GetProjectsMissing$Outbound, z.ZodTypeDef, GetProjectsMissing>;
|
|
5599
|
-
/** @deprecated use `GetProjectsMissing$Outbound` instead. */
|
|
5600
|
-
type Outbound = GetProjectsMissing$Outbound;
|
|
5601
|
-
}
|
|
5602
|
-
export declare function getProjectsMissingToJSON(getProjectsMissing: GetProjectsMissing): string;
|
|
5603
|
-
export declare function getProjectsMissingFromJSON(jsonString: string): SafeParseResult<GetProjectsMissing, SDKValidationError>;
|
|
5604
|
-
/** @internal */
|
|
5605
|
-
export declare const GetProjectsHandle$inboundSchema: z.ZodNativeEnum<typeof GetProjectsHandle>;
|
|
5606
|
-
/** @internal */
|
|
5607
|
-
export declare const GetProjectsHandle$outboundSchema: z.ZodNativeEnum<typeof GetProjectsHandle>;
|
|
5608
|
-
/**
|
|
5609
|
-
* @internal
|
|
5610
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5611
|
-
*/
|
|
5612
|
-
export declare namespace GetProjectsHandle$ {
|
|
5613
|
-
/** @deprecated use `GetProjectsHandle$inboundSchema` instead. */
|
|
5614
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
5615
|
-
readonly Init: "init";
|
|
5616
|
-
readonly Finalize: "finalize";
|
|
5617
|
-
}>;
|
|
5618
|
-
/** @deprecated use `GetProjectsHandle$outboundSchema` instead. */
|
|
5619
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
5620
|
-
readonly Init: "init";
|
|
5621
|
-
readonly Finalize: "finalize";
|
|
5622
|
-
}>;
|
|
5623
|
-
}
|
|
5624
|
-
/** @internal */
|
|
5625
5200
|
export declare const GetProjectsAction$inboundSchema: z.ZodNativeEnum<typeof GetProjectsAction>;
|
|
5626
5201
|
/** @internal */
|
|
5627
5202
|
export declare const GetProjectsAction$outboundSchema: z.ZodNativeEnum<typeof GetProjectsAction>;
|
|
@@ -5632,141 +5207,15 @@ export declare const GetProjectsAction$outboundSchema: z.ZodNativeEnum<typeof Ge
|
|
|
5632
5207
|
export declare namespace GetProjectsAction$ {
|
|
5633
5208
|
/** @deprecated use `GetProjectsAction$inboundSchema` instead. */
|
|
5634
5209
|
const inboundSchema: z.ZodNativeEnum<{
|
|
5635
|
-
readonly Deny: "deny";
|
|
5636
|
-
readonly Challenge: "challenge";
|
|
5637
5210
|
readonly Log: "log";
|
|
5638
|
-
readonly
|
|
5639
|
-
readonly
|
|
5640
|
-
readonly Redirect: "redirect";
|
|
5211
|
+
readonly Challenge: "challenge";
|
|
5212
|
+
readonly Deny: "deny";
|
|
5641
5213
|
}>;
|
|
5642
5214
|
/** @deprecated use `GetProjectsAction$outboundSchema` instead. */
|
|
5643
5215
|
const outboundSchema: z.ZodNativeEnum<{
|
|
5644
|
-
readonly Deny: "deny";
|
|
5645
|
-
readonly Challenge: "challenge";
|
|
5646
5216
|
readonly Log: "log";
|
|
5647
|
-
readonly Bypass: "bypass";
|
|
5648
|
-
readonly RateLimit: "rate_limit";
|
|
5649
|
-
readonly Redirect: "redirect";
|
|
5650
|
-
}>;
|
|
5651
|
-
}
|
|
5652
|
-
/** @internal */
|
|
5653
|
-
export declare const GetProjectsAlgo$inboundSchema: z.ZodNativeEnum<typeof GetProjectsAlgo>;
|
|
5654
|
-
/** @internal */
|
|
5655
|
-
export declare const GetProjectsAlgo$outboundSchema: z.ZodNativeEnum<typeof GetProjectsAlgo>;
|
|
5656
|
-
/**
|
|
5657
|
-
* @internal
|
|
5658
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5659
|
-
*/
|
|
5660
|
-
export declare namespace GetProjectsAlgo$ {
|
|
5661
|
-
/** @deprecated use `GetProjectsAlgo$inboundSchema` instead. */
|
|
5662
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
5663
|
-
readonly FixedWindow: "fixed_window";
|
|
5664
|
-
readonly TokenBucket: "token_bucket";
|
|
5665
|
-
}>;
|
|
5666
|
-
/** @deprecated use `GetProjectsAlgo$outboundSchema` instead. */
|
|
5667
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
5668
|
-
readonly FixedWindow: "fixed_window";
|
|
5669
|
-
readonly TokenBucket: "token_bucket";
|
|
5670
|
-
}>;
|
|
5671
|
-
}
|
|
5672
|
-
/** @internal */
|
|
5673
|
-
export declare const GetProjectsErl$inboundSchema: z.ZodType<GetProjectsErl, z.ZodTypeDef, unknown>;
|
|
5674
|
-
/** @internal */
|
|
5675
|
-
export type GetProjectsErl$Outbound = {
|
|
5676
|
-
algo: string;
|
|
5677
|
-
window: number;
|
|
5678
|
-
limit: number;
|
|
5679
|
-
keys: Array<string>;
|
|
5680
|
-
};
|
|
5681
|
-
/** @internal */
|
|
5682
|
-
export declare const GetProjectsErl$outboundSchema: z.ZodType<GetProjectsErl$Outbound, z.ZodTypeDef, GetProjectsErl>;
|
|
5683
|
-
/**
|
|
5684
|
-
* @internal
|
|
5685
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5686
|
-
*/
|
|
5687
|
-
export declare namespace GetProjectsErl$ {
|
|
5688
|
-
/** @deprecated use `GetProjectsErl$inboundSchema` instead. */
|
|
5689
|
-
const inboundSchema: z.ZodType<GetProjectsErl, z.ZodTypeDef, unknown>;
|
|
5690
|
-
/** @deprecated use `GetProjectsErl$outboundSchema` instead. */
|
|
5691
|
-
const outboundSchema: z.ZodType<GetProjectsErl$Outbound, z.ZodTypeDef, GetProjectsErl>;
|
|
5692
|
-
/** @deprecated use `GetProjectsErl$Outbound` instead. */
|
|
5693
|
-
type Outbound = GetProjectsErl$Outbound;
|
|
5694
|
-
}
|
|
5695
|
-
export declare function getProjectsErlToJSON(getProjectsErl: GetProjectsErl): string;
|
|
5696
|
-
export declare function getProjectsErlFromJSON(jsonString: string): SafeParseResult<GetProjectsErl, SDKValidationError>;
|
|
5697
|
-
/** @internal */
|
|
5698
|
-
export declare const GetProjectsMitigate$inboundSchema: z.ZodType<GetProjectsMitigate, z.ZodTypeDef, unknown>;
|
|
5699
|
-
/** @internal */
|
|
5700
|
-
export type GetProjectsMitigate$Outbound = {
|
|
5701
|
-
action: string;
|
|
5702
|
-
rule_id: string;
|
|
5703
|
-
ttl?: number | undefined;
|
|
5704
|
-
erl?: GetProjectsErl$Outbound | undefined;
|
|
5705
|
-
};
|
|
5706
|
-
/** @internal */
|
|
5707
|
-
export declare const GetProjectsMitigate$outboundSchema: z.ZodType<GetProjectsMitigate$Outbound, z.ZodTypeDef, GetProjectsMitigate>;
|
|
5708
|
-
/**
|
|
5709
|
-
* @internal
|
|
5710
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5711
|
-
*/
|
|
5712
|
-
export declare namespace GetProjectsMitigate$ {
|
|
5713
|
-
/** @deprecated use `GetProjectsMitigate$inboundSchema` instead. */
|
|
5714
|
-
const inboundSchema: z.ZodType<GetProjectsMitigate, z.ZodTypeDef, unknown>;
|
|
5715
|
-
/** @deprecated use `GetProjectsMitigate$outboundSchema` instead. */
|
|
5716
|
-
const outboundSchema: z.ZodType<GetProjectsMitigate$Outbound, z.ZodTypeDef, GetProjectsMitigate>;
|
|
5717
|
-
/** @deprecated use `GetProjectsMitigate$Outbound` instead. */
|
|
5718
|
-
type Outbound = GetProjectsMitigate$Outbound;
|
|
5719
|
-
}
|
|
5720
|
-
export declare function getProjectsMitigateToJSON(getProjectsMitigate: GetProjectsMitigate): string;
|
|
5721
|
-
export declare function getProjectsMitigateFromJSON(jsonString: string): SafeParseResult<GetProjectsMitigate, SDKValidationError>;
|
|
5722
|
-
/** @internal */
|
|
5723
|
-
export declare const GetProjectsFirewallRoutes$inboundSchema: z.ZodType<GetProjectsFirewallRoutes, z.ZodTypeDef, unknown>;
|
|
5724
|
-
/** @internal */
|
|
5725
|
-
export type GetProjectsFirewallRoutes$Outbound = {
|
|
5726
|
-
src?: GetProjectsSrc2$Outbound | string | undefined;
|
|
5727
|
-
has?: Array<GetProjectsHas$Outbound> | undefined;
|
|
5728
|
-
missing?: Array<GetProjectsMissing$Outbound> | undefined;
|
|
5729
|
-
dest?: string | undefined;
|
|
5730
|
-
status?: number | undefined;
|
|
5731
|
-
handle?: string | undefined;
|
|
5732
|
-
mitigate?: GetProjectsMitigate$Outbound | undefined;
|
|
5733
|
-
};
|
|
5734
|
-
/** @internal */
|
|
5735
|
-
export declare const GetProjectsFirewallRoutes$outboundSchema: z.ZodType<GetProjectsFirewallRoutes$Outbound, z.ZodTypeDef, GetProjectsFirewallRoutes>;
|
|
5736
|
-
/**
|
|
5737
|
-
* @internal
|
|
5738
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5739
|
-
*/
|
|
5740
|
-
export declare namespace GetProjectsFirewallRoutes$ {
|
|
5741
|
-
/** @deprecated use `GetProjectsFirewallRoutes$inboundSchema` instead. */
|
|
5742
|
-
const inboundSchema: z.ZodType<GetProjectsFirewallRoutes, z.ZodTypeDef, unknown>;
|
|
5743
|
-
/** @deprecated use `GetProjectsFirewallRoutes$outboundSchema` instead. */
|
|
5744
|
-
const outboundSchema: z.ZodType<GetProjectsFirewallRoutes$Outbound, z.ZodTypeDef, GetProjectsFirewallRoutes>;
|
|
5745
|
-
/** @deprecated use `GetProjectsFirewallRoutes$Outbound` instead. */
|
|
5746
|
-
type Outbound = GetProjectsFirewallRoutes$Outbound;
|
|
5747
|
-
}
|
|
5748
|
-
export declare function getProjectsFirewallRoutesToJSON(getProjectsFirewallRoutes: GetProjectsFirewallRoutes): string;
|
|
5749
|
-
export declare function getProjectsFirewallRoutesFromJSON(jsonString: string): SafeParseResult<GetProjectsFirewallRoutes, SDKValidationError>;
|
|
5750
|
-
/** @internal */
|
|
5751
|
-
export declare const GetProjectsProjectsAction$inboundSchema: z.ZodNativeEnum<typeof GetProjectsProjectsAction>;
|
|
5752
|
-
/** @internal */
|
|
5753
|
-
export declare const GetProjectsProjectsAction$outboundSchema: z.ZodNativeEnum<typeof GetProjectsProjectsAction>;
|
|
5754
|
-
/**
|
|
5755
|
-
* @internal
|
|
5756
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5757
|
-
*/
|
|
5758
|
-
export declare namespace GetProjectsProjectsAction$ {
|
|
5759
|
-
/** @deprecated use `GetProjectsProjectsAction$inboundSchema` instead. */
|
|
5760
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
5761
|
-
readonly Deny: "deny";
|
|
5762
5217
|
readonly Challenge: "challenge";
|
|
5763
|
-
readonly Log: "log";
|
|
5764
|
-
}>;
|
|
5765
|
-
/** @deprecated use `GetProjectsProjectsAction$outboundSchema` instead. */
|
|
5766
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
5767
5218
|
readonly Deny: "deny";
|
|
5768
|
-
readonly Challenge: "challenge";
|
|
5769
|
-
readonly Log: "log";
|
|
5770
5219
|
}>;
|
|
5771
5220
|
}
|
|
5772
5221
|
/** @internal */
|
|
@@ -5793,25 +5242,25 @@ export declare namespace GetProjectsBotFilter$ {
|
|
|
5793
5242
|
export declare function getProjectsBotFilterToJSON(getProjectsBotFilter: GetProjectsBotFilter): string;
|
|
5794
5243
|
export declare function getProjectsBotFilterFromJSON(jsonString: string): SafeParseResult<GetProjectsBotFilter, SDKValidationError>;
|
|
5795
5244
|
/** @internal */
|
|
5796
|
-
export declare const
|
|
5245
|
+
export declare const GetProjectsProjectsAction$inboundSchema: z.ZodNativeEnum<typeof GetProjectsProjectsAction>;
|
|
5797
5246
|
/** @internal */
|
|
5798
|
-
export declare const
|
|
5247
|
+
export declare const GetProjectsProjectsAction$outboundSchema: z.ZodNativeEnum<typeof GetProjectsProjectsAction>;
|
|
5799
5248
|
/**
|
|
5800
5249
|
* @internal
|
|
5801
5250
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5802
5251
|
*/
|
|
5803
|
-
export declare namespace
|
|
5804
|
-
/** @deprecated use `
|
|
5252
|
+
export declare namespace GetProjectsProjectsAction$ {
|
|
5253
|
+
/** @deprecated use `GetProjectsProjectsAction$inboundSchema` instead. */
|
|
5805
5254
|
const inboundSchema: z.ZodNativeEnum<{
|
|
5806
|
-
readonly Deny: "deny";
|
|
5807
|
-
readonly Challenge: "challenge";
|
|
5808
5255
|
readonly Log: "log";
|
|
5256
|
+
readonly Challenge: "challenge";
|
|
5257
|
+
readonly Deny: "deny";
|
|
5809
5258
|
}>;
|
|
5810
|
-
/** @deprecated use `
|
|
5259
|
+
/** @deprecated use `GetProjectsProjectsAction$outboundSchema` instead. */
|
|
5811
5260
|
const outboundSchema: z.ZodNativeEnum<{
|
|
5812
|
-
readonly Deny: "deny";
|
|
5813
|
-
readonly Challenge: "challenge";
|
|
5814
5261
|
readonly Log: "log";
|
|
5262
|
+
readonly Challenge: "challenge";
|
|
5263
|
+
readonly Deny: "deny";
|
|
5815
5264
|
}>;
|
|
5816
5265
|
}
|
|
5817
5266
|
/** @internal */
|
|
@@ -5838,25 +5287,25 @@ export declare namespace GetProjectsAiBots$ {
|
|
|
5838
5287
|
export declare function getProjectsAiBotsToJSON(getProjectsAiBots: GetProjectsAiBots): string;
|
|
5839
5288
|
export declare function getProjectsAiBotsFromJSON(jsonString: string): SafeParseResult<GetProjectsAiBots, SDKValidationError>;
|
|
5840
5289
|
/** @internal */
|
|
5841
|
-
export declare const
|
|
5290
|
+
export declare const GetProjectsProjectsResponseAction$inboundSchema: z.ZodNativeEnum<typeof GetProjectsProjectsResponseAction>;
|
|
5842
5291
|
/** @internal */
|
|
5843
|
-
export declare const
|
|
5292
|
+
export declare const GetProjectsProjectsResponseAction$outboundSchema: z.ZodNativeEnum<typeof GetProjectsProjectsResponseAction>;
|
|
5844
5293
|
/**
|
|
5845
5294
|
* @internal
|
|
5846
5295
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5847
5296
|
*/
|
|
5848
|
-
export declare namespace
|
|
5849
|
-
/** @deprecated use `
|
|
5297
|
+
export declare namespace GetProjectsProjectsResponseAction$ {
|
|
5298
|
+
/** @deprecated use `GetProjectsProjectsResponseAction$inboundSchema` instead. */
|
|
5850
5299
|
const inboundSchema: z.ZodNativeEnum<{
|
|
5851
|
-
readonly Deny: "deny";
|
|
5852
|
-
readonly Challenge: "challenge";
|
|
5853
5300
|
readonly Log: "log";
|
|
5301
|
+
readonly Challenge: "challenge";
|
|
5302
|
+
readonly Deny: "deny";
|
|
5854
5303
|
}>;
|
|
5855
|
-
/** @deprecated use `
|
|
5304
|
+
/** @deprecated use `GetProjectsProjectsResponseAction$outboundSchema` instead. */
|
|
5856
5305
|
const outboundSchema: z.ZodNativeEnum<{
|
|
5857
|
-
readonly Deny: "deny";
|
|
5858
|
-
readonly Challenge: "challenge";
|
|
5859
5306
|
readonly Log: "log";
|
|
5307
|
+
readonly Challenge: "challenge";
|
|
5308
|
+
readonly Deny: "deny";
|
|
5860
5309
|
}>;
|
|
5861
5310
|
}
|
|
5862
5311
|
/** @internal */
|
|
@@ -5916,7 +5365,6 @@ export type GetProjectsSecurity$Outbound = {
|
|
|
5916
5365
|
firewallUpdatedAt?: number | undefined;
|
|
5917
5366
|
attackModeActiveUntil?: number | null | undefined;
|
|
5918
5367
|
firewallConfigVersion?: number | undefined;
|
|
5919
|
-
firewallRoutes?: Array<GetProjectsFirewallRoutes$Outbound> | undefined;
|
|
5920
5368
|
firewallSeawallEnabled?: boolean | undefined;
|
|
5921
5369
|
ja3Enabled?: boolean | undefined;
|
|
5922
5370
|
ja4Enabled?: boolean | undefined;
|