@vercel/sdk 1.7.5 → 1.7.6
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 +37 -83
- package/bin/mcp-server.js.map +13 -13
- package/esm/__tests__/projects.test.js +15 -13
- package/esm/__tests__/projects.test.js.map +1 -1
- package/esm/lib/config.d.ts +2 -2
- package/esm/lib/config.js +2 -2
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.js +1 -1
- package/esm/models/authuser.d.ts +0 -93
- package/esm/models/authuser.d.ts.map +1 -1
- package/esm/models/authuser.js +0 -64
- package/esm/models/authuser.js.map +1 -1
- package/esm/models/authuserlimited.d.ts +0 -34
- package/esm/models/authuserlimited.d.ts.map +1 -1
- package/esm/models/authuserlimited.js +0 -23
- package/esm/models/authuserlimited.js.map +1 -1
- package/esm/models/createprojectop.d.ts +9 -9
- package/esm/models/createprojectop.js +3 -3
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/importresourceop.d.ts +1 -1
- package/esm/models/updateprojectop.d.ts +9 -9
- package/esm/models/updateprojectop.js +3 -3
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/models/updateresourcesecretsbyidop.d.ts +2 -2
- package/esm/models/updateresourcesecretsop.d.ts +1 -1
- package/esm/models/userevent.d.ts +23 -23
- package/esm/models/userevent.d.ts.map +1 -1
- package/esm/models/userevent.js +28 -28
- package/esm/models/userevent.js.map +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/projects.test.ts +15 -13
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/authuser.ts +0 -145
- package/src/models/authuserlimited.ts +0 -40
- package/src/models/createprojectop.ts +3 -3
- package/src/models/importresourceop.ts +1 -1
- package/src/models/updateprojectop.ts +3 -3
- package/src/models/updateresourcesecretsbyidop.ts +2 -2
- package/src/models/updateresourcesecretsop.ts +1 -1
- package/src/models/userevent.ts +39 -42
- package/vercel-spec.json +14 -72
|
@@ -1,17 +1,6 @@
|
|
|
1
1
|
import * as z from "zod";
|
|
2
|
-
import { ClosedEnum } from "../types/enums.js";
|
|
3
2
|
import { Result as SafeParseResult } from "../types/fp.js";
|
|
4
3
|
import { SDKValidationError } from "./sdkvalidationerror.js";
|
|
5
|
-
/**
|
|
6
|
-
* The user's version. Will always be `northstar`.
|
|
7
|
-
*/
|
|
8
|
-
export declare const AuthUserLimitedVersion: {
|
|
9
|
-
readonly Northstar: "northstar";
|
|
10
|
-
};
|
|
11
|
-
/**
|
|
12
|
-
* The user's version. Will always be `northstar`.
|
|
13
|
-
*/
|
|
14
|
-
export type AuthUserLimitedVersion = ClosedEnum<typeof AuthUserLimitedVersion>;
|
|
15
4
|
/**
|
|
16
5
|
* A limited form of data for the currently authenticated User, due to the authentication token missing privileges to read the full User data.
|
|
17
6
|
*/
|
|
@@ -44,30 +33,8 @@ export type AuthUserLimited = {
|
|
|
44
33
|
* The user's default team.
|
|
45
34
|
*/
|
|
46
35
|
defaultTeamId: string | null;
|
|
47
|
-
/**
|
|
48
|
-
* The user's version. Will always be `northstar`.
|
|
49
|
-
*/
|
|
50
|
-
version: AuthUserLimitedVersion;
|
|
51
36
|
};
|
|
52
37
|
/** @internal */
|
|
53
|
-
export declare const AuthUserLimitedVersion$inboundSchema: z.ZodNativeEnum<typeof AuthUserLimitedVersion>;
|
|
54
|
-
/** @internal */
|
|
55
|
-
export declare const AuthUserLimitedVersion$outboundSchema: z.ZodNativeEnum<typeof AuthUserLimitedVersion>;
|
|
56
|
-
/**
|
|
57
|
-
* @internal
|
|
58
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
59
|
-
*/
|
|
60
|
-
export declare namespace AuthUserLimitedVersion$ {
|
|
61
|
-
/** @deprecated use `AuthUserLimitedVersion$inboundSchema` instead. */
|
|
62
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
63
|
-
readonly Northstar: "northstar";
|
|
64
|
-
}>;
|
|
65
|
-
/** @deprecated use `AuthUserLimitedVersion$outboundSchema` instead. */
|
|
66
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
67
|
-
readonly Northstar: "northstar";
|
|
68
|
-
}>;
|
|
69
|
-
}
|
|
70
|
-
/** @internal */
|
|
71
38
|
export declare const AuthUserLimited$inboundSchema: z.ZodType<AuthUserLimited, z.ZodTypeDef, unknown>;
|
|
72
39
|
/** @internal */
|
|
73
40
|
export type AuthUserLimited$Outbound = {
|
|
@@ -78,7 +45,6 @@ export type AuthUserLimited$Outbound = {
|
|
|
78
45
|
username: string;
|
|
79
46
|
avatar: string | null;
|
|
80
47
|
defaultTeamId: string | null;
|
|
81
|
-
version: string;
|
|
82
48
|
};
|
|
83
49
|
/** @internal */
|
|
84
50
|
export declare const AuthUserLimited$outboundSchema: z.ZodType<AuthUserLimited$Outbound, z.ZodTypeDef, AuthUserLimited>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authuserlimited.d.ts","sourceRoot":"","sources":["../../src/models/authuserlimited.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"authuserlimited.d.ts","sourceRoot":"","sources":["../../src/models/authuserlimited.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAC3D,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAE7D;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B;;OAEG;IACH,OAAO,EAAE,OAAO,CAAC;IACjB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB;;OAEG;IACH,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;CAC9B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,6BAA6B,EAAE,CAAC,CAAC,OAAO,CACnD,eAAe,EACf,CAAC,CAAC,UAAU,EACZ,OAAO,CASP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,wBAAwB,GAAG;IACrC,OAAO,EAAE,OAAO,CAAC;IACjB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;CAC9B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,OAAO,CACpD,wBAAwB,EACxB,CAAC,CAAC,UAAU,EACZ,eAAe,CASf,CAAC;AAEH;;;GAGG;AACH,yBAAiB,gBAAgB,CAAC;IAChC,+DAA+D;IACxD,MAAM,aAAa,mDAAgC,CAAC;IAC3D,gEAAgE;IACzD,MAAM,cAAc,oEAAiC,CAAC;IAC7D,0DAA0D;IAC1D,KAAY,QAAQ,GAAG,wBAAwB,CAAC;CACjD;AAED,wBAAgB,qBAAqB,CACnC,eAAe,EAAE,eAAe,GAC/B,MAAM,CAER;AAED,wBAAgB,uBAAuB,CACrC,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,eAAe,EAAE,kBAAkB,CAAC,CAMtD"}
|
|
@@ -3,27 +3,6 @@
|
|
|
3
3
|
*/
|
|
4
4
|
import * as z from "zod";
|
|
5
5
|
import { safeParse } from "../lib/schemas.js";
|
|
6
|
-
/**
|
|
7
|
-
* The user's version. Will always be `northstar`.
|
|
8
|
-
*/
|
|
9
|
-
export const AuthUserLimitedVersion = {
|
|
10
|
-
Northstar: "northstar",
|
|
11
|
-
};
|
|
12
|
-
/** @internal */
|
|
13
|
-
export const AuthUserLimitedVersion$inboundSchema = z.nativeEnum(AuthUserLimitedVersion);
|
|
14
|
-
/** @internal */
|
|
15
|
-
export const AuthUserLimitedVersion$outboundSchema = AuthUserLimitedVersion$inboundSchema;
|
|
16
|
-
/**
|
|
17
|
-
* @internal
|
|
18
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
19
|
-
*/
|
|
20
|
-
export var AuthUserLimitedVersion$;
|
|
21
|
-
(function (AuthUserLimitedVersion$) {
|
|
22
|
-
/** @deprecated use `AuthUserLimitedVersion$inboundSchema` instead. */
|
|
23
|
-
AuthUserLimitedVersion$.inboundSchema = AuthUserLimitedVersion$inboundSchema;
|
|
24
|
-
/** @deprecated use `AuthUserLimitedVersion$outboundSchema` instead. */
|
|
25
|
-
AuthUserLimitedVersion$.outboundSchema = AuthUserLimitedVersion$outboundSchema;
|
|
26
|
-
})(AuthUserLimitedVersion$ || (AuthUserLimitedVersion$ = {}));
|
|
27
6
|
/** @internal */
|
|
28
7
|
export const AuthUserLimited$inboundSchema = z.object({
|
|
29
8
|
limited: z.boolean(),
|
|
@@ -33,7 +12,6 @@ export const AuthUserLimited$inboundSchema = z.object({
|
|
|
33
12
|
username: z.string(),
|
|
34
13
|
avatar: z.nullable(z.string()),
|
|
35
14
|
defaultTeamId: z.nullable(z.string()),
|
|
36
|
-
version: AuthUserLimitedVersion$inboundSchema,
|
|
37
15
|
});
|
|
38
16
|
/** @internal */
|
|
39
17
|
export const AuthUserLimited$outboundSchema = z.object({
|
|
@@ -44,7 +22,6 @@ export const AuthUserLimited$outboundSchema = z.object({
|
|
|
44
22
|
username: z.string(),
|
|
45
23
|
avatar: z.nullable(z.string()),
|
|
46
24
|
defaultTeamId: z.nullable(z.string()),
|
|
47
|
-
version: AuthUserLimitedVersion$outboundSchema,
|
|
48
25
|
});
|
|
49
26
|
/**
|
|
50
27
|
* @internal
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authuserlimited.js","sourceRoot":"","sources":["../../src/models/authuserlimited.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"authuserlimited.js","sourceRoot":"","sources":["../../src/models/authuserlimited.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAsC9C,gBAAgB;AAChB,MAAM,CAAC,MAAM,6BAA6B,GAItC,CAAC,CAAC,MAAM,CAAC;IACX,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE;IACpB,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAC5B,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAC9B,aAAa,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;CACtC,CAAC,CAAC;AAaH,gBAAgB;AAChB,MAAM,CAAC,MAAM,8BAA8B,GAIvC,CAAC,CAAC,MAAM,CAAC;IACX,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE;IACpB,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAC5B,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAC9B,aAAa,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;CACtC,CAAC,CAAC;AAEH;;;GAGG;AACH,MAAM,KAAW,gBAAgB,CAOhC;AAPD,WAAiB,gBAAgB;IAC/B,+DAA+D;IAClD,8BAAa,GAAG,6BAA6B,CAAC;IAC3D,gEAAgE;IACnD,+BAAc,GAAG,8BAA8B,CAAC;AAG/D,CAAC,EAPgB,gBAAgB,KAAhB,gBAAgB,QAOhC;AAED,MAAM,UAAU,qBAAqB,CACnC,eAAgC;IAEhC,OAAO,IAAI,CAAC,SAAS,CAAC,8BAA8B,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC;AAC/E,CAAC;AAED,MAAM,UAAU,uBAAuB,CACrC,UAAkB;IAElB,OAAO,SAAS,CACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,6BAA6B,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACzD,6CAA6C,CAC9C,CAAC;AACJ,CAAC"}
|
|
@@ -369,10 +369,10 @@ export type CreateProjectTarget1 = ClosedEnum<typeof CreateProjectTarget1>;
|
|
|
369
369
|
export type CreateProjectProjectsTarget = Array<CreateProjectTarget1> | CreateProjectTarget2;
|
|
370
370
|
export declare const CreateProjectProjectsResponseType: {
|
|
371
371
|
readonly System: "system";
|
|
372
|
+
readonly Secret: "secret";
|
|
372
373
|
readonly Encrypted: "encrypted";
|
|
373
374
|
readonly Plain: "plain";
|
|
374
375
|
readonly Sensitive: "sensitive";
|
|
375
|
-
readonly Secret: "secret";
|
|
376
376
|
};
|
|
377
377
|
export type CreateProjectProjectsResponseType = ClosedEnum<typeof CreateProjectProjectsResponseType>;
|
|
378
378
|
export declare const CreateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type: {
|
|
@@ -1534,8 +1534,8 @@ export type CreateProjectSrc2 = {
|
|
|
1534
1534
|
};
|
|
1535
1535
|
export type CreateProjectSrc = CreateProjectSrc2 | string;
|
|
1536
1536
|
export declare const CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType: {
|
|
1537
|
-
readonly Path: "path";
|
|
1538
1537
|
readonly Host: "host";
|
|
1538
|
+
readonly Path: "path";
|
|
1539
1539
|
readonly Method: "method";
|
|
1540
1540
|
readonly Header: "header";
|
|
1541
1541
|
readonly Cookie: "cookie";
|
|
@@ -1568,8 +1568,8 @@ export type CreateProjectHas = {
|
|
|
1568
1568
|
value?: CreateProjectValue2 | string | undefined;
|
|
1569
1569
|
};
|
|
1570
1570
|
export declare const CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType: {
|
|
1571
|
-
readonly Path: "path";
|
|
1572
1571
|
readonly Host: "host";
|
|
1572
|
+
readonly Path: "path";
|
|
1573
1573
|
readonly Method: "method";
|
|
1574
1574
|
readonly Header: "header";
|
|
1575
1575
|
readonly Cookie: "cookie";
|
|
@@ -2540,18 +2540,18 @@ export declare namespace CreateProjectProjectsResponseType$ {
|
|
|
2540
2540
|
/** @deprecated use `CreateProjectProjectsResponseType$inboundSchema` instead. */
|
|
2541
2541
|
const inboundSchema: z.ZodNativeEnum<{
|
|
2542
2542
|
readonly System: "system";
|
|
2543
|
+
readonly Secret: "secret";
|
|
2543
2544
|
readonly Encrypted: "encrypted";
|
|
2544
2545
|
readonly Plain: "plain";
|
|
2545
2546
|
readonly Sensitive: "sensitive";
|
|
2546
|
-
readonly Secret: "secret";
|
|
2547
2547
|
}>;
|
|
2548
2548
|
/** @deprecated use `CreateProjectProjectsResponseType$outboundSchema` instead. */
|
|
2549
2549
|
const outboundSchema: z.ZodNativeEnum<{
|
|
2550
2550
|
readonly System: "system";
|
|
2551
|
+
readonly Secret: "secret";
|
|
2551
2552
|
readonly Encrypted: "encrypted";
|
|
2552
2553
|
readonly Plain: "plain";
|
|
2553
2554
|
readonly Sensitive: "sensitive";
|
|
2554
|
-
readonly Secret: "secret";
|
|
2555
2555
|
}>;
|
|
2556
2556
|
}
|
|
2557
2557
|
/** @internal */
|
|
@@ -5740,8 +5740,8 @@ export declare const CreateProjectProjectsResponse200ApplicationJSONResponseBody
|
|
|
5740
5740
|
export declare namespace CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType$ {
|
|
5741
5741
|
/** @deprecated use `CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType$inboundSchema` instead. */
|
|
5742
5742
|
const inboundSchema: z.ZodNativeEnum<{
|
|
5743
|
-
readonly Path: "path";
|
|
5744
5743
|
readonly Host: "host";
|
|
5744
|
+
readonly Path: "path";
|
|
5745
5745
|
readonly Method: "method";
|
|
5746
5746
|
readonly Header: "header";
|
|
5747
5747
|
readonly Cookie: "cookie";
|
|
@@ -5755,8 +5755,8 @@ export declare namespace CreateProjectProjectsResponse200ApplicationJSONResponse
|
|
|
5755
5755
|
}>;
|
|
5756
5756
|
/** @deprecated use `CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType$outboundSchema` instead. */
|
|
5757
5757
|
const outboundSchema: z.ZodNativeEnum<{
|
|
5758
|
-
readonly Path: "path";
|
|
5759
5758
|
readonly Host: "host";
|
|
5759
|
+
readonly Path: "path";
|
|
5760
5760
|
readonly Method: "method";
|
|
5761
5761
|
readonly Header: "header";
|
|
5762
5762
|
readonly Cookie: "cookie";
|
|
@@ -5856,8 +5856,8 @@ export declare const CreateProjectProjectsResponse200ApplicationJSONResponseBody
|
|
|
5856
5856
|
export declare namespace CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$ {
|
|
5857
5857
|
/** @deprecated use `CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$inboundSchema` instead. */
|
|
5858
5858
|
const inboundSchema: z.ZodNativeEnum<{
|
|
5859
|
-
readonly Path: "path";
|
|
5860
5859
|
readonly Host: "host";
|
|
5860
|
+
readonly Path: "path";
|
|
5861
5861
|
readonly Method: "method";
|
|
5862
5862
|
readonly Header: "header";
|
|
5863
5863
|
readonly Cookie: "cookie";
|
|
@@ -5871,8 +5871,8 @@ export declare namespace CreateProjectProjectsResponse200ApplicationJSONResponse
|
|
|
5871
5871
|
}>;
|
|
5872
5872
|
/** @deprecated use `CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$outboundSchema` instead. */
|
|
5873
5873
|
const outboundSchema: z.ZodNativeEnum<{
|
|
5874
|
-
readonly Path: "path";
|
|
5875
5874
|
readonly Host: "host";
|
|
5875
|
+
readonly Path: "path";
|
|
5876
5876
|
readonly Method: "method";
|
|
5877
5877
|
readonly Header: "header";
|
|
5878
5878
|
readonly Cookie: "cookie";
|
|
@@ -116,10 +116,10 @@ export const CreateProjectTarget1 = {
|
|
|
116
116
|
};
|
|
117
117
|
export const CreateProjectProjectsResponseType = {
|
|
118
118
|
System: "system",
|
|
119
|
+
Secret: "secret",
|
|
119
120
|
Encrypted: "encrypted",
|
|
120
121
|
Plain: "plain",
|
|
121
122
|
Sensitive: "sensitive",
|
|
122
|
-
Secret: "secret",
|
|
123
123
|
};
|
|
124
124
|
export const CreateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type = {
|
|
125
125
|
FlagsConnectionString: "flags-connection-string",
|
|
@@ -399,8 +399,8 @@ export const CreateProjectCreateDeployments = {
|
|
|
399
399
|
Disabled: "disabled",
|
|
400
400
|
};
|
|
401
401
|
export const CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType = {
|
|
402
|
-
Path: "path",
|
|
403
402
|
Host: "host",
|
|
403
|
+
Path: "path",
|
|
404
404
|
Method: "method",
|
|
405
405
|
Header: "header",
|
|
406
406
|
Cookie: "cookie",
|
|
@@ -413,8 +413,8 @@ export const CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurity
|
|
|
413
413
|
InitialRequestPath: "initial_request_path",
|
|
414
414
|
};
|
|
415
415
|
export const CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType = {
|
|
416
|
-
Path: "path",
|
|
417
416
|
Host: "host",
|
|
417
|
+
Path: "path",
|
|
418
418
|
Method: "method",
|
|
419
419
|
Header: "header",
|
|
420
420
|
Cookie: "cookie",
|