diff --git a/cache/api.github.com.json b/cache/api.github.com.json index 081406d16..76ff584a3 100644 --- a/cache/api.github.com.json +++ b/cache/api.github.com.json @@ -1,7 +1,7 @@ { "openapi": "3.0.3", "info": { - "version": "2.23.0", + "version": "2.23.1", "title": "GitHub's official OpenAPI spec + Octokit extension", "description": "OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs", "license": { "name": "MIT", "url": "https://spdx.org/licenses/MIT" }, @@ -47162,6 +47162,12 @@ "description": "The severity of the alert.", "enum": ["none", "note", "warning", "error"] }, + "security_severity_level": { + "nullable": true, + "type": "string", + "description": "The security severity of the alert.", + "enum": ["low", "medium", "high", "critical"] + }, "description": { "type": "string", "description": "A short description of the rule used to detect the alert." diff --git a/cache/ghes-2.22.json b/cache/ghes-2.22.json index 8d82a5a0c..9ad475b4d 100644 --- a/cache/ghes-2.22.json +++ b/cache/ghes-2.22.json @@ -1,7 +1,7 @@ { "openapi": "3.0.3", "info": { - "version": "2.23.0", + "version": "2.23.1", "title": "GitHub's official OpenAPI spec + Octokit extension", "description": "OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs", "license": { "name": "MIT", "url": "https://spdx.org/licenses/MIT" }, @@ -42229,6 +42229,12 @@ "description": "The severity of the alert.", "enum": ["none", "note", "warning", "error"] }, + "security_severity_level": { + "nullable": true, + "type": "string", + "description": "The security severity of the alert.", + "enum": ["low", "medium", "high", "critical"] + }, "description": { "type": "string", "description": "A short description of the rule used to detect the alert." diff --git a/cache/ghes-3.0.json b/cache/ghes-3.0.json index 8a6464914..8f1a03c97 100644 --- a/cache/ghes-3.0.json +++ b/cache/ghes-3.0.json @@ -1,7 +1,7 @@ { "openapi": "3.0.3", "info": { - "version": "2.23.0", + "version": "2.23.1", "title": "GitHub's official OpenAPI spec + Octokit extension", "description": "OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs", "license": { "name": "MIT", "url": "https://spdx.org/licenses/MIT" }, @@ -43546,6 +43546,12 @@ "description": "The severity of the alert.", "enum": ["none", "note", "warning", "error"] }, + "security_severity_level": { + "nullable": true, + "type": "string", + "description": "The security severity of the alert.", + "enum": ["low", "medium", "high", "critical"] + }, "description": { "type": "string", "description": "A short description of the rule used to detect the alert." diff --git a/cache/ghes-3.1.json b/cache/ghes-3.1.json index 7f82db58f..a0e6330a7 100644 --- a/cache/ghes-3.1.json +++ b/cache/ghes-3.1.json @@ -1,7 +1,7 @@ { "openapi": "3.0.3", "info": { - "version": "2.23.0", + "version": "2.23.1", "title": "GitHub's official OpenAPI spec + Octokit extension", "description": "OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs", "license": { "name": "MIT", "url": "https://spdx.org/licenses/MIT" }, @@ -44117,6 +44117,12 @@ "description": "The severity of the alert.", "enum": ["none", "note", "warning", "error"] }, + "security_severity_level": { + "nullable": true, + "type": "string", + "description": "The security severity of the alert.", + "enum": ["low", "medium", "high", "critical"] + }, "description": { "type": "string", "description": "A short description of the rule used to detect the alert." diff --git a/cache/github.ae.json b/cache/github.ae.json index a32d305b7..5f6d2452c 100644 --- a/cache/github.ae.json +++ b/cache/github.ae.json @@ -1,7 +1,7 @@ { "openapi": "3.0.3", "info": { - "version": "2.23.0", + "version": "2.23.1", "title": "GitHub's official OpenAPI spec + Octokit extension", "description": "OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs", "license": { "name": "MIT", "url": "https://spdx.org/licenses/MIT" }, @@ -39782,6 +39782,12 @@ "description": "The severity of the alert.", "enum": ["none", "note", "warning", "error"] }, + "security_severity_level": { + "nullable": true, + "type": "string", + "description": "The security severity of the alert.", + "enum": ["low", "medium", "high", "critical"] + }, "description": { "type": "string", "description": "A short description of the rule used to detect the alert." diff --git a/packages/openapi-types-ghes-2.22/package.json b/packages/openapi-types-ghes-2.22/package.json index 75340ae03..a4f34d1d2 100644 --- a/packages/openapi-types-ghes-2.22/package.json +++ b/packages/openapi-types-ghes-2.22/package.json @@ -12,5 +12,5 @@ "types": "types.d.ts", "author": "Gregor Martynus (https://twitter.com/gr2m)", "license": "MIT", - "octokit": { "openapi-version": "2.23.0" } + "octokit": { "openapi-version": "2.23.1" } } diff --git a/packages/openapi-types-ghes-2.22/types.d.ts b/packages/openapi-types-ghes-2.22/types.d.ts index 7fc27e1dd..c24a7a20e 100644 --- a/packages/openapi-types-ghes-2.22/types.d.ts +++ b/packages/openapi-types-ghes-2.22/types.d.ts @@ -6671,6 +6671,8 @@ export interface components { name?: string; /** The severity of the alert. */ severity?: ("none" | "note" | "warning" | "error") | null; + /** The security severity of the alert. */ + security_severity_level?: ("low" | "medium" | "high" | "critical") | null; /** A short description of the rule used to detect the alert. */ description?: string; /** description of the rule used to detect the alert. */ diff --git a/packages/openapi-types-ghes-3.0/package.json b/packages/openapi-types-ghes-3.0/package.json index 88517a47f..258eaa729 100644 --- a/packages/openapi-types-ghes-3.0/package.json +++ b/packages/openapi-types-ghes-3.0/package.json @@ -12,5 +12,5 @@ "types": "types.d.ts", "author": "Gregor Martynus (https://twitter.com/gr2m)", "license": "MIT", - "octokit": { "openapi-version": "2.23.0" } + "octokit": { "openapi-version": "2.23.1" } } diff --git a/packages/openapi-types-ghes-3.0/types.d.ts b/packages/openapi-types-ghes-3.0/types.d.ts index 3f22c7ddf..469ab29f6 100644 --- a/packages/openapi-types-ghes-3.0/types.d.ts +++ b/packages/openapi-types-ghes-3.0/types.d.ts @@ -6958,6 +6958,8 @@ export interface components { name?: string; /** The severity of the alert. */ severity?: ("none" | "note" | "warning" | "error") | null; + /** The security severity of the alert. */ + security_severity_level?: ("low" | "medium" | "high" | "critical") | null; /** A short description of the rule used to detect the alert. */ description?: string; /** description of the rule used to detect the alert. */ diff --git a/packages/openapi-types-ghes-3.1/package.json b/packages/openapi-types-ghes-3.1/package.json index 1a43667d3..13042fcef 100644 --- a/packages/openapi-types-ghes-3.1/package.json +++ b/packages/openapi-types-ghes-3.1/package.json @@ -12,5 +12,5 @@ "types": "types.d.ts", "author": "Gregor Martynus (https://twitter.com/gr2m)", "license": "MIT", - "octokit": { "openapi-version": "2.23.0" } + "octokit": { "openapi-version": "2.23.1" } } diff --git a/packages/openapi-types-ghes-3.1/types.d.ts b/packages/openapi-types-ghes-3.1/types.d.ts index b5500ef75..654620e5a 100644 --- a/packages/openapi-types-ghes-3.1/types.d.ts +++ b/packages/openapi-types-ghes-3.1/types.d.ts @@ -7169,6 +7169,8 @@ export interface components { name?: string; /** The severity of the alert. */ severity?: ("none" | "note" | "warning" | "error") | null; + /** The security severity of the alert. */ + security_severity_level?: ("low" | "medium" | "high" | "critical") | null; /** A short description of the rule used to detect the alert. */ description?: string; /** description of the rule used to detect the alert. */ diff --git a/packages/openapi-types-github.ae/package.json b/packages/openapi-types-github.ae/package.json index 5020a0e85..0c83b32b5 100644 --- a/packages/openapi-types-github.ae/package.json +++ b/packages/openapi-types-github.ae/package.json @@ -12,5 +12,5 @@ "types": "types.d.ts", "author": "Gregor Martynus (https://twitter.com/gr2m)", "license": "MIT", - "octokit": { "openapi-version": "2.23.0" } + "octokit": { "openapi-version": "2.23.1" } } diff --git a/packages/openapi-types-github.ae/types.d.ts b/packages/openapi-types-github.ae/types.d.ts index 3b81a0741..14e71d609 100644 --- a/packages/openapi-types-github.ae/types.d.ts +++ b/packages/openapi-types-github.ae/types.d.ts @@ -6338,6 +6338,8 @@ export interface components { name?: string; /** The severity of the alert. */ severity?: ("none" | "note" | "warning" | "error") | null; + /** The security severity of the alert. */ + security_severity_level?: ("low" | "medium" | "high" | "critical") | null; /** A short description of the rule used to detect the alert. */ description?: string; /** description of the rule used to detect the alert. */ diff --git a/packages/openapi-types/package.json b/packages/openapi-types/package.json index d94818df3..edd92c964 100644 --- a/packages/openapi-types/package.json +++ b/packages/openapi-types/package.json @@ -12,5 +12,5 @@ "types": "types.d.ts", "author": "Gregor Martynus (https://twitter.com/gr2m)", "license": "MIT", - "octokit": { "openapi-version": "2.23.0" } + "octokit": { "openapi-version": "2.23.1" } } diff --git a/packages/openapi-types/types.d.ts b/packages/openapi-types/types.d.ts index 2bffe03b4..716ef0ad4 100644 --- a/packages/openapi-types/types.d.ts +++ b/packages/openapi-types/types.d.ts @@ -8028,6 +8028,8 @@ export interface components { name?: string; /** The severity of the alert. */ severity?: ("none" | "note" | "warning" | "error") | null; + /** The security severity of the alert. */ + security_severity_level?: ("low" | "medium" | "high" | "critical") | null; /** A short description of the rule used to detect the alert. */ description?: string; /** description of the rule used to detect the alert. */