diff --git a/.github/octokit/index.js b/.github/octokit/index.js
new file mode 100644
index 000000000..78efdd295
--- /dev/null
+++ b/.github/octokit/index.js
@@ -0,0 +1,27 @@
+import {Octokit} from "@octokit/rest";
+import {createAppAuth} from "@octokit/auth-app"
+
+export const getAccessToken = async () => {
+
+ const {GITHUB_APP_ID, GITHUB_APP_PRIVATE_KEY} = process.env
+
+ const octoKitInstance = new Octokit({
+ authStrategy: createAppAuth,
+ auth: {
+ appId: GITHUB_APP_ID,
+ privateKey: GITHUB_APP_PRIVATE_KEY
+ }
+ });
+
+ const {data: installations} = await octoKitInstance.rest.apps.listInstallations()
+
+ if(!installations.length) {
+ throw new Error("No Installations found for this github app")
+ }
+
+ const installationId = installations[0].id;
+
+ const installationAccessToken = await octoKitInstance.rest.apps.createInstallationAccessToken({installation_id: installationId})
+
+ return installationAccessToken.data.token
+}
\ No newline at end of file
diff --git a/.github/octokit/node_modules/.package-lock.json b/.github/octokit/node_modules/.package-lock.json
new file mode 100644
index 000000000..737d474d3
--- /dev/null
+++ b/.github/octokit/node_modules/.package-lock.json
@@ -0,0 +1,253 @@
+{
+ "name": "xero-octokit",
+ "version": "1.0.0",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "node_modules/@octokit/auth-app": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/@octokit/auth-app/-/auth-app-7.1.1.tgz",
+ "integrity": "sha512-kRAd6yelV9OgvlEJE88H0VLlQdZcag9UlLr7dV0YYP37X8PPDvhgiTy66QVhDXdyoT0AleFN2w/qXkPdrSzINg==",
+ "dependencies": {
+ "@octokit/auth-oauth-app": "^8.1.0",
+ "@octokit/auth-oauth-user": "^5.1.0",
+ "@octokit/request": "^9.1.1",
+ "@octokit/request-error": "^6.1.1",
+ "@octokit/types": "^13.4.1",
+ "lru-cache": "^10.0.0",
+ "universal-github-app-jwt": "^2.2.0",
+ "universal-user-agent": "^7.0.0"
+ },
+ "engines": {
+ "node": ">= 18"
+ }
+ },
+ "node_modules/@octokit/auth-oauth-app": {
+ "version": "8.1.1",
+ "resolved": "https://registry.npmjs.org/@octokit/auth-oauth-app/-/auth-oauth-app-8.1.1.tgz",
+ "integrity": "sha512-5UtmxXAvU2wfcHIPPDWzVSAWXVJzG3NWsxb7zCFplCWEmMCArSZV0UQu5jw5goLQXbFyOr5onzEH37UJB3zQQg==",
+ "dependencies": {
+ "@octokit/auth-oauth-device": "^7.0.0",
+ "@octokit/auth-oauth-user": "^5.0.1",
+ "@octokit/request": "^9.0.0",
+ "@octokit/types": "^13.0.0",
+ "universal-user-agent": "^7.0.0"
+ },
+ "engines": {
+ "node": ">= 18"
+ }
+ },
+ "node_modules/@octokit/auth-oauth-device": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/@octokit/auth-oauth-device/-/auth-oauth-device-7.1.1.tgz",
+ "integrity": "sha512-HWl8lYueHonuyjrKKIup/1tiy0xcmQCdq5ikvMO1YwkNNkxb6DXfrPjrMYItNLyCP/o2H87WuijuE+SlBTT8eg==",
+ "dependencies": {
+ "@octokit/oauth-methods": "^5.0.0",
+ "@octokit/request": "^9.0.0",
+ "@octokit/types": "^13.0.0",
+ "universal-user-agent": "^7.0.0"
+ },
+ "engines": {
+ "node": ">= 18"
+ }
+ },
+ "node_modules/@octokit/auth-oauth-user": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/@octokit/auth-oauth-user/-/auth-oauth-user-5.1.1.tgz",
+ "integrity": "sha512-rRkMz0ErOppdvEfnemHJXgZ9vTPhBuC6yASeFaB7I2yLMd7QpjfrL1mnvRPlyKo+M6eeLxrKanXJ9Qte29SRsw==",
+ "dependencies": {
+ "@octokit/auth-oauth-device": "^7.0.1",
+ "@octokit/oauth-methods": "^5.0.0",
+ "@octokit/request": "^9.0.1",
+ "@octokit/types": "^13.0.0",
+ "universal-user-agent": "^7.0.0"
+ },
+ "engines": {
+ "node": ">= 18"
+ }
+ },
+ "node_modules/@octokit/auth-token": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-5.1.1.tgz",
+ "integrity": "sha512-rh3G3wDO8J9wSjfI436JUKzHIxq8NaiL0tVeB2aXmG6p/9859aUOAjA9pmSPNGGZxfwmaJ9ozOJImuNVJdpvbA==",
+ "engines": {
+ "node": ">= 18"
+ }
+ },
+ "node_modules/@octokit/core": {
+ "version": "6.1.2",
+ "resolved": "https://registry.npmjs.org/@octokit/core/-/core-6.1.2.tgz",
+ "integrity": "sha512-hEb7Ma4cGJGEUNOAVmyfdB/3WirWMg5hDuNFVejGEDFqupeOysLc2sG6HJxY2etBp5YQu5Wtxwi020jS9xlUwg==",
+ "dependencies": {
+ "@octokit/auth-token": "^5.0.0",
+ "@octokit/graphql": "^8.0.0",
+ "@octokit/request": "^9.0.0",
+ "@octokit/request-error": "^6.0.1",
+ "@octokit/types": "^13.0.0",
+ "before-after-hook": "^3.0.2",
+ "universal-user-agent": "^7.0.0"
+ },
+ "engines": {
+ "node": ">= 18"
+ }
+ },
+ "node_modules/@octokit/endpoint": {
+ "version": "10.1.1",
+ "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-10.1.1.tgz",
+ "integrity": "sha512-JYjh5rMOwXMJyUpj028cu0Gbp7qe/ihxfJMLc8VZBMMqSwLgOxDI1911gV4Enl1QSavAQNJcwmwBF9M0VvLh6Q==",
+ "dependencies": {
+ "@octokit/types": "^13.0.0",
+ "universal-user-agent": "^7.0.2"
+ },
+ "engines": {
+ "node": ">= 18"
+ }
+ },
+ "node_modules/@octokit/graphql": {
+ "version": "8.1.1",
+ "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-8.1.1.tgz",
+ "integrity": "sha512-ukiRmuHTi6ebQx/HFRCXKbDlOh/7xEV6QUXaE7MJEKGNAncGI/STSbOkl12qVXZrfZdpXctx5O9X1AIaebiDBg==",
+ "dependencies": {
+ "@octokit/request": "^9.0.0",
+ "@octokit/types": "^13.0.0",
+ "universal-user-agent": "^7.0.0"
+ },
+ "engines": {
+ "node": ">= 18"
+ }
+ },
+ "node_modules/@octokit/oauth-authorization-url": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/@octokit/oauth-authorization-url/-/oauth-authorization-url-7.1.1.tgz",
+ "integrity": "sha512-ooXV8GBSabSWyhLUowlMIVd9l1s2nsOGQdlP2SQ4LnkEsGXzeCvbSbCPdZThXhEFzleGPwbapT0Sb+YhXRyjCA==",
+ "engines": {
+ "node": ">= 18"
+ }
+ },
+ "node_modules/@octokit/oauth-methods": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/@octokit/oauth-methods/-/oauth-methods-5.1.2.tgz",
+ "integrity": "sha512-C5lglRD+sBlbrhCUTxgJAFjWgJlmTx5bQ7Ch0+2uqRjYv7Cfb5xpX4WuSC9UgQna3sqRGBL9EImX9PvTpMaQ7g==",
+ "dependencies": {
+ "@octokit/oauth-authorization-url": "^7.0.0",
+ "@octokit/request": "^9.1.0",
+ "@octokit/request-error": "^6.1.0",
+ "@octokit/types": "^13.0.0"
+ },
+ "engines": {
+ "node": ">= 18"
+ }
+ },
+ "node_modules/@octokit/openapi-types": {
+ "version": "22.2.0",
+ "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-22.2.0.tgz",
+ "integrity": "sha512-QBhVjcUa9W7Wwhm6DBFu6ZZ+1/t/oYxqc2tp81Pi41YNuJinbFRx8B133qVOrAaBbF7D/m0Et6f9/pZt9Rc+tg=="
+ },
+ "node_modules/@octokit/plugin-paginate-rest": {
+ "version": "11.3.5",
+ "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-11.3.5.tgz",
+ "integrity": "sha512-cgwIRtKrpwhLoBi0CUNuY83DPGRMaWVjqVI/bGKsLJ4PzyWZNaEmhHroI2xlrVXkk6nFv0IsZpOp+ZWSWUS2AQ==",
+ "dependencies": {
+ "@octokit/types": "^13.6.0"
+ },
+ "engines": {
+ "node": ">= 18"
+ },
+ "peerDependencies": {
+ "@octokit/core": ">=6"
+ }
+ },
+ "node_modules/@octokit/plugin-request-log": {
+ "version": "5.3.1",
+ "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-5.3.1.tgz",
+ "integrity": "sha512-n/lNeCtq+9ofhC15xzmJCNKP2BWTv8Ih2TTy+jatNCCq/gQP/V7rK3fjIfuz0pDWDALO/o/4QY4hyOF6TQQFUw==",
+ "engines": {
+ "node": ">= 18"
+ },
+ "peerDependencies": {
+ "@octokit/core": ">=6"
+ }
+ },
+ "node_modules/@octokit/plugin-rest-endpoint-methods": {
+ "version": "13.2.6",
+ "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-13.2.6.tgz",
+ "integrity": "sha512-wMsdyHMjSfKjGINkdGKki06VEkgdEldIGstIEyGX0wbYHGByOwN/KiM+hAAlUwAtPkP3gvXtVQA9L3ITdV2tVw==",
+ "dependencies": {
+ "@octokit/types": "^13.6.1"
+ },
+ "engines": {
+ "node": ">= 18"
+ },
+ "peerDependencies": {
+ "@octokit/core": ">=6"
+ }
+ },
+ "node_modules/@octokit/request": {
+ "version": "9.1.3",
+ "resolved": "https://registry.npmjs.org/@octokit/request/-/request-9.1.3.tgz",
+ "integrity": "sha512-V+TFhu5fdF3K58rs1pGUJIDH5RZLbZm5BI+MNF+6o/ssFNT4vWlCh/tVpF3NxGtP15HUxTTMUbsG5llAuU2CZA==",
+ "dependencies": {
+ "@octokit/endpoint": "^10.0.0",
+ "@octokit/request-error": "^6.0.1",
+ "@octokit/types": "^13.1.0",
+ "universal-user-agent": "^7.0.2"
+ },
+ "engines": {
+ "node": ">= 18"
+ }
+ },
+ "node_modules/@octokit/request-error": {
+ "version": "6.1.5",
+ "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-6.1.5.tgz",
+ "integrity": "sha512-IlBTfGX8Yn/oFPMwSfvugfncK2EwRLjzbrpifNaMY8o/HTEAFqCA1FZxjD9cWvSKBHgrIhc4CSBIzMxiLsbzFQ==",
+ "dependencies": {
+ "@octokit/types": "^13.0.0"
+ },
+ "engines": {
+ "node": ">= 18"
+ }
+ },
+ "node_modules/@octokit/rest": {
+ "version": "21.0.2",
+ "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-21.0.2.tgz",
+ "integrity": "sha512-+CiLisCoyWmYicH25y1cDfCrv41kRSvTq6pPWtRroRJzhsCZWZyCqGyI8foJT5LmScADSwRAnr/xo+eewL04wQ==",
+ "dependencies": {
+ "@octokit/core": "^6.1.2",
+ "@octokit/plugin-paginate-rest": "^11.0.0",
+ "@octokit/plugin-request-log": "^5.3.1",
+ "@octokit/plugin-rest-endpoint-methods": "^13.0.0"
+ },
+ "engines": {
+ "node": ">= 18"
+ }
+ },
+ "node_modules/@octokit/types": {
+ "version": "13.6.1",
+ "resolved": "https://registry.npmjs.org/@octokit/types/-/types-13.6.1.tgz",
+ "integrity": "sha512-PHZE9Z+kWXb23Ndik8MKPirBPziOc0D2/3KH1P+6jK5nGWe96kadZuE4jev2/Jq7FvIfTlT2Ltg8Fv2x1v0a5g==",
+ "dependencies": {
+ "@octokit/openapi-types": "^22.2.0"
+ }
+ },
+ "node_modules/before-after-hook": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-3.0.2.tgz",
+ "integrity": "sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A=="
+ },
+ "node_modules/lru-cache": {
+ "version": "10.4.3",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="
+ },
+ "node_modules/universal-github-app-jwt": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/universal-github-app-jwt/-/universal-github-app-jwt-2.2.0.tgz",
+ "integrity": "sha512-G5o6f95b5BggDGuUfKDApKaCgNYy2x7OdHY0zSMF081O0EJobw+1130VONhrA7ezGSV2FNOGyM+KQpQZAr9bIQ=="
+ },
+ "node_modules/universal-user-agent": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.2.tgz",
+ "integrity": "sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q=="
+ }
+ }
+}
diff --git a/.github/octokit/node_modules/@octokit/auth-app/LICENSE b/.github/octokit/node_modules/@octokit/auth-app/LICENSE
new file mode 100644
index 000000000..ef2c18ee5
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/LICENSE
@@ -0,0 +1,21 @@
+The MIT License
+
+Copyright (c) 2019 Octokit contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/.github/octokit/node_modules/@octokit/auth-app/README.md b/.github/octokit/node_modules/@octokit/auth-app/README.md
new file mode 100644
index 000000000..24c81ce4c
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/README.md
@@ -0,0 +1,1396 @@
+# auth-app.js
+
+> GitHub App authentication for JavaScript
+
+[![@latest](https://img.shields.io/npm/v/@octokit/auth-app.svg)](https://www.npmjs.com/package/@octokit/auth-app)
+[![Build Status](https://github.com/octokit/auth-app.js/workflows/Test/badge.svg)](https://github.com/octokit/auth-app.js/actions?query=workflow%3ATest)
+
+`@octokit/auth-app` implements authentication for GitHub Apps using [JSON Web Token](https://jwt.io/), installation access tokens, and OAuth user-to-server access tokens.
+
+
+
+- [Standalone usage](#standalone-usage)
+ - [Authenticate as GitHub App (JSON Web Token)](#authenticate-as-github-app-json-web-token)
+ - [Authenticate as OAuth App (client ID/client secret)](#authenticate-as-oauth-app-client-idclient-secret)
+ - [Authenticate as installation](#authenticate-as-installation)
+ - [Authenticate as user](#authenticate-as-user)
+- [Usage with Octokit](#usage-with-octokit)
+- [`createAppAuth(options)` or `new Octokit({ auth })`](#createappauthoptions-or-new-octokit-auth-)
+- [`auth(options)` or `octokit.auth(options)`](#authoptions-or-octokitauthoptions)
+ - [JSON Web Token (JWT) Authentication](#json-web-token-jwt-authentication)
+ - [OAuth App authentication](#oauth-app-authentication)
+ - [Installation authentication](#installation-authentication)
+ - [User authentication (web flow)](#user-authentication-web-flow)
+ - [User authentication (device flow)](#user-authentication-device-flow)
+- [Authentication object](#authentication-object)
+ - [JSON Web Token (JWT) authentication](#json-web-token-jwt-authentication)
+ - [OAuth App authentication](#oauth-app-authentication-1)
+ - [Installation access token authentication](#installation-access-token-authentication)
+ - [GitHub APP user authentication token with expiring disabled](#github-app-user-authentication-token-with-expiring-disabled)
+ - [GitHub APP user authentication token with expiring enabled](#github-app-user-authentication-token-with-expiring-enabled)
+- [`auth.hook(request, route, parameters)` or `auth.hook(request, options)`](#authhookrequest-route-parameters-or-authhookrequest-options)
+- [Types](#types)
+- [Implementation details](#implementation-details)
+- [License](#license)
+
+
+
+## Standalone usage
+
+
+
+
+Browsers
+
+
+⚠️ `@octokit/auth-app` is not meant for usage in the browser. A private key and client secret must not be exposed to users.
+
+The private keys provided by GitHub are in `PKCS#1` format, but the WebCrypto API only supports `PKCS#8`. You need to convert it first:
+
+```shell
+openssl pkcs8 -topk8 -inform PEM -outform PEM -nocrypt -in private-key.pem -out private-key-pkcs8.key
+```
+
+The OAuth APIs to create user-to-server tokens cannot be used because they do not have CORS enabled.
+
+If you know what you are doing, load `@octokit/auth-app` directly from [esm.sh](https://esm.sh)
+
+```html
+
+```
+
+
+
+Node
+
+
+Install with npm install @octokit/auth-app
+
+```js
+import { createAppAuth } from "@octokit/auth-app";
+```
+
+
+
+
+
+> [!IMPORTANT]
+> As we use [conditional exports](https://nodejs.org/api/packages.html#conditional-exports), you will need to adapt your `tsconfig.json` by setting `"moduleResolution": "node16", "module": "node16"`.
+>
+> See the TypeScript docs on [package.json "exports"](https://www.typescriptlang.org/docs/handbook/modules/reference.html#packagejson-exports).
+> See this [helpful guide on transitioning to ESM](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c) from [@sindresorhus](https://github.com/sindresorhus)
+
+### Authenticate as GitHub App (JSON Web Token)
+
+```js
+const auth = createAppAuth({
+ appId: 1,
+ privateKey: "-----BEGIN PRIVATE KEY-----\n...",
+ clientId: "lv1.1234567890abcdef",
+ clientSecret: "1234567890abcdef12341234567890abcdef1234",
+});
+
+// Retrieve JSON Web Token (JWT) to authenticate as app
+const appAuthentication = await auth({ type: "app" });
+```
+
+resolves with
+
+```json
+{
+ "type": "app",
+ "token": "jsonwebtoken123",
+ "appId": 123,
+ "expiresAt": "2018-07-07T00:09:30.000Z"
+}
+```
+
+### Authenticate as OAuth App (client ID/client secret)
+
+The [OAuth Application APIs](https://docs.github.com/en/rest/reference/apps#oauth-applications-api) require the app to authenticate using clientID/client as Basic Authentication
+
+```js
+const auth = createAppAuth({
+ appId: 1,
+ privateKey: "-----BEGIN PRIVATE KEY-----\n...",
+ clientId: "lv1.1234567890abcdef",
+ clientSecret: "1234567890abcdef12341234567890abcdef1234",
+});
+
+const appAuthentication = await auth({
+ type: "oauth-app",
+});
+```
+
+resolves with
+
+```json
+{
+ "type": "oauth-app",
+ "clientId": "lv1.1234567890abcdef",
+ "clientSecret": "1234567890abcdef1234567890abcdef12345678",
+ "headers": {
+ "authorization": "basic bHYxLjEyMzQ1Njc4OTBhYmNkZWY6MTIzNDU2Nzg5MGFiY2RlZjEyMzQ1Njc4OTBhYmNkZWYxMjM0NTY3OA=="
+ }
+}
+```
+
+### Authenticate as installation
+
+```js
+const auth = createAppAuth({
+ appId: 1,
+ privateKey: "-----BEGIN PRIVATE KEY-----\n...",
+ clientId: "lv1.1234567890abcdef",
+ clientSecret: "1234567890abcdef12341234567890abcdef1234",
+});
+
+// Retrieve installation access token
+const installationAuthentication = await auth({
+ type: "installation",
+ installationId: 123,
+});
+```
+
+resolves with
+
+```json
+{
+ "type": "token",
+ "tokenType": "installation",
+ "token": "token123",
+ "installationId": 123,
+ "createdAt": "2018-07-07T00:00:00.000Z",
+ "expiresAt": "2018-07-07T00:59:00.000Z"
+}
+```
+
+### Authenticate as user
+
+```js
+const auth = createAppAuth({
+ appId: 1,
+ privateKey: "-----BEGIN PRIVATE KEY-----\n...",
+ clientId: "lv1.1234567890abcdef",
+ clientSecret: "1234567890abcdef12341234567890abcdef1234",
+});
+
+// Retrieve an oauth-access token
+const userAuthentication = await auth({ type: "oauth-user", code: "123456" });
+```
+
+Resolves with
+
+```json
+{
+ "type": "token",
+ "tokenType": "oauth",
+ "token": "token123"
+}
+```
+
+## Usage with Octokit
+
+
+
+
+
+Browsers
+
+
+
+⚠️ `@octokit/auth-app` is not meant for usage in the browser. A private key and client secret must not be exposed to users.
+
+The private keys provided by GitHub are in `PKCS#1` format, but the WebCrypto API only supports `PKCS#8`. You need to convert it first:
+
+```shell
+openssl pkcs8 -topk8 -inform PEM -outform PEM -nocrypt -in private-key.pem -out private-key-pkcs8.key
+```
+
+The OAuth APIs to create user-to-server tokens cannot be used because they do not have CORS enabled.
+
+If you know what you are doing, load `@octokit/auth-app` and `@octokit/core` (or a compatible module) directly from [esm.sh](https://esm.sh)
+
+```html
+
+```
+
+
+
+
+Node
+
+
+
+Install with `npm install @octokit/core @octokit/auth-app`. Optionally replace `@octokit/core` with a compatible module
+
+```js
+import { Octokit } from "@octokit/core";
+import { createAppAuth, createOAuthUserAuth } from "@octokit/auth-app";
+```
+
+
+
+
+
+```js
+const appOctokit = new Octokit({
+ authStrategy: createAppAuth,
+ auth: {
+ appId: 1,
+ privateKey: "-----BEGIN PRIVATE KEY-----\n...",
+ clientId: "1234567890abcdef1234",
+ clientSecret: "1234567890abcdef1234567890abcdef12345678",
+ },
+});
+
+// Send requests as GitHub App
+const { slug } = await appOctokit.request("GET /app");
+console.log("authenticated as %s", slug);
+
+// Send requests as OAuth App
+await appOctokit.request("POST /application/{client_id}/token", {
+ client_id: "1234567890abcdef1234",
+ access_token: "existingtoken123",
+});
+console.log("token is valid");
+
+// create a new octokit instance that is authenticated as the user
+const userOctokit = await appOctokit.auth({
+ type: "oauth-user",
+ code: "code123",
+ factory: (options) => {
+ return new Octokit({
+ authStrategy: createOAuthUserAuth,
+ auth: options,
+ });
+ },
+});
+
+// Exchanges the code for the user access token authentication on first request
+// and caches the authentication for successive requests
+const {
+ data: { login },
+} = await userOctokit.request("GET /user");
+console.log("Hello, %s!", login);
+```
+
+In order to create an `octokit` instance that is authenticated as an installation, with automated installation token refresh, set `installationId` as `auth` option
+
+```js
+const installationOctokit = new Octokit({
+ authStrategy: createAppAuth,
+ auth: {
+ appId: 1,
+ privateKey: "-----BEGIN PRIVATE KEY-----\n...",
+ installationId: 123,
+ },
+});
+
+// transparently creates an installation access token the first time it is needed
+// and refreshes it when it expires
+await installationOctokit.request("POST /repos/{owner}/{repo}/issues", {
+ owner: "octocat",
+ repo: "hello-world",
+ title: "title",
+});
+```
+
+## `createAppAuth(options)` or `new Octokit({ auth })`
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ appId
+
+
+ number
+
+
+ Required . Find App ID on the app’s about page in settings.
+
+
+
+
+ privateKey
+
+
+ string
+
+
+ Required . Content of the *.pem
file you downloaded from the app’s about page. You can generate a new private key if needed. If your private key contains escaped newlines (`\\n`), they will be automatically replaced with actual newlines.
+
+
+
+
+ installationId
+
+
+ number
+
+
+ Default installationId
to be used when calling auth({ type: "installation" })
.
+
+
+
+
+ clientId
+
+
+ string
+
+
+ The client ID of the GitHub App.
+
+
+
+
+ clientSecret
+
+
+ string
+
+
+ A client secret for the GitHub App.
+
+
+
+
+ request
+
+
+ function
+
+
+
+Automatically set to `octokit.request` when using with an `Octokit` constructor.
+
+For standalone usage, you can pass in your own [`@octokit/request`](https://github.com/octokit/request.js) instance. For usage with enterprise, set `baseUrl` to the hostname + `/api/v3`. Example:
+
+```js
+import { request } from "@octokit/request";
+createAppAuth({
+ appId: 1,
+ privateKey: "-----BEGIN PRIVATE KEY-----\n...",
+ request: request.defaults({
+ baseUrl: "https://ghe.my-company.com/api/v3",
+ }),
+});
+```
+
+
+
+
+ cache
+
+
+ object
+
+
+ Installation tokens expire after an hour. By default, @octokit/auth-app
is caching up to 15000 tokens simultaneously using lru-cache . You can pass your own cache implementation by passing options.cache.{get,set}
to the constructor. Example:
+
+```js
+const CACHE = {};
+createAppAuth({
+ appId: 1,
+ privateKey: "-----BEGIN PRIVATE KEY-----\n...",
+ cache: {
+ async get(key) {
+ return CACHE[key];
+ },
+ async set(key, value) {
+ CACHE[key] = value;
+ },
+ },
+});
+```
+
+
+
+
+ log
+
+
+ object
+
+
+ You can pass in your preferred logging tool by passing option.log
to the constructor. If you would like to make the log level configurable using an environment variable or external option, we recommend the console-log-level package. For example:
+
+```js
+import consoleLogLevel from "console-log-level";
+createAppAuth({
+ appId: 1,
+ privateKey: "-----BEGIN PRIVATE KEY-----\n...",
+ log: consoleLogLevel({ level: "info" }),
+});
+```
+
+
+
+
+
+## `auth(options)` or `octokit.auth(options)`
+
+The async `auth()` method accepts different options depending on your use case
+
+### JSON Web Token (JWT) Authentication
+
+Authenticate as the GitHub app to list installations, repositories, and create installation access tokens.
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ Required . Must be either "app"
.
+
+
+
+
+
+### OAuth App authentication
+
+Create, reset, refresh, delete OAuth user-to-server tokens
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ Required . Must be either "oauth-app"
.
+
+
+
+
+
+### Installation authentication
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ Required . Must be "installation"
.
+
+
+
+
+ installationId
+
+
+ number
+
+
+ Required unless a default installationId
was passed to createAppAuth()
. ID of installation to retrieve authentication for.
+
+
+
+
+ repositoryIds
+
+
+ array of numbers
+
+
+ The id
of the repositories that the installation token can access. Also known as a databaseID
when querying the repository object in GitHub's GraphQL API. This option is **(recommended)** over repositoryNames
when needing to limit the scope of the access token, due to repositoryNames
having the possibility of changing. Additionally, you should only include either repositoryIds
or repositoryNames
, but not both.
+
+
+
+
+ repositoryNames
+
+
+ array of strings
+
+
+ The name
of the repositories that the installation token can access. As mentioned in the repositoryIds
description, you should only include either repositoryIds
or repositoryNames
, but not both.
+
+
+
+
+ permissions
+
+
+ object
+
+
+ The permissions granted to the access token. The permissions object includes the permission names and their access type. For a complete list of permissions and allowable values, see GitHub App permissions .
+
+
+
+
+ factory
+
+
+ function
+
+
+
+The `auth({type: "installation", installationId, factory })` call with resolve with whatever the factory function returns. The `factory` function will be called with all the strategy option that `auth` was created with, plus the additional options passed to `auth`, besides `type` and `factory`.
+
+For example, you can create a new `auth` instance for an installation which shares the internal state (especially the access token cache) with the calling `auth` instance:
+
+```js
+const appAuth = createAppAuth({
+ appId: 1,
+ privateKey: "-----BEGIN PRIVATE KEY-----\n...",
+});
+
+const installationAuth123 = await appAuth({
+ type: "installation",
+ installationId: 123,
+ factory: createAppAuth,
+});
+```
+
+
+
+
+
+ refresh
+
+
+ boolean
+
+
+
+Installation tokens expire after one hour. By default, tokens are cached and returned from cache until expired. To bypass and update a cached token for the given `installationId`, set `refresh` to `true`.
+
+Defaults to `false`.
+
+
+
+
+
+
+### User authentication (web flow)
+
+Exchange code received from the web flow redirect described in [step 2 of GitHub's OAuth web flow](https://docs.github.com/en/developers/apps/authorizing-oauth-apps#web-application-flow)
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ Required . Must be "oauth-user"
.
+
+
+
+
+ factory
+
+
+ function
+
+
+
+The `auth({type: "oauth-user", factory })` call with resolve with whatever the factory function returns. The `factory` function will be called with all the strategy option that `auth` was created with, plus the additional options passed to `auth`, besides `type` and `factory`.
+
+For example, you can create a new `auth` instance for an installation which shares the internal state (especially the access token cache) with the calling `auth` instance:
+
+```js
+import { createAppAuth, createOAuthUserAuth } from "@octokit/auth-oauth-app";
+
+const appAuth = createAppAuth({
+ appId: 1,
+ privateKey: "-----BEGIN PRIVATE KEY-----\n...",
+ clientId: "lv1.1234567890abcdef",
+ clientSecret: "1234567890abcdef1234567890abcdef12345678",
+});
+
+const userAuth = await appAuth({
+ type: "oauth-user",
+ code,
+ factory: createOAuthUserAuth,
+});
+
+// will create token upon first call, then cache authentication for successive calls,
+// until token needs to be refreshed (if enabled for the GitHub App)
+const authentication = await userAuth();
+```
+
+
+
+
+
+ code
+
+
+ string
+
+
+ The authorization code
which was passed as query parameter to the callback URL from the OAuth web application flow .
+
+
+
+
+ redirectUrl
+
+
+ string
+
+
+ The URL in your application where users are sent after authorization. See redirect urls .
+
+
+
+
+ state
+
+
+ string
+
+
+ The unguessable random string you provided in Step 1 of the OAuth web application flow .
+
+
+
+
+
+### User authentication (device flow)
+
+Create a token using [GitHub's device flow](https://docs.github.com/en/developers/apps/authorizing-oauth-apps#device-flow).
+
+The device flow does not require a client secret, but it is required as strategy option for `@octokit/auth-app`, even for the device flow. If you want to implement the device flow without requiring a client secret, use [`@octokit/auth-oauth-device`](https://github.com/octokit/auth-oauth-device.js#readme).
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ Required . Must be "oauth-user"
.
+
+
+
+
+ onVerification
+
+
+ function
+
+
+
+**Required**. A function that is called once the device and user codes were retrieved.
+
+The `onVerification()` callback can be used to pause until the user completes step 2, which might result in a better user experience.
+
+```js
+const auth = auth({
+ type: "oauth-user",
+ onVerification(verification) {
+ console.log("Open %s", verification.verification_uri);
+ console.log("Enter code: %s", verification.user_code);
+ await prompt("press enter when you are ready to continue");
+ },
+});
+```
+
+
+
+
+
+ factory
+
+
+ function
+
+
+
+The `auth({type: "oauth-user", factory })` call with resolve with whatever the factory function returns. The `factory` function will be called with all the strategy option that `auth` was created with, plus the additional options passed to `auth`, besides `type` and `factory`.
+
+For example, you can create a new `auth` instance for an installation which shares the internal state (especially the access token cache) with the calling `auth` instance:
+
+```js
+import { createAppAuth, createOAuthUserAuth } from "@octokit/auth-oauth-app";
+
+const appAuth = createAppAuth({
+ appId: 1,
+ privateKey: "-----BEGIN PRIVATE KEY-----\n...",
+ clientId: "lv1.1234567890abcdef",
+ clientSecret: "1234567890abcdef1234567890abcdef12345678",
+});
+
+const userAuth = await appAuth({
+ type: "oauth-user",
+ code,
+ factory: createOAuthUserAuth,
+});
+
+// will create token upon first call, then cache authentication for successive calls,
+// until token needs to be refreshed (if enabled for the GitHub App)
+const authentication = await userAuth();
+```
+
+
+
+
+
+
+## Authentication object
+
+Depending on on the `auth()` call, the resulting authentication object can be one of
+
+1. JSON Web Token (JWT) authentication
+1. OAuth App authentication
+1. Installation access token authentication
+1. GitHub APP user authentication token with expiring disabled
+1. GitHub APP user authentication token with expiring enabled
+
+### JSON Web Token (JWT) authentication
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ "app"
+
+
+
+
+ token
+
+
+ string
+
+
+ The JSON Web Token (JWT) to authenticate as the app.
+
+
+
+
+ appId
+
+
+ number
+
+
+ GitHub App database ID.
+
+
+
+
+ expiresAt
+
+
+ string
+
+
+ Timestamp in UTC format, e.g. "2018-07-07T00:09:30.000Z"
. A Date object can be created using new Date(authentication.expiresAt)
.
+
+
+
+
+
+### OAuth App authentication
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ "oauth-app"
+
+
+
+
+ clientType
+
+
+ string
+
+
+ "github-app"
+
+
+
+
+ clientId
+
+
+ string
+
+
+ The client ID as passed to the constructor.
+
+
+
+
+ clientSecret
+
+
+ string
+
+
+ The client secret as passed to the constructor.
+
+
+
+
+ headers
+
+
+ object
+
+
+ { authorization }
.
+
+
+
+
+
+### Installation access token authentication
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ "token"
+
+
+
+
+ token
+
+
+ string
+
+
+ The installation access token.
+
+
+
+
+ tokenType
+
+
+ string
+
+
+ "installation"
+
+
+
+
+ installationId
+
+
+ number
+
+
+ Installation database ID.
+
+
+
+
+ createdAt
+
+
+ string
+
+
+ Timestamp in UTC format, e.g. "2018-07-07T00:00:00.000Z"
. A Date object can be created using new Date(authentication.expiresAt)
.
+
+
+
+
+ expiresAt
+
+
+ string
+
+
+ Timestamp in UTC format, e.g. "2018-07-07T00:59:00.000Z"
. A Date object can be created using new Date(authentication.expiresAt)
.
+
+
+
+
+ repositoryIds
+
+
+ array of numbers
+
+
+ Only present if repositoryIds
option passed to auth(options)
.
+
+
+
+
+ repositoryNames
+
+
+ array of strings
+
+
+ Only present if repositoryNames
option passed to auth(options)
.
+
+
+
+
+ permissions
+
+
+ object
+
+
+ An object where keys are the permission name and the value is either "read"
or "write"
. See the list of all GitHub App Permissions .
+
+
+
+
+ singleFileName
+
+
+ string
+
+
+ If the single file permission is enabled, the singleFileName
property is set to the path of the accessible file.
+
+
+
+
+
+### GitHub APP user authentication token with expiring disabled
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ "token"
+
+
+
+
+ tokenType
+
+
+ string
+
+
+ "oauth"
+
+
+
+
+ clientType
+
+
+ string
+
+
+ "github-app"
+
+
+
+
+ clientId
+
+
+ string
+
+
+ The app's Client ID
+
+
+
+
+ clientSecret
+
+
+ string
+
+
+ One of the app's client secrets
+
+
+
+
+ token
+
+
+ string
+
+
+ The user access token
+
+
+
+
+
+### GitHub APP user authentication token with expiring enabled
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ "token"
+
+
+
+
+ tokenType
+
+
+ string
+
+
+ "oauth"
+
+
+
+
+ clientType
+
+
+ string
+
+
+ "github-app"
+
+
+
+
+ clientId
+
+
+ string
+
+
+ The app's Client ID
+
+
+
+
+ clientSecret
+
+
+ string
+
+
+ One of the app's client secrets
+
+
+
+
+ token
+
+
+ string
+
+
+ The user access token
+
+
+
+
+ refreshToken
+
+
+ string
+
+
+ The refresh token
+
+
+
+
+ expiresAt
+
+
+ string
+
+
+ Date timestamp in ISO 8601 standard. Example: 2022-01-01T08:00:0.000Z
+
+
+
+
+ refreshTokenExpiresAt
+
+
+ string
+
+
+ Date timestamp in ISO 8601 standard. Example: 2021-07-01T00:00:0.000Z
+
+
+
+
+
+## `auth.hook(request, route, parameters)` or `auth.hook(request, options)`
+
+`auth.hook()` hooks directly into the request life cycle. It amends the request to authenticate either as app or as installation based on the request URL. Although the `"machine-man"` preview has graduated to the official API, https://developer.github.com/changes/2020-08-20-graduate-machine-man-and-sailor-v-previews/, it is still required in versions of GitHub Enterprise up to 2.21 so it automatically sets the `"machine-man"` preview for all endpoints requiring JWT authentication.
+
+The `request` option is an instance of [`@octokit/request`](https://github.com/octokit/request.js#readme). The arguments are the same as for the [`request()` method](https://github.com/octokit/request.js#request).
+
+`auth.hook()` can be called directly to send an authenticated request
+
+```js
+const { data: installations } = await auth.hook(
+ request,
+ "GET /app/installations",
+);
+```
+
+Or it can be passed as option to [`request()`](https://github.com/octokit/request.js#request).
+
+```js
+const requestWithAuth = request.defaults({
+ request: {
+ hook: auth.hook,
+ },
+});
+
+const { data: installations } = await requestWithAuth("GET /app/installations");
+```
+
+Note that `auth.hook()` does not create and set an OAuth authentication token. But you can use [`@octokit/auth-oauth-app`](https://github.com/octokit/auth-oauth-app.js#readme) for that functionality. And if you don't plan on sending requests to routes that require authentication with `client_id` and `client_secret`, you can just retrieve the token and then create a new instance of [`request()`](https://github.com/octokit/request.js#request) with the authentication header set:
+
+```js
+const { token } = await auth({
+ type: "oauth-user",
+ code: "123456",
+});
+const requestWithAuth = request.defaults({
+ headers: {
+ authentication: `token ${token}`,
+ },
+});
+```
+
+## Types
+
+```ts
+import {
+ // strategy options
+ StrategyOptions,
+ // auth options
+ AuthOptions,
+ AppAuthOptions,
+ OAuthAppAuthOptions,
+ InstallationAuthOptions,
+ OAuthWebFlowAuthOptions,
+ OAuthDeviceFlowAuthOptions,
+ // authentication objects
+ Authentication,
+ AppAuthentication,
+ OAuthAppAuthentication,
+ InstallationAccessTokenAuthentication,
+ GitHubAppUserAuthentication,
+ GitHubAppUserAuthenticationWithExpiration,
+} from "@octokit/auth-app";
+```
+
+## Implementation details
+
+When creating a JSON Web Token, it sets the "issued at time" (iat) to 30s in the past as we have seen people running situations where the GitHub API claimed the iat would be in future. It turned out the clocks on the different machine were not in sync.
+
+Installation access tokens are valid for 60 minutes. This library invalidates them after 59 minutes to account for request delays.
+
+All OAuth features are implemented internally using [@octokit/auth-oauth-app](https://github.com/octokit/auth-oauth-app.js/#readme).
+
+## License
+
+[MIT](LICENSE)
diff --git a/.github/octokit/node_modules/@octokit/auth-app/dist-node/index.js b/.github/octokit/node_modules/@octokit/auth-app/dist-node/index.js
new file mode 100644
index 000000000..b3051b581
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/dist-node/index.js
@@ -0,0 +1,438 @@
+// pkg/dist-src/index.js
+import { getUserAgent } from "universal-user-agent";
+import { request as defaultRequest } from "@octokit/request";
+import { createOAuthAppAuth } from "@octokit/auth-oauth-app";
+
+// pkg/dist-src/get-app-authentication.js
+import githubAppJwt from "universal-github-app-jwt";
+async function getAppAuthentication({
+ appId,
+ privateKey,
+ timeDifference
+}) {
+ try {
+ const appAuthentication = await githubAppJwt({
+ id: appId,
+ privateKey,
+ now: timeDifference && Math.floor(Date.now() / 1e3) + timeDifference
+ });
+ return {
+ type: "app",
+ token: appAuthentication.token,
+ appId: appAuthentication.appId,
+ expiresAt: new Date(appAuthentication.expiration * 1e3).toISOString()
+ };
+ } catch (error) {
+ if (privateKey === "-----BEGIN RSA PRIVATE KEY-----") {
+ throw new Error(
+ "The 'privateKey` option contains only the first line '-----BEGIN RSA PRIVATE KEY-----'. If you are setting it using a `.env` file, make sure it is set on a single line with newlines replaced by '\n'"
+ );
+ } else {
+ throw error;
+ }
+ }
+}
+
+// pkg/dist-src/cache.js
+import { LRUCache } from "lru-cache";
+function getCache() {
+ return new LRUCache({
+ // cache max. 15000 tokens, that will use less than 10mb memory
+ max: 15e3,
+ // Cache for 1 minute less than GitHub expiry
+ ttl: 1e3 * 60 * 59
+ });
+}
+async function get(cache, options) {
+ const cacheKey = optionsToCacheKey(options);
+ const result = await cache.get(cacheKey);
+ if (!result) {
+ return;
+ }
+ const [
+ token,
+ createdAt,
+ expiresAt,
+ repositorySelection,
+ permissionsString,
+ singleFileName
+ ] = result.split("|");
+ const permissions = options.permissions || permissionsString.split(/,/).reduce((permissions2, string) => {
+ if (/!$/.test(string)) {
+ permissions2[string.slice(0, -1)] = "write";
+ } else {
+ permissions2[string] = "read";
+ }
+ return permissions2;
+ }, {});
+ return {
+ token,
+ createdAt,
+ expiresAt,
+ permissions,
+ repositoryIds: options.repositoryIds,
+ repositoryNames: options.repositoryNames,
+ singleFileName,
+ repositorySelection
+ };
+}
+async function set(cache, options, data) {
+ const key = optionsToCacheKey(options);
+ const permissionsString = options.permissions ? "" : Object.keys(data.permissions).map(
+ (name) => `${name}${data.permissions[name] === "write" ? "!" : ""}`
+ ).join(",");
+ const value = [
+ data.token,
+ data.createdAt,
+ data.expiresAt,
+ data.repositorySelection,
+ permissionsString,
+ data.singleFileName
+ ].join("|");
+ await cache.set(key, value);
+}
+function optionsToCacheKey({
+ installationId,
+ permissions = {},
+ repositoryIds = [],
+ repositoryNames = []
+}) {
+ const permissionsString = Object.keys(permissions).sort().map((name) => permissions[name] === "read" ? name : `${name}!`).join(",");
+ const repositoryIdsString = repositoryIds.sort().join(",");
+ const repositoryNamesString = repositoryNames.join(",");
+ return [
+ installationId,
+ repositoryIdsString,
+ repositoryNamesString,
+ permissionsString
+ ].filter(Boolean).join("|");
+}
+
+// pkg/dist-src/to-token-authentication.js
+function toTokenAuthentication({
+ installationId,
+ token,
+ createdAt,
+ expiresAt,
+ repositorySelection,
+ permissions,
+ repositoryIds,
+ repositoryNames,
+ singleFileName
+}) {
+ return Object.assign(
+ {
+ type: "token",
+ tokenType: "installation",
+ token,
+ installationId,
+ permissions,
+ createdAt,
+ expiresAt,
+ repositorySelection
+ },
+ repositoryIds ? { repositoryIds } : null,
+ repositoryNames ? { repositoryNames } : null,
+ singleFileName ? { singleFileName } : null
+ );
+}
+
+// pkg/dist-src/get-installation-authentication.js
+async function getInstallationAuthentication(state, options, customRequest) {
+ const installationId = Number(options.installationId || state.installationId);
+ if (!installationId) {
+ throw new Error(
+ "[@octokit/auth-app] installationId option is required for installation authentication."
+ );
+ }
+ if (options.factory) {
+ const { type, factory, oauthApp, ...factoryAuthOptions } = {
+ ...state,
+ ...options
+ };
+ return factory(factoryAuthOptions);
+ }
+ const optionsWithInstallationTokenFromState = Object.assign(
+ { installationId },
+ options
+ );
+ if (!options.refresh) {
+ const result = await get(
+ state.cache,
+ optionsWithInstallationTokenFromState
+ );
+ if (result) {
+ const {
+ token: token2,
+ createdAt: createdAt2,
+ expiresAt: expiresAt2,
+ permissions: permissions2,
+ repositoryIds: repositoryIds2,
+ repositoryNames: repositoryNames2,
+ singleFileName: singleFileName2,
+ repositorySelection: repositorySelection2
+ } = result;
+ return toTokenAuthentication({
+ installationId,
+ token: token2,
+ createdAt: createdAt2,
+ expiresAt: expiresAt2,
+ permissions: permissions2,
+ repositorySelection: repositorySelection2,
+ repositoryIds: repositoryIds2,
+ repositoryNames: repositoryNames2,
+ singleFileName: singleFileName2
+ });
+ }
+ }
+ const appAuthentication = await getAppAuthentication(state);
+ const request = customRequest || state.request;
+ const {
+ data: {
+ token,
+ expires_at: expiresAt,
+ repositories,
+ permissions: permissionsOptional,
+ repository_selection: repositorySelectionOptional,
+ single_file: singleFileName
+ }
+ } = await request("POST /app/installations/{installation_id}/access_tokens", {
+ installation_id: installationId,
+ repository_ids: options.repositoryIds,
+ repositories: options.repositoryNames,
+ permissions: options.permissions,
+ mediaType: {
+ previews: ["machine-man"]
+ },
+ headers: {
+ authorization: `bearer ${appAuthentication.token}`
+ }
+ });
+ const permissions = permissionsOptional || {};
+ const repositorySelection = repositorySelectionOptional || "all";
+ const repositoryIds = repositories ? repositories.map((r) => r.id) : void 0;
+ const repositoryNames = repositories ? repositories.map((repo) => repo.name) : void 0;
+ const createdAt = (/* @__PURE__ */ new Date()).toISOString();
+ await set(state.cache, optionsWithInstallationTokenFromState, {
+ token,
+ createdAt,
+ expiresAt,
+ repositorySelection,
+ permissions,
+ repositoryIds,
+ repositoryNames,
+ singleFileName
+ });
+ return toTokenAuthentication({
+ installationId,
+ token,
+ createdAt,
+ expiresAt,
+ repositorySelection,
+ permissions,
+ repositoryIds,
+ repositoryNames,
+ singleFileName
+ });
+}
+
+// pkg/dist-src/auth.js
+async function auth(state, authOptions) {
+ switch (authOptions.type) {
+ case "app":
+ return getAppAuthentication(state);
+ case "oauth-app":
+ return state.oauthApp({ type: "oauth-app" });
+ case "installation":
+ authOptions;
+ return getInstallationAuthentication(state, {
+ ...authOptions,
+ type: "installation"
+ });
+ case "oauth-user":
+ return state.oauthApp(authOptions);
+ default:
+ throw new Error(`Invalid auth type: ${authOptions.type}`);
+ }
+}
+
+// pkg/dist-src/hook.js
+import { requiresBasicAuth } from "@octokit/auth-oauth-user";
+import { RequestError } from "@octokit/request-error";
+
+// pkg/dist-src/requires-app-auth.js
+var PATHS = [
+ "/app",
+ "/app/hook/config",
+ "/app/hook/deliveries",
+ "/app/hook/deliveries/{delivery_id}",
+ "/app/hook/deliveries/{delivery_id}/attempts",
+ "/app/installations",
+ "/app/installations/{installation_id}",
+ "/app/installations/{installation_id}/access_tokens",
+ "/app/installations/{installation_id}/suspended",
+ "/app/installation-requests",
+ "/marketplace_listing/accounts/{account_id}",
+ "/marketplace_listing/plan",
+ "/marketplace_listing/plans",
+ "/marketplace_listing/plans/{plan_id}/accounts",
+ "/marketplace_listing/stubbed/accounts/{account_id}",
+ "/marketplace_listing/stubbed/plan",
+ "/marketplace_listing/stubbed/plans",
+ "/marketplace_listing/stubbed/plans/{plan_id}/accounts",
+ "/orgs/{org}/installation",
+ "/repos/{owner}/{repo}/installation",
+ "/users/{username}/installation"
+];
+function routeMatcher(paths) {
+ const regexes = paths.map(
+ (p) => p.split("/").map((c) => c.startsWith("{") ? "(?:.+?)" : c).join("/")
+ );
+ const regex = `^(?:${regexes.map((r) => `(?:${r})`).join("|")})$`;
+ return new RegExp(regex, "i");
+}
+var REGEX = routeMatcher(PATHS);
+function requiresAppAuth(url) {
+ return !!url && REGEX.test(url.split("?")[0]);
+}
+
+// pkg/dist-src/hook.js
+var FIVE_SECONDS_IN_MS = 5 * 1e3;
+function isNotTimeSkewError(error) {
+ return !(error.message.match(
+ /'Expiration time' claim \('exp'\) must be a numeric value representing the future time at which the assertion expires/
+ ) || error.message.match(
+ /'Issued at' claim \('iat'\) must be an Integer representing the time that the assertion was issued/
+ ));
+}
+async function hook(state, request, route, parameters) {
+ const endpoint = request.endpoint.merge(route, parameters);
+ const url = endpoint.url;
+ if (/\/login\/oauth\/access_token$/.test(url)) {
+ return request(endpoint);
+ }
+ if (requiresAppAuth(url.replace(request.endpoint.DEFAULTS.baseUrl, ""))) {
+ const { token: token2 } = await getAppAuthentication(state);
+ endpoint.headers.authorization = `bearer ${token2}`;
+ let response;
+ try {
+ response = await request(endpoint);
+ } catch (error) {
+ if (isNotTimeSkewError(error)) {
+ throw error;
+ }
+ if (typeof error.response.headers.date === "undefined") {
+ throw error;
+ }
+ const diff = Math.floor(
+ (Date.parse(error.response.headers.date) - Date.parse((/* @__PURE__ */ new Date()).toString())) / 1e3
+ );
+ state.log.warn(error.message);
+ state.log.warn(
+ `[@octokit/auth-app] GitHub API time and system time are different by ${diff} seconds. Retrying request with the difference accounted for.`
+ );
+ const { token: token3 } = await getAppAuthentication({
+ ...state,
+ timeDifference: diff
+ });
+ endpoint.headers.authorization = `bearer ${token3}`;
+ return request(endpoint);
+ }
+ return response;
+ }
+ if (requiresBasicAuth(url)) {
+ const authentication = await state.oauthApp({ type: "oauth-app" });
+ endpoint.headers.authorization = authentication.headers.authorization;
+ return request(endpoint);
+ }
+ const { token, createdAt } = await getInstallationAuthentication(
+ state,
+ // @ts-expect-error TBD
+ {},
+ request.defaults({ baseUrl: endpoint.baseUrl })
+ );
+ endpoint.headers.authorization = `token ${token}`;
+ return sendRequestWithRetries(
+ state,
+ request,
+ endpoint,
+ createdAt
+ );
+}
+async function sendRequestWithRetries(state, request, options, createdAt, retries = 0) {
+ const timeSinceTokenCreationInMs = +/* @__PURE__ */ new Date() - +new Date(createdAt);
+ try {
+ return await request(options);
+ } catch (error) {
+ if (error.status !== 401) {
+ throw error;
+ }
+ if (timeSinceTokenCreationInMs >= FIVE_SECONDS_IN_MS) {
+ if (retries > 0) {
+ error.message = `After ${retries} retries within ${timeSinceTokenCreationInMs / 1e3}s of creating the installation access token, the response remains 401. At this point, the cause may be an authentication problem or a system outage. Please check https://www.githubstatus.com for status information`;
+ }
+ throw error;
+ }
+ ++retries;
+ const awaitTime = retries * 1e3;
+ state.log.warn(
+ `[@octokit/auth-app] Retrying after 401 response to account for token replication delay (retry: ${retries}, wait: ${awaitTime / 1e3}s)`
+ );
+ await new Promise((resolve) => setTimeout(resolve, awaitTime));
+ return sendRequestWithRetries(state, request, options, createdAt, retries);
+ }
+}
+
+// pkg/dist-src/version.js
+var VERSION = "7.1.1";
+
+// pkg/dist-src/index.js
+import { createOAuthUserAuth } from "@octokit/auth-oauth-user";
+function createAppAuth(options) {
+ if (!options.appId) {
+ throw new Error("[@octokit/auth-app] appId option is required");
+ }
+ if (!options.privateKey) {
+ throw new Error("[@octokit/auth-app] privateKey option is required");
+ }
+ if ("installationId" in options && !options.installationId) {
+ throw new Error(
+ "[@octokit/auth-app] installationId is set to a falsy value"
+ );
+ }
+ const log = Object.assign(
+ {
+ warn: console.warn.bind(console)
+ },
+ options.log
+ );
+ const request = options.request || defaultRequest.defaults({
+ headers: {
+ "user-agent": `octokit-auth-app.js/${VERSION} ${getUserAgent()}`
+ }
+ });
+ const state = Object.assign(
+ {
+ request,
+ cache: getCache()
+ },
+ options,
+ options.installationId ? { installationId: Number(options.installationId) } : {},
+ {
+ log,
+ oauthApp: createOAuthAppAuth({
+ clientType: "github-app",
+ clientId: options.clientId || "",
+ clientSecret: options.clientSecret || "",
+ request
+ })
+ }
+ );
+ return Object.assign(auth.bind(null, state), {
+ hook: hook.bind(null, state)
+ });
+}
+export {
+ createAppAuth,
+ createOAuthUserAuth
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-app/dist-node/index.js.map b/.github/octokit/node_modules/@octokit/auth-app/dist-node/index.js.map
new file mode 100644
index 000000000..e2d0263fa
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/dist-node/index.js.map
@@ -0,0 +1,7 @@
+{
+ "version": 3,
+ "sources": ["../dist-src/index.js", "../dist-src/get-app-authentication.js", "../dist-src/cache.js", "../dist-src/to-token-authentication.js", "../dist-src/get-installation-authentication.js", "../dist-src/auth.js", "../dist-src/hook.js", "../dist-src/requires-app-auth.js", "../dist-src/version.js"],
+ "sourcesContent": ["import { getUserAgent } from \"universal-user-agent\";\nimport { request as defaultRequest } from \"@octokit/request\";\nimport { createOAuthAppAuth } from \"@octokit/auth-oauth-app\";\nimport { auth } from \"./auth.js\";\nimport { hook } from \"./hook.js\";\nimport { getCache } from \"./cache.js\";\nimport { VERSION } from \"./version.js\";\nimport { createOAuthUserAuth } from \"@octokit/auth-oauth-user\";\nfunction createAppAuth(options) {\n if (!options.appId) {\n throw new Error(\"[@octokit/auth-app] appId option is required\");\n }\n if (!options.privateKey) {\n throw new Error(\"[@octokit/auth-app] privateKey option is required\");\n }\n if (\"installationId\" in options && !options.installationId) {\n throw new Error(\n \"[@octokit/auth-app] installationId is set to a falsy value\"\n );\n }\n const log = Object.assign(\n {\n warn: console.warn.bind(console)\n },\n options.log\n );\n const request = options.request || defaultRequest.defaults({\n headers: {\n \"user-agent\": `octokit-auth-app.js/${VERSION} ${getUserAgent()}`\n }\n });\n const state = Object.assign(\n {\n request,\n cache: getCache()\n },\n options,\n options.installationId ? { installationId: Number(options.installationId) } : {},\n {\n log,\n oauthApp: createOAuthAppAuth({\n clientType: \"github-app\",\n clientId: options.clientId || \"\",\n clientSecret: options.clientSecret || \"\",\n request\n })\n }\n );\n return Object.assign(auth.bind(null, state), {\n hook: hook.bind(null, state)\n });\n}\nexport {\n createAppAuth,\n createOAuthUserAuth\n};\n", "import githubAppJwt from \"universal-github-app-jwt\";\nasync function getAppAuthentication({\n appId,\n privateKey,\n timeDifference\n}) {\n try {\n const appAuthentication = await githubAppJwt({\n id: appId,\n privateKey,\n now: timeDifference && Math.floor(Date.now() / 1e3) + timeDifference\n });\n return {\n type: \"app\",\n token: appAuthentication.token,\n appId: appAuthentication.appId,\n expiresAt: new Date(appAuthentication.expiration * 1e3).toISOString()\n };\n } catch (error) {\n if (privateKey === \"-----BEGIN RSA PRIVATE KEY-----\") {\n throw new Error(\n \"The 'privateKey` option contains only the first line '-----BEGIN RSA PRIVATE KEY-----'. If you are setting it using a `.env` file, make sure it is set on a single line with newlines replaced by '\\n'\"\n );\n } else {\n throw error;\n }\n }\n}\nexport {\n getAppAuthentication\n};\n", "import { LRUCache } from \"lru-cache\";\nfunction getCache() {\n return new LRUCache({\n // cache max. 15000 tokens, that will use less than 10mb memory\n max: 15e3,\n // Cache for 1 minute less than GitHub expiry\n ttl: 1e3 * 60 * 59\n });\n}\nasync function get(cache, options) {\n const cacheKey = optionsToCacheKey(options);\n const result = await cache.get(cacheKey);\n if (!result) {\n return;\n }\n const [\n token,\n createdAt,\n expiresAt,\n repositorySelection,\n permissionsString,\n singleFileName\n ] = result.split(\"|\");\n const permissions = options.permissions || permissionsString.split(/,/).reduce((permissions2, string) => {\n if (/!$/.test(string)) {\n permissions2[string.slice(0, -1)] = \"write\";\n } else {\n permissions2[string] = \"read\";\n }\n return permissions2;\n }, {});\n return {\n token,\n createdAt,\n expiresAt,\n permissions,\n repositoryIds: options.repositoryIds,\n repositoryNames: options.repositoryNames,\n singleFileName,\n repositorySelection\n };\n}\nasync function set(cache, options, data) {\n const key = optionsToCacheKey(options);\n const permissionsString = options.permissions ? \"\" : Object.keys(data.permissions).map(\n (name) => `${name}${data.permissions[name] === \"write\" ? \"!\" : \"\"}`\n ).join(\",\");\n const value = [\n data.token,\n data.createdAt,\n data.expiresAt,\n data.repositorySelection,\n permissionsString,\n data.singleFileName\n ].join(\"|\");\n await cache.set(key, value);\n}\nfunction optionsToCacheKey({\n installationId,\n permissions = {},\n repositoryIds = [],\n repositoryNames = []\n}) {\n const permissionsString = Object.keys(permissions).sort().map((name) => permissions[name] === \"read\" ? name : `${name}!`).join(\",\");\n const repositoryIdsString = repositoryIds.sort().join(\",\");\n const repositoryNamesString = repositoryNames.join(\",\");\n return [\n installationId,\n repositoryIdsString,\n repositoryNamesString,\n permissionsString\n ].filter(Boolean).join(\"|\");\n}\nexport {\n get,\n getCache,\n set\n};\n", "function toTokenAuthentication({\n installationId,\n token,\n createdAt,\n expiresAt,\n repositorySelection,\n permissions,\n repositoryIds,\n repositoryNames,\n singleFileName\n}) {\n return Object.assign(\n {\n type: \"token\",\n tokenType: \"installation\",\n token,\n installationId,\n permissions,\n createdAt,\n expiresAt,\n repositorySelection\n },\n repositoryIds ? { repositoryIds } : null,\n repositoryNames ? { repositoryNames } : null,\n singleFileName ? { singleFileName } : null\n );\n}\nexport {\n toTokenAuthentication\n};\n", "import { get, set } from \"./cache.js\";\nimport { getAppAuthentication } from \"./get-app-authentication.js\";\nimport { toTokenAuthentication } from \"./to-token-authentication.js\";\nasync function getInstallationAuthentication(state, options, customRequest) {\n const installationId = Number(options.installationId || state.installationId);\n if (!installationId) {\n throw new Error(\n \"[@octokit/auth-app] installationId option is required for installation authentication.\"\n );\n }\n if (options.factory) {\n const { type, factory, oauthApp, ...factoryAuthOptions } = {\n ...state,\n ...options\n };\n return factory(factoryAuthOptions);\n }\n const optionsWithInstallationTokenFromState = Object.assign(\n { installationId },\n options\n );\n if (!options.refresh) {\n const result = await get(\n state.cache,\n optionsWithInstallationTokenFromState\n );\n if (result) {\n const {\n token: token2,\n createdAt: createdAt2,\n expiresAt: expiresAt2,\n permissions: permissions2,\n repositoryIds: repositoryIds2,\n repositoryNames: repositoryNames2,\n singleFileName: singleFileName2,\n repositorySelection: repositorySelection2\n } = result;\n return toTokenAuthentication({\n installationId,\n token: token2,\n createdAt: createdAt2,\n expiresAt: expiresAt2,\n permissions: permissions2,\n repositorySelection: repositorySelection2,\n repositoryIds: repositoryIds2,\n repositoryNames: repositoryNames2,\n singleFileName: singleFileName2\n });\n }\n }\n const appAuthentication = await getAppAuthentication(state);\n const request = customRequest || state.request;\n const {\n data: {\n token,\n expires_at: expiresAt,\n repositories,\n permissions: permissionsOptional,\n repository_selection: repositorySelectionOptional,\n single_file: singleFileName\n }\n } = await request(\"POST /app/installations/{installation_id}/access_tokens\", {\n installation_id: installationId,\n repository_ids: options.repositoryIds,\n repositories: options.repositoryNames,\n permissions: options.permissions,\n mediaType: {\n previews: [\"machine-man\"]\n },\n headers: {\n authorization: `bearer ${appAuthentication.token}`\n }\n });\n const permissions = permissionsOptional || {};\n const repositorySelection = repositorySelectionOptional || \"all\";\n const repositoryIds = repositories ? repositories.map((r) => r.id) : void 0;\n const repositoryNames = repositories ? repositories.map((repo) => repo.name) : void 0;\n const createdAt = (/* @__PURE__ */ new Date()).toISOString();\n await set(state.cache, optionsWithInstallationTokenFromState, {\n token,\n createdAt,\n expiresAt,\n repositorySelection,\n permissions,\n repositoryIds,\n repositoryNames,\n singleFileName\n });\n return toTokenAuthentication({\n installationId,\n token,\n createdAt,\n expiresAt,\n repositorySelection,\n permissions,\n repositoryIds,\n repositoryNames,\n singleFileName\n });\n}\nexport {\n getInstallationAuthentication\n};\n", "import { getAppAuthentication } from \"./get-app-authentication.js\";\nimport { getInstallationAuthentication } from \"./get-installation-authentication.js\";\nasync function auth(state, authOptions) {\n switch (authOptions.type) {\n case \"app\":\n return getAppAuthentication(state);\n case \"oauth-app\":\n return state.oauthApp({ type: \"oauth-app\" });\n case \"installation\":\n authOptions;\n return getInstallationAuthentication(state, {\n ...authOptions,\n type: \"installation\"\n });\n case \"oauth-user\":\n return state.oauthApp(authOptions);\n default:\n throw new Error(`Invalid auth type: ${authOptions.type}`);\n }\n}\nexport {\n auth\n};\n", "import { requiresBasicAuth } from \"@octokit/auth-oauth-user\";\nimport { RequestError } from \"@octokit/request-error\";\nimport { getAppAuthentication } from \"./get-app-authentication.js\";\nimport { getInstallationAuthentication } from \"./get-installation-authentication.js\";\nimport { requiresAppAuth } from \"./requires-app-auth.js\";\nconst FIVE_SECONDS_IN_MS = 5 * 1e3;\nfunction isNotTimeSkewError(error) {\n return !(error.message.match(\n /'Expiration time' claim \\('exp'\\) must be a numeric value representing the future time at which the assertion expires/\n ) || error.message.match(\n /'Issued at' claim \\('iat'\\) must be an Integer representing the time that the assertion was issued/\n ));\n}\nasync function hook(state, request, route, parameters) {\n const endpoint = request.endpoint.merge(route, parameters);\n const url = endpoint.url;\n if (/\\/login\\/oauth\\/access_token$/.test(url)) {\n return request(endpoint);\n }\n if (requiresAppAuth(url.replace(request.endpoint.DEFAULTS.baseUrl, \"\"))) {\n const { token: token2 } = await getAppAuthentication(state);\n endpoint.headers.authorization = `bearer ${token2}`;\n let response;\n try {\n response = await request(endpoint);\n } catch (error) {\n if (isNotTimeSkewError(error)) {\n throw error;\n }\n if (typeof error.response.headers.date === \"undefined\") {\n throw error;\n }\n const diff = Math.floor(\n (Date.parse(error.response.headers.date) - Date.parse((/* @__PURE__ */ new Date()).toString())) / 1e3\n );\n state.log.warn(error.message);\n state.log.warn(\n `[@octokit/auth-app] GitHub API time and system time are different by ${diff} seconds. Retrying request with the difference accounted for.`\n );\n const { token: token3 } = await getAppAuthentication({\n ...state,\n timeDifference: diff\n });\n endpoint.headers.authorization = `bearer ${token3}`;\n return request(endpoint);\n }\n return response;\n }\n if (requiresBasicAuth(url)) {\n const authentication = await state.oauthApp({ type: \"oauth-app\" });\n endpoint.headers.authorization = authentication.headers.authorization;\n return request(endpoint);\n }\n const { token, createdAt } = await getInstallationAuthentication(\n state,\n // @ts-expect-error TBD\n {},\n request.defaults({ baseUrl: endpoint.baseUrl })\n );\n endpoint.headers.authorization = `token ${token}`;\n return sendRequestWithRetries(\n state,\n request,\n endpoint,\n createdAt\n );\n}\nasync function sendRequestWithRetries(state, request, options, createdAt, retries = 0) {\n const timeSinceTokenCreationInMs = +/* @__PURE__ */ new Date() - +new Date(createdAt);\n try {\n return await request(options);\n } catch (error) {\n if (error.status !== 401) {\n throw error;\n }\n if (timeSinceTokenCreationInMs >= FIVE_SECONDS_IN_MS) {\n if (retries > 0) {\n error.message = `After ${retries} retries within ${timeSinceTokenCreationInMs / 1e3}s of creating the installation access token, the response remains 401. At this point, the cause may be an authentication problem or a system outage. Please check https://www.githubstatus.com for status information`;\n }\n throw error;\n }\n ++retries;\n const awaitTime = retries * 1e3;\n state.log.warn(\n `[@octokit/auth-app] Retrying after 401 response to account for token replication delay (retry: ${retries}, wait: ${awaitTime / 1e3}s)`\n );\n await new Promise((resolve) => setTimeout(resolve, awaitTime));\n return sendRequestWithRetries(state, request, options, createdAt, retries);\n }\n}\nexport {\n hook\n};\n", "const PATHS = [\n \"/app\",\n \"/app/hook/config\",\n \"/app/hook/deliveries\",\n \"/app/hook/deliveries/{delivery_id}\",\n \"/app/hook/deliveries/{delivery_id}/attempts\",\n \"/app/installations\",\n \"/app/installations/{installation_id}\",\n \"/app/installations/{installation_id}/access_tokens\",\n \"/app/installations/{installation_id}/suspended\",\n \"/app/installation-requests\",\n \"/marketplace_listing/accounts/{account_id}\",\n \"/marketplace_listing/plan\",\n \"/marketplace_listing/plans\",\n \"/marketplace_listing/plans/{plan_id}/accounts\",\n \"/marketplace_listing/stubbed/accounts/{account_id}\",\n \"/marketplace_listing/stubbed/plan\",\n \"/marketplace_listing/stubbed/plans\",\n \"/marketplace_listing/stubbed/plans/{plan_id}/accounts\",\n \"/orgs/{org}/installation\",\n \"/repos/{owner}/{repo}/installation\",\n \"/users/{username}/installation\"\n];\nfunction routeMatcher(paths) {\n const regexes = paths.map(\n (p) => p.split(\"/\").map((c) => c.startsWith(\"{\") ? \"(?:.+?)\" : c).join(\"/\")\n );\n const regex = `^(?:${regexes.map((r) => `(?:${r})`).join(\"|\")})$`;\n return new RegExp(regex, \"i\");\n}\nconst REGEX = routeMatcher(PATHS);\nfunction requiresAppAuth(url) {\n return !!url && REGEX.test(url.split(\"?\")[0]);\n}\nexport {\n requiresAppAuth\n};\n", "const VERSION = \"7.1.1\";\nexport {\n VERSION\n};\n"],
+ "mappings": ";AAAA,SAAS,oBAAoB;AAC7B,SAAS,WAAW,sBAAsB;AAC1C,SAAS,0BAA0B;;;ACFnC,OAAO,kBAAkB;AACzB,eAAe,qBAAqB;AAAA,EAClC;AAAA,EACA;AAAA,EACA;AACF,GAAG;AACD,MAAI;AACF,UAAM,oBAAoB,MAAM,aAAa;AAAA,MAC3C,IAAI;AAAA,MACJ;AAAA,MACA,KAAK,kBAAkB,KAAK,MAAM,KAAK,IAAI,IAAI,GAAG,IAAI;AAAA,IACxD,CAAC;AACD,WAAO;AAAA,MACL,MAAM;AAAA,MACN,OAAO,kBAAkB;AAAA,MACzB,OAAO,kBAAkB;AAAA,MACzB,WAAW,IAAI,KAAK,kBAAkB,aAAa,GAAG,EAAE,YAAY;AAAA,IACtE;AAAA,EACF,SAAS,OAAO;AACd,QAAI,eAAe,mCAAmC;AACpD,YAAM,IAAI;AAAA,QACR;AAAA,MACF;AAAA,IACF,OAAO;AACL,YAAM;AAAA,IACR;AAAA,EACF;AACF;;;AC3BA,SAAS,gBAAgB;AACzB,SAAS,WAAW;AAClB,SAAO,IAAI,SAAS;AAAA;AAAA,IAElB,KAAK;AAAA;AAAA,IAEL,KAAK,MAAM,KAAK;AAAA,EAClB,CAAC;AACH;AACA,eAAe,IAAI,OAAO,SAAS;AACjC,QAAM,WAAW,kBAAkB,OAAO;AAC1C,QAAM,SAAS,MAAM,MAAM,IAAI,QAAQ;AACvC,MAAI,CAAC,QAAQ;AACX;AAAA,EACF;AACA,QAAM;AAAA,IACJ;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,EACF,IAAI,OAAO,MAAM,GAAG;AACpB,QAAM,cAAc,QAAQ,eAAe,kBAAkB,MAAM,GAAG,EAAE,OAAO,CAAC,cAAc,WAAW;AACvG,QAAI,KAAK,KAAK,MAAM,GAAG;AACrB,mBAAa,OAAO,MAAM,GAAG,EAAE,CAAC,IAAI;AAAA,IACtC,OAAO;AACL,mBAAa,MAAM,IAAI;AAAA,IACzB;AACA,WAAO;AAAA,EACT,GAAG,CAAC,CAAC;AACL,SAAO;AAAA,IACL;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA,eAAe,QAAQ;AAAA,IACvB,iBAAiB,QAAQ;AAAA,IACzB;AAAA,IACA;AAAA,EACF;AACF;AACA,eAAe,IAAI,OAAO,SAAS,MAAM;AACvC,QAAM,MAAM,kBAAkB,OAAO;AACrC,QAAM,oBAAoB,QAAQ,cAAc,KAAK,OAAO,KAAK,KAAK,WAAW,EAAE;AAAA,IACjF,CAAC,SAAS,GAAG,IAAI,GAAG,KAAK,YAAY,IAAI,MAAM,UAAU,MAAM,EAAE;AAAA,EACnE,EAAE,KAAK,GAAG;AACV,QAAM,QAAQ;AAAA,IACZ,KAAK;AAAA,IACL,KAAK;AAAA,IACL,KAAK;AAAA,IACL,KAAK;AAAA,IACL;AAAA,IACA,KAAK;AAAA,EACP,EAAE,KAAK,GAAG;AACV,QAAM,MAAM,IAAI,KAAK,KAAK;AAC5B;AACA,SAAS,kBAAkB;AAAA,EACzB;AAAA,EACA,cAAc,CAAC;AAAA,EACf,gBAAgB,CAAC;AAAA,EACjB,kBAAkB,CAAC;AACrB,GAAG;AACD,QAAM,oBAAoB,OAAO,KAAK,WAAW,EAAE,KAAK,EAAE,IAAI,CAAC,SAAS,YAAY,IAAI,MAAM,SAAS,OAAO,GAAG,IAAI,GAAG,EAAE,KAAK,GAAG;AAClI,QAAM,sBAAsB,cAAc,KAAK,EAAE,KAAK,GAAG;AACzD,QAAM,wBAAwB,gBAAgB,KAAK,GAAG;AACtD,SAAO;AAAA,IACL;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,EACF,EAAE,OAAO,OAAO,EAAE,KAAK,GAAG;AAC5B;;;ACxEA,SAAS,sBAAsB;AAAA,EAC7B;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,GAAG;AACD,SAAO,OAAO;AAAA,IACZ;AAAA,MACE,MAAM;AAAA,MACN,WAAW;AAAA,MACX;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,IACF;AAAA,IACA,gBAAgB,EAAE,cAAc,IAAI;AAAA,IACpC,kBAAkB,EAAE,gBAAgB,IAAI;AAAA,IACxC,iBAAiB,EAAE,eAAe,IAAI;AAAA,EACxC;AACF;;;ACvBA,eAAe,8BAA8B,OAAO,SAAS,eAAe;AAC1E,QAAM,iBAAiB,OAAO,QAAQ,kBAAkB,MAAM,cAAc;AAC5E,MAAI,CAAC,gBAAgB;AACnB,UAAM,IAAI;AAAA,MACR;AAAA,IACF;AAAA,EACF;AACA,MAAI,QAAQ,SAAS;AACnB,UAAM,EAAE,MAAM,SAAS,UAAU,GAAG,mBAAmB,IAAI;AAAA,MACzD,GAAG;AAAA,MACH,GAAG;AAAA,IACL;AACA,WAAO,QAAQ,kBAAkB;AAAA,EACnC;AACA,QAAM,wCAAwC,OAAO;AAAA,IACnD,EAAE,eAAe;AAAA,IACjB;AAAA,EACF;AACA,MAAI,CAAC,QAAQ,SAAS;AACpB,UAAM,SAAS,MAAM;AAAA,MACnB,MAAM;AAAA,MACN;AAAA,IACF;AACA,QAAI,QAAQ;AACV,YAAM;AAAA,QACJ,OAAO;AAAA,QACP,WAAW;AAAA,QACX,WAAW;AAAA,QACX,aAAa;AAAA,QACb,eAAe;AAAA,QACf,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,QAChB,qBAAqB;AAAA,MACvB,IAAI;AACJ,aAAO,sBAAsB;AAAA,QAC3B;AAAA,QACA,OAAO;AAAA,QACP,WAAW;AAAA,QACX,WAAW;AAAA,QACX,aAAa;AAAA,QACb,qBAAqB;AAAA,QACrB,eAAe;AAAA,QACf,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB,CAAC;AAAA,IACH;AAAA,EACF;AACA,QAAM,oBAAoB,MAAM,qBAAqB,KAAK;AAC1D,QAAM,UAAU,iBAAiB,MAAM;AACvC,QAAM;AAAA,IACJ,MAAM;AAAA,MACJ;AAAA,MACA,YAAY;AAAA,MACZ;AAAA,MACA,aAAa;AAAA,MACb,sBAAsB;AAAA,MACtB,aAAa;AAAA,IACf;AAAA,EACF,IAAI,MAAM,QAAQ,2DAA2D;AAAA,IAC3E,iBAAiB;AAAA,IACjB,gBAAgB,QAAQ;AAAA,IACxB,cAAc,QAAQ;AAAA,IACtB,aAAa,QAAQ;AAAA,IACrB,WAAW;AAAA,MACT,UAAU,CAAC,aAAa;AAAA,IAC1B;AAAA,IACA,SAAS;AAAA,MACP,eAAe,UAAU,kBAAkB,KAAK;AAAA,IAClD;AAAA,EACF,CAAC;AACD,QAAM,cAAc,uBAAuB,CAAC;AAC5C,QAAM,sBAAsB,+BAA+B;AAC3D,QAAM,gBAAgB,eAAe,aAAa,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI;AACrE,QAAM,kBAAkB,eAAe,aAAa,IAAI,CAAC,SAAS,KAAK,IAAI,IAAI;AAC/E,QAAM,aAA6B,oBAAI,KAAK,GAAG,YAAY;AAC3D,QAAM,IAAI,MAAM,OAAO,uCAAuC;AAAA,IAC5D;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,EACF,CAAC;AACD,SAAO,sBAAsB;AAAA,IAC3B;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,EACF,CAAC;AACH;;;ACjGA,eAAe,KAAK,OAAO,aAAa;AACtC,UAAQ,YAAY,MAAM;AAAA,IACxB,KAAK;AACH,aAAO,qBAAqB,KAAK;AAAA,IACnC,KAAK;AACH,aAAO,MAAM,SAAS,EAAE,MAAM,YAAY,CAAC;AAAA,IAC7C,KAAK;AACH;AACA,aAAO,8BAA8B,OAAO;AAAA,QAC1C,GAAG;AAAA,QACH,MAAM;AAAA,MACR,CAAC;AAAA,IACH,KAAK;AACH,aAAO,MAAM,SAAS,WAAW;AAAA,IACnC;AACE,YAAM,IAAI,MAAM,sBAAsB,YAAY,IAAI,EAAE;AAAA,EAC5D;AACF;;;ACnBA,SAAS,yBAAyB;AAClC,SAAS,oBAAoB;;;ACD7B,IAAM,QAAQ;AAAA,EACZ;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;AACA,SAAS,aAAa,OAAO;AAC3B,QAAM,UAAU,MAAM;AAAA,IACpB,CAAC,MAAM,EAAE,MAAM,GAAG,EAAE,IAAI,CAAC,MAAM,EAAE,WAAW,GAAG,IAAI,YAAY,CAAC,EAAE,KAAK,GAAG;AAAA,EAC5E;AACA,QAAM,QAAQ,OAAO,QAAQ,IAAI,CAAC,MAAM,MAAM,CAAC,GAAG,EAAE,KAAK,GAAG,CAAC;AAC7D,SAAO,IAAI,OAAO,OAAO,GAAG;AAC9B;AACA,IAAM,QAAQ,aAAa,KAAK;AAChC,SAAS,gBAAgB,KAAK;AAC5B,SAAO,CAAC,CAAC,OAAO,MAAM,KAAK,IAAI,MAAM,GAAG,EAAE,CAAC,CAAC;AAC9C;;;AD5BA,IAAM,qBAAqB,IAAI;AAC/B,SAAS,mBAAmB,OAAO;AACjC,SAAO,EAAE,MAAM,QAAQ;AAAA,IACrB;AAAA,EACF,KAAK,MAAM,QAAQ;AAAA,IACjB;AAAA,EACF;AACF;AACA,eAAe,KAAK,OAAO,SAAS,OAAO,YAAY;AACrD,QAAM,WAAW,QAAQ,SAAS,MAAM,OAAO,UAAU;AACzD,QAAM,MAAM,SAAS;AACrB,MAAI,gCAAgC,KAAK,GAAG,GAAG;AAC7C,WAAO,QAAQ,QAAQ;AAAA,EACzB;AACA,MAAI,gBAAgB,IAAI,QAAQ,QAAQ,SAAS,SAAS,SAAS,EAAE,CAAC,GAAG;AACvE,UAAM,EAAE,OAAO,OAAO,IAAI,MAAM,qBAAqB,KAAK;AAC1D,aAAS,QAAQ,gBAAgB,UAAU,MAAM;AACjD,QAAI;AACJ,QAAI;AACF,iBAAW,MAAM,QAAQ,QAAQ;AAAA,IACnC,SAAS,OAAO;AACd,UAAI,mBAAmB,KAAK,GAAG;AAC7B,cAAM;AAAA,MACR;AACA,UAAI,OAAO,MAAM,SAAS,QAAQ,SAAS,aAAa;AACtD,cAAM;AAAA,MACR;AACA,YAAM,OAAO,KAAK;AAAA,SACf,KAAK,MAAM,MAAM,SAAS,QAAQ,IAAI,IAAI,KAAK,OAAuB,oBAAI,KAAK,GAAG,SAAS,CAAC,KAAK;AAAA,MACpG;AACA,YAAM,IAAI,KAAK,MAAM,OAAO;AAC5B,YAAM,IAAI;AAAA,QACR,wEAAwE,IAAI;AAAA,MAC9E;AACA,YAAM,EAAE,OAAO,OAAO,IAAI,MAAM,qBAAqB;AAAA,QACnD,GAAG;AAAA,QACH,gBAAgB;AAAA,MAClB,CAAC;AACD,eAAS,QAAQ,gBAAgB,UAAU,MAAM;AACjD,aAAO,QAAQ,QAAQ;AAAA,IACzB;AACA,WAAO;AAAA,EACT;AACA,MAAI,kBAAkB,GAAG,GAAG;AAC1B,UAAM,iBAAiB,MAAM,MAAM,SAAS,EAAE,MAAM,YAAY,CAAC;AACjE,aAAS,QAAQ,gBAAgB,eAAe,QAAQ;AACxD,WAAO,QAAQ,QAAQ;AAAA,EACzB;AACA,QAAM,EAAE,OAAO,UAAU,IAAI,MAAM;AAAA,IACjC;AAAA;AAAA,IAEA,CAAC;AAAA,IACD,QAAQ,SAAS,EAAE,SAAS,SAAS,QAAQ,CAAC;AAAA,EAChD;AACA,WAAS,QAAQ,gBAAgB,SAAS,KAAK;AAC/C,SAAO;AAAA,IACL;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,EACF;AACF;AACA,eAAe,uBAAuB,OAAO,SAAS,SAAS,WAAW,UAAU,GAAG;AACrF,QAAM,6BAA6B,CAAiB,oBAAI,KAAK,IAAI,CAAC,IAAI,KAAK,SAAS;AACpF,MAAI;AACF,WAAO,MAAM,QAAQ,OAAO;AAAA,EAC9B,SAAS,OAAO;AACd,QAAI,MAAM,WAAW,KAAK;AACxB,YAAM;AAAA,IACR;AACA,QAAI,8BAA8B,oBAAoB;AACpD,UAAI,UAAU,GAAG;AACf,cAAM,UAAU,SAAS,OAAO,mBAAmB,6BAA6B,GAAG;AAAA,MACrF;AACA,YAAM;AAAA,IACR;AACA,MAAE;AACF,UAAM,YAAY,UAAU;AAC5B,UAAM,IAAI;AAAA,MACR,kGAAkG,OAAO,WAAW,YAAY,GAAG;AAAA,IACrI;AACA,UAAM,IAAI,QAAQ,CAAC,YAAY,WAAW,SAAS,SAAS,CAAC;AAC7D,WAAO,uBAAuB,OAAO,SAAS,SAAS,WAAW,OAAO;AAAA,EAC3E;AACF;;;AEzFA,IAAM,UAAU;;;AROhB,SAAS,2BAA2B;AACpC,SAAS,cAAc,SAAS;AAC9B,MAAI,CAAC,QAAQ,OAAO;AAClB,UAAM,IAAI,MAAM,8CAA8C;AAAA,EAChE;AACA,MAAI,CAAC,QAAQ,YAAY;AACvB,UAAM,IAAI,MAAM,mDAAmD;AAAA,EACrE;AACA,MAAI,oBAAoB,WAAW,CAAC,QAAQ,gBAAgB;AAC1D,UAAM,IAAI;AAAA,MACR;AAAA,IACF;AAAA,EACF;AACA,QAAM,MAAM,OAAO;AAAA,IACjB;AAAA,MACE,MAAM,QAAQ,KAAK,KAAK,OAAO;AAAA,IACjC;AAAA,IACA,QAAQ;AAAA,EACV;AACA,QAAM,UAAU,QAAQ,WAAW,eAAe,SAAS;AAAA,IACzD,SAAS;AAAA,MACP,cAAc,uBAAuB,OAAO,IAAI,aAAa,CAAC;AAAA,IAChE;AAAA,EACF,CAAC;AACD,QAAM,QAAQ,OAAO;AAAA,IACnB;AAAA,MACE;AAAA,MACA,OAAO,SAAS;AAAA,IAClB;AAAA,IACA;AAAA,IACA,QAAQ,iBAAiB,EAAE,gBAAgB,OAAO,QAAQ,cAAc,EAAE,IAAI,CAAC;AAAA,IAC/E;AAAA,MACE;AAAA,MACA,UAAU,mBAAmB;AAAA,QAC3B,YAAY;AAAA,QACZ,UAAU,QAAQ,YAAY;AAAA,QAC9B,cAAc,QAAQ,gBAAgB;AAAA,QACtC;AAAA,MACF,CAAC;AAAA,IACH;AAAA,EACF;AACA,SAAO,OAAO,OAAO,KAAK,KAAK,MAAM,KAAK,GAAG;AAAA,IAC3C,MAAM,KAAK,KAAK,MAAM,KAAK;AAAA,EAC7B,CAAC;AACH;",
+ "names": []
+}
diff --git a/.github/octokit/node_modules/@octokit/auth-app/dist-src/auth.js b/.github/octokit/node_modules/@octokit/auth-app/dist-src/auth.js
new file mode 100644
index 000000000..42e98079d
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/dist-src/auth.js
@@ -0,0 +1,23 @@
+import { getAppAuthentication } from "./get-app-authentication.js";
+import { getInstallationAuthentication } from "./get-installation-authentication.js";
+async function auth(state, authOptions) {
+ switch (authOptions.type) {
+ case "app":
+ return getAppAuthentication(state);
+ case "oauth-app":
+ return state.oauthApp({ type: "oauth-app" });
+ case "installation":
+ authOptions;
+ return getInstallationAuthentication(state, {
+ ...authOptions,
+ type: "installation"
+ });
+ case "oauth-user":
+ return state.oauthApp(authOptions);
+ default:
+ throw new Error(`Invalid auth type: ${authOptions.type}`);
+ }
+}
+export {
+ auth
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-app/dist-src/cache.js b/.github/octokit/node_modules/@octokit/auth-app/dist-src/cache.js
new file mode 100644
index 000000000..a3e373dc5
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/dist-src/cache.js
@@ -0,0 +1,78 @@
+import { LRUCache } from "lru-cache";
+function getCache() {
+ return new LRUCache({
+ // cache max. 15000 tokens, that will use less than 10mb memory
+ max: 15e3,
+ // Cache for 1 minute less than GitHub expiry
+ ttl: 1e3 * 60 * 59
+ });
+}
+async function get(cache, options) {
+ const cacheKey = optionsToCacheKey(options);
+ const result = await cache.get(cacheKey);
+ if (!result) {
+ return;
+ }
+ const [
+ token,
+ createdAt,
+ expiresAt,
+ repositorySelection,
+ permissionsString,
+ singleFileName
+ ] = result.split("|");
+ const permissions = options.permissions || permissionsString.split(/,/).reduce((permissions2, string) => {
+ if (/!$/.test(string)) {
+ permissions2[string.slice(0, -1)] = "write";
+ } else {
+ permissions2[string] = "read";
+ }
+ return permissions2;
+ }, {});
+ return {
+ token,
+ createdAt,
+ expiresAt,
+ permissions,
+ repositoryIds: options.repositoryIds,
+ repositoryNames: options.repositoryNames,
+ singleFileName,
+ repositorySelection
+ };
+}
+async function set(cache, options, data) {
+ const key = optionsToCacheKey(options);
+ const permissionsString = options.permissions ? "" : Object.keys(data.permissions).map(
+ (name) => `${name}${data.permissions[name] === "write" ? "!" : ""}`
+ ).join(",");
+ const value = [
+ data.token,
+ data.createdAt,
+ data.expiresAt,
+ data.repositorySelection,
+ permissionsString,
+ data.singleFileName
+ ].join("|");
+ await cache.set(key, value);
+}
+function optionsToCacheKey({
+ installationId,
+ permissions = {},
+ repositoryIds = [],
+ repositoryNames = []
+}) {
+ const permissionsString = Object.keys(permissions).sort().map((name) => permissions[name] === "read" ? name : `${name}!`).join(",");
+ const repositoryIdsString = repositoryIds.sort().join(",");
+ const repositoryNamesString = repositoryNames.join(",");
+ return [
+ installationId,
+ repositoryIdsString,
+ repositoryNamesString,
+ permissionsString
+ ].filter(Boolean).join("|");
+}
+export {
+ get,
+ getCache,
+ set
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-app/dist-src/get-app-authentication.js b/.github/octokit/node_modules/@octokit/auth-app/dist-src/get-app-authentication.js
new file mode 100644
index 000000000..e2c5dc719
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/dist-src/get-app-authentication.js
@@ -0,0 +1,31 @@
+import githubAppJwt from "universal-github-app-jwt";
+async function getAppAuthentication({
+ appId,
+ privateKey,
+ timeDifference
+}) {
+ try {
+ const appAuthentication = await githubAppJwt({
+ id: appId,
+ privateKey,
+ now: timeDifference && Math.floor(Date.now() / 1e3) + timeDifference
+ });
+ return {
+ type: "app",
+ token: appAuthentication.token,
+ appId: appAuthentication.appId,
+ expiresAt: new Date(appAuthentication.expiration * 1e3).toISOString()
+ };
+ } catch (error) {
+ if (privateKey === "-----BEGIN RSA PRIVATE KEY-----") {
+ throw new Error(
+ "The 'privateKey` option contains only the first line '-----BEGIN RSA PRIVATE KEY-----'. If you are setting it using a `.env` file, make sure it is set on a single line with newlines replaced by '\n'"
+ );
+ } else {
+ throw error;
+ }
+ }
+}
+export {
+ getAppAuthentication
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-app/dist-src/get-installation-authentication.js b/.github/octokit/node_modules/@octokit/auth-app/dist-src/get-installation-authentication.js
new file mode 100644
index 000000000..6d1749725
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/dist-src/get-installation-authentication.js
@@ -0,0 +1,103 @@
+import { get, set } from "./cache.js";
+import { getAppAuthentication } from "./get-app-authentication.js";
+import { toTokenAuthentication } from "./to-token-authentication.js";
+async function getInstallationAuthentication(state, options, customRequest) {
+ const installationId = Number(options.installationId || state.installationId);
+ if (!installationId) {
+ throw new Error(
+ "[@octokit/auth-app] installationId option is required for installation authentication."
+ );
+ }
+ if (options.factory) {
+ const { type, factory, oauthApp, ...factoryAuthOptions } = {
+ ...state,
+ ...options
+ };
+ return factory(factoryAuthOptions);
+ }
+ const optionsWithInstallationTokenFromState = Object.assign(
+ { installationId },
+ options
+ );
+ if (!options.refresh) {
+ const result = await get(
+ state.cache,
+ optionsWithInstallationTokenFromState
+ );
+ if (result) {
+ const {
+ token: token2,
+ createdAt: createdAt2,
+ expiresAt: expiresAt2,
+ permissions: permissions2,
+ repositoryIds: repositoryIds2,
+ repositoryNames: repositoryNames2,
+ singleFileName: singleFileName2,
+ repositorySelection: repositorySelection2
+ } = result;
+ return toTokenAuthentication({
+ installationId,
+ token: token2,
+ createdAt: createdAt2,
+ expiresAt: expiresAt2,
+ permissions: permissions2,
+ repositorySelection: repositorySelection2,
+ repositoryIds: repositoryIds2,
+ repositoryNames: repositoryNames2,
+ singleFileName: singleFileName2
+ });
+ }
+ }
+ const appAuthentication = await getAppAuthentication(state);
+ const request = customRequest || state.request;
+ const {
+ data: {
+ token,
+ expires_at: expiresAt,
+ repositories,
+ permissions: permissionsOptional,
+ repository_selection: repositorySelectionOptional,
+ single_file: singleFileName
+ }
+ } = await request("POST /app/installations/{installation_id}/access_tokens", {
+ installation_id: installationId,
+ repository_ids: options.repositoryIds,
+ repositories: options.repositoryNames,
+ permissions: options.permissions,
+ mediaType: {
+ previews: ["machine-man"]
+ },
+ headers: {
+ authorization: `bearer ${appAuthentication.token}`
+ }
+ });
+ const permissions = permissionsOptional || {};
+ const repositorySelection = repositorySelectionOptional || "all";
+ const repositoryIds = repositories ? repositories.map((r) => r.id) : void 0;
+ const repositoryNames = repositories ? repositories.map((repo) => repo.name) : void 0;
+ const createdAt = (/* @__PURE__ */ new Date()).toISOString();
+ await set(state.cache, optionsWithInstallationTokenFromState, {
+ token,
+ createdAt,
+ expiresAt,
+ repositorySelection,
+ permissions,
+ repositoryIds,
+ repositoryNames,
+ singleFileName
+ });
+ return toTokenAuthentication({
+ installationId,
+ token,
+ createdAt,
+ expiresAt,
+ repositorySelection,
+ permissions,
+ repositoryIds,
+ repositoryNames,
+ singleFileName
+ });
+}
+export {
+ getInstallationAuthentication
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-app/dist-src/hook.js b/.github/octokit/node_modules/@octokit/auth-app/dist-src/hook.js
new file mode 100644
index 000000000..e5ab01ea7
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/dist-src/hook.js
@@ -0,0 +1,93 @@
+import { requiresBasicAuth } from "@octokit/auth-oauth-user";
+import { RequestError } from "@octokit/request-error";
+import { getAppAuthentication } from "./get-app-authentication.js";
+import { getInstallationAuthentication } from "./get-installation-authentication.js";
+import { requiresAppAuth } from "./requires-app-auth.js";
+const FIVE_SECONDS_IN_MS = 5 * 1e3;
+function isNotTimeSkewError(error) {
+ return !(error.message.match(
+ /'Expiration time' claim \('exp'\) must be a numeric value representing the future time at which the assertion expires/
+ ) || error.message.match(
+ /'Issued at' claim \('iat'\) must be an Integer representing the time that the assertion was issued/
+ ));
+}
+async function hook(state, request, route, parameters) {
+ const endpoint = request.endpoint.merge(route, parameters);
+ const url = endpoint.url;
+ if (/\/login\/oauth\/access_token$/.test(url)) {
+ return request(endpoint);
+ }
+ if (requiresAppAuth(url.replace(request.endpoint.DEFAULTS.baseUrl, ""))) {
+ const { token: token2 } = await getAppAuthentication(state);
+ endpoint.headers.authorization = `bearer ${token2}`;
+ let response;
+ try {
+ response = await request(endpoint);
+ } catch (error) {
+ if (isNotTimeSkewError(error)) {
+ throw error;
+ }
+ if (typeof error.response.headers.date === "undefined") {
+ throw error;
+ }
+ const diff = Math.floor(
+ (Date.parse(error.response.headers.date) - Date.parse((/* @__PURE__ */ new Date()).toString())) / 1e3
+ );
+ state.log.warn(error.message);
+ state.log.warn(
+ `[@octokit/auth-app] GitHub API time and system time are different by ${diff} seconds. Retrying request with the difference accounted for.`
+ );
+ const { token: token3 } = await getAppAuthentication({
+ ...state,
+ timeDifference: diff
+ });
+ endpoint.headers.authorization = `bearer ${token3}`;
+ return request(endpoint);
+ }
+ return response;
+ }
+ if (requiresBasicAuth(url)) {
+ const authentication = await state.oauthApp({ type: "oauth-app" });
+ endpoint.headers.authorization = authentication.headers.authorization;
+ return request(endpoint);
+ }
+ const { token, createdAt } = await getInstallationAuthentication(
+ state,
+ // @ts-expect-error TBD
+ {},
+ request.defaults({ baseUrl: endpoint.baseUrl })
+ );
+ endpoint.headers.authorization = `token ${token}`;
+ return sendRequestWithRetries(
+ state,
+ request,
+ endpoint,
+ createdAt
+ );
+}
+async function sendRequestWithRetries(state, request, options, createdAt, retries = 0) {
+ const timeSinceTokenCreationInMs = +/* @__PURE__ */ new Date() - +new Date(createdAt);
+ try {
+ return await request(options);
+ } catch (error) {
+ if (error.status !== 401) {
+ throw error;
+ }
+ if (timeSinceTokenCreationInMs >= FIVE_SECONDS_IN_MS) {
+ if (retries > 0) {
+ error.message = `After ${retries} retries within ${timeSinceTokenCreationInMs / 1e3}s of creating the installation access token, the response remains 401. At this point, the cause may be an authentication problem or a system outage. Please check https://www.githubstatus.com for status information`;
+ }
+ throw error;
+ }
+ ++retries;
+ const awaitTime = retries * 1e3;
+ state.log.warn(
+ `[@octokit/auth-app] Retrying after 401 response to account for token replication delay (retry: ${retries}, wait: ${awaitTime / 1e3}s)`
+ );
+ await new Promise((resolve) => setTimeout(resolve, awaitTime));
+ return sendRequestWithRetries(state, request, options, createdAt, retries);
+ }
+}
+export {
+ hook
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-app/dist-src/index.js b/.github/octokit/node_modules/@octokit/auth-app/dist-src/index.js
new file mode 100644
index 000000000..25f76d99e
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/dist-src/index.js
@@ -0,0 +1,56 @@
+import { getUserAgent } from "universal-user-agent";
+import { request as defaultRequest } from "@octokit/request";
+import { createOAuthAppAuth } from "@octokit/auth-oauth-app";
+import { auth } from "./auth.js";
+import { hook } from "./hook.js";
+import { getCache } from "./cache.js";
+import { VERSION } from "./version.js";
+import { createOAuthUserAuth } from "@octokit/auth-oauth-user";
+function createAppAuth(options) {
+ if (!options.appId) {
+ throw new Error("[@octokit/auth-app] appId option is required");
+ }
+ if (!options.privateKey) {
+ throw new Error("[@octokit/auth-app] privateKey option is required");
+ }
+ if ("installationId" in options && !options.installationId) {
+ throw new Error(
+ "[@octokit/auth-app] installationId is set to a falsy value"
+ );
+ }
+ const log = Object.assign(
+ {
+ warn: console.warn.bind(console)
+ },
+ options.log
+ );
+ const request = options.request || defaultRequest.defaults({
+ headers: {
+ "user-agent": `octokit-auth-app.js/${VERSION} ${getUserAgent()}`
+ }
+ });
+ const state = Object.assign(
+ {
+ request,
+ cache: getCache()
+ },
+ options,
+ options.installationId ? { installationId: Number(options.installationId) } : {},
+ {
+ log,
+ oauthApp: createOAuthAppAuth({
+ clientType: "github-app",
+ clientId: options.clientId || "",
+ clientSecret: options.clientSecret || "",
+ request
+ })
+ }
+ );
+ return Object.assign(auth.bind(null, state), {
+ hook: hook.bind(null, state)
+ });
+}
+export {
+ createAppAuth,
+ createOAuthUserAuth
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-app/dist-src/requires-app-auth.js b/.github/octokit/node_modules/@octokit/auth-app/dist-src/requires-app-auth.js
new file mode 100644
index 000000000..5e61d37cc
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/dist-src/requires-app-auth.js
@@ -0,0 +1,37 @@
+const PATHS = [
+ "/app",
+ "/app/hook/config",
+ "/app/hook/deliveries",
+ "/app/hook/deliveries/{delivery_id}",
+ "/app/hook/deliveries/{delivery_id}/attempts",
+ "/app/installations",
+ "/app/installations/{installation_id}",
+ "/app/installations/{installation_id}/access_tokens",
+ "/app/installations/{installation_id}/suspended",
+ "/app/installation-requests",
+ "/marketplace_listing/accounts/{account_id}",
+ "/marketplace_listing/plan",
+ "/marketplace_listing/plans",
+ "/marketplace_listing/plans/{plan_id}/accounts",
+ "/marketplace_listing/stubbed/accounts/{account_id}",
+ "/marketplace_listing/stubbed/plan",
+ "/marketplace_listing/stubbed/plans",
+ "/marketplace_listing/stubbed/plans/{plan_id}/accounts",
+ "/orgs/{org}/installation",
+ "/repos/{owner}/{repo}/installation",
+ "/users/{username}/installation"
+];
+function routeMatcher(paths) {
+ const regexes = paths.map(
+ (p) => p.split("/").map((c) => c.startsWith("{") ? "(?:.+?)" : c).join("/")
+ );
+ const regex = `^(?:${regexes.map((r) => `(?:${r})`).join("|")})$`;
+ return new RegExp(regex, "i");
+}
+const REGEX = routeMatcher(PATHS);
+function requiresAppAuth(url) {
+ return !!url && REGEX.test(url.split("?")[0]);
+}
+export {
+ requiresAppAuth
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-app/dist-src/to-token-authentication.js b/.github/octokit/node_modules/@octokit/auth-app/dist-src/to-token-authentication.js
new file mode 100644
index 000000000..9ba6e034b
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/dist-src/to-token-authentication.js
@@ -0,0 +1,30 @@
+function toTokenAuthentication({
+ installationId,
+ token,
+ createdAt,
+ expiresAt,
+ repositorySelection,
+ permissions,
+ repositoryIds,
+ repositoryNames,
+ singleFileName
+}) {
+ return Object.assign(
+ {
+ type: "token",
+ tokenType: "installation",
+ token,
+ installationId,
+ permissions,
+ createdAt,
+ expiresAt,
+ repositorySelection
+ },
+ repositoryIds ? { repositoryIds } : null,
+ repositoryNames ? { repositoryNames } : null,
+ singleFileName ? { singleFileName } : null
+ );
+}
+export {
+ toTokenAuthentication
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-app/dist-src/version.js b/.github/octokit/node_modules/@octokit/auth-app/dist-src/version.js
new file mode 100644
index 000000000..75aca5056
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/dist-src/version.js
@@ -0,0 +1,4 @@
+const VERSION = "7.1.1";
+export {
+ VERSION
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-app/dist-types/auth.d.ts b/.github/octokit/node_modules/@octokit/auth-app/dist-types/auth.d.ts
new file mode 100644
index 000000000..64bd069a6
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/dist-types/auth.d.ts
@@ -0,0 +1,20 @@
+import type * as OAuthAppAuth from "@octokit/auth-oauth-app";
+import type { State, AppAuthOptions, AppAuthentication, OAuthAppAuthentication, OAuthAppAuthOptions, InstallationAuthOptions, InstallationAccessTokenAuthentication, GitHubAppUserAuthentication, GitHubAppUserAuthenticationWithExpiration, OAuthWebFlowAuthOptions, OAuthDeviceFlowAuthOptions } from "./types.js";
+/** GitHub App authentication */
+export declare function auth(state: State, authOptions: AppAuthOptions): Promise;
+/** OAuth App authentication */
+export declare function auth(state: State, authOptions: OAuthAppAuthOptions): Promise;
+/** Installation authentication */
+export declare function auth(state: State, authOptions: InstallationAuthOptions): Promise;
+/** User Authentication via OAuth web flow */
+export declare function auth(state: State, authOptions: OAuthWebFlowAuthOptions): Promise;
+/** GitHub App Web flow with `factory` option */
+export declare function auth(state: State, authOptions: OAuthWebFlowAuthOptions & {
+ factory: OAuthAppAuth.FactoryGitHubWebFlow;
+}): Promise;
+/** User Authentication via OAuth Device flow */
+export declare function auth(state: State, authOptions: OAuthDeviceFlowAuthOptions): Promise;
+/** GitHub App Device flow with `factory` option */
+export declare function auth(state: State, authOptions: OAuthDeviceFlowAuthOptions & {
+ factory: OAuthAppAuth.FactoryGitHubDeviceFlow;
+}): Promise;
diff --git a/.github/octokit/node_modules/@octokit/auth-app/dist-types/cache.d.ts b/.github/octokit/node_modules/@octokit/auth-app/dist-types/cache.d.ts
new file mode 100644
index 000000000..61b3b0604
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/dist-types/cache.d.ts
@@ -0,0 +1,5 @@
+import { LRUCache } from "lru-cache";
+import type { InstallationAuthOptions, Cache, CacheData, InstallationAccessTokenData } from "./types.js";
+export declare function getCache(): LRUCache;
+export declare function get(cache: Cache, options: InstallationAuthOptions): Promise;
+export declare function set(cache: Cache, options: InstallationAuthOptions, data: CacheData): Promise;
diff --git a/.github/octokit/node_modules/@octokit/auth-app/dist-types/get-app-authentication.d.ts b/.github/octokit/node_modules/@octokit/auth-app/dist-types/get-app-authentication.d.ts
new file mode 100644
index 000000000..120d16c17
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/dist-types/get-app-authentication.d.ts
@@ -0,0 +1,4 @@
+import type { AppAuthentication, State } from "./types.js";
+export declare function getAppAuthentication({ appId, privateKey, timeDifference, }: State & {
+ timeDifference?: number;
+}): Promise;
diff --git a/.github/octokit/node_modules/@octokit/auth-app/dist-types/get-installation-authentication.d.ts b/.github/octokit/node_modules/@octokit/auth-app/dist-types/get-installation-authentication.d.ts
new file mode 100644
index 000000000..61147923c
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/dist-types/get-installation-authentication.d.ts
@@ -0,0 +1,2 @@
+import type { InstallationAuthOptions, InstallationAccessTokenAuthentication, RequestInterface, State } from "./types.js";
+export declare function getInstallationAuthentication(state: State, options: InstallationAuthOptions, customRequest?: RequestInterface): Promise;
diff --git a/.github/octokit/node_modules/@octokit/auth-app/dist-types/hook.d.ts b/.github/octokit/node_modules/@octokit/auth-app/dist-types/hook.d.ts
new file mode 100644
index 000000000..3d249947e
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/dist-types/hook.d.ts
@@ -0,0 +1,2 @@
+import type { AnyResponse, EndpointOptions, RequestParameters, RequestInterface, Route, State } from "./types.js";
+export declare function hook(state: State, request: RequestInterface, route: Route | EndpointOptions, parameters?: RequestParameters): Promise;
diff --git a/.github/octokit/node_modules/@octokit/auth-app/dist-types/index.d.ts b/.github/octokit/node_modules/@octokit/auth-app/dist-types/index.d.ts
new file mode 100644
index 000000000..4dfb320c2
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/dist-types/index.d.ts
@@ -0,0 +1,4 @@
+import type { AuthInterface, StrategyOptions } from "./types.js";
+export { createOAuthUserAuth } from "@octokit/auth-oauth-user";
+export type { StrategyOptions, AppAuthOptions, OAuthAppAuthOptions, InstallationAuthOptions, OAuthWebFlowAuthOptions, OAuthDeviceFlowAuthOptions, Authentication, AppAuthentication, OAuthAppAuthentication, InstallationAccessTokenAuthentication, GitHubAppUserAuthentication, GitHubAppUserAuthenticationWithExpiration, } from "./types.js";
+export declare function createAppAuth(options: StrategyOptions): AuthInterface;
diff --git a/.github/octokit/node_modules/@octokit/auth-app/dist-types/requires-app-auth.d.ts b/.github/octokit/node_modules/@octokit/auth-app/dist-types/requires-app-auth.d.ts
new file mode 100644
index 000000000..2d86d3fd3
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/dist-types/requires-app-auth.d.ts
@@ -0,0 +1 @@
+export declare function requiresAppAuth(url: string | undefined): Boolean;
diff --git a/.github/octokit/node_modules/@octokit/auth-app/dist-types/to-token-authentication.d.ts b/.github/octokit/node_modules/@octokit/auth-app/dist-types/to-token-authentication.d.ts
new file mode 100644
index 000000000..085af4fc8
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/dist-types/to-token-authentication.d.ts
@@ -0,0 +1,2 @@
+import type { CacheData, InstallationAccessTokenAuthentication, WithInstallationId } from "./types.js";
+export declare function toTokenAuthentication({ installationId, token, createdAt, expiresAt, repositorySelection, permissions, repositoryIds, repositoryNames, singleFileName, }: CacheData & WithInstallationId): InstallationAccessTokenAuthentication;
diff --git a/.github/octokit/node_modules/@octokit/auth-app/dist-types/types.d.ts b/.github/octokit/node_modules/@octokit/auth-app/dist-types/types.d.ts
new file mode 100644
index 000000000..6a29200ae
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/dist-types/types.d.ts
@@ -0,0 +1,125 @@
+import * as OctokitTypes from "@octokit/types";
+import { LRUCache } from "lru-cache";
+import * as OAuthAppAuth from "@octokit/auth-oauth-app";
+type OAuthStrategyOptions = {
+ clientId?: string;
+ clientSecret?: string;
+};
+type CommonStrategyOptions = {
+ appId: number | string;
+ privateKey: string;
+ installationId?: number | string;
+ request?: OctokitTypes.RequestInterface;
+ cache?: Cache;
+ log?: {
+ warn: (message: string, additionalInfo?: object) => any;
+ [key: string]: any;
+ };
+};
+export type StrategyOptions = OAuthStrategyOptions & CommonStrategyOptions & Record;
+export type AppAuthOptions = {
+ type: "app";
+};
+/**
+Users SHOULD only enter repositoryIds || repositoryNames.
+However, this module still passes both to the backend API to
+let the API decide how to handle the logic. We just throw the
+response back to the client making the request.
+**/
+export type InstallationAuthOptions = {
+ type: "installation";
+ installationId?: number | string;
+ repositoryIds?: number[];
+ repositoryNames?: string[];
+ permissions?: Permissions;
+ refresh?: boolean;
+ factory?: never;
+ [key: string]: unknown;
+};
+export type InstallationAuthOptionsWithFactory = {
+ type: "installation";
+ installationId?: number | string;
+ repositoryIds?: number[];
+ repositoryNames?: string[];
+ permissions?: Permissions;
+ refresh?: boolean;
+ factory: FactoryInstallation;
+ [key: string]: unknown;
+};
+export type OAuthAppAuthOptions = OAuthAppAuth.AppAuthOptions;
+export type OAuthWebFlowAuthOptions = OAuthAppAuth.WebFlowAuthOptions;
+export type OAuthDeviceFlowAuthOptions = OAuthAppAuth.GitHubAppDeviceFlowAuthOptions;
+export type Authentication = AppAuthentication | OAuthAppAuthentication | InstallationAccessTokenAuthentication | GitHubAppUserAuthentication | GitHubAppUserAuthenticationWithExpiration;
+export type FactoryInstallationOptions = StrategyOptions & Omit;
+export interface FactoryInstallation {
+ (options: FactoryInstallationOptions): T;
+}
+export interface AuthInterface {
+ (options: AppAuthOptions): Promise;
+ (options: OAuthAppAuthOptions): Promise;
+ (options: InstallationAuthOptions): Promise;
+ (options: InstallationAuthOptionsWithFactory): Promise;
+ (options: OAuthWebFlowAuthOptions): Promise;
+ (options: OAuthDeviceFlowAuthOptions): Promise;
+ (options: OAuthWebFlowAuthOptions & {
+ factory: OAuthAppAuth.FactoryGitHubWebFlow;
+ }): Promise;
+ (options: OAuthDeviceFlowAuthOptions & {
+ factory: OAuthAppAuth.FactoryGitHubDeviceFlow;
+ }): Promise;
+ hook(request: RequestInterface, route: Route | EndpointOptions, parameters?: RequestParameters): Promise>;
+}
+export type AnyResponse = OctokitTypes.OctokitResponse;
+export type EndpointDefaults = OctokitTypes.EndpointDefaults;
+export type EndpointOptions = OctokitTypes.EndpointOptions;
+export type RequestParameters = OctokitTypes.RequestParameters;
+export type Route = OctokitTypes.Route;
+export type RequestInterface = OctokitTypes.RequestInterface;
+export type Cache = LRUCache | {
+ get: (key: string) => string | Promise;
+ set: (key: string, value: string) => any;
+};
+export type APP_TYPE = "app";
+export type TOKEN_TYPE = "token";
+export type INSTALLATION_TOKEN_TYPE = "installation";
+export type OAUTH_TOKEN_TYPE = "oauth";
+export type REPOSITORY_SELECTION = "all" | "selected";
+export type JWT = string;
+export type ACCESS_TOKEN = string;
+export type UTC_TIMESTAMP = string;
+export type AppAuthentication = {
+ type: APP_TYPE;
+ token: JWT;
+ appId: number | string;
+ expiresAt: string;
+};
+export type InstallationAccessTokenData = {
+ token: ACCESS_TOKEN;
+ createdAt: UTC_TIMESTAMP;
+ expiresAt: UTC_TIMESTAMP;
+ permissions: Permissions;
+ repositorySelection: REPOSITORY_SELECTION;
+ repositoryIds?: number[];
+ repositoryNames?: string[];
+ singleFileName?: string;
+};
+export type CacheData = InstallationAccessTokenData;
+export type InstallationAccessTokenAuthentication = InstallationAccessTokenData & {
+ type: TOKEN_TYPE;
+ tokenType: INSTALLATION_TOKEN_TYPE;
+ installationId: number;
+};
+export type OAuthAppAuthentication = OAuthAppAuth.AppAuthentication;
+export type GitHubAppUserAuthentication = OAuthAppAuth.GitHubAppUserAuthentication;
+export type GitHubAppUserAuthenticationWithExpiration = OAuthAppAuth.GitHubAppUserAuthenticationWithExpiration;
+export type FactoryOptions = Required> & State;
+export type Permissions = Record;
+export type WithInstallationId = {
+ installationId: number;
+};
+export type State = Required> & {
+ installationId?: number;
+} & OAuthStrategyOptions & {
+ oauthApp: OAuthAppAuth.GitHubAuthInterface;
+};
+export {};
diff --git a/.github/octokit/node_modules/@octokit/auth-app/dist-types/version.d.ts b/.github/octokit/node_modules/@octokit/auth-app/dist-types/version.d.ts
new file mode 100644
index 000000000..76a73422d
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/dist-types/version.d.ts
@@ -0,0 +1 @@
+export declare const VERSION = "7.1.1";
diff --git a/.github/octokit/node_modules/@octokit/auth-app/package.json b/.github/octokit/node_modules/@octokit/auth-app/package.json
new file mode 100644
index 000000000..3aa4214c8
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-app/package.json
@@ -0,0 +1,60 @@
+{
+ "name": "@octokit/auth-app",
+ "publishConfig": {
+ "access": "public",
+ "provenance": true
+ },
+ "type": "module",
+ "version": "7.1.1",
+ "description": "GitHub App authentication for JavaScript",
+ "repository": "github:octokit/auth-app.js",
+ "keywords": [
+ "github",
+ "octokit",
+ "authentication",
+ "api"
+ ],
+ "author": "Gregor Martynus (https://github.com/gr2m)",
+ "license": "MIT",
+ "dependencies": {
+ "@octokit/auth-oauth-app": "^8.1.0",
+ "@octokit/auth-oauth-user": "^5.1.0",
+ "@octokit/request": "^9.1.1",
+ "@octokit/request-error": "^6.1.1",
+ "@octokit/types": "^13.4.1",
+ "lru-cache": "^10.0.0",
+ "universal-github-app-jwt": "^2.2.0",
+ "universal-user-agent": "^7.0.0"
+ },
+ "devDependencies": {
+ "@octokit/tsconfig": "^3.0.0",
+ "@types/fetch-mock": "^7.3.1",
+ "@types/jest": "^29.0.0",
+ "@types/node": "^20.0.0",
+ "esbuild": "^0.23.0",
+ "fetch-mock": "npm:@gr2m/fetch-mock@9.11.0-pull-request-644.1",
+ "glob": "^10.2.5",
+ "jest": "^29.0.0",
+ "prettier": "3.3.3",
+ "semantic-release-plugin-update-version-in-files": "^1.0.0",
+ "ts-jest": "^29.0.0",
+ "typescript": "^5.0.0"
+ },
+ "engines": {
+ "node": ">= 18"
+ },
+ "files": [
+ "dist-*/**",
+ "bin/**"
+ ],
+ "main": "dist-node/index.js",
+ "types": "dist-types/index.d.ts",
+ "exports": {
+ ".": {
+ "types": "./dist-types/index.d.ts",
+ "import": "./dist-node/index.js",
+ "default": "./dist-node/index.js"
+ }
+ },
+ "sideEffects": false
+}
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-app/LICENSE b/.github/octokit/node_modules/@octokit/auth-oauth-app/LICENSE
new file mode 100644
index 000000000..ef2c18ee5
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-app/LICENSE
@@ -0,0 +1,21 @@
+The MIT License
+
+Copyright (c) 2019 Octokit contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-app/README.md b/.github/octokit/node_modules/@octokit/auth-oauth-app/README.md
new file mode 100644
index 000000000..b61c224ff
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-app/README.md
@@ -0,0 +1,1059 @@
+# auth-oauth-app.js
+
+> GitHub OAuth App authentication for JavaScript
+
+[![@latest](https://img.shields.io/npm/v/@octokit/auth-oauth-app.svg)](https://www.npmjs.com/package/@octokit/auth-oauth-app)
+[![Build Status](https://github.com/octokit/auth-oauth-app.js/workflows/Test/badge.svg)](https://github.com/octokit/auth-oauth-app.js/actions?query=workflow%3ATest)
+
+`@octokit/auth-oauth-app` is implementing one of [GitHub’s authentication strategies](https://github.com/octokit/auth.js).
+
+It implements authentication using an OAuth app’s client ID and secret as well as creating user access tokens GitHub's OAuth [web application flow](https://developer.github.com/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow) and [device flow](https://docs.github.com/en/developers/apps/authorizing-oauth-apps#device-flow).
+
+
+
+- [Standalone Usage](#standalone-usage)
+ - [Authenticate as app](#authenticate-as-app)
+ - [Authenticate user using OAuth Web Flow](#authenticate-user-using-oauth-web-flow)
+ - [Authenticate user using OAuth Device flow](#authenticate-user-using-oauth-device-flow)
+- [Usage with Octokit](#usage-with-octokit)
+- [`createOAuthAppAuth(options)` or `new Octokit({ auth })`](#createoauthappauthoptions-or-new-octokit-auth-)
+- [`auth(options)` or `octokit.auth(options)`](#authoptions-or-octokitauthoptions)
+ - [Client ID/Client Secret Basic authentication](#client-idclient-secret-basic-authentication)
+ - [OAuth web flow](#oauth-web-flow)
+ - [OAuth device flow](#oauth-device-flow)
+- [Authentication object](#authentication-object)
+ - [OAuth App authentication](#oauth-app-authentication)
+ - [OAuth user access token authentication](#oauth-user-access-token-authentication)
+ - [GitHub APP user authentication token with expiring disabled](#github-app-user-authentication-token-with-expiring-disabled)
+ - [GitHub APP user authentication token with expiring enabled](#github-app-user-authentication-token-with-expiring-enabled)
+- [`auth.hook(request, route, parameters)` or `auth.hook(request, options)`](#authhookrequest-route-parameters-or-authhookrequest-options)
+- [Types](#types)
+- [Implementation details](#implementation-details)
+- [License](#license)
+
+
+
+## Standalone Usage
+
+
+
+
+Browsers
+
+
+⚠️ `@octokit/auth-oauth-app` is not meant for usage in the browser. The OAuth APIs to create tokens do not have CORS enabled, and a client secret must not be exposed to the client.
+
+If you know what you are doing, load `@octokit/auth-oauth-app` directly from [esm.sh](https://esm.sh)
+
+```html
+
+```
+
+
+
+Node
+
+
+Install with npm install @octokit/auth-oauth-app
+
+```js
+import { createOAuthAppAuth } from "@octokit/auth-oauth-app";
+```
+
+
+
+
+
+> [!IMPORTANT]
+> As we use [conditional exports](https://nodejs.org/api/packages.html#conditional-exports), you will need to adapt your `tsconfig.json` by setting `"moduleResolution": "node16", "module": "node16"`.
+>
+> See the TypeScript docs on [package.json "exports"](https://www.typescriptlang.org/docs/handbook/modules/reference.html#packagejson-exports).
+> See this [helpful guide on transitioning to ESM](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c) from [@sindresorhus](https://github.com/sindresorhus)
+
+### Authenticate as app
+
+```js
+const auth = createOAuthAppAuth({
+ clientType: "oauth-app",
+ clientId: "1234567890abcdef1234",
+ clientSecret: "1234567890abcdef1234567890abcdef12345678",
+});
+
+const appAuthentication = await auth({
+ type: "oauth-app",
+});
+```
+
+resolves with
+
+```json
+{
+ "type": "oauth-app",
+ "clientId": "1234567890abcdef1234",
+ "clientSecret": "1234567890abcdef1234567890abcdef12345678",
+ "headers": {
+ "authorization": "basic MTIzNDU2Nzg5MGFiY2RlZjEyMzQ6MTIzNDU2Nzg5MGFiY2RlZjEyMzQ1Njc4OTBhYmNkZWYxMjM0NTY3OA=="
+ }
+}
+```
+
+### Authenticate user using OAuth Web Flow
+
+Exchange code from GitHub's OAuth web flow, see https://docs.github.com/en/developers/apps/authorizing-oauth-apps#2-users-are-redirected-back-to-your-site-by-github
+
+```js
+const auth = createOAuthAppAuth({
+ clientType: "oauth-app",
+ clientId: "1234567890abcdef1234",
+ clientSecret: "1234567890abcdef1234567890abcdef12345678",
+});
+
+const userAuthenticationFromWebFlow = await auth({
+ type: "oauth-user",
+ code: "random123",
+ state: "mystate123",
+});
+```
+
+resolves with
+
+```json
+{
+ "clientType": "oauth-app",
+ "clientId": "1234567890abcdef1234",
+ "clientSecret": "1234567890abcdef1234567890abcdef12345678",
+ "type": "token",
+ "tokenType": "oauth",
+ "token": "useraccesstoken123",
+ "scopes": []
+}
+```
+
+### Authenticate user using OAuth Device flow
+
+Pass an asynchronous `onVerification()` method which will be called with the response from step 1 of the device flow. In that function you have to prompt the user to enter the user code at the provided verification URL.
+
+`auth()` will not resolve until the user entered the code and granted access to the app.
+
+See https://docs.github.com/en/developers/apps/authorizing-oauth-apps#2-users-are-redirected-back-to-your-site-by-github
+
+```js
+const auth = createOAuthAppAuth({
+ clientType: "oauth-app",
+ clientId: "1234567890abcdef1234",
+ clientSecret: "1234567890abcdef1234567890abcdef12345678",
+});
+
+const userAuthenticationFromDeviceFlow = await auth({
+ async onVerification(verification) {
+ // verification example
+ // {
+ // device_code: "3584d83530557fdd1f46af8289938c8ef79f9dc5",
+ // user_code: "WDJB-MJHT",
+ // verification_uri: "https://github.com/login/device",
+ // expires_in: 900,
+ // interval: 5,
+ // };
+
+ console.log("Open %s", verification.verification_uri);
+ console.log("Enter code: %s", verification.user_code);
+ },
+});
+```
+
+resolves with
+
+```json
+{
+ "clientType": "oauth-app",
+ "clientId": "1234567890abcdef1234",
+ "clientSecret": "1234567890abcdef1234567890abcdef12345678",
+ "type": "token",
+ "tokenType": "oauth",
+ "token": "useraccesstoken123",
+ "scopes": []
+}
+```
+
+## Usage with Octokit
+
+
+
+
+
+Browsers
+
+
+
+⚠️ `@octokit/auth-oauth-app` is not meant for usage in the browser. The OAuth APIs to create tokens do not have CORS enabled, and a client secret must not be exposed to the client.
+
+If you know what you are doing, load `@octokit/auth-oauth-app` and `@octokit/core` (or a compatible module) directly from [esm.sh](https://esm.sh)
+
+```html
+
+```
+
+
+
+
+Node
+
+
+
+Install with `npm install @octokit/core @octokit/auth-oauth-app`. Optionally replace `@octokit/core` with a compatible module
+
+```js
+import { Octokit } from "@octokit/core";
+import {
+ createOAuthAppAuth,
+ createOAuthUserAuth,
+} from "@octokit/auth-oauth-app";
+```
+
+
+
+
+
+```js
+const appOctokit = new Octokit({
+ authStrategy: createOAuthAppAuth,
+ auth: {
+ clientId: "1234567890abcdef1234",
+ clientSecret: "1234567890abcdef1234567890abcdef12345678",
+ },
+});
+
+// Send requests as app
+await appOctokit.request("POST /application/{client_id}/token", {
+ client_id: "1234567890abcdef1234",
+ access_token: "existingtoken123",
+});
+console.log("token is valid");
+
+// create a new octokit instance that is authenticated as the user
+const userOctokit = await appOctokit.auth({
+ type: "oauth-user",
+ code: "code123",
+ factory: (options) => {
+ return new Octokit({
+ authStrategy: createOAuthUserAuth,
+ auth: options,
+ });
+ },
+});
+
+// Exchanges the code for the user access token authentication on first request
+// and caches the authentication for successive requests
+const {
+ data: { login },
+} = await userOctokit.request("GET /user");
+console.log("Hello, %s!", login);
+```
+
+## `createOAuthAppAuth(options)` or `new Octokit({ auth })`
+
+The `createOAuthAppAuth` method accepts a single `options` object as argument. The same set of options can be passed as `auth` to the `Octokit` constructor when setting `authStrategy: createOAuthAppAuth`
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ clientId
+
+
+ string
+
+
+ Required . Find your OAuth app’s Client ID
in your account’s developer settings.
+
+
+
+
+ clientSecret
+
+
+ string
+
+
+ Required . Find your OAuth app’s Client Secret
in your account’s developer settings.
+
+
+
+
+ clientType
+
+
+ string
+
+
+ Must be set to either "oauth-app"
or "github-app"
. Defaults to "oauth-app"
+
+
+
+
+ request
+
+
+ function
+
+
+ You can pass in your own @octokit/request
instance. For usage with enterprise, set baseUrl
to the API root endpoint. Example:
+
+```js
+import { request } from "@octokit/request";
+createOAuthAppAuth({
+ clientId: "1234567890abcdef1234",
+ clientSecret: "1234567890abcdef1234567890abcdef12345678",
+ request: request.defaults({
+ baseUrl: "https://ghe.my-company.com/api/v3",
+ }),
+});
+```
+
+
+
+
+
+## `auth(options)` or `octokit.auth(options)`
+
+The async `auth()` method returned by `createOAuthAppAuth(options)` accepts different options depending on your use case
+
+### Client ID/Client Secret Basic authentication
+
+All REST API routes starting with `/applications/{client_id}` need to be authenticated using the OAuth/GitHub App's Client ID and a client secret.
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ Required. Must be set to "oauth-app"
+
+
+
+
+
+### OAuth web flow
+
+Exchange `code` for a user access token. See [Web application flow](https://docs.github.com/en/developers/apps/authorizing-oauth-apps#web-application-flow).
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ Required. Must be set to "oauth-user"
.
+
+
+
+
+ code
+
+
+ string
+
+
+ Required . The authorization code
which was passed as query parameter to the callback URL from the OAuth web application flow .
+
+
+
+
+ redirectUrl
+
+
+ string
+
+
+ The URL in your application where users are sent after authorization. See redirect urls .
+
+
+
+
+ state
+
+
+ string
+
+
+ The unguessable random string you provided in Step 1 of the OAuth web application flow .
+
+
+
+
+ factory
+
+
+ function
+
+
+
+When the `factory` option is, the `auth({type: "oauth-user", code, factory })` call with resolve with whatever the `factory` function returns. The `factory` function will be called with all the strategy option that `auth` was created with, plus the additional options passed to `auth`, besides `type` and `factory`.
+
+For example, you can create a new `auth` instance for a user using [`createOAuthUserAuth`](https://github.com/octokit/auth-oauth-user.js/#readme) which implements auto-refreshing tokens, among other features. You can import `createOAuthUserAuth` directly from `@octokit/auth-oauth-app` which will ensure compatibility.
+
+```js
+import {
+ createOAuthAppAuth,
+ createOAuthUserAuth,
+} from "@octokit/auth-oauth-app";
+
+const appAuth = createOAuthAppAuth({
+ clientType: "github-app",
+ clientId: "lv1.1234567890abcdef",
+ clientSecret: "1234567890abcdef1234567890abcdef12345678",
+});
+
+const userAuth = await appAuth({
+ type: "oauth-user",
+ code,
+ factory: createOAuthUserAuth,
+});
+
+// will create token upon first call, then cache authentication for successive calls,
+// until token needs to be refreshed (if enabled for the GitHub App)
+const authentication = await userAuth();
+```
+
+
+
+
+
+
+### OAuth device flow
+
+Create a user access token without an http redirect. See [Device flow](https://docs.github.com/en/developers/apps/authorizing-oauth-apps#device-flow).
+
+The device flow does not require a client secret, but it is required as strategy option for `@octokit/auth-oauth-app`, even for the device flow. If you want to implement the device flow without requiring a client secret, use [`@octokit/auth-oauth-device`](https://github.com/octokit/auth-oauth-device.js#readme).
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ Required. Must be set to "oauth-user"
.
+
+
+
+
+ onVerification
+
+
+ function
+
+
+
+**Required**. A function that is called once the device and user codes were retrieved.
+
+The `onVerification()` callback can be used to pause until the user completes step 2, which might result in a better user experience.
+
+```js
+const auth = auth({
+ type: "oauth-user",
+ async onVerification(verification) {
+ console.log("Open %s", verification.verification_uri);
+ console.log("Enter code: %s", verification.user_code);
+
+ await prompt("press enter when you are ready to continue");
+ },
+});
+```
+
+
+
+
+
+ scopes
+
+
+ array of strings
+
+
+ Only relevant if the clientType
strategy option is set to "oauth-app"
.Array of OAuth scope names that the user access token should be granted. Defaults to no scopes ([]
).
+
+
+
+
+ factory
+
+
+ function
+
+
+
+When the `factory` option is, the `auth({type: "oauth-user", code, factory })` call with resolve with whatever the `factory` function returns. The `factory` function will be called with all the strategy option that `auth` was created with, plus the additional options passed to `auth`, besides `type` and `factory`.
+
+For example, you can create a new `auth` instance for a user using [`createOAuthUserAuth`](https://github.com/octokit/auth-oauth-user.js/#readme) which implements auto-refreshing tokens, among other features. You can import `createOAuthUserAuth` directly from `@octokit/auth-oauth-app` which will ensure compatibility.
+
+```js
+import {
+ createOAuthAppAuth,
+ createOAuthUserAuth,
+} from "@octokit/auth-oauth-app";
+
+const appAuth = createOAuthAppAuth({
+ clientType: "github-app",
+ clientId: "lv1.1234567890abcdef",
+ clientSecret: "1234567890abcdef1234567890abcdef12345678",
+});
+
+const userAuth = await appAuth({
+ type: "oauth-user",
+ onVerification,
+ factory: createOAuthUserAuth,
+});
+
+// will create token upon first call, then cache authentication for successive calls,
+// until token needs to be refreshed (if enabled for the GitHub App)
+const authentication = await userAuth();
+```
+
+
+
+
+
+
+## Authentication object
+
+The async `auth(options)` method to one of four possible authentication objects
+
+1. **OAuth App authentication** for `auth({ type: "oauth-app" })`
+2. **OAuth user access token authentication** for `auth({ type: "oauth-app" })` and App is an OAuth App (OAuth user access token)
+3. **GitHub APP user authentication token with expiring disabled** for `auth({ type: "oauth-app" })` and App is a GitHub App (user-to-server token)
+4. **GitHub APP user authentication token with expiring enabled** for `auth({ type: "oauth-app" })` and App is a GitHub App (user-to-server token)
+
+### OAuth App authentication
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ "oauth-app"
+
+
+
+
+ clientType
+
+
+ string
+
+
+ "oauth-app"
or "github-app"
+
+
+
+
+ clientId
+
+
+ string
+
+
+ The client ID as passed to the constructor.
+
+
+
+
+ clientSecret
+
+
+ string
+
+
+ The client secret as passed to the constructor.
+
+
+
+
+ headers
+
+
+ object
+
+
+ { authorization }
.
+
+
+
+
+
+### OAuth user access token authentication
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ "token"
+
+
+
+
+ tokenType
+
+
+ string
+
+
+ "oauth"
+
+
+
+
+ clientType
+
+
+ string
+
+
+ "oauth-app"
+
+
+
+
+ clientId
+
+
+ string
+
+
+ The clientId
from the strategy options
+
+
+
+
+ clientSecret
+
+
+ string
+
+
+ The clientSecret
from the strategy options
+
+
+
+
+ token
+
+
+ string
+
+
+ The user access token
+
+
+
+
+ scopes
+
+
+ array of strings
+
+
+ array of scope names enabled for the token
+
+
+
+
+
+### GitHub APP user authentication token with expiring disabled
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ "token"
+
+
+
+
+ tokenType
+
+
+ string
+
+
+ "oauth"
+
+
+
+
+ clientType
+
+
+ string
+
+
+ "github-app"
+
+
+
+
+ clientId
+
+
+ string
+
+
+ The app's Client ID
+
+
+
+
+ clientSecret
+
+
+ string
+
+
+ One of the app's client secrets
+
+
+
+
+ token
+
+
+ string
+
+
+ The user access token
+
+
+
+
+
+### GitHub APP user authentication token with expiring enabled
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ "token"
+
+
+
+
+ tokenType
+
+
+ string
+
+
+ "oauth"
+
+
+
+
+ clientType
+
+
+ string
+
+
+ "github-app"
+
+
+
+
+ clientId
+
+
+ string
+
+
+ The app's Client ID
+
+
+
+
+ clientSecret
+
+
+ string
+
+
+ One of the app's client secrets
+
+
+
+
+ token
+
+
+ string
+
+
+ The user access token
+
+
+
+
+ refreshToken
+
+
+ string
+
+
+ The refresh token
+
+
+
+
+ expiresAt
+
+
+ string
+
+
+ Date timestamp in ISO 8601 standard. Example: 2022-01-01T08:00:0.000Z
+
+
+
+
+ refreshTokenExpiresAt
+
+
+ string
+
+
+ Date timestamp in ISO 8601 standard. Example: 2021-07-01T00:00:0.000Z
+
+
+
+
+
+## `auth.hook(request, route, parameters)` or `auth.hook(request, options)`
+
+`auth.hook()` hooks directly into the request life cycle. It amends the request to authenticate correctly using `clientId` and `clientSecret` as basic auth for the API endpoints that support it. It throws an error in other cases.
+
+The `request` option is an instance of [`@octokit/request`](https://github.com/octokit/request.js#readme). The `route`/`options` parameters are the same as for the [`request()` method](https://github.com/octokit/request.js#request).
+
+`auth.hook()` can be called directly to send an authenticated request
+
+```js
+const { data: user } = await auth.hook(
+ request,
+ "POST /applications/{client_id}/token",
+ {
+ client_id: "1234567890abcdef1234",
+ access_token: "token123",
+ },
+);
+```
+
+Or it can be passed as option to [`request()`](https://github.com/octokit/request.js#request).
+
+```js
+const requestWithAuth = request.defaults({
+ request: {
+ hook: auth.hook,
+ },
+});
+
+const { data: user } = await requestWithAuth(
+ "POST /applications/{client_id}/token",
+ {
+ client_id: "1234567890abcdef1234",
+ access_token: "token123",
+ },
+);
+```
+
+## Types
+
+```ts
+import {
+ // strategy options
+ OAuthAppStrategyOptions,
+ GitHubAppStrategyOptions,
+ // auth options
+ AppAuthOptions,
+ WebFlowAuthOptions,
+ OAuthAppDeviceFlowAuthOptions,
+ GitHubAppDeviceFlowAuthOptions,
+ // auth interfaces
+ OAuthAppAuthInterface,
+ GitHubAuthInterface,
+ // authentication object
+ AppAuthentication,
+ OAuthAppUserAuthentication,
+ GitHubAppUserAuthentication,
+ GitHubAppUserAuthenticationWithExpiration,
+} from "@octokit/auth-oauth-app";
+```
+
+## Implementation details
+
+Client ID and secret can be passed as Basic auth in the `Authorization` header in order to get a higher rate limit compared to unauthenticated requests. This is meant for the use on servers only: never expose an OAuth client secret on a client such as a web application!
+
+`auth.hook` will set the correct authentication header automatically based on the request URL. For all [OAuth Application endpoints](https://developer.github.com/v3/apps/oauth_applications/), the `Authorization` header is set to basic auth. For all other endpoints and token is retrieved and used in the `Authorization` header. The token is cached and used for succeeding requests.
+
+To reset the cached access token, you can do this
+
+```js
+const { token } = await auth({ type: "oauth-user" });
+await auth.hook(request, "POST /applications/{client_id}/token", {
+ client_id: "1234567890abcdef1234",
+ access_token: token,
+});
+```
+
+The internally cached token will be replaced and used for succeeding requests. See also ["the REST API documentation"](https://developer.github.com/v3/oauth_authorizations/).
+
+See also: [octokit/oauth-authorization-url.js](https://github.com/octokit/oauth-authorization-url.js).
+
+## License
+
+[MIT](LICENSE)
+
+```
+
+```
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-bundle/index.js b/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-bundle/index.js
new file mode 100644
index 000000000..223c3446d
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-bundle/index.js
@@ -0,0 +1,95 @@
+// pkg/dist-src/index.js
+import { getUserAgent } from "universal-user-agent";
+import { request } from "@octokit/request";
+
+// pkg/dist-src/auth.js
+import { createOAuthUserAuth } from "@octokit/auth-oauth-user";
+async function auth(state, authOptions) {
+ if (authOptions.type === "oauth-app") {
+ return {
+ type: "oauth-app",
+ clientId: state.clientId,
+ clientSecret: state.clientSecret,
+ clientType: state.clientType,
+ headers: {
+ authorization: `basic ${btoa(
+ `${state.clientId}:${state.clientSecret}`
+ )}`
+ }
+ };
+ }
+ if ("factory" in authOptions) {
+ const { type, ...options } = {
+ ...authOptions,
+ ...state
+ };
+ return authOptions.factory(options);
+ }
+ const common = {
+ clientId: state.clientId,
+ clientSecret: state.clientSecret,
+ request: state.request,
+ ...authOptions
+ };
+ const userAuth = state.clientType === "oauth-app" ? await createOAuthUserAuth({
+ ...common,
+ clientType: state.clientType
+ }) : await createOAuthUserAuth({
+ ...common,
+ clientType: state.clientType
+ });
+ return userAuth();
+}
+
+// pkg/dist-src/hook.js
+import { requiresBasicAuth } from "@octokit/auth-oauth-user";
+async function hook(state, request2, route, parameters) {
+ let endpoint = request2.endpoint.merge(
+ route,
+ parameters
+ );
+ if (/\/login\/(oauth\/access_token|device\/code)$/.test(endpoint.url)) {
+ return request2(endpoint);
+ }
+ if (state.clientType === "github-app" && !requiresBasicAuth(endpoint.url)) {
+ throw new Error(
+ `[@octokit/auth-oauth-app] GitHub Apps cannot use their client ID/secret for basic authentication for endpoints other than "/applications/{client_id}/**". "${endpoint.method} ${endpoint.url}" is not supported.`
+ );
+ }
+ const credentials = btoa(`${state.clientId}:${state.clientSecret}`);
+ endpoint.headers.authorization = `basic ${credentials}`;
+ try {
+ return await request2(endpoint);
+ } catch (error) {
+ if (error.status !== 401)
+ throw error;
+ error.message = `[@octokit/auth-oauth-app] "${endpoint.method} ${endpoint.url}" does not support clientId/clientSecret basic authentication.`;
+ throw error;
+ }
+}
+
+// pkg/dist-src/version.js
+var VERSION = "0.0.0-development";
+
+// pkg/dist-src/index.js
+import { createOAuthUserAuth as createOAuthUserAuth2 } from "@octokit/auth-oauth-user";
+function createOAuthAppAuth(options) {
+ const state = Object.assign(
+ {
+ request: request.defaults({
+ headers: {
+ "user-agent": `octokit-auth-oauth-app.js/${VERSION} ${getUserAgent()}`
+ }
+ }),
+ clientType: "oauth-app"
+ },
+ options
+ );
+ return Object.assign(auth.bind(null, state), {
+ hook: hook.bind(null, state)
+ });
+}
+export {
+ createOAuthAppAuth,
+ createOAuthUserAuth2 as createOAuthUserAuth
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-bundle/index.js.map b/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-bundle/index.js.map
new file mode 100644
index 000000000..a32963889
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-bundle/index.js.map
@@ -0,0 +1,7 @@
+{
+ "version": 3,
+ "sources": ["../dist-src/index.js", "../dist-src/auth.js", "../dist-src/hook.js", "../dist-src/version.js"],
+ "sourcesContent": ["import { getUserAgent } from \"universal-user-agent\";\nimport { request } from \"@octokit/request\";\nimport { auth } from \"./auth.js\";\nimport { hook } from \"./hook.js\";\nimport { VERSION } from \"./version.js\";\nimport { createOAuthUserAuth } from \"@octokit/auth-oauth-user\";\nfunction createOAuthAppAuth(options) {\n const state = Object.assign(\n {\n request: request.defaults({\n headers: {\n \"user-agent\": `octokit-auth-oauth-app.js/${VERSION} ${getUserAgent()}`\n }\n }),\n clientType: \"oauth-app\"\n },\n options\n );\n return Object.assign(auth.bind(null, state), {\n hook: hook.bind(null, state)\n });\n}\nexport {\n createOAuthAppAuth,\n createOAuthUserAuth\n};\n", "import { createOAuthUserAuth } from \"@octokit/auth-oauth-user\";\nasync function auth(state, authOptions) {\n if (authOptions.type === \"oauth-app\") {\n return {\n type: \"oauth-app\",\n clientId: state.clientId,\n clientSecret: state.clientSecret,\n clientType: state.clientType,\n headers: {\n authorization: `basic ${btoa(\n `${state.clientId}:${state.clientSecret}`\n )}`\n }\n };\n }\n if (\"factory\" in authOptions) {\n const { type, ...options } = {\n ...authOptions,\n ...state\n };\n return authOptions.factory(options);\n }\n const common = {\n clientId: state.clientId,\n clientSecret: state.clientSecret,\n request: state.request,\n ...authOptions\n };\n const userAuth = state.clientType === \"oauth-app\" ? await createOAuthUserAuth({\n ...common,\n clientType: state.clientType\n }) : await createOAuthUserAuth({\n ...common,\n clientType: state.clientType\n });\n return userAuth();\n}\nexport {\n auth\n};\n", "import { requiresBasicAuth } from \"@octokit/auth-oauth-user\";\nasync function hook(state, request, route, parameters) {\n let endpoint = request.endpoint.merge(\n route,\n parameters\n );\n if (/\\/login\\/(oauth\\/access_token|device\\/code)$/.test(endpoint.url)) {\n return request(endpoint);\n }\n if (state.clientType === \"github-app\" && !requiresBasicAuth(endpoint.url)) {\n throw new Error(\n `[@octokit/auth-oauth-app] GitHub Apps cannot use their client ID/secret for basic authentication for endpoints other than \"/applications/{client_id}/**\". \"${endpoint.method} ${endpoint.url}\" is not supported.`\n );\n }\n const credentials = btoa(`${state.clientId}:${state.clientSecret}`);\n endpoint.headers.authorization = `basic ${credentials}`;\n try {\n return await request(endpoint);\n } catch (error) {\n if (error.status !== 401)\n throw error;\n error.message = `[@octokit/auth-oauth-app] \"${endpoint.method} ${endpoint.url}\" does not support clientId/clientSecret basic authentication.`;\n throw error;\n }\n}\nexport {\n hook\n};\n", "const VERSION = \"0.0.0-development\";\nexport {\n VERSION\n};\n"],
+ "mappings": ";AAAA,SAAS,oBAAoB;AAC7B,SAAS,eAAe;;;ACDxB,SAAS,2BAA2B;AACpC,eAAe,KAAK,OAAO,aAAa;AACtC,MAAI,YAAY,SAAS,aAAa;AACpC,WAAO;AAAA,MACL,MAAM;AAAA,MACN,UAAU,MAAM;AAAA,MAChB,cAAc,MAAM;AAAA,MACpB,YAAY,MAAM;AAAA,MAClB,SAAS;AAAA,QACP,eAAe,SAAS;AAAA,UACtB,GAAG,MAAM,QAAQ,IAAI,MAAM,YAAY;AAAA,QACzC,CAAC;AAAA,MACH;AAAA,IACF;AAAA,EACF;AACA,MAAI,aAAa,aAAa;AAC5B,UAAM,EAAE,MAAM,GAAG,QAAQ,IAAI;AAAA,MAC3B,GAAG;AAAA,MACH,GAAG;AAAA,IACL;AACA,WAAO,YAAY,QAAQ,OAAO;AAAA,EACpC;AACA,QAAM,SAAS;AAAA,IACb,UAAU,MAAM;AAAA,IAChB,cAAc,MAAM;AAAA,IACpB,SAAS,MAAM;AAAA,IACf,GAAG;AAAA,EACL;AACA,QAAM,WAAW,MAAM,eAAe,cAAc,MAAM,oBAAoB;AAAA,IAC5E,GAAG;AAAA,IACH,YAAY,MAAM;AAAA,EACpB,CAAC,IAAI,MAAM,oBAAoB;AAAA,IAC7B,GAAG;AAAA,IACH,YAAY,MAAM;AAAA,EACpB,CAAC;AACD,SAAO,SAAS;AAClB;;;ACpCA,SAAS,yBAAyB;AAClC,eAAe,KAAK,OAAOA,UAAS,OAAO,YAAY;AACrD,MAAI,WAAWA,SAAQ,SAAS;AAAA,IAC9B;AAAA,IACA;AAAA,EACF;AACA,MAAI,+CAA+C,KAAK,SAAS,GAAG,GAAG;AACrE,WAAOA,SAAQ,QAAQ;AAAA,EACzB;AACA,MAAI,MAAM,eAAe,gBAAgB,CAAC,kBAAkB,SAAS,GAAG,GAAG;AACzE,UAAM,IAAI;AAAA,MACR,8JAA8J,SAAS,MAAM,IAAI,SAAS,GAAG;AAAA,IAC/L;AAAA,EACF;AACA,QAAM,cAAc,KAAK,GAAG,MAAM,QAAQ,IAAI,MAAM,YAAY,EAAE;AAClE,WAAS,QAAQ,gBAAgB,SAAS,WAAW;AACrD,MAAI;AACF,WAAO,MAAMA,SAAQ,QAAQ;AAAA,EAC/B,SAAS,OAAO;AACd,QAAI,MAAM,WAAW;AACnB,YAAM;AACR,UAAM,UAAU,8BAA8B,SAAS,MAAM,IAAI,SAAS,GAAG;AAC7E,UAAM;AAAA,EACR;AACF;;;ACxBA,IAAM,UAAU;;;AHKhB,SAAS,uBAAAC,4BAA2B;AACpC,SAAS,mBAAmB,SAAS;AACnC,QAAM,QAAQ,OAAO;AAAA,IACnB;AAAA,MACE,SAAS,QAAQ,SAAS;AAAA,QACxB,SAAS;AAAA,UACP,cAAc,6BAA6B,OAAO,IAAI,aAAa,CAAC;AAAA,QACtE;AAAA,MACF,CAAC;AAAA,MACD,YAAY;AAAA,IACd;AAAA,IACA;AAAA,EACF;AACA,SAAO,OAAO,OAAO,KAAK,KAAK,MAAM,KAAK,GAAG;AAAA,IAC3C,MAAM,KAAK,KAAK,MAAM,KAAK;AAAA,EAC7B,CAAC;AACH;",
+ "names": ["request", "createOAuthUserAuth"]
+}
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-src/auth.js b/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-src/auth.js
new file mode 100644
index 000000000..54fabcf7a
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-src/auth.js
@@ -0,0 +1,40 @@
+import { createOAuthUserAuth } from "@octokit/auth-oauth-user";
+async function auth(state, authOptions) {
+ if (authOptions.type === "oauth-app") {
+ return {
+ type: "oauth-app",
+ clientId: state.clientId,
+ clientSecret: state.clientSecret,
+ clientType: state.clientType,
+ headers: {
+ authorization: `basic ${btoa(
+ `${state.clientId}:${state.clientSecret}`
+ )}`
+ }
+ };
+ }
+ if ("factory" in authOptions) {
+ const { type, ...options } = {
+ ...authOptions,
+ ...state
+ };
+ return authOptions.factory(options);
+ }
+ const common = {
+ clientId: state.clientId,
+ clientSecret: state.clientSecret,
+ request: state.request,
+ ...authOptions
+ };
+ const userAuth = state.clientType === "oauth-app" ? await createOAuthUserAuth({
+ ...common,
+ clientType: state.clientType
+ }) : await createOAuthUserAuth({
+ ...common,
+ clientType: state.clientType
+ });
+ return userAuth();
+}
+export {
+ auth
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-src/hook.js b/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-src/hook.js
new file mode 100644
index 000000000..65baebc1e
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-src/hook.js
@@ -0,0 +1,28 @@
+import { requiresBasicAuth } from "@octokit/auth-oauth-user";
+async function hook(state, request, route, parameters) {
+ let endpoint = request.endpoint.merge(
+ route,
+ parameters
+ );
+ if (/\/login\/(oauth\/access_token|device\/code)$/.test(endpoint.url)) {
+ return request(endpoint);
+ }
+ if (state.clientType === "github-app" && !requiresBasicAuth(endpoint.url)) {
+ throw new Error(
+ `[@octokit/auth-oauth-app] GitHub Apps cannot use their client ID/secret for basic authentication for endpoints other than "/applications/{client_id}/**". "${endpoint.method} ${endpoint.url}" is not supported.`
+ );
+ }
+ const credentials = btoa(`${state.clientId}:${state.clientSecret}`);
+ endpoint.headers.authorization = `basic ${credentials}`;
+ try {
+ return await request(endpoint);
+ } catch (error) {
+ if (error.status !== 401)
+ throw error;
+ error.message = `[@octokit/auth-oauth-app] "${endpoint.method} ${endpoint.url}" does not support clientId/clientSecret basic authentication.`;
+ throw error;
+ }
+}
+export {
+ hook
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-src/index.js b/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-src/index.js
new file mode 100644
index 000000000..40ffeadf2
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-src/index.js
@@ -0,0 +1,26 @@
+import { getUserAgent } from "universal-user-agent";
+import { request } from "@octokit/request";
+import { auth } from "./auth.js";
+import { hook } from "./hook.js";
+import { VERSION } from "./version.js";
+import { createOAuthUserAuth } from "@octokit/auth-oauth-user";
+function createOAuthAppAuth(options) {
+ const state = Object.assign(
+ {
+ request: request.defaults({
+ headers: {
+ "user-agent": `octokit-auth-oauth-app.js/${VERSION} ${getUserAgent()}`
+ }
+ }),
+ clientType: "oauth-app"
+ },
+ options
+ );
+ return Object.assign(auth.bind(null, state), {
+ hook: hook.bind(null, state)
+ });
+}
+export {
+ createOAuthAppAuth,
+ createOAuthUserAuth
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-src/version.js b/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-src/version.js
new file mode 100644
index 000000000..efd8294c9
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-src/version.js
@@ -0,0 +1,4 @@
+const VERSION = "8.1.1";
+export {
+ VERSION
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-types/auth.d.ts b/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-types/auth.d.ts
new file mode 100644
index 000000000..cd348f3dd
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-types/auth.d.ts
@@ -0,0 +1,18 @@
+import type { OAuthAppState, GitHubAppState, AppAuthOptions, WebFlowAuthOptions, OAuthAppDeviceFlowAuthOptions, GitHubAppDeviceFlowAuthOptions, FactoryOAuthAppWebFlow, FactoryOAuthAppDeviceFlow, FactoryGitHubWebFlow, FactoryGitHubDeviceFlow, AppAuthentication, OAuthAppUserAuthentication, GitHubAppUserAuthentication, GitHubAppUserAuthenticationWithExpiration } from "./types.js";
+export declare function auth(state: OAuthAppState | GitHubAppState, authOptions: AppAuthOptions): Promise;
+export declare function auth(state: OAuthAppState, authOptions: WebFlowAuthOptions): Promise;
+export declare function auth(state: OAuthAppState, authOptions: WebFlowAuthOptions & {
+ factory: FactoryOAuthAppWebFlow;
+}): Promise;
+export declare function auth(state: OAuthAppState, authOptions: OAuthAppDeviceFlowAuthOptions): Promise;
+export declare function auth(state: OAuthAppState, authOptions: OAuthAppDeviceFlowAuthOptions & {
+ factory: FactoryOAuthAppDeviceFlow;
+}): Promise;
+export declare function auth(state: GitHubAppState, authOptions: WebFlowAuthOptions): Promise;
+export declare function auth(state: GitHubAppState, authOptions: WebFlowAuthOptions & {
+ factory: FactoryGitHubWebFlow;
+}): Promise;
+export declare function auth(state: GitHubAppState, authOptions: GitHubAppDeviceFlowAuthOptions): Promise;
+export declare function auth(state: GitHubAppState, authOptions: GitHubAppDeviceFlowAuthOptions & {
+ factory: FactoryGitHubDeviceFlow;
+}): Promise;
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-types/hook.d.ts b/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-types/hook.d.ts
new file mode 100644
index 000000000..34fe82ac7
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-types/hook.d.ts
@@ -0,0 +1,3 @@
+import type { EndpointOptions, RequestParameters, Route, RequestInterface, OctokitResponse } from "@octokit/types";
+import type { OAuthAppState, GitHubAppState } from "./types.js";
+export declare function hook(state: OAuthAppState | GitHubAppState, request: RequestInterface, route: Route | EndpointOptions, parameters?: RequestParameters): Promise>;
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-types/index.d.ts b/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-types/index.d.ts
new file mode 100644
index 000000000..804ae046e
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-types/index.d.ts
@@ -0,0 +1,5 @@
+import type { OAuthAppStrategyOptions, GitHubAppStrategyOptions, OAuthAppAuthInterface, GitHubAuthInterface } from "./types.js";
+export type { OAuthAppStrategyOptions, GitHubAppStrategyOptions, AppAuthOptions, WebFlowAuthOptions, OAuthAppDeviceFlowAuthOptions, GitHubAppDeviceFlowAuthOptions, OAuthAppAuthInterface, GitHubAuthInterface, AppAuthentication, OAuthAppUserAuthentication, GitHubAppUserAuthentication, GitHubAppUserAuthenticationWithExpiration, FactoryGitHubWebFlow, FactoryGitHubDeviceFlow, } from "./types.js";
+export { createOAuthUserAuth } from "@octokit/auth-oauth-user";
+export declare function createOAuthAppAuth(options: OAuthAppStrategyOptions): OAuthAppAuthInterface;
+export declare function createOAuthAppAuth(options: GitHubAppStrategyOptions): GitHubAuthInterface;
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-types/types.d.ts b/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-types/types.d.ts
new file mode 100644
index 000000000..fab74de6a
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-types/types.d.ts
@@ -0,0 +1,98 @@
+import type { EndpointOptions, RequestParameters, Route, RequestInterface, OctokitResponse } from "@octokit/types";
+import * as AuthOAuthUser from "@octokit/auth-oauth-user";
+import * as DeviceTypes from "@octokit/auth-oauth-device";
+export type ClientType = "oauth-app" | "github-app";
+export type OAuthAppStrategyOptions = {
+ clientType?: "oauth-app";
+ clientId: string;
+ clientSecret: string;
+ request?: RequestInterface;
+};
+export type GitHubAppStrategyOptions = {
+ clientType: "github-app";
+ clientId: string;
+ clientSecret: string;
+ request?: RequestInterface;
+};
+export type AppAuthOptions = {
+ type: "oauth-app";
+};
+export type WebFlowAuthOptions = {
+ type: "oauth-user";
+ code: string;
+ redirectUrl?: string;
+ state?: string;
+};
+export type OAuthAppDeviceFlowAuthOptions = {
+ type: "oauth-user";
+ onVerification: DeviceTypes.OAuthAppStrategyOptions["onVerification"];
+ scopes?: string[];
+};
+export type GitHubAppDeviceFlowAuthOptions = {
+ type: "oauth-user";
+ onVerification: DeviceTypes.OAuthAppStrategyOptions["onVerification"];
+};
+export type AppAuthentication = {
+ type: "oauth-app";
+ clientId: string;
+ clientSecret: string;
+ clientType: ClientType;
+ headers: {
+ authorization: string;
+ };
+};
+export type OAuthAppUserAuthentication = AuthOAuthUser.OAuthAppAuthentication;
+export type GitHubAppUserAuthentication = AuthOAuthUser.GitHubAppAuthentication;
+export type GitHubAppUserAuthenticationWithExpiration = AuthOAuthUser.GitHubAppAuthenticationWithExpiration;
+export type FactoryOAuthAppWebFlowOptions = OAuthAppStrategyOptions & Omit & {
+ clientType: "oauth-app";
+};
+export type FactoryOAuthAppDeviceFlowOptions = OAuthAppStrategyOptions & Omit & {
+ clientType: "oauth-app";
+};
+export type FactoryGitHubAppWebFlowOptions = GitHubAppStrategyOptions & Omit;
+export type FactoryGitHubAppDeviceFlowOptions = GitHubAppStrategyOptions & Omit;
+export interface FactoryOAuthAppWebFlow {
+ (options: FactoryOAuthAppWebFlowOptions): T;
+}
+export interface FactoryOAuthAppDeviceFlow {
+ (options: FactoryOAuthAppDeviceFlowOptions): T;
+}
+export interface FactoryGitHubWebFlow {
+ (options: FactoryGitHubAppWebFlowOptions): T;
+}
+export interface FactoryGitHubDeviceFlow {
+ (options: FactoryGitHubAppDeviceFlowOptions): T;
+}
+export interface OAuthAppAuthInterface {
+ (options: AppAuthOptions): Promise;
+ (options: WebFlowAuthOptions & {
+ factory: FactoryOAuthAppWebFlow;
+ }): Promise;
+ (options: OAuthAppDeviceFlowAuthOptions & {
+ factory: FactoryOAuthAppDeviceFlow;
+ }): Promise;
+ (options: WebFlowAuthOptions): Promise;
+ (options: OAuthAppDeviceFlowAuthOptions): Promise;
+ hook(request: RequestInterface, route: Route | EndpointOptions, parameters?: RequestParameters): Promise>;
+}
+export interface GitHubAuthInterface {
+ (options?: AppAuthOptions): Promise;
+ (options: WebFlowAuthOptions & {
+ factory: FactoryGitHubWebFlow;
+ }): Promise;
+ (options: GitHubAppDeviceFlowAuthOptions & {
+ factory: FactoryGitHubDeviceFlow;
+ }): Promise;
+ (options?: WebFlowAuthOptions): Promise;
+ (options?: GitHubAppDeviceFlowAuthOptions): Promise;
+ hook(request: RequestInterface, route: Route | EndpointOptions, parameters?: RequestParameters): Promise>;
+}
+export type OAuthAppState = OAuthAppStrategyOptions & {
+ clientType: "oauth-app";
+ request: RequestInterface;
+};
+export type GitHubAppState = GitHubAppStrategyOptions & {
+ clientType: "github-app";
+ request: RequestInterface;
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-types/version.d.ts b/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-types/version.d.ts
new file mode 100644
index 000000000..0aca66546
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-app/dist-types/version.d.ts
@@ -0,0 +1 @@
+export declare const VERSION = "8.1.1";
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-app/package.json b/.github/octokit/node_modules/@octokit/auth-oauth-app/package.json
new file mode 100644
index 000000000..aa053f1e4
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-app/package.json
@@ -0,0 +1,57 @@
+{
+ "name": "@octokit/auth-oauth-app",
+ "publishConfig": {
+ "access": "public",
+ "provenance": true
+ },
+ "type": "module",
+ "version": "8.1.1",
+ "description": "GitHub OAuth App authentication for JavaScript",
+ "repository": "github:octokit/auth-oauth-app.js",
+ "keywords": [
+ "github",
+ "octokit",
+ "authentication",
+ "oauth",
+ "api"
+ ],
+ "author": "Gregor Martynus (https://github.com/gr2m)",
+ "license": "MIT",
+ "dependencies": {
+ "@octokit/auth-oauth-device": "^7.0.0",
+ "@octokit/auth-oauth-user": "^5.0.1",
+ "@octokit/request": "^9.0.0",
+ "@octokit/types": "^13.0.0",
+ "universal-user-agent": "^7.0.0"
+ },
+ "devDependencies": {
+ "@octokit/core": "^6.0.0",
+ "@octokit/tsconfig": "^3.0.0",
+ "@types/fetch-mock": "^7.3.1",
+ "@types/jest": "^29.0.0",
+ "esbuild": "^0.20.0",
+ "fetch-mock": "npm:@gr2m/fetch-mock@9.11.0-pull-request-644.1",
+ "glob": "^10.2.7",
+ "jest": "^29.0.0",
+ "prettier": "3.2.5",
+ "semantic-release-plugin-update-version-in-files": "^1.0.0",
+ "ts-jest": "^29.1.0",
+ "typescript": "^5.3.0"
+ },
+ "engines": {
+ "node": ">= 18"
+ },
+ "files": [
+ "dist-*/**",
+ "bin/**"
+ ],
+ "types": "./dist-types/index.d.ts",
+ "exports": {
+ ".": {
+ "types": "./dist-types/index.d.ts",
+ "import": "./dist-bundle/index.js",
+ "default": "./dist-bundle/index.js"
+ }
+ },
+ "sideEffects": false
+}
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-device/LICENSE b/.github/octokit/node_modules/@octokit/auth-oauth-device/LICENSE
new file mode 100644
index 000000000..57049d04c
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-device/LICENSE
@@ -0,0 +1,9 @@
+MIT License
+
+Copyright (c) 2021 Octokit contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-device/README.md b/.github/octokit/node_modules/@octokit/auth-oauth-device/README.md
new file mode 100644
index 000000000..32249b769
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-device/README.md
@@ -0,0 +1,662 @@
+# auth-oauth-device.js
+
+> GitHub OAuth Device authentication strategy for JavaScript
+
+[![@latest](https://img.shields.io/npm/v/@octokit/auth-oauth-device.svg)](https://www.npmjs.com/package/@octokit/auth-oauth-device)
+[![Build Status](https://github.com/octokit/auth-oauth-device.js/workflows/Test/badge.svg)](https://github.com/octokit/auth-oauth-device.js/actions?query=workflow%3ATest+branch%3Amain)
+
+`@octokit/auth-oauth-device` is implementing one of [GitHub’s OAuth Device Flow](https://docs.github.com/en/developers/apps/authorizing-oauth-apps#device-flow).
+
+
+
+- [Usage](#usage)
+ - [For OAuth Apps](#for-oauth-apps)
+ - [For GitHub Apps](#for-github-apps)
+- [`createOAuthDeviceAuth(options)`](#createoauthdeviceauthoptions)
+- [`auth(options)`](#authoptions)
+- [Authentication object](#authentication-object)
+ - [OAuth APP user authentication](#oauth-app-user-authentication)
+ - [GitHub APP user authentication with expiring tokens disabled](#github-app-user-authentication-with-expiring-tokens-disabled)
+ - [GitHub APP user authentication with expiring tokens enabled](#github-app-user-authentication-with-expiring-tokens-enabled)
+- [`auth.hook(request, route, parameters)` or `auth.hook(request, options)`](#authhookrequest-route-parameters-or-authhookrequest-options)
+- [Types](#types)
+- [How it works](#how-it-works)
+- [Contributing](#contributing)
+- [License](#license)
+
+
+
+## Usage
+
+
+
+
+
+Browsers
+
+
+
+Load `@octokit/auth-oauth-device` directly from [esm.sh](https://esm.sh)
+
+```html
+
+```
+
+
+
+
+Node
+
+
+
+Install with `npm install @octokit/core @octokit/auth-oauth-device`
+
+```js
+import { createOAuthDeviceAuth } from "@octokit/auth-oauth-device";
+```
+
+
+
+
+
+> [!IMPORTANT]
+> As we use [conditional exports](https://nodejs.org/api/packages.html#conditional-exports), you will need to adapt your `tsconfig.json` by setting `"moduleResolution": "node16", "module": "node16"`.
+>
+> See the TypeScript docs on [package.json "exports"](https://www.typescriptlang.org/docs/handbook/modules/reference.html#packagejson-exports).
+> See this [helpful guide on transitioning to ESM](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c) from [@sindresorhus](https://github.com/sindresorhus)
+
+### For OAuth Apps
+
+```js
+const auth = createOAuthDeviceAuth({
+ clientType: "oauth-app",
+ clientId: "1234567890abcdef1234",
+ scopes: ["public_repo"],
+ onVerification(verification) {
+ // verification example
+ // {
+ // device_code: "3584d83530557fdd1f46af8289938c8ef79f9dc5",
+ // user_code: "WDJB-MJHT",
+ // verification_uri: "https://github.com/login/device",
+ // expires_in: 900,
+ // interval: 5,
+ // };
+
+ console.log("Open %s", verification.verification_uri);
+ console.log("Enter code: %s", verification.user_code);
+ },
+});
+
+const tokenAuthentication = await auth({
+ type: "oauth",
+});
+// resolves with
+// {
+// type: "token",
+// tokenType: "oauth",
+// clientType: "oauth-app",
+// clientId: "1234567890abcdef1234",
+// token: "...", /* the created oauth token */
+// scopes: [] /* depend on request scopes by OAuth app */
+// }
+```
+
+### For GitHub Apps
+
+GitHub Apps do not support `scopes`. Client IDs of GitHub Apps have a `lv1.` prefix. If the GitHub App has expiring user tokens enabled, the resulting `authentication` object has extra properties related to expiration and refreshing the token.
+
+```js
+const auth = createOAuthDeviceAuth({
+ clientType: "github-app",
+ clientId: "lv1.1234567890abcdef",
+ onVerification(verification) {
+ // verification example
+ // {
+ // device_code: "3584d83530557fdd1f46af8289938c8ef79f9dc5",
+ // user_code: "WDJB-MJHT",
+ // verification_uri: "https://github.com/login/device",
+ // expires_in: 900,
+ // interval: 5,
+ // };
+
+ console.log("Open %s", verification.verification_uri);
+ console.log("Enter code: %s", verification.user_code);
+ },
+});
+
+const tokenAuthentication = await auth({
+ type: "oauth",
+});
+// resolves with
+// {
+// type: "token",
+// tokenType: "oauth",
+// clientType: "github-app",
+// clientId: "lv1.1234567890abcdef",
+// token: "...", /* the created oauth token */
+// }
+// or if expiring user tokens are enabled
+// {
+// type: "token",
+// tokenType: "oauth",
+// clientType: "github-app",
+// clientId: "lv1.1234567890abcdef",
+// token: "...", /* the created oauth token */
+// refreshToken: "...",
+// expiresAt: "2022-01-01T08:00:0.000Z",
+// refreshTokenExpiresAt: "2021-07-01T00:00:0.000Z",
+// }
+```
+
+## `createOAuthDeviceAuth(options)`
+
+The `createOAuthDeviceAuth` method accepts a single `options` parameter
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ clientId
+
+
+ string
+
+
+ Required . Find your OAuth app’s Client ID
in your account’s developer settings.
+
+
+
+
+ onVerification
+
+
+ function
+
+
+ Required . A function that is called once the device and user codes were retrieved
+
+The `onVerification()` callback can be used to pause until the user completes step 2, which might result in a better user experience.
+
+```js
+const auth = createOAuthDeviceAuth({
+ clientId: "1234567890abcdef1234",
+ onVerification(verification) {
+ console.log("Open %s", verification.verification_uri);
+ console.log("Enter code: %s", verification.user_code);
+
+ await prompt("press enter when you are ready to continue");
+ },
+});
+```
+
+
+
+
+
+ clientType
+
+
+ string
+
+
+
+Must be either `oauth-app` or `github-app`. Defaults to `oauth-app`.
+
+
+
+
+
+ request
+
+
+ function
+
+
+ You can pass in your own @octokit/request
instance. For usage with enterprise, set baseUrl
to the API root endpoint. Example:
+
+```js
+import { request } from "@octokit/request";
+createOAuthDeviceAuth({
+ clientId: "1234567890abcdef1234",
+ clientSecret: "secret",
+ request: request.defaults({
+ baseUrl: "https://ghe.my-company.com/api/v3",
+ }),
+});
+```
+
+
+
+
+ scopes
+
+
+ array of strings
+
+
+
+Only relevant if `clientType` is set to `"oauth-app"`.
+
+Array of scope names enabled for the token. Defaults to `[]`. See [available scopes](https://docs.github.com/en/developers/apps/scopes-for-oauth-apps#available-scopes).
+
+
+
+
+
+
+## `auth(options)`
+
+The async `auth()` method returned by `createOAuthDeviceAuth(options)` accepts the following options
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ Required. Must be set to "oauth"
+
+
+
+
+ scopes
+
+
+ array of strings
+
+
+
+Only relevant if the `clientType` strategy options was set to `"oauth-app"`
+
+Array of scope names enabled for the token. Defaults to what was set in the [strategy options](#createoauthdeviceauthoptions). See available scopes
+
+
+
+
+
+ refresh
+
+
+ boolean
+
+
+
+Defaults to `false`. When set to `false`, calling `auth(options)` will resolve with a token that was previously created for the same scopes if it exists. If set to `true` a new token will always be created.
+
+
+
+
+
+
+## Authentication object
+
+The async `auth(options)` method resolves to one of three possible objects
+
+1. OAuth APP user authentication
+1. GitHub APP user authentication with expiring tokens disabled
+1. GitHub APP user authentication with expiring tokens enabled
+
+The differences are
+
+1. `scopes` is only present for OAuth Apps
+2. `refreshToken`, `expiresAt`, `refreshTokenExpiresAt` are only present for GitHub Apps, and only if token expiration is enabled
+
+### OAuth APP user authentication
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ "token"
+
+
+
+
+ tokenType
+
+
+ string
+
+
+ "oauth"
+
+
+
+
+ clientType
+
+
+ string
+
+
+ "github-app"
+
+
+
+
+ clientId
+
+
+ string
+
+
+ The app's Client ID
+
+
+
+
+ token
+
+
+ string
+
+
+ The personal access token
+
+
+
+
+ scopes
+
+
+ array of strings
+
+
+ array of scope names enabled for the token
+
+
+
+
+
+### GitHub APP user authentication with expiring tokens disabled
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ "token"
+
+
+
+
+ tokenType
+
+
+ string
+
+
+ "oauth"
+
+
+
+
+ clientType
+
+
+ string
+
+
+ "github-app"
+
+
+
+
+ clientId
+
+
+ string
+
+
+ The app's Client ID
+
+
+
+
+ token
+
+
+ string
+
+
+ The personal access token
+
+
+
+
+
+### GitHub APP user authentication with expiring tokens enabled
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ "token"
+
+
+
+
+ tokenType
+
+
+ string
+
+
+ "oauth"
+
+
+
+
+ clientType
+
+
+ string
+
+
+ "github-app"
+
+
+
+
+ clientId
+
+
+ string
+
+
+ The app's Client ID
+
+
+
+
+ token
+
+
+ string
+
+
+ The user access token
+
+
+
+
+ refreshToken
+
+
+ string
+
+
+ The refresh token
+
+
+
+
+ expiresAt
+
+
+ string
+
+
+ Date timestamp in ISO 8601 standard. Example: 2022-01-01T08:00:0.000Z
+
+
+
+
+ refreshTokenExpiresAt
+
+
+ string
+
+
+ Date timestamp in ISO 8601 standard. Example: 2021-07-01T00:00:0.000Z
+
+
+
+
+
+## `auth.hook(request, route, parameters)` or `auth.hook(request, options)`
+
+`auth.hook()` hooks directly into the request life cycle. It amends the request to authenticate correctly based on the request URL.
+
+The `request` option is an instance of [`@octokit/request`](https://github.com/octokit/request.js#readme). The `route`/`options` parameters are the same as for the [`request()` method](https://github.com/octokit/request.js#request).
+
+`auth.hook()` can be called directly to send an authenticated request
+
+```js
+const { data: user } = await auth.hook(request, "GET /user");
+```
+
+Or it can be passed as option to [`request()`](https://github.com/octokit/request.js#request).
+
+```js
+const requestWithAuth = request.defaults({
+ request: {
+ hook: auth.hook,
+ },
+});
+
+const { data: user } = await requestWithAuth("GET /user");
+```
+
+## Types
+
+```ts
+import {
+ OAuthAppStrategyOptions,
+ OAuthAppAuthOptions,
+ OAuthAppAuthentication,
+ GitHubAppStrategyOptions,
+ GitHubAppAuthOptions,
+ GitHubAppAuthentication,
+ GitHubAppAuthenticationWithExpiration,
+} from "@octokit/auth-oauth-device";
+```
+
+## How it works
+
+GitHub's OAuth Device flow is different from the web flow in two ways
+
+1. It does not require a URL redirect, which makes it great for devices and CLI apps
+2. It does not require the OAuth client secret, which means there is no user-owned server component required.
+
+The flow has 3 parts (see [GitHub documentation](https://docs.github.com/en/developers/apps/authorizing-oauth-apps#device-flow))
+
+1. `@octokit/auth-oauth-device` requests a device and user code
+2. Then the user has to open https://github.com/login/device (or it's GitHub Enterprise Server equivalent) and enter the user code
+3. While the user enters the code, `@octokit/auth-oauth-device` is sending requests in the background to retrieve the OAuth access token. Once the user completed step 2, the request will succeed and the token will be returned
+
+## Contributing
+
+See [CONTRIBUTING.md](CONTRIBUTING.md)
+
+## License
+
+[MIT](LICENSE)
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-bundle/index.js b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-bundle/index.js
new file mode 100644
index 000000000..b2805fb2d
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-bundle/index.js
@@ -0,0 +1,142 @@
+// pkg/dist-src/index.js
+import { getUserAgent } from "universal-user-agent";
+import { request as octokitRequest } from "@octokit/request";
+
+// pkg/dist-src/get-oauth-access-token.js
+import { createDeviceCode, exchangeDeviceCode } from "@octokit/oauth-methods";
+async function getOAuthAccessToken(state, options) {
+ const cachedAuthentication = getCachedAuthentication(state, options.auth);
+ if (cachedAuthentication)
+ return cachedAuthentication;
+ const { data: verification } = await createDeviceCode({
+ clientType: state.clientType,
+ clientId: state.clientId,
+ request: options.request || state.request,
+ // @ts-expect-error the extra code to make TS happy is not worth it
+ scopes: options.auth.scopes || state.scopes
+ });
+ await state.onVerification(verification);
+ const authentication = await waitForAccessToken(
+ options.request || state.request,
+ state.clientId,
+ state.clientType,
+ verification
+ );
+ state.authentication = authentication;
+ return authentication;
+}
+function getCachedAuthentication(state, auth2) {
+ if (auth2.refresh === true)
+ return false;
+ if (!state.authentication)
+ return false;
+ if (state.clientType === "github-app") {
+ return state.authentication;
+ }
+ const authentication = state.authentication;
+ const newScope = ("scopes" in auth2 && auth2.scopes || state.scopes).join(
+ " "
+ );
+ const currentScope = authentication.scopes.join(" ");
+ return newScope === currentScope ? authentication : false;
+}
+async function wait(seconds) {
+ await new Promise((resolve) => setTimeout(resolve, seconds * 1e3));
+}
+async function waitForAccessToken(request, clientId, clientType, verification) {
+ try {
+ const options = {
+ clientId,
+ request,
+ code: verification.device_code
+ };
+ const { authentication } = clientType === "oauth-app" ? await exchangeDeviceCode({
+ ...options,
+ clientType: "oauth-app"
+ }) : await exchangeDeviceCode({
+ ...options,
+ clientType: "github-app"
+ });
+ return {
+ type: "token",
+ tokenType: "oauth",
+ ...authentication
+ };
+ } catch (error) {
+ if (!error.response)
+ throw error;
+ const errorType = error.response.data.error;
+ if (errorType === "authorization_pending") {
+ await wait(verification.interval);
+ return waitForAccessToken(request, clientId, clientType, verification);
+ }
+ if (errorType === "slow_down") {
+ await wait(verification.interval + 5);
+ return waitForAccessToken(request, clientId, clientType, verification);
+ }
+ throw error;
+ }
+}
+
+// pkg/dist-src/auth.js
+async function auth(state, authOptions) {
+ return getOAuthAccessToken(state, {
+ auth: authOptions
+ });
+}
+
+// pkg/dist-src/hook.js
+async function hook(state, request, route, parameters) {
+ let endpoint = request.endpoint.merge(
+ route,
+ parameters
+ );
+ if (/\/login\/(oauth\/access_token|device\/code)$/.test(endpoint.url)) {
+ return request(endpoint);
+ }
+ const { token } = await getOAuthAccessToken(state, {
+ request,
+ auth: { type: "oauth" }
+ });
+ endpoint.headers.authorization = `token ${token}`;
+ return request(endpoint);
+}
+
+// pkg/dist-src/version.js
+var VERSION = "0.0.0-development";
+
+// pkg/dist-src/index.js
+function createOAuthDeviceAuth(options) {
+ const requestWithDefaults = options.request || octokitRequest.defaults({
+ headers: {
+ "user-agent": `octokit-auth-oauth-device.js/${VERSION} ${getUserAgent()}`
+ }
+ });
+ const { request = requestWithDefaults, ...otherOptions } = options;
+ const state = options.clientType === "github-app" ? {
+ ...otherOptions,
+ clientType: "github-app",
+ request
+ } : {
+ ...otherOptions,
+ clientType: "oauth-app",
+ request,
+ scopes: options.scopes || []
+ };
+ if (!options.clientId) {
+ throw new Error(
+ '[@octokit/auth-oauth-device] "clientId" option must be set (https://github.com/octokit/auth-oauth-device.js#usage)'
+ );
+ }
+ if (!options.onVerification) {
+ throw new Error(
+ '[@octokit/auth-oauth-device] "onVerification" option must be a function (https://github.com/octokit/auth-oauth-device.js#usage)'
+ );
+ }
+ return Object.assign(auth.bind(null, state), {
+ hook: hook.bind(null, state)
+ });
+}
+export {
+ createOAuthDeviceAuth
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-bundle/index.js.map b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-bundle/index.js.map
new file mode 100644
index 000000000..5d7eda3ec
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-bundle/index.js.map
@@ -0,0 +1,7 @@
+{
+ "version": 3,
+ "sources": ["../dist-src/index.js", "../dist-src/get-oauth-access-token.js", "../dist-src/auth.js", "../dist-src/hook.js", "../dist-src/version.js"],
+ "sourcesContent": ["import { getUserAgent } from \"universal-user-agent\";\nimport { request as octokitRequest } from \"@octokit/request\";\nimport { auth } from \"./auth.js\";\nimport { hook } from \"./hook.js\";\nimport { VERSION } from \"./version.js\";\nfunction createOAuthDeviceAuth(options) {\n const requestWithDefaults = options.request || octokitRequest.defaults({\n headers: {\n \"user-agent\": `octokit-auth-oauth-device.js/${VERSION} ${getUserAgent()}`\n }\n });\n const { request = requestWithDefaults, ...otherOptions } = options;\n const state = options.clientType === \"github-app\" ? {\n ...otherOptions,\n clientType: \"github-app\",\n request\n } : {\n ...otherOptions,\n clientType: \"oauth-app\",\n request,\n scopes: options.scopes || []\n };\n if (!options.clientId) {\n throw new Error(\n '[@octokit/auth-oauth-device] \"clientId\" option must be set (https://github.com/octokit/auth-oauth-device.js#usage)'\n );\n }\n if (!options.onVerification) {\n throw new Error(\n '[@octokit/auth-oauth-device] \"onVerification\" option must be a function (https://github.com/octokit/auth-oauth-device.js#usage)'\n );\n }\n return Object.assign(auth.bind(null, state), {\n hook: hook.bind(null, state)\n });\n}\nexport {\n createOAuthDeviceAuth\n};\n", "import { createDeviceCode, exchangeDeviceCode } from \"@octokit/oauth-methods\";\nasync function getOAuthAccessToken(state, options) {\n const cachedAuthentication = getCachedAuthentication(state, options.auth);\n if (cachedAuthentication)\n return cachedAuthentication;\n const { data: verification } = await createDeviceCode({\n clientType: state.clientType,\n clientId: state.clientId,\n request: options.request || state.request,\n // @ts-expect-error the extra code to make TS happy is not worth it\n scopes: options.auth.scopes || state.scopes\n });\n await state.onVerification(verification);\n const authentication = await waitForAccessToken(\n options.request || state.request,\n state.clientId,\n state.clientType,\n verification\n );\n state.authentication = authentication;\n return authentication;\n}\nfunction getCachedAuthentication(state, auth) {\n if (auth.refresh === true)\n return false;\n if (!state.authentication)\n return false;\n if (state.clientType === \"github-app\") {\n return state.authentication;\n }\n const authentication = state.authentication;\n const newScope = (\"scopes\" in auth && auth.scopes || state.scopes).join(\n \" \"\n );\n const currentScope = authentication.scopes.join(\" \");\n return newScope === currentScope ? authentication : false;\n}\nasync function wait(seconds) {\n await new Promise((resolve) => setTimeout(resolve, seconds * 1e3));\n}\nasync function waitForAccessToken(request, clientId, clientType, verification) {\n try {\n const options = {\n clientId,\n request,\n code: verification.device_code\n };\n const { authentication } = clientType === \"oauth-app\" ? await exchangeDeviceCode({\n ...options,\n clientType: \"oauth-app\"\n }) : await exchangeDeviceCode({\n ...options,\n clientType: \"github-app\"\n });\n return {\n type: \"token\",\n tokenType: \"oauth\",\n ...authentication\n };\n } catch (error) {\n if (!error.response)\n throw error;\n const errorType = error.response.data.error;\n if (errorType === \"authorization_pending\") {\n await wait(verification.interval);\n return waitForAccessToken(request, clientId, clientType, verification);\n }\n if (errorType === \"slow_down\") {\n await wait(verification.interval + 5);\n return waitForAccessToken(request, clientId, clientType, verification);\n }\n throw error;\n }\n}\nexport {\n getOAuthAccessToken\n};\n", "import { getOAuthAccessToken } from \"./get-oauth-access-token.js\";\nasync function auth(state, authOptions) {\n return getOAuthAccessToken(state, {\n auth: authOptions\n });\n}\nexport {\n auth\n};\n", "import { getOAuthAccessToken } from \"./get-oauth-access-token.js\";\nasync function hook(state, request, route, parameters) {\n let endpoint = request.endpoint.merge(\n route,\n parameters\n );\n if (/\\/login\\/(oauth\\/access_token|device\\/code)$/.test(endpoint.url)) {\n return request(endpoint);\n }\n const { token } = await getOAuthAccessToken(state, {\n request,\n auth: { type: \"oauth\" }\n });\n endpoint.headers.authorization = `token ${token}`;\n return request(endpoint);\n}\nexport {\n hook\n};\n", "const VERSION = \"0.0.0-development\";\nexport {\n VERSION\n};\n"],
+ "mappings": ";AAAA,SAAS,oBAAoB;AAC7B,SAAS,WAAW,sBAAsB;;;ACD1C,SAAS,kBAAkB,0BAA0B;AACrD,eAAe,oBAAoB,OAAO,SAAS;AACjD,QAAM,uBAAuB,wBAAwB,OAAO,QAAQ,IAAI;AACxE,MAAI;AACF,WAAO;AACT,QAAM,EAAE,MAAM,aAAa,IAAI,MAAM,iBAAiB;AAAA,IACpD,YAAY,MAAM;AAAA,IAClB,UAAU,MAAM;AAAA,IAChB,SAAS,QAAQ,WAAW,MAAM;AAAA;AAAA,IAElC,QAAQ,QAAQ,KAAK,UAAU,MAAM;AAAA,EACvC,CAAC;AACD,QAAM,MAAM,eAAe,YAAY;AACvC,QAAM,iBAAiB,MAAM;AAAA,IAC3B,QAAQ,WAAW,MAAM;AAAA,IACzB,MAAM;AAAA,IACN,MAAM;AAAA,IACN;AAAA,EACF;AACA,QAAM,iBAAiB;AACvB,SAAO;AACT;AACA,SAAS,wBAAwB,OAAOA,OAAM;AAC5C,MAAIA,MAAK,YAAY;AACnB,WAAO;AACT,MAAI,CAAC,MAAM;AACT,WAAO;AACT,MAAI,MAAM,eAAe,cAAc;AACrC,WAAO,MAAM;AAAA,EACf;AACA,QAAM,iBAAiB,MAAM;AAC7B,QAAM,YAAY,YAAYA,SAAQA,MAAK,UAAU,MAAM,QAAQ;AAAA,IACjE;AAAA,EACF;AACA,QAAM,eAAe,eAAe,OAAO,KAAK,GAAG;AACnD,SAAO,aAAa,eAAe,iBAAiB;AACtD;AACA,eAAe,KAAK,SAAS;AAC3B,QAAM,IAAI,QAAQ,CAAC,YAAY,WAAW,SAAS,UAAU,GAAG,CAAC;AACnE;AACA,eAAe,mBAAmB,SAAS,UAAU,YAAY,cAAc;AAC7E,MAAI;AACF,UAAM,UAAU;AAAA,MACd;AAAA,MACA;AAAA,MACA,MAAM,aAAa;AAAA,IACrB;AACA,UAAM,EAAE,eAAe,IAAI,eAAe,cAAc,MAAM,mBAAmB;AAAA,MAC/E,GAAG;AAAA,MACH,YAAY;AAAA,IACd,CAAC,IAAI,MAAM,mBAAmB;AAAA,MAC5B,GAAG;AAAA,MACH,YAAY;AAAA,IACd,CAAC;AACD,WAAO;AAAA,MACL,MAAM;AAAA,MACN,WAAW;AAAA,MACX,GAAG;AAAA,IACL;AAAA,EACF,SAAS,OAAO;AACd,QAAI,CAAC,MAAM;AACT,YAAM;AACR,UAAM,YAAY,MAAM,SAAS,KAAK;AACtC,QAAI,cAAc,yBAAyB;AACzC,YAAM,KAAK,aAAa,QAAQ;AAChC,aAAO,mBAAmB,SAAS,UAAU,YAAY,YAAY;AAAA,IACvE;AACA,QAAI,cAAc,aAAa;AAC7B,YAAM,KAAK,aAAa,WAAW,CAAC;AACpC,aAAO,mBAAmB,SAAS,UAAU,YAAY,YAAY;AAAA,IACvE;AACA,UAAM;AAAA,EACR;AACF;;;ACxEA,eAAe,KAAK,OAAO,aAAa;AACtC,SAAO,oBAAoB,OAAO;AAAA,IAChC,MAAM;AAAA,EACR,CAAC;AACH;;;ACJA,eAAe,KAAK,OAAO,SAAS,OAAO,YAAY;AACrD,MAAI,WAAW,QAAQ,SAAS;AAAA,IAC9B;AAAA,IACA;AAAA,EACF;AACA,MAAI,+CAA+C,KAAK,SAAS,GAAG,GAAG;AACrE,WAAO,QAAQ,QAAQ;AAAA,EACzB;AACA,QAAM,EAAE,MAAM,IAAI,MAAM,oBAAoB,OAAO;AAAA,IACjD;AAAA,IACA,MAAM,EAAE,MAAM,QAAQ;AAAA,EACxB,CAAC;AACD,WAAS,QAAQ,gBAAgB,SAAS,KAAK;AAC/C,SAAO,QAAQ,QAAQ;AACzB;;;ACfA,IAAM,UAAU;;;AJKhB,SAAS,sBAAsB,SAAS;AACtC,QAAM,sBAAsB,QAAQ,WAAW,eAAe,SAAS;AAAA,IACrE,SAAS;AAAA,MACP,cAAc,gCAAgC,OAAO,IAAI,aAAa,CAAC;AAAA,IACzE;AAAA,EACF,CAAC;AACD,QAAM,EAAE,UAAU,qBAAqB,GAAG,aAAa,IAAI;AAC3D,QAAM,QAAQ,QAAQ,eAAe,eAAe;AAAA,IAClD,GAAG;AAAA,IACH,YAAY;AAAA,IACZ;AAAA,EACF,IAAI;AAAA,IACF,GAAG;AAAA,IACH,YAAY;AAAA,IACZ;AAAA,IACA,QAAQ,QAAQ,UAAU,CAAC;AAAA,EAC7B;AACA,MAAI,CAAC,QAAQ,UAAU;AACrB,UAAM,IAAI;AAAA,MACR;AAAA,IACF;AAAA,EACF;AACA,MAAI,CAAC,QAAQ,gBAAgB;AAC3B,UAAM,IAAI;AAAA,MACR;AAAA,IACF;AAAA,EACF;AACA,SAAO,OAAO,OAAO,KAAK,KAAK,MAAM,KAAK,GAAG;AAAA,IAC3C,MAAM,KAAK,KAAK,MAAM,KAAK;AAAA,EAC7B,CAAC;AACH;",
+ "names": ["auth"]
+}
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-src/auth.js b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-src/auth.js
new file mode 100644
index 000000000..2ce4b0ac8
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-src/auth.js
@@ -0,0 +1,9 @@
+import { getOAuthAccessToken } from "./get-oauth-access-token.js";
+async function auth(state, authOptions) {
+ return getOAuthAccessToken(state, {
+ auth: authOptions
+ });
+}
+export {
+ auth
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-src/get-oauth-access-token.js b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-src/get-oauth-access-token.js
new file mode 100644
index 000000000..2002734cb
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-src/get-oauth-access-token.js
@@ -0,0 +1,77 @@
+import { createDeviceCode, exchangeDeviceCode } from "@octokit/oauth-methods";
+async function getOAuthAccessToken(state, options) {
+ const cachedAuthentication = getCachedAuthentication(state, options.auth);
+ if (cachedAuthentication)
+ return cachedAuthentication;
+ const { data: verification } = await createDeviceCode({
+ clientType: state.clientType,
+ clientId: state.clientId,
+ request: options.request || state.request,
+ // @ts-expect-error the extra code to make TS happy is not worth it
+ scopes: options.auth.scopes || state.scopes
+ });
+ await state.onVerification(verification);
+ const authentication = await waitForAccessToken(
+ options.request || state.request,
+ state.clientId,
+ state.clientType,
+ verification
+ );
+ state.authentication = authentication;
+ return authentication;
+}
+function getCachedAuthentication(state, auth) {
+ if (auth.refresh === true)
+ return false;
+ if (!state.authentication)
+ return false;
+ if (state.clientType === "github-app") {
+ return state.authentication;
+ }
+ const authentication = state.authentication;
+ const newScope = ("scopes" in auth && auth.scopes || state.scopes).join(
+ " "
+ );
+ const currentScope = authentication.scopes.join(" ");
+ return newScope === currentScope ? authentication : false;
+}
+async function wait(seconds) {
+ await new Promise((resolve) => setTimeout(resolve, seconds * 1e3));
+}
+async function waitForAccessToken(request, clientId, clientType, verification) {
+ try {
+ const options = {
+ clientId,
+ request,
+ code: verification.device_code
+ };
+ const { authentication } = clientType === "oauth-app" ? await exchangeDeviceCode({
+ ...options,
+ clientType: "oauth-app"
+ }) : await exchangeDeviceCode({
+ ...options,
+ clientType: "github-app"
+ });
+ return {
+ type: "token",
+ tokenType: "oauth",
+ ...authentication
+ };
+ } catch (error) {
+ if (!error.response)
+ throw error;
+ const errorType = error.response.data.error;
+ if (errorType === "authorization_pending") {
+ await wait(verification.interval);
+ return waitForAccessToken(request, clientId, clientType, verification);
+ }
+ if (errorType === "slow_down") {
+ await wait(verification.interval + 5);
+ return waitForAccessToken(request, clientId, clientType, verification);
+ }
+ throw error;
+ }
+}
+export {
+ getOAuthAccessToken
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-src/hook.js b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-src/hook.js
new file mode 100644
index 000000000..511d2f614
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-src/hook.js
@@ -0,0 +1,19 @@
+import { getOAuthAccessToken } from "./get-oauth-access-token.js";
+async function hook(state, request, route, parameters) {
+ let endpoint = request.endpoint.merge(
+ route,
+ parameters
+ );
+ if (/\/login\/(oauth\/access_token|device\/code)$/.test(endpoint.url)) {
+ return request(endpoint);
+ }
+ const { token } = await getOAuthAccessToken(state, {
+ request,
+ auth: { type: "oauth" }
+ });
+ endpoint.headers.authorization = `token ${token}`;
+ return request(endpoint);
+}
+export {
+ hook
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-src/index.js b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-src/index.js
new file mode 100644
index 000000000..989b6fe57
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-src/index.js
@@ -0,0 +1,39 @@
+import { getUserAgent } from "universal-user-agent";
+import { request as octokitRequest } from "@octokit/request";
+import { auth } from "./auth.js";
+import { hook } from "./hook.js";
+import { VERSION } from "./version.js";
+function createOAuthDeviceAuth(options) {
+ const requestWithDefaults = options.request || octokitRequest.defaults({
+ headers: {
+ "user-agent": `octokit-auth-oauth-device.js/${VERSION} ${getUserAgent()}`
+ }
+ });
+ const { request = requestWithDefaults, ...otherOptions } = options;
+ const state = options.clientType === "github-app" ? {
+ ...otherOptions,
+ clientType: "github-app",
+ request
+ } : {
+ ...otherOptions,
+ clientType: "oauth-app",
+ request,
+ scopes: options.scopes || []
+ };
+ if (!options.clientId) {
+ throw new Error(
+ '[@octokit/auth-oauth-device] "clientId" option must be set (https://github.com/octokit/auth-oauth-device.js#usage)'
+ );
+ }
+ if (!options.onVerification) {
+ throw new Error(
+ '[@octokit/auth-oauth-device] "onVerification" option must be a function (https://github.com/octokit/auth-oauth-device.js#usage)'
+ );
+ }
+ return Object.assign(auth.bind(null, state), {
+ hook: hook.bind(null, state)
+ });
+}
+export {
+ createOAuthDeviceAuth
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-src/version.js b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-src/version.js
new file mode 100644
index 000000000..75aca5056
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-src/version.js
@@ -0,0 +1,4 @@
+const VERSION = "7.1.1";
+export {
+ VERSION
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-types/auth.d.ts b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-types/auth.d.ts
new file mode 100644
index 000000000..e9067b20f
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-types/auth.d.ts
@@ -0,0 +1,2 @@
+import type { OAuthAppAuthOptions, GitHubAppAuthOptions, OAuthAppAuthentication, GitHubAppAuthentication, OAuthAppState, GitHubAppState } from "./types.js";
+export declare function auth(state: OAuthAppState | GitHubAppState, authOptions: OAuthAppAuthOptions | GitHubAppAuthOptions): Promise;
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-types/get-oauth-access-token.d.ts b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-types/get-oauth-access-token.d.ts
new file mode 100644
index 000000000..ac6e16c0a
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-types/get-oauth-access-token.d.ts
@@ -0,0 +1,6 @@
+import type { RequestInterface } from "@octokit/types";
+import type { OAuthAppState, GitHubAppState, OAuthAppAuthOptions, GitHubAppAuthOptions, OAuthAppAuthentication, GitHubAppAuthentication } from "./types.js";
+export declare function getOAuthAccessToken(state: OAuthAppState | GitHubAppState, options: {
+ request?: RequestInterface;
+ auth: OAuthAppAuthOptions | GitHubAppAuthOptions;
+}): Promise;
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-types/hook.d.ts b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-types/hook.d.ts
new file mode 100644
index 000000000..12fe06425
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-types/hook.d.ts
@@ -0,0 +1,3 @@
+import type { RequestInterface, OctokitResponse, EndpointOptions, RequestParameters, Route } from "@octokit/types";
+import type { OAuthAppState, GitHubAppState } from "./types.js";
+export declare function hook(state: OAuthAppState | GitHubAppState, request: RequestInterface, route: Route | EndpointOptions, parameters?: RequestParameters): Promise>;
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-types/index.d.ts b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-types/index.d.ts
new file mode 100644
index 000000000..63f64cbf0
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-types/index.d.ts
@@ -0,0 +1,4 @@
+import type { GitHubAppAuthInterface, GitHubAppStrategyOptions, OAuthAppAuthInterface, OAuthAppStrategyOptions } from "./types.js";
+export type { OAuthAppStrategyOptions, OAuthAppAuthOptions, OAuthAppAuthentication, GitHubAppStrategyOptions, GitHubAppAuthOptions, GitHubAppAuthentication, GitHubAppAuthenticationWithExpiration, } from "./types.js";
+export declare function createOAuthDeviceAuth(options: OAuthAppStrategyOptions): OAuthAppAuthInterface;
+export declare function createOAuthDeviceAuth(options: GitHubAppStrategyOptions): GitHubAppAuthInterface;
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-types/types.d.ts b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-types/types.d.ts
new file mode 100644
index 000000000..1b8f86941
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-types/types.d.ts
@@ -0,0 +1,68 @@
+import type { RequestInterface, Route, EndpointOptions, RequestParameters, OctokitResponse } from "@octokit/types";
+import * as OAuthMethodsTypes from "@octokit/oauth-methods";
+export type ClientType = "oauth-app" | "github-app";
+export type OAuthAppStrategyOptions = {
+ clientId: string;
+ clientType?: "oauth-app";
+ onVerification: OnVerificationCallback;
+ scopes?: string[];
+ request?: RequestInterface;
+};
+export type GitHubAppStrategyOptions = {
+ clientId: string;
+ clientType: "github-app";
+ onVerification: OnVerificationCallback;
+ request?: RequestInterface;
+};
+export interface OAuthAppAuthInterface {
+ (options: OAuthAppAuthOptions): Promise;
+ hook(request: RequestInterface, route: Route | EndpointOptions, parameters?: RequestParameters): Promise>;
+}
+export interface GitHubAppAuthInterface {
+ (options: GitHubAppAuthOptions): Promise;
+ hook(request: RequestInterface, route: Route | EndpointOptions, parameters?: RequestParameters): Promise>;
+}
+export type OAuthAppAuthOptions = {
+ type: "oauth";
+ scopes?: string[];
+ refresh?: boolean;
+};
+export type GitHubAppAuthOptions = {
+ type: "oauth";
+ refresh?: boolean;
+};
+export type OAuthAppAuthentication = {
+ type: "token";
+ tokenType: "oauth";
+} & Omit;
+export type GitHubAppAuthentication = {
+ type: "token";
+ tokenType: "oauth";
+} & Omit;
+export type GitHubAppAuthenticationWithExpiration = {
+ type: "token";
+ tokenType: "oauth";
+} & Omit;
+export type Verification = {
+ device_code: string;
+ user_code: string;
+ verification_uri: string;
+ expires_in: number;
+ interval: number;
+};
+export type OnVerificationCallback = (verification: Verification) => any | Promise;
+export type OAuthAppState = {
+ clientId: string;
+ clientType: "oauth-app";
+ onVerification: OnVerificationCallback;
+ scopes: string[];
+ request: RequestInterface;
+ authentication?: OAuthAppAuthentication;
+};
+export type GitHubAppState = {
+ clientId: string;
+ clientType: "github-app";
+ onVerification: OnVerificationCallback;
+ request: RequestInterface;
+ authentication?: GitHubAppAuthentication | GitHubAppAuthenticationWithExpiration;
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-types/version.d.ts b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-types/version.d.ts
new file mode 100644
index 000000000..76a73422d
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-device/dist-types/version.d.ts
@@ -0,0 +1 @@
+export declare const VERSION = "7.1.1";
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-device/package.json b/.github/octokit/node_modules/@octokit/auth-oauth-device/package.json
new file mode 100644
index 000000000..8075efea1
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-device/package.json
@@ -0,0 +1,55 @@
+{
+ "name": "@octokit/auth-oauth-device",
+ "version": "7.1.1",
+ "description": "GitHub OAuth Device authentication strategy for JavaScript",
+ "type": "module",
+ "repository": "github:octokit/auth-oauth-device.js",
+ "keywords": [
+ "github",
+ "api",
+ "sdk",
+ "toolkit"
+ ],
+ "author": "Gregor Martynus (https://dev.to/gr2m)",
+ "license": "MIT",
+ "dependencies": {
+ "@octokit/oauth-methods": "^5.0.0",
+ "@octokit/request": "^9.0.0",
+ "@octokit/types": "^13.0.0",
+ "universal-user-agent": "^7.0.0"
+ },
+ "devDependencies": {
+ "@octokit/tsconfig": "^3.0.0",
+ "@types/jest": "^29.0.0",
+ "@types/node": "^20.0.0",
+ "esbuild": "^0.20.0",
+ "fetch-mock": "npm:@gr2m/fetch-mock@9.11.0-pull-request-644.1",
+ "glob": "^10.2.7",
+ "jest": "^29.0.0",
+ "prettier": "3.2.5",
+ "semantic-release": "^23.0.0",
+ "semantic-release-plugin-update-version-in-files": "^1.1.0",
+ "ts-jest": "^29.0.0",
+ "typescript": "^5.0.0"
+ },
+ "publishConfig": {
+ "access": "public",
+ "provenance": true
+ },
+ "engines": {
+ "node": ">= 18"
+ },
+ "files": [
+ "dist-*/**",
+ "bin/**"
+ ],
+ "types": "./dist-types/index.d.ts",
+ "exports": {
+ ".": {
+ "types": "./dist-types/index.d.ts",
+ "import": "./dist-bundle/index.js",
+ "default": "./dist-bundle/index.js"
+ }
+ },
+ "sideEffects": false
+}
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-user/LICENSE b/.github/octokit/node_modules/@octokit/auth-oauth-user/LICENSE
new file mode 100644
index 000000000..57049d04c
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-user/LICENSE
@@ -0,0 +1,9 @@
+MIT License
+
+Copyright (c) 2021 Octokit contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-user/README.md b/.github/octokit/node_modules/@octokit/auth-oauth-user/README.md
new file mode 100644
index 000000000..95e08ec1b
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-user/README.md
@@ -0,0 +1,1038 @@
+# auth-oauth-user.js
+
+> Octokit authentication strategy for OAuth user authentication
+
+[![@latest](https://img.shields.io/npm/v/@octokit/auth-oauth-user.svg)](https://www.npmjs.com/package/@octokit/auth-oauth-user)
+[![Build Status](https://github.com/octokit/auth-oauth-user.js/workflows/Test/badge.svg)](https://github.com/octokit/auth-oauth-user.js/actions?query=workflow%3ATest+branch%3Amain)
+
+**Important:** `@octokit/auth-oauth-user` requires your app's `client_secret`, which must not be exposed. If you are looking for an OAuth user authentication strategy that can be used on a client (browser, IoT, CLI), check out [`@octokit/auth-oauth-user-client`](https://github.com/octokit/auth-oauth-user-client.js#readme). Note that `@octokit/auth-oauth-user-client` requires a backend. The only exception is [`@octokit/auth-oauth-device`](https://github.com/octokit/auth-oauth-device.js#readme) which does not require the `client_secret`, but does not work in browsers due to CORS constraints.
+
+
+Table of contents
+
+
+
+- [Features](#features)
+- [Standalone usage](#standalone-usage)
+ - [Exchange code from OAuth web flow](#exchange-code-from-oauth-web-flow)
+ - [OAuth Device flow](#oauth-device-flow)
+ - [Use an existing authentication](#use-an-existing-authentication)
+- [Usage with Octokit](#usage-with-octokit)
+- [`createOAuthUserAuth(options)` or `new Octokit({ auth })`](#createoauthuserauthoptions-or-new-octokit-auth-)
+ - [When using GitHub's OAuth web flow](#when-using-githubs-oauth-web-flow)
+ - [When using GitHub's OAuth device flow](#when-using-githubs-oauth-device-flow)
+ - [When passing an existing authentication object](#when-passing-an-existing-authentication-object)
+- [`auth(options)` or `octokit.auth(options)`](#authoptions-or-octokitauthoptions)
+- [Authentication object](#authentication-object)
+ - [OAuth APP authentication token](#oauth-app-authentication-token)
+ - [GitHub APP user authentication token with expiring disabled](#github-app-user-authentication-token-with-expiring-disabled)
+ - [GitHub APP user authentication token with expiring enabled](#github-app-user-authentication-token-with-expiring-enabled)
+- [`auth.hook(request, route, parameters)` or `auth.hook(request, options)`](#authhookrequest-route-parameters-or-authhookrequest-options)
+- [Types](#types)
+- [Contributing](#contributing)
+- [License](#license)
+
+
+
+
+
+## Features
+
+- Code for token exchange from [GitHub's OAuth web flow](https://docs.github.com/en/developers/apps/authorizing-oauth-apps#web-application-flow)
+- [GitHub's OAuth device flow](https://docs.github.com/en/developers/apps/authorizing-oauth-apps#device-flow)
+- Caches token for succesive calls
+- Auto-refreshing for [expiring user access tokens](https://docs.github.com/en/developers/apps/refreshing-user-to-server-access-tokens)
+- Applies the correct authentication strategy based on the request URL when using with `Octokit`
+- Token verification
+- Token reset
+- Token invalidation
+- Application grant revocation
+
+## Standalone usage
+
+
+
+
+
+Browsers
+
+
+
+Load `@octokit/auth-oauth-user` directly from [esm.sh](https://esm.sh)
+
+```html
+
+```
+
+
+
+
+Node
+
+
+
+Install with `npm install @octokit/auth-oauth-user`
+
+```js
+import { createOAuthUserAuth } from "@octokit/auth-oauth-user";
+```
+
+
+
+
+
+### Exchange code from OAuth web flow
+
+```js
+const auth = createOAuthUserAuth({
+ clientId: "1234567890abcdef1234",
+ clientSecret: "1234567890abcdef1234567890abcdef12345678",
+ code: "code123",
+ // optional
+ state: "state123",
+ redirectUrl: "https://acme-inc.com/login",
+});
+
+// Exchanges the code for the user access token authentication on first call
+// and caches the authentication for successive calls
+const { token } = await auth();
+```
+
+About [GitHub's OAuth web flow](https://docs.github.com/en/developers/apps/authorizing-oauth-apps#web-application-flow)
+
+### OAuth Device flow
+
+```js
+const auth = createOAuthUserAuth({
+ clientId: "1234567890abcdef1234",
+ clientSecret: "1234567890abcdef1234567890abcdef12345678",
+ onVerification(verification) {
+ // verification example
+ // {
+ // device_code: "3584d83530557fdd1f46af8289938c8ef79f9dc5",
+ // user_code: "WDJB-MJHT",
+ // verification_uri: "https://github.com/login/device",
+ // expires_in: 900,
+ // interval: 5,
+ // };
+
+ console.log("Open %s", verification.verification_uri);
+ console.log("Enter code: %s", verification.user_code);
+ },
+});
+
+// resolves once the user entered the `user_code` on `verification_uri`
+const { token } = await auth();
+```
+
+About [GitHub's OAuth device flow](https://docs.github.com/en/developers/apps/authorizing-oauth-apps#device-flow)
+
+### Use an existing authentication
+
+```js
+const auth = createOAuthUserAuth({
+ clientId: "1234567890abcdef1234",
+ clientSecret: "1234567890abcdef1234567890abcdef12345678",
+ clientType: "oauth-app",
+ token: "token123",
+});
+
+// will return the passed authentication
+const { token } = await auth();
+```
+
+See [Authentication object](#authentication-object).
+
+## Usage with Octokit
+
+
+
+
+
+Browsers
+
+
+
+`@octokit/auth-oauth-user` cannot be used in the browser. It requires `clientSecret` to be set which must not be exposed to clients, and some of the OAuth APIs it uses do not support CORS.
+
+
+
+
+Node
+
+
+
+Install with `npm install @octokit/core @octokit/auth-oauth-user`. Optionally replace `@octokit/core` with a compatible module
+
+```js
+import { Octokit } from "@octokit/core";
+import { createOAuthUserAuth } from "@octokit/auth-oauth-user";
+```
+
+
+
+
+
+```js
+const octokit = new Octokit({
+ authStrategy: createOAuthUserAuth,
+ auth: {
+ clientId: "1234567890abcdef1234",
+ clientSecret: "1234567890abcdef1234567890abcdef12345678",
+ code: "code123",
+ },
+});
+
+// Exchanges the code for the user access token authentication on first request
+// and caches the authentication for successive requests
+const {
+ data: { login },
+} = await octokit.request("GET /user");
+console.log("Hello, %s!", login);
+```
+
+## `createOAuthUserAuth(options)` or `new Octokit({ auth })`
+
+The `createOAuthUserAuth` method accepts a single `options` object as argument. The same set of options can be passed as `auth` to the `Octokit` constructor when setting `authStrategy: createOAuthUserAuth`
+
+### When using GitHub's OAuth web flow
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ clientId
+
+
+ string
+
+
+ Required . Client ID of your GitHub/OAuth App. Find it on your app's settings page.
+
+
+
+
+ clientSecret
+
+
+ string
+
+
+ Required . Client Secret for your GitHub/OAuth App. Create one on your app's settings page.
+
+
+
+
+ clientType
+
+
+ string
+
+
+ Either "oauth-app"
or "github-app"
. Defaults to "oauth-app"
.
+
+
+
+
+ code
+
+
+ string
+
+
+
+**Required.** The authorization code which was passed as query parameter to the callback URL from [GitHub's OAuth web application flow](https://docs.github.com/en/developers/apps/authorizing-oauth-apps#web-application-flow).
+
+
+
+
+
+ state
+
+
+ string
+
+
+
+The unguessable random string you provided in [Step 1 of GitHub's OAuth web application flow](https://docs.github.com/en/developers/apps/authorizing-oauth-apps#1-request-a-users-github-identity).
+
+
+
+
+
+ redirectUrl
+
+
+ string
+
+
+
+The redirect_uri
parameter you provided in [Step 1 of GitHub's OAuth web application flow](https://docs.github.com/en/developers/apps/authorizing-oauth-apps#1-request-a-users-github-identity).
+
+
+
+
+
+ request
+
+
+ function
+
+
+ You can pass in your own @octokit/request
instance. For usage with enterprise, set baseUrl
to the API root endpoint. Example:
+
+```js
+import { request } from "@octokit/request";
+createOAuthAppAuth({
+ clientId: "1234567890abcdef1234",
+ clientSecret: "1234567890abcdef1234567890abcdef12345678",
+ request: request.defaults({
+ baseUrl: "https://ghe.my-company.com/api/v3",
+ }),
+});
+```
+
+
+
+
+
+
+### When using GitHub's OAuth device flow
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ clientId
+
+
+ string
+
+
+ Required . Client ID of your GitHub/OAuth App. Find it on your app's settings page.
+
+
+
+
+ clientSecret
+
+
+ string
+
+
+ Required . Client Secret for your GitHub/OAuth App. The clientSecret
is not needed for the OAuth device flow itself, but it is required for resetting, refreshing, and invalidating a token. Find the Client Secret on your app's settings page.
+
+
+
+
+ clientType
+
+
+ string
+
+
+ Either "oauth-app"
or "github-app"
. Defaults to "oauth-app"
.
+
+
+
+
+ onVerification
+
+
+ function
+
+
+
+**Required**. A function that is called once the device and user codes were retrieved
+
+The `onVerification()` callback can be used to pause until the user completes step 2, which might result in a better user experience.
+
+```js
+const auth = createOAuthUserAuth({
+ clientId: "1234567890abcdef1234",
+ clientSecret: "1234567890abcdef1234567890abcdef12345678",
+ onVerification(verification) {
+ console.log("Open %s", verification.verification_uri);
+ console.log("Enter code: %s", verification.user_code);
+
+ await prompt("press enter when you are ready to continue");
+ },
+});
+```
+
+
+
+
+
+ request
+
+
+ function
+
+
+ You can pass in your own @octokit/request
instance. For usage with enterprise, set baseUrl
to the API root endpoint. Example:
+
+```js
+import { request } from "@octokit/request";
+createOAuthAppAuth({
+ clientId: "1234567890abcdef1234",
+ clientSecret: "1234567890abcdef1234567890abcdef12345678",
+ onVerification(verification) {
+ console.log("Open %s", verification.verification_uri);
+ console.log("Enter code: %s", verification.user_code);
+
+ await prompt("press enter when you are ready to continue");
+ },
+ request: request.defaults({
+ baseUrl: "https://ghe.my-company.com/api/v3",
+ }),
+});
+```
+
+
+
+
+
+
+### When passing an existing authentication object
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ clientType
+
+
+ string
+
+
+ Required . Either "oauth-app"
or "github"
.
+
+
+
+
+ clientId
+
+
+ string
+
+
+ Required . Client ID of your GitHub/OAuth App. Find it on your app's settings page.
+
+
+
+
+ clientSecret
+
+
+ string
+
+
+ Required . Client Secret for your GitHub/OAuth App. Create one on your app's settings page.
+
+
+
+
+ token
+
+
+ string
+
+
+ Required . The user access token
+
+
+
+
+ scopes
+
+
+ array of strings
+
+
+ Required if clientType
is set to "oauth-app"
. Array of OAuth scope names the token was granted
+
+
+
+
+ refreshToken
+
+
+ string
+
+
+ Only relevant if clientType
is set to "github-app"
and token expiration is enabled.
+
+
+
+
+ expiresAt
+
+
+ string
+
+
+ Only relevant if clientType
is set to "github-app"
and token expiration is enabled. Date timestamp in ISO 8601 standard. Example: 2022-01-01T08:00:0.000Z
+
+
+
+
+
+ refreshTokenExpiresAt
+
+
+ string
+
+
+ Only relevant if clientType
is set to "github-app"
and token expiration is enabled. Date timestamp in ISO 8601 standard. Example: 2021-07-01T00:00:0.000Z
+
+
+
+
+ request
+
+
+ function
+
+
+ You can pass in your own @octokit/request
instance. For usage with enterprise, set baseUrl
to the API root endpoint. Example:
+
+```js
+import { request } from "@octokit/request";
+createOAuthAppAuth({
+ clientId: "1234567890abcdef1234",
+ clientSecret: "1234567890abcdef1234567890abcdef12345678",
+ request: request.defaults({
+ baseUrl: "https://ghe.my-company.com/api/v3",
+ }),
+});
+```
+
+
+
+
+
+
+> [!IMPORTANT]
+> As we use [conditional exports](https://nodejs.org/api/packages.html#conditional-exports), you will need to adapt your `tsconfig.json` by setting `"moduleResolution": "node16", "module": "node16"`.
+>
+> See the TypeScript docs on [package.json "exports"](https://www.typescriptlang.org/docs/handbook/modules/reference.html#packagejson-exports).
+> See this [helpful guide on transitioning to ESM](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c) from [@sindresorhus](https://github.com/sindresorhus)
+
+## `auth(options)` or `octokit.auth(options)`
+
+The async `auth()` method is returned by `createOAuthUserAuth(options)` or set on the `octokit` instance when the `Octokit` constructor was called with `authStrategy: createOAuthUserAuth`.
+
+Once `auth()` receives a valid authentication object it caches it in memory and uses it for subsequent calls. It also caches if the token is invalid and no longer tries to send any requests. If the authentication is using a refresh token, a new token will be requested as needed. Calling `auth({ type: "reset" })` will replace the internally cached authentication.
+
+Resolves with an [authentication object](#authentication-object).
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+
+Without setting `type` auth will return the current authentication object, or exchange the `code` from the strategy options on first call. If the current authentication token is expired, the tokens will be refreshed.
+
+Possible values for `type` are
+
+- `"get"`: returns the token from internal state and creates it if none was created yet
+- `"check"`: sends request to verify the validity of the current token
+- `"reset"`: invalidates current token and replaces it with a new one
+- `"refresh"`: GitHub Apps only, and only if expiring user tokens are enabled.
+- `"delete"`: invalidates current token
+- `"deleteAuthorization"`: revokes OAuth access for application. All tokens for the current user created by the same app are invalidated. The user will be prompted to grant access again during the next OAuth web flow.
+
+
+
+
+
+
+## Authentication object
+
+There are three possible results
+
+1. [OAuth APP authentication token](#oauth-app-authentication-token)
+1. [GitHub APP user authentication token with expiring disabled](#github-app-user-authentication-token-with-expiring-disabled)
+1. [GitHub APP user authentication token with expiring enabled](#github-app-user-authentication-token-with-expiring-enabled)
+
+The differences are
+
+1. `scopes` is only present for OAuth Apps
+2. `refreshToken`, `expiresAt`, `refreshTokenExpiresAt` are only present for GitHub Apps, and only if token expiration is enabled
+
+### OAuth APP authentication token
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ "token"
+
+
+
+
+ tokenType
+
+
+ string
+
+
+ "oauth"
+
+
+
+
+ clientType
+
+
+ string
+
+
+ "oauth-app"
+
+
+
+
+ clientId
+
+
+ string
+
+
+ The clientId
from the strategy options
+
+
+
+
+ clientSecret
+
+
+ string
+
+
+ The clientSecret
from the strategy options
+
+
+
+
+ token
+
+
+ string
+
+
+ The user access token
+
+
+
+
+ scopes
+
+
+ array of strings
+
+
+ array of scope names enabled for the token
+
+
+
+
+ onTokenCreated
+
+
+ function
+
+
+ callback invoked when a token is "reset" or "refreshed"
+
+
+
+
+ invalid
+
+
+ boolean
+
+
+
+Either `undefined` or `true`. Will be set to `true` if the token was invalided explicitly or found to be invalid
+
+
+
+
+
+
+### GitHub APP user authentication token with expiring disabled
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ "token"
+
+
+
+
+ tokenType
+
+
+ string
+
+
+ "oauth"
+
+
+
+
+ clientType
+
+
+ string
+
+
+ "github-app"
+
+
+
+
+ clientId
+
+
+ string
+
+
+ The clientId
from the strategy options
+
+
+
+
+ clientSecret
+
+
+ string
+
+
+ The clientSecret
from the strategy options
+
+
+
+
+ token
+
+
+ string
+
+
+ The user access token
+
+
+
+
+ onTokenCreated
+
+
+ function
+
+
+ callback invoked when a token is "reset" or "refreshed"
+
+
+
+
+ invalid
+
+
+ boolean
+
+
+
+Either `undefined` or `true`. Will be set to `true` if the token was invalided explicitly or found to be invalid
+
+
+
+
+
+
+### GitHub APP user authentication token with expiring enabled
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ "token"
+
+
+
+
+ tokenType
+
+
+ string
+
+
+ "oauth"
+
+
+
+
+ clientType
+
+
+ string
+
+
+ "github-app"
+
+
+
+
+ clientId
+
+
+ string
+
+
+ The clientId
from the strategy options
+
+
+
+
+ clientSecret
+
+
+ string
+
+
+ The clientSecret
from the strategy options
+
+
+
+
+ token
+
+
+ string
+
+
+ The user access token
+
+
+
+
+ refreshToken
+
+
+ string
+
+
+ The refresh token
+
+
+
+
+ expiresAt
+
+
+ string
+
+
+ Date timestamp in ISO 8601 standard. Example: 2022-01-01T08:00:0.000Z
+
+
+
+
+ refreshTokenExpiresAt
+
+
+ string
+
+
+ Date timestamp in ISO 8601 standard. Example: 2021-07-01T00:00:0.000Z
+
+
+
+
+ invalid
+
+
+ boolean
+
+
+
+Either `undefined` or `true`. Will be set to `true` if the token was invalided explicitly or found to be invalid
+
+
+
+
+
+
+## `auth.hook(request, route, parameters)` or `auth.hook(request, options)`
+
+`auth.hook()` hooks directly into the request life cycle. It amends the request to authenticate correctly based on the request URL.
+
+The `request` option is an instance of [`@octokit/request`](https://github.com/octokit/request.js#readme). The `route`/`options` parameters are the same as for the [`request()` method](https://github.com/octokit/request.js#request).
+
+`auth.hook()` can be called directly to send an authenticated request
+
+```js
+const { data: user } = await auth.hook(request, "GET /user");
+```
+
+Or it can be passed as option to [`request()`](https://github.com/octokit/request.js#request).
+
+```js
+const requestWithAuth = request.defaults({
+ request: {
+ hook: auth.hook,
+ },
+});
+
+const { data: user } = await requestWithAuth("GET /user");
+```
+
+## Types
+
+```ts
+import {
+ GitHubAppAuthentication,
+ GitHubAppAuthenticationWithExpiration,
+ GitHubAppAuthOptions,
+ GitHubAppStrategyOptions,
+ GitHubAppStrategyOptionsDeviceFlow,
+ GitHubAppStrategyOptionsExistingAuthentication,
+ GitHubAppStrategyOptionsExistingAuthenticationWithExpiration,
+ GitHubAppStrategyOptionsWebFlow,
+ OAuthAppAuthentication,
+ OAuthAppAuthOptions,
+ OAuthAppStrategyOptions,
+ OAuthAppStrategyOptionsDeviceFlow,
+ OAuthAppStrategyOptionsExistingAuthentication,
+ OAuthAppStrategyOptionsWebFlow,
+} from "@octokit/auth-oauth-user";
+```
+
+## Contributing
+
+See [CONTRIBUTING.md](CONTRIBUTING.md)
+
+## License
+
+[MIT](LICENSE)
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-bundle/index.js b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-bundle/index.js
new file mode 100644
index 000000000..17769a425
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-bundle/index.js
@@ -0,0 +1,209 @@
+// pkg/dist-src/index.js
+import { getUserAgent } from "universal-user-agent";
+import { request as octokitRequest } from "@octokit/request";
+
+// pkg/dist-src/version.js
+var VERSION = "0.0.0-development";
+
+// pkg/dist-src/get-authentication.js
+import { createOAuthDeviceAuth } from "@octokit/auth-oauth-device";
+import { exchangeWebFlowCode } from "@octokit/oauth-methods";
+async function getAuthentication(state) {
+ if ("code" in state.strategyOptions) {
+ const { authentication } = await exchangeWebFlowCode({
+ clientId: state.clientId,
+ clientSecret: state.clientSecret,
+ clientType: state.clientType,
+ onTokenCreated: state.onTokenCreated,
+ ...state.strategyOptions,
+ request: state.request
+ });
+ return {
+ type: "token",
+ tokenType: "oauth",
+ ...authentication
+ };
+ }
+ if ("onVerification" in state.strategyOptions) {
+ const deviceAuth = createOAuthDeviceAuth({
+ clientType: state.clientType,
+ clientId: state.clientId,
+ onTokenCreated: state.onTokenCreated,
+ ...state.strategyOptions,
+ request: state.request
+ });
+ const authentication = await deviceAuth({
+ type: "oauth"
+ });
+ return {
+ clientSecret: state.clientSecret,
+ ...authentication
+ };
+ }
+ if ("token" in state.strategyOptions) {
+ return {
+ type: "token",
+ tokenType: "oauth",
+ clientId: state.clientId,
+ clientSecret: state.clientSecret,
+ clientType: state.clientType,
+ onTokenCreated: state.onTokenCreated,
+ ...state.strategyOptions
+ };
+ }
+ throw new Error("[@octokit/auth-oauth-user] Invalid strategy options");
+}
+
+// pkg/dist-src/auth.js
+import {
+ checkToken,
+ deleteAuthorization,
+ deleteToken,
+ refreshToken,
+ resetToken
+} from "@octokit/oauth-methods";
+async function auth(state, options = {}) {
+ if (!state.authentication) {
+ state.authentication = state.clientType === "oauth-app" ? await getAuthentication(state) : await getAuthentication(state);
+ }
+ if (state.authentication.invalid) {
+ throw new Error("[@octokit/auth-oauth-user] Token is invalid");
+ }
+ const currentAuthentication = state.authentication;
+ if ("expiresAt" in currentAuthentication) {
+ if (options.type === "refresh" || new Date(currentAuthentication.expiresAt) < /* @__PURE__ */ new Date()) {
+ const { authentication } = await refreshToken({
+ clientType: "github-app",
+ clientId: state.clientId,
+ clientSecret: state.clientSecret,
+ refreshToken: currentAuthentication.refreshToken,
+ request: state.request
+ });
+ state.authentication = {
+ tokenType: "oauth",
+ type: "token",
+ ...authentication
+ };
+ }
+ }
+ if (options.type === "refresh") {
+ if (state.clientType === "oauth-app") {
+ throw new Error(
+ "[@octokit/auth-oauth-user] OAuth Apps do not support expiring tokens"
+ );
+ }
+ if (!currentAuthentication.hasOwnProperty("expiresAt")) {
+ throw new Error("[@octokit/auth-oauth-user] Refresh token missing");
+ }
+ await state.onTokenCreated?.(state.authentication, {
+ type: options.type
+ });
+ }
+ if (options.type === "check" || options.type === "reset") {
+ const method = options.type === "check" ? checkToken : resetToken;
+ try {
+ const { authentication } = await method({
+ // @ts-expect-error making TS happy would require unnecessary code so no
+ clientType: state.clientType,
+ clientId: state.clientId,
+ clientSecret: state.clientSecret,
+ token: state.authentication.token,
+ request: state.request
+ });
+ state.authentication = {
+ tokenType: "oauth",
+ type: "token",
+ // @ts-expect-error TBD
+ ...authentication
+ };
+ if (options.type === "reset") {
+ await state.onTokenCreated?.(state.authentication, {
+ type: options.type
+ });
+ }
+ return state.authentication;
+ } catch (error) {
+ if (error.status === 404) {
+ error.message = "[@octokit/auth-oauth-user] Token is invalid";
+ state.authentication.invalid = true;
+ }
+ throw error;
+ }
+ }
+ if (options.type === "delete" || options.type === "deleteAuthorization") {
+ const method = options.type === "delete" ? deleteToken : deleteAuthorization;
+ try {
+ await method({
+ // @ts-expect-error making TS happy would require unnecessary code so no
+ clientType: state.clientType,
+ clientId: state.clientId,
+ clientSecret: state.clientSecret,
+ token: state.authentication.token,
+ request: state.request
+ });
+ } catch (error) {
+ if (error.status !== 404)
+ throw error;
+ }
+ state.authentication.invalid = true;
+ return state.authentication;
+ }
+ return state.authentication;
+}
+
+// pkg/dist-src/requires-basic-auth.js
+var ROUTES_REQUIRING_BASIC_AUTH = /\/applications\/[^/]+\/(token|grant)s?/;
+function requiresBasicAuth(url) {
+ return url && ROUTES_REQUIRING_BASIC_AUTH.test(url);
+}
+
+// pkg/dist-src/hook.js
+async function hook(state, request, route, parameters = {}) {
+ const endpoint = request.endpoint.merge(
+ route,
+ parameters
+ );
+ if (/\/login\/(oauth\/access_token|device\/code)$/.test(endpoint.url)) {
+ return request(endpoint);
+ }
+ if (requiresBasicAuth(endpoint.url)) {
+ const credentials = btoa(`${state.clientId}:${state.clientSecret}`);
+ endpoint.headers.authorization = `basic ${credentials}`;
+ return request(endpoint);
+ }
+ const { token } = state.clientType === "oauth-app" ? await auth({ ...state, request }) : await auth({ ...state, request });
+ endpoint.headers.authorization = "token " + token;
+ return request(endpoint);
+}
+
+// pkg/dist-src/index.js
+function createOAuthUserAuth({
+ clientId,
+ clientSecret,
+ clientType = "oauth-app",
+ request = octokitRequest.defaults({
+ headers: {
+ "user-agent": `octokit-auth-oauth-app.js/${VERSION} ${getUserAgent()}`
+ }
+ }),
+ onTokenCreated,
+ ...strategyOptions
+}) {
+ const state = Object.assign({
+ clientType,
+ clientId,
+ clientSecret,
+ onTokenCreated,
+ strategyOptions,
+ request
+ });
+ return Object.assign(auth.bind(null, state), {
+ // @ts-expect-error not worth the extra code needed to appease TS
+ hook: hook.bind(null, state)
+ });
+}
+createOAuthUserAuth.VERSION = VERSION;
+export {
+ createOAuthUserAuth,
+ requiresBasicAuth
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-bundle/index.js.map b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-bundle/index.js.map
new file mode 100644
index 000000000..0ba8e4ffb
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-bundle/index.js.map
@@ -0,0 +1,7 @@
+{
+ "version": 3,
+ "sources": ["../dist-src/index.js", "../dist-src/version.js", "../dist-src/get-authentication.js", "../dist-src/auth.js", "../dist-src/requires-basic-auth.js", "../dist-src/hook.js"],
+ "sourcesContent": ["import { getUserAgent } from \"universal-user-agent\";\nimport { request as octokitRequest } from \"@octokit/request\";\nimport { VERSION } from \"./version.js\";\nimport { auth } from \"./auth.js\";\nimport { hook } from \"./hook.js\";\nimport { requiresBasicAuth } from \"./requires-basic-auth.js\";\nfunction createOAuthUserAuth({\n clientId,\n clientSecret,\n clientType = \"oauth-app\",\n request = octokitRequest.defaults({\n headers: {\n \"user-agent\": `octokit-auth-oauth-app.js/${VERSION} ${getUserAgent()}`\n }\n }),\n onTokenCreated,\n ...strategyOptions\n}) {\n const state = Object.assign({\n clientType,\n clientId,\n clientSecret,\n onTokenCreated,\n strategyOptions,\n request\n });\n return Object.assign(auth.bind(null, state), {\n // @ts-expect-error not worth the extra code needed to appease TS\n hook: hook.bind(null, state)\n });\n}\ncreateOAuthUserAuth.VERSION = VERSION;\nexport {\n createOAuthUserAuth,\n requiresBasicAuth\n};\n", "const VERSION = \"0.0.0-development\";\nexport {\n VERSION\n};\n", "import { createOAuthDeviceAuth } from \"@octokit/auth-oauth-device\";\nimport { exchangeWebFlowCode } from \"@octokit/oauth-methods\";\nasync function getAuthentication(state) {\n if (\"code\" in state.strategyOptions) {\n const { authentication } = await exchangeWebFlowCode({\n clientId: state.clientId,\n clientSecret: state.clientSecret,\n clientType: state.clientType,\n onTokenCreated: state.onTokenCreated,\n ...state.strategyOptions,\n request: state.request\n });\n return {\n type: \"token\",\n tokenType: \"oauth\",\n ...authentication\n };\n }\n if (\"onVerification\" in state.strategyOptions) {\n const deviceAuth = createOAuthDeviceAuth({\n clientType: state.clientType,\n clientId: state.clientId,\n onTokenCreated: state.onTokenCreated,\n ...state.strategyOptions,\n request: state.request\n });\n const authentication = await deviceAuth({\n type: \"oauth\"\n });\n return {\n clientSecret: state.clientSecret,\n ...authentication\n };\n }\n if (\"token\" in state.strategyOptions) {\n return {\n type: \"token\",\n tokenType: \"oauth\",\n clientId: state.clientId,\n clientSecret: state.clientSecret,\n clientType: state.clientType,\n onTokenCreated: state.onTokenCreated,\n ...state.strategyOptions\n };\n }\n throw new Error(\"[@octokit/auth-oauth-user] Invalid strategy options\");\n}\nexport {\n getAuthentication\n};\n", "import { getAuthentication } from \"./get-authentication.js\";\nimport {\n checkToken,\n deleteAuthorization,\n deleteToken,\n refreshToken,\n resetToken\n} from \"@octokit/oauth-methods\";\nasync function auth(state, options = {}) {\n if (!state.authentication) {\n state.authentication = state.clientType === \"oauth-app\" ? await getAuthentication(state) : await getAuthentication(state);\n }\n if (state.authentication.invalid) {\n throw new Error(\"[@octokit/auth-oauth-user] Token is invalid\");\n }\n const currentAuthentication = state.authentication;\n if (\"expiresAt\" in currentAuthentication) {\n if (options.type === \"refresh\" || new Date(currentAuthentication.expiresAt) < /* @__PURE__ */ new Date()) {\n const { authentication } = await refreshToken({\n clientType: \"github-app\",\n clientId: state.clientId,\n clientSecret: state.clientSecret,\n refreshToken: currentAuthentication.refreshToken,\n request: state.request\n });\n state.authentication = {\n tokenType: \"oauth\",\n type: \"token\",\n ...authentication\n };\n }\n }\n if (options.type === \"refresh\") {\n if (state.clientType === \"oauth-app\") {\n throw new Error(\n \"[@octokit/auth-oauth-user] OAuth Apps do not support expiring tokens\"\n );\n }\n if (!currentAuthentication.hasOwnProperty(\"expiresAt\")) {\n throw new Error(\"[@octokit/auth-oauth-user] Refresh token missing\");\n }\n await state.onTokenCreated?.(state.authentication, {\n type: options.type\n });\n }\n if (options.type === \"check\" || options.type === \"reset\") {\n const method = options.type === \"check\" ? checkToken : resetToken;\n try {\n const { authentication } = await method({\n // @ts-expect-error making TS happy would require unnecessary code so no\n clientType: state.clientType,\n clientId: state.clientId,\n clientSecret: state.clientSecret,\n token: state.authentication.token,\n request: state.request\n });\n state.authentication = {\n tokenType: \"oauth\",\n type: \"token\",\n // @ts-expect-error TBD\n ...authentication\n };\n if (options.type === \"reset\") {\n await state.onTokenCreated?.(state.authentication, {\n type: options.type\n });\n }\n return state.authentication;\n } catch (error) {\n if (error.status === 404) {\n error.message = \"[@octokit/auth-oauth-user] Token is invalid\";\n state.authentication.invalid = true;\n }\n throw error;\n }\n }\n if (options.type === \"delete\" || options.type === \"deleteAuthorization\") {\n const method = options.type === \"delete\" ? deleteToken : deleteAuthorization;\n try {\n await method({\n // @ts-expect-error making TS happy would require unnecessary code so no\n clientType: state.clientType,\n clientId: state.clientId,\n clientSecret: state.clientSecret,\n token: state.authentication.token,\n request: state.request\n });\n } catch (error) {\n if (error.status !== 404)\n throw error;\n }\n state.authentication.invalid = true;\n return state.authentication;\n }\n return state.authentication;\n}\nexport {\n auth\n};\n", "const ROUTES_REQUIRING_BASIC_AUTH = /\\/applications\\/[^/]+\\/(token|grant)s?/;\nfunction requiresBasicAuth(url) {\n return url && ROUTES_REQUIRING_BASIC_AUTH.test(url);\n}\nexport {\n requiresBasicAuth\n};\n", "import { auth } from \"./auth.js\";\nimport { requiresBasicAuth } from \"./requires-basic-auth.js\";\nasync function hook(state, request, route, parameters = {}) {\n const endpoint = request.endpoint.merge(\n route,\n parameters\n );\n if (/\\/login\\/(oauth\\/access_token|device\\/code)$/.test(endpoint.url)) {\n return request(endpoint);\n }\n if (requiresBasicAuth(endpoint.url)) {\n const credentials = btoa(`${state.clientId}:${state.clientSecret}`);\n endpoint.headers.authorization = `basic ${credentials}`;\n return request(endpoint);\n }\n const { token } = state.clientType === \"oauth-app\" ? await auth({ ...state, request }) : await auth({ ...state, request });\n endpoint.headers.authorization = \"token \" + token;\n return request(endpoint);\n}\nexport {\n hook\n};\n"],
+ "mappings": ";AAAA,SAAS,oBAAoB;AAC7B,SAAS,WAAW,sBAAsB;;;ACD1C,IAAM,UAAU;;;ACAhB,SAAS,6BAA6B;AACtC,SAAS,2BAA2B;AACpC,eAAe,kBAAkB,OAAO;AACtC,MAAI,UAAU,MAAM,iBAAiB;AACnC,UAAM,EAAE,eAAe,IAAI,MAAM,oBAAoB;AAAA,MACnD,UAAU,MAAM;AAAA,MAChB,cAAc,MAAM;AAAA,MACpB,YAAY,MAAM;AAAA,MAClB,gBAAgB,MAAM;AAAA,MACtB,GAAG,MAAM;AAAA,MACT,SAAS,MAAM;AAAA,IACjB,CAAC;AACD,WAAO;AAAA,MACL,MAAM;AAAA,MACN,WAAW;AAAA,MACX,GAAG;AAAA,IACL;AAAA,EACF;AACA,MAAI,oBAAoB,MAAM,iBAAiB;AAC7C,UAAM,aAAa,sBAAsB;AAAA,MACvC,YAAY,MAAM;AAAA,MAClB,UAAU,MAAM;AAAA,MAChB,gBAAgB,MAAM;AAAA,MACtB,GAAG,MAAM;AAAA,MACT,SAAS,MAAM;AAAA,IACjB,CAAC;AACD,UAAM,iBAAiB,MAAM,WAAW;AAAA,MACtC,MAAM;AAAA,IACR,CAAC;AACD,WAAO;AAAA,MACL,cAAc,MAAM;AAAA,MACpB,GAAG;AAAA,IACL;AAAA,EACF;AACA,MAAI,WAAW,MAAM,iBAAiB;AACpC,WAAO;AAAA,MACL,MAAM;AAAA,MACN,WAAW;AAAA,MACX,UAAU,MAAM;AAAA,MAChB,cAAc,MAAM;AAAA,MACpB,YAAY,MAAM;AAAA,MAClB,gBAAgB,MAAM;AAAA,MACtB,GAAG,MAAM;AAAA,IACX;AAAA,EACF;AACA,QAAM,IAAI,MAAM,qDAAqD;AACvE;;;AC7CA;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AACP,eAAe,KAAK,OAAO,UAAU,CAAC,GAAG;AACvC,MAAI,CAAC,MAAM,gBAAgB;AACzB,UAAM,iBAAiB,MAAM,eAAe,cAAc,MAAM,kBAAkB,KAAK,IAAI,MAAM,kBAAkB,KAAK;AAAA,EAC1H;AACA,MAAI,MAAM,eAAe,SAAS;AAChC,UAAM,IAAI,MAAM,6CAA6C;AAAA,EAC/D;AACA,QAAM,wBAAwB,MAAM;AACpC,MAAI,eAAe,uBAAuB;AACxC,QAAI,QAAQ,SAAS,aAAa,IAAI,KAAK,sBAAsB,SAAS,IAAoB,oBAAI,KAAK,GAAG;AACxG,YAAM,EAAE,eAAe,IAAI,MAAM,aAAa;AAAA,QAC5C,YAAY;AAAA,QACZ,UAAU,MAAM;AAAA,QAChB,cAAc,MAAM;AAAA,QACpB,cAAc,sBAAsB;AAAA,QACpC,SAAS,MAAM;AAAA,MACjB,CAAC;AACD,YAAM,iBAAiB;AAAA,QACrB,WAAW;AAAA,QACX,MAAM;AAAA,QACN,GAAG;AAAA,MACL;AAAA,IACF;AAAA,EACF;AACA,MAAI,QAAQ,SAAS,WAAW;AAC9B,QAAI,MAAM,eAAe,aAAa;AACpC,YAAM,IAAI;AAAA,QACR;AAAA,MACF;AAAA,IACF;AACA,QAAI,CAAC,sBAAsB,eAAe,WAAW,GAAG;AACtD,YAAM,IAAI,MAAM,kDAAkD;AAAA,IACpE;AACA,UAAM,MAAM,iBAAiB,MAAM,gBAAgB;AAAA,MACjD,MAAM,QAAQ;AAAA,IAChB,CAAC;AAAA,EACH;AACA,MAAI,QAAQ,SAAS,WAAW,QAAQ,SAAS,SAAS;AACxD,UAAM,SAAS,QAAQ,SAAS,UAAU,aAAa;AACvD,QAAI;AACF,YAAM,EAAE,eAAe,IAAI,MAAM,OAAO;AAAA;AAAA,QAEtC,YAAY,MAAM;AAAA,QAClB,UAAU,MAAM;AAAA,QAChB,cAAc,MAAM;AAAA,QACpB,OAAO,MAAM,eAAe;AAAA,QAC5B,SAAS,MAAM;AAAA,MACjB,CAAC;AACD,YAAM,iBAAiB;AAAA,QACrB,WAAW;AAAA,QACX,MAAM;AAAA;AAAA,QAEN,GAAG;AAAA,MACL;AACA,UAAI,QAAQ,SAAS,SAAS;AAC5B,cAAM,MAAM,iBAAiB,MAAM,gBAAgB;AAAA,UACjD,MAAM,QAAQ;AAAA,QAChB,CAAC;AAAA,MACH;AACA,aAAO,MAAM;AAAA,IACf,SAAS,OAAO;AACd,UAAI,MAAM,WAAW,KAAK;AACxB,cAAM,UAAU;AAChB,cAAM,eAAe,UAAU;AAAA,MACjC;AACA,YAAM;AAAA,IACR;AAAA,EACF;AACA,MAAI,QAAQ,SAAS,YAAY,QAAQ,SAAS,uBAAuB;AACvE,UAAM,SAAS,QAAQ,SAAS,WAAW,cAAc;AACzD,QAAI;AACF,YAAM,OAAO;AAAA;AAAA,QAEX,YAAY,MAAM;AAAA,QAClB,UAAU,MAAM;AAAA,QAChB,cAAc,MAAM;AAAA,QACpB,OAAO,MAAM,eAAe;AAAA,QAC5B,SAAS,MAAM;AAAA,MACjB,CAAC;AAAA,IACH,SAAS,OAAO;AACd,UAAI,MAAM,WAAW;AACnB,cAAM;AAAA,IACV;AACA,UAAM,eAAe,UAAU;AAC/B,WAAO,MAAM;AAAA,EACf;AACA,SAAO,MAAM;AACf;;;AC/FA,IAAM,8BAA8B;AACpC,SAAS,kBAAkB,KAAK;AAC9B,SAAO,OAAO,4BAA4B,KAAK,GAAG;AACpD;;;ACDA,eAAe,KAAK,OAAO,SAAS,OAAO,aAAa,CAAC,GAAG;AAC1D,QAAM,WAAW,QAAQ,SAAS;AAAA,IAChC;AAAA,IACA;AAAA,EACF;AACA,MAAI,+CAA+C,KAAK,SAAS,GAAG,GAAG;AACrE,WAAO,QAAQ,QAAQ;AAAA,EACzB;AACA,MAAI,kBAAkB,SAAS,GAAG,GAAG;AACnC,UAAM,cAAc,KAAK,GAAG,MAAM,QAAQ,IAAI,MAAM,YAAY,EAAE;AAClE,aAAS,QAAQ,gBAAgB,SAAS,WAAW;AACrD,WAAO,QAAQ,QAAQ;AAAA,EACzB;AACA,QAAM,EAAE,MAAM,IAAI,MAAM,eAAe,cAAc,MAAM,KAAK,EAAE,GAAG,OAAO,QAAQ,CAAC,IAAI,MAAM,KAAK,EAAE,GAAG,OAAO,QAAQ,CAAC;AACzH,WAAS,QAAQ,gBAAgB,WAAW;AAC5C,SAAO,QAAQ,QAAQ;AACzB;;;ALZA,SAAS,oBAAoB;AAAA,EAC3B;AAAA,EACA;AAAA,EACA,aAAa;AAAA,EACb,UAAU,eAAe,SAAS;AAAA,IAChC,SAAS;AAAA,MACP,cAAc,6BAA6B,OAAO,IAAI,aAAa,CAAC;AAAA,IACtE;AAAA,EACF,CAAC;AAAA,EACD;AAAA,EACA,GAAG;AACL,GAAG;AACD,QAAM,QAAQ,OAAO,OAAO;AAAA,IAC1B;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,EACF,CAAC;AACD,SAAO,OAAO,OAAO,KAAK,KAAK,MAAM,KAAK,GAAG;AAAA;AAAA,IAE3C,MAAM,KAAK,KAAK,MAAM,KAAK;AAAA,EAC7B,CAAC;AACH;AACA,oBAAoB,UAAU;",
+ "names": []
+}
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-src/auth.js b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-src/auth.js
new file mode 100644
index 000000000..b98b283c3
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-src/auth.js
@@ -0,0 +1,99 @@
+import { getAuthentication } from "./get-authentication.js";
+import {
+ checkToken,
+ deleteAuthorization,
+ deleteToken,
+ refreshToken,
+ resetToken
+} from "@octokit/oauth-methods";
+async function auth(state, options = {}) {
+ if (!state.authentication) {
+ state.authentication = state.clientType === "oauth-app" ? await getAuthentication(state) : await getAuthentication(state);
+ }
+ if (state.authentication.invalid) {
+ throw new Error("[@octokit/auth-oauth-user] Token is invalid");
+ }
+ const currentAuthentication = state.authentication;
+ if ("expiresAt" in currentAuthentication) {
+ if (options.type === "refresh" || new Date(currentAuthentication.expiresAt) < /* @__PURE__ */ new Date()) {
+ const { authentication } = await refreshToken({
+ clientType: "github-app",
+ clientId: state.clientId,
+ clientSecret: state.clientSecret,
+ refreshToken: currentAuthentication.refreshToken,
+ request: state.request
+ });
+ state.authentication = {
+ tokenType: "oauth",
+ type: "token",
+ ...authentication
+ };
+ }
+ }
+ if (options.type === "refresh") {
+ if (state.clientType === "oauth-app") {
+ throw new Error(
+ "[@octokit/auth-oauth-user] OAuth Apps do not support expiring tokens"
+ );
+ }
+ if (!currentAuthentication.hasOwnProperty("expiresAt")) {
+ throw new Error("[@octokit/auth-oauth-user] Refresh token missing");
+ }
+ await state.onTokenCreated?.(state.authentication, {
+ type: options.type
+ });
+ }
+ if (options.type === "check" || options.type === "reset") {
+ const method = options.type === "check" ? checkToken : resetToken;
+ try {
+ const { authentication } = await method({
+ // @ts-expect-error making TS happy would require unnecessary code so no
+ clientType: state.clientType,
+ clientId: state.clientId,
+ clientSecret: state.clientSecret,
+ token: state.authentication.token,
+ request: state.request
+ });
+ state.authentication = {
+ tokenType: "oauth",
+ type: "token",
+ // @ts-expect-error TBD
+ ...authentication
+ };
+ if (options.type === "reset") {
+ await state.onTokenCreated?.(state.authentication, {
+ type: options.type
+ });
+ }
+ return state.authentication;
+ } catch (error) {
+ if (error.status === 404) {
+ error.message = "[@octokit/auth-oauth-user] Token is invalid";
+ state.authentication.invalid = true;
+ }
+ throw error;
+ }
+ }
+ if (options.type === "delete" || options.type === "deleteAuthorization") {
+ const method = options.type === "delete" ? deleteToken : deleteAuthorization;
+ try {
+ await method({
+ // @ts-expect-error making TS happy would require unnecessary code so no
+ clientType: state.clientType,
+ clientId: state.clientId,
+ clientSecret: state.clientSecret,
+ token: state.authentication.token,
+ request: state.request
+ });
+ } catch (error) {
+ if (error.status !== 404)
+ throw error;
+ }
+ state.authentication.invalid = true;
+ return state.authentication;
+ }
+ return state.authentication;
+}
+export {
+ auth
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-src/get-authentication.js b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-src/get-authentication.js
new file mode 100644
index 000000000..c7fc2e2e3
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-src/get-authentication.js
@@ -0,0 +1,50 @@
+import { createOAuthDeviceAuth } from "@octokit/auth-oauth-device";
+import { exchangeWebFlowCode } from "@octokit/oauth-methods";
+async function getAuthentication(state) {
+ if ("code" in state.strategyOptions) {
+ const { authentication } = await exchangeWebFlowCode({
+ clientId: state.clientId,
+ clientSecret: state.clientSecret,
+ clientType: state.clientType,
+ onTokenCreated: state.onTokenCreated,
+ ...state.strategyOptions,
+ request: state.request
+ });
+ return {
+ type: "token",
+ tokenType: "oauth",
+ ...authentication
+ };
+ }
+ if ("onVerification" in state.strategyOptions) {
+ const deviceAuth = createOAuthDeviceAuth({
+ clientType: state.clientType,
+ clientId: state.clientId,
+ onTokenCreated: state.onTokenCreated,
+ ...state.strategyOptions,
+ request: state.request
+ });
+ const authentication = await deviceAuth({
+ type: "oauth"
+ });
+ return {
+ clientSecret: state.clientSecret,
+ ...authentication
+ };
+ }
+ if ("token" in state.strategyOptions) {
+ return {
+ type: "token",
+ tokenType: "oauth",
+ clientId: state.clientId,
+ clientSecret: state.clientSecret,
+ clientType: state.clientType,
+ onTokenCreated: state.onTokenCreated,
+ ...state.strategyOptions
+ };
+ }
+ throw new Error("[@octokit/auth-oauth-user] Invalid strategy options");
+}
+export {
+ getAuthentication
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-src/hook.js b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-src/hook.js
new file mode 100644
index 000000000..bcf4af4a6
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-src/hook.js
@@ -0,0 +1,22 @@
+import { auth } from "./auth.js";
+import { requiresBasicAuth } from "./requires-basic-auth.js";
+async function hook(state, request, route, parameters = {}) {
+ const endpoint = request.endpoint.merge(
+ route,
+ parameters
+ );
+ if (/\/login\/(oauth\/access_token|device\/code)$/.test(endpoint.url)) {
+ return request(endpoint);
+ }
+ if (requiresBasicAuth(endpoint.url)) {
+ const credentials = btoa(`${state.clientId}:${state.clientSecret}`);
+ endpoint.headers.authorization = `basic ${credentials}`;
+ return request(endpoint);
+ }
+ const { token } = state.clientType === "oauth-app" ? await auth({ ...state, request }) : await auth({ ...state, request });
+ endpoint.headers.authorization = "token " + token;
+ return request(endpoint);
+}
+export {
+ hook
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-src/index.js b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-src/index.js
new file mode 100644
index 000000000..911a931e0
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-src/index.js
@@ -0,0 +1,36 @@
+import { getUserAgent } from "universal-user-agent";
+import { request as octokitRequest } from "@octokit/request";
+import { VERSION } from "./version.js";
+import { auth } from "./auth.js";
+import { hook } from "./hook.js";
+import { requiresBasicAuth } from "./requires-basic-auth.js";
+function createOAuthUserAuth({
+ clientId,
+ clientSecret,
+ clientType = "oauth-app",
+ request = octokitRequest.defaults({
+ headers: {
+ "user-agent": `octokit-auth-oauth-app.js/${VERSION} ${getUserAgent()}`
+ }
+ }),
+ onTokenCreated,
+ ...strategyOptions
+}) {
+ const state = Object.assign({
+ clientType,
+ clientId,
+ clientSecret,
+ onTokenCreated,
+ strategyOptions,
+ request
+ });
+ return Object.assign(auth.bind(null, state), {
+ // @ts-expect-error not worth the extra code needed to appease TS
+ hook: hook.bind(null, state)
+ });
+}
+createOAuthUserAuth.VERSION = VERSION;
+export {
+ createOAuthUserAuth,
+ requiresBasicAuth
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-src/requires-basic-auth.js b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-src/requires-basic-auth.js
new file mode 100644
index 000000000..98b7871cd
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-src/requires-basic-auth.js
@@ -0,0 +1,7 @@
+const ROUTES_REQUIRING_BASIC_AUTH = /\/applications\/[^/]+\/(token|grant)s?/;
+function requiresBasicAuth(url) {
+ return url && ROUTES_REQUIRING_BASIC_AUTH.test(url);
+}
+export {
+ requiresBasicAuth
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-src/version.js b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-src/version.js
new file mode 100644
index 000000000..7fb70fb6a
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-src/version.js
@@ -0,0 +1,4 @@
+const VERSION = "5.1.1";
+export {
+ VERSION
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-types/auth.d.ts b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-types/auth.d.ts
new file mode 100644
index 000000000..2b9dffc55
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-types/auth.d.ts
@@ -0,0 +1,3 @@
+import type { OAuthAppAuthOptions, GitHubAppAuthOptions, OAuthAppAuthentication, GitHubAppAuthentication, GitHubAppAuthenticationWithExpiration, OAuthAppState, GitHubAppState } from "./types.js";
+export declare function auth(state: OAuthAppState, options?: OAuthAppAuthOptions): Promise;
+export declare function auth(state: GitHubAppState, options?: GitHubAppAuthOptions): Promise;
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-types/get-authentication.d.ts b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-types/get-authentication.d.ts
new file mode 100644
index 000000000..81713a047
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-types/get-authentication.d.ts
@@ -0,0 +1,3 @@
+import type { OAuthAppState, GitHubAppState, OAuthAppAuthentication, GitHubAppAuthentication, GitHubAppAuthenticationWithExpiration } from "./types.js";
+export declare function getAuthentication(state: OAuthAppState): Promise;
+export declare function getAuthentication(state: GitHubAppState): Promise;
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-types/hook.d.ts b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-types/hook.d.ts
new file mode 100644
index 000000000..5d5b6df80
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-types/hook.d.ts
@@ -0,0 +1,6 @@
+import type { EndpointOptions, OctokitResponse, RequestInterface, RequestParameters, Route } from "@octokit/types";
+import type { OAuthAppState, GitHubAppState } from "./types.js";
+type AnyResponse = OctokitResponse;
+export declare function hook(state: OAuthAppState, request: RequestInterface, route: Route | EndpointOptions, parameters: RequestParameters): Promise;
+export declare function hook(state: GitHubAppState, request: RequestInterface, route: Route | EndpointOptions, parameters: RequestParameters): Promise;
+export {};
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-types/index.d.ts b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-types/index.d.ts
new file mode 100644
index 000000000..95358421c
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-types/index.d.ts
@@ -0,0 +1,8 @@
+import type { OAuthAppStrategyOptions, GitHubAppStrategyOptions, OAuthAppAuthInterface, GitHubAppAuthInterface } from "./types.js";
+export type { OAuthAppStrategyOptionsWebFlow, GitHubAppStrategyOptionsWebFlow, OAuthAppStrategyOptionsDeviceFlow, GitHubAppStrategyOptionsDeviceFlow, OAuthAppStrategyOptionsExistingAuthentication, GitHubAppStrategyOptionsExistingAuthentication, GitHubAppStrategyOptionsExistingAuthenticationWithExpiration, OAuthAppStrategyOptions, GitHubAppStrategyOptions, OAuthAppAuthOptions, GitHubAppAuthOptions, OAuthAppAuthentication, GitHubAppAuthentication, GitHubAppAuthenticationWithExpiration, } from "./types.js";
+export { requiresBasicAuth } from "./requires-basic-auth.js";
+export declare function createOAuthUserAuth(options: OAuthAppStrategyOptions): OAuthAppAuthInterface;
+export declare function createOAuthUserAuth(options: GitHubAppStrategyOptions): GitHubAppAuthInterface;
+export declare namespace createOAuthUserAuth {
+ var VERSION: string;
+}
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-types/requires-basic-auth.d.ts b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-types/requires-basic-auth.d.ts
new file mode 100644
index 000000000..c7a90ea5d
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-types/requires-basic-auth.d.ts
@@ -0,0 +1 @@
+export declare function requiresBasicAuth(url: string | undefined): boolean | "" | undefined;
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-types/types.d.ts b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-types/types.d.ts
new file mode 100644
index 000000000..045d4ad05
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-types/types.d.ts
@@ -0,0 +1,114 @@
+import * as OctokitTypes from "@octokit/types";
+import * as DeviceTypes from "@octokit/auth-oauth-device";
+import * as OAuthMethodsTypes from "@octokit/oauth-methods";
+export type ClientType = "oauth-app" | "github-app";
+export type WebFlowOptions = {
+ code: string;
+ state?: string;
+ redirectUrl?: string;
+};
+type CommonAppStrategyOptions = {
+ clientType?: ClientType;
+ clientId: string;
+ clientSecret: string;
+ request?: OctokitTypes.RequestInterface;
+ onTokenCreated?: OnTokenCreatedCallback;
+};
+type CommonOAuthAppStrategyOptions = {
+ clientType?: "oauth-app";
+} & CommonAppStrategyOptions;
+type CommonGitHubAppStrategyOptions = {
+ clientType?: "github-app";
+} & CommonAppStrategyOptions;
+type OAuthAppDeviceFlowOptions = {
+ onVerification: DeviceTypes.OAuthAppStrategyOptions["onVerification"];
+ scopes?: string[];
+};
+type GitHubDeviceFlowOptions = {
+ onVerification: DeviceTypes.OAuthAppStrategyOptions["onVerification"];
+};
+type ExistingOAuthAppAuthenticationOptions = {
+ clientType: "oauth-app";
+ token: string;
+ scopes: string[];
+};
+type ExistingGitHubAppAuthenticationOptions = {
+ token: string;
+};
+type ExistingGitHubAppAuthenticationWithExpirationOptions = {
+ token: string;
+ refreshToken: string;
+ expiresAt: string;
+ refreshTokenExpiresAt: string;
+};
+export type OAuthAppStrategyOptionsWebFlow = CommonOAuthAppStrategyOptions & WebFlowOptions;
+export type GitHubAppStrategyOptionsWebFlow = CommonGitHubAppStrategyOptions & WebFlowOptions;
+export type OAuthAppStrategyOptionsDeviceFlow = CommonOAuthAppStrategyOptions & OAuthAppDeviceFlowOptions;
+export type GitHubAppStrategyOptionsDeviceFlow = CommonGitHubAppStrategyOptions & GitHubDeviceFlowOptions;
+export type OAuthAppStrategyOptionsExistingAuthentication = CommonOAuthAppStrategyOptions & ExistingOAuthAppAuthenticationOptions;
+export type GitHubAppStrategyOptionsExistingAuthentication = CommonGitHubAppStrategyOptions & ExistingGitHubAppAuthenticationOptions;
+export type GitHubAppStrategyOptionsExistingAuthenticationWithExpiration = CommonGitHubAppStrategyOptions & ExistingGitHubAppAuthenticationWithExpirationOptions;
+export type OAuthAppStrategyOptions = OAuthAppStrategyOptionsWebFlow | OAuthAppStrategyOptionsDeviceFlow | OAuthAppStrategyOptionsExistingAuthentication;
+export type GitHubAppStrategyOptions = GitHubAppStrategyOptionsWebFlow | GitHubAppStrategyOptionsDeviceFlow | GitHubAppStrategyOptionsExistingAuthentication | GitHubAppStrategyOptionsExistingAuthenticationWithExpiration;
+export type OAuthAppAuthentication = {
+ tokenType: "oauth";
+ type: "token";
+} & OAuthMethodsTypes.OAuthAppAuthentication;
+export type GitHubAppAuthentication = {
+ tokenType: "oauth";
+ type: "token";
+} & OAuthMethodsTypes.GitHubAppAuthentication;
+export type GitHubAppAuthenticationWithExpiration = {
+ tokenType: "oauth";
+ type: "token";
+} & OAuthMethodsTypes.GitHubAppAuthenticationWithExpiration;
+export interface OAuthAppAuthInterface {
+ (options?: OAuthAppAuthOptions): Promise;
+ hook(request: OctokitTypes.RequestInterface, route: OctokitTypes.Route | OctokitTypes.EndpointOptions, parameters?: OctokitTypes.RequestParameters): Promise>;
+}
+export interface GitHubAppAuthInterface {
+ (options?: GitHubAppAuthOptions): Promise;
+ hook(request: OctokitTypes.RequestInterface, route: OctokitTypes.Route | OctokitTypes.EndpointOptions, parameters?: OctokitTypes.RequestParameters): Promise>;
+}
+type OnTokenCreatedCallback = (authentication: OAuthAppAuthentication | GitHubAppAuthentication | GitHubAppAuthenticationWithExpiration | undefined, options: OAuthAppAuthOptions | GitHubAppAuthOptions) => void | Promise;
+export type OAuthAppState = {
+ clientId: string;
+ clientSecret: string;
+ clientType: "oauth-app";
+ request: OctokitTypes.RequestInterface;
+ onTokenCreated?: CommonAppStrategyOptions["onTokenCreated"];
+ strategyOptions: WebFlowOptions | OAuthAppDeviceFlowOptions | ExistingOAuthAppAuthenticationOptions;
+ authentication?: OAuthAppAuthentication & {
+ invalid?: true;
+ };
+};
+type GitHubAppStateAuthentication = GitHubAppAuthentication & {
+ invalid?: true;
+};
+type GitHubAppStateAuthenticationWIthExpiration = GitHubAppAuthenticationWithExpiration & {
+ invalid?: true;
+};
+export type GitHubAppState = {
+ clientId: string;
+ clientSecret: string;
+ clientType: "github-app";
+ request: OctokitTypes.RequestInterface;
+ onTokenCreated?: CommonAppStrategyOptions["onTokenCreated"];
+ strategyOptions: WebFlowOptions | GitHubDeviceFlowOptions | ExistingGitHubAppAuthenticationOptions | ExistingGitHubAppAuthenticationWithExpirationOptions;
+ authentication?: GitHubAppStateAuthentication | GitHubAppStateAuthenticationWIthExpiration;
+};
+export type State = OAuthAppState | GitHubAppState;
+export type WebFlowState = {
+ clientId: string;
+ clientSecret: string;
+ clientType: ClientType;
+ request: OctokitTypes.RequestInterface;
+ strategyOptions: WebFlowOptions;
+};
+export type OAuthAppAuthOptions = {
+ type?: "get" | "check" | "reset" | "delete" | "deleteAuthorization";
+};
+export type GitHubAppAuthOptions = {
+ type?: "get" | "check" | "reset" | "refresh" | "delete" | "deleteAuthorization";
+};
+export {};
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-types/version.d.ts b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-types/version.d.ts
new file mode 100644
index 000000000..04ceedfce
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-user/dist-types/version.d.ts
@@ -0,0 +1 @@
+export declare const VERSION = "5.1.1";
diff --git a/.github/octokit/node_modules/@octokit/auth-oauth-user/package.json b/.github/octokit/node_modules/@octokit/auth-oauth-user/package.json
new file mode 100644
index 000000000..8b8238b5a
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-oauth-user/package.json
@@ -0,0 +1,57 @@
+{
+ "name": "@octokit/auth-oauth-user",
+ "publishConfig": {
+ "access": "public",
+ "provenance": true
+ },
+ "type": "module",
+ "version": "5.1.1",
+ "description": "Octokit authentication strategy for OAuth clients",
+ "repository": "https://github.com/octokit/auth-oauth-user.js",
+ "keywords": [
+ "github",
+ "api",
+ "sdk",
+ "toolkit"
+ ],
+ "author": "Gregor Martynus (https://dev.to/gr2m)",
+ "license": "MIT",
+ "dependencies": {
+ "@octokit/auth-oauth-device": "^7.0.1",
+ "@octokit/oauth-methods": "^5.0.0",
+ "@octokit/request": "^9.0.1",
+ "@octokit/types": "^13.0.0",
+ "universal-user-agent": "^7.0.0"
+ },
+ "devDependencies": {
+ "@octokit/core": "^6.0.1",
+ "@octokit/tsconfig": "^3.0.0",
+ "@types/jest": "^29.0.0",
+ "@types/node": "^20.0.0",
+ "esbuild": "^0.20.0",
+ "fetch-mock": "npm:@gr2m/fetch-mock@9.11.0-pull-request-644.1",
+ "glob": "^10.2.7",
+ "jest": "^29.0.0",
+ "mockdate": "^3.0.4",
+ "prettier": "3.2.5",
+ "semantic-release-plugin-update-version-in-files": "^1.1.0",
+ "ts-jest": "^29.0.0",
+ "typescript": "^5.0.0"
+ },
+ "engines": {
+ "node": ">= 18"
+ },
+ "files": [
+ "dist-*/**",
+ "bin/**"
+ ],
+ "types": "./dist-types/index.d.ts",
+ "exports": {
+ ".": {
+ "types": "./dist-types/index.d.ts",
+ "import": "./dist-bundle/index.js",
+ "default": "./dist-bundle/index.js"
+ }
+ },
+ "sideEffects": false
+}
diff --git a/.github/octokit/node_modules/@octokit/auth-token/LICENSE b/.github/octokit/node_modules/@octokit/auth-token/LICENSE
new file mode 100644
index 000000000..ef2c18ee5
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-token/LICENSE
@@ -0,0 +1,21 @@
+The MIT License
+
+Copyright (c) 2019 Octokit contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/.github/octokit/node_modules/@octokit/auth-token/README.md b/.github/octokit/node_modules/@octokit/auth-token/README.md
new file mode 100644
index 000000000..f94e2f288
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-token/README.md
@@ -0,0 +1,284 @@
+# auth-token.js
+
+> GitHub API token authentication for browsers and Node.js
+
+[![@latest](https://img.shields.io/npm/v/@octokit/auth-token.svg)](https://www.npmjs.com/package/@octokit/auth-token)
+[![Build Status](https://github.com/octokit/auth-token.js/workflows/Test/badge.svg)](https://github.com/octokit/auth-token.js/actions?query=workflow%3ATest)
+
+`@octokit/auth-token` is the simplest of [GitHub’s authentication strategies](https://github.com/octokit/auth.js).
+
+It is useful if you want to support multiple authentication strategies, as it’s API is compatible with its sibling packages for [basic](https://github.com/octokit/auth-basic.js), [GitHub App](https://github.com/octokit/auth-app.js) and [OAuth app](https://github.com/octokit/auth.js) authentication.
+
+
+
+- [Usage](#usage)
+- [`createTokenAuth(token) options`](#createtokenauthtoken-options)
+- [`auth()`](#auth)
+- [Authentication object](#authentication-object)
+- [`auth.hook(request, route, options)` or `auth.hook(request, options)`](#authhookrequest-route-options-or-authhookrequest-options)
+- [Find more information](#find-more-information)
+ - [Find out what scopes are enabled for oauth tokens](#find-out-what-scopes-are-enabled-for-oauth-tokens)
+ - [Find out if token is a personal access token or if it belongs to an OAuth app](#find-out-if-token-is-a-personal-access-token-or-if-it-belongs-to-an-oauth-app)
+ - [Find out what permissions are enabled for a repository](#find-out-what-permissions-are-enabled-for-a-repository)
+ - [Use token for git operations](#use-token-for-git-operations)
+- [License](#license)
+
+
+
+## Usage
+
+
+
+
+Browsers
+
+
+Load `@octokit/auth-token` directly from [esm.sh](https://esm.sh)
+
+```html
+
+```
+
+
+
+Node
+
+
+Install with npm install @octokit/auth-token
+
+```js
+import { createTokenAuth } from "@octokit/auth-token";
+```
+
+
+
+
+
+```js
+const auth = createTokenAuth("ghp_PersonalAccessToken01245678900000000");
+const authentication = await auth();
+// {
+// type: 'token',
+// token: 'ghp_PersonalAccessToken01245678900000000',
+// tokenType: 'oauth'
+// }
+```
+
+## `createTokenAuth(token) options`
+
+The `createTokenAuth` method accepts a single argument of type string, which is the token. The passed token can be one of the following:
+
+- [Personal access token](https://help.github.com/en/articles/creating-a-personal-access-token-for-the-command-line)
+- [OAuth access token](https://developer.github.com/apps/building-oauth-apps/authorizing-oauth-apps/)
+- [GITHUB_TOKEN provided to GitHub Actions](https://developer.github.com/actions/creating-github-actions/accessing-the-runtime-environment/#environment-variables)
+- Installation access token ([server-to-server](https://developer.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-an-installation))
+- User authentication for installation ([user-to-server](https://docs.github.com/en/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps))
+
+Examples
+
+```js
+// Personal access token or OAuth access token
+createTokenAuth("ghp_PersonalAccessToken01245678900000000");
+// {
+// type: 'token',
+// token: 'ghp_PersonalAccessToken01245678900000000',
+// tokenType: 'oauth'
+// }
+
+// Installation access token or GitHub Action token
+createTokenAuth("ghs_InstallallationOrActionToken00000000");
+// {
+// type: 'token',
+// token: 'ghs_InstallallationOrActionToken00000000',
+// tokenType: 'installation'
+// }
+
+// Installation access token or GitHub Action token
+createTokenAuth("ghu_InstallationUserToServer000000000000");
+// {
+// type: 'token',
+// token: 'ghu_InstallationUserToServer000000000000',
+// tokenType: 'user-to-server'
+// }
+```
+
+## `auth()`
+
+The `auth()` method has no options. It returns a promise which resolves with the the authentication object.
+
+## Authentication object
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ type
+
+
+ string
+
+
+ "token"
+
+
+
+
+ token
+
+
+ string
+
+
+ The provided token.
+
+
+
+
+ tokenType
+
+
+ string
+
+
+ Can be either "oauth"
for personal access tokens and OAuth tokens, "installation"
for installation access tokens (includes GITHUB_TOKEN
provided to GitHub Actions), "app"
for a GitHub App JSON Web Token, or "user-to-server"
for a user authentication token through an app installation.
+
+
+
+
+
+## `auth.hook(request, route, options)` or `auth.hook(request, options)`
+
+`auth.hook()` hooks directly into the request life cycle. It authenticates the request using the provided token.
+
+The `request` option is an instance of [`@octokit/request`](https://github.com/octokit/request.js#readme). The `route`/`options` parameters are the same as for the [`request()` method](https://github.com/octokit/request.js#request).
+
+`auth.hook()` can be called directly to send an authenticated request
+
+```js
+const { data: authorizations } = await auth.hook(
+ request,
+ "GET /authorizations",
+);
+```
+
+Or it can be passed as option to [`request()`](https://github.com/octokit/request.js#request).
+
+```js
+const requestWithAuth = request.defaults({
+ request: {
+ hook: auth.hook,
+ },
+});
+
+const { data: authorizations } = await requestWithAuth("GET /authorizations");
+```
+
+## Find more information
+
+`auth()` does not send any requests, it only transforms the provided token string into an authentication object.
+
+Here is a list of things you can do to retrieve further information
+
+### Find out what scopes are enabled for oauth tokens
+
+Note that this does not work for installations. There is no way to retrieve permissions based on an installation access tokens.
+
+```js
+const TOKEN = "ghp_PersonalAccessToken01245678900000000";
+
+const auth = createTokenAuth(TOKEN);
+const authentication = await auth();
+
+const response = await request("HEAD /");
+const scopes = response.headers["x-oauth-scopes"].split(/,\s+/);
+
+if (scopes.length) {
+ console.log(
+ `"${TOKEN}" has ${scopes.length} scopes enabled: ${scopes.join(", ")}`,
+ );
+} else {
+ console.log(`"${TOKEN}" has no scopes enabled`);
+}
+```
+
+### Find out if token is a personal access token or if it belongs to an OAuth app
+
+```js
+const TOKEN = "ghp_PersonalAccessToken01245678900000000";
+
+const auth = createTokenAuth(TOKEN);
+const authentication = await auth();
+
+const response = await request("HEAD /");
+const clientId = response.headers["x-oauth-client-id"];
+
+if (clientId) {
+ console.log(
+ `"${token}" is an OAuth token, its app’s client_id is ${clientId}.`,
+ );
+} else {
+ console.log(`"${token}" is a personal access token`);
+}
+```
+
+### Find out what permissions are enabled for a repository
+
+Note that the `permissions` key is not set when authenticated using an installation access token.
+
+```js
+const TOKEN = "ghp_PersonalAccessToken01245678900000000";
+
+const auth = createTokenAuth(TOKEN);
+const authentication = await auth();
+
+const response = await request("GET /repos/{owner}/{repo}", {
+ owner: "octocat",
+ repo: "hello-world",
+});
+
+console.log(response.data.permissions);
+// {
+// admin: true,
+// push: true,
+// pull: true
+// }
+```
+
+### Use token for git operations
+
+Both OAuth and installation access tokens can be used for git operations. However, when using with an installation, [the token must be prefixed with `x-access-token`](https://developer.github.com/apps/building-github-apps/authenticating-with-github-apps/#http-based-git-access-by-an-installation).
+
+This example is using the [`execa`](https://github.com/sindresorhus/execa) package to run a `git push` command.
+
+```js
+const TOKEN = "ghp_PersonalAccessToken01245678900000000";
+
+const auth = createTokenAuth(TOKEN);
+const { token, tokenType } = await auth();
+const tokenWithPrefix =
+ tokenType === "installation" ? `x-access-token:${token}` : token;
+
+const repositoryUrl = `https://${tokenWithPrefix}@github.com/octocat/hello-world.git`;
+
+const { stdout } = await execa("git", ["push", repositoryUrl]);
+console.log(stdout);
+```
+
+## License
+
+[MIT](LICENSE)
diff --git a/.github/octokit/node_modules/@octokit/auth-token/dist-bundle/index.js b/.github/octokit/node_modules/@octokit/auth-token/dist-bundle/index.js
new file mode 100644
index 000000000..b6f7249c5
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-token/dist-bundle/index.js
@@ -0,0 +1,52 @@
+// pkg/dist-src/auth.js
+var REGEX_IS_INSTALLATION_LEGACY = /^v1\./;
+var REGEX_IS_INSTALLATION = /^ghs_/;
+var REGEX_IS_USER_TO_SERVER = /^ghu_/;
+async function auth(token) {
+ const isApp = token.split(/\./).length === 3;
+ const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token);
+ const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token);
+ const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth";
+ return {
+ type: "token",
+ token,
+ tokenType
+ };
+}
+
+// pkg/dist-src/with-authorization-prefix.js
+function withAuthorizationPrefix(token) {
+ if (token.split(/\./).length === 3) {
+ return `bearer ${token}`;
+ }
+ return `token ${token}`;
+}
+
+// pkg/dist-src/hook.js
+async function hook(token, request, route, parameters) {
+ const endpoint = request.endpoint.merge(
+ route,
+ parameters
+ );
+ endpoint.headers.authorization = withAuthorizationPrefix(token);
+ return request(endpoint);
+}
+
+// pkg/dist-src/index.js
+var createTokenAuth = function createTokenAuth2(token) {
+ if (!token) {
+ throw new Error("[@octokit/auth-token] No token passed to createTokenAuth");
+ }
+ if (typeof token !== "string") {
+ throw new Error(
+ "[@octokit/auth-token] Token passed to createTokenAuth is not a string"
+ );
+ }
+ token = token.replace(/^(token|bearer) +/i, "");
+ return Object.assign(auth.bind(null, token), {
+ hook: hook.bind(null, token)
+ });
+};
+export {
+ createTokenAuth
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-token/dist-bundle/index.js.map b/.github/octokit/node_modules/@octokit/auth-token/dist-bundle/index.js.map
new file mode 100644
index 000000000..a90dde5ce
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-token/dist-bundle/index.js.map
@@ -0,0 +1,7 @@
+{
+ "version": 3,
+ "sources": ["../dist-src/auth.js", "../dist-src/with-authorization-prefix.js", "../dist-src/hook.js", "../dist-src/index.js"],
+ "sourcesContent": ["const REGEX_IS_INSTALLATION_LEGACY = /^v1\\./;\nconst REGEX_IS_INSTALLATION = /^ghs_/;\nconst REGEX_IS_USER_TO_SERVER = /^ghu_/;\nasync function auth(token) {\n const isApp = token.split(/\\./).length === 3;\n const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token);\n const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token);\n const tokenType = isApp ? \"app\" : isInstallation ? \"installation\" : isUserToServer ? \"user-to-server\" : \"oauth\";\n return {\n type: \"token\",\n token,\n tokenType\n };\n}\nexport {\n auth\n};\n", "function withAuthorizationPrefix(token) {\n if (token.split(/\\./).length === 3) {\n return `bearer ${token}`;\n }\n return `token ${token}`;\n}\nexport {\n withAuthorizationPrefix\n};\n", "import { withAuthorizationPrefix } from \"./with-authorization-prefix.js\";\nasync function hook(token, request, route, parameters) {\n const endpoint = request.endpoint.merge(\n route,\n parameters\n );\n endpoint.headers.authorization = withAuthorizationPrefix(token);\n return request(endpoint);\n}\nexport {\n hook\n};\n", "import { auth } from \"./auth.js\";\nimport { hook } from \"./hook.js\";\nconst createTokenAuth = function createTokenAuth2(token) {\n if (!token) {\n throw new Error(\"[@octokit/auth-token] No token passed to createTokenAuth\");\n }\n if (typeof token !== \"string\") {\n throw new Error(\n \"[@octokit/auth-token] Token passed to createTokenAuth is not a string\"\n );\n }\n token = token.replace(/^(token|bearer) +/i, \"\");\n return Object.assign(auth.bind(null, token), {\n hook: hook.bind(null, token)\n });\n};\nexport {\n createTokenAuth\n};\n"],
+ "mappings": ";AAAA,IAAM,+BAA+B;AACrC,IAAM,wBAAwB;AAC9B,IAAM,0BAA0B;AAChC,eAAe,KAAK,OAAO;AACzB,QAAM,QAAQ,MAAM,MAAM,IAAI,EAAE,WAAW;AAC3C,QAAM,iBAAiB,6BAA6B,KAAK,KAAK,KAAK,sBAAsB,KAAK,KAAK;AACnG,QAAM,iBAAiB,wBAAwB,KAAK,KAAK;AACzD,QAAM,YAAY,QAAQ,QAAQ,iBAAiB,iBAAiB,iBAAiB,mBAAmB;AACxG,SAAO;AAAA,IACL,MAAM;AAAA,IACN;AAAA,IACA;AAAA,EACF;AACF;;;ACbA,SAAS,wBAAwB,OAAO;AACtC,MAAI,MAAM,MAAM,IAAI,EAAE,WAAW,GAAG;AAClC,WAAO,UAAU,KAAK;AAAA,EACxB;AACA,SAAO,SAAS,KAAK;AACvB;;;ACJA,eAAe,KAAK,OAAO,SAAS,OAAO,YAAY;AACrD,QAAM,WAAW,QAAQ,SAAS;AAAA,IAChC;AAAA,IACA;AAAA,EACF;AACA,WAAS,QAAQ,gBAAgB,wBAAwB,KAAK;AAC9D,SAAO,QAAQ,QAAQ;AACzB;;;ACNA,IAAM,kBAAkB,SAAS,iBAAiB,OAAO;AACvD,MAAI,CAAC,OAAO;AACV,UAAM,IAAI,MAAM,0DAA0D;AAAA,EAC5E;AACA,MAAI,OAAO,UAAU,UAAU;AAC7B,UAAM,IAAI;AAAA,MACR;AAAA,IACF;AAAA,EACF;AACA,UAAQ,MAAM,QAAQ,sBAAsB,EAAE;AAC9C,SAAO,OAAO,OAAO,KAAK,KAAK,MAAM,KAAK,GAAG;AAAA,IAC3C,MAAM,KAAK,KAAK,MAAM,KAAK;AAAA,EAC7B,CAAC;AACH;",
+ "names": []
+}
diff --git a/.github/octokit/node_modules/@octokit/auth-token/dist-src/auth.js b/.github/octokit/node_modules/@octokit/auth-token/dist-src/auth.js
new file mode 100644
index 000000000..d3efbf5a7
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-token/dist-src/auth.js
@@ -0,0 +1,17 @@
+const REGEX_IS_INSTALLATION_LEGACY = /^v1\./;
+const REGEX_IS_INSTALLATION = /^ghs_/;
+const REGEX_IS_USER_TO_SERVER = /^ghu_/;
+async function auth(token) {
+ const isApp = token.split(/\./).length === 3;
+ const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token);
+ const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token);
+ const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth";
+ return {
+ type: "token",
+ token,
+ tokenType
+ };
+}
+export {
+ auth
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-token/dist-src/hook.js b/.github/octokit/node_modules/@octokit/auth-token/dist-src/hook.js
new file mode 100644
index 000000000..be336adf5
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-token/dist-src/hook.js
@@ -0,0 +1,12 @@
+import { withAuthorizationPrefix } from "./with-authorization-prefix.js";
+async function hook(token, request, route, parameters) {
+ const endpoint = request.endpoint.merge(
+ route,
+ parameters
+ );
+ endpoint.headers.authorization = withAuthorizationPrefix(token);
+ return request(endpoint);
+}
+export {
+ hook
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-token/dist-src/index.js b/.github/octokit/node_modules/@octokit/auth-token/dist-src/index.js
new file mode 100644
index 000000000..a68cea6ee
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-token/dist-src/index.js
@@ -0,0 +1,19 @@
+import { auth } from "./auth.js";
+import { hook } from "./hook.js";
+const createTokenAuth = function createTokenAuth2(token) {
+ if (!token) {
+ throw new Error("[@octokit/auth-token] No token passed to createTokenAuth");
+ }
+ if (typeof token !== "string") {
+ throw new Error(
+ "[@octokit/auth-token] Token passed to createTokenAuth is not a string"
+ );
+ }
+ token = token.replace(/^(token|bearer) +/i, "");
+ return Object.assign(auth.bind(null, token), {
+ hook: hook.bind(null, token)
+ });
+};
+export {
+ createTokenAuth
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-token/dist-src/with-authorization-prefix.js b/.github/octokit/node_modules/@octokit/auth-token/dist-src/with-authorization-prefix.js
new file mode 100644
index 000000000..02a4bb5eb
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-token/dist-src/with-authorization-prefix.js
@@ -0,0 +1,9 @@
+function withAuthorizationPrefix(token) {
+ if (token.split(/\./).length === 3) {
+ return `bearer ${token}`;
+ }
+ return `token ${token}`;
+}
+export {
+ withAuthorizationPrefix
+};
diff --git a/.github/octokit/node_modules/@octokit/auth-token/dist-types/auth.d.ts b/.github/octokit/node_modules/@octokit/auth-token/dist-types/auth.d.ts
new file mode 100644
index 000000000..63985288e
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-token/dist-types/auth.d.ts
@@ -0,0 +1,2 @@
+import type { Token, Authentication } from "./types.js";
+export declare function auth(token: Token): Promise;
diff --git a/.github/octokit/node_modules/@octokit/auth-token/dist-types/hook.d.ts b/.github/octokit/node_modules/@octokit/auth-token/dist-types/hook.d.ts
new file mode 100644
index 000000000..cf969654b
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-token/dist-types/hook.d.ts
@@ -0,0 +1,2 @@
+import type { AnyResponse, EndpointOptions, RequestInterface, RequestParameters, Route, Token } from "./types.js";
+export declare function hook(token: Token, request: RequestInterface, route: Route | EndpointOptions, parameters?: RequestParameters): Promise;
diff --git a/.github/octokit/node_modules/@octokit/auth-token/dist-types/index.d.ts b/.github/octokit/node_modules/@octokit/auth-token/dist-types/index.d.ts
new file mode 100644
index 000000000..9f8a318e9
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-token/dist-types/index.d.ts
@@ -0,0 +1,7 @@
+import type { StrategyInterface, Token, Authentication } from "./types.js";
+export type Types = {
+ StrategyOptions: Token;
+ AuthOptions: never;
+ Authentication: Authentication;
+};
+export declare const createTokenAuth: StrategyInterface;
diff --git a/.github/octokit/node_modules/@octokit/auth-token/dist-types/types.d.ts b/.github/octokit/node_modules/@octokit/auth-token/dist-types/types.d.ts
new file mode 100644
index 000000000..c3e1ae0ef
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-token/dist-types/types.d.ts
@@ -0,0 +1,33 @@
+import type * as OctokitTypes from "@octokit/types";
+export type AnyResponse = OctokitTypes.OctokitResponse;
+export type StrategyInterface = OctokitTypes.StrategyInterface<[
+ Token
+], [
+], Authentication>;
+export type EndpointDefaults = OctokitTypes.EndpointDefaults;
+export type EndpointOptions = OctokitTypes.EndpointOptions;
+export type RequestParameters = OctokitTypes.RequestParameters;
+export type RequestInterface = OctokitTypes.RequestInterface;
+export type Route = OctokitTypes.Route;
+export type Token = string;
+export type OAuthTokenAuthentication = {
+ type: "token";
+ tokenType: "oauth";
+ token: Token;
+};
+export type InstallationTokenAuthentication = {
+ type: "token";
+ tokenType: "installation";
+ token: Token;
+};
+export type AppAuthentication = {
+ type: "token";
+ tokenType: "app";
+ token: Token;
+};
+export type UserToServerAuthentication = {
+ type: "token";
+ tokenType: "user-to-server";
+ token: Token;
+};
+export type Authentication = OAuthTokenAuthentication | InstallationTokenAuthentication | AppAuthentication | UserToServerAuthentication;
diff --git a/.github/octokit/node_modules/@octokit/auth-token/dist-types/with-authorization-prefix.d.ts b/.github/octokit/node_modules/@octokit/auth-token/dist-types/with-authorization-prefix.d.ts
new file mode 100644
index 000000000..2e52c31db
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-token/dist-types/with-authorization-prefix.d.ts
@@ -0,0 +1,6 @@
+/**
+ * Prefix token for usage in the Authorization header
+ *
+ * @param token OAuth token or JSON Web Token
+ */
+export declare function withAuthorizationPrefix(token: string): string;
diff --git a/.github/octokit/node_modules/@octokit/auth-token/package.json b/.github/octokit/node_modules/@octokit/auth-token/package.json
new file mode 100644
index 000000000..3ce3b3951
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/auth-token/package.json
@@ -0,0 +1,53 @@
+{
+ "name": "@octokit/auth-token",
+ "publishConfig": {
+ "access": "public",
+ "provenance": true
+ },
+ "type": "module",
+ "version": "5.1.1",
+ "description": "GitHub API token authentication for browsers and Node.js",
+ "repository": "github:octokit/auth-token.js",
+ "keywords": [
+ "github",
+ "octokit",
+ "authentication",
+ "api"
+ ],
+ "author": "Gregor Martynus (https://github.com/gr2m)",
+ "license": "MIT",
+ "devDependencies": {
+ "@octokit/request": "^9.0.0",
+ "@octokit/tsconfig": "^3.0.0",
+ "@octokit/types": "^13.0.0",
+ "@types/fetch-mock": "^7.3.8",
+ "@types/jest": "^29.0.0",
+ "esbuild": "^0.20.0",
+ "fetch-mock": "npm:@gr2m/fetch-mock@9.11.0-pull-request-644.1",
+ "glob": "^10.2.6",
+ "jest": "^29.0.0",
+ "prettier": "3.2.5",
+ "semantic-release": "^23.0.0",
+ "ts-jest": "^29.1.0",
+ "typescript": "^5.3.0"
+ },
+ "engines": {
+ "node": ">= 18"
+ },
+ "files": [
+ "dist-*/**",
+ "bin/**"
+ ],
+ "types": "./dist-types/index.d.ts",
+ "exports": {
+ ".": {
+ "types": "./dist-types/index.d.ts",
+ "import": "./dist-bundle/index.js",
+ "default": "./dist-bundle/index.js"
+ },
+ "./types": {
+ "types": "./dist-types/index.d.ts"
+ }
+ },
+ "sideEffects": false
+}
diff --git a/.github/octokit/node_modules/@octokit/core/LICENSE b/.github/octokit/node_modules/@octokit/core/LICENSE
new file mode 100644
index 000000000..ef2c18ee5
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/core/LICENSE
@@ -0,0 +1,21 @@
+The MIT License
+
+Copyright (c) 2019 Octokit contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/.github/octokit/node_modules/@octokit/core/README.md b/.github/octokit/node_modules/@octokit/core/README.md
new file mode 100644
index 000000000..ed4c07002
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/core/README.md
@@ -0,0 +1,457 @@
+# core.js
+
+> Extendable client for GitHub's REST & GraphQL APIs
+
+[![@latest](https://img.shields.io/npm/v/@octokit/core.svg)](https://www.npmjs.com/package/@octokit/core)
+[![Build Status](https://github.com/octokit/core.js/workflows/Test/badge.svg)](https://github.com/octokit/core.js/actions?query=workflow%3ATest+branch%3Amain)
+
+
+
+- [Usage](#usage)
+ - [REST API example](#rest-api-example)
+ - [GraphQL example](#graphql-example)
+- [Options](#options)
+- [Defaults](#defaults)
+- [Authentication](#authentication)
+- [Logging](#logging)
+- [Hooks](#hooks)
+- [Plugins](#plugins)
+- [Build your own Octokit with Plugins and Defaults](#build-your-own-octokit-with-plugins-and-defaults)
+- [LICENSE](#license)
+
+
+
+If you need a minimalistic library to utilize GitHub's [REST API](https://developer.github.com/v3/) and [GraphQL API](https://developer.github.com/v4/) which you can extend with plugins as needed, then `@octokit/core` is a great starting point.
+
+If you don't need the Plugin API then using [`@octokit/request`](https://github.com/octokit/request.js/) or [`@octokit/graphql`](https://github.com/octokit/graphql.js/) directly is a good alternative.
+
+## Usage
+
+
+
+
+Browsers
+
+Load @octokit/core
directly from esm.sh
+
+```html
+
+```
+
+
+
+Node
+
+
+Install with npm install @octokit/core
+
+```js
+import { Octokit } from "@octokit/core";
+```
+
+
+
+
+
+As we use [conditional exports](https://nodejs.org/api/packages.html#conditional-exports), you will need to adapt your `tsconfig.json`. See the TypeScript docs on [package.json "exports"](https://www.typescriptlang.org/docs/handbook/modules/reference.html#packagejson-exports).
+
+### REST API example
+
+```js
+// Create a personal access token at https://github.com/settings/tokens/new?scopes=repo
+const octokit = new Octokit({ auth: `personal-access-token123` });
+
+const response = await octokit.request("GET /orgs/{org}/repos", {
+ org: "octokit",
+ type: "private",
+});
+```
+
+See [`@octokit/request`](https://github.com/octokit/request.js) for full documentation of the `.request` method.
+
+### GraphQL example
+
+```js
+const octokit = new Octokit({ auth: `secret123` });
+
+const response = await octokit.graphql(
+ `query ($login: String!) {
+ organization(login: $login) {
+ repositories(privacy: PRIVATE) {
+ totalCount
+ }
+ }
+ }`,
+ { login: "octokit" },
+);
+```
+
+See [`@octokit/graphql`](https://github.com/octokit/graphql.js) for full documentation of the `.graphql` method.
+
+## Options
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ options.authStrategy
+
+
+ Function
+
+
+ Defaults to @octokit/auth-token
. See Authentication below for examples.
+
+
+
+
+ options.auth
+
+
+ String
or Object
+
+
+ See Authentication below for examples.
+
+
+
+
+ options.baseUrl
+
+
+ String
+
+
+
+When using with GitHub Enterprise Server, set `options.baseUrl` to the root URL of the API. For example, if your GitHub Enterprise Server's hostname is `github.acme-inc.com`, then set `options.baseUrl` to `https://github.acme-inc.com/api/v3`. Example
+
+```js
+const octokit = new Octokit({
+ baseUrl: "https://github.acme-inc.com/api/v3",
+});
+```
+
+
+
+
+ options.previews
+
+
+ Array of Strings
+
+
+
+Some REST API endpoints require preview headers to be set, or enable
+additional features. Preview headers can be set on a per-request basis, e.g.
+
+```js
+octokit.request("POST /repos/{owner}/{repo}/pulls", {
+ mediaType: {
+ previews: ["shadow-cat"],
+ },
+ owner,
+ repo,
+ title: "My pull request",
+ base: "main",
+ head: "my-feature",
+ draft: true,
+});
+```
+
+You can also set previews globally, by setting the `options.previews` option on the constructor. Example:
+
+```js
+const octokit = new Octokit({
+ previews: ["shadow-cat"],
+});
+```
+
+
+
+
+ options.request
+
+
+ Object
+
+
+
+Set a default request timeout (`options.request.timeout`) or an [`http(s).Agent`](https://nodejs.org/api/http.html#http_class_http_agent) e.g. for proxy usage (Node only, `options.request.agent`).
+
+There are more `options.request.*` options, see [`@octokit/request` options](https://github.com/octokit/request.js#request). `options.request` can also be set on a per-request basis.
+
+
+
+
+ options.timeZone
+
+
+ String
+
+
+
+Sets the `Time-Zone` header which defines a timezone according to the [list of names from the Olson database](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones).
+
+```js
+const octokit = new Octokit({
+ timeZone: "America/Los_Angeles",
+});
+```
+
+The time zone header will determine the timezone used for generating the timestamp when creating commits. See [GitHub's Timezones documentation](https://developer.github.com/v3/#timezones).
+
+
+
+
+ options.userAgent
+
+
+ String
+
+
+
+A custom user agent string for your app or library. Example
+
+```js
+const octokit = new Octokit({
+ userAgent: "my-app/v1.2.3",
+});
+```
+
+
+
+
+
+## Defaults
+
+You can create a new Octokit class with customized default options.
+
+```js
+const MyOctokit = Octokit.defaults({
+ auth: "personal-access-token123",
+ baseUrl: "https://github.acme-inc.com/api/v3",
+ userAgent: "my-app/v1.2.3",
+});
+const octokit1 = new MyOctokit();
+const octokit2 = new MyOctokit();
+```
+
+If you pass additional options to your new constructor, the options will be merged shallowly.
+
+```js
+const MyOctokit = Octokit.defaults({
+ foo: {
+ opt1: 1,
+ },
+});
+const octokit = new MyOctokit({
+ foo: {
+ opt2: 1,
+ },
+});
+// options will be { foo: { opt2: 1 }}
+```
+
+If you need a deep or conditional merge, you can pass a function instead.
+
+```js
+const MyOctokit = Octokit.defaults((options) => {
+ return {
+ foo: Object.assign({}, options.foo, { opt1: 1 }),
+ };
+});
+const octokit = new MyOctokit({
+ foo: { opt2: 1 },
+});
+// options will be { foo: { opt1: 1, opt2: 1 }}
+```
+
+Be careful about mutating the `options` object in the `Octokit.defaults` callback, as it can have unforeseen consequences.
+
+## Authentication
+
+Authentication is optional for some REST API endpoints accessing public data, but is required for GraphQL queries. Using authentication also increases your [API rate limit](https://developer.github.com/v3/#rate-limiting).
+
+By default, Octokit authenticates using the [token authentication strategy](https://github.com/octokit/auth-token.js). Pass in a token using `options.auth`. It can be a personal access token, an OAuth token, an installation access token or a JSON Web Token for GitHub App authentication. The `Authorization` header will be set according to the type of token.
+
+```js
+import { Octokit } from "@octokit/core";
+
+const octokit = new Octokit({
+ auth: "mypersonalaccesstoken123",
+});
+
+const { data } = await octokit.request("/user");
+```
+
+To use a different authentication strategy, set `options.authStrategy`. A list of authentication strategies is available at [octokit/authentication-strategies.js](https://github.com/octokit/authentication-strategies.js/#readme).
+
+Example
+
+```js
+import { Octokit } from "@octokit/core";
+import { createAppAuth } from "@octokit/auth-app";
+
+const appOctokit = new Octokit({
+ authStrategy: createAppAuth,
+ auth: {
+ appId: 123,
+ privateKey: process.env.PRIVATE_KEY,
+ },
+});
+
+const { data } = await appOctokit.request("/app");
+```
+
+The `.auth()` method returned by the current authentication strategy can be accessed at `octokit.auth()`. Example
+
+```js
+const { token } = await appOctokit.auth({
+ type: "installation",
+ installationId: 123,
+});
+```
+
+## Logging
+
+There are four built-in log methods
+
+1. `octokit.log.debug(message[, additionalInfo])`
+1. `octokit.log.info(message[, additionalInfo])`
+1. `octokit.log.warn(message[, additionalInfo])`
+1. `octokit.log.error(message[, additionalInfo])`
+
+They can be configured using the [`log` client option](client-options). By default, `octokit.log.debug()` and `octokit.log.info()` are no-ops, while the other two call `console.warn()` and `console.error()` respectively.
+
+This is useful if you build reusable [plugins](#plugins).
+
+If you would like to make the log level configurable using an environment variable or external option, we recommend the [console-log-level](https://github.com/watson/console-log-level) package. Example
+
+```js
+import consoleLogLevel from "console-log-level";
+const octokit = new Octokit({
+ log: consoleLogLevel({ level: "info" }),
+});
+```
+
+## Hooks
+
+You can customize Octokit's request lifecycle with hooks.
+
+```js
+octokit.hook.before("request", async (options) => {
+ validate(options);
+});
+octokit.hook.after("request", async (response, options) => {
+ console.log(`${options.method} ${options.url}: ${response.status}`);
+});
+octokit.hook.error("request", async (error, options) => {
+ if (error.status === 304) {
+ return findInCache(error.response.headers.etag);
+ }
+
+ throw error;
+});
+octokit.hook.wrap("request", async (request, options) => {
+ // add logic before, after, catch errors or replace the request altogether
+ return request(options);
+});
+```
+
+See [before-after-hook](https://github.com/gr2m/before-after-hook#readme) for more documentation on hooks.
+
+## Plugins
+
+Octokit’s functionality can be extended using plugins. The `Octokit.plugin()` method accepts a plugin (or many) and returns a new constructor.
+
+A plugin is a function which gets two arguments:
+
+1. the current instance
+2. the options passed to the constructor.
+
+In order to extend `octokit`'s API, the plugin must return an object with the new methods. Please refrain from adding methods directly to the `octokit` instance, especialy if you depend on keys that do not exist in `@octokit/core`, such as `octokit.rest`.
+
+```js
+// index.js
+import { Octokit } from "@octokit/core";
+import myPlugin from "./lib/my-plugin.js";
+import octokitPluginExample from "octokit-plugin-example";
+const MyOctokit = Octokit.plugin(
+ myPlugin,
+ octokitPluginExample
+);
+
+const octokit = new MyOctokit({ greeting: "Moin moin" });
+octokit.helloWorld(); // logs "Moin moin, world!"
+octokit.request("GET /"); // logs "GET / - 200 in 123ms"
+
+// lib/my-plugin.js
+const plugin = (octokit, options = { greeting: "Hello" }) => {
+ // hook into the request lifecycle
+ octokit.hook.wrap("request", async (request, options) => {
+ const time = Date.now();
+ const response = await request(options);
+ console.log(
+ `${options.method} ${options.url} – ${response.status} in ${Date.now() -
+ time}ms`
+ );
+ return response;
+ });
+
+ // add a custom method
+ return {
+ helloWorld: () => console.log(`${options.greeting}, world!`);
+ }
+};
+export default plugin;
+```
+
+## Build your own Octokit with Plugins and Defaults
+
+You can build your own Octokit class with preset default options and plugins. In fact, this is mostly how the `@octokit/` modules work, such as [`@octokit/action`](https://github.com/octokit/action.js):
+
+```js
+import { Octokit } from "@octokit/core";
+import { paginateRest } from "@octokit/plugin-paginate-rest";
+import { throttling } from "@octokit/plugin-throttling";
+import { retry } from "@octokit/plugin-retry";
+import { createActionAuth } from "@octokit/auth-action";
+const MyActionOctokit = Octokit.plugin(
+ paginateRest,
+ throttling,
+ retry,
+).defaults({
+ throttle: {
+ onAbuseLimit: (retryAfter, options) => {
+ /* ... */
+ },
+ onRateLimit: (retryAfter, options) => {
+ /* ... */
+ },
+ },
+ authStrategy: createActionAuth,
+ userAgent: `my-octokit-action/v1.2.3`,
+});
+
+const octokit = new MyActionOctokit();
+const installations = await octokit.paginate("GET /app/installations");
+```
+
+## LICENSE
+
+[MIT](LICENSE)
diff --git a/.github/octokit/node_modules/@octokit/core/dist-src/index.js b/.github/octokit/node_modules/@octokit/core/dist-src/index.js
new file mode 100644
index 000000000..1f48266d9
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/core/dist-src/index.js
@@ -0,0 +1,134 @@
+import { getUserAgent } from "universal-user-agent";
+import Hook from "before-after-hook";
+import { request } from "@octokit/request";
+import { withCustomRequest } from "@octokit/graphql";
+import { createTokenAuth } from "@octokit/auth-token";
+import { VERSION } from "./version.js";
+const noop = () => {
+};
+const consoleWarn = console.warn.bind(console);
+const consoleError = console.error.bind(console);
+const userAgentTrail = `octokit-core.js/${VERSION} ${getUserAgent()}`;
+class Octokit {
+ static VERSION = VERSION;
+ static defaults(defaults) {
+ const OctokitWithDefaults = class extends this {
+ constructor(...args) {
+ const options = args[0] || {};
+ if (typeof defaults === "function") {
+ super(defaults(options));
+ return;
+ }
+ super(
+ Object.assign(
+ {},
+ defaults,
+ options,
+ options.userAgent && defaults.userAgent ? {
+ userAgent: `${options.userAgent} ${defaults.userAgent}`
+ } : null
+ )
+ );
+ }
+ };
+ return OctokitWithDefaults;
+ }
+ static plugins = [];
+ /**
+ * Attach a plugin (or many) to your Octokit instance.
+ *
+ * @example
+ * const API = Octokit.plugin(plugin1, plugin2, plugin3, ...)
+ */
+ static plugin(...newPlugins) {
+ const currentPlugins = this.plugins;
+ const NewOctokit = class extends this {
+ static plugins = currentPlugins.concat(
+ newPlugins.filter((plugin) => !currentPlugins.includes(plugin))
+ );
+ };
+ return NewOctokit;
+ }
+ constructor(options = {}) {
+ const hook = new Hook.Collection();
+ const requestDefaults = {
+ baseUrl: request.endpoint.DEFAULTS.baseUrl,
+ headers: {},
+ request: Object.assign({}, options.request, {
+ // @ts-ignore internal usage only, no need to type
+ hook: hook.bind(null, "request")
+ }),
+ mediaType: {
+ previews: [],
+ format: ""
+ }
+ };
+ requestDefaults.headers["user-agent"] = options.userAgent ? `${options.userAgent} ${userAgentTrail}` : userAgentTrail;
+ if (options.baseUrl) {
+ requestDefaults.baseUrl = options.baseUrl;
+ }
+ if (options.previews) {
+ requestDefaults.mediaType.previews = options.previews;
+ }
+ if (options.timeZone) {
+ requestDefaults.headers["time-zone"] = options.timeZone;
+ }
+ this.request = request.defaults(requestDefaults);
+ this.graphql = withCustomRequest(this.request).defaults(requestDefaults);
+ this.log = Object.assign(
+ {
+ debug: noop,
+ info: noop,
+ warn: consoleWarn,
+ error: consoleError
+ },
+ options.log
+ );
+ this.hook = hook;
+ if (!options.authStrategy) {
+ if (!options.auth) {
+ this.auth = async () => ({
+ type: "unauthenticated"
+ });
+ } else {
+ const auth = createTokenAuth(options.auth);
+ hook.wrap("request", auth.hook);
+ this.auth = auth;
+ }
+ } else {
+ const { authStrategy, ...otherOptions } = options;
+ const auth = authStrategy(
+ Object.assign(
+ {
+ request: this.request,
+ log: this.log,
+ // we pass the current octokit instance as well as its constructor options
+ // to allow for authentication strategies that return a new octokit instance
+ // that shares the same internal state as the current one. The original
+ // requirement for this was the "event-octokit" authentication strategy
+ // of https://github.com/probot/octokit-auth-probot.
+ octokit: this,
+ octokitOptions: otherOptions
+ },
+ options.auth
+ )
+ );
+ hook.wrap("request", auth.hook);
+ this.auth = auth;
+ }
+ const classConstructor = this.constructor;
+ for (let i = 0; i < classConstructor.plugins.length; ++i) {
+ Object.assign(this, classConstructor.plugins[i](this, options));
+ }
+ }
+ // assigned during constructor
+ request;
+ graphql;
+ log;
+ hook;
+ // TODO: type `octokit.auth` based on passed options.authStrategy
+ auth;
+}
+export {
+ Octokit
+};
diff --git a/.github/octokit/node_modules/@octokit/core/dist-src/version.js b/.github/octokit/node_modules/@octokit/core/dist-src/version.js
new file mode 100644
index 000000000..e33ac3a10
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/core/dist-src/version.js
@@ -0,0 +1,4 @@
+const VERSION = "6.1.2";
+export {
+ VERSION
+};
diff --git a/.github/octokit/node_modules/@octokit/core/dist-types/index.d.ts b/.github/octokit/node_modules/@octokit/core/dist-types/index.d.ts
new file mode 100644
index 000000000..3f7a1da3e
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/core/dist-types/index.d.ts
@@ -0,0 +1,31 @@
+import type { HookCollection } from "before-after-hook";
+import { request } from "@octokit/request";
+import { type graphql } from "@octokit/graphql";
+import type { Constructor, Hooks, OctokitOptions, OctokitPlugin, ReturnTypeOf, UnionToIntersection } from "./types.js";
+export type { OctokitOptions } from "./types.js";
+export declare class Octokit {
+ static VERSION: string;
+ static defaults>(this: S, defaults: OctokitOptions | Function): S;
+ static plugins: OctokitPlugin[];
+ /**
+ * Attach a plugin (or many) to your Octokit instance.
+ *
+ * @example
+ * const API = Octokit.plugin(plugin1, plugin2, plugin3, ...)
+ */
+ static plugin & {
+ plugins: any[];
+ }, T extends OctokitPlugin[]>(this: S, ...newPlugins: T): S & Constructor>>;
+ constructor(options?: OctokitOptions);
+ request: typeof request;
+ graphql: typeof graphql;
+ log: {
+ debug: (message: string, additionalInfo?: object) => any;
+ info: (message: string, additionalInfo?: object) => any;
+ warn: (message: string, additionalInfo?: object) => any;
+ error: (message: string, additionalInfo?: object) => any;
+ [key: string]: any;
+ };
+ hook: HookCollection;
+ auth: (...args: unknown[]) => Promise;
+}
diff --git a/.github/octokit/node_modules/@octokit/core/dist-types/types.d.ts b/.github/octokit/node_modules/@octokit/core/dist-types/types.d.ts
new file mode 100644
index 000000000..3f8f09b42
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/core/dist-types/types.d.ts
@@ -0,0 +1,44 @@
+import * as OctokitTypes from "@octokit/types";
+import { RequestError } from "@octokit/request-error";
+import type { Octokit } from "./index.js";
+export type RequestParameters = OctokitTypes.RequestParameters;
+export interface OctokitOptions {
+ authStrategy?: any;
+ auth?: any;
+ userAgent?: string;
+ previews?: string[];
+ baseUrl?: string;
+ log?: {
+ debug: (message: string) => unknown;
+ info: (message: string) => unknown;
+ warn: (message: string) => unknown;
+ error: (message: string) => unknown;
+ };
+ request?: OctokitTypes.RequestRequestOptions;
+ timeZone?: string;
+ [option: string]: any;
+}
+export type Constructor = new (...args: any[]) => T;
+export type ReturnTypeOf = T extends AnyFunction ? ReturnType : T extends AnyFunction[] ? UnionToIntersection, void>> : never;
+/**
+ * @author https://stackoverflow.com/users/2887218/jcalz
+ * @see https://stackoverflow.com/a/50375286/10325032
+ */
+export type UnionToIntersection = (Union extends any ? (argument: Union) => void : never) extends (argument: infer Intersection) => void ? Intersection : never;
+type AnyFunction = (...args: any) => any;
+export type OctokitPlugin = (octokit: Octokit, options: OctokitOptions) => {
+ [key: string]: any;
+} | void;
+export type Hooks = {
+ request: {
+ Options: Required;
+ Result: OctokitTypes.OctokitResponse;
+ Error: RequestError | Error;
+ };
+ [key: string]: {
+ Options: unknown;
+ Result: unknown;
+ Error: unknown;
+ };
+};
+export {};
diff --git a/.github/octokit/node_modules/@octokit/core/dist-types/version.d.ts b/.github/octokit/node_modules/@octokit/core/dist-types/version.d.ts
new file mode 100644
index 000000000..4cd7ce6f3
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/core/dist-types/version.d.ts
@@ -0,0 +1 @@
+export declare const VERSION = "6.1.2";
diff --git a/.github/octokit/node_modules/@octokit/core/package.json b/.github/octokit/node_modules/@octokit/core/package.json
new file mode 100644
index 000000000..071caff90
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/core/package.json
@@ -0,0 +1,72 @@
+{
+ "name": "@octokit/core",
+ "version": "6.1.2",
+ "publishConfig": {
+ "access": "public",
+ "provenance": true
+ },
+ "type": "module",
+ "description": "Extendable client for GitHub's REST & GraphQL APIs",
+ "repository": "github:octokit/core.js",
+ "keywords": [
+ "octokit",
+ "github",
+ "api",
+ "sdk",
+ "toolkit"
+ ],
+ "author": "Gregor Martynus (https://github.com/gr2m)",
+ "license": "MIT",
+ "dependencies": {
+ "@octokit/auth-token": "^5.0.0",
+ "@octokit/graphql": "^8.0.0",
+ "@octokit/request": "^9.0.0",
+ "@octokit/request-error": "^6.0.1",
+ "@octokit/types": "^13.0.0",
+ "before-after-hook": "^3.0.2",
+ "universal-user-agent": "^7.0.0"
+ },
+ "devDependencies": {
+ "@octokit/auth-action": "^5.0.0",
+ "@octokit/auth-app": "^6.0.0",
+ "@octokit/auth-oauth-app": "^8.0.0",
+ "@octokit/tsconfig": "^3.0.0",
+ "@sinonjs/fake-timers": "^11.2.2",
+ "@types/fetch-mock": "^7.3.8",
+ "@types/jest": "^29.0.0",
+ "@types/lolex": "^5.1.0",
+ "@types/node": "^20.0.0",
+ "@types/sinonjs__fake-timers": "^8.1.5",
+ "esbuild": "^0.20.0",
+ "fetch-mock": "npm:@gr2m/fetch-mock@9.11.0-pull-request-644.1",
+ "glob": "^10.2.5",
+ "http-proxy-agent": "^7.0.0",
+ "jest": "^29.0.0",
+ "prettier": "3.2.5",
+ "proxy": "^2.0.0",
+ "semantic-release": "^23.0.0",
+ "semantic-release-plugin-update-version-in-files": "^1.0.0",
+ "ts-jest": "^29.0.0",
+ "typescript": "^5.0.0",
+ "undici": "^6.0.0"
+ },
+ "engines": {
+ "node": ">= 18"
+ },
+ "files": [
+ "dist-*/**",
+ "bin/**"
+ ],
+ "types": "./dist-types/index.d.ts",
+ "exports": {
+ ".": {
+ "types": "./dist-types/index.d.ts",
+ "import": "./dist-src/index.js",
+ "default": "./dist-src/index.js"
+ },
+ "./types": {
+ "types": "./dist-types/types.d.ts"
+ }
+ },
+ "sideEffects": false
+}
diff --git a/.github/octokit/node_modules/@octokit/endpoint/LICENSE b/.github/octokit/node_modules/@octokit/endpoint/LICENSE
new file mode 100644
index 000000000..af5366d0d
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/LICENSE
@@ -0,0 +1,21 @@
+The MIT License
+
+Copyright (c) 2018 Octokit contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/.github/octokit/node_modules/@octokit/endpoint/README.md b/.github/octokit/node_modules/@octokit/endpoint/README.md
new file mode 100644
index 000000000..164f60d1e
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/README.md
@@ -0,0 +1,412 @@
+# endpoint.js
+
+> Turns GitHub REST API endpoints into generic request options
+
+[![@latest](https://img.shields.io/npm/v/@octokit/endpoint.svg)](https://www.npmjs.com/package/@octokit/endpoint)
+[![Build Status](https://github.com/octokit/endpoint.js/workflows/Test/badge.svg)](https://github.com/octokit/endpoint.js/actions/workflows/test.yml?query=branch%3Amain)
+
+`@octokit/endpoint` combines [GitHub REST API routes](https://developer.github.com/v3/) with your parameters and turns them into generic request options that can be used in any request library.
+
+
+
+
+
+- [Usage](#usage)
+- [API](#api)
+ - [`endpoint(route, options)` or `endpoint(options)`](#endpointroute-options-or-endpointoptions)
+ - [`endpoint.defaults()`](#endpointdefaults)
+ - [`endpoint.DEFAULTS`](#endpointdefaults)
+ - [`endpoint.merge(route, options)` or `endpoint.merge(options)`](#endpointmergeroute-options-or-endpointmergeoptions)
+ - [`endpoint.parse()`](#endpointparse)
+- [Special cases](#special-cases)
+ - [The `data` parameter – set request body directly](#the-data-parameter-%E2%80%93-set-request-body-directly)
+ - [Set parameters for both the URL/query and the request body](#set-parameters-for-both-the-urlquery-and-the-request-body)
+- [LICENSE](#license)
+
+
+
+## Usage
+
+
+
+
+Browsers
+
+Load @octokit/endpoint
directly from esm.sh
+
+```html
+
+```
+
+
+
+Node
+
+
+Install with npm install @octokit/endpoint
+
+```js
+import { endpoint } from "@octokit/endpoint";
+```
+
+
+
+
+
+Example for [List organization repositories](https://developer.github.com/v3/repos/#list-organization-repositories)
+
+```js
+const requestOptions = endpoint("GET /orgs/{org}/repos", {
+ headers: {
+ authorization: "token 0000000000000000000000000000000000000001",
+ },
+ org: "octokit",
+ type: "private",
+});
+```
+
+The resulting `requestOptions` looks as follows
+
+```json
+{
+ "method": "GET",
+ "url": "https://api.github.com/orgs/octokit/repos?type=private",
+ "headers": {
+ "accept": "application/vnd.github.v3+json",
+ "authorization": "token 0000000000000000000000000000000000000001",
+ "user-agent": "octokit/endpoint.js v1.2.3"
+ }
+}
+```
+
+You can pass `requestOptions` to common request libraries
+
+```js
+const { url, ...options } = requestOptions;
+// using with fetch (https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API)
+fetch(url, options);
+// using with request (https://github.com/request/request)
+request(requestOptions);
+// using with got (https://github.com/sindresorhus/got)
+got[options.method](url, options);
+// using with axios
+axios(requestOptions);
+```
+
+> [!IMPORTANT]
+> As we use [conditional exports](https://nodejs.org/api/packages.html#conditional-exports), you will need to adapt your `tsconfig.json`. See the TypeScript docs on [package.json "exports"](https://www.typescriptlang.org/docs/handbook/modules/reference.html#packagejson-exports).
+
+## API
+
+### `endpoint(route, options)` or `endpoint(options)`
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ route
+
+
+ String
+
+
+ If set, it has to be a string consisting of URL and the request method, e.g., GET /orgs/{org}
. If it’s set to a URL, only the method defaults to GET
.
+
+
+
+
+ options.method
+
+
+ String
+
+
+ Required unless route
is set. Any supported http verb . Defaults to GET
.
+
+
+
+
+ options.url
+
+
+ String
+
+
+ Required unless route
is set. A path or full URL which may contain :variable
or {variable}
placeholders,
+ e.g., /orgs/{org}/repos
. The url
is parsed using url-template .
+
+
+
+
+ options.baseUrl
+
+
+ String
+
+
+ Defaults to https://api.github.com
.
+
+
+
+
+ options.headers
+
+
+ Object
+
+
+ Custom headers. Passed headers are merged with defaults:
+ headers['user-agent']
defaults to octokit-endpoint.js/1.2.3
(where 1.2.3
is the released version) .
+ headers['accept']
defaults to application/vnd.github.v3+json
.
+
+
+
+
+ options.mediaType.format
+
+
+ String
+
+
+ Media type param, such as raw
, diff
, or text+json
. See Media Types . Setting options.mediaType.format
will amend the headers.accept
value.
+
+
+
+
+ options.data
+
+
+ Any
+
+
+ Set request body directly instead of setting it to JSON based on additional parameters. See "The data
parameter" below.
+
+
+
+
+ options.request
+
+
+ Object
+
+
+ Pass custom meta information for the request. The request
object will be returned as is.
+
+
+
+
+
+All other options will be passed depending on the `method` and `url` options.
+
+1. If the option key has a placeholder in the `url`, it will be used as the replacement. For example, if the passed options are `{url: '/orgs/{org}/repos', org: 'foo'}` the returned `options.url` is `https://api.github.com/orgs/foo/repos`.
+2. If the `method` is `GET` or `HEAD`, the option is passed as a query parameter.
+3. Otherwise, the parameter is passed in the request body as a JSON key.
+
+**Result**
+
+`endpoint()` is a synchronous method and returns an object with the following keys:
+
+
+
+
+
+ key
+
+
+ type
+
+
+ description
+
+
+
+
+
+ method
+ String
+ The http method. Always lowercase.
+
+
+ url
+ String
+ The url with placeholders replaced with passed parameters.
+
+
+ headers
+ Object
+ All header names are lowercased.
+
+
+ body
+ Any
+ The request body if one is present. Only for PATCH
, POST
, PUT
, DELETE
requests.
+
+
+ request
+ Object
+ Request meta option, it will be returned as it was passed into endpoint()
+
+
+
+
+### `endpoint.defaults()`
+
+Override or set default options. Example:
+
+```js
+const request = require("request");
+const myEndpoint = require("@octokit/endpoint").defaults({
+ baseUrl: "https://github-enterprise.acme-inc.com/api/v3",
+ headers: {
+ "user-agent": "myApp/1.2.3",
+ authorization: `token 0000000000000000000000000000000000000001`,
+ },
+ org: "my-project",
+ per_page: 100,
+});
+
+request(myEndpoint(`GET /orgs/{org}/repos`));
+```
+
+You can call `.defaults()` again on the returned method, the defaults will cascade.
+
+```js
+const myProjectEndpoint = endpoint.defaults({
+ baseUrl: "https://github-enterprise.acme-inc.com/api/v3",
+ headers: {
+ "user-agent": "myApp/1.2.3",
+ },
+ org: "my-project",
+});
+const myProjectEndpointWithAuth = myProjectEndpoint.defaults({
+ headers: {
+ authorization: `token 0000000000000000000000000000000000000001`,
+ },
+});
+```
+
+`myProjectEndpointWithAuth` now defaults the `baseUrl`, `headers['user-agent']`,
+`org` and `headers['authorization']` on top of `headers['accept']` that is set
+by the global default.
+
+### `endpoint.DEFAULTS`
+
+The current default options.
+
+```js
+endpoint.DEFAULTS.baseUrl; // https://api.github.com
+const myEndpoint = endpoint.defaults({
+ baseUrl: "https://github-enterprise.acme-inc.com/api/v3",
+});
+myEndpoint.DEFAULTS.baseUrl; // https://github-enterprise.acme-inc.com/api/v3
+```
+
+### `endpoint.merge(route, options)` or `endpoint.merge(options)`
+
+Get the defaulted endpoint options, but without parsing them into request options:
+
+```js
+const myProjectEndpoint = endpoint.defaults({
+ baseUrl: "https://github-enterprise.acme-inc.com/api/v3",
+ headers: {
+ "user-agent": "myApp/1.2.3",
+ },
+ org: "my-project",
+});
+myProjectEndpoint.merge("GET /orgs/{org}/repos", {
+ headers: {
+ authorization: `token 0000000000000000000000000000000000000001`,
+ },
+ org: "my-secret-project",
+ type: "private",
+});
+
+// {
+// baseUrl: 'https://github-enterprise.acme-inc.com/api/v3',
+// method: 'GET',
+// url: '/orgs/{org}/repos',
+// headers: {
+// accept: 'application/vnd.github.v3+json',
+// authorization: `token 0000000000000000000000000000000000000001`,
+// 'user-agent': 'myApp/1.2.3'
+// },
+// org: 'my-secret-project',
+// type: 'private'
+// }
+```
+
+### `endpoint.parse()`
+
+Stateless method to turn endpoint options into request options. Calling
+`endpoint(options)` is the same as calling `endpoint.parse(endpoint.merge(options))`.
+
+## Special cases
+
+
+
+### The `data` parameter – set request body directly
+
+Some endpoints such as [Render a Markdown document in raw mode](https://developer.github.com/v3/markdown/#render-a-markdown-document-in-raw-mode) don’t have parameters that are sent as request body keys, instead, the request body needs to be set directly. In these cases, set the `data` parameter.
+
+```js
+const options = endpoint("POST /markdown/raw", {
+ data: "Hello world github/linguist#1 **cool**, and #1!",
+ headers: {
+ accept: "text/html;charset=utf-8",
+ "content-type": "text/plain",
+ },
+});
+
+// options is
+// {
+// method: 'post',
+// url: 'https://api.github.com/markdown/raw',
+// headers: {
+// accept: 'text/html;charset=utf-8',
+// 'content-type': 'text/plain',
+// 'user-agent': userAgent
+// },
+// body: 'Hello world github/linguist#1 **cool**, and #1!'
+// }
+```
+
+### Set parameters for both the URL/query and the request body
+
+There are API endpoints that accept both query parameters as well as a body. In that case, you need to add the query parameters as templates to `options.url`, as defined in the [RFC 6570 URI Template specification](https://tools.ietf.org/html/rfc6570).
+
+Example
+
+```js
+endpoint(
+ "POST https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}",
+ {
+ name: "example.zip",
+ label: "short description",
+ headers: {
+ "content-type": "text/plain",
+ "content-length": 14,
+ authorization: `token 0000000000000000000000000000000000000001`,
+ },
+ data: "Hello, world!",
+ },
+);
+```
+
+## LICENSE
+
+[MIT](LICENSE)
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-bundle/index.js b/.github/octokit/node_modules/@octokit/endpoint/dist-bundle/index.js
new file mode 100644
index 000000000..96ef49422
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-bundle/index.js
@@ -0,0 +1,351 @@
+// pkg/dist-src/defaults.js
+import { getUserAgent } from "universal-user-agent";
+
+// pkg/dist-src/version.js
+var VERSION = "0.0.0-development";
+
+// pkg/dist-src/defaults.js
+var userAgent = `octokit-endpoint.js/${VERSION} ${getUserAgent()}`;
+var DEFAULTS = {
+ method: "GET",
+ baseUrl: "https://api.github.com",
+ headers: {
+ accept: "application/vnd.github.v3+json",
+ "user-agent": userAgent
+ },
+ mediaType: {
+ format: ""
+ }
+};
+
+// pkg/dist-src/util/lowercase-keys.js
+function lowercaseKeys(object) {
+ if (!object) {
+ return {};
+ }
+ return Object.keys(object).reduce((newObj, key) => {
+ newObj[key.toLowerCase()] = object[key];
+ return newObj;
+ }, {});
+}
+
+// pkg/dist-src/util/is-plain-object.js
+function isPlainObject(value) {
+ if (typeof value !== "object" || value === null)
+ return false;
+ if (Object.prototype.toString.call(value) !== "[object Object]")
+ return false;
+ const proto = Object.getPrototypeOf(value);
+ if (proto === null)
+ return true;
+ const Ctor = Object.prototype.hasOwnProperty.call(proto, "constructor") && proto.constructor;
+ return typeof Ctor === "function" && Ctor instanceof Ctor && Function.prototype.call(Ctor) === Function.prototype.call(value);
+}
+
+// pkg/dist-src/util/merge-deep.js
+function mergeDeep(defaults, options) {
+ const result = Object.assign({}, defaults);
+ Object.keys(options).forEach((key) => {
+ if (isPlainObject(options[key])) {
+ if (!(key in defaults))
+ Object.assign(result, { [key]: options[key] });
+ else
+ result[key] = mergeDeep(defaults[key], options[key]);
+ } else {
+ Object.assign(result, { [key]: options[key] });
+ }
+ });
+ return result;
+}
+
+// pkg/dist-src/util/remove-undefined-properties.js
+function removeUndefinedProperties(obj) {
+ for (const key in obj) {
+ if (obj[key] === void 0) {
+ delete obj[key];
+ }
+ }
+ return obj;
+}
+
+// pkg/dist-src/merge.js
+function merge(defaults, route, options) {
+ if (typeof route === "string") {
+ let [method, url] = route.split(" ");
+ options = Object.assign(url ? { method, url } : { url: method }, options);
+ } else {
+ options = Object.assign({}, route);
+ }
+ options.headers = lowercaseKeys(options.headers);
+ removeUndefinedProperties(options);
+ removeUndefinedProperties(options.headers);
+ const mergedOptions = mergeDeep(defaults || {}, options);
+ if (options.url === "/graphql") {
+ if (defaults && defaults.mediaType.previews?.length) {
+ mergedOptions.mediaType.previews = defaults.mediaType.previews.filter(
+ (preview) => !mergedOptions.mediaType.previews.includes(preview)
+ ).concat(mergedOptions.mediaType.previews);
+ }
+ mergedOptions.mediaType.previews = (mergedOptions.mediaType.previews || []).map((preview) => preview.replace(/-preview/, ""));
+ }
+ return mergedOptions;
+}
+
+// pkg/dist-src/util/add-query-parameters.js
+function addQueryParameters(url, parameters) {
+ const separator = /\?/.test(url) ? "&" : "?";
+ const names = Object.keys(parameters);
+ if (names.length === 0) {
+ return url;
+ }
+ return url + separator + names.map((name) => {
+ if (name === "q") {
+ return "q=" + parameters.q.split("+").map(encodeURIComponent).join("+");
+ }
+ return `${name}=${encodeURIComponent(parameters[name])}`;
+ }).join("&");
+}
+
+// pkg/dist-src/util/extract-url-variable-names.js
+var urlVariableRegex = /\{[^}]+\}/g;
+function removeNonChars(variableName) {
+ return variableName.replace(/^\W+|\W+$/g, "").split(/,/);
+}
+function extractUrlVariableNames(url) {
+ const matches = url.match(urlVariableRegex);
+ if (!matches) {
+ return [];
+ }
+ return matches.map(removeNonChars).reduce((a, b) => a.concat(b), []);
+}
+
+// pkg/dist-src/util/omit.js
+function omit(object, keysToOmit) {
+ const result = { __proto__: null };
+ for (const key of Object.keys(object)) {
+ if (keysToOmit.indexOf(key) === -1) {
+ result[key] = object[key];
+ }
+ }
+ return result;
+}
+
+// pkg/dist-src/util/url-template.js
+function encodeReserved(str) {
+ return str.split(/(%[0-9A-Fa-f]{2})/g).map(function(part) {
+ if (!/%[0-9A-Fa-f]/.test(part)) {
+ part = encodeURI(part).replace(/%5B/g, "[").replace(/%5D/g, "]");
+ }
+ return part;
+ }).join("");
+}
+function encodeUnreserved(str) {
+ return encodeURIComponent(str).replace(/[!'()*]/g, function(c) {
+ return "%" + c.charCodeAt(0).toString(16).toUpperCase();
+ });
+}
+function encodeValue(operator, value, key) {
+ value = operator === "+" || operator === "#" ? encodeReserved(value) : encodeUnreserved(value);
+ if (key) {
+ return encodeUnreserved(key) + "=" + value;
+ } else {
+ return value;
+ }
+}
+function isDefined(value) {
+ return value !== void 0 && value !== null;
+}
+function isKeyOperator(operator) {
+ return operator === ";" || operator === "&" || operator === "?";
+}
+function getValues(context, operator, key, modifier) {
+ var value = context[key], result = [];
+ if (isDefined(value) && value !== "") {
+ if (typeof value === "string" || typeof value === "number" || typeof value === "boolean") {
+ value = value.toString();
+ if (modifier && modifier !== "*") {
+ value = value.substring(0, parseInt(modifier, 10));
+ }
+ result.push(
+ encodeValue(operator, value, isKeyOperator(operator) ? key : "")
+ );
+ } else {
+ if (modifier === "*") {
+ if (Array.isArray(value)) {
+ value.filter(isDefined).forEach(function(value2) {
+ result.push(
+ encodeValue(operator, value2, isKeyOperator(operator) ? key : "")
+ );
+ });
+ } else {
+ Object.keys(value).forEach(function(k) {
+ if (isDefined(value[k])) {
+ result.push(encodeValue(operator, value[k], k));
+ }
+ });
+ }
+ } else {
+ const tmp = [];
+ if (Array.isArray(value)) {
+ value.filter(isDefined).forEach(function(value2) {
+ tmp.push(encodeValue(operator, value2));
+ });
+ } else {
+ Object.keys(value).forEach(function(k) {
+ if (isDefined(value[k])) {
+ tmp.push(encodeUnreserved(k));
+ tmp.push(encodeValue(operator, value[k].toString()));
+ }
+ });
+ }
+ if (isKeyOperator(operator)) {
+ result.push(encodeUnreserved(key) + "=" + tmp.join(","));
+ } else if (tmp.length !== 0) {
+ result.push(tmp.join(","));
+ }
+ }
+ }
+ } else {
+ if (operator === ";") {
+ if (isDefined(value)) {
+ result.push(encodeUnreserved(key));
+ }
+ } else if (value === "" && (operator === "&" || operator === "?")) {
+ result.push(encodeUnreserved(key) + "=");
+ } else if (value === "") {
+ result.push("");
+ }
+ }
+ return result;
+}
+function parseUrl(template) {
+ return {
+ expand: expand.bind(null, template)
+ };
+}
+function expand(template, context) {
+ var operators = ["+", "#", ".", "/", ";", "?", "&"];
+ template = template.replace(
+ /\{([^\{\}]+)\}|([^\{\}]+)/g,
+ function(_, expression, literal) {
+ if (expression) {
+ let operator = "";
+ const values = [];
+ if (operators.indexOf(expression.charAt(0)) !== -1) {
+ operator = expression.charAt(0);
+ expression = expression.substr(1);
+ }
+ expression.split(/,/g).forEach(function(variable) {
+ var tmp = /([^:\*]*)(?::(\d+)|(\*))?/.exec(variable);
+ values.push(getValues(context, operator, tmp[1], tmp[2] || tmp[3]));
+ });
+ if (operator && operator !== "+") {
+ var separator = ",";
+ if (operator === "?") {
+ separator = "&";
+ } else if (operator !== "#") {
+ separator = operator;
+ }
+ return (values.length !== 0 ? operator : "") + values.join(separator);
+ } else {
+ return values.join(",");
+ }
+ } else {
+ return encodeReserved(literal);
+ }
+ }
+ );
+ if (template === "/") {
+ return template;
+ } else {
+ return template.replace(/\/$/, "");
+ }
+}
+
+// pkg/dist-src/parse.js
+function parse(options) {
+ let method = options.method.toUpperCase();
+ let url = (options.url || "/").replace(/:([a-z]\w+)/g, "{$1}");
+ let headers = Object.assign({}, options.headers);
+ let body;
+ let parameters = omit(options, [
+ "method",
+ "baseUrl",
+ "url",
+ "headers",
+ "request",
+ "mediaType"
+ ]);
+ const urlVariableNames = extractUrlVariableNames(url);
+ url = parseUrl(url).expand(parameters);
+ if (!/^http/.test(url)) {
+ url = options.baseUrl + url;
+ }
+ const omittedParameters = Object.keys(options).filter((option) => urlVariableNames.includes(option)).concat("baseUrl");
+ const remainingParameters = omit(parameters, omittedParameters);
+ const isBinaryRequest = /application\/octet-stream/i.test(headers.accept);
+ if (!isBinaryRequest) {
+ if (options.mediaType.format) {
+ headers.accept = headers.accept.split(/,/).map(
+ (format) => format.replace(
+ /application\/vnd(\.\w+)(\.v3)?(\.\w+)?(\+json)?$/,
+ `application/vnd$1$2.${options.mediaType.format}`
+ )
+ ).join(",");
+ }
+ if (url.endsWith("/graphql")) {
+ if (options.mediaType.previews?.length) {
+ const previewsFromAcceptHeader = headers.accept.match(/[\w-]+(?=-preview)/g) || [];
+ headers.accept = previewsFromAcceptHeader.concat(options.mediaType.previews).map((preview) => {
+ const format = options.mediaType.format ? `.${options.mediaType.format}` : "+json";
+ return `application/vnd.github.${preview}-preview${format}`;
+ }).join(",");
+ }
+ }
+ }
+ if (["GET", "HEAD"].includes(method)) {
+ url = addQueryParameters(url, remainingParameters);
+ } else {
+ if ("data" in remainingParameters) {
+ body = remainingParameters.data;
+ } else {
+ if (Object.keys(remainingParameters).length) {
+ body = remainingParameters;
+ }
+ }
+ }
+ if (!headers["content-type"] && typeof body !== "undefined") {
+ headers["content-type"] = "application/json; charset=utf-8";
+ }
+ if (["PATCH", "PUT"].includes(method) && typeof body === "undefined") {
+ body = "";
+ }
+ return Object.assign(
+ { method, url, headers },
+ typeof body !== "undefined" ? { body } : null,
+ options.request ? { request: options.request } : null
+ );
+}
+
+// pkg/dist-src/endpoint-with-defaults.js
+function endpointWithDefaults(defaults, route, options) {
+ return parse(merge(defaults, route, options));
+}
+
+// pkg/dist-src/with-defaults.js
+function withDefaults(oldDefaults, newDefaults) {
+ const DEFAULTS2 = merge(oldDefaults, newDefaults);
+ const endpoint2 = endpointWithDefaults.bind(null, DEFAULTS2);
+ return Object.assign(endpoint2, {
+ DEFAULTS: DEFAULTS2,
+ defaults: withDefaults.bind(null, DEFAULTS2),
+ merge: merge.bind(null, DEFAULTS2),
+ parse
+ });
+}
+
+// pkg/dist-src/index.js
+var endpoint = withDefaults(null, DEFAULTS);
+export {
+ endpoint
+};
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-bundle/index.js.map b/.github/octokit/node_modules/@octokit/endpoint/dist-bundle/index.js.map
new file mode 100644
index 000000000..d6ab4f5f0
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-bundle/index.js.map
@@ -0,0 +1,7 @@
+{
+ "version": 3,
+ "sources": ["../dist-src/defaults.js", "../dist-src/version.js", "../dist-src/util/lowercase-keys.js", "../dist-src/util/is-plain-object.js", "../dist-src/util/merge-deep.js", "../dist-src/util/remove-undefined-properties.js", "../dist-src/merge.js", "../dist-src/util/add-query-parameters.js", "../dist-src/util/extract-url-variable-names.js", "../dist-src/util/omit.js", "../dist-src/util/url-template.js", "../dist-src/parse.js", "../dist-src/endpoint-with-defaults.js", "../dist-src/with-defaults.js", "../dist-src/index.js"],
+ "sourcesContent": ["import { getUserAgent } from \"universal-user-agent\";\nimport { VERSION } from \"./version.js\";\nconst userAgent = `octokit-endpoint.js/${VERSION} ${getUserAgent()}`;\nconst DEFAULTS = {\n method: \"GET\",\n baseUrl: \"https://api.github.com\",\n headers: {\n accept: \"application/vnd.github.v3+json\",\n \"user-agent\": userAgent\n },\n mediaType: {\n format: \"\"\n }\n};\nexport {\n DEFAULTS\n};\n", "const VERSION = \"0.0.0-development\";\nexport {\n VERSION\n};\n", "function lowercaseKeys(object) {\n if (!object) {\n return {};\n }\n return Object.keys(object).reduce((newObj, key) => {\n newObj[key.toLowerCase()] = object[key];\n return newObj;\n }, {});\n}\nexport {\n lowercaseKeys\n};\n", "function isPlainObject(value) {\n if (typeof value !== \"object\" || value === null)\n return false;\n if (Object.prototype.toString.call(value) !== \"[object Object]\")\n return false;\n const proto = Object.getPrototypeOf(value);\n if (proto === null)\n return true;\n const Ctor = Object.prototype.hasOwnProperty.call(proto, \"constructor\") && proto.constructor;\n return typeof Ctor === \"function\" && Ctor instanceof Ctor && Function.prototype.call(Ctor) === Function.prototype.call(value);\n}\nexport {\n isPlainObject\n};\n", "import { isPlainObject } from \"./is-plain-object.js\";\nfunction mergeDeep(defaults, options) {\n const result = Object.assign({}, defaults);\n Object.keys(options).forEach((key) => {\n if (isPlainObject(options[key])) {\n if (!(key in defaults))\n Object.assign(result, { [key]: options[key] });\n else\n result[key] = mergeDeep(defaults[key], options[key]);\n } else {\n Object.assign(result, { [key]: options[key] });\n }\n });\n return result;\n}\nexport {\n mergeDeep\n};\n", "function removeUndefinedProperties(obj) {\n for (const key in obj) {\n if (obj[key] === void 0) {\n delete obj[key];\n }\n }\n return obj;\n}\nexport {\n removeUndefinedProperties\n};\n", "import { lowercaseKeys } from \"./util/lowercase-keys.js\";\nimport { mergeDeep } from \"./util/merge-deep.js\";\nimport { removeUndefinedProperties } from \"./util/remove-undefined-properties.js\";\nfunction merge(defaults, route, options) {\n if (typeof route === \"string\") {\n let [method, url] = route.split(\" \");\n options = Object.assign(url ? { method, url } : { url: method }, options);\n } else {\n options = Object.assign({}, route);\n }\n options.headers = lowercaseKeys(options.headers);\n removeUndefinedProperties(options);\n removeUndefinedProperties(options.headers);\n const mergedOptions = mergeDeep(defaults || {}, options);\n if (options.url === \"/graphql\") {\n if (defaults && defaults.mediaType.previews?.length) {\n mergedOptions.mediaType.previews = defaults.mediaType.previews.filter(\n (preview) => !mergedOptions.mediaType.previews.includes(preview)\n ).concat(mergedOptions.mediaType.previews);\n }\n mergedOptions.mediaType.previews = (mergedOptions.mediaType.previews || []).map((preview) => preview.replace(/-preview/, \"\"));\n }\n return mergedOptions;\n}\nexport {\n merge\n};\n", "function addQueryParameters(url, parameters) {\n const separator = /\\?/.test(url) ? \"&\" : \"?\";\n const names = Object.keys(parameters);\n if (names.length === 0) {\n return url;\n }\n return url + separator + names.map((name) => {\n if (name === \"q\") {\n return \"q=\" + parameters.q.split(\"+\").map(encodeURIComponent).join(\"+\");\n }\n return `${name}=${encodeURIComponent(parameters[name])}`;\n }).join(\"&\");\n}\nexport {\n addQueryParameters\n};\n", "const urlVariableRegex = /\\{[^}]+\\}/g;\nfunction removeNonChars(variableName) {\n return variableName.replace(/^\\W+|\\W+$/g, \"\").split(/,/);\n}\nfunction extractUrlVariableNames(url) {\n const matches = url.match(urlVariableRegex);\n if (!matches) {\n return [];\n }\n return matches.map(removeNonChars).reduce((a, b) => a.concat(b), []);\n}\nexport {\n extractUrlVariableNames\n};\n", "function omit(object, keysToOmit) {\n const result = { __proto__: null };\n for (const key of Object.keys(object)) {\n if (keysToOmit.indexOf(key) === -1) {\n result[key] = object[key];\n }\n }\n return result;\n}\nexport {\n omit\n};\n", "function encodeReserved(str) {\n return str.split(/(%[0-9A-Fa-f]{2})/g).map(function(part) {\n if (!/%[0-9A-Fa-f]/.test(part)) {\n part = encodeURI(part).replace(/%5B/g, \"[\").replace(/%5D/g, \"]\");\n }\n return part;\n }).join(\"\");\n}\nfunction encodeUnreserved(str) {\n return encodeURIComponent(str).replace(/[!'()*]/g, function(c) {\n return \"%\" + c.charCodeAt(0).toString(16).toUpperCase();\n });\n}\nfunction encodeValue(operator, value, key) {\n value = operator === \"+\" || operator === \"#\" ? encodeReserved(value) : encodeUnreserved(value);\n if (key) {\n return encodeUnreserved(key) + \"=\" + value;\n } else {\n return value;\n }\n}\nfunction isDefined(value) {\n return value !== void 0 && value !== null;\n}\nfunction isKeyOperator(operator) {\n return operator === \";\" || operator === \"&\" || operator === \"?\";\n}\nfunction getValues(context, operator, key, modifier) {\n var value = context[key], result = [];\n if (isDefined(value) && value !== \"\") {\n if (typeof value === \"string\" || typeof value === \"number\" || typeof value === \"boolean\") {\n value = value.toString();\n if (modifier && modifier !== \"*\") {\n value = value.substring(0, parseInt(modifier, 10));\n }\n result.push(\n encodeValue(operator, value, isKeyOperator(operator) ? key : \"\")\n );\n } else {\n if (modifier === \"*\") {\n if (Array.isArray(value)) {\n value.filter(isDefined).forEach(function(value2) {\n result.push(\n encodeValue(operator, value2, isKeyOperator(operator) ? key : \"\")\n );\n });\n } else {\n Object.keys(value).forEach(function(k) {\n if (isDefined(value[k])) {\n result.push(encodeValue(operator, value[k], k));\n }\n });\n }\n } else {\n const tmp = [];\n if (Array.isArray(value)) {\n value.filter(isDefined).forEach(function(value2) {\n tmp.push(encodeValue(operator, value2));\n });\n } else {\n Object.keys(value).forEach(function(k) {\n if (isDefined(value[k])) {\n tmp.push(encodeUnreserved(k));\n tmp.push(encodeValue(operator, value[k].toString()));\n }\n });\n }\n if (isKeyOperator(operator)) {\n result.push(encodeUnreserved(key) + \"=\" + tmp.join(\",\"));\n } else if (tmp.length !== 0) {\n result.push(tmp.join(\",\"));\n }\n }\n }\n } else {\n if (operator === \";\") {\n if (isDefined(value)) {\n result.push(encodeUnreserved(key));\n }\n } else if (value === \"\" && (operator === \"&\" || operator === \"?\")) {\n result.push(encodeUnreserved(key) + \"=\");\n } else if (value === \"\") {\n result.push(\"\");\n }\n }\n return result;\n}\nfunction parseUrl(template) {\n return {\n expand: expand.bind(null, template)\n };\n}\nfunction expand(template, context) {\n var operators = [\"+\", \"#\", \".\", \"/\", \";\", \"?\", \"&\"];\n template = template.replace(\n /\\{([^\\{\\}]+)\\}|([^\\{\\}]+)/g,\n function(_, expression, literal) {\n if (expression) {\n let operator = \"\";\n const values = [];\n if (operators.indexOf(expression.charAt(0)) !== -1) {\n operator = expression.charAt(0);\n expression = expression.substr(1);\n }\n expression.split(/,/g).forEach(function(variable) {\n var tmp = /([^:\\*]*)(?::(\\d+)|(\\*))?/.exec(variable);\n values.push(getValues(context, operator, tmp[1], tmp[2] || tmp[3]));\n });\n if (operator && operator !== \"+\") {\n var separator = \",\";\n if (operator === \"?\") {\n separator = \"&\";\n } else if (operator !== \"#\") {\n separator = operator;\n }\n return (values.length !== 0 ? operator : \"\") + values.join(separator);\n } else {\n return values.join(\",\");\n }\n } else {\n return encodeReserved(literal);\n }\n }\n );\n if (template === \"/\") {\n return template;\n } else {\n return template.replace(/\\/$/, \"\");\n }\n}\nexport {\n parseUrl\n};\n", "import { addQueryParameters } from \"./util/add-query-parameters.js\";\nimport { extractUrlVariableNames } from \"./util/extract-url-variable-names.js\";\nimport { omit } from \"./util/omit.js\";\nimport { parseUrl } from \"./util/url-template.js\";\nfunction parse(options) {\n let method = options.method.toUpperCase();\n let url = (options.url || \"/\").replace(/:([a-z]\\w+)/g, \"{$1}\");\n let headers = Object.assign({}, options.headers);\n let body;\n let parameters = omit(options, [\n \"method\",\n \"baseUrl\",\n \"url\",\n \"headers\",\n \"request\",\n \"mediaType\"\n ]);\n const urlVariableNames = extractUrlVariableNames(url);\n url = parseUrl(url).expand(parameters);\n if (!/^http/.test(url)) {\n url = options.baseUrl + url;\n }\n const omittedParameters = Object.keys(options).filter((option) => urlVariableNames.includes(option)).concat(\"baseUrl\");\n const remainingParameters = omit(parameters, omittedParameters);\n const isBinaryRequest = /application\\/octet-stream/i.test(headers.accept);\n if (!isBinaryRequest) {\n if (options.mediaType.format) {\n headers.accept = headers.accept.split(/,/).map(\n (format) => format.replace(\n /application\\/vnd(\\.\\w+)(\\.v3)?(\\.\\w+)?(\\+json)?$/,\n `application/vnd$1$2.${options.mediaType.format}`\n )\n ).join(\",\");\n }\n if (url.endsWith(\"/graphql\")) {\n if (options.mediaType.previews?.length) {\n const previewsFromAcceptHeader = headers.accept.match(/[\\w-]+(?=-preview)/g) || [];\n headers.accept = previewsFromAcceptHeader.concat(options.mediaType.previews).map((preview) => {\n const format = options.mediaType.format ? `.${options.mediaType.format}` : \"+json\";\n return `application/vnd.github.${preview}-preview${format}`;\n }).join(\",\");\n }\n }\n }\n if ([\"GET\", \"HEAD\"].includes(method)) {\n url = addQueryParameters(url, remainingParameters);\n } else {\n if (\"data\" in remainingParameters) {\n body = remainingParameters.data;\n } else {\n if (Object.keys(remainingParameters).length) {\n body = remainingParameters;\n }\n }\n }\n if (!headers[\"content-type\"] && typeof body !== \"undefined\") {\n headers[\"content-type\"] = \"application/json; charset=utf-8\";\n }\n if ([\"PATCH\", \"PUT\"].includes(method) && typeof body === \"undefined\") {\n body = \"\";\n }\n return Object.assign(\n { method, url, headers },\n typeof body !== \"undefined\" ? { body } : null,\n options.request ? { request: options.request } : null\n );\n}\nexport {\n parse\n};\n", "import { DEFAULTS } from \"./defaults.js\";\nimport { merge } from \"./merge.js\";\nimport { parse } from \"./parse.js\";\nfunction endpointWithDefaults(defaults, route, options) {\n return parse(merge(defaults, route, options));\n}\nexport {\n endpointWithDefaults\n};\n", "import { endpointWithDefaults } from \"./endpoint-with-defaults.js\";\nimport { merge } from \"./merge.js\";\nimport { parse } from \"./parse.js\";\nfunction withDefaults(oldDefaults, newDefaults) {\n const DEFAULTS = merge(oldDefaults, newDefaults);\n const endpoint = endpointWithDefaults.bind(null, DEFAULTS);\n return Object.assign(endpoint, {\n DEFAULTS,\n defaults: withDefaults.bind(null, DEFAULTS),\n merge: merge.bind(null, DEFAULTS),\n parse\n });\n}\nexport {\n withDefaults\n};\n", "import { withDefaults } from \"./with-defaults.js\";\nimport { DEFAULTS } from \"./defaults.js\";\nconst endpoint = withDefaults(null, DEFAULTS);\nexport {\n endpoint\n};\n"],
+ "mappings": ";AAAA,SAAS,oBAAoB;;;ACA7B,IAAM,UAAU;;;ADEhB,IAAM,YAAY,uBAAuB,OAAO,IAAI,aAAa,CAAC;AAClE,IAAM,WAAW;AAAA,EACf,QAAQ;AAAA,EACR,SAAS;AAAA,EACT,SAAS;AAAA,IACP,QAAQ;AAAA,IACR,cAAc;AAAA,EAChB;AAAA,EACA,WAAW;AAAA,IACT,QAAQ;AAAA,EACV;AACF;;;AEbA,SAAS,cAAc,QAAQ;AAC7B,MAAI,CAAC,QAAQ;AACX,WAAO,CAAC;AAAA,EACV;AACA,SAAO,OAAO,KAAK,MAAM,EAAE,OAAO,CAAC,QAAQ,QAAQ;AACjD,WAAO,IAAI,YAAY,CAAC,IAAI,OAAO,GAAG;AACtC,WAAO;AAAA,EACT,GAAG,CAAC,CAAC;AACP;;;ACRA,SAAS,cAAc,OAAO;AAC5B,MAAI,OAAO,UAAU,YAAY,UAAU;AACzC,WAAO;AACT,MAAI,OAAO,UAAU,SAAS,KAAK,KAAK,MAAM;AAC5C,WAAO;AACT,QAAM,QAAQ,OAAO,eAAe,KAAK;AACzC,MAAI,UAAU;AACZ,WAAO;AACT,QAAM,OAAO,OAAO,UAAU,eAAe,KAAK,OAAO,aAAa,KAAK,MAAM;AACjF,SAAO,OAAO,SAAS,cAAc,gBAAgB,QAAQ,SAAS,UAAU,KAAK,IAAI,MAAM,SAAS,UAAU,KAAK,KAAK;AAC9H;;;ACTA,SAAS,UAAU,UAAU,SAAS;AACpC,QAAM,SAAS,OAAO,OAAO,CAAC,GAAG,QAAQ;AACzC,SAAO,KAAK,OAAO,EAAE,QAAQ,CAAC,QAAQ;AACpC,QAAI,cAAc,QAAQ,GAAG,CAAC,GAAG;AAC/B,UAAI,EAAE,OAAO;AACX,eAAO,OAAO,QAAQ,EAAE,CAAC,GAAG,GAAG,QAAQ,GAAG,EAAE,CAAC;AAAA;AAE7C,eAAO,GAAG,IAAI,UAAU,SAAS,GAAG,GAAG,QAAQ,GAAG,CAAC;AAAA,IACvD,OAAO;AACL,aAAO,OAAO,QAAQ,EAAE,CAAC,GAAG,GAAG,QAAQ,GAAG,EAAE,CAAC;AAAA,IAC/C;AAAA,EACF,CAAC;AACD,SAAO;AACT;;;ACdA,SAAS,0BAA0B,KAAK;AACtC,aAAW,OAAO,KAAK;AACrB,QAAI,IAAI,GAAG,MAAM,QAAQ;AACvB,aAAO,IAAI,GAAG;AAAA,IAChB;AAAA,EACF;AACA,SAAO;AACT;;;ACJA,SAAS,MAAM,UAAU,OAAO,SAAS;AACvC,MAAI,OAAO,UAAU,UAAU;AAC7B,QAAI,CAAC,QAAQ,GAAG,IAAI,MAAM,MAAM,GAAG;AACnC,cAAU,OAAO,OAAO,MAAM,EAAE,QAAQ,IAAI,IAAI,EAAE,KAAK,OAAO,GAAG,OAAO;AAAA,EAC1E,OAAO;AACL,cAAU,OAAO,OAAO,CAAC,GAAG,KAAK;AAAA,EACnC;AACA,UAAQ,UAAU,cAAc,QAAQ,OAAO;AAC/C,4BAA0B,OAAO;AACjC,4BAA0B,QAAQ,OAAO;AACzC,QAAM,gBAAgB,UAAU,YAAY,CAAC,GAAG,OAAO;AACvD,MAAI,QAAQ,QAAQ,YAAY;AAC9B,QAAI,YAAY,SAAS,UAAU,UAAU,QAAQ;AACnD,oBAAc,UAAU,WAAW,SAAS,UAAU,SAAS;AAAA,QAC7D,CAAC,YAAY,CAAC,cAAc,UAAU,SAAS,SAAS,OAAO;AAAA,MACjE,EAAE,OAAO,cAAc,UAAU,QAAQ;AAAA,IAC3C;AACA,kBAAc,UAAU,YAAY,cAAc,UAAU,YAAY,CAAC,GAAG,IAAI,CAAC,YAAY,QAAQ,QAAQ,YAAY,EAAE,CAAC;AAAA,EAC9H;AACA,SAAO;AACT;;;ACvBA,SAAS,mBAAmB,KAAK,YAAY;AAC3C,QAAM,YAAY,KAAK,KAAK,GAAG,IAAI,MAAM;AACzC,QAAM,QAAQ,OAAO,KAAK,UAAU;AACpC,MAAI,MAAM,WAAW,GAAG;AACtB,WAAO;AAAA,EACT;AACA,SAAO,MAAM,YAAY,MAAM,IAAI,CAAC,SAAS;AAC3C,QAAI,SAAS,KAAK;AAChB,aAAO,OAAO,WAAW,EAAE,MAAM,GAAG,EAAE,IAAI,kBAAkB,EAAE,KAAK,GAAG;AAAA,IACxE;AACA,WAAO,GAAG,IAAI,IAAI,mBAAmB,WAAW,IAAI,CAAC,CAAC;AAAA,EACxD,CAAC,EAAE,KAAK,GAAG;AACb;;;ACZA,IAAM,mBAAmB;AACzB,SAAS,eAAe,cAAc;AACpC,SAAO,aAAa,QAAQ,cAAc,EAAE,EAAE,MAAM,GAAG;AACzD;AACA,SAAS,wBAAwB,KAAK;AACpC,QAAM,UAAU,IAAI,MAAM,gBAAgB;AAC1C,MAAI,CAAC,SAAS;AACZ,WAAO,CAAC;AAAA,EACV;AACA,SAAO,QAAQ,IAAI,cAAc,EAAE,OAAO,CAAC,GAAG,MAAM,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC;AACrE;;;ACVA,SAAS,KAAK,QAAQ,YAAY;AAChC,QAAM,SAAS,EAAE,WAAW,KAAK;AACjC,aAAW,OAAO,OAAO,KAAK,MAAM,GAAG;AACrC,QAAI,WAAW,QAAQ,GAAG,MAAM,IAAI;AAClC,aAAO,GAAG,IAAI,OAAO,GAAG;AAAA,IAC1B;AAAA,EACF;AACA,SAAO;AACT;;;ACRA,SAAS,eAAe,KAAK;AAC3B,SAAO,IAAI,MAAM,oBAAoB,EAAE,IAAI,SAAS,MAAM;AACxD,QAAI,CAAC,eAAe,KAAK,IAAI,GAAG;AAC9B,aAAO,UAAU,IAAI,EAAE,QAAQ,QAAQ,GAAG,EAAE,QAAQ,QAAQ,GAAG;AAAA,IACjE;AACA,WAAO;AAAA,EACT,CAAC,EAAE,KAAK,EAAE;AACZ;AACA,SAAS,iBAAiB,KAAK;AAC7B,SAAO,mBAAmB,GAAG,EAAE,QAAQ,YAAY,SAAS,GAAG;AAC7D,WAAO,MAAM,EAAE,WAAW,CAAC,EAAE,SAAS,EAAE,EAAE,YAAY;AAAA,EACxD,CAAC;AACH;AACA,SAAS,YAAY,UAAU,OAAO,KAAK;AACzC,UAAQ,aAAa,OAAO,aAAa,MAAM,eAAe,KAAK,IAAI,iBAAiB,KAAK;AAC7F,MAAI,KAAK;AACP,WAAO,iBAAiB,GAAG,IAAI,MAAM;AAAA,EACvC,OAAO;AACL,WAAO;AAAA,EACT;AACF;AACA,SAAS,UAAU,OAAO;AACxB,SAAO,UAAU,UAAU,UAAU;AACvC;AACA,SAAS,cAAc,UAAU;AAC/B,SAAO,aAAa,OAAO,aAAa,OAAO,aAAa;AAC9D;AACA,SAAS,UAAU,SAAS,UAAU,KAAK,UAAU;AACnD,MAAI,QAAQ,QAAQ,GAAG,GAAG,SAAS,CAAC;AACpC,MAAI,UAAU,KAAK,KAAK,UAAU,IAAI;AACpC,QAAI,OAAO,UAAU,YAAY,OAAO,UAAU,YAAY,OAAO,UAAU,WAAW;AACxF,cAAQ,MAAM,SAAS;AACvB,UAAI,YAAY,aAAa,KAAK;AAChC,gBAAQ,MAAM,UAAU,GAAG,SAAS,UAAU,EAAE,CAAC;AAAA,MACnD;AACA,aAAO;AAAA,QACL,YAAY,UAAU,OAAO,cAAc,QAAQ,IAAI,MAAM,EAAE;AAAA,MACjE;AAAA,IACF,OAAO;AACL,UAAI,aAAa,KAAK;AACpB,YAAI,MAAM,QAAQ,KAAK,GAAG;AACxB,gBAAM,OAAO,SAAS,EAAE,QAAQ,SAAS,QAAQ;AAC/C,mBAAO;AAAA,cACL,YAAY,UAAU,QAAQ,cAAc,QAAQ,IAAI,MAAM,EAAE;AAAA,YAClE;AAAA,UACF,CAAC;AAAA,QACH,OAAO;AACL,iBAAO,KAAK,KAAK,EAAE,QAAQ,SAAS,GAAG;AACrC,gBAAI,UAAU,MAAM,CAAC,CAAC,GAAG;AACvB,qBAAO,KAAK,YAAY,UAAU,MAAM,CAAC,GAAG,CAAC,CAAC;AAAA,YAChD;AAAA,UACF,CAAC;AAAA,QACH;AAAA,MACF,OAAO;AACL,cAAM,MAAM,CAAC;AACb,YAAI,MAAM,QAAQ,KAAK,GAAG;AACxB,gBAAM,OAAO,SAAS,EAAE,QAAQ,SAAS,QAAQ;AAC/C,gBAAI,KAAK,YAAY,UAAU,MAAM,CAAC;AAAA,UACxC,CAAC;AAAA,QACH,OAAO;AACL,iBAAO,KAAK,KAAK,EAAE,QAAQ,SAAS,GAAG;AACrC,gBAAI,UAAU,MAAM,CAAC,CAAC,GAAG;AACvB,kBAAI,KAAK,iBAAiB,CAAC,CAAC;AAC5B,kBAAI,KAAK,YAAY,UAAU,MAAM,CAAC,EAAE,SAAS,CAAC,CAAC;AAAA,YACrD;AAAA,UACF,CAAC;AAAA,QACH;AACA,YAAI,cAAc,QAAQ,GAAG;AAC3B,iBAAO,KAAK,iBAAiB,GAAG,IAAI,MAAM,IAAI,KAAK,GAAG,CAAC;AAAA,QACzD,WAAW,IAAI,WAAW,GAAG;AAC3B,iBAAO,KAAK,IAAI,KAAK,GAAG,CAAC;AAAA,QAC3B;AAAA,MACF;AAAA,IACF;AAAA,EACF,OAAO;AACL,QAAI,aAAa,KAAK;AACpB,UAAI,UAAU,KAAK,GAAG;AACpB,eAAO,KAAK,iBAAiB,GAAG,CAAC;AAAA,MACnC;AAAA,IACF,WAAW,UAAU,OAAO,aAAa,OAAO,aAAa,MAAM;AACjE,aAAO,KAAK,iBAAiB,GAAG,IAAI,GAAG;AAAA,IACzC,WAAW,UAAU,IAAI;AACvB,aAAO,KAAK,EAAE;AAAA,IAChB;AAAA,EACF;AACA,SAAO;AACT;AACA,SAAS,SAAS,UAAU;AAC1B,SAAO;AAAA,IACL,QAAQ,OAAO,KAAK,MAAM,QAAQ;AAAA,EACpC;AACF;AACA,SAAS,OAAO,UAAU,SAAS;AACjC,MAAI,YAAY,CAAC,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,GAAG;AAClD,aAAW,SAAS;AAAA,IAClB;AAAA,IACA,SAAS,GAAG,YAAY,SAAS;AAC/B,UAAI,YAAY;AACd,YAAI,WAAW;AACf,cAAM,SAAS,CAAC;AAChB,YAAI,UAAU,QAAQ,WAAW,OAAO,CAAC,CAAC,MAAM,IAAI;AAClD,qBAAW,WAAW,OAAO,CAAC;AAC9B,uBAAa,WAAW,OAAO,CAAC;AAAA,QAClC;AACA,mBAAW,MAAM,IAAI,EAAE,QAAQ,SAAS,UAAU;AAChD,cAAI,MAAM,4BAA4B,KAAK,QAAQ;AACnD,iBAAO,KAAK,UAAU,SAAS,UAAU,IAAI,CAAC,GAAG,IAAI,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC;AAAA,QACpE,CAAC;AACD,YAAI,YAAY,aAAa,KAAK;AAChC,cAAI,YAAY;AAChB,cAAI,aAAa,KAAK;AACpB,wBAAY;AAAA,UACd,WAAW,aAAa,KAAK;AAC3B,wBAAY;AAAA,UACd;AACA,kBAAQ,OAAO,WAAW,IAAI,WAAW,MAAM,OAAO,KAAK,SAAS;AAAA,QACtE,OAAO;AACL,iBAAO,OAAO,KAAK,GAAG;AAAA,QACxB;AAAA,MACF,OAAO;AACL,eAAO,eAAe,OAAO;AAAA,MAC/B;AAAA,IACF;AAAA,EACF;AACA,MAAI,aAAa,KAAK;AACpB,WAAO;AAAA,EACT,OAAO;AACL,WAAO,SAAS,QAAQ,OAAO,EAAE;AAAA,EACnC;AACF;;;AC7HA,SAAS,MAAM,SAAS;AACtB,MAAI,SAAS,QAAQ,OAAO,YAAY;AACxC,MAAI,OAAO,QAAQ,OAAO,KAAK,QAAQ,gBAAgB,MAAM;AAC7D,MAAI,UAAU,OAAO,OAAO,CAAC,GAAG,QAAQ,OAAO;AAC/C,MAAI;AACJ,MAAI,aAAa,KAAK,SAAS;AAAA,IAC7B;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,EACF,CAAC;AACD,QAAM,mBAAmB,wBAAwB,GAAG;AACpD,QAAM,SAAS,GAAG,EAAE,OAAO,UAAU;AACrC,MAAI,CAAC,QAAQ,KAAK,GAAG,GAAG;AACtB,UAAM,QAAQ,UAAU;AAAA,EAC1B;AACA,QAAM,oBAAoB,OAAO,KAAK,OAAO,EAAE,OAAO,CAAC,WAAW,iBAAiB,SAAS,MAAM,CAAC,EAAE,OAAO,SAAS;AACrH,QAAM,sBAAsB,KAAK,YAAY,iBAAiB;AAC9D,QAAM,kBAAkB,6BAA6B,KAAK,QAAQ,MAAM;AACxE,MAAI,CAAC,iBAAiB;AACpB,QAAI,QAAQ,UAAU,QAAQ;AAC5B,cAAQ,SAAS,QAAQ,OAAO,MAAM,GAAG,EAAE;AAAA,QACzC,CAAC,WAAW,OAAO;AAAA,UACjB;AAAA,UACA,uBAAuB,QAAQ,UAAU,MAAM;AAAA,QACjD;AAAA,MACF,EAAE,KAAK,GAAG;AAAA,IACZ;AACA,QAAI,IAAI,SAAS,UAAU,GAAG;AAC5B,UAAI,QAAQ,UAAU,UAAU,QAAQ;AACtC,cAAM,2BAA2B,QAAQ,OAAO,MAAM,qBAAqB,KAAK,CAAC;AACjF,gBAAQ,SAAS,yBAAyB,OAAO,QAAQ,UAAU,QAAQ,EAAE,IAAI,CAAC,YAAY;AAC5F,gBAAM,SAAS,QAAQ,UAAU,SAAS,IAAI,QAAQ,UAAU,MAAM,KAAK;AAC3E,iBAAO,0BAA0B,OAAO,WAAW,MAAM;AAAA,QAC3D,CAAC,EAAE,KAAK,GAAG;AAAA,MACb;AAAA,IACF;AAAA,EACF;AACA,MAAI,CAAC,OAAO,MAAM,EAAE,SAAS,MAAM,GAAG;AACpC,UAAM,mBAAmB,KAAK,mBAAmB;AAAA,EACnD,OAAO;AACL,QAAI,UAAU,qBAAqB;AACjC,aAAO,oBAAoB;AAAA,IAC7B,OAAO;AACL,UAAI,OAAO,KAAK,mBAAmB,EAAE,QAAQ;AAC3C,eAAO;AAAA,MACT;AAAA,IACF;AAAA,EACF;AACA,MAAI,CAAC,QAAQ,cAAc,KAAK,OAAO,SAAS,aAAa;AAC3D,YAAQ,cAAc,IAAI;AAAA,EAC5B;AACA,MAAI,CAAC,SAAS,KAAK,EAAE,SAAS,MAAM,KAAK,OAAO,SAAS,aAAa;AACpE,WAAO;AAAA,EACT;AACA,SAAO,OAAO;AAAA,IACZ,EAAE,QAAQ,KAAK,QAAQ;AAAA,IACvB,OAAO,SAAS,cAAc,EAAE,KAAK,IAAI;AAAA,IACzC,QAAQ,UAAU,EAAE,SAAS,QAAQ,QAAQ,IAAI;AAAA,EACnD;AACF;;;AC/DA,SAAS,qBAAqB,UAAU,OAAO,SAAS;AACtD,SAAO,MAAM,MAAM,UAAU,OAAO,OAAO,CAAC;AAC9C;;;ACFA,SAAS,aAAa,aAAa,aAAa;AAC9C,QAAMA,YAAW,MAAM,aAAa,WAAW;AAC/C,QAAMC,YAAW,qBAAqB,KAAK,MAAMD,SAAQ;AACzD,SAAO,OAAO,OAAOC,WAAU;AAAA,IAC7B,UAAAD;AAAA,IACA,UAAU,aAAa,KAAK,MAAMA,SAAQ;AAAA,IAC1C,OAAO,MAAM,KAAK,MAAMA,SAAQ;AAAA,IAChC;AAAA,EACF,CAAC;AACH;;;ACVA,IAAM,WAAW,aAAa,MAAM,QAAQ;",
+ "names": ["DEFAULTS", "endpoint"]
+}
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-src/defaults.js b/.github/octokit/node_modules/@octokit/endpoint/dist-src/defaults.js
new file mode 100644
index 000000000..5f65ced4d
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-src/defaults.js
@@ -0,0 +1,17 @@
+import { getUserAgent } from "universal-user-agent";
+import { VERSION } from "./version.js";
+const userAgent = `octokit-endpoint.js/${VERSION} ${getUserAgent()}`;
+const DEFAULTS = {
+ method: "GET",
+ baseUrl: "https://api.github.com",
+ headers: {
+ accept: "application/vnd.github.v3+json",
+ "user-agent": userAgent
+ },
+ mediaType: {
+ format: ""
+ }
+};
+export {
+ DEFAULTS
+};
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-src/endpoint-with-defaults.js b/.github/octokit/node_modules/@octokit/endpoint/dist-src/endpoint-with-defaults.js
new file mode 100644
index 000000000..e67c9e5f0
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-src/endpoint-with-defaults.js
@@ -0,0 +1,9 @@
+import { DEFAULTS } from "./defaults.js";
+import { merge } from "./merge.js";
+import { parse } from "./parse.js";
+function endpointWithDefaults(defaults, route, options) {
+ return parse(merge(defaults, route, options));
+}
+export {
+ endpointWithDefaults
+};
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-src/index.js b/.github/octokit/node_modules/@octokit/endpoint/dist-src/index.js
new file mode 100644
index 000000000..7d60502d0
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-src/index.js
@@ -0,0 +1,6 @@
+import { withDefaults } from "./with-defaults.js";
+import { DEFAULTS } from "./defaults.js";
+const endpoint = withDefaults(null, DEFAULTS);
+export {
+ endpoint
+};
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-src/merge.js b/.github/octokit/node_modules/@octokit/endpoint/dist-src/merge.js
new file mode 100644
index 000000000..cf1b37ef6
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-src/merge.js
@@ -0,0 +1,27 @@
+import { lowercaseKeys } from "./util/lowercase-keys.js";
+import { mergeDeep } from "./util/merge-deep.js";
+import { removeUndefinedProperties } from "./util/remove-undefined-properties.js";
+function merge(defaults, route, options) {
+ if (typeof route === "string") {
+ let [method, url] = route.split(" ");
+ options = Object.assign(url ? { method, url } : { url: method }, options);
+ } else {
+ options = Object.assign({}, route);
+ }
+ options.headers = lowercaseKeys(options.headers);
+ removeUndefinedProperties(options);
+ removeUndefinedProperties(options.headers);
+ const mergedOptions = mergeDeep(defaults || {}, options);
+ if (options.url === "/graphql") {
+ if (defaults && defaults.mediaType.previews?.length) {
+ mergedOptions.mediaType.previews = defaults.mediaType.previews.filter(
+ (preview) => !mergedOptions.mediaType.previews.includes(preview)
+ ).concat(mergedOptions.mediaType.previews);
+ }
+ mergedOptions.mediaType.previews = (mergedOptions.mediaType.previews || []).map((preview) => preview.replace(/-preview/, ""));
+ }
+ return mergedOptions;
+}
+export {
+ merge
+};
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-src/parse.js b/.github/octokit/node_modules/@octokit/endpoint/dist-src/parse.js
new file mode 100644
index 000000000..926b6e3c4
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-src/parse.js
@@ -0,0 +1,70 @@
+import { addQueryParameters } from "./util/add-query-parameters.js";
+import { extractUrlVariableNames } from "./util/extract-url-variable-names.js";
+import { omit } from "./util/omit.js";
+import { parseUrl } from "./util/url-template.js";
+function parse(options) {
+ let method = options.method.toUpperCase();
+ let url = (options.url || "/").replace(/:([a-z]\w+)/g, "{$1}");
+ let headers = Object.assign({}, options.headers);
+ let body;
+ let parameters = omit(options, [
+ "method",
+ "baseUrl",
+ "url",
+ "headers",
+ "request",
+ "mediaType"
+ ]);
+ const urlVariableNames = extractUrlVariableNames(url);
+ url = parseUrl(url).expand(parameters);
+ if (!/^http/.test(url)) {
+ url = options.baseUrl + url;
+ }
+ const omittedParameters = Object.keys(options).filter((option) => urlVariableNames.includes(option)).concat("baseUrl");
+ const remainingParameters = omit(parameters, omittedParameters);
+ const isBinaryRequest = /application\/octet-stream/i.test(headers.accept);
+ if (!isBinaryRequest) {
+ if (options.mediaType.format) {
+ headers.accept = headers.accept.split(/,/).map(
+ (format) => format.replace(
+ /application\/vnd(\.\w+)(\.v3)?(\.\w+)?(\+json)?$/,
+ `application/vnd$1$2.${options.mediaType.format}`
+ )
+ ).join(",");
+ }
+ if (url.endsWith("/graphql")) {
+ if (options.mediaType.previews?.length) {
+ const previewsFromAcceptHeader = headers.accept.match(/[\w-]+(?=-preview)/g) || [];
+ headers.accept = previewsFromAcceptHeader.concat(options.mediaType.previews).map((preview) => {
+ const format = options.mediaType.format ? `.${options.mediaType.format}` : "+json";
+ return `application/vnd.github.${preview}-preview${format}`;
+ }).join(",");
+ }
+ }
+ }
+ if (["GET", "HEAD"].includes(method)) {
+ url = addQueryParameters(url, remainingParameters);
+ } else {
+ if ("data" in remainingParameters) {
+ body = remainingParameters.data;
+ } else {
+ if (Object.keys(remainingParameters).length) {
+ body = remainingParameters;
+ }
+ }
+ }
+ if (!headers["content-type"] && typeof body !== "undefined") {
+ headers["content-type"] = "application/json; charset=utf-8";
+ }
+ if (["PATCH", "PUT"].includes(method) && typeof body === "undefined") {
+ body = "";
+ }
+ return Object.assign(
+ { method, url, headers },
+ typeof body !== "undefined" ? { body } : null,
+ options.request ? { request: options.request } : null
+ );
+}
+export {
+ parse
+};
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/add-query-parameters.js b/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/add-query-parameters.js
new file mode 100644
index 000000000..6bdf7367c
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/add-query-parameters.js
@@ -0,0 +1,16 @@
+function addQueryParameters(url, parameters) {
+ const separator = /\?/.test(url) ? "&" : "?";
+ const names = Object.keys(parameters);
+ if (names.length === 0) {
+ return url;
+ }
+ return url + separator + names.map((name) => {
+ if (name === "q") {
+ return "q=" + parameters.q.split("+").map(encodeURIComponent).join("+");
+ }
+ return `${name}=${encodeURIComponent(parameters[name])}`;
+ }).join("&");
+}
+export {
+ addQueryParameters
+};
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/extract-url-variable-names.js b/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/extract-url-variable-names.js
new file mode 100644
index 000000000..1d75bb913
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/extract-url-variable-names.js
@@ -0,0 +1,14 @@
+const urlVariableRegex = /\{[^}]+\}/g;
+function removeNonChars(variableName) {
+ return variableName.replace(/^\W+|\W+$/g, "").split(/,/);
+}
+function extractUrlVariableNames(url) {
+ const matches = url.match(urlVariableRegex);
+ if (!matches) {
+ return [];
+ }
+ return matches.map(removeNonChars).reduce((a, b) => a.concat(b), []);
+}
+export {
+ extractUrlVariableNames
+};
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/is-plain-object.js b/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/is-plain-object.js
new file mode 100644
index 000000000..44b5eb2a6
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/is-plain-object.js
@@ -0,0 +1,14 @@
+function isPlainObject(value) {
+ if (typeof value !== "object" || value === null)
+ return false;
+ if (Object.prototype.toString.call(value) !== "[object Object]")
+ return false;
+ const proto = Object.getPrototypeOf(value);
+ if (proto === null)
+ return true;
+ const Ctor = Object.prototype.hasOwnProperty.call(proto, "constructor") && proto.constructor;
+ return typeof Ctor === "function" && Ctor instanceof Ctor && Function.prototype.call(Ctor) === Function.prototype.call(value);
+}
+export {
+ isPlainObject
+};
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/lowercase-keys.js b/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/lowercase-keys.js
new file mode 100644
index 000000000..9bd7bb991
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/lowercase-keys.js
@@ -0,0 +1,12 @@
+function lowercaseKeys(object) {
+ if (!object) {
+ return {};
+ }
+ return Object.keys(object).reduce((newObj, key) => {
+ newObj[key.toLowerCase()] = object[key];
+ return newObj;
+ }, {});
+}
+export {
+ lowercaseKeys
+};
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/merge-deep.js b/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/merge-deep.js
new file mode 100644
index 000000000..fc7de8523
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/merge-deep.js
@@ -0,0 +1,18 @@
+import { isPlainObject } from "./is-plain-object.js";
+function mergeDeep(defaults, options) {
+ const result = Object.assign({}, defaults);
+ Object.keys(options).forEach((key) => {
+ if (isPlainObject(options[key])) {
+ if (!(key in defaults))
+ Object.assign(result, { [key]: options[key] });
+ else
+ result[key] = mergeDeep(defaults[key], options[key]);
+ } else {
+ Object.assign(result, { [key]: options[key] });
+ }
+ });
+ return result;
+}
+export {
+ mergeDeep
+};
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/omit.js b/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/omit.js
new file mode 100644
index 000000000..aceffe25e
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/omit.js
@@ -0,0 +1,12 @@
+function omit(object, keysToOmit) {
+ const result = { __proto__: null };
+ for (const key of Object.keys(object)) {
+ if (keysToOmit.indexOf(key) === -1) {
+ result[key] = object[key];
+ }
+ }
+ return result;
+}
+export {
+ omit
+};
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/remove-undefined-properties.js b/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/remove-undefined-properties.js
new file mode 100644
index 000000000..8653027c8
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/remove-undefined-properties.js
@@ -0,0 +1,11 @@
+function removeUndefinedProperties(obj) {
+ for (const key in obj) {
+ if (obj[key] === void 0) {
+ delete obj[key];
+ }
+ }
+ return obj;
+}
+export {
+ removeUndefinedProperties
+};
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/url-template.js b/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/url-template.js
new file mode 100644
index 000000000..f70aa5c73
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-src/util/url-template.js
@@ -0,0 +1,133 @@
+function encodeReserved(str) {
+ return str.split(/(%[0-9A-Fa-f]{2})/g).map(function(part) {
+ if (!/%[0-9A-Fa-f]/.test(part)) {
+ part = encodeURI(part).replace(/%5B/g, "[").replace(/%5D/g, "]");
+ }
+ return part;
+ }).join("");
+}
+function encodeUnreserved(str) {
+ return encodeURIComponent(str).replace(/[!'()*]/g, function(c) {
+ return "%" + c.charCodeAt(0).toString(16).toUpperCase();
+ });
+}
+function encodeValue(operator, value, key) {
+ value = operator === "+" || operator === "#" ? encodeReserved(value) : encodeUnreserved(value);
+ if (key) {
+ return encodeUnreserved(key) + "=" + value;
+ } else {
+ return value;
+ }
+}
+function isDefined(value) {
+ return value !== void 0 && value !== null;
+}
+function isKeyOperator(operator) {
+ return operator === ";" || operator === "&" || operator === "?";
+}
+function getValues(context, operator, key, modifier) {
+ var value = context[key], result = [];
+ if (isDefined(value) && value !== "") {
+ if (typeof value === "string" || typeof value === "number" || typeof value === "boolean") {
+ value = value.toString();
+ if (modifier && modifier !== "*") {
+ value = value.substring(0, parseInt(modifier, 10));
+ }
+ result.push(
+ encodeValue(operator, value, isKeyOperator(operator) ? key : "")
+ );
+ } else {
+ if (modifier === "*") {
+ if (Array.isArray(value)) {
+ value.filter(isDefined).forEach(function(value2) {
+ result.push(
+ encodeValue(operator, value2, isKeyOperator(operator) ? key : "")
+ );
+ });
+ } else {
+ Object.keys(value).forEach(function(k) {
+ if (isDefined(value[k])) {
+ result.push(encodeValue(operator, value[k], k));
+ }
+ });
+ }
+ } else {
+ const tmp = [];
+ if (Array.isArray(value)) {
+ value.filter(isDefined).forEach(function(value2) {
+ tmp.push(encodeValue(operator, value2));
+ });
+ } else {
+ Object.keys(value).forEach(function(k) {
+ if (isDefined(value[k])) {
+ tmp.push(encodeUnreserved(k));
+ tmp.push(encodeValue(operator, value[k].toString()));
+ }
+ });
+ }
+ if (isKeyOperator(operator)) {
+ result.push(encodeUnreserved(key) + "=" + tmp.join(","));
+ } else if (tmp.length !== 0) {
+ result.push(tmp.join(","));
+ }
+ }
+ }
+ } else {
+ if (operator === ";") {
+ if (isDefined(value)) {
+ result.push(encodeUnreserved(key));
+ }
+ } else if (value === "" && (operator === "&" || operator === "?")) {
+ result.push(encodeUnreserved(key) + "=");
+ } else if (value === "") {
+ result.push("");
+ }
+ }
+ return result;
+}
+function parseUrl(template) {
+ return {
+ expand: expand.bind(null, template)
+ };
+}
+function expand(template, context) {
+ var operators = ["+", "#", ".", "/", ";", "?", "&"];
+ template = template.replace(
+ /\{([^\{\}]+)\}|([^\{\}]+)/g,
+ function(_, expression, literal) {
+ if (expression) {
+ let operator = "";
+ const values = [];
+ if (operators.indexOf(expression.charAt(0)) !== -1) {
+ operator = expression.charAt(0);
+ expression = expression.substr(1);
+ }
+ expression.split(/,/g).forEach(function(variable) {
+ var tmp = /([^:\*]*)(?::(\d+)|(\*))?/.exec(variable);
+ values.push(getValues(context, operator, tmp[1], tmp[2] || tmp[3]));
+ });
+ if (operator && operator !== "+") {
+ var separator = ",";
+ if (operator === "?") {
+ separator = "&";
+ } else if (operator !== "#") {
+ separator = operator;
+ }
+ return (values.length !== 0 ? operator : "") + values.join(separator);
+ } else {
+ return values.join(",");
+ }
+ } else {
+ return encodeReserved(literal);
+ }
+ }
+ );
+ if (template === "/") {
+ return template;
+ } else {
+ return template.replace(/\/$/, "");
+ }
+}
+export {
+ parseUrl
+};
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-src/version.js b/.github/octokit/node_modules/@octokit/endpoint/dist-src/version.js
new file mode 100644
index 000000000..5581b6e3c
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-src/version.js
@@ -0,0 +1,4 @@
+const VERSION = "10.1.1";
+export {
+ VERSION
+};
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-src/with-defaults.js b/.github/octokit/node_modules/@octokit/endpoint/dist-src/with-defaults.js
new file mode 100644
index 000000000..5551d42b3
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-src/with-defaults.js
@@ -0,0 +1,16 @@
+import { endpointWithDefaults } from "./endpoint-with-defaults.js";
+import { merge } from "./merge.js";
+import { parse } from "./parse.js";
+function withDefaults(oldDefaults, newDefaults) {
+ const DEFAULTS = merge(oldDefaults, newDefaults);
+ const endpoint = endpointWithDefaults.bind(null, DEFAULTS);
+ return Object.assign(endpoint, {
+ DEFAULTS,
+ defaults: withDefaults.bind(null, DEFAULTS),
+ merge: merge.bind(null, DEFAULTS),
+ parse
+ });
+}
+export {
+ withDefaults
+};
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-types/defaults.d.ts b/.github/octokit/node_modules/@octokit/endpoint/dist-types/defaults.d.ts
new file mode 100644
index 000000000..d65e889bc
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-types/defaults.d.ts
@@ -0,0 +1,2 @@
+import type { EndpointDefaults } from "@octokit/types";
+export declare const DEFAULTS: EndpointDefaults;
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-types/endpoint-with-defaults.d.ts b/.github/octokit/node_modules/@octokit/endpoint/dist-types/endpoint-with-defaults.d.ts
new file mode 100644
index 000000000..ec25627cd
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-types/endpoint-with-defaults.d.ts
@@ -0,0 +1,3 @@
+import type { EndpointOptions, RequestParameters, Route } from "@octokit/types";
+import { DEFAULTS } from "./defaults.js";
+export declare function endpointWithDefaults(defaults: typeof DEFAULTS, route: Route | EndpointOptions, options?: RequestParameters): import("@octokit/types").RequestOptions;
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-types/index.d.ts b/.github/octokit/node_modules/@octokit/endpoint/dist-types/index.d.ts
new file mode 100644
index 000000000..1ede13667
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-types/index.d.ts
@@ -0,0 +1 @@
+export declare const endpoint: import("@octokit/types").EndpointInterface;
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-types/merge.d.ts b/.github/octokit/node_modules/@octokit/endpoint/dist-types/merge.d.ts
new file mode 100644
index 000000000..f58398120
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-types/merge.d.ts
@@ -0,0 +1,2 @@
+import type { EndpointDefaults, RequestParameters, Route } from "@octokit/types";
+export declare function merge(defaults: EndpointDefaults | null, route?: Route | RequestParameters, options?: RequestParameters): EndpointDefaults;
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-types/parse.d.ts b/.github/octokit/node_modules/@octokit/endpoint/dist-types/parse.d.ts
new file mode 100644
index 000000000..5d0927ae8
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-types/parse.d.ts
@@ -0,0 +1,2 @@
+import type { EndpointDefaults, RequestOptions } from "@octokit/types";
+export declare function parse(options: EndpointDefaults): RequestOptions;
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/add-query-parameters.d.ts b/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/add-query-parameters.d.ts
new file mode 100644
index 000000000..4b192ac41
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/add-query-parameters.d.ts
@@ -0,0 +1,4 @@
+export declare function addQueryParameters(url: string, parameters: {
+ [x: string]: string | undefined;
+ q?: string;
+}): string;
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/extract-url-variable-names.d.ts b/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/extract-url-variable-names.d.ts
new file mode 100644
index 000000000..93586d4db
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/extract-url-variable-names.d.ts
@@ -0,0 +1 @@
+export declare function extractUrlVariableNames(url: string): string[];
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/is-plain-object.d.ts b/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/is-plain-object.d.ts
new file mode 100644
index 000000000..004fa4bf5
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/is-plain-object.d.ts
@@ -0,0 +1 @@
+export declare function isPlainObject(value: unknown): value is Object;
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/lowercase-keys.d.ts b/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/lowercase-keys.d.ts
new file mode 100644
index 000000000..1daf30736
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/lowercase-keys.d.ts
@@ -0,0 +1,5 @@
+export declare function lowercaseKeys(object?: {
+ [key: string]: any;
+}): {
+ [key: string]: any;
+};
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/merge-deep.d.ts b/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/merge-deep.d.ts
new file mode 100644
index 000000000..914411cf9
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/merge-deep.d.ts
@@ -0,0 +1 @@
+export declare function mergeDeep(defaults: any, options: any): object;
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/omit.d.ts b/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/omit.d.ts
new file mode 100644
index 000000000..06927d6bd
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/omit.d.ts
@@ -0,0 +1,5 @@
+export declare function omit(object: {
+ [key: string]: any;
+}, keysToOmit: string[]): {
+ [key: string]: any;
+};
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/remove-undefined-properties.d.ts b/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/remove-undefined-properties.d.ts
new file mode 100644
index 000000000..92d8d8505
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/remove-undefined-properties.d.ts
@@ -0,0 +1 @@
+export declare function removeUndefinedProperties(obj: any): any;
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/url-template.d.ts b/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/url-template.d.ts
new file mode 100644
index 000000000..5d967cab3
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-types/util/url-template.d.ts
@@ -0,0 +1,3 @@
+export declare function parseUrl(template: string): {
+ expand: (context: object) => string;
+};
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-types/version.d.ts b/.github/octokit/node_modules/@octokit/endpoint/dist-types/version.d.ts
new file mode 100644
index 000000000..a889a1a2b
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-types/version.d.ts
@@ -0,0 +1 @@
+export declare const VERSION = "10.1.1";
diff --git a/.github/octokit/node_modules/@octokit/endpoint/dist-types/with-defaults.d.ts b/.github/octokit/node_modules/@octokit/endpoint/dist-types/with-defaults.d.ts
new file mode 100644
index 000000000..e09354c56
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/dist-types/with-defaults.d.ts
@@ -0,0 +1,2 @@
+import type { EndpointInterface, RequestParameters, EndpointDefaults } from "@octokit/types";
+export declare function withDefaults(oldDefaults: EndpointDefaults | null, newDefaults: RequestParameters): EndpointInterface;
diff --git a/.github/octokit/node_modules/@octokit/endpoint/package.json b/.github/octokit/node_modules/@octokit/endpoint/package.json
new file mode 100644
index 000000000..9873e6943
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/endpoint/package.json
@@ -0,0 +1,52 @@
+{
+ "name": "@octokit/endpoint",
+ "version": "10.1.1",
+ "type": "module",
+ "publishConfig": {
+ "access": "public",
+ "provenance": true
+ },
+ "description": "Turns REST API endpoints into generic request options",
+ "repository": "github:octokit/endpoint.js",
+ "keywords": [
+ "octokit",
+ "github",
+ "api",
+ "rest"
+ ],
+ "author": "Gregor Martynus (https://github.com/gr2m)",
+ "license": "MIT",
+ "devDependencies": {
+ "@octokit/tsconfig": "^3.0.0",
+ "@types/jest": "^29.0.0",
+ "@types/node": "^20.10.0",
+ "esbuild": "^0.20.0",
+ "glob": "^10.2.7",
+ "jest": "^29.0.0",
+ "prettier": "3.2.5",
+ "semantic-release": "^23.0.0",
+ "semantic-release-plugin-update-version-in-files": "^1.0.0",
+ "ts-jest": "^29.0.0",
+ "typescript": "^5.0.0"
+ },
+ "dependencies": {
+ "@octokit/types": "^13.0.0",
+ "universal-user-agent": "^7.0.2"
+ },
+ "engines": {
+ "node": ">= 18"
+ },
+ "files": [
+ "dist-*/**",
+ "bin/**"
+ ],
+ "types": "./dist-types/index.d.ts",
+ "exports": {
+ ".": {
+ "types": "./dist-types/index.d.ts",
+ "import": "./dist-bundle/index.js",
+ "default": "./dist-bundle/index.js"
+ }
+ },
+ "sideEffects": false
+}
diff --git a/.github/octokit/node_modules/@octokit/graphql/LICENSE b/.github/octokit/node_modules/@octokit/graphql/LICENSE
new file mode 100644
index 000000000..af5366d0d
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/graphql/LICENSE
@@ -0,0 +1,21 @@
+The MIT License
+
+Copyright (c) 2018 Octokit contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/.github/octokit/node_modules/@octokit/graphql/README.md b/.github/octokit/node_modules/@octokit/graphql/README.md
new file mode 100644
index 000000000..074cb056f
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/graphql/README.md
@@ -0,0 +1,408 @@
+# graphql.js
+
+> GitHub GraphQL API client for browsers and Node
+
+[![@latest](https://img.shields.io/npm/v/@octokit/graphql.svg)](https://www.npmjs.com/package/@octokit/graphql)
+[![Build Status](https://github.com/octokit/graphql.js/workflows/Test/badge.svg)](https://github.com/octokit/graphql.js/actions?query=workflow%3ATest+branch%3Amain)
+
+
+
+- [Usage](#usage)
+ - [Send a simple query](#send-a-simple-query)
+ - [Authentication](#authentication)
+ - [Variables](#variables)
+ - [Pass query together with headers and variables](#pass-query-together-with-headers-and-variables)
+ - [Use with GitHub Enterprise](#use-with-github-enterprise)
+ - [Use custom `@octokit/request` instance](#use-custom-octokitrequest-instance)
+- [TypeScript](#typescript)
+ - [Additional Types](#additional-types)
+- [Errors](#errors)
+- [Partial responses](#partial-responses)
+- [Writing tests](#writing-tests)
+- [License](#license)
+
+
+
+## Usage
+
+
+
+
+Browsers
+
+
+Load `@octokit/graphql` directly from [esm.sh](https://esm.sh)
+
+```html
+
+```
+
+
+
+Node
+
+
+Install with npm install @octokit/graphql
+
+```js
+import { graphql } from "@octokit/graphql";
+```
+
+
+
+
+
+### Send a simple query
+
+```js
+const { repository } = await graphql(
+ `
+ {
+ repository(owner: "octokit", name: "graphql.js") {
+ issues(last: 3) {
+ edges {
+ node {
+ title
+ }
+ }
+ }
+ }
+ }
+ `,
+ {
+ headers: {
+ authorization: `token secret123`,
+ },
+ },
+);
+```
+
+### Authentication
+
+The simplest way to authenticate a request is to set the `Authorization` header, e.g. to a [personal access token](https://github.com/settings/tokens/).
+
+```js
+const graphqlWithAuth = graphql.defaults({
+ headers: {
+ authorization: `token secret123`,
+ },
+});
+const { repository } = await graphqlWithAuth(`
+ {
+ repository(owner: "octokit", name: "graphql.js") {
+ issues(last: 3) {
+ edges {
+ node {
+ title
+ }
+ }
+ }
+ }
+ }
+`);
+```
+
+For more complex authentication strategies such as GitHub Apps or Basic, we recommend the according authentication library exported by [`@octokit/auth`](https://github.com/octokit/auth.js).
+
+```js
+const { createAppAuth } = await import("@octokit/auth-app");
+const auth = createAppAuth({
+ appId: process.env.APP_ID,
+ privateKey: process.env.PRIVATE_KEY,
+ installationId: 123,
+});
+const graphqlWithAuth = graphql.defaults({
+ request: {
+ hook: auth.hook,
+ },
+});
+
+const { repository } = await graphqlWithAuth(
+ `{
+ repository(owner: "octokit", name: "graphql.js") {
+ issues(last: 3) {
+ edges {
+ node {
+ title
+ }
+ }
+ }
+ }
+ }`,
+);
+```
+
+### Variables
+
+⚠️ Do not use [template literals](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals) in the query strings as they make your code vulnerable to query injection attacks (see [#2](https://github.com/octokit/graphql.js/issues/2)). Use variables instead:
+
+```js
+const { repository } = await graphql(
+ `
+ query lastIssues($owner: String!, $repo: String!, $num: Int = 3) {
+ repository(owner: $owner, name: $repo) {
+ issues(last: $num) {
+ edges {
+ node {
+ title
+ }
+ }
+ }
+ }
+ }
+ `,
+ {
+ owner: "octokit",
+ repo: "graphql.js",
+ headers: {
+ authorization: `token secret123`,
+ },
+ },
+);
+```
+
+### Pass query together with headers and variables
+
+```js
+import { graphql } from("@octokit/graphql");
+const { repository } = await graphql({
+ query: `query lastIssues($owner: String!, $repo: String!, $num: Int = 3) {
+ repository(owner: $owner, name: $repo) {
+ issues(last: $num) {
+ edges {
+ node {
+ title
+ }
+ }
+ }
+ }
+ }`,
+ owner: "octokit",
+ repo: "graphql.js",
+ headers: {
+ authorization: `token secret123`,
+ },
+});
+```
+
+### Use with GitHub Enterprise
+
+```js
+import { graphql } from "@octokit/graphql";
+graphql = graphql.defaults({
+ baseUrl: "https://github-enterprise.acme-inc.com/api",
+ headers: {
+ authorization: `token secret123`,
+ },
+});
+const { repository } = await graphql(`
+ {
+ repository(owner: "acme-project", name: "acme-repo") {
+ issues(last: 3) {
+ edges {
+ node {
+ title
+ }
+ }
+ }
+ }
+ }
+`);
+```
+
+### Use custom `@octokit/request` instance
+
+```js
+import { request } from "@octokit/request";
+import { withCustomRequest } from "@octokit/graphql";
+
+let requestCounter = 0;
+const myRequest = request.defaults({
+ headers: {
+ authorization: "bearer secret123",
+ },
+ request: {
+ hook(request, options) {
+ requestCounter++;
+ return request(options);
+ },
+ },
+});
+const myGraphql = withCustomRequest(myRequest);
+await request("/");
+await myGraphql(`
+ {
+ repository(owner: "acme-project", name: "acme-repo") {
+ issues(last: 3) {
+ edges {
+ node {
+ title
+ }
+ }
+ }
+ }
+ }
+`);
+// requestCounter is now 2
+```
+
+## TypeScript
+
+`@octokit/graphql` is exposing proper types for its usage with TypeScript projects.
+
+### Additional Types
+
+Additionally, `GraphQlQueryResponseData` has been exposed to users:
+
+```ts
+import type { GraphQlQueryResponseData } from "@octokit/graphql";
+```
+
+## Errors
+
+In case of a GraphQL error, `error.message` is set to a combined message describing all errors returned by the endpoint.
+All errors can be accessed at `error.errors`. `error.request` has the request options such as query, variables and headers set for easier debugging.
+
+```js
+import { graphql, GraphqlResponseError } from "@octokit/graphql";
+graphql = graphql.defaults({
+ headers: {
+ authorization: `token secret123`,
+ },
+});
+const query = `{
+ viewer {
+ bioHtml
+ }
+}`;
+
+try {
+ const result = await graphql(query);
+} catch (error) {
+ if (error instanceof GraphqlResponseError) {
+ // do something with the error, allowing you to detect a graphql response error,
+ // compared to accidentally catching unrelated errors.
+
+ // server responds with an object like the following (as an example)
+ // class GraphqlResponseError {
+ // "headers": {
+ // "status": "403",
+ // },
+ // "data": null,
+ // "errors": [{
+ // "message": "Field 'bioHtml' doesn't exist on type 'User'",
+ // "locations": [{
+ // "line": 3,
+ // "column": 5
+ // }]
+ // }]
+ // }
+
+ console.log("Request failed:", error.request); // { query, variables: {}, headers: { authorization: 'token secret123' } }
+ console.log(error.message); // Field 'bioHtml' doesn't exist on type 'User'
+ } else {
+ // handle non-GraphQL error
+ }
+}
+```
+
+## Partial responses
+
+A GraphQL query may respond with partial data accompanied by errors. In this case we will throw an error but the partial data will still be accessible through `error.data`
+
+```js
+import { graphql } from "@octokit/graphql";
+graphql = graphql.defaults({
+ headers: {
+ authorization: `token secret123`,
+ },
+});
+const query = `{
+ repository(name: "probot", owner: "probot") {
+ name
+ ref(qualifiedName: "master") {
+ target {
+ ... on Commit {
+ history(first: 25, after: "invalid cursor") {
+ nodes {
+ message
+ }
+ }
+ }
+ }
+ }
+ }
+}`;
+
+try {
+ const result = await graphql(query);
+} catch (error) {
+ // server responds with
+ // {
+ // "data": {
+ // "repository": {
+ // "name": "probot",
+ // "ref": null
+ // }
+ // },
+ // "errors": [
+ // {
+ // "type": "INVALID_CURSOR_ARGUMENTS",
+ // "path": [
+ // "repository",
+ // "ref",
+ // "target",
+ // "history"
+ // ],
+ // "locations": [
+ // {
+ // "line": 7,
+ // "column": 11
+ // }
+ // ],
+ // "message": "`invalid cursor` does not appear to be a valid cursor."
+ // }
+ // ]
+ // }
+
+ console.log("Request failed:", error.request); // { query, variables: {}, headers: { authorization: 'token secret123' } }
+ console.log(error.message); // `invalid cursor` does not appear to be a valid cursor.
+ console.log(error.data); // { repository: { name: 'probot', ref: null } }
+}
+```
+
+## Writing tests
+
+You can pass a replacement for [the built-in fetch implementation](https://github.com/bitinn/node-fetch) as `request.fetch` option. For example, using [fetch-mock](http://www.wheresrhys.co.uk/fetch-mock/) works great to write tests
+
+```js
+import assert from "assert";
+import fetchMock from "fetch-mock";
+
+import { graphql } from "@octokit/graphql";
+
+graphql("{ viewer { login } }", {
+ headers: {
+ authorization: "token secret123",
+ },
+ request: {
+ fetch: fetchMock
+ .sandbox()
+ .post("https://api.github.com/graphql", (url, options) => {
+ assert.strictEqual(options.headers.authorization, "token secret123");
+ assert.strictEqual(
+ options.body,
+ '{"query":"{ viewer { login } }"}',
+ "Sends correct query",
+ );
+ return { data: {} };
+ }),
+ },
+});
+```
+
+## License
+
+[MIT](LICENSE)
diff --git a/.github/octokit/node_modules/@octokit/graphql/dist-bundle/index.js b/.github/octokit/node_modules/@octokit/graphql/dist-bundle/index.js
new file mode 100644
index 000000000..ab7496a86
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/graphql/dist-bundle/index.js
@@ -0,0 +1,129 @@
+// pkg/dist-src/index.js
+import { request } from "@octokit/request";
+import { getUserAgent } from "universal-user-agent";
+
+// pkg/dist-src/version.js
+var VERSION = "0.0.0-development";
+
+// pkg/dist-src/with-defaults.js
+import { request as Request2 } from "@octokit/request";
+
+// pkg/dist-src/graphql.js
+import { request as Request } from "@octokit/request";
+
+// pkg/dist-src/error.js
+function _buildMessageForResponseErrors(data) {
+ return `Request failed due to following response errors:
+` + data.errors.map((e) => ` - ${e.message}`).join("\n");
+}
+var GraphqlResponseError = class extends Error {
+ constructor(request2, headers, response) {
+ super(_buildMessageForResponseErrors(response));
+ this.request = request2;
+ this.headers = headers;
+ this.response = response;
+ this.errors = response.errors;
+ this.data = response.data;
+ if (Error.captureStackTrace) {
+ Error.captureStackTrace(this, this.constructor);
+ }
+ }
+ name = "GraphqlResponseError";
+ errors;
+ data;
+};
+
+// pkg/dist-src/graphql.js
+var NON_VARIABLE_OPTIONS = [
+ "method",
+ "baseUrl",
+ "url",
+ "headers",
+ "request",
+ "query",
+ "mediaType"
+];
+var FORBIDDEN_VARIABLE_OPTIONS = ["query", "method", "url"];
+var GHES_V3_SUFFIX_REGEX = /\/api\/v3\/?$/;
+function graphql(request2, query, options) {
+ if (options) {
+ if (typeof query === "string" && "query" in options) {
+ return Promise.reject(
+ new Error(`[@octokit/graphql] "query" cannot be used as variable name`)
+ );
+ }
+ for (const key in options) {
+ if (!FORBIDDEN_VARIABLE_OPTIONS.includes(key))
+ continue;
+ return Promise.reject(
+ new Error(
+ `[@octokit/graphql] "${key}" cannot be used as variable name`
+ )
+ );
+ }
+ }
+ const parsedOptions = typeof query === "string" ? Object.assign({ query }, options) : query;
+ const requestOptions = Object.keys(
+ parsedOptions
+ ).reduce((result, key) => {
+ if (NON_VARIABLE_OPTIONS.includes(key)) {
+ result[key] = parsedOptions[key];
+ return result;
+ }
+ if (!result.variables) {
+ result.variables = {};
+ }
+ result.variables[key] = parsedOptions[key];
+ return result;
+ }, {});
+ const baseUrl = parsedOptions.baseUrl || request2.endpoint.DEFAULTS.baseUrl;
+ if (GHES_V3_SUFFIX_REGEX.test(baseUrl)) {
+ requestOptions.url = baseUrl.replace(GHES_V3_SUFFIX_REGEX, "/api/graphql");
+ }
+ return request2(requestOptions).then((response) => {
+ if (response.data.errors) {
+ const headers = {};
+ for (const key of Object.keys(response.headers)) {
+ headers[key] = response.headers[key];
+ }
+ throw new GraphqlResponseError(
+ requestOptions,
+ headers,
+ response.data
+ );
+ }
+ return response.data.data;
+ });
+}
+
+// pkg/dist-src/with-defaults.js
+function withDefaults(request2, newDefaults) {
+ const newRequest = request2.defaults(newDefaults);
+ const newApi = (query, options) => {
+ return graphql(newRequest, query, options);
+ };
+ return Object.assign(newApi, {
+ defaults: withDefaults.bind(null, newRequest),
+ endpoint: newRequest.endpoint
+ });
+}
+
+// pkg/dist-src/index.js
+var graphql2 = withDefaults(request, {
+ headers: {
+ "user-agent": `octokit-graphql.js/${VERSION} ${getUserAgent()}`
+ },
+ method: "POST",
+ url: "/graphql"
+});
+function withCustomRequest(customRequest) {
+ return withDefaults(customRequest, {
+ method: "POST",
+ url: "/graphql"
+ });
+}
+export {
+ GraphqlResponseError,
+ graphql2 as graphql,
+ withCustomRequest
+};
diff --git a/.github/octokit/node_modules/@octokit/graphql/dist-bundle/index.js.map b/.github/octokit/node_modules/@octokit/graphql/dist-bundle/index.js.map
new file mode 100644
index 000000000..b037ba302
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/graphql/dist-bundle/index.js.map
@@ -0,0 +1,7 @@
+{
+ "version": 3,
+ "sources": ["../dist-src/index.js", "../dist-src/version.js", "../dist-src/with-defaults.js", "../dist-src/graphql.js", "../dist-src/error.js"],
+ "sourcesContent": ["import { request } from \"@octokit/request\";\nimport { getUserAgent } from \"universal-user-agent\";\nimport { VERSION } from \"./version.js\";\nimport { withDefaults } from \"./with-defaults.js\";\nconst graphql = withDefaults(request, {\n headers: {\n \"user-agent\": `octokit-graphql.js/${VERSION} ${getUserAgent()}`\n },\n method: \"POST\",\n url: \"/graphql\"\n});\nimport { GraphqlResponseError } from \"./error.js\";\nfunction withCustomRequest(customRequest) {\n return withDefaults(customRequest, {\n method: \"POST\",\n url: \"/graphql\"\n });\n}\nexport {\n GraphqlResponseError,\n graphql,\n withCustomRequest\n};\n", "const VERSION = \"0.0.0-development\";\nexport {\n VERSION\n};\n", "import { request as Request } from \"@octokit/request\";\nimport { graphql } from \"./graphql.js\";\nfunction withDefaults(request, newDefaults) {\n const newRequest = request.defaults(newDefaults);\n const newApi = (query, options) => {\n return graphql(newRequest, query, options);\n };\n return Object.assign(newApi, {\n defaults: withDefaults.bind(null, newRequest),\n endpoint: newRequest.endpoint\n });\n}\nexport {\n withDefaults\n};\n", "import { request as Request } from \"@octokit/request\";\nimport { GraphqlResponseError } from \"./error.js\";\nconst NON_VARIABLE_OPTIONS = [\n \"method\",\n \"baseUrl\",\n \"url\",\n \"headers\",\n \"request\",\n \"query\",\n \"mediaType\"\n];\nconst FORBIDDEN_VARIABLE_OPTIONS = [\"query\", \"method\", \"url\"];\nconst GHES_V3_SUFFIX_REGEX = /\\/api\\/v3\\/?$/;\nfunction graphql(request, query, options) {\n if (options) {\n if (typeof query === \"string\" && \"query\" in options) {\n return Promise.reject(\n new Error(`[@octokit/graphql] \"query\" cannot be used as variable name`)\n );\n }\n for (const key in options) {\n if (!FORBIDDEN_VARIABLE_OPTIONS.includes(key))\n continue;\n return Promise.reject(\n new Error(\n `[@octokit/graphql] \"${key}\" cannot be used as variable name`\n )\n );\n }\n }\n const parsedOptions = typeof query === \"string\" ? Object.assign({ query }, options) : query;\n const requestOptions = Object.keys(\n parsedOptions\n ).reduce((result, key) => {\n if (NON_VARIABLE_OPTIONS.includes(key)) {\n result[key] = parsedOptions[key];\n return result;\n }\n if (!result.variables) {\n result.variables = {};\n }\n result.variables[key] = parsedOptions[key];\n return result;\n }, {});\n const baseUrl = parsedOptions.baseUrl || request.endpoint.DEFAULTS.baseUrl;\n if (GHES_V3_SUFFIX_REGEX.test(baseUrl)) {\n requestOptions.url = baseUrl.replace(GHES_V3_SUFFIX_REGEX, \"/api/graphql\");\n }\n return request(requestOptions).then((response) => {\n if (response.data.errors) {\n const headers = {};\n for (const key of Object.keys(response.headers)) {\n headers[key] = response.headers[key];\n }\n throw new GraphqlResponseError(\n requestOptions,\n headers,\n response.data\n );\n }\n return response.data.data;\n });\n}\nexport {\n graphql\n};\n", "function _buildMessageForResponseErrors(data) {\n return `Request failed due to following response errors:\n` + data.errors.map((e) => ` - ${e.message}`).join(\"\\n\");\n}\nclass GraphqlResponseError extends Error {\n constructor(request, headers, response) {\n super(_buildMessageForResponseErrors(response));\n this.request = request;\n this.headers = headers;\n this.response = response;\n this.errors = response.errors;\n this.data = response.data;\n if (Error.captureStackTrace) {\n Error.captureStackTrace(this, this.constructor);\n }\n }\n name = \"GraphqlResponseError\";\n errors;\n data;\n}\nexport {\n GraphqlResponseError\n};\n"],
+ "mappings": ";AAAA,SAAS,eAAe;AACxB,SAAS,oBAAoB;;;ACD7B,IAAM,UAAU;;;ACAhB,SAAS,WAAWA,gBAAe;;;ACAnC,SAAS,WAAW,eAAe;;;ACAnC,SAAS,+BAA+B,MAAM;AAC5C,SAAO;AAAA,IACL,KAAK,OAAO,IAAI,CAAC,MAAM,MAAM,EAAE,OAAO,EAAE,EAAE,KAAK,IAAI;AACvD;AACA,IAAM,uBAAN,cAAmC,MAAM;AAAA,EACvC,YAAYC,UAAS,SAAS,UAAU;AACtC,UAAM,+BAA+B,QAAQ,CAAC;AAC9C,SAAK,UAAUA;AACf,SAAK,UAAU;AACf,SAAK,WAAW;AAChB,SAAK,SAAS,SAAS;AACvB,SAAK,OAAO,SAAS;AACrB,QAAI,MAAM,mBAAmB;AAC3B,YAAM,kBAAkB,MAAM,KAAK,WAAW;AAAA,IAChD;AAAA,EACF;AAAA,EACA,OAAO;AAAA,EACP;AAAA,EACA;AACF;;;ADjBA,IAAM,uBAAuB;AAAA,EAC3B;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;AACA,IAAM,6BAA6B,CAAC,SAAS,UAAU,KAAK;AAC5D,IAAM,uBAAuB;AAC7B,SAAS,QAAQC,UAAS,OAAO,SAAS;AACxC,MAAI,SAAS;AACX,QAAI,OAAO,UAAU,YAAY,WAAW,SAAS;AACnD,aAAO,QAAQ;AAAA,QACb,IAAI,MAAM,4DAA4D;AAAA,MACxE;AAAA,IACF;AACA,eAAW,OAAO,SAAS;AACzB,UAAI,CAAC,2BAA2B,SAAS,GAAG;AAC1C;AACF,aAAO,QAAQ;AAAA,QACb,IAAI;AAAA,UACF,uBAAuB,GAAG;AAAA,QAC5B;AAAA,MACF;AAAA,IACF;AAAA,EACF;AACA,QAAM,gBAAgB,OAAO,UAAU,WAAW,OAAO,OAAO,EAAE,MAAM,GAAG,OAAO,IAAI;AACtF,QAAM,iBAAiB,OAAO;AAAA,IAC5B;AAAA,EACF,EAAE,OAAO,CAAC,QAAQ,QAAQ;AACxB,QAAI,qBAAqB,SAAS,GAAG,GAAG;AACtC,aAAO,GAAG,IAAI,cAAc,GAAG;AAC/B,aAAO;AAAA,IACT;AACA,QAAI,CAAC,OAAO,WAAW;AACrB,aAAO,YAAY,CAAC;AAAA,IACtB;AACA,WAAO,UAAU,GAAG,IAAI,cAAc,GAAG;AACzC,WAAO;AAAA,EACT,GAAG,CAAC,CAAC;AACL,QAAM,UAAU,cAAc,WAAWA,SAAQ,SAAS,SAAS;AACnE,MAAI,qBAAqB,KAAK,OAAO,GAAG;AACtC,mBAAe,MAAM,QAAQ,QAAQ,sBAAsB,cAAc;AAAA,EAC3E;AACA,SAAOA,SAAQ,cAAc,EAAE,KAAK,CAAC,aAAa;AAChD,QAAI,SAAS,KAAK,QAAQ;AACxB,YAAM,UAAU,CAAC;AACjB,iBAAW,OAAO,OAAO,KAAK,SAAS,OAAO,GAAG;AAC/C,gBAAQ,GAAG,IAAI,SAAS,QAAQ,GAAG;AAAA,MACrC;AACA,YAAM,IAAI;AAAA,QACR;AAAA,QACA;AAAA,QACA,SAAS;AAAA,MACX;AAAA,IACF;AACA,WAAO,SAAS,KAAK;AAAA,EACvB,CAAC;AACH;;;AD5DA,SAAS,aAAaC,UAAS,aAAa;AAC1C,QAAM,aAAaA,SAAQ,SAAS,WAAW;AAC/C,QAAM,SAAS,CAAC,OAAO,YAAY;AACjC,WAAO,QAAQ,YAAY,OAAO,OAAO;AAAA,EAC3C;AACA,SAAO,OAAO,OAAO,QAAQ;AAAA,IAC3B,UAAU,aAAa,KAAK,MAAM,UAAU;AAAA,IAC5C,UAAU,WAAW;AAAA,EACvB,CAAC;AACH;;;AFPA,IAAMC,WAAU,aAAa,SAAS;AAAA,EACpC,SAAS;AAAA,IACP,cAAc,sBAAsB,OAAO,IAAI,aAAa,CAAC;AAAA,EAC/D;AAAA,EACA,QAAQ;AAAA,EACR,KAAK;AACP,CAAC;AAED,SAAS,kBAAkB,eAAe;AACxC,SAAO,aAAa,eAAe;AAAA,IACjC,QAAQ;AAAA,IACR,KAAK;AAAA,EACP,CAAC;AACH;",
+ "names": ["Request", "request", "request", "request", "graphql"]
+}
diff --git a/.github/octokit/node_modules/@octokit/graphql/dist-src/error.js b/.github/octokit/node_modules/@octokit/graphql/dist-src/error.js
new file mode 100644
index 000000000..e899b5afc
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/graphql/dist-src/error.js
@@ -0,0 +1,23 @@
+function _buildMessageForResponseErrors(data) {
+ return `Request failed due to following response errors:
+` + data.errors.map((e) => ` - ${e.message}`).join("\n");
+}
+class GraphqlResponseError extends Error {
+ constructor(request, headers, response) {
+ super(_buildMessageForResponseErrors(response));
+ this.request = request;
+ this.headers = headers;
+ this.response = response;
+ this.errors = response.errors;
+ this.data = response.data;
+ if (Error.captureStackTrace) {
+ Error.captureStackTrace(this, this.constructor);
+ }
+ }
+ name = "GraphqlResponseError";
+ errors;
+ data;
+}
+export {
+ GraphqlResponseError
+};
diff --git a/.github/octokit/node_modules/@octokit/graphql/dist-src/graphql.js b/.github/octokit/node_modules/@octokit/graphql/dist-src/graphql.js
new file mode 100644
index 000000000..0b033b460
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/graphql/dist-src/graphql.js
@@ -0,0 +1,66 @@
+import { request as Request } from "@octokit/request";
+import { GraphqlResponseError } from "./error.js";
+const NON_VARIABLE_OPTIONS = [
+ "method",
+ "baseUrl",
+ "url",
+ "headers",
+ "request",
+ "query",
+ "mediaType"
+];
+const FORBIDDEN_VARIABLE_OPTIONS = ["query", "method", "url"];
+const GHES_V3_SUFFIX_REGEX = /\/api\/v3\/?$/;
+function graphql(request, query, options) {
+ if (options) {
+ if (typeof query === "string" && "query" in options) {
+ return Promise.reject(
+ new Error(`[@octokit/graphql] "query" cannot be used as variable name`)
+ );
+ }
+ for (const key in options) {
+ if (!FORBIDDEN_VARIABLE_OPTIONS.includes(key))
+ continue;
+ return Promise.reject(
+ new Error(
+ `[@octokit/graphql] "${key}" cannot be used as variable name`
+ )
+ );
+ }
+ }
+ const parsedOptions = typeof query === "string" ? Object.assign({ query }, options) : query;
+ const requestOptions = Object.keys(
+ parsedOptions
+ ).reduce((result, key) => {
+ if (NON_VARIABLE_OPTIONS.includes(key)) {
+ result[key] = parsedOptions[key];
+ return result;
+ }
+ if (!result.variables) {
+ result.variables = {};
+ }
+ result.variables[key] = parsedOptions[key];
+ return result;
+ }, {});
+ const baseUrl = parsedOptions.baseUrl || request.endpoint.DEFAULTS.baseUrl;
+ if (GHES_V3_SUFFIX_REGEX.test(baseUrl)) {
+ requestOptions.url = baseUrl.replace(GHES_V3_SUFFIX_REGEX, "/api/graphql");
+ }
+ return request(requestOptions).then((response) => {
+ if (response.data.errors) {
+ const headers = {};
+ for (const key of Object.keys(response.headers)) {
+ headers[key] = response.headers[key];
+ }
+ throw new GraphqlResponseError(
+ requestOptions,
+ headers,
+ response.data
+ );
+ }
+ return response.data.data;
+ });
+}
+export {
+ graphql
+};
diff --git a/.github/octokit/node_modules/@octokit/graphql/dist-src/index.js b/.github/octokit/node_modules/@octokit/graphql/dist-src/index.js
new file mode 100644
index 000000000..c3e544675
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/graphql/dist-src/index.js
@@ -0,0 +1,23 @@
+import { request } from "@octokit/request";
+import { getUserAgent } from "universal-user-agent";
+import { VERSION } from "./version.js";
+import { withDefaults } from "./with-defaults.js";
+const graphql = withDefaults(request, {
+ headers: {
+ "user-agent": `octokit-graphql.js/${VERSION} ${getUserAgent()}`
+ },
+ method: "POST",
+ url: "/graphql"
+});
+import { GraphqlResponseError } from "./error.js";
+function withCustomRequest(customRequest) {
+ return withDefaults(customRequest, {
+ method: "POST",
+ url: "/graphql"
+ });
+}
+export {
+ GraphqlResponseError,
+ graphql,
+ withCustomRequest
+};
diff --git a/.github/octokit/node_modules/@octokit/graphql/dist-src/version.js b/.github/octokit/node_modules/@octokit/graphql/dist-src/version.js
new file mode 100644
index 000000000..efd8294c9
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/graphql/dist-src/version.js
@@ -0,0 +1,4 @@
+const VERSION = "8.1.1";
+export {
+ VERSION
+};
diff --git a/.github/octokit/node_modules/@octokit/graphql/dist-src/with-defaults.js b/.github/octokit/node_modules/@octokit/graphql/dist-src/with-defaults.js
new file mode 100644
index 000000000..2e7dd5895
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/graphql/dist-src/with-defaults.js
@@ -0,0 +1,15 @@
+import { request as Request } from "@octokit/request";
+import { graphql } from "./graphql.js";
+function withDefaults(request, newDefaults) {
+ const newRequest = request.defaults(newDefaults);
+ const newApi = (query, options) => {
+ return graphql(newRequest, query, options);
+ };
+ return Object.assign(newApi, {
+ defaults: withDefaults.bind(null, newRequest),
+ endpoint: newRequest.endpoint
+ });
+}
+export {
+ withDefaults
+};
diff --git a/.github/octokit/node_modules/@octokit/graphql/dist-types/error.d.ts b/.github/octokit/node_modules/@octokit/graphql/dist-types/error.d.ts
new file mode 100644
index 000000000..722b9e0a4
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/graphql/dist-types/error.d.ts
@@ -0,0 +1,13 @@
+import type { ResponseHeaders } from "@octokit/types";
+import type { GraphQlEndpointOptions, GraphQlQueryResponse } from "./types.js";
+type ServerResponseData = Required>;
+export declare class GraphqlResponseError extends Error {
+ readonly request: GraphQlEndpointOptions;
+ readonly headers: ResponseHeaders;
+ readonly response: ServerResponseData;
+ name: string;
+ readonly errors: GraphQlQueryResponse["errors"];
+ readonly data: ResponseData;
+ constructor(request: GraphQlEndpointOptions, headers: ResponseHeaders, response: ServerResponseData);
+}
+export {};
diff --git a/.github/octokit/node_modules/@octokit/graphql/dist-types/graphql.d.ts b/.github/octokit/node_modules/@octokit/graphql/dist-types/graphql.d.ts
new file mode 100644
index 000000000..f21fe222a
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/graphql/dist-types/graphql.d.ts
@@ -0,0 +1,3 @@
+import { request as Request } from "@octokit/request";
+import type { RequestParameters, GraphQlQueryResponseData } from "./types.js";
+export declare function graphql(request: typeof Request, query: string | RequestParameters, options?: RequestParameters): Promise;
diff --git a/.github/octokit/node_modules/@octokit/graphql/dist-types/index.d.ts b/.github/octokit/node_modules/@octokit/graphql/dist-types/index.d.ts
new file mode 100644
index 000000000..94f3bf270
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/graphql/dist-types/index.d.ts
@@ -0,0 +1,5 @@
+import { request } from "@octokit/request";
+export declare const graphql: import("./types.js").graphql;
+export type { GraphQlQueryResponseData } from "./types.js";
+export { GraphqlResponseError } from "./error.js";
+export declare function withCustomRequest(customRequest: typeof request): import("./types.js").graphql;
diff --git a/.github/octokit/node_modules/@octokit/graphql/dist-types/types.d.ts b/.github/octokit/node_modules/@octokit/graphql/dist-types/types.d.ts
new file mode 100644
index 000000000..ceba02581
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/graphql/dist-types/types.d.ts
@@ -0,0 +1,55 @@
+import type { EndpointOptions, RequestParameters as RequestParametersType, EndpointInterface } from "@octokit/types";
+export type GraphQlEndpointOptions = EndpointOptions & {
+ variables?: {
+ [key: string]: unknown;
+ };
+};
+export type RequestParameters = RequestParametersType;
+export type Query = string;
+export interface graphql {
+ /**
+ * Sends a GraphQL query request based on endpoint options
+ * The GraphQL query must be specified in `options`.
+ *
+ * @param {object} endpoint Must set `method` and `url`. Plus URL, query or body parameters, as well as `headers`, `mediaType.{format|previews}`, `request`, or `baseUrl`.
+ */
+ (options: RequestParameters): GraphQlResponse;
+ /**
+ * Sends a GraphQL query request based on endpoint options
+ *
+ * @param {string} query GraphQL query. Example: `'query { viewer { login } }'`.
+ * @param {object} [parameters] URL, query or body parameters, as well as `headers`, `mediaType.{format|previews}`, `request`, or `baseUrl`.
+ */
+ (query: Query, parameters?: RequestParameters): GraphQlResponse;
+ /**
+ * Returns a new `endpoint` with updated route and parameters
+ */
+ defaults: (newDefaults: RequestParameters) => graphql;
+ /**
+ * Octokit endpoint API, see {@link https://github.com/octokit/endpoint.js|@octokit/endpoint}
+ */
+ endpoint: EndpointInterface;
+}
+export type GraphQlResponse = Promise;
+export type GraphQlQueryResponseData = {
+ [key: string]: any;
+};
+export type GraphQlQueryResponse = {
+ data: ResponseData;
+ errors?: [
+ {
+ type: string;
+ message: string;
+ path: [string];
+ extensions: {
+ [key: string]: any;
+ };
+ locations: [
+ {
+ line: number;
+ column: number;
+ }
+ ];
+ }
+ ];
+};
diff --git a/.github/octokit/node_modules/@octokit/graphql/dist-types/version.d.ts b/.github/octokit/node_modules/@octokit/graphql/dist-types/version.d.ts
new file mode 100644
index 000000000..0aca66546
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/graphql/dist-types/version.d.ts
@@ -0,0 +1 @@
+export declare const VERSION = "8.1.1";
diff --git a/.github/octokit/node_modules/@octokit/graphql/dist-types/with-defaults.d.ts b/.github/octokit/node_modules/@octokit/graphql/dist-types/with-defaults.d.ts
new file mode 100644
index 000000000..964486872
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/graphql/dist-types/with-defaults.d.ts
@@ -0,0 +1,3 @@
+import { request as Request } from "@octokit/request";
+import type { graphql as ApiInterface, RequestParameters } from "./types.js";
+export declare function withDefaults(request: typeof Request, newDefaults: RequestParameters): ApiInterface;
diff --git a/.github/octokit/node_modules/@octokit/graphql/package.json b/.github/octokit/node_modules/@octokit/graphql/package.json
new file mode 100644
index 000000000..244e0effc
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/graphql/package.json
@@ -0,0 +1,57 @@
+{
+ "name": "@octokit/graphql",
+ "version": "8.1.1",
+ "publishConfig": {
+ "access": "public",
+ "provenance": true
+ },
+ "type": "module",
+ "description": "GitHub GraphQL API client for browsers and Node",
+ "repository": "github:octokit/graphql.js",
+ "keywords": [
+ "octokit",
+ "github",
+ "api",
+ "graphql"
+ ],
+ "author": "Gregor Martynus (https://github.com/gr2m)",
+ "license": "MIT",
+ "dependencies": {
+ "@octokit/request": "^9.0.0",
+ "@octokit/types": "^13.0.0",
+ "universal-user-agent": "^7.0.0"
+ },
+ "devDependencies": {
+ "@octokit/tsconfig": "^3.0.0",
+ "@types/fetch-mock": "^7.2.5",
+ "@types/jest": "^29.0.0",
+ "@types/node": "^20.0.0",
+ "esbuild": "^0.20.0",
+ "fetch-mock": "npm:@gr2m/fetch-mock@9.11.0-pull-request-644.1",
+ "glob": "^10.2.6",
+ "jest": "^29.0.0",
+ "prettier": "3.2.5",
+ "semantic-release-plugin-update-version-in-files": "^1.0.0",
+ "ts-jest": "^29.1.0",
+ "typescript": "^5.3.0"
+ },
+ "engines": {
+ "node": ">= 18"
+ },
+ "files": [
+ "dist-*/**",
+ "bin/**"
+ ],
+ "types": "./dist-types/index.d.ts",
+ "exports": {
+ ".": {
+ "types": "./dist-types/index.d.ts",
+ "import": "./dist-bundle/index.js",
+ "default": "./dist-bundle/index.js"
+ },
+ "./types": {
+ "types": "./dist-types/types.d.ts"
+ }
+ },
+ "sideEffects": false
+}
diff --git a/.github/octokit/node_modules/@octokit/oauth-authorization-url/LICENSE b/.github/octokit/node_modules/@octokit/oauth-authorization-url/LICENSE
new file mode 100644
index 000000000..ef2c18ee5
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-authorization-url/LICENSE
@@ -0,0 +1,21 @@
+The MIT License
+
+Copyright (c) 2019 Octokit contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/.github/octokit/node_modules/@octokit/oauth-authorization-url/README.md b/.github/octokit/node_modules/@octokit/oauth-authorization-url/README.md
new file mode 100644
index 000000000..70c4e45a9
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-authorization-url/README.md
@@ -0,0 +1,281 @@
+# oauth-authorization-url.js
+
+> Universal library to retrieve GitHub’s identity URL for the OAuth web flow
+
+[![@latest](https://img.shields.io/npm/v/@octokit/oauth-authorization-url.svg)](https://www.npmjs.com/package/@octokit/oauth-authorization-url)
+[![Build Status](https://github.com/octokit/oauth-authorization-url.js/workflows/Test/badge.svg)](https://github.com/octokit/oauth-authorization-url.js/actions?query=workflow%3ATest+branch%3Amain)
+
+See [GitHub’s Developer Guide for the OAuth App web application flow](https://developer.github.com/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow). Note that the [OAuth web application flow for GitHub Apps](https://docs.github.com/en/developers/apps/identifying-and-authorizing-users-for-github-apps#web-application-flow) is slightly different. GitHub Apps do not support scopes for its user access tokens (they are called user-to-server tokens for GitHub Apps), instead they inherit the user permissions from the GitHub App's registration and the repository/organization access and permissions from the respective installation.
+
+
+
+- [Usage](#usage)
+ - [For OAuth Apps](#for-oauth-apps)
+ - [For GitHub Apps](#for-github-apps)
+- [Options](#options)
+- [Result](#result)
+- [Types](#types)
+- [License](#license)
+
+
+
+## Usage
+
+
+
+
+
+ Browsers
+
+
+
+Load `@octokit/oauth-authorization-url` directly from [esm.sh](https://esm.sh)
+
+```html
+
+```
+
+
+
+
+ Node
+
+
+
+Install with npm install @octokit/oauth-authorization-url
+
+```js
+const { oauthAuthorizationUrl } = require("@octokit/oauth-authorization-url");
+// or: import { oauthAuthorizationUrl } from "@octokit/oauth-authorization-url";
+```
+
+
+
+
+
+> [!IMPORTANT]
+> As we use [conditional exports](https://nodejs.org/api/packages.html#conditional-exports), you will need to adapt your `tsconfig.json` by setting `"moduleResolution": "node16", "module": "node16"`.
+>
+> See the TypeScript docs on [package.json "exports"](https://www.typescriptlang.org/docs/handbook/modules/reference.html#packagejson-exports).
+> See this [helpful guide on transitioning to ESM](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c) from [@sindresorhus](https://github.com/sindresorhus)
+
+### For OAuth Apps
+
+```js
+const { url, clientId, redirectUrl, login, scopes, state } =
+ oauthAuthorizationUrl({
+ clientType: "oauth-app",
+ clientId: "1234567890abcdef1234",
+ redirectUrl: "https://example.com",
+ login: "octocat",
+ scopes: ["repo", "admin:org"],
+ state: "secret123",
+ });
+```
+
+### For GitHub Apps
+
+```js
+const { url, clientId, redirectUrl, login, state } = oauthAuthorizationUrl({
+ clientType: "github-app",
+ clientId: "lv1.1234567890abcdef",
+ redirectUrl: "https://example.com",
+ login: "octocat",
+ state: "secret123",
+});
+```
+
+## Options
+
+
+
+
+
+ name
+
+
+ description
+
+
+
+
+
+
+ clientId
+
+
+ Required . The client ID you received from GitHub when you registered.
+
+
+
+
+ clientType
+
+
+
+Must be set to either `"oauth-app"` or `"github-app"`. Defaults to `"oauth-app"`.
+
+
+
+
+
+ redirectUrl
+
+
+ The URL in your application where users will be sent after authorization. See Redirect URLs in GitHub’s Developer Guide.
+
+
+
+
+ login
+
+
+ Suggests a specific account to use for signing in and authorizing the app.
+
+
+
+
+ scopes
+
+
+
+Only relevant when `clientType` is set to `"oauth-app"`.
+
+An array of scope names (or: space-delimited list of scopes). If not provided, scope defaults to an empty list for users that have not authorized any scopes for the application. For users who have authorized scopes for the application, the user won't be shown the OAuth authorization page with the list of scopes. Instead, this step of the flow will automatically complete with the set of scopes the user has authorized for the application. For example, if a user has already performed the web flow twice and has authorized one token with user scope and another token with repo scope, a third web flow that does not provide a scope will receive a token with user and repo scope.
+
+Defaults to `[]` if `clientType` is set to `"oauth-app"`.
+
+
+
+
+
+ state
+
+
+ An unguessable random string. It is used to protect against cross-site request forgery attacks.
+ Defaults to Math.random().toString(36).substr(2)
.
+
+
+
+
+ allowSignup
+
+
+ Whether or not unauthenticated users will be offered an option to sign up for GitHub during the OAuth flow. Use false
in the case that a policy prohibits signups. Defaults to true
.
+
+
+
+
+ baseUrl
+
+
+ When using GitHub Enterprise Server, set the baseUrl to the origin, e.g. https://github.my-enterprise.com
.
+
+
+
+
+
+## Result
+
+`oauthAuthorizationUrl()` returns an object with the following properties
+
+
+
+
+
+ name
+
+
+ description
+
+
+
+
+
+
+ allowSignup
+
+
+ Returns options.allowSignup
if it was set. Defaults to true
.
+
+
+
+
+ clientType
+
+
+ Returns options.clientType
. Defaults to "oauth-app"
.
+
+
+
+
+ clientId
+
+
+ Returns options.clientId
.
+
+
+
+
+ login
+
+
+ Returns options.login
if it was set. Defaults to null
.
+
+
+
+
+ redirectUrl
+
+
+ Returns options.redirectUrl
if it was set. Defaults to null
.
+
+
+
+
+ scopes
+
+
+
+Only set if `options.clientType` is set to `"oauth-app"`.
+
+Returns an array of strings. Returns options.scopes
if it was set and turns the string into an array if a string was passed, otherwise []
.
+
+
+
+
+
+ state
+
+
+ Returns options.state
if it was set. Defaults to Defaults to Math.random().toString(36).substr(2)
.
+
+
+
+
+ url
+
+
+ The authorization URL
+
+
+
+
+
+## Types
+
+```ts
+import {
+ ClientType,
+ OAuthAppOptions,
+ OAuthAppResult,
+ GitHubAppOptions,
+ GitHubAppResult,
+} from "@octokit/oauth-authorization-url";
+```
+
+## License
+
+[MIT](LICENSE)
diff --git a/.github/octokit/node_modules/@octokit/oauth-authorization-url/dist-src/index.js b/.github/octokit/node_modules/@octokit/oauth-authorization-url/dist-src/index.js
new file mode 100644
index 000000000..fd66f3ae6
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-authorization-url/dist-src/index.js
@@ -0,0 +1,44 @@
+function oauthAuthorizationUrl(options) {
+ const clientType = options.clientType || "oauth-app";
+ const baseUrl = options.baseUrl || "https://github.com";
+ const result = {
+ clientType,
+ allowSignup: options.allowSignup === false ? false : true,
+ clientId: options.clientId,
+ login: options.login || null,
+ redirectUrl: options.redirectUrl || null,
+ state: options.state || Math.random().toString(36).substr(2),
+ url: ""
+ };
+ if (clientType === "oauth-app") {
+ const scopes = "scopes" in options ? options.scopes : [];
+ result.scopes = typeof scopes === "string" ? scopes.split(/[,\s]+/).filter(Boolean) : scopes;
+ }
+ result.url = urlBuilderAuthorize(`${baseUrl}/login/oauth/authorize`, result);
+ return result;
+}
+function urlBuilderAuthorize(base, options) {
+ const map = {
+ allowSignup: "allow_signup",
+ clientId: "client_id",
+ login: "login",
+ redirectUrl: "redirect_uri",
+ scopes: "scope",
+ state: "state"
+ };
+ let url = base;
+ Object.keys(map).filter((k) => options[k] !== null).filter((k) => {
+ if (k !== "scopes")
+ return true;
+ if (options.clientType === "github-app")
+ return false;
+ return !Array.isArray(options[k]) || options[k].length > 0;
+ }).map((key) => [map[key], `${options[key]}`]).forEach(([key, value], index) => {
+ url += index === 0 ? `?` : "&";
+ url += `${key}=${encodeURIComponent(value)}`;
+ });
+ return url;
+}
+export {
+ oauthAuthorizationUrl
+};
diff --git a/.github/octokit/node_modules/@octokit/oauth-authorization-url/dist-types/index.d.ts b/.github/octokit/node_modules/@octokit/oauth-authorization-url/dist-types/index.d.ts
new file mode 100644
index 000000000..4671a2442
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-authorization-url/dist-types/index.d.ts
@@ -0,0 +1,4 @@
+import type { OAuthAppOptions, GitHubAppOptions, OAuthAppResult, GitHubAppResult } from "./types.js";
+export type { ClientType, OAuthAppOptions, GitHubAppOptions, OAuthAppResult, GitHubAppResult, } from "./types.js";
+export declare function oauthAuthorizationUrl(options: OAuthAppOptions): OAuthAppResult;
+export declare function oauthAuthorizationUrl(options: GitHubAppOptions): GitHubAppResult;
diff --git a/.github/octokit/node_modules/@octokit/oauth-authorization-url/dist-types/types.d.ts b/.github/octokit/node_modules/@octokit/oauth-authorization-url/dist-types/types.d.ts
new file mode 100644
index 000000000..5685a8d86
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-authorization-url/dist-types/types.d.ts
@@ -0,0 +1,39 @@
+export type ClientType = "oauth-app" | "github-app";
+export type OAuthAppOptions = {
+ clientId: string;
+ clientType?: "oauth-app";
+ allowSignup?: boolean;
+ login?: string;
+ scopes?: string | string[];
+ redirectUrl?: string;
+ state?: string;
+ baseUrl?: string;
+};
+export type GitHubAppOptions = {
+ clientId: string;
+ clientType: "github-app";
+ allowSignup?: boolean;
+ login?: string;
+ redirectUrl?: string;
+ state?: string;
+ baseUrl?: string;
+};
+export type OAuthAppResult = {
+ allowSignup: boolean;
+ clientId: string;
+ clientType: "oauth-app";
+ login: string | null;
+ redirectUrl: string | null;
+ scopes: string[];
+ state: string;
+ url: string;
+};
+export type GitHubAppResult = {
+ allowSignup: boolean;
+ clientId: string;
+ clientType: "github-app";
+ login: string | null;
+ redirectUrl: string | null;
+ state: string;
+ url: string;
+};
diff --git a/.github/octokit/node_modules/@octokit/oauth-authorization-url/package.json b/.github/octokit/node_modules/@octokit/oauth-authorization-url/package.json
new file mode 100644
index 000000000..40274626c
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-authorization-url/package.json
@@ -0,0 +1,44 @@
+{
+ "name": "@octokit/oauth-authorization-url",
+ "publishConfig": {
+ "access": "public",
+ "provenance": true
+ },
+ "type": "module",
+ "version": "7.1.1",
+ "description": "Universal library to retrieve GitHubâs identity URL for the OAuth web flow",
+ "repository": "github:octokit/oauth-authorization-url.js",
+ "files": [
+ "dist-*/**"
+ ],
+ "keywords": [
+ "octokit",
+ "github",
+ "oauth"
+ ],
+ "author": "Gregor Martynus (https://github.com/gr2m)",
+ "license": "MIT",
+ "devDependencies": {
+ "@octokit/tsconfig": "^3.0.0",
+ "@types/jest": "^29.0.0",
+ "esbuild": "^0.20.0",
+ "glob": "^10.2.6",
+ "jest": "^29.0.0",
+ "prettier": "3.2.5",
+ "ts-jest": "^29.0.0",
+ "typescript": "^5.0.0"
+ },
+ "engines": {
+ "node": ">= 18"
+ },
+ "types": "./dist-types/index.d.ts",
+ "exports": {
+ ".": {
+ "types": "./dist-types/index.d.ts",
+ "import": "./dist-src/index.js",
+ "default": "./dist-src/index.js"
+ }
+ },
+ "sideEffects": false,
+ "unpkg": "dist-src/index.js"
+}
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/LICENSE b/.github/octokit/node_modules/@octokit/oauth-methods/LICENSE
new file mode 100644
index 000000000..57049d04c
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/LICENSE
@@ -0,0 +1,9 @@
+MIT License
+
+Copyright (c) 2021 Octokit contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/README.md b/.github/octokit/node_modules/@octokit/oauth-methods/README.md
new file mode 100644
index 000000000..1d90ea059
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/README.md
@@ -0,0 +1,1613 @@
+# oauth-methods.js
+
+> Set of stateless request methods to create, check, reset, refresh, and delete user access tokens for OAuth and GitHub Apps
+
+[![@latest](https://img.shields.io/npm/v/@octokit/oauth-methods.svg)](https://www.npmjs.com/package/@octokit/oauth-methods)
+[![Build Status](https://github.com/octokit/oauth-methods.js/workflows/Test/badge.svg)](https://github.com/octokit/oauth-methods.js/actions?query=workflow%3ATest+branch%3Amain)
+
+
+
+- [Usage](#usage)
+ - [OAuth Web Flow](#oauth-web-flow)
+ - [OAuth Device Flow](#oauth-device-flow)
+- [Methods](#methods)
+ - [`getWebFlowAuthorizationUrl()`](#getwebflowauthorizationurl)
+ - [`exchangeWebFlowCode()`](#exchangewebflowcode)
+ - [`createDeviceCode()`](#createdevicecode)
+ - [`exchangeDeviceCode()`](#exchangedevicecode)
+ - [`checkToken()`](#checktoken)
+ - [`refreshToken()`](#refreshtoken)
+ - [`scopeToken()`](#scopetoken)
+ - [`resetToken()`](#resettoken)
+ - [`deleteToken()`](#deletetoken)
+ - [`deleteAuthorization()`](#deleteauthorization)
+- [Authentication object](#authentication-object)
+ - [OAuth APP authentication](#oauth-app-authentication)
+ - [GitHub App with non-expiring user authentication](#github-app-with-non-expiring-user-authentication)
+ - [GitHub App with expiring user authentication](#github-app-with-expiring-user-authentication)
+- [Types](#types)
+- [Contributing](#contributing)
+- [License](#license)
+
+
+
+The OAuth endpoints related to user access tokens are not all part of GitHub's REST API and they behave slightly different. The methods exported by `@octokit/normalize the differences so you don't have to.
+
+## Usage
+
+
+
+
+
+Browsers
+
+
+
+`@octokit/oauth-methods` is not meant for browser usage.
+
+Some of the methods will work, but others do not have CORS headers enabled and will fail (`exchangeWebFlowCode()`, `createDeviceCode()`, `exchangeDeviceCode()`, `refreshToken()`). Also the Client Secret should not be exposed to clients as it can be used for a [Person-in-the-middle attack](https://en.wikipedia.org/wiki/Person-in-the-middle_attack).
+
+
+
+
+Node
+
+
+
+Install with `npm install @octokit/core @octokit/oauth-methods`
+
+```js
+import {
+ exchangeWebFlowCode,
+ createDeviceCode,
+ exchangeDeviceCode,
+ checkToken,
+ refreshToken,
+ scopeToken,
+ resetToken,
+ deleteToken,
+ deleteAuthorization,
+} from "@octokit/oauth-methods";
+```
+
+
+
+
+
+> [!IMPORTANT]
+> As we use [conditional exports](https://nodejs.org/api/packages.html#conditional-exports), you will need to adapt your `tsconfig.json` by setting `"moduleResolution": "node16", "module": "node16"`.
+>
+> See the TypeScript docs on [package.json "exports"](https://www.typescriptlang.org/docs/handbook/modules/reference.html#packagejson-exports).
+> See this [helpful guide on transitioning to ESM](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c) from [@sindresorhus](https://github.com/sindresorhus)
+
+### OAuth Web Flow
+
+After a user granted access to an OAuth App or GitHub App on [Step 1 of GitHub's OAuth Web Flow](https://docs.github.com/en/developers/apps/identifying-and-authorizing-users-for-github-apps#1-request-a-users-github-identity), they get redirected to a URL controlled by your app with a `?code=...` query parameter.
+
+You can exchange that code for a user access token as described in [Step 2 of GitHub's OAuth Web Flow](https://docs.github.com/en/developers/apps/authorizing-oauth-apps#2-users-are-redirected-back-to-your-site-by-github).
+
+Setting `clientType` is required because there are slight differences between `"oauth-app"` and `"github-app"`. Most importantly, GitHub Apps do not support scopes.
+
+```js
+const { data, authentication } = await exchangeWebFlowCode({
+ clientType: "oauth-app",
+ clientId: "1234567890abcdef1234",
+ clientSecret: "1234567890abcdef12347890abcdef12345678",
+ code: "code123",
+ scopes: ["repo"],
+});
+```
+
+`data` is the raw response data. `authentication` is a [User Authentication object](#authentication-object).
+
+### OAuth Device Flow
+
+In [step 1 of GitHub's OAuth Device Flow](https://docs.github.com/en/developers/apps/authorizing-oauth-apps#step-1-app-requests-the-device-and-user-verification-codes-from-github), you need to create a device and user code
+
+```js
+const {
+ data: { device_code, user_code, verification_uri },
+} = await createDeviceCode({
+ clientType: "oauth-app",
+ clientId: "1234567890abcdef1234",
+ scopes: ["repo"],
+});
+```
+
+In [step 2 of GitHub's OAuth Device Flow](https://docs.github.com/en/developers/apps/authorizing-oauth-apps#step-2-prompt-the-user-to-enter-the-user-code-in-a-browser), the user has to enter `user_code` on `verification_uri` (https://github.com/login/device unless you use GitHub Enterprise Server).
+
+Once the user entered the code and granted access, you can exchange the `device_code` for a user access token in [step 3 of GitHub's OAuth Device Flow](https://docs.github.com/en/developers/apps/authorizing-oauth-apps#step-3-app-polls-github-to-check-if-the-user-authorized-the-device)
+
+```js
+const { data, authentication } = await exchangeDeviceCode({
+ clientType: "oauth-app",
+ clientId: "1234567890abcdef1234",
+ code: device_code,
+});
+```
+
+`data` is the raw response data. `authentication` is a [User Authentication object](#authentication-object).
+
+## Methods
+
+### `getWebFlowAuthorizationUrl()`
+
+This is a wrapper around [`@octokit/oauth-authorization-url`](https://github.com/octokit/oauth-authorization-url.js#readme) that accepts a `request` option instead of `baseUrl` for consistency with the other OAuth methods. `getWebFlowAuthorizationUrl()` is a synchronous method and does not send any request.
+
+```js
+const { url } = getWebFlowAuthorizationUrl({
+ clientType: "oauth-app",
+ clientId: "1234567890abcdef1234",
+ scopes: ["repo"],
+});
+```
+
+Options
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ clientId
+
+
+ string
+
+
+ Required . The client ID you received from GitHub when you registered.
+
+
+
+
+ clientType
+
+
+ string
+
+
+ Required. Must be set to either "oauth-app"
or "github-app"
.
+
+
+
+
+ redirectUrl
+
+
+ string
+
+
+ The URL in your application where users will be sent after authorization. See Redirect URLs in GitHub’s Developer Guide.
+
+
+
+
+ login
+
+
+ string
+
+
+ Suggests a specific account to use for signing in and authorizing the app.
+
+
+
+
+ scopes
+
+
+ array of strings
+
+
+
+Only relevant if `clientType` is set to `"oauth-app"`.
+
+An array of scope names (or: space-delimited list of scopes). If not provided, scope defaults to an empty list for users that have not authorized any scopes for the application. For users who have authorized scopes for the application, the user won't be shown the OAuth authorization page with the list of scopes. Instead, this step of the flow will automatically complete with the set of scopes the user has authorized for the application. For example, if a user has already performed the web flow twice and has authorized one token with user scope and another token with repo scope, a third web flow that does not provide a scope will receive a token with user and repo scope.
+
+Defaults to `[]`.
+
+
+
+
+
+ state
+
+
+ string
+
+
+ An unguessable random string. It is used to protect against cross-site request forgery attacks.
+ Defaults to Math.random().toString(36).substr(2)
.
+
+
+
+
+ allowSignup
+
+
+ boolean
+
+
+ Whether or not unauthenticated users will be offered an option to sign up for GitHub during the OAuth flow. Use false
in the case that a policy prohibits signups. Defaults to true
.
+
+
+
+
+ request
+
+
+ function
+
+
+ You can pass in your own @octokit/request
instance. For usage with enterprise, set baseUrl
to the REST API root endpoint. Example:
+
+```js
+import { request } from "@octokit/request";
+const { url } = getWebFlowAuthorizationUrl({
+ clientType: "oauth-app",
+ clientId: "1234567890abcdef1234",
+ scopes: ["repo"],
+ request: request.defaults({
+ baseUrl: "https://ghe.my-company.com/api/v3",
+ }),
+});
+```
+
+
+
+
+
+
+The `getWebFlowAuthorizationUrl` method is synchronous and returns an object with the following properties.
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ allowSignup
+
+
+ boolean
+
+
+ Returns options.allowSignup
if it was set. Defaults to true
.
+
+
+
+
+ clientType
+
+
+ string
+
+
+ Returns options.clientType
+
+
+
+
+ clientId
+
+
+ string
+
+
+ Returns options.clientId
.
+
+
+
+
+ login
+
+
+ string
+
+
+ Returns options.login
if it was set. Defaults to null
.
+
+
+
+
+ redirectUrl
+
+
+ string
+
+
+ Returns options.redirectUrl
if it was set. Defaults to null
.
+
+
+
+
+ scopes
+
+
+ array of strings
+
+
+
+Only set if `options.clientType` is set to `"oauth-app"`.
+
+Returns an array of strings. Returns options.scopes
if it was set and turns the string into an array if a string was passed, otherwise []
.
+
+
+
+
+
+ state
+
+
+ string
+
+
+ Returns options.state
if it was set. Defaults to Math.random().toString(36).substr(2)
.
+
+
+
+
+ url
+
+
+ string
+
+
+ The authorization URL
+
+
+
+
+
+### `exchangeWebFlowCode()`
+
+```js
+const { data, authentication } = await exchangeWebFlowCode({
+ clientType: "oauth-app",
+ clientId: "1234567890abcdef1234",
+ clientSecret: "1234567890abcdef12347890abcdef12345678",
+ code: "code123",
+});
+```
+
+Options
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ clientType
+
+
+ string
+
+
+ Required . Must be set to either "oauth-app"
or "github-app"
+
+
+
+
+ clientId
+
+
+ string
+
+
+ Required . Your app's client ID
+
+
+
+
+ clientSecret
+
+
+ string
+
+
+ Required . One of your app's client secrets
+
+
+
+
+ code
+
+
+ string
+
+
+ Required . The code from GitHub's OAuth flow redirect's ?code=...
query parameter
+
+
+
+
+ redirectUrl
+
+
+ string
+
+
+ The redirectUrl
option you passed to getWebFlowAuthorizationUrl()
+
+
+
+
+ request
+
+
+ function
+
+
+ You can pass in your own @octokit/request
instance. For usage with enterprise, set baseUrl
to the REST API root endpoint. Example:
+
+```js
+import { request } from "@octokit/request";
+const { data, authentication } = await exchangeWebFlowCode({
+ clientType: "oauth-app",
+ clientId: "1234567890abcdef1234",
+ clientSecret: "1234567890abcdef12347890abcdef12345678",
+ code: "code123",
+ request: request.defaults({
+ baseUrl: "https://ghe.my-company.com/api/v3",
+ }),
+});
+```
+
+
+
+
+
+
+Resolves with an [`@octokit/request` response object](https://github.com/octokit/request.js/#request) for [`POST /login/oauth/access_token`](https://docs.github.com/en/developers/apps/authorizing-oauth-apps#response) (JSON) with an additional `authentication` key which is the [authentication object](#authentication-object).
+
+### `createDeviceCode()`
+
+```js
+const { data, authentication } = await createDeviceCode({
+ clientType: "oauth-app",
+ clientId: "1234567890abcdef1234",
+ scopes: ["repo"],
+});
+```
+
+Options
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ clientType
+
+
+ string
+
+
+ Required . Must be set to either "oauth-app"
or "github-app"
+
+
+
+
+ clientId
+
+
+ string
+
+
+ Required . Your app's client ID
+
+
+
+
+ scopes
+
+
+ array of strings
+
+
+
+Only permitted if `clientType` is set to `"oauth-app"`. GitHub Apps do not support scopes.
+
+Array of [scope names](https://docs.github.com/en/developers/apps/scopes-for-oauth-apps#available-scopes) you want to request for the user access token.
+
+
+
+
+
+ request
+
+
+ function
+
+
+ You can pass in your own @octokit/request
instance. For usage with enterprise, set baseUrl
to the REST API root endpoint. Example:
+
+```js
+import { request } from "@octokit/request";
+const { data } = await createDeviceCode({
+ clientType: "oauth-app",
+ clientId: "1234567890abcdef1234",
+ scopes: ["repo"],
+ request: request.defaults({
+ baseUrl: "https://ghe.my-company.com/api/v3",
+ }),
+});
+```
+
+
+
+
+
+
+Resolves with an [`@octokit/request` response object](https://github.com/octokit/request.js/#request) for [`POST https://github.com/login/device/code`](https://docs.github.com/en/developers/apps/authorizing-oauth-apps#response-1) (JSON).
+
+### `exchangeDeviceCode()`
+
+```js
+const { data, authentication } = await exchangeDeviceCode({
+ clientType: "oauth-app",
+ clientId: "1234567890abcdef1234",
+ code: "code123",
+});
+```
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ clientType
+
+
+ string
+
+
+ Required . Must be set to either "oauth-app"
or "github-app"
+
+
+
+
+ clientId
+
+
+ string
+
+
+ Required . Your app's client ID
+
+
+
+
+ code
+
+
+ string
+
+
+ Required . The device_code
from the createDeviceCode()
response
+
+
+
+
+ request
+
+
+ function
+
+
+ You can pass in your own @octokit/request
instance. For usage with enterprise, set baseUrl
to the REST API root endpoint. Example:
+
+```js
+import { request } from "@octokit/request";
+const { data, authentication } = await exchangeDeviceCode({
+ clientType: "oauth-app",
+ clientId: "1234567890abcdef1234",
+ code: "code123",
+ request: request.defaults({
+ baseUrl: "https://ghe.my-company.com/api/v3",
+ }),
+});
+```
+
+
+
+
+
+
+### `checkToken()`
+
+```js
+const { data, authentication } = await checkToken({
+ clientType: "oauth-app",
+ clientId: "1234567890abcdef1234",
+ clientSecret: "1234567890abcdef12347890abcdef12345678",
+ token: "usertoken123",
+});
+```
+
+Options
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ clientType
+
+
+ string
+
+
+ Required . Must be set to either "oauth-app"
or "github-app"
+
+
+
+
+ clientId
+
+
+ string
+
+
+ Required . Your app's client ID
+
+
+
+
+ clientSecret
+
+
+ string
+
+
+ Required . One of your app's client secrets
+
+
+
+
+ token
+
+
+ string
+
+
+ Required . The user access token to check
+
+
+
+
+ request
+
+
+ function
+
+
+ You can pass in your own @octokit/request
instance. For usage with enterprise, set baseUrl
to the REST API root endpoint. Example:
+
+```js
+import { request } from "@octokit/request";
+const { data, authentication } = await checkToken({
+ clientType: "oauth-app",
+ clientId: "1234567890abcdef1234",
+ clientSecret: "1234567890abcdef12347890abcdef12345678",
+ token: "usertoken123",
+ request: request.defaults({
+ baseUrl: "https://ghe.my-company.com/api/v3",
+ }),
+});
+```
+
+
+
+
+
+
+Resolves with an [`@octokit/request` response object](https://github.com/octokit/request.js/#request) for [`POST /applications/{client_id}/token`](https://docs.github.com/en/rest/reference/apps#check-a-token) with an additional `authentication` key which is the [authentication object](#authentication-object). Note that the `authentication` object will not include the keys for expiring authentication.
+
+### `refreshToken()`
+
+Expiring user access tokens are currently in preview. You can [enable them for any of your GitHub apps](https://docs.github.com/en/developers/apps/refreshing-user-to-server-access-tokens#configuring-expiring-user-tokens-for-an-existing-github-app). OAuth Apps do not support expiring user access tokens
+
+When a user access token expires it can be [refreshed using a refresh token](https://docs.github.com/en/developers/apps/refreshing-user-to-server-access-tokens). Refreshing a token invalidates the current user access token.
+
+```js
+const { data, authentication } = await refreshToken({
+ clientType: "github-app",
+ clientId: "lv1.1234567890abcdef",
+ clientSecret: "1234567890abcdef12347890abcdef12345678",
+ refreshToken: "r1.refreshtoken123",
+});
+```
+
+Options
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ clientType
+
+
+ string
+
+
+ Must be set to "github-app"
+
+
+
+
+ clientId
+
+
+ string
+
+
+ Required . Your app's client ID
+
+
+
+
+ clientSecret
+
+
+ string
+
+
+ Required . One of your app's client secrets
+
+
+
+
+ refreshToken
+
+
+ string
+
+
+ Required . The refresh token that was received alongside the user access token.
+
+
+
+
+ request
+
+
+ function
+
+
+ You can pass in your own @octokit/request
instance. For usage with enterprise, set baseUrl
to the REST API root endpoint. Example:
+
+```js
+import { request } from "@octokit/request";
+const { data, authentication } = await refreshToken({
+ clientType: "github-app",
+ clientId: "lv1.1234567890abcdef",
+ clientSecret: "1234567890abcdef12347890abcdef12345678",
+ refreshToken: "r1.refreshtoken123",
+ request: request.defaults({
+ baseUrl: "https://ghe.my-company.com/api/v3",
+ }),
+});
+```
+
+
+
+
+
+
+Resolves with an [`@octokit/request` response object](https://github.com/octokit/request.js/#request) for [`POST /login/oauth/access_token`](https://docs.github.com/en/developers/apps/refreshing-user-to-server-access-tokens#response) with an additional `authentication` key which is the [GitHub App expiring user authentication](#github-app-with-expiring-user-authentication).
+
+### `scopeToken()`
+
+```js
+const { data, authentication } = await scopeToken({
+ clientType: "github-app",
+ clientId: "lv1.1234567890abcdef",
+ clientSecret: "1234567890abcdef12347890abcdef12345678",
+ token: "usertoken123",
+ target: "octokit",
+ repositories: ["oauth-methods.js"],
+ permissions: {
+ issues: "write",
+ },
+});
+```
+
+Options
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ clientType
+
+
+ string
+
+
+ Required . Must be set to "github-app"
.
+
+
+
+
+ clientId
+
+
+ string
+
+
+ Required . Your app's client ID
+
+
+
+
+ clientSecret
+
+
+ string
+
+
+ Required . One of your app's client secrets
+
+
+
+
+ target
+
+
+ string
+
+
+ Required unless targetId
is set . The name of the user or organization to scope the user-to-server access token to.
+
+
+
+
+ targetId
+
+
+ integer
+
+
+ Required unless target
is set . The ID of the user or organization to scope the user-to-server access token to.
+
+
+
+
+ repositories
+
+
+ array of strings
+
+
+ The list of repository names to scope the user-to-server access token to. repositories
may not be specified if repository_ids
is specified.
+
+
+
+
+ repository_ids
+
+
+ array of integers
+
+
+ The list of repository IDs to scope the user-to-server access token to. repositories
may not be specified if repositories
is specified.
+
+
+
+
+ permissions
+
+
+ object
+
+
+ The permissions granted to the user-to-server access token. See GitHub App Permissions .
+
+
+
+
+ request
+
+
+ function
+
+
+ You can pass in your own @octokit/request
instance. For usage with enterprise, set baseUrl
to the REST API root endpoint. Example:
+
+```js
+import { request } from "@octokit/request";
+const { data, authentication } = await scopeToken({
+ clientType: "github-app",
+ clientId: "lv1.1234567890abcdef",
+ token: "usertoken123",
+ target: "octokit",
+ repositories: ["oauth-methods.js"],
+ permissions: {
+ issues: "write",
+ },
+ request: request.defaults({
+ baseUrl: "https://ghe.my-company.com/api/v3",
+ }),
+});
+```
+
+
+
+
+
+
+Resolves with an [`@octokit/request` response object](https://github.com/octokit/request.js/#request) for [`POST /applications/{client_id}/token/scoped`](https://docs.github.com/en/rest/reference/apps#create-a-scoped-access-token) with an additional `authentication` key which is the new [authentication object](#authentication-object).
+
+### `resetToken()`
+
+```js
+const { data, authentication } = await resetToken({
+ clientType: "oauth-app",
+ clientId: "1234567890abcdef1234",
+ clientSecret: "1234567890abcdef12347890abcdef12345678",
+ token: "usertoken123",
+});
+```
+
+Options
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ clientType
+
+
+ string
+
+
+ Must be set to "oauth-app"
or "github-app"
.
+
+
+
+
+ clientId
+
+
+ string
+
+
+ Required . Your app's client ID
+
+
+
+
+ clientSecret
+
+
+ string
+
+
+ Required . One of your app's client secrets
+
+
+
+
+ token
+
+
+ string
+
+
+ Required . The user access token to reset
+
+
+
+
+ request
+
+
+ function
+
+
+ You can pass in your own @octokit/request
instance. For usage with enterprise, set baseUrl
to the REST API root endpoint. Example:
+
+```js
+import { request } from "@octokit/request";
+const { data, authentication } = await resetToken({
+ clientId: "1234567890abcdef1234",
+ clientSecret: "secret",
+ token: "usertoken123",
+ request: request.defaults({
+ baseUrl: "https://ghe.my-company.com/api/v3",
+ }),
+});
+```
+
+
+
+
+
+
+Resolves with an [`@octokit/request` response object](https://github.com/octokit/request.js/#request) for [`POST /applications/{client_id}/token`](https://docs.github.com/en/rest/reference/apps#reset-a-token) with an additional `authentication` key which is the new [authentication object](#authentication-object).
+
+### `deleteToken()`
+
+```js
+const { status } = await deleteToken({
+ clientType: "oauth-app",
+ clientId: "1234567890abcdef1234",
+ clientSecret: "1234567890abcdef12347890abcdef12345678",
+ token: "usertoken123",
+});
+```
+
+Options
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ clientType
+
+
+ string
+
+
+ Must be set to "oauth-app"
or "github-app"
+
+
+
+
+ clientId
+
+
+ string
+
+
+ Required . Your app's client ID
+
+
+
+
+ clientSecret
+
+
+ string
+
+
+ Required . One of your app's client secrets
+
+
+
+
+ token
+
+
+ string
+
+
+ Required . The user access token to delete
+
+
+
+
+ request
+
+
+ function
+
+
+ You can pass in your own @octokit/request
instance. For usage with enterprise, set baseUrl
to the REST API root endpoint. Example:
+
+```js
+import { request } from "@octokit/request";
+const { data, authentication } = await deleteToken({
+ clientId: "1234567890abcdef1234",
+ clientSecret: "secret",
+ token: "usertoken123",
+ request: request.defaults({
+ baseUrl: "https://ghe.my-company.com/api/v3",
+ }),
+});
+```
+
+
+
+
+
+
+Resolves with an [`@octokit/request` response object](https://github.com/octokit/request.js/#request) for [`DELETE /applications/{client_id}/token`](https://docs.github.com/en/rest/reference/apps#delete-an-app-token) (which is an empty `204` response).
+
+### `deleteAuthorization()`
+
+```js
+const { status } = await deleteAuthorization({
+ clientType: "oauth-app",
+ clientId: "1234567890abcdef1234",
+ clientSecret: "1234567890abcdef12347890abcdef12345678",
+ token: "usertoken123",
+});
+```
+
+Options
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ clientType
+
+
+ string
+
+
+ Must be set to "oauth-app"
or "github-app"
+
+
+
+
+ clientId
+
+
+ string
+
+
+ Required . Your app's client ID
+
+
+
+
+ clientSecret
+
+
+ string
+
+
+ Required . One of your app's client secrets
+
+
+
+
+ token
+
+
+ string
+
+
+ Required . A valid user access token for the authorization
+
+
+
+
+ request
+
+
+ function
+
+
+ You can pass in your own @octokit/request
instance. For usage with enterprise, set baseUrl
to the REST API root endpoint. Example:
+
+```js
+import { request } from "@octokit/request";
+const { data, authentication } = await deleteAuthorization({
+ clientId: "1234567890abcdef1234",
+ clientSecret: "secret",
+ token: "usertoken123",
+ request: request.defaults({
+ baseUrl: "https://ghe.my-company.com/api/v3",
+ }),
+});
+```
+
+
+
+
+
+
+Resolves with an [`@octokit/request` response object](https://github.com/octokit/request.js/#request) for [`DELETE /applications/{client_id}/grant`](https://docs.github.com/en/rest/reference/apps#delete-an-app-authorization) (which is an empty `204` response).
+
+## Authentication object
+
+The `authentication` object returned by the methods have one of three formats.
+
+1. [OAuth APP authentication token](#oauth-app-authentication-token)
+1. [GitHub APP non-expiring user authentication token with expiring disabled](#github-app-user-authentication-token-with-expiring-disabled)
+1. [GitHub APP user authentication token with expiring enabled](#github-app-user-authentication-token-with-expiring-enabled)
+
+The differences are
+
+1. `scopes` is only present for OAuth Apps
+2. `refreshToken`, `expiresAt`, `refreshTokenExpiresAt` are only present for GitHub Apps, and only if token expiration is enabled
+
+Note that the `clientSecret` may not be set when using [`exchangeDeviceCode()`](#exchangedevicecode) as `clientSecret` is not required for the OAuth device flow.
+
+### OAuth APP authentication
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ clientType
+
+
+ string
+
+
+ "oauth-app"
+
+
+
+
+ clientId
+
+
+ string
+
+
+ The app's Client ID
+
+
+
+
+ token
+
+
+ string
+
+
+ The user access token
+
+
+
+
+ scopes
+
+
+ array of strings
+
+
+ array of scope names enabled for the token
+
+
+
+
+
+### GitHub App with non-expiring user authentication
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ clientType
+
+
+ string
+
+
+ "github-app"
+
+
+
+
+ clientId
+
+
+ string
+
+
+ The app's Client ID
+
+
+
+
+ token
+
+
+ string
+
+
+ The user access token
+
+
+
+
+
+### GitHub App with expiring user authentication
+
+
+
+
+
+ name
+
+
+ type
+
+
+ description
+
+
+
+
+
+
+ clientType
+
+
+ string
+
+
+ "github-app"
+
+
+
+
+ clientId
+
+
+ string
+
+
+ The app's Client ID
+
+
+
+
+ token
+
+
+ string
+
+
+ The user access token
+
+
+
+
+ refreshToken
+
+
+ string
+
+
+ The refresh token
+
+
+
+
+ expiresAt
+
+
+ string
+
+
+ Date timestamp in ISO 8601 standard. Example: 2022-01-01T08:00:0.000Z
+
+
+
+
+ refreshTokenExpiresAt
+
+
+ string
+
+
+ Date timestamp in ISO 8601 standard. Example: 2021-07-01T00:00:0.000Z
+
+
+
+
+
+## Types
+
+```ts
+import {
+ OAuthAppAuthentication,
+ GitHubAppAuthentication,
+ GitHubAppAuthenticationWithExpiration,
+ GetWebFlowAuthorizationUrlOAuthAppOptions,
+ GetWebFlowAuthorizationUrlGitHubAppOptions,
+ GetWebFlowAuthorizationUrlOAuthAppResult,
+ GetWebFlowAuthorizationUrlGitHubAppResult,
+ CheckTokenOAuthAppOptions,
+ CheckTokenGitHubAppOptions,
+ CheckTokenOAuthAppResponse,
+ CheckTokenGitHubAppResponse,
+ ExchangeWebFlowCodeOAuthAppOptions,
+ ExchangeWebFlowCodeGitHubAppOptions,
+ ExchangeWebFlowCodeOAuthAppResponse,
+ ExchangeWebFlowCodeGitHubAppResponse,
+ CreateDeviceCodeOAuthAppOptions,
+ CreateDeviceCodeGitHubAppOptions,
+ CreateDeviceCodeDeviceTokenResponse,
+ ExchangeDeviceCodeOAuthAppOptionsWithoutClientSecret,
+ ExchangeDeviceCodeOAuthAppOptions,
+ ExchangeDeviceCodeGitHubAppOptionsWithoutClientSecret,
+ ExchangeDeviceCodeGitHubAppOptions,
+ ExchangeDeviceCodeOAuthAppResponse,
+ ExchangeDeviceCodeOAuthAppResponseWithoutClientSecret,
+ ExchangeDeviceCodeGitHubAppResponse,
+ ExchangeDeviceCodeGitHubAppResponseWithoutClientSecret,
+ RefreshTokenOptions,
+ RefreshTokenResponse,
+ ScopeTokenOptions,
+ ScopeTokenResponse,
+ ResetTokenOAuthAppOptions,
+ ResetTokenGitHubAppOptions,
+ ResetTokenOAuthAppResponse,
+ ResetTokenGitHubAppResponse,
+ DeleteTokenOAuthAppOptions,
+ DeleteTokenGitHubAppOptions,
+ DeleteTokenResponse,
+ DeleteAuthorizationOAuthAppOptions,
+ DeleteAuthorizationGitHubAppOptions,
+ DeleteAuthorizationResponse,
+} from "@octokit/oauth-methods";
+```
+
+## Contributing
+
+See [CONTRIBUTING.md](CONTRIBUTING.md)
+
+## License
+
+[MIT](LICENSE)
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-bundle/index.js b/.github/octokit/node_modules/@octokit/oauth-methods/dist-bundle/index.js
new file mode 100644
index 000000000..53e73ff30
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-bundle/index.js
@@ -0,0 +1,326 @@
+// pkg/dist-src/version.js
+var VERSION = "0.0.0-development";
+
+// pkg/dist-src/get-web-flow-authorization-url.js
+import { oauthAuthorizationUrl } from "@octokit/oauth-authorization-url";
+import { request as defaultRequest } from "@octokit/request";
+
+// pkg/dist-src/utils.js
+import { RequestError } from "@octokit/request-error";
+function requestToOAuthBaseUrl(request) {
+ const endpointDefaults = request.endpoint.DEFAULTS;
+ return /^https:\/\/(api\.)?github\.com$/.test(endpointDefaults.baseUrl) ? "https://github.com" : endpointDefaults.baseUrl.replace("/api/v3", "");
+}
+async function oauthRequest(request, route, parameters) {
+ const withOAuthParameters = {
+ baseUrl: requestToOAuthBaseUrl(request),
+ headers: {
+ accept: "application/json"
+ },
+ ...parameters
+ };
+ const response = await request(route, withOAuthParameters);
+ if ("error" in response.data) {
+ const error = new RequestError(
+ `${response.data.error_description} (${response.data.error}, ${response.data.error_uri})`,
+ 400,
+ {
+ request: request.endpoint.merge(
+ route,
+ withOAuthParameters
+ )
+ }
+ );
+ error.response = response;
+ throw error;
+ }
+ return response;
+}
+
+// pkg/dist-src/get-web-flow-authorization-url.js
+function getWebFlowAuthorizationUrl({
+ request = defaultRequest,
+ ...options
+}) {
+ const baseUrl = requestToOAuthBaseUrl(request);
+ return oauthAuthorizationUrl({
+ ...options,
+ baseUrl
+ });
+}
+
+// pkg/dist-src/exchange-web-flow-code.js
+import { request as defaultRequest2 } from "@octokit/request";
+async function exchangeWebFlowCode(options) {
+ const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */
+ defaultRequest2;
+ const response = await oauthRequest(
+ request,
+ "POST /login/oauth/access_token",
+ {
+ client_id: options.clientId,
+ client_secret: options.clientSecret,
+ code: options.code,
+ redirect_uri: options.redirectUrl
+ }
+ );
+ const authentication = {
+ clientType: options.clientType,
+ clientId: options.clientId,
+ clientSecret: options.clientSecret,
+ token: response.data.access_token,
+ scopes: response.data.scope.split(/\s+/).filter(Boolean)
+ };
+ if (options.clientType === "github-app") {
+ if ("refresh_token" in response.data) {
+ const apiTimeInMs = new Date(response.headers.date).getTime();
+ authentication.refreshToken = response.data.refresh_token, authentication.expiresAt = toTimestamp(
+ apiTimeInMs,
+ response.data.expires_in
+ ), authentication.refreshTokenExpiresAt = toTimestamp(
+ apiTimeInMs,
+ response.data.refresh_token_expires_in
+ );
+ }
+ delete authentication.scopes;
+ }
+ return { ...response, authentication };
+}
+function toTimestamp(apiTimeInMs, expirationInSeconds) {
+ return new Date(apiTimeInMs + expirationInSeconds * 1e3).toISOString();
+}
+
+// pkg/dist-src/create-device-code.js
+import { request as defaultRequest3 } from "@octokit/request";
+async function createDeviceCode(options) {
+ const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */
+ defaultRequest3;
+ const parameters = {
+ client_id: options.clientId
+ };
+ if ("scopes" in options && Array.isArray(options.scopes)) {
+ parameters.scope = options.scopes.join(" ");
+ }
+ return oauthRequest(request, "POST /login/device/code", parameters);
+}
+
+// pkg/dist-src/exchange-device-code.js
+import { request as defaultRequest4 } from "@octokit/request";
+async function exchangeDeviceCode(options) {
+ const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */
+ defaultRequest4;
+ const response = await oauthRequest(
+ request,
+ "POST /login/oauth/access_token",
+ {
+ client_id: options.clientId,
+ device_code: options.code,
+ grant_type: "urn:ietf:params:oauth:grant-type:device_code"
+ }
+ );
+ const authentication = {
+ clientType: options.clientType,
+ clientId: options.clientId,
+ token: response.data.access_token,
+ scopes: response.data.scope.split(/\s+/).filter(Boolean)
+ };
+ if ("clientSecret" in options) {
+ authentication.clientSecret = options.clientSecret;
+ }
+ if (options.clientType === "github-app") {
+ if ("refresh_token" in response.data) {
+ const apiTimeInMs = new Date(response.headers.date).getTime();
+ authentication.refreshToken = response.data.refresh_token, authentication.expiresAt = toTimestamp2(
+ apiTimeInMs,
+ response.data.expires_in
+ ), authentication.refreshTokenExpiresAt = toTimestamp2(
+ apiTimeInMs,
+ response.data.refresh_token_expires_in
+ );
+ }
+ delete authentication.scopes;
+ }
+ return { ...response, authentication };
+}
+function toTimestamp2(apiTimeInMs, expirationInSeconds) {
+ return new Date(apiTimeInMs + expirationInSeconds * 1e3).toISOString();
+}
+
+// pkg/dist-src/check-token.js
+import { request as defaultRequest5 } from "@octokit/request";
+async function checkToken(options) {
+ const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */
+ defaultRequest5;
+ const response = await request("POST /applications/{client_id}/token", {
+ headers: {
+ authorization: `basic ${btoa(
+ `${options.clientId}:${options.clientSecret}`
+ )}`
+ },
+ client_id: options.clientId,
+ access_token: options.token
+ });
+ const authentication = {
+ clientType: options.clientType,
+ clientId: options.clientId,
+ clientSecret: options.clientSecret,
+ token: options.token,
+ scopes: response.data.scopes
+ };
+ if (response.data.expires_at)
+ authentication.expiresAt = response.data.expires_at;
+ if (options.clientType === "github-app") {
+ delete authentication.scopes;
+ }
+ return { ...response, authentication };
+}
+
+// pkg/dist-src/refresh-token.js
+import { request as defaultRequest6 } from "@octokit/request";
+async function refreshToken(options) {
+ const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */
+ defaultRequest6;
+ const response = await oauthRequest(
+ request,
+ "POST /login/oauth/access_token",
+ {
+ client_id: options.clientId,
+ client_secret: options.clientSecret,
+ grant_type: "refresh_token",
+ refresh_token: options.refreshToken
+ }
+ );
+ const apiTimeInMs = new Date(response.headers.date).getTime();
+ const authentication = {
+ clientType: "github-app",
+ clientId: options.clientId,
+ clientSecret: options.clientSecret,
+ token: response.data.access_token,
+ refreshToken: response.data.refresh_token,
+ expiresAt: toTimestamp3(apiTimeInMs, response.data.expires_in),
+ refreshTokenExpiresAt: toTimestamp3(
+ apiTimeInMs,
+ response.data.refresh_token_expires_in
+ )
+ };
+ return { ...response, authentication };
+}
+function toTimestamp3(apiTimeInMs, expirationInSeconds) {
+ return new Date(apiTimeInMs + expirationInSeconds * 1e3).toISOString();
+}
+
+// pkg/dist-src/scope-token.js
+import { request as defaultRequest7 } from "@octokit/request";
+async function scopeToken(options) {
+ const {
+ request: optionsRequest,
+ clientType,
+ clientId,
+ clientSecret,
+ token,
+ ...requestOptions
+ } = options;
+ const request = optionsRequest || /* istanbul ignore next: we always pass a custom request in tests */
+ defaultRequest7;
+ const response = await request(
+ "POST /applications/{client_id}/token/scoped",
+ {
+ headers: {
+ authorization: `basic ${btoa(`${clientId}:${clientSecret}`)}`
+ },
+ client_id: clientId,
+ access_token: token,
+ ...requestOptions
+ }
+ );
+ const authentication = Object.assign(
+ {
+ clientType,
+ clientId,
+ clientSecret,
+ token: response.data.token
+ },
+ response.data.expires_at ? { expiresAt: response.data.expires_at } : {}
+ );
+ return { ...response, authentication };
+}
+
+// pkg/dist-src/reset-token.js
+import { request as defaultRequest8 } from "@octokit/request";
+async function resetToken(options) {
+ const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */
+ defaultRequest8;
+ const auth = btoa(`${options.clientId}:${options.clientSecret}`);
+ const response = await request(
+ "PATCH /applications/{client_id}/token",
+ {
+ headers: {
+ authorization: `basic ${auth}`
+ },
+ client_id: options.clientId,
+ access_token: options.token
+ }
+ );
+ const authentication = {
+ clientType: options.clientType,
+ clientId: options.clientId,
+ clientSecret: options.clientSecret,
+ token: response.data.token,
+ scopes: response.data.scopes
+ };
+ if (response.data.expires_at)
+ authentication.expiresAt = response.data.expires_at;
+ if (options.clientType === "github-app") {
+ delete authentication.scopes;
+ }
+ return { ...response, authentication };
+}
+
+// pkg/dist-src/delete-token.js
+import { request as defaultRequest9 } from "@octokit/request";
+async function deleteToken(options) {
+ const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */
+ defaultRequest9;
+ const auth = btoa(`${options.clientId}:${options.clientSecret}`);
+ return request(
+ "DELETE /applications/{client_id}/token",
+ {
+ headers: {
+ authorization: `basic ${auth}`
+ },
+ client_id: options.clientId,
+ access_token: options.token
+ }
+ );
+}
+
+// pkg/dist-src/delete-authorization.js
+import { request as defaultRequest10 } from "@octokit/request";
+async function deleteAuthorization(options) {
+ const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */
+ defaultRequest10;
+ const auth = btoa(`${options.clientId}:${options.clientSecret}`);
+ return request(
+ "DELETE /applications/{client_id}/grant",
+ {
+ headers: {
+ authorization: `basic ${auth}`
+ },
+ client_id: options.clientId,
+ access_token: options.token
+ }
+ );
+}
+export {
+ VERSION,
+ checkToken,
+ createDeviceCode,
+ deleteAuthorization,
+ deleteToken,
+ exchangeDeviceCode,
+ exchangeWebFlowCode,
+ getWebFlowAuthorizationUrl,
+ refreshToken,
+ resetToken,
+ scopeToken
+};
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-bundle/index.js.map b/.github/octokit/node_modules/@octokit/oauth-methods/dist-bundle/index.js.map
new file mode 100644
index 000000000..668559a1e
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-bundle/index.js.map
@@ -0,0 +1,7 @@
+{
+ "version": 3,
+ "sources": ["../dist-src/version.js", "../dist-src/get-web-flow-authorization-url.js", "../dist-src/utils.js", "../dist-src/exchange-web-flow-code.js", "../dist-src/create-device-code.js", "../dist-src/exchange-device-code.js", "../dist-src/check-token.js", "../dist-src/refresh-token.js", "../dist-src/scope-token.js", "../dist-src/reset-token.js", "../dist-src/delete-token.js", "../dist-src/delete-authorization.js"],
+ "sourcesContent": ["const VERSION = \"0.0.0-development\";\nexport {\n VERSION\n};\n", "import { oauthAuthorizationUrl } from \"@octokit/oauth-authorization-url\";\nimport { request as defaultRequest } from \"@octokit/request\";\nimport { requestToOAuthBaseUrl } from \"./utils.js\";\nfunction getWebFlowAuthorizationUrl({\n request = defaultRequest,\n ...options\n}) {\n const baseUrl = requestToOAuthBaseUrl(request);\n return oauthAuthorizationUrl({\n ...options,\n baseUrl\n });\n}\nexport {\n getWebFlowAuthorizationUrl\n};\n", "import { RequestError } from \"@octokit/request-error\";\nfunction requestToOAuthBaseUrl(request) {\n const endpointDefaults = request.endpoint.DEFAULTS;\n return /^https:\\/\\/(api\\.)?github\\.com$/.test(endpointDefaults.baseUrl) ? \"https://github.com\" : endpointDefaults.baseUrl.replace(\"/api/v3\", \"\");\n}\nasync function oauthRequest(request, route, parameters) {\n const withOAuthParameters = {\n baseUrl: requestToOAuthBaseUrl(request),\n headers: {\n accept: \"application/json\"\n },\n ...parameters\n };\n const response = await request(route, withOAuthParameters);\n if (\"error\" in response.data) {\n const error = new RequestError(\n `${response.data.error_description} (${response.data.error}, ${response.data.error_uri})`,\n 400,\n {\n request: request.endpoint.merge(\n route,\n withOAuthParameters\n )\n }\n );\n error.response = response;\n throw error;\n }\n return response;\n}\nexport {\n oauthRequest,\n requestToOAuthBaseUrl\n};\n", "import { request as defaultRequest } from \"@octokit/request\";\nimport { oauthRequest } from \"./utils.js\";\nasync function exchangeWebFlowCode(options) {\n const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */\n defaultRequest;\n const response = await oauthRequest(\n request,\n \"POST /login/oauth/access_token\",\n {\n client_id: options.clientId,\n client_secret: options.clientSecret,\n code: options.code,\n redirect_uri: options.redirectUrl\n }\n );\n const authentication = {\n clientType: options.clientType,\n clientId: options.clientId,\n clientSecret: options.clientSecret,\n token: response.data.access_token,\n scopes: response.data.scope.split(/\\s+/).filter(Boolean)\n };\n if (options.clientType === \"github-app\") {\n if (\"refresh_token\" in response.data) {\n const apiTimeInMs = new Date(response.headers.date).getTime();\n authentication.refreshToken = response.data.refresh_token, authentication.expiresAt = toTimestamp(\n apiTimeInMs,\n response.data.expires_in\n ), authentication.refreshTokenExpiresAt = toTimestamp(\n apiTimeInMs,\n response.data.refresh_token_expires_in\n );\n }\n delete authentication.scopes;\n }\n return { ...response, authentication };\n}\nfunction toTimestamp(apiTimeInMs, expirationInSeconds) {\n return new Date(apiTimeInMs + expirationInSeconds * 1e3).toISOString();\n}\nexport {\n exchangeWebFlowCode\n};\n", "import { request as defaultRequest } from \"@octokit/request\";\nimport { oauthRequest } from \"./utils.js\";\nasync function createDeviceCode(options) {\n const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */\n defaultRequest;\n const parameters = {\n client_id: options.clientId\n };\n if (\"scopes\" in options && Array.isArray(options.scopes)) {\n parameters.scope = options.scopes.join(\" \");\n }\n return oauthRequest(request, \"POST /login/device/code\", parameters);\n}\nexport {\n createDeviceCode\n};\n", "import { request as defaultRequest } from \"@octokit/request\";\nimport { oauthRequest } from \"./utils.js\";\nasync function exchangeDeviceCode(options) {\n const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */\n defaultRequest;\n const response = await oauthRequest(\n request,\n \"POST /login/oauth/access_token\",\n {\n client_id: options.clientId,\n device_code: options.code,\n grant_type: \"urn:ietf:params:oauth:grant-type:device_code\"\n }\n );\n const authentication = {\n clientType: options.clientType,\n clientId: options.clientId,\n token: response.data.access_token,\n scopes: response.data.scope.split(/\\s+/).filter(Boolean)\n };\n if (\"clientSecret\" in options) {\n authentication.clientSecret = options.clientSecret;\n }\n if (options.clientType === \"github-app\") {\n if (\"refresh_token\" in response.data) {\n const apiTimeInMs = new Date(response.headers.date).getTime();\n authentication.refreshToken = response.data.refresh_token, authentication.expiresAt = toTimestamp(\n apiTimeInMs,\n response.data.expires_in\n ), authentication.refreshTokenExpiresAt = toTimestamp(\n apiTimeInMs,\n response.data.refresh_token_expires_in\n );\n }\n delete authentication.scopes;\n }\n return { ...response, authentication };\n}\nfunction toTimestamp(apiTimeInMs, expirationInSeconds) {\n return new Date(apiTimeInMs + expirationInSeconds * 1e3).toISOString();\n}\nexport {\n exchangeDeviceCode\n};\n", "import { request as defaultRequest } from \"@octokit/request\";\nasync function checkToken(options) {\n const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */\n defaultRequest;\n const response = await request(\"POST /applications/{client_id}/token\", {\n headers: {\n authorization: `basic ${btoa(\n `${options.clientId}:${options.clientSecret}`\n )}`\n },\n client_id: options.clientId,\n access_token: options.token\n });\n const authentication = {\n clientType: options.clientType,\n clientId: options.clientId,\n clientSecret: options.clientSecret,\n token: options.token,\n scopes: response.data.scopes\n };\n if (response.data.expires_at)\n authentication.expiresAt = response.data.expires_at;\n if (options.clientType === \"github-app\") {\n delete authentication.scopes;\n }\n return { ...response, authentication };\n}\nexport {\n checkToken\n};\n", "import { request as defaultRequest } from \"@octokit/request\";\nimport { oauthRequest } from \"./utils.js\";\nasync function refreshToken(options) {\n const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */\n defaultRequest;\n const response = await oauthRequest(\n request,\n \"POST /login/oauth/access_token\",\n {\n client_id: options.clientId,\n client_secret: options.clientSecret,\n grant_type: \"refresh_token\",\n refresh_token: options.refreshToken\n }\n );\n const apiTimeInMs = new Date(response.headers.date).getTime();\n const authentication = {\n clientType: \"github-app\",\n clientId: options.clientId,\n clientSecret: options.clientSecret,\n token: response.data.access_token,\n refreshToken: response.data.refresh_token,\n expiresAt: toTimestamp(apiTimeInMs, response.data.expires_in),\n refreshTokenExpiresAt: toTimestamp(\n apiTimeInMs,\n response.data.refresh_token_expires_in\n )\n };\n return { ...response, authentication };\n}\nfunction toTimestamp(apiTimeInMs, expirationInSeconds) {\n return new Date(apiTimeInMs + expirationInSeconds * 1e3).toISOString();\n}\nexport {\n refreshToken\n};\n", "import { request as defaultRequest } from \"@octokit/request\";\nasync function scopeToken(options) {\n const {\n request: optionsRequest,\n clientType,\n clientId,\n clientSecret,\n token,\n ...requestOptions\n } = options;\n const request = optionsRequest || /* istanbul ignore next: we always pass a custom request in tests */\n defaultRequest;\n const response = await request(\n \"POST /applications/{client_id}/token/scoped\",\n {\n headers: {\n authorization: `basic ${btoa(`${clientId}:${clientSecret}`)}`\n },\n client_id: clientId,\n access_token: token,\n ...requestOptions\n }\n );\n const authentication = Object.assign(\n {\n clientType,\n clientId,\n clientSecret,\n token: response.data.token\n },\n response.data.expires_at ? { expiresAt: response.data.expires_at } : {}\n );\n return { ...response, authentication };\n}\nexport {\n scopeToken\n};\n", "import { request as defaultRequest } from \"@octokit/request\";\nasync function resetToken(options) {\n const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */\n defaultRequest;\n const auth = btoa(`${options.clientId}:${options.clientSecret}`);\n const response = await request(\n \"PATCH /applications/{client_id}/token\",\n {\n headers: {\n authorization: `basic ${auth}`\n },\n client_id: options.clientId,\n access_token: options.token\n }\n );\n const authentication = {\n clientType: options.clientType,\n clientId: options.clientId,\n clientSecret: options.clientSecret,\n token: response.data.token,\n scopes: response.data.scopes\n };\n if (response.data.expires_at)\n authentication.expiresAt = response.data.expires_at;\n if (options.clientType === \"github-app\") {\n delete authentication.scopes;\n }\n return { ...response, authentication };\n}\nexport {\n resetToken\n};\n", "import { request as defaultRequest } from \"@octokit/request\";\nasync function deleteToken(options) {\n const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */\n defaultRequest;\n const auth = btoa(`${options.clientId}:${options.clientSecret}`);\n return request(\n \"DELETE /applications/{client_id}/token\",\n {\n headers: {\n authorization: `basic ${auth}`\n },\n client_id: options.clientId,\n access_token: options.token\n }\n );\n}\nexport {\n deleteToken\n};\n", "import { request as defaultRequest } from \"@octokit/request\";\nasync function deleteAuthorization(options) {\n const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */\n defaultRequest;\n const auth = btoa(`${options.clientId}:${options.clientSecret}`);\n return request(\n \"DELETE /applications/{client_id}/grant\",\n {\n headers: {\n authorization: `basic ${auth}`\n },\n client_id: options.clientId,\n access_token: options.token\n }\n );\n}\nexport {\n deleteAuthorization\n};\n"],
+ "mappings": ";AAAA,IAAM,UAAU;;;ACAhB,SAAS,6BAA6B;AACtC,SAAS,WAAW,sBAAsB;;;ACD1C,SAAS,oBAAoB;AAC7B,SAAS,sBAAsB,SAAS;AACtC,QAAM,mBAAmB,QAAQ,SAAS;AAC1C,SAAO,kCAAkC,KAAK,iBAAiB,OAAO,IAAI,uBAAuB,iBAAiB,QAAQ,QAAQ,WAAW,EAAE;AACjJ;AACA,eAAe,aAAa,SAAS,OAAO,YAAY;AACtD,QAAM,sBAAsB;AAAA,IAC1B,SAAS,sBAAsB,OAAO;AAAA,IACtC,SAAS;AAAA,MACP,QAAQ;AAAA,IACV;AAAA,IACA,GAAG;AAAA,EACL;AACA,QAAM,WAAW,MAAM,QAAQ,OAAO,mBAAmB;AACzD,MAAI,WAAW,SAAS,MAAM;AAC5B,UAAM,QAAQ,IAAI;AAAA,MAChB,GAAG,SAAS,KAAK,iBAAiB,KAAK,SAAS,KAAK,KAAK,KAAK,SAAS,KAAK,SAAS;AAAA,MACtF;AAAA,MACA;AAAA,QACE,SAAS,QAAQ,SAAS;AAAA,UACxB;AAAA,UACA;AAAA,QACF;AAAA,MACF;AAAA,IACF;AACA,UAAM,WAAW;AACjB,UAAM;AAAA,EACR;AACA,SAAO;AACT;;;AD1BA,SAAS,2BAA2B;AAAA,EAClC,UAAU;AAAA,EACV,GAAG;AACL,GAAG;AACD,QAAM,UAAU,sBAAsB,OAAO;AAC7C,SAAO,sBAAsB;AAAA,IAC3B,GAAG;AAAA,IACH;AAAA,EACF,CAAC;AACH;;;AEZA,SAAS,WAAWA,uBAAsB;AAE1C,eAAe,oBAAoB,SAAS;AAC1C,QAAM,UAAU,QAAQ;AAAA,EACxBC;AACA,QAAM,WAAW,MAAM;AAAA,IACrB;AAAA,IACA;AAAA,IACA;AAAA,MACE,WAAW,QAAQ;AAAA,MACnB,eAAe,QAAQ;AAAA,MACvB,MAAM,QAAQ;AAAA,MACd,cAAc,QAAQ;AAAA,IACxB;AAAA,EACF;AACA,QAAM,iBAAiB;AAAA,IACrB,YAAY,QAAQ;AAAA,IACpB,UAAU,QAAQ;AAAA,IAClB,cAAc,QAAQ;AAAA,IACtB,OAAO,SAAS,KAAK;AAAA,IACrB,QAAQ,SAAS,KAAK,MAAM,MAAM,KAAK,EAAE,OAAO,OAAO;AAAA,EACzD;AACA,MAAI,QAAQ,eAAe,cAAc;AACvC,QAAI,mBAAmB,SAAS,MAAM;AACpC,YAAM,cAAc,IAAI,KAAK,SAAS,QAAQ,IAAI,EAAE,QAAQ;AAC5D,qBAAe,eAAe,SAAS,KAAK,eAAe,eAAe,YAAY;AAAA,QACpF;AAAA,QACA,SAAS,KAAK;AAAA,MAChB,GAAG,eAAe,wBAAwB;AAAA,QACxC;AAAA,QACA,SAAS,KAAK;AAAA,MAChB;AAAA,IACF;AACA,WAAO,eAAe;AAAA,EACxB;AACA,SAAO,EAAE,GAAG,UAAU,eAAe;AACvC;AACA,SAAS,YAAY,aAAa,qBAAqB;AACrD,SAAO,IAAI,KAAK,cAAc,sBAAsB,GAAG,EAAE,YAAY;AACvE;;;ACvCA,SAAS,WAAWC,uBAAsB;AAE1C,eAAe,iBAAiB,SAAS;AACvC,QAAM,UAAU,QAAQ;AAAA,EACxBC;AACA,QAAM,aAAa;AAAA,IACjB,WAAW,QAAQ;AAAA,EACrB;AACA,MAAI,YAAY,WAAW,MAAM,QAAQ,QAAQ,MAAM,GAAG;AACxD,eAAW,QAAQ,QAAQ,OAAO,KAAK,GAAG;AAAA,EAC5C;AACA,SAAO,aAAa,SAAS,2BAA2B,UAAU;AACpE;;;ACZA,SAAS,WAAWC,uBAAsB;AAE1C,eAAe,mBAAmB,SAAS;AACzC,QAAM,UAAU,QAAQ;AAAA,EACxBC;AACA,QAAM,WAAW,MAAM;AAAA,IACrB;AAAA,IACA;AAAA,IACA;AAAA,MACE,WAAW,QAAQ;AAAA,MACnB,aAAa,QAAQ;AAAA,MACrB,YAAY;AAAA,IACd;AAAA,EACF;AACA,QAAM,iBAAiB;AAAA,IACrB,YAAY,QAAQ;AAAA,IACpB,UAAU,QAAQ;AAAA,IAClB,OAAO,SAAS,KAAK;AAAA,IACrB,QAAQ,SAAS,KAAK,MAAM,MAAM,KAAK,EAAE,OAAO,OAAO;AAAA,EACzD;AACA,MAAI,kBAAkB,SAAS;AAC7B,mBAAe,eAAe,QAAQ;AAAA,EACxC;AACA,MAAI,QAAQ,eAAe,cAAc;AACvC,QAAI,mBAAmB,SAAS,MAAM;AACpC,YAAM,cAAc,IAAI,KAAK,SAAS,QAAQ,IAAI,EAAE,QAAQ;AAC5D,qBAAe,eAAe,SAAS,KAAK,eAAe,eAAe,YAAYC;AAAA,QACpF;AAAA,QACA,SAAS,KAAK;AAAA,MAChB,GAAG,eAAe,wBAAwBA;AAAA,QACxC;AAAA,QACA,SAAS,KAAK;AAAA,MAChB;AAAA,IACF;AACA,WAAO,eAAe;AAAA,EACxB;AACA,SAAO,EAAE,GAAG,UAAU,eAAe;AACvC;AACA,SAASA,aAAY,aAAa,qBAAqB;AACrD,SAAO,IAAI,KAAK,cAAc,sBAAsB,GAAG,EAAE,YAAY;AACvE;;;ACxCA,SAAS,WAAWC,uBAAsB;AAC1C,eAAe,WAAW,SAAS;AACjC,QAAM,UAAU,QAAQ;AAAA,EACxBA;AACA,QAAM,WAAW,MAAM,QAAQ,wCAAwC;AAAA,IACrE,SAAS;AAAA,MACP,eAAe,SAAS;AAAA,QACtB,GAAG,QAAQ,QAAQ,IAAI,QAAQ,YAAY;AAAA,MAC7C,CAAC;AAAA,IACH;AAAA,IACA,WAAW,QAAQ;AAAA,IACnB,cAAc,QAAQ;AAAA,EACxB,CAAC;AACD,QAAM,iBAAiB;AAAA,IACrB,YAAY,QAAQ;AAAA,IACpB,UAAU,QAAQ;AAAA,IAClB,cAAc,QAAQ;AAAA,IACtB,OAAO,QAAQ;AAAA,IACf,QAAQ,SAAS,KAAK;AAAA,EACxB;AACA,MAAI,SAAS,KAAK;AAChB,mBAAe,YAAY,SAAS,KAAK;AAC3C,MAAI,QAAQ,eAAe,cAAc;AACvC,WAAO,eAAe;AAAA,EACxB;AACA,SAAO,EAAE,GAAG,UAAU,eAAe;AACvC;;;AC1BA,SAAS,WAAWC,uBAAsB;AAE1C,eAAe,aAAa,SAAS;AACnC,QAAM,UAAU,QAAQ;AAAA,EACxBC;AACA,QAAM,WAAW,MAAM;AAAA,IACrB;AAAA,IACA;AAAA,IACA;AAAA,MACE,WAAW,QAAQ;AAAA,MACnB,eAAe,QAAQ;AAAA,MACvB,YAAY;AAAA,MACZ,eAAe,QAAQ;AAAA,IACzB;AAAA,EACF;AACA,QAAM,cAAc,IAAI,KAAK,SAAS,QAAQ,IAAI,EAAE,QAAQ;AAC5D,QAAM,iBAAiB;AAAA,IACrB,YAAY;AAAA,IACZ,UAAU,QAAQ;AAAA,IAClB,cAAc,QAAQ;AAAA,IACtB,OAAO,SAAS,KAAK;AAAA,IACrB,cAAc,SAAS,KAAK;AAAA,IAC5B,WAAWC,aAAY,aAAa,SAAS,KAAK,UAAU;AAAA,IAC5D,uBAAuBA;AAAA,MACrB;AAAA,MACA,SAAS,KAAK;AAAA,IAChB;AAAA,EACF;AACA,SAAO,EAAE,GAAG,UAAU,eAAe;AACvC;AACA,SAASA,aAAY,aAAa,qBAAqB;AACrD,SAAO,IAAI,KAAK,cAAc,sBAAsB,GAAG,EAAE,YAAY;AACvE;;;AChCA,SAAS,WAAWC,uBAAsB;AAC1C,eAAe,WAAW,SAAS;AACjC,QAAM;AAAA,IACJ,SAAS;AAAA,IACT;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA,GAAG;AAAA,EACL,IAAI;AACJ,QAAM,UAAU;AAAA,EAChBA;AACA,QAAM,WAAW,MAAM;AAAA,IACrB;AAAA,IACA;AAAA,MACE,SAAS;AAAA,QACP,eAAe,SAAS,KAAK,GAAG,QAAQ,IAAI,YAAY,EAAE,CAAC;AAAA,MAC7D;AAAA,MACA,WAAW;AAAA,MACX,cAAc;AAAA,MACd,GAAG;AAAA,IACL;AAAA,EACF;AACA,QAAM,iBAAiB,OAAO;AAAA,IAC5B;AAAA,MACE;AAAA,MACA;AAAA,MACA;AAAA,MACA,OAAO,SAAS,KAAK;AAAA,IACvB;AAAA,IACA,SAAS,KAAK,aAAa,EAAE,WAAW,SAAS,KAAK,WAAW,IAAI,CAAC;AAAA,EACxE;AACA,SAAO,EAAE,GAAG,UAAU,eAAe;AACvC;;;ACjCA,SAAS,WAAWC,uBAAsB;AAC1C,eAAe,WAAW,SAAS;AACjC,QAAM,UAAU,QAAQ;AAAA,EACxBA;AACA,QAAM,OAAO,KAAK,GAAG,QAAQ,QAAQ,IAAI,QAAQ,YAAY,EAAE;AAC/D,QAAM,WAAW,MAAM;AAAA,IACrB;AAAA,IACA;AAAA,MACE,SAAS;AAAA,QACP,eAAe,SAAS,IAAI;AAAA,MAC9B;AAAA,MACA,WAAW,QAAQ;AAAA,MACnB,cAAc,QAAQ;AAAA,IACxB;AAAA,EACF;AACA,QAAM,iBAAiB;AAAA,IACrB,YAAY,QAAQ;AAAA,IACpB,UAAU,QAAQ;AAAA,IAClB,cAAc,QAAQ;AAAA,IACtB,OAAO,SAAS,KAAK;AAAA,IACrB,QAAQ,SAAS,KAAK;AAAA,EACxB;AACA,MAAI,SAAS,KAAK;AAChB,mBAAe,YAAY,SAAS,KAAK;AAC3C,MAAI,QAAQ,eAAe,cAAc;AACvC,WAAO,eAAe;AAAA,EACxB;AACA,SAAO,EAAE,GAAG,UAAU,eAAe;AACvC;;;AC5BA,SAAS,WAAWC,uBAAsB;AAC1C,eAAe,YAAY,SAAS;AAClC,QAAM,UAAU,QAAQ;AAAA,EACxBA;AACA,QAAM,OAAO,KAAK,GAAG,QAAQ,QAAQ,IAAI,QAAQ,YAAY,EAAE;AAC/D,SAAO;AAAA,IACL;AAAA,IACA;AAAA,MACE,SAAS;AAAA,QACP,eAAe,SAAS,IAAI;AAAA,MAC9B;AAAA,MACA,WAAW,QAAQ;AAAA,MACnB,cAAc,QAAQ;AAAA,IACxB;AAAA,EACF;AACF;;;ACfA,SAAS,WAAWC,wBAAsB;AAC1C,eAAe,oBAAoB,SAAS;AAC1C,QAAM,UAAU,QAAQ;AAAA,EACxBA;AACA,QAAM,OAAO,KAAK,GAAG,QAAQ,QAAQ,IAAI,QAAQ,YAAY,EAAE;AAC/D,SAAO;AAAA,IACL;AAAA,IACA;AAAA,MACE,SAAS;AAAA,QACP,eAAe,SAAS,IAAI;AAAA,MAC9B;AAAA,MACA,WAAW,QAAQ;AAAA,MACnB,cAAc,QAAQ;AAAA,IACxB;AAAA,EACF;AACF;",
+ "names": ["defaultRequest", "defaultRequest", "defaultRequest", "defaultRequest", "defaultRequest", "defaultRequest", "toTimestamp", "defaultRequest", "defaultRequest", "defaultRequest", "toTimestamp", "defaultRequest", "defaultRequest", "defaultRequest", "defaultRequest"]
+}
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/check-token.js b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/check-token.js
new file mode 100644
index 000000000..06b7028eb
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/check-token.js
@@ -0,0 +1,30 @@
+import { request as defaultRequest } from "@octokit/request";
+async function checkToken(options) {
+ const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */
+ defaultRequest;
+ const response = await request("POST /applications/{client_id}/token", {
+ headers: {
+ authorization: `basic ${btoa(
+ `${options.clientId}:${options.clientSecret}`
+ )}`
+ },
+ client_id: options.clientId,
+ access_token: options.token
+ });
+ const authentication = {
+ clientType: options.clientType,
+ clientId: options.clientId,
+ clientSecret: options.clientSecret,
+ token: options.token,
+ scopes: response.data.scopes
+ };
+ if (response.data.expires_at)
+ authentication.expiresAt = response.data.expires_at;
+ if (options.clientType === "github-app") {
+ delete authentication.scopes;
+ }
+ return { ...response, authentication };
+}
+export {
+ checkToken
+};
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/create-device-code.js b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/create-device-code.js
new file mode 100644
index 000000000..a99875cf8
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/create-device-code.js
@@ -0,0 +1,16 @@
+import { request as defaultRequest } from "@octokit/request";
+import { oauthRequest } from "./utils.js";
+async function createDeviceCode(options) {
+ const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */
+ defaultRequest;
+ const parameters = {
+ client_id: options.clientId
+ };
+ if ("scopes" in options && Array.isArray(options.scopes)) {
+ parameters.scope = options.scopes.join(" ");
+ }
+ return oauthRequest(request, "POST /login/device/code", parameters);
+}
+export {
+ createDeviceCode
+};
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/delete-authorization.js b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/delete-authorization.js
new file mode 100644
index 000000000..9dcb2313a
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/delete-authorization.js
@@ -0,0 +1,19 @@
+import { request as defaultRequest } from "@octokit/request";
+async function deleteAuthorization(options) {
+ const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */
+ defaultRequest;
+ const auth = btoa(`${options.clientId}:${options.clientSecret}`);
+ return request(
+ "DELETE /applications/{client_id}/grant",
+ {
+ headers: {
+ authorization: `basic ${auth}`
+ },
+ client_id: options.clientId,
+ access_token: options.token
+ }
+ );
+}
+export {
+ deleteAuthorization
+};
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/delete-token.js b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/delete-token.js
new file mode 100644
index 000000000..18f68e292
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/delete-token.js
@@ -0,0 +1,19 @@
+import { request as defaultRequest } from "@octokit/request";
+async function deleteToken(options) {
+ const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */
+ defaultRequest;
+ const auth = btoa(`${options.clientId}:${options.clientSecret}`);
+ return request(
+ "DELETE /applications/{client_id}/token",
+ {
+ headers: {
+ authorization: `basic ${auth}`
+ },
+ client_id: options.clientId,
+ access_token: options.token
+ }
+ );
+}
+export {
+ deleteToken
+};
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/exchange-device-code.js b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/exchange-device-code.js
new file mode 100644
index 000000000..4b3103f96
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/exchange-device-code.js
@@ -0,0 +1,44 @@
+import { request as defaultRequest } from "@octokit/request";
+import { oauthRequest } from "./utils.js";
+async function exchangeDeviceCode(options) {
+ const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */
+ defaultRequest;
+ const response = await oauthRequest(
+ request,
+ "POST /login/oauth/access_token",
+ {
+ client_id: options.clientId,
+ device_code: options.code,
+ grant_type: "urn:ietf:params:oauth:grant-type:device_code"
+ }
+ );
+ const authentication = {
+ clientType: options.clientType,
+ clientId: options.clientId,
+ token: response.data.access_token,
+ scopes: response.data.scope.split(/\s+/).filter(Boolean)
+ };
+ if ("clientSecret" in options) {
+ authentication.clientSecret = options.clientSecret;
+ }
+ if (options.clientType === "github-app") {
+ if ("refresh_token" in response.data) {
+ const apiTimeInMs = new Date(response.headers.date).getTime();
+ authentication.refreshToken = response.data.refresh_token, authentication.expiresAt = toTimestamp(
+ apiTimeInMs,
+ response.data.expires_in
+ ), authentication.refreshTokenExpiresAt = toTimestamp(
+ apiTimeInMs,
+ response.data.refresh_token_expires_in
+ );
+ }
+ delete authentication.scopes;
+ }
+ return { ...response, authentication };
+}
+function toTimestamp(apiTimeInMs, expirationInSeconds) {
+ return new Date(apiTimeInMs + expirationInSeconds * 1e3).toISOString();
+}
+export {
+ exchangeDeviceCode
+};
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/exchange-web-flow-code.js b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/exchange-web-flow-code.js
new file mode 100644
index 000000000..c4befdf23
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/exchange-web-flow-code.js
@@ -0,0 +1,43 @@
+import { request as defaultRequest } from "@octokit/request";
+import { oauthRequest } from "./utils.js";
+async function exchangeWebFlowCode(options) {
+ const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */
+ defaultRequest;
+ const response = await oauthRequest(
+ request,
+ "POST /login/oauth/access_token",
+ {
+ client_id: options.clientId,
+ client_secret: options.clientSecret,
+ code: options.code,
+ redirect_uri: options.redirectUrl
+ }
+ );
+ const authentication = {
+ clientType: options.clientType,
+ clientId: options.clientId,
+ clientSecret: options.clientSecret,
+ token: response.data.access_token,
+ scopes: response.data.scope.split(/\s+/).filter(Boolean)
+ };
+ if (options.clientType === "github-app") {
+ if ("refresh_token" in response.data) {
+ const apiTimeInMs = new Date(response.headers.date).getTime();
+ authentication.refreshToken = response.data.refresh_token, authentication.expiresAt = toTimestamp(
+ apiTimeInMs,
+ response.data.expires_in
+ ), authentication.refreshTokenExpiresAt = toTimestamp(
+ apiTimeInMs,
+ response.data.refresh_token_expires_in
+ );
+ }
+ delete authentication.scopes;
+ }
+ return { ...response, authentication };
+}
+function toTimestamp(apiTimeInMs, expirationInSeconds) {
+ return new Date(apiTimeInMs + expirationInSeconds * 1e3).toISOString();
+}
+export {
+ exchangeWebFlowCode
+};
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/get-web-flow-authorization-url.js b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/get-web-flow-authorization-url.js
new file mode 100644
index 000000000..b06511505
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/get-web-flow-authorization-url.js
@@ -0,0 +1,16 @@
+import { oauthAuthorizationUrl } from "@octokit/oauth-authorization-url";
+import { request as defaultRequest } from "@octokit/request";
+import { requestToOAuthBaseUrl } from "./utils.js";
+function getWebFlowAuthorizationUrl({
+ request = defaultRequest,
+ ...options
+}) {
+ const baseUrl = requestToOAuthBaseUrl(request);
+ return oauthAuthorizationUrl({
+ ...options,
+ baseUrl
+ });
+}
+export {
+ getWebFlowAuthorizationUrl
+};
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/index.js b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/index.js
new file mode 100644
index 000000000..ee01b5eda
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/index.js
@@ -0,0 +1,14 @@
+import { VERSION } from "./version.js";
+export * from "./get-web-flow-authorization-url.js";
+export * from "./exchange-web-flow-code.js";
+export * from "./create-device-code.js";
+export * from "./exchange-device-code.js";
+export * from "./check-token.js";
+export * from "./refresh-token.js";
+export * from "./scope-token.js";
+export * from "./reset-token.js";
+export * from "./delete-token.js";
+export * from "./delete-authorization.js";
+export {
+ VERSION
+};
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/refresh-token.js b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/refresh-token.js
new file mode 100644
index 000000000..f5f4556b3
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/refresh-token.js
@@ -0,0 +1,36 @@
+import { request as defaultRequest } from "@octokit/request";
+import { oauthRequest } from "./utils.js";
+async function refreshToken(options) {
+ const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */
+ defaultRequest;
+ const response = await oauthRequest(
+ request,
+ "POST /login/oauth/access_token",
+ {
+ client_id: options.clientId,
+ client_secret: options.clientSecret,
+ grant_type: "refresh_token",
+ refresh_token: options.refreshToken
+ }
+ );
+ const apiTimeInMs = new Date(response.headers.date).getTime();
+ const authentication = {
+ clientType: "github-app",
+ clientId: options.clientId,
+ clientSecret: options.clientSecret,
+ token: response.data.access_token,
+ refreshToken: response.data.refresh_token,
+ expiresAt: toTimestamp(apiTimeInMs, response.data.expires_in),
+ refreshTokenExpiresAt: toTimestamp(
+ apiTimeInMs,
+ response.data.refresh_token_expires_in
+ )
+ };
+ return { ...response, authentication };
+}
+function toTimestamp(apiTimeInMs, expirationInSeconds) {
+ return new Date(apiTimeInMs + expirationInSeconds * 1e3).toISOString();
+}
+export {
+ refreshToken
+};
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/reset-token.js b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/reset-token.js
new file mode 100644
index 000000000..ae85a1ba6
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/reset-token.js
@@ -0,0 +1,32 @@
+import { request as defaultRequest } from "@octokit/request";
+async function resetToken(options) {
+ const request = options.request || /* istanbul ignore next: we always pass a custom request in tests */
+ defaultRequest;
+ const auth = btoa(`${options.clientId}:${options.clientSecret}`);
+ const response = await request(
+ "PATCH /applications/{client_id}/token",
+ {
+ headers: {
+ authorization: `basic ${auth}`
+ },
+ client_id: options.clientId,
+ access_token: options.token
+ }
+ );
+ const authentication = {
+ clientType: options.clientType,
+ clientId: options.clientId,
+ clientSecret: options.clientSecret,
+ token: response.data.token,
+ scopes: response.data.scopes
+ };
+ if (response.data.expires_at)
+ authentication.expiresAt = response.data.expires_at;
+ if (options.clientType === "github-app") {
+ delete authentication.scopes;
+ }
+ return { ...response, authentication };
+}
+export {
+ resetToken
+};
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/scope-token.js b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/scope-token.js
new file mode 100644
index 000000000..82e0c73f8
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/scope-token.js
@@ -0,0 +1,37 @@
+import { request as defaultRequest } from "@octokit/request";
+async function scopeToken(options) {
+ const {
+ request: optionsRequest,
+ clientType,
+ clientId,
+ clientSecret,
+ token,
+ ...requestOptions
+ } = options;
+ const request = optionsRequest || /* istanbul ignore next: we always pass a custom request in tests */
+ defaultRequest;
+ const response = await request(
+ "POST /applications/{client_id}/token/scoped",
+ {
+ headers: {
+ authorization: `basic ${btoa(`${clientId}:${clientSecret}`)}`
+ },
+ client_id: clientId,
+ access_token: token,
+ ...requestOptions
+ }
+ );
+ const authentication = Object.assign(
+ {
+ clientType,
+ clientId,
+ clientSecret,
+ token: response.data.token
+ },
+ response.data.expires_at ? { expiresAt: response.data.expires_at } : {}
+ );
+ return { ...response, authentication };
+}
+export {
+ scopeToken
+};
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/utils.js b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/utils.js
new file mode 100644
index 000000000..6e48170cb
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/utils.js
@@ -0,0 +1,34 @@
+import { RequestError } from "@octokit/request-error";
+function requestToOAuthBaseUrl(request) {
+ const endpointDefaults = request.endpoint.DEFAULTS;
+ return /^https:\/\/(api\.)?github\.com$/.test(endpointDefaults.baseUrl) ? "https://github.com" : endpointDefaults.baseUrl.replace("/api/v3", "");
+}
+async function oauthRequest(request, route, parameters) {
+ const withOAuthParameters = {
+ baseUrl: requestToOAuthBaseUrl(request),
+ headers: {
+ accept: "application/json"
+ },
+ ...parameters
+ };
+ const response = await request(route, withOAuthParameters);
+ if ("error" in response.data) {
+ const error = new RequestError(
+ `${response.data.error_description} (${response.data.error}, ${response.data.error_uri})`,
+ 400,
+ {
+ request: request.endpoint.merge(
+ route,
+ withOAuthParameters
+ )
+ }
+ );
+ error.response = response;
+ throw error;
+ }
+ return response;
+}
+export {
+ oauthRequest,
+ requestToOAuthBaseUrl
+};
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/version.js b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/version.js
new file mode 100644
index 000000000..44da46326
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-src/version.js
@@ -0,0 +1,4 @@
+const VERSION = "5.1.2";
+export {
+ VERSION
+};
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/check-token.d.ts b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/check-token.d.ts
new file mode 100644
index 000000000..7c45d2b95
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/check-token.d.ts
@@ -0,0 +1,24 @@
+import type { RequestInterface, Endpoints } from "@octokit/types";
+import type { OAuthAppAuthentication, GitHubAppAuthenticationWithExpirationEnabled, GitHubAppAuthenticationWithExpirationDisabled } from "./types.js";
+export type CheckTokenOAuthAppOptions = {
+ clientType: "oauth-app";
+ clientId: string;
+ clientSecret: string;
+ token: string;
+ request?: RequestInterface;
+};
+export type CheckTokenGitHubAppOptions = {
+ clientType: "github-app";
+ clientId: string;
+ clientSecret: string;
+ token: string;
+ request?: RequestInterface;
+};
+export type CheckTokenOAuthAppResponse = Endpoints["POST /applications/{client_id}/token"]["response"] & {
+ authentication: OAuthAppAuthentication;
+};
+export type CheckTokenGitHubAppResponse = Endpoints["POST /applications/{client_id}/token"]["response"] & {
+ authentication: GitHubAppAuthenticationWithExpirationEnabled | GitHubAppAuthenticationWithExpirationDisabled;
+};
+export declare function checkToken(options: CheckTokenOAuthAppOptions): Promise;
+export declare function checkToken(options: CheckTokenGitHubAppOptions): Promise;
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/create-device-code.d.ts b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/create-device-code.d.ts
new file mode 100644
index 000000000..4953a54e1
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/create-device-code.d.ts
@@ -0,0 +1,20 @@
+import type { OctokitResponse, RequestInterface } from "@octokit/types";
+export type CreateDeviceCodeOAuthAppOptions = {
+ clientType: "oauth-app";
+ clientId: string;
+ scopes?: string[];
+ request?: RequestInterface;
+};
+export type CreateDeviceCodeGitHubAppOptions = {
+ clientType: "github-app";
+ clientId: string;
+ request?: RequestInterface;
+};
+export type CreateDeviceCodeDeviceTokenResponse = OctokitResponse<{
+ device_code: string;
+ user_code: string;
+ verification_uri: string;
+ expires_in: number;
+ interval: number;
+}>;
+export declare function createDeviceCode(options: CreateDeviceCodeOAuthAppOptions | CreateDeviceCodeGitHubAppOptions): Promise;
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/delete-authorization.d.ts b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/delete-authorization.d.ts
new file mode 100644
index 000000000..640c8698b
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/delete-authorization.d.ts
@@ -0,0 +1,18 @@
+import type { RequestInterface, Endpoints } from "@octokit/types";
+export type DeleteAuthorizationOAuthAppOptions = {
+ clientType: "oauth-app";
+ clientId: string;
+ clientSecret: string;
+ token: string;
+ request?: RequestInterface;
+};
+export type DeleteAuthorizationGitHubAppOptions = {
+ clientType: "github-app";
+ clientId: string;
+ clientSecret: string;
+ token: string;
+ request?: RequestInterface;
+};
+export type DeleteAuthorizationResponse = Endpoints["DELETE /applications/{client_id}/grant"]["response"];
+export declare function deleteAuthorization(options: DeleteAuthorizationOAuthAppOptions): Promise;
+export declare function deleteAuthorization(options: DeleteAuthorizationGitHubAppOptions): Promise;
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/delete-token.d.ts b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/delete-token.d.ts
new file mode 100644
index 000000000..9d49c22d7
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/delete-token.d.ts
@@ -0,0 +1,18 @@
+import type { RequestInterface, Endpoints } from "@octokit/types";
+export type DeleteTokenOAuthAppOptions = {
+ clientType: "oauth-app";
+ clientId: string;
+ clientSecret: string;
+ token: string;
+ request?: RequestInterface;
+};
+export type DeleteTokenGitHubAppOptions = {
+ clientType: "github-app";
+ clientId: string;
+ clientSecret: string;
+ token: string;
+ request?: RequestInterface;
+};
+export type DeleteTokenResponse = Endpoints["DELETE /applications/{client_id}/token"]["response"];
+export declare function deleteToken(options: DeleteTokenOAuthAppOptions): Promise;
+export declare function deleteToken(options: DeleteTokenGitHubAppOptions): Promise;
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/exchange-device-code.d.ts b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/exchange-device-code.d.ts
new file mode 100644
index 000000000..0ecd8e31a
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/exchange-device-code.d.ts
@@ -0,0 +1,57 @@
+import type { OctokitResponse, RequestInterface } from "@octokit/types";
+import type { OAuthAppAuthentication, GitHubAppAuthenticationWithExpirationEnabled, GitHubAppAuthenticationWithExpirationDisabled, GitHubAppAuthenticationWithRefreshToken, OAuthAppCreateTokenResponseData, GitHubAppCreateTokenResponseData, GitHubAppCreateTokenWithExpirationResponseData } from "./types.js";
+export type ExchangeDeviceCodeOAuthAppOptionsWithoutClientSecret = {
+ clientType: "oauth-app";
+ clientId: string;
+ code: string;
+ redirectUrl?: string;
+ state?: string;
+ request?: RequestInterface;
+ scopes?: string[];
+};
+export type ExchangeDeviceCodeOAuthAppOptions = ExchangeDeviceCodeOAuthAppOptionsWithoutClientSecret & {
+ clientSecret: string;
+};
+export type ExchangeDeviceCodeGitHubAppOptionsWithoutClientSecret = {
+ clientType: "github-app";
+ clientId: string;
+ code: string;
+ redirectUrl?: string;
+ state?: string;
+ request?: RequestInterface;
+};
+export type ExchangeDeviceCodeGitHubAppOptions = ExchangeDeviceCodeGitHubAppOptionsWithoutClientSecret & {
+ clientSecret: string;
+};
+type OAuthAppAuthenticationWithoutClientSecret = Omit;
+type GitHubAppAuthenticationWithoutClientSecret = Omit;
+type GitHubAppAuthenticationWithExpirationWithoutClientSecret = Omit;
+export type ExchangeDeviceCodeOAuthAppResponse = OctokitResponse & {
+ authentication: OAuthAppAuthentication;
+};
+export type ExchangeDeviceCodeOAuthAppResponseWithoutClientSecret = OctokitResponse & {
+ authentication: OAuthAppAuthenticationWithoutClientSecret;
+};
+export type ExchangeDeviceCodeGitHubAppResponse = OctokitResponse & {
+ authentication: GitHubAppAuthenticationWithExpirationEnabled | GitHubAppAuthenticationWithExpirationDisabled | GitHubAppAuthenticationWithRefreshToken;
+};
+export type ExchangeDeviceCodeGitHubAppResponseWithoutClientSecret = OctokitResponse & {
+ authentication: GitHubAppAuthenticationWithoutClientSecret | GitHubAppAuthenticationWithExpirationWithoutClientSecret;
+};
+/**
+ * Exchange the code from GitHub's OAuth Web flow for OAuth Apps.
+ */
+export declare function exchangeDeviceCode(options: ExchangeDeviceCodeOAuthAppOptions): Promise;
+/**
+ * Exchange the code from GitHub's OAuth Web flow for OAuth Apps without clientSecret
+ */
+export declare function exchangeDeviceCode(options: ExchangeDeviceCodeOAuthAppOptionsWithoutClientSecret): Promise;
+/**
+ * Exchange the code from GitHub's OAuth Web flow for GitHub Apps. `scopes` are not supported by GitHub Apps.
+ */
+export declare function exchangeDeviceCode(options: ExchangeDeviceCodeGitHubAppOptions): Promise;
+/**
+ * Exchange the code from GitHub's OAuth Web flow for GitHub Apps without using `clientSecret`. `scopes` are not supported by GitHub Apps.
+ */
+export declare function exchangeDeviceCode(options: ExchangeDeviceCodeGitHubAppOptionsWithoutClientSecret): Promise;
+export {};
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/exchange-web-flow-code.d.ts b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/exchange-web-flow-code.d.ts
new file mode 100644
index 000000000..efef9c2c5
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/exchange-web-flow-code.d.ts
@@ -0,0 +1,32 @@
+import type { OctokitResponse, RequestInterface } from "@octokit/types";
+import type { OAuthAppAuthentication, GitHubAppAuthenticationWithExpirationEnabled, GitHubAppAuthenticationWithExpirationDisabled, GitHubAppAuthenticationWithRefreshToken, OAuthAppCreateTokenResponseData, GitHubAppCreateTokenResponseData, GitHubAppCreateTokenWithExpirationResponseData } from "./types.js";
+export type ExchangeWebFlowCodeOAuthAppOptions = {
+ clientType: "oauth-app";
+ clientId: string;
+ clientSecret: string;
+ code: string;
+ redirectUrl?: string;
+ request?: RequestInterface;
+};
+export type ExchangeWebFlowCodeGitHubAppOptions = {
+ clientType: "github-app";
+ clientId: string;
+ clientSecret: string;
+ code: string;
+ redirectUrl?: string;
+ request?: RequestInterface;
+};
+export type ExchangeWebFlowCodeOAuthAppResponse = OctokitResponse & {
+ authentication: OAuthAppAuthentication;
+};
+export type ExchangeWebFlowCodeGitHubAppResponse = OctokitResponse & {
+ authentication: GitHubAppAuthenticationWithExpirationEnabled | GitHubAppAuthenticationWithExpirationDisabled | GitHubAppAuthenticationWithRefreshToken;
+};
+/**
+ * Exchange the code from GitHub's OAuth Web flow for OAuth Apps.
+ */
+export declare function exchangeWebFlowCode(options: ExchangeWebFlowCodeOAuthAppOptions): Promise;
+/**
+ * Exchange the code from GitHub's OAuth Web flow for GitHub Apps. Note that `scopes` are not supported by GitHub Apps.
+ */
+export declare function exchangeWebFlowCode(options: ExchangeWebFlowCodeGitHubAppOptions): Promise;
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/get-web-flow-authorization-url.d.ts b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/get-web-flow-authorization-url.d.ts
new file mode 100644
index 000000000..26d0f962a
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/get-web-flow-authorization-url.d.ts
@@ -0,0 +1,25 @@
+import type { OAuthAppResult, GitHubAppResult } from "@octokit/oauth-authorization-url";
+import type { RequestInterface } from "@octokit/types";
+export type GetWebFlowAuthorizationUrlOAuthAppOptions = {
+ clientType: "oauth-app";
+ clientId: string;
+ allowSignup?: boolean;
+ login?: string;
+ scopes?: string | string[];
+ redirectUrl?: string;
+ state?: string;
+ request?: RequestInterface;
+};
+export type GetWebFlowAuthorizationUrlGitHubAppOptions = {
+ clientType: "github-app";
+ clientId: string;
+ allowSignup?: boolean;
+ login?: string;
+ redirectUrl?: string;
+ state?: string;
+ request?: RequestInterface;
+};
+export type GetWebFlowAuthorizationUrlOAuthAppResult = OAuthAppResult;
+export type GetWebFlowAuthorizationUrlGitHubAppResult = GitHubAppResult;
+export declare function getWebFlowAuthorizationUrl(options: GetWebFlowAuthorizationUrlOAuthAppOptions): OAuthAppResult;
+export declare function getWebFlowAuthorizationUrl(options: GetWebFlowAuthorizationUrlGitHubAppOptions): GitHubAppResult;
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/index.d.ts b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/index.d.ts
new file mode 100644
index 000000000..2948ea7a5
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/index.d.ts
@@ -0,0 +1,12 @@
+export { VERSION } from "./version.js";
+export * from "./get-web-flow-authorization-url.js";
+export * from "./exchange-web-flow-code.js";
+export * from "./create-device-code.js";
+export * from "./exchange-device-code.js";
+export * from "./check-token.js";
+export * from "./refresh-token.js";
+export * from "./scope-token.js";
+export * from "./reset-token.js";
+export * from "./delete-token.js";
+export * from "./delete-authorization.js";
+export type { OAuthAppAuthentication, GitHubAppAuthenticationWithExpirationDisabled, GitHubAppAuthenticationWithExpirationEnabled, GitHubAppAuthenticationWithRefreshToken, GitHubAppAuthentication, GitHubAppAuthenticationWithExpiration, } from "./types.js";
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/refresh-token.d.ts b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/refresh-token.d.ts
new file mode 100644
index 000000000..a83088d47
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/refresh-token.d.ts
@@ -0,0 +1,13 @@
+import type { OctokitResponse, RequestInterface } from "@octokit/types";
+import type { GitHubAppAuthenticationWithRefreshToken, GitHubAppCreateTokenWithExpirationResponseData } from "./types.js";
+export type RefreshTokenOptions = {
+ clientType: "github-app";
+ clientId: string;
+ clientSecret: string;
+ refreshToken: string;
+ request?: RequestInterface;
+};
+export type RefreshTokenResponse = OctokitResponse & {
+ authentication: GitHubAppAuthenticationWithRefreshToken;
+};
+export declare function refreshToken(options: RefreshTokenOptions): Promise;
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/reset-token.d.ts b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/reset-token.d.ts
new file mode 100644
index 000000000..d19fff8f9
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/reset-token.d.ts
@@ -0,0 +1,24 @@
+import type { Endpoints, RequestInterface } from "@octokit/types";
+import type { OAuthAppAuthentication, GitHubAppAuthenticationWithExpirationEnabled, GitHubAppAuthenticationWithExpirationDisabled } from "./types.js";
+export type ResetTokenOAuthAppOptions = {
+ clientType: "oauth-app";
+ clientId: string;
+ clientSecret: string;
+ token: string;
+ request?: RequestInterface;
+};
+export type ResetTokenGitHubAppOptions = {
+ clientType: "github-app";
+ clientId: string;
+ clientSecret: string;
+ token: string;
+ request?: RequestInterface;
+};
+export type ResetTokenOAuthAppResponse = Endpoints["PATCH /applications/{client_id}/token"]["response"] & {
+ authentication: OAuthAppAuthentication;
+};
+export type ResetTokenGitHubAppResponse = Endpoints["PATCH /applications/{client_id}/token"]["response"] & {
+ authentication: GitHubAppAuthenticationWithExpirationEnabled | GitHubAppAuthenticationWithExpirationDisabled;
+};
+export declare function resetToken(options: ResetTokenOAuthAppOptions): Promise;
+export declare function resetToken(options: ResetTokenGitHubAppOptions): Promise;
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/scope-token.d.ts b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/scope-token.d.ts
new file mode 100644
index 000000000..ea0921c17
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/scope-token.d.ts
@@ -0,0 +1,29 @@
+import type { RequestInterface, Endpoints } from "@octokit/types";
+import type { GitHubAppAuthenticationWithExpirationEnabled, GitHubAppAuthenticationWithExpirationDisabled } from "./types.js";
+type CommonOptions = {
+ clientType: "github-app";
+ clientId: string;
+ clientSecret: string;
+ token: string;
+ permissions?: Endpoint["parameters"]["permissions"];
+ request?: RequestInterface;
+};
+type TargetOption = {
+ target: string;
+};
+type TargetIdOption = {
+ target_id: number;
+};
+type RepositoriesOption = {
+ repositories?: string[];
+};
+type RepositoryIdsOption = {
+ repository_ids?: number[];
+};
+type Endpoint = Endpoints["POST /applications/{client_id}/token/scoped"];
+export type ScopeTokenOptions = (CommonOptions & TargetOption & RepositoriesOption) | (CommonOptions & TargetIdOption & RepositoriesOption) | (CommonOptions & TargetOption & RepositoryIdsOption) | (CommonOptions & TargetIdOption & RepositoryIdsOption);
+export type ScopeTokenResponse = Endpoint["response"] & {
+ authentication: GitHubAppAuthenticationWithExpirationEnabled | GitHubAppAuthenticationWithExpirationDisabled;
+};
+export declare function scopeToken(options: ScopeTokenOptions): Promise;
+export {};
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/types.d.ts b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/types.d.ts
new file mode 100644
index 000000000..b46136451
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/types.d.ts
@@ -0,0 +1,58 @@
+export type OAuthAppAuthentication = {
+ clientType: "oauth-app";
+ clientId: string;
+ clientSecret: string;
+ token: string;
+ scopes: string[];
+};
+export type GitHubAppAuthenticationWithExpirationDisabled = {
+ clientType: "github-app";
+ clientId: string;
+ clientSecret: string;
+ token: string;
+};
+export type GitHubAppAuthenticationWithExpirationEnabled = GitHubAppAuthenticationWithExpirationDisabled & {
+ expiresAt: string;
+};
+export type GitHubAppAuthenticationWithRefreshToken = GitHubAppAuthenticationWithExpirationEnabled & {
+ refreshToken: string;
+ refreshTokenExpiresAt: string;
+};
+/**
+ * @deprecated Use `GitHubAppAuthenticationWithExpirationDisabled` or
+ * `GitHubAppAuthenticationWithExpirationEnabled` instead.
+ */
+export type GitHubAppAuthentication = {
+ clientType: "github-app";
+ clientId: string;
+ clientSecret: string;
+ token: string;
+};
+/**
+ * @deprecated Use `GitHubAppAuthenticationWithRefreshToken` instead.
+ */
+export type GitHubAppAuthenticationWithExpiration = {
+ clientType: "github-app";
+ clientId: string;
+ clientSecret: string;
+ token: string;
+ refreshToken: string;
+ expiresAt: string;
+ refreshTokenExpiresAt: string;
+};
+export type OAuthAppCreateTokenResponseData = {
+ access_token: string;
+ scope: string;
+ token_type: "bearer";
+};
+export type GitHubAppCreateTokenResponseData = {
+ access_token: string;
+ token_type: "bearer";
+};
+export type GitHubAppCreateTokenWithExpirationResponseData = {
+ access_token: string;
+ token_type: "bearer";
+ expires_in: number;
+ refresh_token: string;
+ refresh_token_expires_in: number;
+};
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/utils.d.ts b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/utils.d.ts
new file mode 100644
index 000000000..27ca7fc92
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/utils.d.ts
@@ -0,0 +1,3 @@
+import type { RequestInterface } from "@octokit/types";
+export declare function requestToOAuthBaseUrl(request: RequestInterface): string;
+export declare function oauthRequest(request: RequestInterface, route: string, parameters: Record): Promise>;
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/version.d.ts b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/version.d.ts
new file mode 100644
index 000000000..21c6dc770
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/dist-types/version.d.ts
@@ -0,0 +1 @@
+export declare const VERSION = "5.1.2";
diff --git a/.github/octokit/node_modules/@octokit/oauth-methods/package.json b/.github/octokit/node_modules/@octokit/oauth-methods/package.json
new file mode 100644
index 000000000..4abf4fac3
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/oauth-methods/package.json
@@ -0,0 +1,56 @@
+{
+ "name": "@octokit/oauth-methods",
+ "type": "module",
+ "version": "5.1.2",
+ "description": "Set of stateless request methods to create, check, reset, refresh, and delete user access tokens for OAuth and GitHub Apps",
+ "repository": "https://github.com/octokit/oauth-methods.js",
+ "keywords": [
+ "github",
+ "api",
+ "sdk",
+ "toolkit",
+ "oauth"
+ ],
+ "author": "Gregor Martynus (https://dev.to/gr2m)",
+ "license": "MIT",
+ "dependencies": {
+ "@octokit/oauth-authorization-url": "^7.0.0",
+ "@octokit/request": "^9.1.0",
+ "@octokit/request-error": "^6.1.0",
+ "@octokit/types": "^13.0.0"
+ },
+ "devDependencies": {
+ "@octokit/tsconfig": "^3.0.0",
+ "@types/jest": "^29.0.0",
+ "@types/node": "^20.0.0",
+ "esbuild": "^0.20.0",
+ "fetch-mock": "npm:@gr2m/fetch-mock@9.11.0-pull-request-644.1",
+ "glob": "^10.2.7",
+ "jest": "^29.0.0",
+ "prettier": "3.2.5",
+ "semantic-release": "^23.0.0",
+ "semantic-release-plugin-update-version-in-files": "^1.1.0",
+ "ts-jest": "^29.0.0",
+ "typescript": "^5.0.0"
+ },
+ "publishConfig": {
+ "access": "public",
+ "provenance": true
+ },
+ "engines": {
+ "node": ">= 18"
+ },
+ "files": [
+ "dist-*/**",
+ "bin/**"
+ ],
+ "types": "./dist-types/index.d.ts",
+ "exports": {
+ ".": {
+ "types": "./dist-types/index.d.ts",
+ "import": "./dist-bundle/index.js",
+ "default": "./dist-bundle/index.js"
+ }
+ },
+ "sideEffects": false
+}
diff --git a/.github/octokit/node_modules/@octokit/openapi-types/LICENSE b/.github/octokit/node_modules/@octokit/openapi-types/LICENSE
new file mode 100644
index 000000000..c61fbbe5a
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/openapi-types/LICENSE
@@ -0,0 +1,7 @@
+Copyright 2020 Gregor Martynus
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/.github/octokit/node_modules/@octokit/openapi-types/README.md b/.github/octokit/node_modules/@octokit/openapi-types/README.md
new file mode 100644
index 000000000..e61ed8d2d
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/openapi-types/README.md
@@ -0,0 +1,17 @@
+# @octokit/openapi-types
+
+> Generated TypeScript definitions based on GitHub's OpenAPI spec
+
+This package is continuously updated based on [GitHub's OpenAPI specification](https://github.com/github/rest-api-description/)
+
+## Usage
+
+```ts
+import { components } from "@octokit/openapi-types";
+
+type Repository = components["schemas"]["full-repository"];
+```
+
+## License
+
+[MIT](LICENSE)
diff --git a/.github/octokit/node_modules/@octokit/openapi-types/package.json b/.github/octokit/node_modules/@octokit/openapi-types/package.json
new file mode 100644
index 000000000..350a5825d
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/openapi-types/package.json
@@ -0,0 +1,21 @@
+{
+ "name": "@octokit/openapi-types",
+ "description": "Generated TypeScript definitions based on GitHub's OpenAPI spec for api.github.com",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/octokit/openapi-types.ts.git",
+ "directory": "packages/openapi-types"
+ },
+ "publishConfig": {
+ "access": "public",
+ "provenance": true
+ },
+ "version": "22.2.0",
+ "main": "",
+ "types": "types.d.ts",
+ "author": "Gregor Martynus (https://twitter.com/gr2m)",
+ "license": "MIT",
+ "octokit": {
+ "openapi-version": "16.5.0"
+ }
+}
diff --git a/.github/octokit/node_modules/@octokit/openapi-types/types.d.ts b/.github/octokit/node_modules/@octokit/openapi-types/types.d.ts
new file mode 100644
index 000000000..afa653c54
--- /dev/null
+++ b/.github/octokit/node_modules/@octokit/openapi-types/types.d.ts
@@ -0,0 +1,110231 @@
+/**
+ * This file was auto-generated by openapi-typescript.
+ * Do not make direct changes to the file.
+ */
+
+/** OneOf type helpers */
+type Without = { [P in Exclude]?: never };
+type XOR = T | U extends object
+ ? (Without & U) | (Without & T)
+ : T | U;
+type OneOf = T extends [infer Only]
+ ? Only
+ : T extends [infer A, infer B, ...infer Rest]
+ ? OneOf<[XOR, ...Rest]>
+ : never;
+
+export interface paths {
+ "/": {
+ /**
+ * GitHub API Root
+ * @description Get Hypermedia links to resources accessible in GitHub's REST API
+ */
+ get: operations["meta/root"];
+ };
+ "/advisories": {
+ /**
+ * List global security advisories
+ * @description Lists all global security advisories that match the specified parameters. If no other parameters are defined, the request will return only GitHub-reviewed advisories that are not malware.
+ *
+ * By default, all responses will exclude advisories for malware, because malware are not standard vulnerabilities. To list advisories for malware, you must include the `type` parameter in your request, with the value `malware`. For more information about the different types of security advisories, see "[About the GitHub Advisory database](https://docs.github.com/code-security/security-advisories/global-security-advisories/about-the-github-advisory-database#about-types-of-security-advisories)."
+ */
+ get: operations["security-advisories/list-global-advisories"];
+ };
+ "/advisories/{ghsa_id}": {
+ /**
+ * Get a global security advisory
+ * @description Gets a global security advisory using its GitHub Security Advisory (GHSA) identifier.
+ */
+ get: operations["security-advisories/get-global-advisory"];
+ };
+ "/app": {
+ /**
+ * Get the authenticated app
+ * @description Returns the GitHub App associated with the authentication credentials used. To see how many app installations are associated with this GitHub App, see the `installations_count` in the response. For more details about your app's installations, see the "[List installations for the authenticated app](https://docs.github.com/rest/apps/apps#list-installations-for-the-authenticated-app)" endpoint.
+ *
+ * You must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.
+ */
+ get: operations["apps/get-authenticated"];
+ };
+ "/app-manifests/{code}/conversions": {
+ /**
+ * Create a GitHub App from a manifest
+ * @description Use this endpoint to complete the handshake necessary when implementing the [GitHub App Manifest flow](https://docs.github.com/apps/building-github-apps/creating-github-apps-from-a-manifest/). When you create a GitHub App with the manifest flow, you receive a temporary `code` used to retrieve the GitHub App's `id`, `pem` (private key), and `webhook_secret`.
+ */
+ post: operations["apps/create-from-manifest"];
+ };
+ "/app/hook/config": {
+ /**
+ * Get a webhook configuration for an app
+ * @description Returns the webhook configuration for a GitHub App. For more information about configuring a webhook for your app, see "[Creating a GitHub App](/developers/apps/creating-a-github-app)."
+ *
+ * You must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.
+ */
+ get: operations["apps/get-webhook-config-for-app"];
+ /**
+ * Update a webhook configuration for an app
+ * @description Updates the webhook configuration for a GitHub App. For more information about configuring a webhook for your app, see "[Creating a GitHub App](/developers/apps/creating-a-github-app)."
+ *
+ * You must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.
+ */
+ patch: operations["apps/update-webhook-config-for-app"];
+ };
+ "/app/hook/deliveries": {
+ /**
+ * List deliveries for an app webhook
+ * @description Returns a list of webhook deliveries for the webhook configured for a GitHub App.
+ *
+ * You must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.
+ */
+ get: operations["apps/list-webhook-deliveries"];
+ };
+ "/app/hook/deliveries/{delivery_id}": {
+ /**
+ * Get a delivery for an app webhook
+ * @description Returns a delivery for the webhook configured for a GitHub App.
+ *
+ * You must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.
+ */
+ get: operations["apps/get-webhook-delivery"];
+ };
+ "/app/hook/deliveries/{delivery_id}/attempts": {
+ /**
+ * Redeliver a delivery for an app webhook
+ * @description Redeliver a delivery for the webhook configured for a GitHub App.
+ *
+ * You must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.
+ */
+ post: operations["apps/redeliver-webhook-delivery"];
+ };
+ "/app/installation-requests": {
+ /**
+ * List installation requests for the authenticated app
+ * @description Lists all the pending installation requests for the authenticated GitHub App.
+ */
+ get: operations["apps/list-installation-requests-for-authenticated-app"];
+ };
+ "/app/installations": {
+ /**
+ * List installations for the authenticated app
+ * @description You must use a [JWT](https://docs.github.com/enterprise-server@3.9/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.
+ *
+ * The permissions the installation has are included under the `permissions` key.
+ */
+ get: operations["apps/list-installations"];
+ };
+ "/app/installations/{installation_id}": {
+ /**
+ * Get an installation for the authenticated app
+ * @description Enables an authenticated GitHub App to find an installation's information using the installation id.
+ *
+ * You must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.
+ */
+ get: operations["apps/get-installation"];
+ /**
+ * Delete an installation for the authenticated app
+ * @description Uninstalls a GitHub App on a user, organization, or business account. If you prefer to temporarily suspend an app's access to your account's resources, then we recommend the "[Suspend an app installation](https://docs.github.com/rest/apps/apps#suspend-an-app-installation)" endpoint.
+ *
+ * You must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.
+ */
+ delete: operations["apps/delete-installation"];
+ };
+ "/app/installations/{installation_id}/access_tokens": {
+ /**
+ * Create an installation access token for an app
+ * @description Creates an installation access token that enables a GitHub App to make authenticated API requests for the app's installation on an organization or individual account. Installation tokens expire one hour from the time you create them. Using an expired token produces a status code of `401 - Unauthorized`, and requires creating a new installation token. By default the installation token has access to all repositories that the installation can access.
+ *
+ * Optionally, you can use the `repositories` or `repository_ids` body parameters to specify individual repositories that the installation access token can access. If you don't use `repositories` or `repository_ids` to grant access to specific repositories, the installation access token will have access to all repositories that the installation was granted access to. The installation access token cannot be granted access to repositories that the installation was not granted access to. Up to 500 repositories can be listed in this manner.
+ *
+ * Optionally, use the `permissions` body parameter to specify the permissions that the installation access token should have. If `permissions` is not specified, the installation access token will have all of the permissions that were granted to the app. The installation access token cannot be granted permissions that the app was not granted.
+ *
+ * When using the repository or permission parameters to reduce the access of the token, the complexity of the token is increased due to both the number of permissions in the request and the number of repositories the token will have access to. If the complexity is too large, the token will fail to be issued. If this occurs, the error message will indicate the maximum number of repositories that should be requested. For the average application requesting 8 permissions, this limit is around 5000 repositories. With fewer permissions requested, more repositories are supported.
+ *
+ * You must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.
+ */
+ post: operations["apps/create-installation-access-token"];
+ };
+ "/app/installations/{installation_id}/suspended": {
+ /**
+ * Suspend an app installation
+ * @description Suspends a GitHub App on a user, organization, or business account, which blocks the app from accessing the account's resources. When a GitHub App is suspended, the app's access to the GitHub API or webhook events is blocked for that account.
+ *
+ * You must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.
+ */
+ put: operations["apps/suspend-installation"];
+ /**
+ * Unsuspend an app installation
+ * @description Removes a GitHub App installation suspension.
+ *
+ * You must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.
+ */
+ delete: operations["apps/unsuspend-installation"];
+ };
+ "/applications/{client_id}/grant": {
+ /**
+ * Delete an app authorization
+ * @description OAuth and GitHub application owners can revoke a grant for their application and a specific user. You must use [Basic Authentication](https://docs.github.com/rest/overview/other-authentication-methods#basic-authentication) when accessing this endpoint, using the OAuth application's `client_id` and `client_secret` as the username and password. You must also provide a valid OAuth `access_token` as an input parameter and the grant for the token's owner will be deleted.
+ * Deleting an application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on [the application authorizations settings screen within GitHub](https://github.com/settings/applications#authorized).
+ */
+ delete: operations["apps/delete-authorization"];
+ };
+ "/applications/{client_id}/token": {
+ /**
+ * Check a token
+ * @description OAuth applications and GitHub applications with OAuth authorizations can use this API method for checking OAuth token validity without exceeding the normal rate limits for failed login attempts. Authentication works differently with this particular endpoint. You must use [Basic Authentication](https://docs.github.com/rest/overview/other-authentication-methods#basic-authentication) to use this endpoint, where the username is the application `client_id` and the password is its `client_secret`. Invalid tokens will return `404 NOT FOUND`.
+ */
+ post: operations["apps/check-token"];
+ /**
+ * Delete an app token
+ * @description OAuth or GitHub application owners can revoke a single token for an OAuth application or a GitHub application with an OAuth authorization. You must use [Basic Authentication](https://docs.github.com/rest/overview/other-authentication-methods#basic-authentication) when accessing this endpoint, using the application's `client_id` and `client_secret` as the username and password.
+ */
+ delete: operations["apps/delete-token"];
+ /**
+ * Reset a token
+ * @description OAuth applications and GitHub applications with OAuth authorizations can use this API method to reset a valid OAuth token without end-user involvement. Applications must save the "token" property in the response because changes take effect immediately. You must use [Basic Authentication](https://docs.github.com/rest/overview/other-authentication-methods#basic-authentication) when accessing this endpoint, using the application's `client_id` and `client_secret` as the username and password. Invalid tokens will return `404 NOT FOUND`.
+ */
+ patch: operations["apps/reset-token"];
+ };
+ "/applications/{client_id}/token/scoped": {
+ /**
+ * Create a scoped access token
+ * @description Use a non-scoped user access token to create a repository-scoped and/or permission-scoped user access token. You can specify
+ * which repositories the token can access and which permissions are granted to the
+ * token.
+ *
+ * Invalid tokens will return `404 NOT FOUND`.
+ *
+ * You must use [Basic Authentication](https://docs.github.com/rest/overview/other-authentication-methods#basic-authentication)
+ * when accessing this endpoint, using the `client_id` and `client_secret` of the GitHub App
+ * as the username and password.
+ */
+ post: operations["apps/scope-token"];
+ };
+ "/apps/{app_slug}": {
+ /**
+ * Get an app
+ * @description **Note**: The `:app_slug` is just the URL-friendly name of your GitHub App. You can find this on the settings page for your GitHub App (e.g., `https://github.com/settings/apps/:app_slug`).
+ */
+ get: operations["apps/get-by-slug"];
+ };
+ "/assignments/{assignment_id}": {
+ /**
+ * Get an assignment
+ * @description Gets a GitHub Classroom assignment. Assignment will only be returned if the current user is an administrator of the GitHub Classroom for the assignment.
+ */
+ get: operations["classroom/get-an-assignment"];
+ };
+ "/assignments/{assignment_id}/accepted_assignments": {
+ /**
+ * List accepted assignments for an assignment
+ * @description Lists any assignment repositories that have been created by students accepting a GitHub Classroom assignment. Accepted assignments will only be returned if the current user is an administrator of the GitHub Classroom for the assignment.
+ */
+ get: operations["classroom/list-accepted-assigments-for-an-assignment"];
+ };
+ "/assignments/{assignment_id}/grades": {
+ /**
+ * Get assignment grades
+ * @description Gets grades for a GitHub Classroom assignment. Grades will only be returned if the current user is an administrator of the GitHub Classroom for the assignment.
+ */
+ get: operations["classroom/get-assignment-grades"];
+ };
+ "/classrooms": {
+ /**
+ * List classrooms
+ * @description Lists GitHub Classroom classrooms for the current user. Classrooms will only be returned if the current user is an administrator of one or more GitHub Classrooms.
+ */
+ get: operations["classroom/list-classrooms"];
+ };
+ "/classrooms/{classroom_id}": {
+ /**
+ * Get a classroom
+ * @description Gets a GitHub Classroom classroom for the current user. Classroom will only be returned if the current user is an administrator of the GitHub Classroom.
+ */
+ get: operations["classroom/get-a-classroom"];
+ };
+ "/classrooms/{classroom_id}/assignments": {
+ /**
+ * List assignments for a classroom
+ * @description Lists GitHub Classroom assignments for a classroom. Assignments will only be returned if the current user is an administrator of the GitHub Classroom.
+ */
+ get: operations["classroom/list-assignments-for-a-classroom"];
+ };
+ "/codes_of_conduct": {
+ /**
+ * Get all codes of conduct
+ * @description Returns array of all GitHub's codes of conduct.
+ */
+ get: operations["codes-of-conduct/get-all-codes-of-conduct"];
+ };
+ "/codes_of_conduct/{key}": {
+ /**
+ * Get a code of conduct
+ * @description Returns information about the specified GitHub code of conduct.
+ */
+ get: operations["codes-of-conduct/get-conduct-code"];
+ };
+ "/emojis": {
+ /**
+ * Get emojis
+ * @description Lists all the emojis available to use on GitHub.
+ */
+ get: operations["emojis/get"];
+ };
+ "/enterprises/{enterprise}/copilot/usage": {
+ /**
+ * Get a summary of Copilot usage for enterprise members
+ * @description **Note**: This endpoint is in beta and is subject to change.
+ *
+ * You can use this endpoint to see a daily breakdown of aggregated usage metrics for Copilot completions and Copilot Chat in the IDE
+ * for all users across organizations with access to Copilot within your enterprise, with a further breakdown of suggestions, acceptances,
+ * and number of active users by editor and language for each day. See the response schema tab for detailed metrics definitions.
+ *
+ * The response contains metrics for the prior 28 days. Usage metrics are processed once per day for the previous day,
+ * and the response will only include data up until yesterday. In order for an end user to be counted towards these metrics,
+ * they must have telemetry enabled in their IDE.
+ *
+ * Only the owners and billing managers of enterprises with a Copilot Business or Enterprise subscription can view Copilot usage
+ * metrics for the enterprise.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `copilot`, `manage_billing:copilot`, `admin:enterprise`, or `manage_billing:enterprise` scope to use this endpoint.
+ */
+ get: operations["copilot/usage-metrics-for-enterprise"];
+ };
+ "/enterprises/{enterprise}/dependabot/alerts": {
+ /**
+ * List Dependabot alerts for an enterprise
+ * @description Lists Dependabot alerts for repositories that are owned by the specified enterprise.
+ *
+ * The authenticated user must be a member of the enterprise to use this endpoint.
+ *
+ * Alerts are only returned for organizations in the enterprise for which you are an organization owner or a security manager. For more information about security managers, see "[Managing security managers in your organization](https://docs.github.com/organizations/managing-peoples-access-to-your-organization-with-roles/managing-security-managers-in-your-organization)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint.
+ */
+ get: operations["dependabot/list-alerts-for-enterprise"];
+ };
+ "/enterprises/{enterprise}/secret-scanning/alerts": {
+ /**
+ * List secret scanning alerts for an enterprise
+ * @description Lists secret scanning alerts for eligible repositories in an enterprise, from newest to oldest.
+ *
+ * Alerts are only returned for organizations in the enterprise for which the authenticated user is an organization owner or a [security manager](https://docs.github.com/organizations/managing-peoples-access-to-your-organization-with-roles/managing-security-managers-in-your-organization).
+ *
+ * The authenticated user must be a member of the enterprise in order to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope or `security_events` scope to use this endpoint.
+ */
+ get: operations["secret-scanning/list-alerts-for-enterprise"];
+ };
+ "/events": {
+ /**
+ * List public events
+ * @description We delay the public events feed by five minutes, which means the most recent event returned by the public events API actually occurred at least five minutes ago.
+ */
+ get: operations["activity/list-public-events"];
+ };
+ "/feeds": {
+ /**
+ * Get feeds
+ * @description Lists the feeds available to the authenticated user. The response provides a URL for each feed. You can then get a specific feed by sending a request to one of the feed URLs.
+ *
+ * * **Timeline**: The GitHub global public timeline
+ * * **User**: The public timeline for any user, using `uri_template`. For more information, see "[Hypermedia](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."
+ * * **Current user public**: The public timeline for the authenticated user
+ * * **Current user**: The private timeline for the authenticated user
+ * * **Current user actor**: The private timeline for activity created by the authenticated user
+ * * **Current user organizations**: The private timeline for the organizations the authenticated user is a member of.
+ * * **Security advisories**: A collection of public announcements that provide information about security-related vulnerabilities in software on GitHub.
+ *
+ * By default, timeline resources are returned in JSON. You can specify the `application/atom+xml` type in the `Accept` header to return timeline resources in Atom format. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * **Note**: Private feeds are only returned when [authenticating via Basic Auth](https://docs.github.com/rest/overview/other-authentication-methods#basic-authentication) since current feed URIs use the older, non revocable auth tokens.
+ */
+ get: operations["activity/get-feeds"];
+ };
+ "/gists": {
+ /**
+ * List gists for the authenticated user
+ * @description Lists the authenticated user's gists or if called anonymously, this endpoint returns all public gists:
+ */
+ get: operations["gists/list"];
+ /**
+ * Create a gist
+ * @description Allows you to add a new gist with one or more files.
+ *
+ * **Note:** Don't name your files "gistfile" with a numerical suffix. This is the format of the automatic naming scheme that Gist uses internally.
+ */
+ post: operations["gists/create"];
+ };
+ "/gists/public": {
+ /**
+ * List public gists
+ * @description List public gists sorted by most recently updated to least recently updated.
+ *
+ * Note: With [pagination](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api), you can fetch up to 3000 gists. For example, you can fetch 100 pages with 30 gists per page or 30 pages with 100 gists per page.
+ */
+ get: operations["gists/list-public"];
+ };
+ "/gists/starred": {
+ /**
+ * List starred gists
+ * @description List the authenticated user's starred gists:
+ */
+ get: operations["gists/list-starred"];
+ };
+ "/gists/{gist_id}": {
+ /**
+ * Get a gist
+ * @description Gets a specified gist.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.base64+json`**: Returns the base64-encoded contents. This can be useful if your gist contains any invalid UTF-8 sequences.
+ */
+ get: operations["gists/get"];
+ /** Delete a gist */
+ delete: operations["gists/delete"];
+ /**
+ * Update a gist
+ * @description Allows you to update a gist's description and to update, delete, or rename gist files. Files from the previous version of the gist that aren't explicitly changed during an edit are unchanged.
+ */
+ patch: operations["gists/update"];
+ };
+ "/gists/{gist_id}/comments": {
+ /**
+ * List gist comments
+ * @description Lists the comments on a gist.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.base64+json`**: Returns the base64-encoded contents. This can be useful if your gist contains any invalid UTF-8 sequences.
+ */
+ get: operations["gists/list-comments"];
+ /**
+ * Create a gist comment
+ * @description Creates a comment on a gist.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.base64+json`**: Returns the base64-encoded contents. This can be useful if your gist contains any invalid UTF-8 sequences.
+ */
+ post: operations["gists/create-comment"];
+ };
+ "/gists/{gist_id}/comments/{comment_id}": {
+ /**
+ * Get a gist comment
+ * @description Gets a comment on a gist.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.base64+json`**: Returns the base64-encoded contents. This can be useful if your gist contains any invalid UTF-8 sequences.
+ */
+ get: operations["gists/get-comment"];
+ /** Delete a gist comment */
+ delete: operations["gists/delete-comment"];
+ /**
+ * Update a gist comment
+ * @description Updates a comment on a gist.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.base64+json`**: Returns the base64-encoded contents. This can be useful if your gist contains any invalid UTF-8 sequences.
+ */
+ patch: operations["gists/update-comment"];
+ };
+ "/gists/{gist_id}/commits": {
+ /** List gist commits */
+ get: operations["gists/list-commits"];
+ };
+ "/gists/{gist_id}/forks": {
+ /** List gist forks */
+ get: operations["gists/list-forks"];
+ /** Fork a gist */
+ post: operations["gists/fork"];
+ };
+ "/gists/{gist_id}/star": {
+ /** Check if a gist is starred */
+ get: operations["gists/check-is-starred"];
+ /**
+ * Star a gist
+ * @description Note that you'll need to set `Content-Length` to zero when calling out to this endpoint. For more information, see "[HTTP method](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#http-method)."
+ */
+ put: operations["gists/star"];
+ /** Unstar a gist */
+ delete: operations["gists/unstar"];
+ };
+ "/gists/{gist_id}/{sha}": {
+ /**
+ * Get a gist revision
+ * @description Gets a specified gist revision.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.base64+json`**: Returns the base64-encoded contents. This can be useful if your gist contains any invalid UTF-8 sequences.
+ */
+ get: operations["gists/get-revision"];
+ };
+ "/gitignore/templates": {
+ /**
+ * Get all gitignore templates
+ * @description List all templates available to pass as an option when [creating a repository](https://docs.github.com/rest/repos/repos#create-a-repository-for-the-authenticated-user).
+ */
+ get: operations["gitignore/get-all-templates"];
+ };
+ "/gitignore/templates/{name}": {
+ /**
+ * Get a gitignore template
+ * @description Get the content of a gitignore template.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw .gitignore contents.
+ */
+ get: operations["gitignore/get-template"];
+ };
+ "/installation/repositories": {
+ /**
+ * List repositories accessible to the app installation
+ * @description List repositories that an app installation can access.
+ */
+ get: operations["apps/list-repos-accessible-to-installation"];
+ };
+ "/installation/token": {
+ /**
+ * Revoke an installation access token
+ * @description Revokes the installation token you're using to authenticate as an installation and access this endpoint.
+ *
+ * Once an installation token is revoked, the token is invalidated and cannot be used. Other endpoints that require the revoked installation token must have a new installation token to work. You can create a new token using the "[Create an installation access token for an app](https://docs.github.com/rest/apps/apps#create-an-installation-access-token-for-an-app)" endpoint.
+ */
+ delete: operations["apps/revoke-installation-access-token"];
+ };
+ "/issues": {
+ /**
+ * List issues assigned to the authenticated user
+ * @description List issues assigned to the authenticated user across all visible repositories including owned repositories, member
+ * repositories, and organization repositories. You can use the `filter` query parameter to fetch issues that are not
+ * necessarily assigned to you.
+ *
+ * **Note**: GitHub's REST API considers every pull request an issue, but not every issue is a pull request. For this
+ * reason, "Issues" endpoints may return both issues and pull requests in the response. You can identify pull requests by
+ * the `pull_request` key. Be aware that the `id` of a pull request returned from "Issues" endpoints will be an _issue id_. To find out the pull
+ * request id, use the "[List pull requests](https://docs.github.com/rest/pulls/pulls#list-pull-requests)" endpoint.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ get: operations["issues/list"];
+ };
+ "/licenses": {
+ /**
+ * Get all commonly used licenses
+ * @description Lists the most commonly used licenses on GitHub. For more information, see "[Licensing a repository ](https://docs.github.com/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository)."
+ */
+ get: operations["licenses/get-all-commonly-used"];
+ };
+ "/licenses/{license}": {
+ /**
+ * Get a license
+ * @description Gets information about a specific license. For more information, see "[Licensing a repository ](https://docs.github.com/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository)."
+ */
+ get: operations["licenses/get"];
+ };
+ "/markdown": {
+ /** Render a Markdown document */
+ post: operations["markdown/render"];
+ };
+ "/markdown/raw": {
+ /**
+ * Render a Markdown document in raw mode
+ * @description You must send Markdown as plain text (using a `Content-Type` header of `text/plain` or `text/x-markdown`) to this endpoint, rather than using JSON format. In raw mode, [GitHub Flavored Markdown](https://github.github.com/gfm/) is not supported and Markdown will be rendered in plain format like a README.md file. Markdown content must be 400 KB or less.
+ */
+ post: operations["markdown/render-raw"];
+ };
+ "/marketplace_listing/accounts/{account_id}": {
+ /**
+ * Get a subscription plan for an account
+ * @description Shows whether the user or organization account actively subscribes to a plan listed by the authenticated GitHub App. When someone submits a plan change that won't be processed until the end of their billing cycle, you will also see the upcoming pending change.
+ *
+ * GitHub Apps must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint. OAuth apps must use [basic authentication](https://docs.github.com/rest/overview/other-authentication-methods#basic-authentication) with their client ID and client secret to access this endpoint.
+ */
+ get: operations["apps/get-subscription-plan-for-account"];
+ };
+ "/marketplace_listing/plans": {
+ /**
+ * List plans
+ * @description Lists all plans that are part of your GitHub Marketplace listing.
+ *
+ * GitHub Apps must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint. OAuth apps must use [basic authentication](https://docs.github.com/rest/overview/other-authentication-methods#basic-authentication) with their client ID and client secret to access this endpoint.
+ */
+ get: operations["apps/list-plans"];
+ };
+ "/marketplace_listing/plans/{plan_id}/accounts": {
+ /**
+ * List accounts for a plan
+ * @description Returns user and organization accounts associated with the specified plan, including free plans. For per-seat pricing, you see the list of accounts that have purchased the plan, including the number of seats purchased. When someone submits a plan change that won't be processed until the end of their billing cycle, you will also see the upcoming pending change.
+ *
+ * GitHub Apps must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint. OAuth apps must use [basic authentication](https://docs.github.com/rest/overview/other-authentication-methods#basic-authentication) with their client ID and client secret to access this endpoint.
+ */
+ get: operations["apps/list-accounts-for-plan"];
+ };
+ "/marketplace_listing/stubbed/accounts/{account_id}": {
+ /**
+ * Get a subscription plan for an account (stubbed)
+ * @description Shows whether the user or organization account actively subscribes to a plan listed by the authenticated GitHub App. When someone submits a plan change that won't be processed until the end of their billing cycle, you will also see the upcoming pending change.
+ *
+ * GitHub Apps must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint. OAuth apps must use [basic authentication](https://docs.github.com/rest/overview/other-authentication-methods#basic-authentication) with their client ID and client secret to access this endpoint.
+ */
+ get: operations["apps/get-subscription-plan-for-account-stubbed"];
+ };
+ "/marketplace_listing/stubbed/plans": {
+ /**
+ * List plans (stubbed)
+ * @description Lists all plans that are part of your GitHub Marketplace listing.
+ *
+ * GitHub Apps must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint. OAuth apps must use [basic authentication](https://docs.github.com/rest/overview/other-authentication-methods#basic-authentication) with their client ID and client secret to access this endpoint.
+ */
+ get: operations["apps/list-plans-stubbed"];
+ };
+ "/marketplace_listing/stubbed/plans/{plan_id}/accounts": {
+ /**
+ * List accounts for a plan (stubbed)
+ * @description Returns repository and organization accounts associated with the specified plan, including free plans. For per-seat pricing, you see the list of accounts that have purchased the plan, including the number of seats purchased. When someone submits a plan change that won't be processed until the end of their billing cycle, you will also see the upcoming pending change.
+ *
+ * GitHub Apps must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint. OAuth apps must use [basic authentication](https://docs.github.com/rest/overview/other-authentication-methods#basic-authentication) with their client ID and client secret to access this endpoint.
+ */
+ get: operations["apps/list-accounts-for-plan-stubbed"];
+ };
+ "/meta": {
+ /**
+ * Get GitHub meta information
+ * @description Returns meta information about GitHub, including a list of GitHub's IP addresses. For more information, see "[About GitHub's IP addresses](https://docs.github.com/articles/about-github-s-ip-addresses/)."
+ *
+ * The API's response also includes a list of GitHub's domain names.
+ *
+ * The values shown in the documentation's response are example values. You must always query the API directly to get the latest values.
+ *
+ * **Note:** This endpoint returns both IPv4 and IPv6 addresses. However, not all features support IPv6. You should refer to the specific documentation for each feature to determine if IPv6 is supported.
+ */
+ get: operations["meta/get"];
+ };
+ "/networks/{owner}/{repo}/events": {
+ /** List public events for a network of repositories */
+ get: operations["activity/list-public-events-for-repo-network"];
+ };
+ "/notifications": {
+ /**
+ * List notifications for the authenticated user
+ * @description List all notifications for the current user, sorted by most recently updated.
+ */
+ get: operations["activity/list-notifications-for-authenticated-user"];
+ /**
+ * Mark notifications as read
+ * @description Marks all notifications as "read" for the current user. If the number of notifications is too large to complete in one request, you will receive a `202 Accepted` status and GitHub will run an asynchronous process to mark notifications as "read." To check whether any "unread" notifications remain, you can use the [List notifications for the authenticated user](https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user) endpoint and pass the query parameter `all=false`.
+ */
+ put: operations["activity/mark-notifications-as-read"];
+ };
+ "/notifications/threads/{thread_id}": {
+ /**
+ * Get a thread
+ * @description Gets information about a notification thread.
+ */
+ get: operations["activity/get-thread"];
+ /**
+ * Mark a thread as done
+ * @description Marks a thread as "done." Marking a thread as "done" is equivalent to marking a notification in your notification inbox on GitHub as done: https://github.com/notifications.
+ */
+ delete: operations["activity/mark-thread-as-done"];
+ /**
+ * Mark a thread as read
+ * @description Marks a thread as "read." Marking a thread as "read" is equivalent to clicking a notification in your notification inbox on GitHub: https://github.com/notifications.
+ */
+ patch: operations["activity/mark-thread-as-read"];
+ };
+ "/notifications/threads/{thread_id}/subscription": {
+ /**
+ * Get a thread subscription for the authenticated user
+ * @description This checks to see if the current user is subscribed to a thread. You can also [get a repository subscription](https://docs.github.com/rest/activity/watching#get-a-repository-subscription).
+ *
+ * Note that subscriptions are only generated if a user is participating in a conversation--for example, they've replied to the thread, were **@mentioned**, or manually subscribe to a thread.
+ */
+ get: operations["activity/get-thread-subscription-for-authenticated-user"];
+ /**
+ * Set a thread subscription
+ * @description If you are watching a repository, you receive notifications for all threads by default. Use this endpoint to ignore future notifications for threads until you comment on the thread or get an **@mention**.
+ *
+ * You can also use this endpoint to subscribe to threads that you are currently not receiving notifications for or to subscribed to threads that you have previously ignored.
+ *
+ * Unsubscribing from a conversation in a repository that you are not watching is functionally equivalent to the [Delete a thread subscription](https://docs.github.com/rest/activity/notifications#delete-a-thread-subscription) endpoint.
+ */
+ put: operations["activity/set-thread-subscription"];
+ /**
+ * Delete a thread subscription
+ * @description Mutes all future notifications for a conversation until you comment on the thread or get an **@mention**. If you are watching the repository of the thread, you will still receive notifications. To ignore future notifications for a repository you are watching, use the [Set a thread subscription](https://docs.github.com/rest/activity/notifications#set-a-thread-subscription) endpoint and set `ignore` to `true`.
+ */
+ delete: operations["activity/delete-thread-subscription"];
+ };
+ "/octocat": {
+ /**
+ * Get Octocat
+ * @description Get the octocat as ASCII art
+ */
+ get: operations["meta/get-octocat"];
+ };
+ "/organizations": {
+ /**
+ * List organizations
+ * @description Lists all organizations, in the order that they were created.
+ *
+ * **Note:** Pagination is powered exclusively by the `since` parameter. Use the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers) to get the URL for the next page of organizations.
+ */
+ get: operations["orgs/list"];
+ };
+ "/orgs/{org}": {
+ /**
+ * Get an organization
+ * @description Gets information about an organization.
+ *
+ * When the value of `two_factor_requirement_enabled` is `true`, the organization requires all members, billing managers, and outside collaborators to enable [two-factor authentication](https://docs.github.com/articles/securing-your-account-with-two-factor-authentication-2fa/).
+ *
+ * To see the full details about an organization, the authenticated user must be an organization owner.
+ *
+ * The values returned by this endpoint are set by the "Update an organization" endpoint. If your organization set a default security configuration (beta), the following values retrieved from the "Update an organization" endpoint have been overwritten by that configuration:
+ *
+ * - advanced_security_enabled_for_new_repositories
+ * - dependabot_alerts_enabled_for_new_repositories
+ * - dependabot_security_updates_enabled_for_new_repositories
+ * - dependency_graph_enabled_for_new_repositories
+ * - secret_scanning_enabled_for_new_repositories
+ * - secret_scanning_push_protection_enabled_for_new_repositories
+ *
+ * For more information on security configurations, see "[Enabling security features at scale](https://docs.github.com/code-security/securing-your-organization/introduction-to-securing-your-organization-at-scale/about-enabling-security-features-at-scale)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to see the full details about an organization.
+ *
+ * To see information about an organization's GitHub plan, GitHub Apps need the `Organization plan` permission.
+ */
+ get: operations["orgs/get"];
+ /**
+ * Delete an organization
+ * @description Deletes an organization and all its repositories.
+ *
+ * The organization login will be unavailable for 90 days after deletion.
+ *
+ * Please review the Terms of Service regarding account deletion before using this endpoint:
+ *
+ * https://docs.github.com/site-policy/github-terms/github-terms-of-service
+ */
+ delete: operations["orgs/delete"];
+ /**
+ * Update an organization
+ * @description **Parameter Deprecation Notice:** GitHub will replace and discontinue `members_allowed_repository_creation_type` in favor of more granular permissions. The new input parameters are `members_can_create_public_repositories`, `members_can_create_private_repositories` for all organizations and `members_can_create_internal_repositories` for organizations associated with an enterprise account using GitHub Enterprise Cloud or GitHub Enterprise Server 2.20+. For more information, see the [blog post](https://developer.github.com/changes/2019-12-03-internal-visibility-changes).
+ *
+ * Updates the organization's profile and member privileges.
+ *
+ * With security configurations (beta), your organization can choose a default security configuration which will automatically apply a set of security enablement settings to new repositories in your organization based on their visibility. For targeted repositories, the following attributes will be overridden by the default security configuration:
+ *
+ * - advanced_security_enabled_for_new_repositories
+ * - dependabot_alerts_enabled_for_new_repositories
+ * - dependabot_security_updates_enabled_for_new_repositories
+ * - dependency_graph_enabled_for_new_repositories
+ * - secret_scanning_enabled_for_new_repositories
+ * - secret_scanning_push_protection_enabled_for_new_repositories
+ *
+ * For more information on setting a default security configuration, see "[Enabling security features at scale](https://docs.github.com/code-security/securing-your-organization/introduction-to-securing-your-organization-at-scale/about-enabling-security-features-at-scale)."
+ *
+ * The authenticated user must be an organization owner to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` or `repo` scope to use this endpoint.
+ */
+ patch: operations["orgs/update"];
+ };
+ "/orgs/{org}/actions/cache/usage": {
+ /**
+ * Get GitHub Actions cache usage for an organization
+ * @description Gets the total GitHub Actions cache usage for an organization.
+ * The data fetched using this API is refreshed approximately every 5 minutes, so values returned from this endpoint may take at least 5 minutes to get updated.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint.
+ */
+ get: operations["actions/get-actions-cache-usage-for-org"];
+ };
+ "/orgs/{org}/actions/cache/usage-by-repository": {
+ /**
+ * List repositories with GitHub Actions cache usage for an organization
+ * @description Lists repositories and their GitHub Actions cache usage for an organization.
+ * The data fetched using this API is refreshed approximately every 5 minutes, so values returned from this endpoint may take at least 5 minutes to get updated.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint.
+ */
+ get: operations["actions/get-actions-cache-usage-by-repo-for-org"];
+ };
+ "/orgs/{org}/actions/oidc/customization/sub": {
+ /**
+ * Get the customization template for an OIDC subject claim for an organization
+ * @description Gets the customization template for an OpenID Connect (OIDC) subject claim.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint.
+ */
+ get: operations["oidc/get-oidc-custom-sub-template-for-org"];
+ /**
+ * Set the customization template for an OIDC subject claim for an organization
+ * @description Creates or updates the customization template for an OpenID Connect (OIDC) subject claim.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:org` scope to use this endpoint.
+ */
+ put: operations["oidc/update-oidc-custom-sub-template-for-org"];
+ };
+ "/orgs/{org}/actions/permissions": {
+ /**
+ * Get GitHub Actions permissions for an organization
+ * @description Gets the GitHub Actions permissions policy for repositories and allowed actions and reusable workflows in an organization.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ get: operations["actions/get-github-actions-permissions-organization"];
+ /**
+ * Set GitHub Actions permissions for an organization
+ * @description Sets the GitHub Actions permissions policy for repositories and allowed actions and reusable workflows in an organization.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ put: operations["actions/set-github-actions-permissions-organization"];
+ };
+ "/orgs/{org}/actions/permissions/repositories": {
+ /**
+ * List selected repositories enabled for GitHub Actions in an organization
+ * @description Lists the selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for `enabled_repositories` must be configured to `selected`. For more information, see "[Set GitHub Actions permissions for an organization](#set-github-actions-permissions-for-an-organization)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ get: operations["actions/list-selected-repositories-enabled-github-actions-organization"];
+ /**
+ * Set selected repositories enabled for GitHub Actions in an organization
+ * @description Replaces the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for `enabled_repositories` must be configured to `selected`. For more information, see "[Set GitHub Actions permissions for an organization](#set-github-actions-permissions-for-an-organization)."
+ *
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ put: operations["actions/set-selected-repositories-enabled-github-actions-organization"];
+ };
+ "/orgs/{org}/actions/permissions/repositories/{repository_id}": {
+ /**
+ * Enable a selected repository for GitHub Actions in an organization
+ * @description Adds a repository to the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for `enabled_repositories` must be must be configured to `selected`. For more information, see "[Set GitHub Actions permissions for an organization](#set-github-actions-permissions-for-an-organization)."
+ *
+ * OAuth tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ put: operations["actions/enable-selected-repository-github-actions-organization"];
+ /**
+ * Disable a selected repository for GitHub Actions in an organization
+ * @description Removes a repository from the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for `enabled_repositories` must be configured to `selected`. For more information, see "[Set GitHub Actions permissions for an organization](#set-github-actions-permissions-for-an-organization)."
+ *
+ * OAuth tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ delete: operations["actions/disable-selected-repository-github-actions-organization"];
+ };
+ "/orgs/{org}/actions/permissions/selected-actions": {
+ /**
+ * Get allowed actions and reusable workflows for an organization
+ * @description Gets the selected actions and reusable workflows that are allowed in an organization. To use this endpoint, the organization permission policy for `allowed_actions` must be configured to `selected`. For more information, see "[Set GitHub Actions permissions for an organization](#set-github-actions-permissions-for-an-organization)."
+ *
+ * OAuth tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ get: operations["actions/get-allowed-actions-organization"];
+ /**
+ * Set allowed actions and reusable workflows for an organization
+ * @description Sets the actions and reusable workflows that are allowed in an organization. To use this endpoint, the organization permission policy for `allowed_actions` must be configured to `selected`. For more information, see "[Set GitHub Actions permissions for an organization](#set-github-actions-permissions-for-an-organization)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ put: operations["actions/set-allowed-actions-organization"];
+ };
+ "/orgs/{org}/actions/permissions/workflow": {
+ /**
+ * Get default workflow permissions for an organization
+ * @description Gets the default workflow permissions granted to the `GITHUB_TOKEN` when running workflows in an organization,
+ * as well as whether GitHub Actions can submit approving pull request reviews. For more information, see
+ * "[Setting the permissions of the GITHUB_TOKEN for your organization](https://docs.github.com/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization#setting-the-permissions-of-the-github_token-for-your-organization)."
+ *
+ * OAuth tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ get: operations["actions/get-github-actions-default-workflow-permissions-organization"];
+ /**
+ * Set default workflow permissions for an organization
+ * @description Sets the default workflow permissions granted to the `GITHUB_TOKEN` when running workflows in an organization, and sets if GitHub Actions
+ * can submit approving pull request reviews. For more information, see
+ * "[Setting the permissions of the GITHUB_TOKEN for your organization](https://docs.github.com/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization#setting-the-permissions-of-the-github_token-for-your-organization)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ put: operations["actions/set-github-actions-default-workflow-permissions-organization"];
+ };
+ "/orgs/{org}/actions/runners": {
+ /**
+ * List self-hosted runners for an organization
+ * @description Lists all self-hosted runners configured in an organization.
+ *
+ * Authenticated users must have admin access to the organization to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. If the repository is private, the `repo` scope is also required.
+ */
+ get: operations["actions/list-self-hosted-runners-for-org"];
+ };
+ "/orgs/{org}/actions/runners/downloads": {
+ /**
+ * List runner applications for an organization
+ * @description Lists binaries for the runner application that you can download and run.
+ *
+ * Authenticated users must have admin access to the organization to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. If the repository is private, the `repo` scope is also required.
+ */
+ get: operations["actions/list-runner-applications-for-org"];
+ };
+ "/orgs/{org}/actions/runners/generate-jitconfig": {
+ /**
+ * Create configuration for a just-in-time runner for an organization
+ * @description Generates a configuration that can be passed to the runner application at startup.
+ *
+ * The authenticated user must have admin access to the organization.
+ *
+ * OAuth tokens and personal access tokens (classic) need the`admin:org` scope to use this endpoint. If the repository is private, OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ post: operations["actions/generate-runner-jitconfig-for-org"];
+ };
+ "/orgs/{org}/actions/runners/registration-token": {
+ /**
+ * Create a registration token for an organization
+ * @description Returns a token that you can pass to the `config` script. The token expires after one hour.
+ *
+ * For example, you can replace `TOKEN` in the following example with the registration token provided by this endpoint to configure your self-hosted runner:
+ *
+ * ```
+ * ./config.sh --url https://github.com/octo-org --token TOKEN
+ * ```
+ *
+ * Authenticated users must have admin access to the organization to use this endpoint.
+ *
+ * OAuth tokens and personal access tokens (classic) need the`admin:org` scope to use this endpoint. If the repository is private, OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ post: operations["actions/create-registration-token-for-org"];
+ };
+ "/orgs/{org}/actions/runners/remove-token": {
+ /**
+ * Create a remove token for an organization
+ * @description Returns a token that you can pass to the `config` script to remove a self-hosted runner from an organization. The token expires after one hour.
+ *
+ * For example, you can replace `TOKEN` in the following example with the registration token provided by this endpoint to remove your self-hosted runner from an organization:
+ *
+ * ```
+ * ./config.sh remove --token TOKEN
+ * ```
+ *
+ * Authenticated users must have admin access to the organization to use this endpoint.
+ *
+ * OAuth tokens and personal access tokens (classic) need the`admin:org` scope to use this endpoint. If the repository is private, OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ post: operations["actions/create-remove-token-for-org"];
+ };
+ "/orgs/{org}/actions/runners/{runner_id}": {
+ /**
+ * Get a self-hosted runner for an organization
+ * @description Gets a specific self-hosted runner configured in an organization.
+ *
+ * Authenticated users must have admin access to the organization to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. If the repository is private, the `repo` scope is also required.
+ */
+ get: operations["actions/get-self-hosted-runner-for-org"];
+ /**
+ * Delete a self-hosted runner from an organization
+ * @description Forces the removal of a self-hosted runner from an organization. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
+ *
+ * Authenticated users must have admin access to the organization to use this endpoint.
+ *
+ * OAuth tokens and personal access tokens (classic) need the`admin:org` scope to use this endpoint. If the repository is private, OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ delete: operations["actions/delete-self-hosted-runner-from-org"];
+ };
+ "/orgs/{org}/actions/runners/{runner_id}/labels": {
+ /**
+ * List labels for a self-hosted runner for an organization
+ * @description Lists all labels for a self-hosted runner configured in an organization.
+ *
+ * Authenticated users must have admin access to the organization to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. If the repository is private, the `repo` scope is also required.
+ */
+ get: operations["actions/list-labels-for-self-hosted-runner-for-org"];
+ /**
+ * Set custom labels for a self-hosted runner for an organization
+ * @description Remove all previous custom labels and set the new custom labels for a specific
+ * self-hosted runner configured in an organization.
+ *
+ * Authenticated users must have admin access to the organization to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. If the repository is private, the `repo` scope is also required.
+ */
+ put: operations["actions/set-custom-labels-for-self-hosted-runner-for-org"];
+ /**
+ * Add custom labels to a self-hosted runner for an organization
+ * @description Adds custom labels to a self-hosted runner configured in an organization.
+ *
+ * Authenticated users must have admin access to the organization to use this endpoint.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ post: operations["actions/add-custom-labels-to-self-hosted-runner-for-org"];
+ /**
+ * Remove all custom labels from a self-hosted runner for an organization
+ * @description Remove all custom labels from a self-hosted runner configured in an
+ * organization. Returns the remaining read-only labels from the runner.
+ *
+ * Authenticated users must have admin access to the organization to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. If the repository is private, the `repo` scope is also required.
+ */
+ delete: operations["actions/remove-all-custom-labels-from-self-hosted-runner-for-org"];
+ };
+ "/orgs/{org}/actions/runners/{runner_id}/labels/{name}": {
+ /**
+ * Remove a custom label from a self-hosted runner for an organization
+ * @description Remove a custom label from a self-hosted runner configured
+ * in an organization. Returns the remaining labels from the runner.
+ *
+ * This endpoint returns a `404 Not Found` status if the custom label is not
+ * present on the runner.
+ *
+ * Authenticated users must have admin access to the organization to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. If the repository is private, the `repo` scope is also required.
+ */
+ delete: operations["actions/remove-custom-label-from-self-hosted-runner-for-org"];
+ };
+ "/orgs/{org}/actions/secrets": {
+ /**
+ * List organization secrets
+ * @description Lists all secrets available in an organization without revealing their
+ * encrypted values.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read secrets.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. If the repository is private, the `repo` scope is also required.
+ */
+ get: operations["actions/list-org-secrets"];
+ };
+ "/orgs/{org}/actions/secrets/public-key": {
+ /**
+ * Get an organization public key
+ * @description Gets your public key, which you need to encrypt secrets. You need to
+ * encrypt a secret before you can create or update secrets.
+ *
+ * The authenticated user must have collaborator access to a repository to create, update, or read secrets.
+ *
+ * OAuth tokens and personal access tokens (classic) need the`admin:org` scope to use this endpoint. If the repository is private, OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/get-org-public-key"];
+ };
+ "/orgs/{org}/actions/secrets/{secret_name}": {
+ /**
+ * Get an organization secret
+ * @description Gets a single organization secret without revealing its encrypted value.
+ *
+ * The authenticated user must have collaborator access to a repository to create, update, or read secrets
+ *
+ * OAuth tokens and personal access tokens (classic) need the`admin:org` scope to use this endpoint. If the repository is private, OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/get-org-secret"];
+ /**
+ * Create or update an organization secret
+ * @description Creates or updates an organization secret with an encrypted value. Encrypt your secret using
+ * [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access
+ * token with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to
+ * use this endpoint.
+ *
+ * #### Example encrypting a secret using Node.js
+ *
+ * Encrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.
+ *
+ * ```
+ * const sodium = require('tweetsodium');
+ *
+ * const key = "base64-encoded-public-key";
+ * const value = "plain-text-secret";
+ *
+ * // Convert the message and key to Uint8Array's (Buffer implements that interface)
+ * const messageBytes = Buffer.from(value);
+ * const keyBytes = Buffer.from(key, 'base64');
+ *
+ * // Encrypt using LibSodium.
+ * const encryptedBytes = sodium.seal(messageBytes, keyBytes);
+ *
+ * // Base64 the encrypted secret
+ * const encrypted = Buffer.from(encryptedBytes).toString('base64');
+ *
+ * console.log(encrypted);
+ * ```
+ *
+ *
+ * #### Example encrypting a secret using Python
+ *
+ * Encrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.
+ *
+ * ```
+ * from base64 import b64encode
+ * from nacl import encoding, public
+ *
+ * def encrypt(public_key: str, secret_value: str) -> str:
+ * """Encrypt a Unicode string using the public key."""
+ * public_key = public.PublicKey(public_key.encode("utf-8"), encoding.Base64Encoder())
+ * sealed_box = public.SealedBox(public_key)
+ * encrypted = sealed_box.encrypt(secret_value.encode("utf-8"))
+ * return b64encode(encrypted).decode("utf-8")
+ * ```
+ *
+ * #### Example encrypting a secret using C#
+ *
+ * Encrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.
+ *
+ * ```
+ * var secretValue = System.Text.Encoding.UTF8.GetBytes("mySecret");
+ * var publicKey = Convert.FromBase64String("2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=");
+ *
+ * var sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);
+ *
+ * Console.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));
+ * ```
+ *
+ * #### Example encrypting a secret using Ruby
+ *
+ * Encrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.
+ *
+ * ```ruby
+ * require "rbnacl"
+ * require "base64"
+ *
+ * key = Base64.decode64("+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=")
+ * public_key = RbNaCl::PublicKey.new(key)
+ *
+ * box = RbNaCl::Boxes::Sealed.from_public_key(public_key)
+ * encrypted_secret = box.encrypt("my_secret")
+ *
+ * # Print the base64 encoded secret
+ * puts Base64.strict_encode64(encrypted_secret)
+ * ```
+ */
+ put: operations["actions/create-or-update-org-secret"];
+ /**
+ * Delete an organization secret
+ * @description Deletes a secret in an organization using the secret name.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read secrets.
+ *
+ * OAuth tokens and personal access tokens (classic) need the`admin:org` scope to use this endpoint. If the repository is private, OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ delete: operations["actions/delete-org-secret"];
+ };
+ "/orgs/{org}/actions/secrets/{secret_name}/repositories": {
+ /**
+ * List selected repositories for an organization secret
+ * @description Lists all repositories that have been selected when the `visibility`
+ * for repository access to a secret is set to `selected`.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read secrets.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. If the repository is private, the `repo` scope is also required.
+ */
+ get: operations["actions/list-selected-repos-for-org-secret"];
+ /**
+ * Set selected repositories for an organization secret
+ * @description Replaces all repositories for an organization secret when the `visibility`
+ * for repository access is set to `selected`. The visibility is set when you [Create
+ * or update an organization secret](https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret).
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read secrets.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. If the repository is private, the `repo` scope is also required.
+ */
+ put: operations["actions/set-selected-repos-for-org-secret"];
+ };
+ "/orgs/{org}/actions/secrets/{secret_name}/repositories/{repository_id}": {
+ /**
+ * Add selected repository to an organization secret
+ * @description Adds a repository to an organization secret when the `visibility` for
+ * repository access is set to `selected`. For more information about setting the visibility, see [Create or
+ * update an organization secret](https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret).
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read secrets.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. If the repository is private, OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ put: operations["actions/add-selected-repo-to-org-secret"];
+ /**
+ * Remove selected repository from an organization secret
+ * @description Removes a repository from an organization secret when the `visibility`
+ * for repository access is set to `selected`. The visibility is set when you [Create
+ * or update an organization secret](https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret).
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read secrets.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. If the repository is private, the `repo` scope is also required.
+ */
+ delete: operations["actions/remove-selected-repo-from-org-secret"];
+ };
+ "/orgs/{org}/actions/variables": {
+ /**
+ * List organization variables
+ * @description Lists all organization variables.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read variables.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. If the repository is private, the `repo` scope is also required.
+ */
+ get: operations["actions/list-org-variables"];
+ /**
+ * Create an organization variable
+ * @description Creates an organization variable that you can reference in a GitHub Actions workflow.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read variables.
+ *
+ * OAuth tokens and personal access tokens (classic) need the`admin:org` scope to use this endpoint. If the repository is private, OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ post: operations["actions/create-org-variable"];
+ };
+ "/orgs/{org}/actions/variables/{name}": {
+ /**
+ * Get an organization variable
+ * @description Gets a specific variable in an organization.
+ *
+ * The authenticated user must have collaborator access to a repository to create, update, or read variables.
+ *
+ * OAuth tokens and personal access tokens (classic) need the`admin:org` scope to use this endpoint. If the repository is private, OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/get-org-variable"];
+ /**
+ * Delete an organization variable
+ * @description Deletes an organization variable using the variable name.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read variables.
+ *
+ * OAuth tokens and personal access tokens (classic) need the`admin:org` scope to use this endpoint. If the repository is private, OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ delete: operations["actions/delete-org-variable"];
+ /**
+ * Update an organization variable
+ * @description Updates an organization variable that you can reference in a GitHub Actions workflow.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read variables.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. If the repository is private, the `repo` scope is also required.
+ */
+ patch: operations["actions/update-org-variable"];
+ };
+ "/orgs/{org}/actions/variables/{name}/repositories": {
+ /**
+ * List selected repositories for an organization variable
+ * @description Lists all repositories that can access an organization variable
+ * that is available to selected repositories.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read variables.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. If the repository is private, the `repo` scope is also required.
+ */
+ get: operations["actions/list-selected-repos-for-org-variable"];
+ /**
+ * Set selected repositories for an organization variable
+ * @description Replaces all repositories for an organization variable that is available
+ * to selected repositories. Organization variables that are available to selected
+ * repositories have their `visibility` field set to `selected`.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read variables.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. If the repository is private, the `repo` scope is also required.
+ */
+ put: operations["actions/set-selected-repos-for-org-variable"];
+ };
+ "/orgs/{org}/actions/variables/{name}/repositories/{repository_id}": {
+ /**
+ * Add selected repository to an organization variable
+ * @description Adds a repository to an organization variable that is available to selected repositories.
+ * Organization variables that are available to selected repositories have their `visibility` field set to `selected`.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read secrets.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. If the repository is private, OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ put: operations["actions/add-selected-repo-to-org-variable"];
+ /**
+ * Remove selected repository from an organization variable
+ * @description Removes a repository from an organization variable that is
+ * available to selected repositories. Organization variables that are available to
+ * selected repositories have their `visibility` field set to `selected`.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read variables.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. If the repository is private, the `repo` scope is also required.
+ */
+ delete: operations["actions/remove-selected-repo-from-org-variable"];
+ };
+ "/orgs/{org}/blocks": {
+ /**
+ * List users blocked by an organization
+ * @description List the users blocked by an organization.
+ */
+ get: operations["orgs/list-blocked-users"];
+ };
+ "/orgs/{org}/blocks/{username}": {
+ /**
+ * Check if a user is blocked by an organization
+ * @description Returns a 204 if the given user is blocked by the given organization. Returns a 404 if the organization is not blocking the user, or if the user account has been identified as spam by GitHub.
+ */
+ get: operations["orgs/check-blocked-user"];
+ /**
+ * Block a user from an organization
+ * @description Blocks the given user on behalf of the specified organization and returns a 204. If the organization cannot block the given user a 422 is returned.
+ */
+ put: operations["orgs/block-user"];
+ /**
+ * Unblock a user from an organization
+ * @description Unblocks the given user on behalf of the specified organization.
+ */
+ delete: operations["orgs/unblock-user"];
+ };
+ "/orgs/{org}/code-scanning/alerts": {
+ /**
+ * List code scanning alerts for an organization
+ * @description Lists code scanning alerts for the default branch for all eligible repositories in an organization. Eligible repositories are repositories that are owned by organizations that you own or for which you are a security manager. For more information, see "[Managing security managers in your organization](https://docs.github.com/organizations/managing-peoples-access-to-your-organization-with-roles/managing-security-managers-in-your-organization)."
+ *
+ * The authenticated user must be an owner or security manager for the organization to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `security_events` or `repo`s cope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.
+ */
+ get: operations["code-scanning/list-alerts-for-org"];
+ };
+ "/orgs/{org}/codespaces": {
+ /**
+ * List codespaces for the organization
+ * @description Lists the codespaces associated to a specified organization.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ get: operations["codespaces/list-in-organization"];
+ };
+ "/orgs/{org}/codespaces/access": {
+ /**
+ * Manage access control for organization codespaces
+ * @deprecated
+ * @description Sets which users can access codespaces in an organization. This is synonymous with granting or revoking codespaces access permissions for users according to the visibility.
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ put: operations["codespaces/set-codespaces-access"];
+ };
+ "/orgs/{org}/codespaces/access/selected_users": {
+ /**
+ * Add users to Codespaces access for an organization
+ * @deprecated
+ * @description Codespaces for the specified users will be billed to the organization.
+ *
+ * To use this endpoint, the access settings for the organization must be set to `selected_members`.
+ * For information on how to change this setting, see "[Manage access control for organization codespaces](https://docs.github.com/rest/codespaces/organizations#manage-access-control-for-organization-codespaces)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ post: operations["codespaces/set-codespaces-access-users"];
+ /**
+ * Remove users from Codespaces access for an organization
+ * @deprecated
+ * @description Codespaces for the specified users will no longer be billed to the organization.
+ *
+ * To use this endpoint, the access settings for the organization must be set to `selected_members`.
+ * For information on how to change this setting, see "[Manage access control for organization codespaces](https://docs.github.com/rest/codespaces/organizations#manage-access-control-for-organization-codespaces)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ delete: operations["codespaces/delete-codespaces-access-users"];
+ };
+ "/orgs/{org}/codespaces/secrets": {
+ /**
+ * List organization secrets
+ * @description Lists all Codespaces development environment secrets available at the organization-level without revealing their encrypted
+ * values.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ get: operations["codespaces/list-org-secrets"];
+ };
+ "/orgs/{org}/codespaces/secrets/public-key": {
+ /**
+ * Get an organization public key
+ * @description Gets a public key for an organization, which is required in order to encrypt secrets. You need to encrypt the value of a secret before you can create or update secrets.
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ get: operations["codespaces/get-org-public-key"];
+ };
+ "/orgs/{org}/codespaces/secrets/{secret_name}": {
+ /**
+ * Get an organization secret
+ * @description Gets an organization development environment secret without revealing its encrypted value.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ get: operations["codespaces/get-org-secret"];
+ /**
+ * Create or update an organization secret
+ * @description Creates or updates an organization development environment secret with an encrypted value. Encrypt your secret using
+ * [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ put: operations["codespaces/create-or-update-org-secret"];
+ /**
+ * Delete an organization secret
+ * @description Deletes an organization development environment secret using the secret name.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ delete: operations["codespaces/delete-org-secret"];
+ };
+ "/orgs/{org}/codespaces/secrets/{secret_name}/repositories": {
+ /**
+ * List selected repositories for an organization secret
+ * @description Lists all repositories that have been selected when the `visibility`
+ * for repository access to a secret is set to `selected`.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ get: operations["codespaces/list-selected-repos-for-org-secret"];
+ /**
+ * Set selected repositories for an organization secret
+ * @description Replaces all repositories for an organization development environment secret when the `visibility`
+ * for repository access is set to `selected`. The visibility is set when you [Create
+ * or update an organization secret](https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret).
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ put: operations["codespaces/set-selected-repos-for-org-secret"];
+ };
+ "/orgs/{org}/codespaces/secrets/{secret_name}/repositories/{repository_id}": {
+ /**
+ * Add selected repository to an organization secret
+ * @description Adds a repository to an organization development environment secret when the `visibility` for repository access is set to `selected`. The visibility is set when you [Create or update an organization secret](https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret).
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ put: operations["codespaces/add-selected-repo-to-org-secret"];
+ /**
+ * Remove selected repository from an organization secret
+ * @description Removes a repository from an organization development environment secret when the `visibility`
+ * for repository access is set to `selected`. The visibility is set when you [Create
+ * or update an organization secret](https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret).
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ delete: operations["codespaces/remove-selected-repo-from-org-secret"];
+ };
+ "/orgs/{org}/copilot/billing": {
+ /**
+ * Get Copilot seat information and settings for an organization
+ * @description **Note**: This endpoint is in beta and is subject to change.
+ *
+ * Gets information about an organization's Copilot subscription, including seat breakdown
+ * and code matching policies. To configure these settings, go to your organization's settings on GitHub.com.
+ * For more information, see "[Managing policies for Copilot in your organization](https://docs.github.com/copilot/managing-copilot/managing-policies-for-copilot-business-in-your-organization)".
+ *
+ * Only organization owners can configure and view details about the organization's Copilot Business subscription.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `manage_billing:copilot` scope to use this endpoint.
+ */
+ get: operations["copilot/get-copilot-organization-details"];
+ };
+ "/orgs/{org}/copilot/billing/seats": {
+ /**
+ * List all Copilot seat assignments for an organization
+ * @description **Note**: This endpoint is in beta and is subject to change.
+ *
+ * Lists all Copilot seat assignments for an organization that are currently being billed (either active or pending cancellation at the start of the next billing cycle).
+ *
+ * Only organization owners can configure and view details about the organization's Copilot Business or Enterprise subscription.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `manage_billing:copilot` scope to use this endpoint.
+ */
+ get: operations["copilot/list-copilot-seats"];
+ };
+ "/orgs/{org}/copilot/billing/selected_teams": {
+ /**
+ * Add teams to the Copilot subscription for an organization
+ * @description **Note**: This endpoint is in beta and is subject to change.
+ *
+ * Purchases a GitHub Copilot seat for all users within each specified team.
+ * The organization will be billed accordingly. For more information about Copilot pricing, see "[Pricing for GitHub Copilot](https://docs.github.com/billing/managing-billing-for-github-copilot/about-billing-for-github-copilot#about-billing-for-github-copilot)".
+ *
+ * Only organization owners can configure GitHub Copilot in their organization.
+ *
+ * In order for an admin to use this endpoint, the organization must have a Copilot Business or Enterprise subscription and a configured suggestion matching policy.
+ * For more information about setting up a Copilot subscription, see "[Setting up a Copilot subscription for your organization](https://docs.github.com/billing/managing-billing-for-github-copilot/managing-your-github-copilot-subscription-for-your-organization-or-enterprise)".
+ * For more information about setting a suggestion matching policy, see "[Configuring suggestion matching policies for GitHub Copilot in your organization](https://docs.github.com/copilot/managing-copilot/managing-policies-for-github-copilot-in-your-organization#configuring-suggestion-matching-policies-for-github-copilot-in-your-organization)".
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `manage_billing:copilot` scope to use this endpoint.
+ */
+ post: operations["copilot/add-copilot-seats-for-teams"];
+ /**
+ * Remove teams from the Copilot subscription for an organization
+ * @description **Note**: This endpoint is in beta and is subject to change.
+ *
+ * Cancels the Copilot seat assignment for all members of each team specified.
+ * This will cause the members of the specified team(s) to lose access to GitHub Copilot at the end of the current billing cycle, and the organization will not be billed further for those users.
+ *
+ * For more information about Copilot pricing, see "[Pricing for GitHub Copilot](https://docs.github.com/billing/managing-billing-for-github-copilot/about-billing-for-github-copilot#about-billing-for-github-copilot)".
+ *
+ * For more information about disabling access to Copilot Business or Enterprise, see "[Revoking access to GitHub Copilot for specific users in your organization](https://docs.github.com/copilot/managing-copilot/managing-access-for-copilot-in-your-organization#revoking-access-to-github-copilot-for-specific-users-in-your-organization)".
+ *
+ * Only organization owners can configure GitHub Copilot in their organization.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `manage_billing:copilot` scope to use this endpoint.
+ */
+ delete: operations["copilot/cancel-copilot-seat-assignment-for-teams"];
+ };
+ "/orgs/{org}/copilot/billing/selected_users": {
+ /**
+ * Add users to the Copilot subscription for an organization
+ * @description **Note**: This endpoint is in beta and is subject to change.
+ *
+ * Purchases a GitHub Copilot seat for each user specified.
+ * The organization will be billed accordingly. For more information about Copilot pricing, see "[Pricing for GitHub Copilot](https://docs.github.com/billing/managing-billing-for-github-copilot/about-billing-for-github-copilot#about-billing-for-github-copilot)".
+ *
+ * Only organization owners can configure GitHub Copilot in their organization.
+ *
+ * In order for an admin to use this endpoint, the organization must have a Copilot Business or Enterprise subscription and a configured suggestion matching policy.
+ * For more information about setting up a Copilot subscription, see "[Setting up a Copilot subscription for your organization](https://docs.github.com/billing/managing-billing-for-github-copilot/managing-your-github-copilot-subscription-for-your-organization-or-enterprise)".
+ * For more information about setting a suggestion matching policy, see "[Configuring suggestion matching policies for GitHub Copilot in your organization](https://docs.github.com/copilot/managing-copilot/managing-policies-for-github-copilot-in-your-organization#configuring-suggestion-matching-policies-for-github-copilot-in-your-organization)".
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `manage_billing:copilot` scope to use this endpoint.
+ */
+ post: operations["copilot/add-copilot-seats-for-users"];
+ /**
+ * Remove users from the Copilot subscription for an organization
+ * @description **Note**: This endpoint is in beta and is subject to change.
+ *
+ * Cancels the Copilot seat assignment for each user specified.
+ * This will cause the specified users to lose access to GitHub Copilot at the end of the current billing cycle, and the organization will not be billed further for those users.
+ *
+ * For more information about Copilot pricing, see "[Pricing for GitHub Copilot](https://docs.github.com/billing/managing-billing-for-github-copilot/about-billing-for-github-copilot#about-billing-for-github-copilot)".
+ *
+ * For more information about disabling access to Copilot Business or Enterprise, see "[Revoking access to GitHub Copilot for specific users in your organization](https://docs.github.com/copilot/managing-copilot/managing-access-for-copilot-in-your-organization#revoking-access-to-github-copilot-for-specific-users-in-your-organization)".
+ *
+ * Only organization owners can configure GitHub Copilot in their organization.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `manage_billing:copilot` scope to use this endpoint.
+ */
+ delete: operations["copilot/cancel-copilot-seat-assignment-for-users"];
+ };
+ "/orgs/{org}/copilot/usage": {
+ /**
+ * Get a summary of Copilot usage for organization members
+ * @description **Note**: This endpoint is in beta and is subject to change.
+ *
+ * You can use this endpoint to see a daily breakdown of aggregated usage metrics for Copilot completions and Copilot Chat in the IDE
+ * across an organization, with a further breakdown of suggestions, acceptances, and number of active users by editor and language for each day.
+ * See the response schema tab for detailed metrics definitions.
+ *
+ * The response contains metrics for the prior 28 days. Usage metrics are processed once per day for the previous day,
+ * and the response will only include data up until yesterday. In order for an end user to be counted towards these metrics,
+ * they must have telemetry enabled in their IDE.
+ *
+ * Copilot Business or Copilot Enterprise organization owners, and owners and billing managers of their parent enterprises, can view
+ * Copilot usage metrics.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `copilot`, `manage_billing:copilot`, `admin:org`, `admin:enterprise`, or `manage_billing:enterprise` scope to use this endpoint.
+ */
+ get: operations["copilot/usage-metrics-for-org"];
+ };
+ "/orgs/{org}/dependabot/alerts": {
+ /**
+ * List Dependabot alerts for an organization
+ * @description Lists Dependabot alerts for an organization.
+ *
+ * The authenticated user must be an owner or security manager for the organization to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.
+ */
+ get: operations["dependabot/list-alerts-for-org"];
+ };
+ "/orgs/{org}/dependabot/secrets": {
+ /**
+ * List organization secrets
+ * @description Lists all secrets available in an organization without revealing their
+ * encrypted values.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ get: operations["dependabot/list-org-secrets"];
+ };
+ "/orgs/{org}/dependabot/secrets/public-key": {
+ /**
+ * Get an organization public key
+ * @description Gets your public key, which you need to encrypt secrets. You need to
+ * encrypt a secret before you can create or update secrets.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ get: operations["dependabot/get-org-public-key"];
+ };
+ "/orgs/{org}/dependabot/secrets/{secret_name}": {
+ /**
+ * Get an organization secret
+ * @description Gets a single organization secret without revealing its encrypted value.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ get: operations["dependabot/get-org-secret"];
+ /**
+ * Create or update an organization secret
+ * @description Creates or updates an organization secret with an encrypted value. Encrypt your secret using
+ * [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access
+ * token with the `admin:org` scope to use this endpoint. GitHub Apps must have the `dependabot_secrets` organization
+ * permission to use this endpoint.
+ *
+ * #### Example encrypting a secret using Node.js
+ *
+ * Encrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.
+ *
+ * ```
+ * const sodium = require('tweetsodium');
+ *
+ * const key = "base64-encoded-public-key";
+ * const value = "plain-text-secret";
+ *
+ * // Convert the message and key to Uint8Array's (Buffer implements that interface)
+ * const messageBytes = Buffer.from(value);
+ * const keyBytes = Buffer.from(key, 'base64');
+ *
+ * // Encrypt using LibSodium.
+ * const encryptedBytes = sodium.seal(messageBytes, keyBytes);
+ *
+ * // Base64 the encrypted secret
+ * const encrypted = Buffer.from(encryptedBytes).toString('base64');
+ *
+ * console.log(encrypted);
+ * ```
+ *
+ *
+ * #### Example encrypting a secret using Python
+ *
+ * Encrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.
+ *
+ * ```
+ * from base64 import b64encode
+ * from nacl import encoding, public
+ *
+ * def encrypt(public_key: str, secret_value: str) -> str:
+ * """Encrypt a Unicode string using the public key."""
+ * public_key = public.PublicKey(public_key.encode("utf-8"), encoding.Base64Encoder())
+ * sealed_box = public.SealedBox(public_key)
+ * encrypted = sealed_box.encrypt(secret_value.encode("utf-8"))
+ * return b64encode(encrypted).decode("utf-8")
+ * ```
+ *
+ * #### Example encrypting a secret using C#
+ *
+ * Encrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.
+ *
+ * ```
+ * var secretValue = System.Text.Encoding.UTF8.GetBytes("mySecret");
+ * var publicKey = Convert.FromBase64String("2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=");
+ *
+ * var sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);
+ *
+ * Console.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));
+ * ```
+ *
+ * #### Example encrypting a secret using Ruby
+ *
+ * Encrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.
+ *
+ * ```ruby
+ * require "rbnacl"
+ * require "base64"
+ *
+ * key = Base64.decode64("+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=")
+ * public_key = RbNaCl::PublicKey.new(key)
+ *
+ * box = RbNaCl::Boxes::Sealed.from_public_key(public_key)
+ * encrypted_secret = box.encrypt("my_secret")
+ *
+ * # Print the base64 encoded secret
+ * puts Base64.strict_encode64(encrypted_secret)
+ * ```
+ */
+ put: operations["dependabot/create-or-update-org-secret"];
+ /**
+ * Delete an organization secret
+ * @description Deletes a secret in an organization using the secret name.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ delete: operations["dependabot/delete-org-secret"];
+ };
+ "/orgs/{org}/dependabot/secrets/{secret_name}/repositories": {
+ /**
+ * List selected repositories for an organization secret
+ * @description Lists all repositories that have been selected when the `visibility`
+ * for repository access to a secret is set to `selected`.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ get: operations["dependabot/list-selected-repos-for-org-secret"];
+ /**
+ * Set selected repositories for an organization secret
+ * @description Replaces all repositories for an organization secret when the `visibility`
+ * for repository access is set to `selected`. The visibility is set when you [Create
+ * or update an organization secret](https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret).
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ put: operations["dependabot/set-selected-repos-for-org-secret"];
+ };
+ "/orgs/{org}/dependabot/secrets/{secret_name}/repositories/{repository_id}": {
+ /**
+ * Add selected repository to an organization secret
+ * @description Adds a repository to an organization secret when the `visibility` for
+ * repository access is set to `selected`. The visibility is set when you [Create or
+ * update an organization secret](https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret).
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ put: operations["dependabot/add-selected-repo-to-org-secret"];
+ /**
+ * Remove selected repository from an organization secret
+ * @description Removes a repository from an organization secret when the `visibility`
+ * for repository access is set to `selected`. The visibility is set when you [Create
+ * or update an organization secret](https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret).
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ delete: operations["dependabot/remove-selected-repo-from-org-secret"];
+ };
+ "/orgs/{org}/docker/conflicts": {
+ /**
+ * Get list of conflicting packages during Docker migration for organization
+ * @description Lists all packages that are in a specific organization, are readable by the requesting user, and that encountered a conflict during a Docker migration.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint.
+ */
+ get: operations["packages/list-docker-migration-conflicting-packages-for-organization"];
+ };
+ "/orgs/{org}/events": {
+ /** List public organization events */
+ get: operations["activity/list-public-org-events"];
+ };
+ "/orgs/{org}/failed_invitations": {
+ /**
+ * List failed organization invitations
+ * @description The return hash contains `failed_at` and `failed_reason` fields which represent the time at which the invitation failed and the reason for the failure.
+ */
+ get: operations["orgs/list-failed-invitations"];
+ };
+ "/orgs/{org}/hooks": {
+ /**
+ * List organization webhooks
+ * @description You must be an organization owner to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need `admin:org_hook` scope. OAuth apps cannot list, view, or edit
+ * webhooks that they did not create and users cannot list, view, or edit webhooks that were created by OAuth apps.
+ */
+ get: operations["orgs/list-webhooks"];
+ /**
+ * Create an organization webhook
+ * @description Create a hook that posts payloads in JSON format.
+ *
+ * You must be an organization owner to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need `admin:org_hook` scope. OAuth apps cannot list, view, or
+ * edit webhooks that they did not create and users cannot list, view, or edit webhooks that were created by OAuth apps.
+ */
+ post: operations["orgs/create-webhook"];
+ };
+ "/orgs/{org}/hooks/{hook_id}": {
+ /**
+ * Get an organization webhook
+ * @description Returns a webhook configured in an organization. To get only the webhook
+ * `config` properties, see "[Get a webhook configuration for an organization](/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization).
+ *
+ * You must be an organization owner to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need `admin:org_hook` scope. OAuth apps cannot list, view, or edit
+ * webhooks that they did not create and users cannot list, view, or edit webhooks that were created by OAuth apps.
+ */
+ get: operations["orgs/get-webhook"];
+ /**
+ * Delete an organization webhook
+ * @description You must be an organization owner to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need `admin:org_hook` scope. OAuth apps cannot list, view, or edit
+ * webhooks that they did not create and users cannot list, view, or edit webhooks that were created by OAuth apps.
+ */
+ delete: operations["orgs/delete-webhook"];
+ /**
+ * Update an organization webhook
+ * @description Updates a webhook configured in an organization. When you update a webhook,
+ * the `secret` will be overwritten. If you previously had a `secret` set, you must
+ * provide the same `secret` or set a new `secret` or the secret will be removed. If
+ * you are only updating individual webhook `config` properties, use "[Update a webhook
+ * configuration for an organization](/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization)".
+ *
+ * You must be an organization owner to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need `admin:org_hook` scope. OAuth apps cannot list, view, or edit
+ * webhooks that they did not create and users cannot list, view, or edit webhooks that were created by OAuth apps.
+ */
+ patch: operations["orgs/update-webhook"];
+ };
+ "/orgs/{org}/hooks/{hook_id}/config": {
+ /**
+ * Get a webhook configuration for an organization
+ * @description Returns the webhook configuration for an organization. To get more information about the webhook, including the `active` state and `events`, use "[Get an organization webhook ](/rest/orgs/webhooks#get-an-organization-webhook)."
+ *
+ * You must be an organization owner to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need `admin:org_hook` scope. OAuth apps cannot list, view, or edit
+ * webhooks that they did not create and users cannot list, view, or edit webhooks that were created by OAuth apps.
+ */
+ get: operations["orgs/get-webhook-config-for-org"];
+ /**
+ * Update a webhook configuration for an organization
+ * @description Updates the webhook configuration for an organization. To update more information about the webhook, including the `active` state and `events`, use "[Update an organization webhook ](/rest/orgs/webhooks#update-an-organization-webhook)."
+ *
+ * You must be an organization owner to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need `admin:org_hook` scope. OAuth apps cannot list, view, or edit
+ * webhooks that they did not create and users cannot list, view, or edit webhooks that were created by OAuth apps.
+ */
+ patch: operations["orgs/update-webhook-config-for-org"];
+ };
+ "/orgs/{org}/hooks/{hook_id}/deliveries": {
+ /**
+ * List deliveries for an organization webhook
+ * @description Returns a list of webhook deliveries for a webhook configured in an organization.
+ *
+ * You must be an organization owner to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need `admin:org_hook` scope. OAuth apps cannot list, view, or edit
+ * webhooks that they did not create and users cannot list, view, or edit webhooks that were created by OAuth apps.
+ */
+ get: operations["orgs/list-webhook-deliveries"];
+ };
+ "/orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}": {
+ /**
+ * Get a webhook delivery for an organization webhook
+ * @description Returns a delivery for a webhook configured in an organization.
+ *
+ * You must be an organization owner to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need `admin:org_hook` scope. OAuth apps cannot list, view, or edit
+ * webhooks that they did not create and users cannot list, view, or edit webhooks that were created by OAuth apps.
+ */
+ get: operations["orgs/get-webhook-delivery"];
+ };
+ "/orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}/attempts": {
+ /**
+ * Redeliver a delivery for an organization webhook
+ * @description Redeliver a delivery for a webhook configured in an organization.
+ *
+ * You must be an organization owner to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need `admin:org_hook` scope. OAuth apps cannot list, view, or edit
+ * webhooks that they did not create and users cannot list, view, or edit webhooks that were created by OAuth apps.
+ */
+ post: operations["orgs/redeliver-webhook-delivery"];
+ };
+ "/orgs/{org}/hooks/{hook_id}/pings": {
+ /**
+ * Ping an organization webhook
+ * @description This will trigger a [ping event](https://docs.github.com/webhooks/#ping-event)
+ * to be sent to the hook.
+ *
+ * You must be an organization owner to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need `admin:org_hook` scope. OAuth apps cannot list, view, or edit
+ * webhooks that they did not create and users cannot list, view, or edit webhooks that were created by OAuth apps.
+ */
+ post: operations["orgs/ping-webhook"];
+ };
+ "/orgs/{org}/installation": {
+ /**
+ * Get an organization installation for the authenticated app
+ * @description Enables an authenticated GitHub App to find the organization's installation information.
+ *
+ * You must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.
+ */
+ get: operations["apps/get-org-installation"];
+ };
+ "/orgs/{org}/installations": {
+ /**
+ * List app installations for an organization
+ * @description Lists all GitHub Apps in an organization. The installation count includes
+ * all GitHub Apps installed on repositories in the organization.
+ *
+ * The authenticated user must be an organization owner to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:read` scope to use this endpoint.
+ */
+ get: operations["orgs/list-app-installations"];
+ };
+ "/orgs/{org}/interaction-limits": {
+ /**
+ * Get interaction restrictions for an organization
+ * @description Shows which type of GitHub user can interact with this organization and when the restriction expires. If there is no restrictions, you will see an empty response.
+ */
+ get: operations["interactions/get-restrictions-for-org"];
+ /**
+ * Set interaction restrictions for an organization
+ * @description Temporarily restricts interactions to a certain type of GitHub user in any public repository in the given organization. You must be an organization owner to set these restrictions. Setting the interaction limit at the organization level will overwrite any interaction limits that are set for individual repositories owned by the organization.
+ */
+ put: operations["interactions/set-restrictions-for-org"];
+ /**
+ * Remove interaction restrictions for an organization
+ * @description Removes all interaction restrictions from public repositories in the given organization. You must be an organization owner to remove restrictions.
+ */
+ delete: operations["interactions/remove-restrictions-for-org"];
+ };
+ "/orgs/{org}/invitations": {
+ /**
+ * List pending organization invitations
+ * @description The return hash contains a `role` field which refers to the Organization Invitation role and will be one of the following values: `direct_member`, `admin`, `billing_manager`, or `hiring_manager`. If the invitee is not a GitHub member, the `login` field in the return hash will be `null`.
+ */
+ get: operations["orgs/list-pending-invitations"];
+ /**
+ * Create an organization invitation
+ * @description Invite people to an organization by using their GitHub user ID or their email address. In order to create invitations in an organization, the authenticated user must be an organization owner.
+ *
+ * This endpoint triggers [notifications](https://docs.github.com/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. For more information, see "[Rate limits for the API](https://docs.github.com/rest/overview/rate-limits-for-the-rest-api#about-secondary-rate-limits)"
+ * and "[Best practices for using the REST API](https://docs.github.com/rest/guides/best-practices-for-using-the-rest-api)."
+ */
+ post: operations["orgs/create-invitation"];
+ };
+ "/orgs/{org}/invitations/{invitation_id}": {
+ /**
+ * Cancel an organization invitation
+ * @description Cancel an organization invitation. In order to cancel an organization invitation, the authenticated user must be an organization owner.
+ *
+ * This endpoint triggers [notifications](https://docs.github.com/github/managing-subscriptions-and-notifications-on-github/about-notifications).
+ */
+ delete: operations["orgs/cancel-invitation"];
+ };
+ "/orgs/{org}/invitations/{invitation_id}/teams": {
+ /**
+ * List organization invitation teams
+ * @description List all teams associated with an invitation. In order to see invitations in an organization, the authenticated user must be an organization owner.
+ */
+ get: operations["orgs/list-invitation-teams"];
+ };
+ "/orgs/{org}/issues": {
+ /**
+ * List organization issues assigned to the authenticated user
+ * @description List issues in an organization assigned to the authenticated user.
+ *
+ * **Note**: GitHub's REST API considers every pull request an issue, but not every issue is a pull request. For this
+ * reason, "Issues" endpoints may return both issues and pull requests in the response. You can identify pull requests by
+ * the `pull_request` key. Be aware that the `id` of a pull request returned from "Issues" endpoints will be an _issue id_. To find out the pull
+ * request id, use the "[List pull requests](https://docs.github.com/rest/pulls/pulls#list-pull-requests)" endpoint.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ get: operations["issues/list-for-org"];
+ };
+ "/orgs/{org}/members": {
+ /**
+ * List organization members
+ * @description List all users who are members of an organization. If the authenticated user is also a member of this organization then both concealed and public members will be returned.
+ */
+ get: operations["orgs/list-members"];
+ };
+ "/orgs/{org}/members/{username}": {
+ /**
+ * Check organization membership for a user
+ * @description Check if a user is, publicly or privately, a member of the organization.
+ */
+ get: operations["orgs/check-membership-for-user"];
+ /**
+ * Remove an organization member
+ * @description Removing a user from this list will remove them from all teams and they will no longer have any access to the organization's repositories.
+ */
+ delete: operations["orgs/remove-member"];
+ };
+ "/orgs/{org}/members/{username}/codespaces": {
+ /**
+ * List codespaces for a user in organization
+ * @description Lists the codespaces that a member of an organization has for repositories in that organization.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ get: operations["codespaces/get-codespaces-for-user-in-org"];
+ };
+ "/orgs/{org}/members/{username}/codespaces/{codespace_name}": {
+ /**
+ * Delete a codespace from the organization
+ * @description Deletes a user's codespace.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ delete: operations["codespaces/delete-from-organization"];
+ };
+ "/orgs/{org}/members/{username}/codespaces/{codespace_name}/stop": {
+ /**
+ * Stop a codespace for an organization user
+ * @description Stops a user's codespace.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ post: operations["codespaces/stop-in-organization"];
+ };
+ "/orgs/{org}/members/{username}/copilot": {
+ /**
+ * Get Copilot seat assignment details for a user
+ * @description **Note**: This endpoint is in beta and is subject to change.
+ *
+ * Gets the GitHub Copilot seat assignment details for a member of an organization who currently has access to GitHub Copilot.
+ *
+ * Organization owners can view GitHub Copilot seat assignment details for members in their organization.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `manage_billing:copilot` scope to use this endpoint.
+ */
+ get: operations["copilot/get-copilot-seat-details-for-user"];
+ };
+ "/orgs/{org}/memberships/{username}": {
+ /**
+ * Get organization membership for a user
+ * @description In order to get a user's membership with an organization, the authenticated user must be an organization member. The `state` parameter in the response can be used to identify the user's membership status.
+ */
+ get: operations["orgs/get-membership-for-user"];
+ /**
+ * Set organization membership for a user
+ * @description Only authenticated organization owners can add a member to the organization or update the member's role.
+ *
+ * * If the authenticated user is _adding_ a member to the organization, the invited user will receive an email inviting them to the organization. The user's [membership status](https://docs.github.com/rest/orgs/members#get-organization-membership-for-a-user) will be `pending` until they accept the invitation.
+ *
+ * * Authenticated users can _update_ a user's membership by passing the `role` parameter. If the authenticated user changes a member's role to `admin`, the affected user will receive an email notifying them that they've been made an organization owner. If the authenticated user changes an owner's role to `member`, no email will be sent.
+ *
+ * **Rate limits**
+ *
+ * To prevent abuse, the authenticated user is limited to 50 organization invitations per 24 hour period. If the organization is more than one month old or on a paid plan, the limit is 500 invitations per 24 hour period.
+ */
+ put: operations["orgs/set-membership-for-user"];
+ /**
+ * Remove organization membership for a user
+ * @description In order to remove a user's membership with an organization, the authenticated user must be an organization owner.
+ *
+ * If the specified user is an active member of the organization, this will remove them from the organization. If the specified user has been invited to the organization, this will cancel their invitation. The specified user will receive an email notification in both cases.
+ */
+ delete: operations["orgs/remove-membership-for-user"];
+ };
+ "/orgs/{org}/migrations": {
+ /**
+ * List organization migrations
+ * @description Lists the most recent migrations, including both exports (which can be started through the REST API) and imports (which cannot be started using the REST API).
+ *
+ * A list of `repositories` is only returned for export migrations.
+ */
+ get: operations["migrations/list-for-org"];
+ /**
+ * Start an organization migration
+ * @description Initiates the generation of a migration archive.
+ */
+ post: operations["migrations/start-for-org"];
+ };
+ "/orgs/{org}/migrations/{migration_id}": {
+ /**
+ * Get an organization migration status
+ * @description Fetches the status of a migration.
+ *
+ * The `state` of a migration can be one of the following values:
+ *
+ * * `pending`, which means the migration hasn't started yet.
+ * * `exporting`, which means the migration is in progress.
+ * * `exported`, which means the migration finished successfully.
+ * * `failed`, which means the migration failed.
+ */
+ get: operations["migrations/get-status-for-org"];
+ };
+ "/orgs/{org}/migrations/{migration_id}/archive": {
+ /**
+ * Download an organization migration archive
+ * @description Fetches the URL to a migration archive.
+ */
+ get: operations["migrations/download-archive-for-org"];
+ /**
+ * Delete an organization migration archive
+ * @description Deletes a previous migration archive. Migration archives are automatically deleted after seven days.
+ */
+ delete: operations["migrations/delete-archive-for-org"];
+ };
+ "/orgs/{org}/migrations/{migration_id}/repos/{repo_name}/lock": {
+ /**
+ * Unlock an organization repository
+ * @description Unlocks a repository that was locked for migration. You should unlock each migrated repository and [delete them](https://docs.github.com/rest/repos/repos#delete-a-repository) when the migration is complete and you no longer need the source data.
+ */
+ delete: operations["migrations/unlock-repo-for-org"];
+ };
+ "/orgs/{org}/migrations/{migration_id}/repositories": {
+ /**
+ * List repositories in an organization migration
+ * @description List all the repositories for this organization migration.
+ */
+ get: operations["migrations/list-repos-for-org"];
+ };
+ "/orgs/{org}/organization-fine-grained-permissions": {
+ /**
+ * List organization fine-grained permissions for an organization
+ * @description Lists the fine-grained permissions that can be used in custom organization roles for an organization. For more information, see "[Managing people's access to your organization with roles](https://docs.github.com/organizations/managing-peoples-access-to-your-organization-with-roles/about-custom-organization-roles)."
+ *
+ * To list the fine-grained permissions that can be used in custom repository roles for an organization, see "[List repository fine-grained permissions for an organization](https://docs.github.com/rest/orgs/organization-roles#list-repository-fine-grained-permissions-for-an-organization)."
+ *
+ * To use this endpoint, the authenticated user must be one of:
+ *
+ * - An administrator for the organization.
+ * - A user, or a user on a team, with the fine-grained permissions of `read_organization_custom_org_role` in the organization.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ get: operations["orgs/list-organization-fine-grained-permissions"];
+ };
+ "/orgs/{org}/organization-roles": {
+ /**
+ * Get all organization roles for an organization
+ * @description Lists the organization roles available in this organization. For more information on organization roles, see "[Managing people's access to your organization with roles](https://docs.github.com/organizations/managing-peoples-access-to-your-organization-with-roles/about-custom-organization-roles)."
+ *
+ * To use this endpoint, the authenticated user must be one of:
+ *
+ * - An administrator for the organization.
+ * - A user, or a user on a team, with the fine-grained permissions of `read_organization_custom_org_role` in the organization.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ get: operations["orgs/list-org-roles"];
+ /**
+ * Create a custom organization role
+ * @description Creates a custom organization role that can be assigned to users and teams, granting them specific permissions over the organization. For more information on custom organization roles, see "[Managing people's access to your organization with roles](https://docs.github.com/organizations/managing-peoples-access-to-your-organization-with-roles/about-custom-organization-roles)."
+ *
+ * To use this endpoint, the authenticated user must be one of:
+ *
+ * - An administrator for the organization.
+ * - A user, or a user on a team, with the fine-grained permissions of `write_organization_custom_org_role` in the organization.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ post: operations["orgs/create-custom-organization-role"];
+ };
+ "/orgs/{org}/organization-roles/teams/{team_slug}": {
+ /**
+ * Remove all organization roles for a team
+ * @description Removes all assigned organization roles from a team. For more information on organization roles, see "[Managing people's access to your organization with roles](https://docs.github.com/organizations/managing-peoples-access-to-your-organization-with-roles/about-custom-organization-roles)."
+ *
+ * The authenticated user must be an administrator for the organization to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ delete: operations["orgs/revoke-all-org-roles-team"];
+ };
+ "/orgs/{org}/organization-roles/teams/{team_slug}/{role_id}": {
+ /**
+ * Assign an organization role to a team
+ * @description Assigns an organization role to a team in an organization. For more information on organization roles, see "[Managing people's access to your organization with roles](https://docs.github.com/organizations/managing-peoples-access-to-your-organization-with-roles/about-custom-organization-roles)."
+ *
+ * The authenticated user must be an administrator for the organization to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ put: operations["orgs/assign-team-to-org-role"];
+ /**
+ * Remove an organization role from a team
+ * @description Removes an organization role from a team. For more information on organization roles, see "[Managing people's access to your organization with roles](https://docs.github.com/organizations/managing-peoples-access-to-your-organization-with-roles/about-custom-organization-roles)."
+ *
+ * The authenticated user must be an administrator for the organization to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ delete: operations["orgs/revoke-org-role-team"];
+ };
+ "/orgs/{org}/organization-roles/users/{username}": {
+ /**
+ * Remove all organization roles for a user
+ * @description Revokes all assigned organization roles from a user. For more information on organization roles, see "[Managing people's access to your organization with roles](https://docs.github.com/organizations/managing-peoples-access-to-your-organization-with-roles/about-custom-organization-roles)."
+ *
+ * The authenticated user must be an administrator for the organization to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ delete: operations["orgs/revoke-all-org-roles-user"];
+ };
+ "/orgs/{org}/organization-roles/users/{username}/{role_id}": {
+ /**
+ * Assign an organization role to a user
+ * @description Assigns an organization role to a member of an organization. For more information on organization roles, see "[Managing people's access to your organization with roles](https://docs.github.com/organizations/managing-peoples-access-to-your-organization-with-roles/about-custom-organization-roles)."
+ *
+ * The authenticated user must be an administrator for the organization to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ put: operations["orgs/assign-user-to-org-role"];
+ /**
+ * Remove an organization role from a user
+ * @description Remove an organization role from a user. For more information on organization roles, see "[Managing people's access to your organization with roles](https://docs.github.com/organizations/managing-peoples-access-to-your-organization-with-roles/about-custom-organization-roles)."
+ *
+ * The authenticated user must be an administrator for the organization to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ delete: operations["orgs/revoke-org-role-user"];
+ };
+ "/orgs/{org}/organization-roles/{role_id}": {
+ /**
+ * Get an organization role
+ * @description Gets an organization role that is available to this organization. For more information on organization roles, see "[Managing people's access to your organization with roles](https://docs.github.com/organizations/managing-peoples-access-to-your-organization-with-roles/about-custom-organization-roles)."
+ *
+ * To use this endpoint, the authenticated user must be one of:
+ *
+ * - An administrator for the organization.
+ * - A user, or a user on a team, with the fine-grained permissions of `read_organization_custom_org_role` in the organization.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ get: operations["orgs/get-org-role"];
+ /**
+ * Delete a custom organization role.
+ * @description Deletes a custom organization role. For more information on custom organization roles, see "[Managing people's access to your organization with roles](https://docs.github.com/organizations/managing-peoples-access-to-your-organization-with-roles/about-custom-organization-roles)."
+ *
+ * To use this endpoint, the authenticated user must be one of:
+ *
+ * - An administrator for the organization.
+ * - A user, or a user on a team, with the fine-grained permissions of `write_organization_custom_org_role` in the organization.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ delete: operations["orgs/delete-custom-organization-role"];
+ /**
+ * Update a custom organization role
+ * @description Updates an existing custom organization role. Permission changes will apply to all assignees. For more information on custom organization roles, see "[Managing people's access to your organization with roles](https://docs.github.com/organizations/managing-peoples-access-to-your-organization-with-roles/about-custom-organization-roles)."
+ *
+ *
+ * To use this endpoint, the authenticated user must be one of:
+ *
+ * - An administrator for the organization.
+ * - A user, or a user on a team, with the fine-grained permissions of `write_organization_custom_org_role` in the organization.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ patch: operations["orgs/patch-custom-organization-role"];
+ };
+ "/orgs/{org}/organization-roles/{role_id}/teams": {
+ /**
+ * List teams that are assigned to an organization role
+ * @description Lists the teams that are assigned to an organization role. For more information on organization roles, see "[Managing people's access to your organization with roles](https://docs.github.com/organizations/managing-peoples-access-to-your-organization-with-roles/about-custom-organization-roles)."
+ *
+ * To use this endpoint, you must be an administrator for the organization.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ get: operations["orgs/list-org-role-teams"];
+ };
+ "/orgs/{org}/organization-roles/{role_id}/users": {
+ /**
+ * List users that are assigned to an organization role
+ * @description Lists organization members that are assigned to an organization role. For more information on organization roles, see "[Managing people's access to your organization with roles](https://docs.github.com/organizations/managing-peoples-access-to-your-organization-with-roles/about-custom-organization-roles)."
+ *
+ * To use this endpoint, you must be an administrator for the organization.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ get: operations["orgs/list-org-role-users"];
+ };
+ "/orgs/{org}/outside_collaborators": {
+ /**
+ * List outside collaborators for an organization
+ * @description List all users who are outside collaborators of an organization.
+ */
+ get: operations["orgs/list-outside-collaborators"];
+ };
+ "/orgs/{org}/outside_collaborators/{username}": {
+ /**
+ * Convert an organization member to outside collaborator
+ * @description When an organization member is converted to an outside collaborator, they'll only have access to the repositories that their current team membership allows. The user will no longer be a member of the organization. For more information, see "[Converting an organization member to an outside collaborator](https://docs.github.com/articles/converting-an-organization-member-to-an-outside-collaborator/)". Converting an organization member to an outside collaborator may be restricted by enterprise administrators. For more information, see "[Enforcing repository management policies in your enterprise](https://docs.github.com/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-inviting-outside-collaborators-to-repositories)."
+ */
+ put: operations["orgs/convert-member-to-outside-collaborator"];
+ /**
+ * Remove outside collaborator from an organization
+ * @description Removing a user from this list will remove them from all the organization's repositories.
+ */
+ delete: operations["orgs/remove-outside-collaborator"];
+ };
+ "/orgs/{org}/packages": {
+ /**
+ * List packages for an organization
+ * @description Lists packages in an organization readable by the user.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ get: operations["packages/list-packages-for-organization"];
+ };
+ "/orgs/{org}/packages/{package_type}/{package_name}": {
+ /**
+ * Get a package for an organization
+ * @description Gets a specific package in an organization.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ get: operations["packages/get-package-for-organization"];
+ /**
+ * Delete a package for an organization
+ * @description Deletes an entire package in an organization. You cannot delete a public package if any version of the package has more than 5,000 downloads. In this scenario, contact GitHub support for further assistance.
+ *
+ * The authenticated user must have admin permissions in the organization to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that supports granular permissions, the authenticated user must also have admin permissions to the package. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#granular-permissions-for-userorganization-scoped-packages)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` and `delete:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ delete: operations["packages/delete-package-for-org"];
+ };
+ "/orgs/{org}/packages/{package_type}/{package_name}/restore": {
+ /**
+ * Restore a package for an organization
+ * @description Restores an entire package in an organization.
+ *
+ * You can restore a deleted package under the following conditions:
+ * - The package was deleted within the last 30 days.
+ * - The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
+ *
+ * The authenticated user must have admin permissions in the organization to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that supports granular permissions, the authenticated user must also have admin permissions to the package. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#granular-permissions-for-userorganization-scoped-packages)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` and `write:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ post: operations["packages/restore-package-for-org"];
+ };
+ "/orgs/{org}/packages/{package_type}/{package_name}/versions": {
+ /**
+ * List package versions for a package owned by an organization
+ * @description Lists package versions for a package owned by an organization.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint if the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ get: operations["packages/get-all-package-versions-for-package-owned-by-org"];
+ };
+ "/orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}": {
+ /**
+ * Get a package version for an organization
+ * @description Gets a specific package version in an organization.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ get: operations["packages/get-package-version-for-organization"];
+ /**
+ * Delete package version for an organization
+ * @description Deletes a specific package version in an organization. If the package is public and the package version has more than 5,000 downloads, you cannot delete the package version. In this scenario, contact GitHub support for further assistance.
+ *
+ * The authenticated user must have admin permissions in the organization to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that supports granular permissions, the authenticated user must also have admin permissions to the package. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#granular-permissions-for-userorganization-scoped-packages)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` and `delete:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ delete: operations["packages/delete-package-version-for-org"];
+ };
+ "/orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}/restore": {
+ /**
+ * Restore package version for an organization
+ * @description Restores a specific package version in an organization.
+ *
+ * You can restore a deleted package under the following conditions:
+ * - The package was deleted within the last 30 days.
+ * - The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
+ *
+ * The authenticated user must have admin permissions in the organization to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that supports granular permissions, the authenticated user must also have admin permissions to the package. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#granular-permissions-for-userorganization-scoped-packages)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` and `write:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ post: operations["packages/restore-package-version-for-org"];
+ };
+ "/orgs/{org}/personal-access-token-requests": {
+ /**
+ * List requests to access organization resources with fine-grained personal access tokens
+ * @description Lists requests from organization members to access organization resources with a fine-grained personal access token.
+ *
+ * Only GitHub Apps can use this endpoint.
+ */
+ get: operations["orgs/list-pat-grant-requests"];
+ /**
+ * Review requests to access organization resources with fine-grained personal access tokens
+ * @description Approves or denies multiple pending requests to access organization resources via a fine-grained personal access token.
+ *
+ * Only GitHub Apps can use this endpoint.
+ */
+ post: operations["orgs/review-pat-grant-requests-in-bulk"];
+ };
+ "/orgs/{org}/personal-access-token-requests/{pat_request_id}": {
+ /**
+ * Review a request to access organization resources with a fine-grained personal access token
+ * @description Approves or denies a pending request to access organization resources via a fine-grained personal access token.
+ *
+ * Only GitHub Apps can use this endpoint.
+ */
+ post: operations["orgs/review-pat-grant-request"];
+ };
+ "/orgs/{org}/personal-access-token-requests/{pat_request_id}/repositories": {
+ /**
+ * List repositories requested to be accessed by a fine-grained personal access token
+ * @description Lists the repositories a fine-grained personal access token request is requesting access to.
+ *
+ * Only GitHub Apps can use this endpoint.
+ */
+ get: operations["orgs/list-pat-grant-request-repositories"];
+ };
+ "/orgs/{org}/personal-access-tokens": {
+ /**
+ * List fine-grained personal access tokens with access to organization resources
+ * @description Lists approved fine-grained personal access tokens owned by organization members that can access organization resources.
+ *
+ * Only GitHub Apps can use this endpoint.
+ */
+ get: operations["orgs/list-pat-grants"];
+ /**
+ * Update the access to organization resources via fine-grained personal access tokens
+ * @description Updates the access organization members have to organization resources via fine-grained personal access tokens. Limited to revoking a token's existing access.
+ *
+ * Only GitHub Apps can use this endpoint.
+ */
+ post: operations["orgs/update-pat-accesses"];
+ };
+ "/orgs/{org}/personal-access-tokens/{pat_id}": {
+ /**
+ * Update the access a fine-grained personal access token has to organization resources
+ * @description Updates the access an organization member has to organization resources via a fine-grained personal access token. Limited to revoking the token's existing access. Limited to revoking a token's existing access.
+ *
+ * Only GitHub Apps can use this endpoint.
+ */
+ post: operations["orgs/update-pat-access"];
+ };
+ "/orgs/{org}/personal-access-tokens/{pat_id}/repositories": {
+ /**
+ * List repositories a fine-grained personal access token has access to
+ * @description Lists the repositories a fine-grained personal access token has access to.
+ *
+ * Only GitHub Apps can use this endpoint.
+ */
+ get: operations["orgs/list-pat-grant-repositories"];
+ };
+ "/orgs/{org}/projects": {
+ /**
+ * List organization projects
+ * @description Lists the projects in an organization. Returns a `404 Not Found` status if projects are disabled in the organization. If you do not have sufficient privileges to perform this action, a `401 Unauthorized` or `410 Gone` status is returned.
+ */
+ get: operations["projects/list-for-org"];
+ /**
+ * Create an organization project
+ * @description Creates an organization project board. Returns a `410 Gone` status if projects are disabled in the organization or if the organization does not have existing classic projects. If you do not have sufficient privileges to perform this action, a `401 Unauthorized` or `410 Gone` status is returned.
+ */
+ post: operations["projects/create-for-org"];
+ };
+ "/orgs/{org}/properties/schema": {
+ /**
+ * Get all custom properties for an organization
+ * @description Gets all custom properties defined for an organization.
+ * Organization members can read these properties.
+ */
+ get: operations["orgs/get-all-custom-properties"];
+ /**
+ * Create or update custom properties for an organization
+ * @description Creates new or updates existing custom properties defined for an organization in a batch.
+ *
+ * To use this endpoint, the authenticated user must be one of:
+ * - An administrator for the organization.
+ * - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization.
+ */
+ patch: operations["orgs/create-or-update-custom-properties"];
+ };
+ "/orgs/{org}/properties/schema/{custom_property_name}": {
+ /**
+ * Get a custom property for an organization
+ * @description Gets a custom property that is defined for an organization.
+ * Organization members can read these properties.
+ */
+ get: operations["orgs/get-custom-property"];
+ /**
+ * Create or update a custom property for an organization
+ * @description Creates a new or updates an existing custom property that is defined for an organization.
+ *
+ * To use this endpoint, the authenticated user must be one of:
+ * - An administrator for the organization.
+ * - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization.
+ */
+ put: operations["orgs/create-or-update-custom-property"];
+ /**
+ * Remove a custom property for an organization
+ * @description Removes a custom property that is defined for an organization.
+ *
+ * To use this endpoint, the authenticated user must be one of:
+ * - An administrator for the organization.
+ * - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization.
+ */
+ delete: operations["orgs/remove-custom-property"];
+ };
+ "/orgs/{org}/properties/values": {
+ /**
+ * List custom property values for organization repositories
+ * @description Lists organization repositories with all of their custom property values.
+ * Organization members can read these properties.
+ */
+ get: operations["orgs/list-custom-properties-values-for-repos"];
+ /**
+ * Create or update custom property values for organization repositories
+ * @description Create new or update existing custom property values for repositories in a batch that belong to an organization.
+ * Each target repository will have its custom property values updated to match the values provided in the request.
+ *
+ * A maximum of 30 repositories can be updated in a single request.
+ *
+ * Using a value of `null` for a custom property will remove or 'unset' the property value from the repository.
+ *
+ * To use this endpoint, the authenticated user must be one of:
+ * - An administrator for the organization.
+ * - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_values_editor` in the organization.
+ */
+ patch: operations["orgs/create-or-update-custom-properties-values-for-repos"];
+ };
+ "/orgs/{org}/public_members": {
+ /**
+ * List public organization members
+ * @description Members of an organization can choose to have their membership publicized or not.
+ */
+ get: operations["orgs/list-public-members"];
+ };
+ "/orgs/{org}/public_members/{username}": {
+ /**
+ * Check public organization membership for a user
+ * @description Check if the provided user is a public member of the organization.
+ */
+ get: operations["orgs/check-public-membership-for-user"];
+ /**
+ * Set public organization membership for the authenticated user
+ * @description The user can publicize their own membership. (A user cannot publicize the membership for another user.)
+ *
+ * Note that you'll need to set `Content-Length` to zero when calling out to this endpoint. For more information, see "[HTTP method](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#http-method)."
+ */
+ put: operations["orgs/set-public-membership-for-authenticated-user"];
+ /**
+ * Remove public organization membership for the authenticated user
+ * @description Removes the public membership for the authenticated user from the specified organization, unless public visibility is enforced by default.
+ */
+ delete: operations["orgs/remove-public-membership-for-authenticated-user"];
+ };
+ "/orgs/{org}/repos": {
+ /**
+ * List organization repositories
+ * @description Lists repositories for the specified organization.
+ *
+ * **Note:** In order to see the `security_and_analysis` block for a repository you must have admin permissions for the repository or be an owner or security manager for the organization that owns the repository. For more information, see "[Managing security managers in your organization](https://docs.github.com/organizations/managing-peoples-access-to-your-organization-with-roles/managing-security-managers-in-your-organization)."
+ */
+ get: operations["repos/list-for-org"];
+ /**
+ * Create an organization repository
+ * @description Creates a new repository in the specified organization. The authenticated user must be a member of the organization.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `public_repo` or `repo` scope to create a public repository, and `repo` scope to create a private repository.
+ */
+ post: operations["repos/create-in-org"];
+ };
+ "/orgs/{org}/rulesets": {
+ /**
+ * Get all organization repository rulesets
+ * @description Get all the repository rulesets for an organization.
+ */
+ get: operations["repos/get-org-rulesets"];
+ /**
+ * Create an organization repository ruleset
+ * @description Create a repository ruleset for an organization.
+ */
+ post: operations["repos/create-org-ruleset"];
+ };
+ "/orgs/{org}/rulesets/rule-suites": {
+ /**
+ * List organization rule suites
+ * @description Lists suites of rule evaluations at the organization level.
+ * For more information, see "[Managing rulesets for repositories in your organization](https://docs.github.com/organizations/managing-organization-settings/managing-rulesets-for-repositories-in-your-organization#viewing-insights-for-rulesets)."
+ */
+ get: operations["repos/get-org-rule-suites"];
+ };
+ "/orgs/{org}/rulesets/rule-suites/{rule_suite_id}": {
+ /**
+ * Get an organization rule suite
+ * @description Gets information about a suite of rule evaluations from within an organization.
+ * For more information, see "[Managing rulesets for repositories in your organization](https://docs.github.com/organizations/managing-organization-settings/managing-rulesets-for-repositories-in-your-organization#viewing-insights-for-rulesets)."
+ */
+ get: operations["repos/get-org-rule-suite"];
+ };
+ "/orgs/{org}/rulesets/{ruleset_id}": {
+ /**
+ * Get an organization repository ruleset
+ * @description Get a repository ruleset for an organization.
+ */
+ get: operations["repos/get-org-ruleset"];
+ /**
+ * Update an organization repository ruleset
+ * @description Update a ruleset for an organization.
+ */
+ put: operations["repos/update-org-ruleset"];
+ /**
+ * Delete an organization repository ruleset
+ * @description Delete a ruleset for an organization.
+ */
+ delete: operations["repos/delete-org-ruleset"];
+ };
+ "/orgs/{org}/secret-scanning/alerts": {
+ /**
+ * List secret scanning alerts for an organization
+ * @description Lists secret scanning alerts for eligible repositories in an organization, from newest to oldest.
+ *
+ * The authenticated user must be an administrator or security manager for the organization to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.
+ */
+ get: operations["secret-scanning/list-alerts-for-org"];
+ };
+ "/orgs/{org}/security-advisories": {
+ /**
+ * List repository security advisories for an organization
+ * @description Lists repository security advisories for an organization.
+ *
+ * The authenticated user must be an owner or security manager for the organization to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` or `repository_advisories:write` scope to use this endpoint.
+ */
+ get: operations["security-advisories/list-org-repository-advisories"];
+ };
+ "/orgs/{org}/security-managers": {
+ /**
+ * List security manager teams
+ * @description Lists teams that are security managers for an organization. For more information, see "[Managing security managers in your organization](https://docs.github.com/organizations/managing-peoples-access-to-your-organization-with-roles/managing-security-managers-in-your-organization)."
+ *
+ * The authenticated user must be an administrator or security manager for the organization to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint.
+ */
+ get: operations["orgs/list-security-manager-teams"];
+ };
+ "/orgs/{org}/security-managers/teams/{team_slug}": {
+ /**
+ * Add a security manager team
+ * @description Adds a team as a security manager for an organization. For more information, see "[Managing security for an organization](https://docs.github.com/organizations/managing-peoples-access-to-your-organization-with-roles/managing-security-managers-in-your-organization) for an organization."
+ *
+ * The authenticated user must be an administrator for the organization to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:org` scope to use this endpoint.
+ */
+ put: operations["orgs/add-security-manager-team"];
+ /**
+ * Remove a security manager team
+ * @description Removes the security manager role from a team for an organization. For more information, see "[Managing security managers in your organization](https://docs.github.com/organizations/managing-peoples-access-to-your-organization-with-roles/managing-security-managers-in-your-organization) team from an organization."
+ *
+ * The authenticated user must be an administrator for the organization to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.
+ */
+ delete: operations["orgs/remove-security-manager-team"];
+ };
+ "/orgs/{org}/settings/billing/actions": {
+ /**
+ * Get GitHub Actions billing for an organization
+ * @description Gets the summary of the free and paid GitHub Actions minutes used.
+ *
+ * Paid minutes only apply to workflows in private repositories that use GitHub-hosted runners. Minutes used is listed for each GitHub-hosted runner operating system. Any job re-runs are also included in the usage. The usage returned includes any minute multipliers for macOS and Windows runners, and is rounded up to the nearest whole minute. For more information, see "[Managing billing for GitHub Actions](https://docs.github.com/github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-actions)".
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` or `admin:org` scope to use this endpoint.
+ */
+ get: operations["billing/get-github-actions-billing-org"];
+ };
+ "/orgs/{org}/settings/billing/packages": {
+ /**
+ * Get GitHub Packages billing for an organization
+ * @description Gets the free and paid storage used for GitHub Packages in gigabytes.
+ *
+ * Paid minutes only apply to packages stored for private repositories. For more information, see "[Managing billing for GitHub Packages](https://docs.github.com/github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-packages)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` or `admin:org` scope to use this endpoint.
+ */
+ get: operations["billing/get-github-packages-billing-org"];
+ };
+ "/orgs/{org}/settings/billing/shared-storage": {
+ /**
+ * Get shared storage billing for an organization
+ * @description Gets the estimated paid and estimated total storage used for GitHub Actions and GitHub Packages.
+ *
+ * Paid minutes only apply to packages stored for private repositories. For more information, see "[Managing billing for GitHub Packages](https://docs.github.com/github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-packages)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` or `admin:org` scope to use this endpoint.
+ */
+ get: operations["billing/get-shared-storage-billing-org"];
+ };
+ "/orgs/{org}/team/{team_slug}/copilot/usage": {
+ /**
+ * Get a summary of Copilot usage for a team
+ * @description **Note**: This endpoint is in beta and is subject to change.
+ *
+ * You can use this endpoint to see a daily breakdown of aggregated usage metrics for Copilot completions and Copilot Chat in the IDE
+ * for users within a team, with a further breakdown of suggestions, acceptances, and number of active users by editor and language for each day.
+ * See the response schema tab for detailed metrics definitions.
+ *
+ * The response contains metrics for the prior 28 days. Usage metrics are processed once per day for the previous day,
+ * and the response will only include data up until yesterday. In order for an end user to be counted towards these metrics,
+ * they must have telemetry enabled in their IDE.
+ *
+ * **Note**: This endpoint will only return results for a given day if the team had five or more members on that day.
+ *
+ * Copilot Business or Copilot Enterprise organization owners for the organization that contains this team,
+ * and owners and billing managers of their parent enterprises, can view Copilot usage metrics for a team.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `copilot`, `manage_billing:copilot`, `admin:org`, `admin:enterprise`, or `manage_billing:enterprise` scope to use this endpoint.
+ */
+ get: operations["copilot/usage-metrics-for-team"];
+ };
+ "/orgs/{org}/teams": {
+ /**
+ * List teams
+ * @description Lists all teams in an organization that are visible to the authenticated user.
+ */
+ get: operations["teams/list"];
+ /**
+ * Create a team
+ * @description To create a team, the authenticated user must be a member or owner of `{org}`. By default, organization members can create teams. Organization owners can limit team creation to organization owners. For more information, see "[Setting team creation permissions](https://docs.github.com/articles/setting-team-creation-permissions-in-your-organization)."
+ *
+ * When you create a new team, you automatically become a team maintainer without explicitly adding yourself to the optional array of `maintainers`. For more information, see "[About teams](https://docs.github.com/github/setting-up-and-managing-organizations-and-teams/about-teams)".
+ */
+ post: operations["teams/create"];
+ };
+ "/orgs/{org}/teams/{team_slug}": {
+ /**
+ * Get a team by name
+ * @description Gets a team using the team's `slug`. To create the `slug`, GitHub replaces special characters in the `name` string, changes all words to lowercase, and replaces spaces with a `-` separator. For example, `"My TEam Näme"` would become `my-team-name`.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `GET /organizations/{org_id}/team/{team_id}`.
+ */
+ get: operations["teams/get-by-name"];
+ /**
+ * Delete a team
+ * @description To delete a team, the authenticated user must be an organization owner or team maintainer.
+ *
+ * If you are an organization owner, deleting a parent team will delete all of its child teams as well.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `DELETE /organizations/{org_id}/team/{team_id}`.
+ */
+ delete: operations["teams/delete-in-org"];
+ /**
+ * Update a team
+ * @description To edit a team, the authenticated user must either be an organization owner or a team maintainer.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `PATCH /organizations/{org_id}/team/{team_id}`.
+ */
+ patch: operations["teams/update-in-org"];
+ };
+ "/orgs/{org}/teams/{team_slug}/discussions": {
+ /**
+ * List discussions
+ * @description List all discussions on a team's page.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `GET /organizations/{org_id}/team/{team_id}/discussions`.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:discussion` scope to use this endpoint.
+ */
+ get: operations["teams/list-discussions-in-org"];
+ /**
+ * Create a discussion
+ * @description Creates a new discussion post on a team's page.
+ *
+ * This endpoint triggers [notifications](https://docs.github.com/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. For more information, see "[Rate limits for the API](https://docs.github.com/rest/overview/rate-limits-for-the-rest-api#about-secondary-rate-limits)" and "[Best practices for using the REST API](https://docs.github.com/rest/guides/best-practices-for-using-the-rest-api)."
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `POST /organizations/{org_id}/team/{team_id}/discussions`.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:discussion` scope to use this endpoint.
+ */
+ post: operations["teams/create-discussion-in-org"];
+ };
+ "/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}": {
+ /**
+ * Get a discussion
+ * @description Get a specific discussion on a team's page.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `GET /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}`.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:discussion` scope to use this endpoint.
+ */
+ get: operations["teams/get-discussion-in-org"];
+ /**
+ * Delete a discussion
+ * @description Delete a discussion from a team's page.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}`.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:discussion` scope to use this endpoint.
+ */
+ delete: operations["teams/delete-discussion-in-org"];
+ /**
+ * Update a discussion
+ * @description Edits the title and body text of a discussion post. Only the parameters you provide are updated.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `PATCH /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}`.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:discussion` scope to use this endpoint.
+ */
+ patch: operations["teams/update-discussion-in-org"];
+ };
+ "/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments": {
+ /**
+ * List discussion comments
+ * @description List all comments on a team discussion.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `GET /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}/comments`.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:discussion` scope to use this endpoint.
+ */
+ get: operations["teams/list-discussion-comments-in-org"];
+ /**
+ * Create a discussion comment
+ * @description Creates a new comment on a team discussion.
+ *
+ * This endpoint triggers [notifications](https://docs.github.com/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. For more information, see "[Rate limits for the API](https://docs.github.com/rest/overview/rate-limits-for-the-rest-api#about-secondary-rate-limits)" and "[Best practices for using the REST API](https://docs.github.com/rest/guides/best-practices-for-using-the-rest-api)."
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `POST /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}/comments`.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:discussion` scope to use this endpoint.
+ */
+ post: operations["teams/create-discussion-comment-in-org"];
+ };
+ "/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}": {
+ /**
+ * Get a discussion comment
+ * @description Get a specific comment on a team discussion.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `GET /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}/comments/{comment_number}`.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:discussion` scope to use this endpoint.
+ */
+ get: operations["teams/get-discussion-comment-in-org"];
+ /**
+ * Delete a discussion comment
+ * @description Deletes a comment on a team discussion.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}/comments/{comment_number}`.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:discussion` scope to use this endpoint.
+ */
+ delete: operations["teams/delete-discussion-comment-in-org"];
+ /**
+ * Update a discussion comment
+ * @description Edits the body text of a discussion comment.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `PATCH /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}/comments/{comment_number}`.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:discussion` scope to use this endpoint.
+ */
+ patch: operations["teams/update-discussion-comment-in-org"];
+ };
+ "/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions": {
+ /**
+ * List reactions for a team discussion comment
+ * @description List the reactions to a [team discussion comment](https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment).
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `GET /organizations/:org_id/team/:team_id/discussions/:discussion_number/comments/:comment_number/reactions`.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:discussion` scope to use this endpoint.
+ */
+ get: operations["reactions/list-for-team-discussion-comment-in-org"];
+ /**
+ * Create reaction for a team discussion comment
+ * @description Create a reaction to a [team discussion comment](https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment).
+ *
+ * A response with an HTTP `200` status means that you already added the reaction type to this team discussion comment.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `POST /organizations/:org_id/team/:team_id/discussions/:discussion_number/comments/:comment_number/reactions`.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:discussion` scope to use this endpoint.
+ */
+ post: operations["reactions/create-for-team-discussion-comment-in-org"];
+ };
+ "/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions/{reaction_id}": {
+ /**
+ * Delete team discussion comment reaction
+ * @description **Note:** You can also specify a team or organization with `team_id` and `org_id` using the route `DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/comments/:comment_number/reactions/:reaction_id`.
+ *
+ * Delete a reaction to a [team discussion comment](https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment).
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:discussion` scope to use this endpoint.
+ */
+ delete: operations["reactions/delete-for-team-discussion-comment"];
+ };
+ "/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions": {
+ /**
+ * List reactions for a team discussion
+ * @description List the reactions to a [team discussion](https://docs.github.com/rest/teams/discussions#get-a-discussion).
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `GET /organizations/:org_id/team/:team_id/discussions/:discussion_number/reactions`.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:discussion` scope to use this endpoint.
+ */
+ get: operations["reactions/list-for-team-discussion-in-org"];
+ /**
+ * Create reaction for a team discussion
+ * @description Create a reaction to a [team discussion](https://docs.github.com/rest/teams/discussions#get-a-discussion).
+ *
+ * A response with an HTTP `200` status means that you already added the reaction type to this team discussion.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `POST /organizations/:org_id/team/:team_id/discussions/:discussion_number/reactions`.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:discussion` scope to use this endpoint.
+ */
+ post: operations["reactions/create-for-team-discussion-in-org"];
+ };
+ "/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions/{reaction_id}": {
+ /**
+ * Delete team discussion reaction
+ * @description **Note:** You can also specify a team or organization with `team_id` and `org_id` using the route `DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/reactions/:reaction_id`.
+ *
+ * Delete a reaction to a [team discussion](https://docs.github.com/rest/teams/discussions#get-a-discussion).
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:discussion` scope to use this endpoint.
+ */
+ delete: operations["reactions/delete-for-team-discussion"];
+ };
+ "/orgs/{org}/teams/{team_slug}/invitations": {
+ /**
+ * List pending team invitations
+ * @description The return hash contains a `role` field which refers to the Organization Invitation role and will be one of the following values: `direct_member`, `admin`, `billing_manager`, `hiring_manager`, or `reinstate`. If the invitee is not a GitHub member, the `login` field in the return hash will be `null`.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `GET /organizations/{org_id}/team/{team_id}/invitations`.
+ */
+ get: operations["teams/list-pending-invitations-in-org"];
+ };
+ "/orgs/{org}/teams/{team_slug}/members": {
+ /**
+ * List team members
+ * @description Team members will include the members of child teams.
+ *
+ * To list members in a team, the team must be visible to the authenticated user.
+ */
+ get: operations["teams/list-members-in-org"];
+ };
+ "/orgs/{org}/teams/{team_slug}/memberships/{username}": {
+ /**
+ * Get team membership for a user
+ * @description Team members will include the members of child teams.
+ *
+ * To get a user's membership with a team, the team must be visible to the authenticated user.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `GET /organizations/{org_id}/team/{team_id}/memberships/{username}`.
+ *
+ * **Note:**
+ * The response contains the `state` of the membership and the member's `role`.
+ *
+ * The `role` for organization owners is set to `maintainer`. For more information about `maintainer` roles, see [Create a team](https://docs.github.com/rest/teams/teams#create-a-team).
+ */
+ get: operations["teams/get-membership-for-user-in-org"];
+ /**
+ * Add or update team membership for a user
+ * @description Adds an organization member to a team. An authenticated organization owner or team maintainer can add organization members to a team.
+ *
+ * Team synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * **Note:** When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see "[Synchronizing teams between your identity provider and GitHub](https://docs.github.com/articles/synchronizing-teams-between-your-identity-provider-and-github/)."
+ *
+ * An organization owner can add someone who is not part of the team's organization to a team. When an organization owner adds someone to a team who is not an organization member, this endpoint will send an invitation to the person via email. This newly-created membership will be in the "pending" state until the person accepts the invitation, at which point the membership will transition to the "active" state and the user will be added as a member of the team.
+ *
+ * If the user is already a member of the team, this endpoint will update the role of the team member's role. To update the membership of a team member, the authenticated user must be an organization owner or a team maintainer.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `PUT /organizations/{org_id}/team/{team_id}/memberships/{username}`.
+ */
+ put: operations["teams/add-or-update-membership-for-user-in-org"];
+ /**
+ * Remove team membership for a user
+ * @description To remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
+ *
+ * Team synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * **Note:** When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see "[Synchronizing teams between your identity provider and GitHub](https://docs.github.com/articles/synchronizing-teams-between-your-identity-provider-and-github/)."
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `DELETE /organizations/{org_id}/team/{team_id}/memberships/{username}`.
+ */
+ delete: operations["teams/remove-membership-for-user-in-org"];
+ };
+ "/orgs/{org}/teams/{team_slug}/projects": {
+ /**
+ * List team projects
+ * @description Lists the organization projects for a team.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `GET /organizations/{org_id}/team/{team_id}/projects`.
+ */
+ get: operations["teams/list-projects-in-org"];
+ };
+ "/orgs/{org}/teams/{team_slug}/projects/{project_id}": {
+ /**
+ * Check team permissions for a project
+ * @description Checks whether a team has `read`, `write`, or `admin` permissions for an organization project. The response includes projects inherited from a parent team.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `GET /organizations/{org_id}/team/{team_id}/projects/{project_id}`.
+ */
+ get: operations["teams/check-permissions-for-project-in-org"];
+ /**
+ * Add or update team project permissions
+ * @description Adds an organization project to a team. To add a project to a team or update the team's permission on a project, the authenticated user must have `admin` permissions for the project. The project and team must be part of the same organization.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `PUT /organizations/{org_id}/team/{team_id}/projects/{project_id}`.
+ */
+ put: operations["teams/add-or-update-project-permissions-in-org"];
+ /**
+ * Remove a project from a team
+ * @description Removes an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have `read` access to both the team and project, or `admin` access to the team or project. This endpoint removes the project from the team, but does not delete the project.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `DELETE /organizations/{org_id}/team/{team_id}/projects/{project_id}`.
+ */
+ delete: operations["teams/remove-project-in-org"];
+ };
+ "/orgs/{org}/teams/{team_slug}/repos": {
+ /**
+ * List team repositories
+ * @description Lists a team's repositories visible to the authenticated user.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `GET /organizations/{org_id}/team/{team_id}/repos`.
+ */
+ get: operations["teams/list-repos-in-org"];
+ };
+ "/orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}": {
+ /**
+ * Check team permissions for a repository
+ * @description Checks whether a team has `admin`, `push`, `maintain`, `triage`, or `pull` permission for a repository. Repositories inherited through a parent team will also be checked.
+ *
+ * You can also get information about the specified repository, including what permissions the team grants on it, by passing the following custom [media type](https://docs.github.com/rest/overview/media-types/) via the `application/vnd.github.v3.repository+json` accept header.
+ *
+ * If a team doesn't have permission for the repository, you will receive a `404 Not Found` response status.
+ *
+ * If the repository is private, you must have at least `read` permission for that repository, and your token must have the `repo` or `admin:org` scope. Otherwise, you will receive a `404 Not Found` response status.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `GET /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}`.
+ */
+ get: operations["teams/check-permissions-for-repo-in-org"];
+ /**
+ * Add or update team repository permissions
+ * @description To add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a `422 Unprocessable Entity` status if you attempt to add a repository to a team that is not owned by the organization. Note that, if you choose not to pass any parameters, you'll need to set `Content-Length` to zero when calling out to this endpoint. For more information, see "[HTTP method](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#http-method)."
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `PUT /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}`.
+ *
+ * For more information about the permission levels, see "[Repository permission levels for an organization](https://docs.github.com/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization#permission-levels-for-repositories-owned-by-an-organization)".
+ */
+ put: operations["teams/add-or-update-repo-permissions-in-org"];
+ /**
+ * Remove a repository from a team
+ * @description If the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. This does not delete the repository, it just removes it from the team.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `DELETE /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}`.
+ */
+ delete: operations["teams/remove-repo-in-org"];
+ };
+ "/orgs/{org}/teams/{team_slug}/teams": {
+ /**
+ * List child teams
+ * @description Lists the child teams of the team specified by `{team_slug}`.
+ *
+ * **Note:** You can also specify a team by `org_id` and `team_id` using the route `GET /organizations/{org_id}/team/{team_id}/teams`.
+ */
+ get: operations["teams/list-child-in-org"];
+ };
+ "/orgs/{org}/{security_product}/{enablement}": {
+ /**
+ * Enable or disable a security feature for an organization
+ * @description Enables or disables the specified security feature for all eligible repositories in an organization. For more information, see "[Managing security managers in your organization](https://docs.github.com/organizations/managing-peoples-access-to-your-organization-with-roles/managing-security-managers-in-your-organization)."
+ *
+ * The authenticated user must be an organization owner or be member of a team with the security manager role to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:org` scope to use this endpoint.
+ */
+ post: operations["orgs/enable-or-disable-security-product-on-all-org-repos"];
+ };
+ "/projects/columns/cards/{card_id}": {
+ /**
+ * Get a project card
+ * @description Gets information about a project card.
+ */
+ get: operations["projects/get-card"];
+ /**
+ * Delete a project card
+ * @description Deletes a project card
+ */
+ delete: operations["projects/delete-card"];
+ /** Update an existing project card */
+ patch: operations["projects/update-card"];
+ };
+ "/projects/columns/cards/{card_id}/moves": {
+ /** Move a project card */
+ post: operations["projects/move-card"];
+ };
+ "/projects/columns/{column_id}": {
+ /**
+ * Get a project column
+ * @description Gets information about a project column.
+ */
+ get: operations["projects/get-column"];
+ /**
+ * Delete a project column
+ * @description Deletes a project column.
+ */
+ delete: operations["projects/delete-column"];
+ /** Update an existing project column */
+ patch: operations["projects/update-column"];
+ };
+ "/projects/columns/{column_id}/cards": {
+ /**
+ * List project cards
+ * @description Lists the project cards in a project.
+ */
+ get: operations["projects/list-cards"];
+ /** Create a project card */
+ post: operations["projects/create-card"];
+ };
+ "/projects/columns/{column_id}/moves": {
+ /** Move a project column */
+ post: operations["projects/move-column"];
+ };
+ "/projects/{project_id}": {
+ /**
+ * Get a project
+ * @description Gets a project by its `id`. Returns a `404 Not Found` status if projects are disabled. If you do not have sufficient privileges to perform this action, a `401 Unauthorized` or `410 Gone` status is returned.
+ */
+ get: operations["projects/get"];
+ /**
+ * Delete a project
+ * @description Deletes a project board. Returns a `404 Not Found` status if projects are disabled.
+ */
+ delete: operations["projects/delete"];
+ /**
+ * Update a project
+ * @description Updates a project board's information. Returns a `404 Not Found` status if projects are disabled. If you do not have sufficient privileges to perform this action, a `401 Unauthorized` or `410 Gone` status is returned.
+ */
+ patch: operations["projects/update"];
+ };
+ "/projects/{project_id}/collaborators": {
+ /**
+ * List project collaborators
+ * @description Lists the collaborators for an organization project. For a project, the list of collaborators includes outside collaborators, organization members that are direct collaborators, organization members with access through team memberships, organization members with access through default organization permissions, and organization owners. You must be an organization owner or a project `admin` to list collaborators.
+ */
+ get: operations["projects/list-collaborators"];
+ };
+ "/projects/{project_id}/collaborators/{username}": {
+ /**
+ * Add project collaborator
+ * @description Adds a collaborator to an organization project and sets their permission level. You must be an organization owner or a project `admin` to add a collaborator.
+ */
+ put: operations["projects/add-collaborator"];
+ /**
+ * Remove user as a collaborator
+ * @description Removes a collaborator from an organization project. You must be an organization owner or a project `admin` to remove a collaborator.
+ */
+ delete: operations["projects/remove-collaborator"];
+ };
+ "/projects/{project_id}/collaborators/{username}/permission": {
+ /**
+ * Get project permission for a user
+ * @description Returns the collaborator's permission level for an organization project. Possible values for the `permission` key: `admin`, `write`, `read`, `none`. You must be an organization owner or a project `admin` to review a user's permission level.
+ */
+ get: operations["projects/get-permission-for-user"];
+ };
+ "/projects/{project_id}/columns": {
+ /**
+ * List project columns
+ * @description Lists the project columns in a project.
+ */
+ get: operations["projects/list-columns"];
+ /**
+ * Create a project column
+ * @description Creates a new project column.
+ */
+ post: operations["projects/create-column"];
+ };
+ "/rate_limit": {
+ /**
+ * Get rate limit status for the authenticated user
+ * @description **Note:** Accessing this endpoint does not count against your REST API rate limit.
+ *
+ * Some categories of endpoints have custom rate limits that are separate from the rate limit governing the other REST API endpoints. For this reason, the API response categorizes your rate limit. Under `resources`, you'll see objects relating to different categories:
+ * * The `core` object provides your rate limit status for all non-search-related resources in the REST API.
+ * * The `search` object provides your rate limit status for the REST API for searching (excluding code searches). For more information, see "[Search](https://docs.github.com/rest/search/search)."
+ * * The `code_search` object provides your rate limit status for the REST API for searching code. For more information, see "[Search code](https://docs.github.com/rest/search/search#search-code)."
+ * * The `graphql` object provides your rate limit status for the GraphQL API. For more information, see "[Resource limitations](https://docs.github.com/graphql/overview/resource-limitations#rate-limit)."
+ * * The `integration_manifest` object provides your rate limit status for the `POST /app-manifests/{code}/conversions` operation. For more information, see "[Creating a GitHub App from a manifest](https://docs.github.com/apps/creating-github-apps/setting-up-a-github-app/creating-a-github-app-from-a-manifest#3-you-exchange-the-temporary-code-to-retrieve-the-app-configuration)."
+ * * The `dependency_snapshots` object provides your rate limit status for submitting snapshots to the dependency graph. For more information, see "[Dependency graph](https://docs.github.com/rest/dependency-graph)."
+ * * The `code_scanning_upload` object provides your rate limit status for uploading SARIF results to code scanning. For more information, see "[Uploading a SARIF file to GitHub](https://docs.github.com/code-security/code-scanning/integrating-with-code-scanning/uploading-a-sarif-file-to-github)."
+ * * The `actions_runner_registration` object provides your rate limit status for registering self-hosted runners in GitHub Actions. For more information, see "[Self-hosted runners](https://docs.github.com/rest/actions/self-hosted-runners)."
+ * * The `source_import` object is no longer in use for any API endpoints, and it will be removed in the next API version. For more information about API versions, see "[API Versions](https://docs.github.com/rest/overview/api-versions)."
+ *
+ * **Note:** The `rate` object is deprecated. If you're writing new API client code or updating existing code, you should use the `core` object instead of the `rate` object. The `core` object contains the same information that is present in the `rate` object.
+ */
+ get: operations["rate-limit/get"];
+ };
+ "/repos/{owner}/{repo}": {
+ /**
+ * Get a repository
+ * @description The `parent` and `source` objects are present when the repository is a fork. `parent` is the repository this repository was forked from, `source` is the ultimate source for the network.
+ *
+ * **Note:** In order to see the `security_and_analysis` block for a repository you must have admin permissions for the repository or be an owner or security manager for the organization that owns the repository. For more information, see "[Managing security managers in your organization](https://docs.github.com/organizations/managing-peoples-access-to-your-organization-with-roles/managing-security-managers-in-your-organization)."
+ */
+ get: operations["repos/get"];
+ /**
+ * Delete a repository
+ * @description Deleting a repository requires admin access.
+ *
+ * If an organization owner has configured the organization to prevent members from deleting organization-owned
+ * repositories, you will get a `403 Forbidden` response.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `delete_repo` scope to use this endpoint.
+ */
+ delete: operations["repos/delete"];
+ /**
+ * Update a repository
+ * @description **Note**: To edit a repository's topics, use the [Replace all repository topics](https://docs.github.com/rest/repos/repos#replace-all-repository-topics) endpoint.
+ */
+ patch: operations["repos/update"];
+ };
+ "/repos/{owner}/{repo}/actions/artifacts": {
+ /**
+ * List artifacts for a repository
+ * @description Lists all artifacts for a repository.
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.
+ */
+ get: operations["actions/list-artifacts-for-repo"];
+ };
+ "/repos/{owner}/{repo}/actions/artifacts/{artifact_id}": {
+ /**
+ * Get an artifact
+ * @description Gets a specific artifact for a workflow run.
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * If the repository is private, OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/get-artifact"];
+ /**
+ * Delete an artifact
+ * @description Deletes an artifact for a workflow run.
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ delete: operations["actions/delete-artifact"];
+ };
+ "/repos/{owner}/{repo}/actions/artifacts/{artifact_id}/{archive_format}": {
+ /**
+ * Download an artifact
+ * @description Gets a redirect URL to download an archive for a repository. This URL expires after 1 minute. Look for `Location:` in
+ * the response header to find the URL for the download. The `:archive_format` must be `zip`.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/download-artifact"];
+ };
+ "/repos/{owner}/{repo}/actions/cache/usage": {
+ /**
+ * Get GitHub Actions cache usage for a repository
+ * @description Gets GitHub Actions cache usage for a repository.
+ * The data fetched using this API is refreshed approximately every 5 minutes, so values returned from this endpoint may take at least 5 minutes to get updated.
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * If the repository is private, OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/get-actions-cache-usage"];
+ };
+ "/repos/{owner}/{repo}/actions/caches": {
+ /**
+ * List GitHub Actions caches for a repository
+ * @description Lists the GitHub Actions caches for a repository.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/get-actions-cache-list"];
+ /**
+ * Delete GitHub Actions caches for a repository (using a cache key)
+ * @description Deletes one or more GitHub Actions caches for a repository, using a complete cache key. By default, all caches that match the provided key are deleted, but you can optionally provide a Git ref to restrict deletions to caches that match both the provided key and the Git ref.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ delete: operations["actions/delete-actions-cache-by-key"];
+ };
+ "/repos/{owner}/{repo}/actions/caches/{cache_id}": {
+ /**
+ * Delete a GitHub Actions cache for a repository (using a cache ID)
+ * @description Deletes a GitHub Actions cache for a repository, using a cache ID.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ delete: operations["actions/delete-actions-cache-by-id"];
+ };
+ "/repos/{owner}/{repo}/actions/jobs/{job_id}": {
+ /**
+ * Get a job for a workflow run
+ * @description Gets a specific job in a workflow run.
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * If the repository is private, OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/get-job-for-workflow-run"];
+ };
+ "/repos/{owner}/{repo}/actions/jobs/{job_id}/logs": {
+ /**
+ * Download job logs for a workflow run
+ * @description Gets a redirect URL to download a plain text file of logs for a workflow job. This link expires after 1 minute. Look
+ * for `Location:` in the response header to find the URL for the download.
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * If the repository is private, OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/download-job-logs-for-workflow-run"];
+ };
+ "/repos/{owner}/{repo}/actions/jobs/{job_id}/rerun": {
+ /**
+ * Re-run a job from a workflow run
+ * @description Re-run a job and its dependent jobs in a workflow run.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ post: operations["actions/re-run-job-for-workflow-run"];
+ };
+ "/repos/{owner}/{repo}/actions/oidc/customization/sub": {
+ /**
+ * Get the customization template for an OIDC subject claim for a repository
+ * @description Gets the customization template for an OpenID Connect (OIDC) subject claim.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/get-custom-oidc-sub-claim-for-repo"];
+ /**
+ * Set the customization template for an OIDC subject claim for a repository
+ * @description Sets the customization template and `opt-in` or `opt-out` flag for an OpenID Connect (OIDC) subject claim for a repository.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ put: operations["actions/set-custom-oidc-sub-claim-for-repo"];
+ };
+ "/repos/{owner}/{repo}/actions/organization-secrets": {
+ /**
+ * List repository organization secrets
+ * @description Lists all organization secrets shared with a repository without revealing their encrypted
+ * values.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read secrets.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/list-repo-organization-secrets"];
+ };
+ "/repos/{owner}/{repo}/actions/organization-variables": {
+ /**
+ * List repository organization variables
+ * @description Lists all organization variables shared with a repository.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read variables.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/list-repo-organization-variables"];
+ };
+ "/repos/{owner}/{repo}/actions/permissions": {
+ /**
+ * Get GitHub Actions permissions for a repository
+ * @description Gets the GitHub Actions permissions policy for a repository, including whether GitHub Actions is enabled and the actions and reusable workflows allowed to run in the repository.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/get-github-actions-permissions-repository"];
+ /**
+ * Set GitHub Actions permissions for a repository
+ * @description Sets the GitHub Actions permissions policy for enabling GitHub Actions and allowed actions and reusable workflows in the repository.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ put: operations["actions/set-github-actions-permissions-repository"];
+ };
+ "/repos/{owner}/{repo}/actions/permissions/access": {
+ /**
+ * Get the level of access for workflows outside of the repository
+ * @description Gets the level of access that workflows outside of the repository have to actions and reusable workflows in the repository.
+ * This endpoint only applies to private repositories.
+ * For more information, see "[Allowing access to components in a private repository](https://docs.github.com/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#allowing-access-to-components-in-a-private-repository)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/get-workflow-access-to-repository"];
+ /**
+ * Set the level of access for workflows outside of the repository
+ * @description Sets the level of access that workflows outside of the repository have to actions and reusable workflows in the repository.
+ * This endpoint only applies to private repositories.
+ * For more information, see "[Allowing access to components in a private repository](https://docs.github.com/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#allowing-access-to-components-in-a-private-repository)".
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ put: operations["actions/set-workflow-access-to-repository"];
+ };
+ "/repos/{owner}/{repo}/actions/permissions/selected-actions": {
+ /**
+ * Get allowed actions and reusable workflows for a repository
+ * @description Gets the settings for selected actions and reusable workflows that are allowed in a repository. To use this endpoint, the repository policy for `allowed_actions` must be configured to `selected`. For more information, see "[Set GitHub Actions permissions for a repository](#set-github-actions-permissions-for-a-repository)."
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/get-allowed-actions-repository"];
+ /**
+ * Set allowed actions and reusable workflows for a repository
+ * @description Sets the actions and reusable workflows that are allowed in a repository. To use this endpoint, the repository permission policy for `allowed_actions` must be configured to `selected`. For more information, see "[Set GitHub Actions permissions for a repository](#set-github-actions-permissions-for-a-repository)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ put: operations["actions/set-allowed-actions-repository"];
+ };
+ "/repos/{owner}/{repo}/actions/permissions/workflow": {
+ /**
+ * Get default workflow permissions for a repository
+ * @description Gets the default workflow permissions granted to the `GITHUB_TOKEN` when running workflows in a repository,
+ * as well as if GitHub Actions can submit approving pull request reviews.
+ * For more information, see "[Setting the permissions of the GITHUB_TOKEN for your repository](https://docs.github.com/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#setting-the-permissions-of-the-github_token-for-your-repository)."
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/get-github-actions-default-workflow-permissions-repository"];
+ /**
+ * Set default workflow permissions for a repository
+ * @description Sets the default workflow permissions granted to the `GITHUB_TOKEN` when running workflows in a repository, and sets if GitHub Actions
+ * can submit approving pull request reviews.
+ * For more information, see "[Setting the permissions of the GITHUB_TOKEN for your repository](https://docs.github.com/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#setting-the-permissions-of-the-github_token-for-your-repository)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ put: operations["actions/set-github-actions-default-workflow-permissions-repository"];
+ };
+ "/repos/{owner}/{repo}/actions/runners": {
+ /**
+ * List self-hosted runners for a repository
+ * @description Lists all self-hosted runners configured in a repository.
+ *
+ * Authenticated users must have admin access to the repository to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/list-self-hosted-runners-for-repo"];
+ };
+ "/repos/{owner}/{repo}/actions/runners/downloads": {
+ /**
+ * List runner applications for a repository
+ * @description Lists binaries for the runner application that you can download and run.
+ *
+ * Authenticated users must have admin access to the repository to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/list-runner-applications-for-repo"];
+ };
+ "/repos/{owner}/{repo}/actions/runners/generate-jitconfig": {
+ /**
+ * Create configuration for a just-in-time runner for a repository
+ * @description Generates a configuration that can be passed to the runner application at startup.
+ *
+ * The authenticated user must have admin access to the repository.
+ *
+ * OAuth tokens and personal access tokens (classic) need the`repo` scope to use this endpoint.
+ */
+ post: operations["actions/generate-runner-jitconfig-for-repo"];
+ };
+ "/repos/{owner}/{repo}/actions/runners/registration-token": {
+ /**
+ * Create a registration token for a repository
+ * @description Returns a token that you can pass to the `config` script. The token expires after one hour.
+ *
+ * For example, you can replace `TOKEN` in the following example with the registration token provided by this endpoint to configure your self-hosted runner:
+ *
+ * ```
+ * ./config.sh --url https://github.com/octo-org --token TOKEN
+ * ```
+ *
+ * Authenticated users must have admin access to the repository to use this endpoint.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ post: operations["actions/create-registration-token-for-repo"];
+ };
+ "/repos/{owner}/{repo}/actions/runners/remove-token": {
+ /**
+ * Create a remove token for a repository
+ * @description Returns a token that you can pass to the `config` script to remove a self-hosted runner from an repository. The token expires after one hour.
+ *
+ * For example, you can replace `TOKEN` in the following example with the registration token provided by this endpoint to remove your self-hosted runner from an organization:
+ *
+ * ```
+ * ./config.sh remove --token TOKEN
+ * ```
+ *
+ * Authenticated users must have admin access to the repository to use this endpoint.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ post: operations["actions/create-remove-token-for-repo"];
+ };
+ "/repos/{owner}/{repo}/actions/runners/{runner_id}": {
+ /**
+ * Get a self-hosted runner for a repository
+ * @description Gets a specific self-hosted runner configured in a repository.
+ *
+ * Authenticated users must have admin access to the repository to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/get-self-hosted-runner-for-repo"];
+ /**
+ * Delete a self-hosted runner from a repository
+ * @description Forces the removal of a self-hosted runner from a repository. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
+ *
+ * Authenticated users must have admin access to the repository to use this endpoint.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ delete: operations["actions/delete-self-hosted-runner-from-repo"];
+ };
+ "/repos/{owner}/{repo}/actions/runners/{runner_id}/labels": {
+ /**
+ * List labels for a self-hosted runner for a repository
+ * @description Lists all labels for a self-hosted runner configured in a repository.
+ *
+ * Authenticated users must have admin access to the repository to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/list-labels-for-self-hosted-runner-for-repo"];
+ /**
+ * Set custom labels for a self-hosted runner for a repository
+ * @description Remove all previous custom labels and set the new custom labels for a specific
+ * self-hosted runner configured in a repository.
+ *
+ * Authenticated users must have admin access to the repository to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ put: operations["actions/set-custom-labels-for-self-hosted-runner-for-repo"];
+ /**
+ * Add custom labels to a self-hosted runner for a repository
+ * @description Adds custom labels to a self-hosted runner configured in a repository.
+ *
+ * Authenticated users must have admin access to the organization to use this endpoint.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ post: operations["actions/add-custom-labels-to-self-hosted-runner-for-repo"];
+ /**
+ * Remove all custom labels from a self-hosted runner for a repository
+ * @description Remove all custom labels from a self-hosted runner configured in a
+ * repository. Returns the remaining read-only labels from the runner.
+ *
+ * Authenticated users must have admin access to the repository to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ delete: operations["actions/remove-all-custom-labels-from-self-hosted-runner-for-repo"];
+ };
+ "/repos/{owner}/{repo}/actions/runners/{runner_id}/labels/{name}": {
+ /**
+ * Remove a custom label from a self-hosted runner for a repository
+ * @description Remove a custom label from a self-hosted runner configured
+ * in a repository. Returns the remaining labels from the runner.
+ *
+ * This endpoint returns a `404 Not Found` status if the custom label is not
+ * present on the runner.
+ *
+ * Authenticated users must have admin access to the repository to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ delete: operations["actions/remove-custom-label-from-self-hosted-runner-for-repo"];
+ };
+ "/repos/{owner}/{repo}/actions/runs": {
+ /**
+ * List workflow runs for a repository
+ * @description Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.
+ *
+ * This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.
+ */
+ get: operations["actions/list-workflow-runs-for-repo"];
+ };
+ "/repos/{owner}/{repo}/actions/runs/{run_id}": {
+ /**
+ * Get a workflow run
+ * @description Gets a specific workflow run.
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.
+ */
+ get: operations["actions/get-workflow-run"];
+ /**
+ * Delete a workflow run
+ * @description Deletes a specific workflow run.
+ *
+ * Anyone with write access to the repository can use this endpoint.
+ *
+ * If the repository is private, OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ delete: operations["actions/delete-workflow-run"];
+ };
+ "/repos/{owner}/{repo}/actions/runs/{run_id}/approvals": {
+ /**
+ * Get the review history for a workflow run
+ * @description Anyone with read access to the repository can use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.
+ */
+ get: operations["actions/get-reviews-for-run"];
+ };
+ "/repos/{owner}/{repo}/actions/runs/{run_id}/approve": {
+ /**
+ * Approve a workflow run for a fork pull request
+ * @description Approves a workflow run for a pull request from a public fork of a first time contributor. For more information, see ["Approving workflow runs from public forks](https://docs.github.com/actions/managing-workflow-runs/approving-workflow-runs-from-public-forks)."
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ post: operations["actions/approve-workflow-run"];
+ };
+ "/repos/{owner}/{repo}/actions/runs/{run_id}/artifacts": {
+ /**
+ * List workflow run artifacts
+ * @description Lists artifacts for a workflow run.
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.
+ */
+ get: operations["actions/list-workflow-run-artifacts"];
+ };
+ "/repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}": {
+ /**
+ * Get a workflow run attempt
+ * @description Gets a specific workflow run attempt.
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.
+ */
+ get: operations["actions/get-workflow-run-attempt"];
+ };
+ "/repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs": {
+ /**
+ * List jobs for a workflow run attempt
+ * @description Lists jobs for a specific workflow run attempt. You can use parameters to narrow the list of results. For more information
+ * about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.
+ */
+ get: operations["actions/list-jobs-for-workflow-run-attempt"];
+ };
+ "/repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/logs": {
+ /**
+ * Download workflow run attempt logs
+ * @description Gets a redirect URL to download an archive of log files for a specific workflow run attempt. This link expires after
+ * 1 minute. Look for `Location:` in the response header to find the URL for the download.
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * If the repository is private, OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/download-workflow-run-attempt-logs"];
+ };
+ "/repos/{owner}/{repo}/actions/runs/{run_id}/cancel": {
+ /**
+ * Cancel a workflow run
+ * @description Cancels a workflow run using its `id`.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ post: operations["actions/cancel-workflow-run"];
+ };
+ "/repos/{owner}/{repo}/actions/runs/{run_id}/deployment_protection_rule": {
+ /**
+ * Review custom deployment protection rules for a workflow run
+ * @description Approve or reject custom deployment protection rules provided by a GitHub App for a workflow run. For more information, see "[Using environments for deployment](https://docs.github.com/actions/deployment/targeting-different-environments/using-environments-for-deployment)."
+ *
+ * **Note:** GitHub Apps can only review their own custom deployment protection rules.
+ * To approve or reject pending deployments that are waiting for review from a specific person or team, see [`POST /repos/{owner}/{repo}/actions/runs/{run_id}/pending_deployments`](/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run).
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.
+ */
+ post: operations["actions/review-custom-gates-for-run"];
+ };
+ "/repos/{owner}/{repo}/actions/runs/{run_id}/force-cancel": {
+ /**
+ * Force cancel a workflow run
+ * @description Cancels a workflow run and bypasses conditions that would otherwise cause a workflow execution to continue, such as an `always()` condition on a job.
+ * You should only use this endpoint to cancel a workflow run when the workflow run is not responding to [`POST /repos/{owner}/{repo}/actions/runs/{run_id}/cancel`](/rest/actions/workflow-runs#cancel-a-workflow-run).
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ post: operations["actions/force-cancel-workflow-run"];
+ };
+ "/repos/{owner}/{repo}/actions/runs/{run_id}/jobs": {
+ /**
+ * List jobs for a workflow run
+ * @description Lists jobs for a workflow run. You can use parameters to narrow the list of results. For more information
+ * about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.
+ */
+ get: operations["actions/list-jobs-for-workflow-run"];
+ };
+ "/repos/{owner}/{repo}/actions/runs/{run_id}/logs": {
+ /**
+ * Download workflow run logs
+ * @description Gets a redirect URL to download an archive of log files for a workflow run. This link expires after 1 minute. Look for
+ * `Location:` in the response header to find the URL for the download.
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * If the repository is private, OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/download-workflow-run-logs"];
+ /**
+ * Delete workflow run logs
+ * @description Deletes all logs for a workflow run.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ delete: operations["actions/delete-workflow-run-logs"];
+ };
+ "/repos/{owner}/{repo}/actions/runs/{run_id}/pending_deployments": {
+ /**
+ * Get pending deployments for a workflow run
+ * @description Get all deployment environments for a workflow run that are waiting for protection rules to pass.
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * If the repository is private, OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/get-pending-deployments-for-run"];
+ /**
+ * Review pending deployments for a workflow run
+ * @description Approve or reject pending deployments that are waiting on approval by a required reviewer.
+ *
+ * Required reviewers with read access to the repository contents and deployments can use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ post: operations["actions/review-pending-deployments-for-run"];
+ };
+ "/repos/{owner}/{repo}/actions/runs/{run_id}/rerun": {
+ /**
+ * Re-run a workflow
+ * @description Re-runs your workflow run using its `id`.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ post: operations["actions/re-run-workflow"];
+ };
+ "/repos/{owner}/{repo}/actions/runs/{run_id}/rerun-failed-jobs": {
+ /**
+ * Re-run failed jobs from a workflow run
+ * @description Re-run all of the failed jobs and their dependent jobs in a workflow run using the `id` of the workflow run.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ post: operations["actions/re-run-workflow-failed-jobs"];
+ };
+ "/repos/{owner}/{repo}/actions/runs/{run_id}/timing": {
+ /**
+ * Get workflow run usage
+ * @description Gets the number of billable minutes and total run time for a specific workflow run. Billable minutes only apply to workflows in private repositories that use GitHub-hosted runners. Usage is listed for each GitHub-hosted runner operating system in milliseconds. Any job re-runs are also included in the usage. The usage does not include the multiplier for macOS and Windows runners and is not rounded up to the nearest whole minute. For more information, see "[Managing billing for GitHub Actions](https://docs.github.com/github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-actions)".
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.
+ */
+ get: operations["actions/get-workflow-run-usage"];
+ };
+ "/repos/{owner}/{repo}/actions/secrets": {
+ /**
+ * List repository secrets
+ * @description Lists all secrets available in a repository without revealing their encrypted
+ * values.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read secrets.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/list-repo-secrets"];
+ };
+ "/repos/{owner}/{repo}/actions/secrets/public-key": {
+ /**
+ * Get a repository public key
+ * @description Gets your public key, which you need to encrypt secrets. You need to
+ * encrypt a secret before you can create or update secrets.
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * If the repository is private, OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/get-repo-public-key"];
+ };
+ "/repos/{owner}/{repo}/actions/secrets/{secret_name}": {
+ /**
+ * Get a repository secret
+ * @description Gets a single repository secret without revealing its encrypted value.
+ *
+ * The authenticated user must have collaborator access to the repository to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/get-repo-secret"];
+ /**
+ * Create or update a repository secret
+ * @description Creates or updates a repository secret with an encrypted value. Encrypt your secret using
+ * [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api)."
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read secrets.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ put: operations["actions/create-or-update-repo-secret"];
+ /**
+ * Delete a repository secret
+ * @description Deletes a secret in a repository using the secret name.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read secrets.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ delete: operations["actions/delete-repo-secret"];
+ };
+ "/repos/{owner}/{repo}/actions/variables": {
+ /**
+ * List repository variables
+ * @description Lists all repository variables.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read variables.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/list-repo-variables"];
+ /**
+ * Create a repository variable
+ * @description Creates a repository variable that you can reference in a GitHub Actions workflow.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read variables.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ post: operations["actions/create-repo-variable"];
+ };
+ "/repos/{owner}/{repo}/actions/variables/{name}": {
+ /**
+ * Get a repository variable
+ * @description Gets a specific variable in a repository.
+ *
+ * The authenticated user must have collaborator access to the repository to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/get-repo-variable"];
+ /**
+ * Delete a repository variable
+ * @description Deletes a repository variable using the variable name.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read variables.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ delete: operations["actions/delete-repo-variable"];
+ /**
+ * Update a repository variable
+ * @description Updates a repository variable that you can reference in a GitHub Actions workflow.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read variables.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ patch: operations["actions/update-repo-variable"];
+ };
+ "/repos/{owner}/{repo}/actions/workflows": {
+ /**
+ * List repository workflows
+ * @description Lists the workflows in a repository.
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.
+ */
+ get: operations["actions/list-repo-workflows"];
+ };
+ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}": {
+ /**
+ * Get a workflow
+ * @description Gets a specific workflow. You can replace `workflow_id` with the workflow
+ * file name. For example, you could use `main.yaml`.
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.
+ */
+ get: operations["actions/get-workflow"];
+ };
+ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/disable": {
+ /**
+ * Disable a workflow
+ * @description Disables a workflow and sets the `state` of the workflow to `disabled_manually`. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ put: operations["actions/disable-workflow"];
+ };
+ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches": {
+ /**
+ * Create a workflow dispatch event
+ * @description You can use this endpoint to manually trigger a GitHub Actions workflow run. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`.
+ *
+ * You must configure your GitHub Actions workflow to run when the [`workflow_dispatch` webhook](/developers/webhooks-and-events/webhook-events-and-payloads#workflow_dispatch) event occurs. The `inputs` are configured in the workflow file. For more information about how to configure the `workflow_dispatch` event in the workflow file, see "[Events that trigger workflows](/actions/reference/events-that-trigger-workflows#workflow_dispatch)."
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ post: operations["actions/create-workflow-dispatch"];
+ };
+ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/enable": {
+ /**
+ * Enable a workflow
+ * @description Enables a workflow and sets the `state` of the workflow to `active`. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ put: operations["actions/enable-workflow"];
+ };
+ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": {
+ /**
+ * List workflow runs for a workflow
+ * @description List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).
+ *
+ * Anyone with read access to the repository can use this endpoint
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.
+ */
+ get: operations["actions/list-workflow-runs"];
+ };
+ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/timing": {
+ /**
+ * Get workflow usage
+ * @description Gets the number of billable minutes used by a specific workflow during the current billing cycle. Billable minutes only apply to workflows in private repositories that use GitHub-hosted runners. Usage is listed for each GitHub-hosted runner operating system in milliseconds. Any job re-runs are also included in the usage. The usage does not include the multiplier for macOS and Windows runners and is not rounded up to the nearest whole minute. For more information, see "[Managing billing for GitHub Actions](https://docs.github.com/github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-actions)".
+ *
+ * You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`.
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.
+ */
+ get: operations["actions/get-workflow-usage"];
+ };
+ "/repos/{owner}/{repo}/activity": {
+ /**
+ * List repository activities
+ * @description Lists a detailed history of changes to a repository, such as pushes, merges, force pushes, and branch changes, and associates these changes with commits and users.
+ *
+ * For more information about viewing repository activity,
+ * see "[Viewing activity and data for your repository](https://docs.github.com/repositories/viewing-activity-and-data-for-your-repository)."
+ */
+ get: operations["repos/list-activities"];
+ };
+ "/repos/{owner}/{repo}/assignees": {
+ /**
+ * List assignees
+ * @description Lists the [available assignees](https://docs.github.com/articles/assigning-issues-and-pull-requests-to-other-github-users/) for issues in a repository.
+ */
+ get: operations["issues/list-assignees"];
+ };
+ "/repos/{owner}/{repo}/assignees/{assignee}": {
+ /**
+ * Check if a user can be assigned
+ * @description Checks if a user has permission to be assigned to an issue in this repository.
+ *
+ * If the `assignee` can be assigned to issues in the repository, a `204` header with no content is returned.
+ *
+ * Otherwise a `404` status code is returned.
+ */
+ get: operations["issues/check-user-can-be-assigned"];
+ };
+ "/repos/{owner}/{repo}/autolinks": {
+ /**
+ * Get all autolinks of a repository
+ * @description Gets all autolinks that are configured for a repository.
+ *
+ * Information about autolinks are only available to repository administrators.
+ */
+ get: operations["repos/list-autolinks"];
+ /**
+ * Create an autolink reference for a repository
+ * @description Users with admin access to the repository can create an autolink.
+ */
+ post: operations["repos/create-autolink"];
+ };
+ "/repos/{owner}/{repo}/autolinks/{autolink_id}": {
+ /**
+ * Get an autolink reference of a repository
+ * @description This returns a single autolink reference by ID that was configured for the given repository.
+ *
+ * Information about autolinks are only available to repository administrators.
+ */
+ get: operations["repos/get-autolink"];
+ /**
+ * Delete an autolink reference from a repository
+ * @description This deletes a single autolink reference by ID that was configured for the given repository.
+ *
+ * Information about autolinks are only available to repository administrators.
+ */
+ delete: operations["repos/delete-autolink"];
+ };
+ "/repos/{owner}/{repo}/automated-security-fixes": {
+ /**
+ * Check if automated security fixes are enabled for a repository
+ * @description Shows whether automated security fixes are enabled, disabled or paused for a repository. The authenticated user must have admin read access to the repository. For more information, see "[Configuring automated security fixes](https://docs.github.com/articles/configuring-automated-security-fixes)".
+ */
+ get: operations["repos/check-automated-security-fixes"];
+ /**
+ * Enable automated security fixes
+ * @description Enables automated security fixes for a repository. The authenticated user must have admin access to the repository. For more information, see "[Configuring automated security fixes](https://docs.github.com/articles/configuring-automated-security-fixes)".
+ */
+ put: operations["repos/enable-automated-security-fixes"];
+ /**
+ * Disable automated security fixes
+ * @description Disables automated security fixes for a repository. The authenticated user must have admin access to the repository. For more information, see "[Configuring automated security fixes](https://docs.github.com/articles/configuring-automated-security-fixes)".
+ */
+ delete: operations["repos/disable-automated-security-fixes"];
+ };
+ "/repos/{owner}/{repo}/branches": {
+ /** List branches */
+ get: operations["repos/list-branches"];
+ };
+ "/repos/{owner}/{repo}/branches/{branch}": {
+ /** Get a branch */
+ get: operations["repos/get-branch"];
+ };
+ "/repos/{owner}/{repo}/branches/{branch}/protection": {
+ /**
+ * Get branch protection
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ */
+ get: operations["repos/get-branch-protection"];
+ /**
+ * Update branch protection
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * Protecting a branch requires admin or owner permissions to the repository.
+ *
+ * **Note**: Passing new arrays of `users` and `teams` replaces their previous values.
+ *
+ * **Note**: The list of users, apps, and teams in total is limited to 100 items.
+ */
+ put: operations["repos/update-branch-protection"];
+ /**
+ * Delete branch protection
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ */
+ delete: operations["repos/delete-branch-protection"];
+ };
+ "/repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins": {
+ /**
+ * Get admin branch protection
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ */
+ get: operations["repos/get-admin-branch-protection"];
+ /**
+ * Set admin branch protection
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * Adding admin enforcement requires admin or owner permissions to the repository and branch protection to be enabled.
+ */
+ post: operations["repos/set-admin-branch-protection"];
+ /**
+ * Delete admin branch protection
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * Removing admin enforcement requires admin or owner permissions to the repository and branch protection to be enabled.
+ */
+ delete: operations["repos/delete-admin-branch-protection"];
+ };
+ "/repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews": {
+ /**
+ * Get pull request review protection
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ */
+ get: operations["repos/get-pull-request-review-protection"];
+ /**
+ * Delete pull request review protection
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ */
+ delete: operations["repos/delete-pull-request-review-protection"];
+ /**
+ * Update pull request review protection
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * Updating pull request review enforcement requires admin or owner permissions to the repository and branch protection to be enabled.
+ *
+ * **Note**: Passing new arrays of `users` and `teams` replaces their previous values.
+ */
+ patch: operations["repos/update-pull-request-review-protection"];
+ };
+ "/repos/{owner}/{repo}/branches/{branch}/protection/required_signatures": {
+ /**
+ * Get commit signature protection
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * When authenticated with admin or owner permissions to the repository, you can use this endpoint to check whether a branch requires signed commits. An enabled status of `true` indicates you must sign commits on this branch. For more information, see [Signing commits with GPG](https://docs.github.com/articles/signing-commits-with-gpg) in GitHub Help.
+ *
+ * **Note**: You must enable branch protection to require signed commits.
+ */
+ get: operations["repos/get-commit-signature-protection"];
+ /**
+ * Create commit signature protection
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * When authenticated with admin or owner permissions to the repository, you can use this endpoint to require signed commits on a branch. You must enable branch protection to require signed commits.
+ */
+ post: operations["repos/create-commit-signature-protection"];
+ /**
+ * Delete commit signature protection
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * When authenticated with admin or owner permissions to the repository, you can use this endpoint to disable required signed commits on a branch. You must enable branch protection to require signed commits.
+ */
+ delete: operations["repos/delete-commit-signature-protection"];
+ };
+ "/repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks": {
+ /**
+ * Get status checks protection
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ */
+ get: operations["repos/get-status-checks-protection"];
+ /**
+ * Remove status check protection
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ */
+ delete: operations["repos/remove-status-check-protection"];
+ /**
+ * Update status check protection
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * Updating required status checks requires admin or owner permissions to the repository and branch protection to be enabled.
+ */
+ patch: operations["repos/update-status-check-protection"];
+ };
+ "/repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts": {
+ /**
+ * Get all status check contexts
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ */
+ get: operations["repos/get-all-status-check-contexts"];
+ /**
+ * Set status check contexts
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ */
+ put: operations["repos/set-status-check-contexts"];
+ /**
+ * Add status check contexts
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ */
+ post: operations["repos/add-status-check-contexts"];
+ /**
+ * Remove status check contexts
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ */
+ delete: operations["repos/remove-status-check-contexts"];
+ };
+ "/repos/{owner}/{repo}/branches/{branch}/protection/restrictions": {
+ /**
+ * Get access restrictions
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * Lists who has access to this protected branch.
+ *
+ * **Note**: Users, apps, and teams `restrictions` are only available for organization-owned repositories.
+ */
+ get: operations["repos/get-access-restrictions"];
+ /**
+ * Delete access restrictions
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * Disables the ability to restrict who can push to this branch.
+ */
+ delete: operations["repos/delete-access-restrictions"];
+ };
+ "/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps": {
+ /**
+ * Get apps with access to the protected branch
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * Lists the GitHub Apps that have push access to this branch. Only GitHub Apps that are installed on the repository and that have been granted write access to the repository contents can be added as authorized actors on a protected branch.
+ */
+ get: operations["repos/get-apps-with-access-to-protected-branch"];
+ /**
+ * Set app access restrictions
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * Replaces the list of apps that have push access to this branch. This removes all apps that previously had push access and grants push access to the new list of apps. Only GitHub Apps that are installed on the repository and that have been granted write access to the repository contents can be added as authorized actors on a protected branch.
+ */
+ put: operations["repos/set-app-access-restrictions"];
+ /**
+ * Add app access restrictions
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * Grants the specified apps push access for this branch. Only GitHub Apps that are installed on the repository and that have been granted write access to the repository contents can be added as authorized actors on a protected branch.
+ */
+ post: operations["repos/add-app-access-restrictions"];
+ /**
+ * Remove app access restrictions
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * Removes the ability of an app to push to this branch. Only GitHub Apps that are installed on the repository and that have been granted write access to the repository contents can be added as authorized actors on a protected branch.
+ */
+ delete: operations["repos/remove-app-access-restrictions"];
+ };
+ "/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams": {
+ /**
+ * Get teams with access to the protected branch
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * Lists the teams who have push access to this branch. The list includes child teams.
+ */
+ get: operations["repos/get-teams-with-access-to-protected-branch"];
+ /**
+ * Set team access restrictions
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * Replaces the list of teams that have push access to this branch. This removes all teams that previously had push access and grants push access to the new list of teams. Team restrictions include child teams.
+ */
+ put: operations["repos/set-team-access-restrictions"];
+ /**
+ * Add team access restrictions
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * Grants the specified teams push access for this branch. You can also give push access to child teams.
+ */
+ post: operations["repos/add-team-access-restrictions"];
+ /**
+ * Remove team access restrictions
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * Removes the ability of a team to push to this branch. You can also remove push access for child teams.
+ */
+ delete: operations["repos/remove-team-access-restrictions"];
+ };
+ "/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users": {
+ /**
+ * Get users with access to the protected branch
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * Lists the people who have push access to this branch.
+ */
+ get: operations["repos/get-users-with-access-to-protected-branch"];
+ /**
+ * Set user access restrictions
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * Replaces the list of people that have push access to this branch. This removes all people that previously had push access and grants push access to the new list of people.
+ *
+ * | Type | Description |
+ * | ------- | ----------------------------------------------------------------------------------------------------------------------------- |
+ * | `array` | Usernames for people who can have push access. **Note**: The list of users, apps, and teams in total is limited to 100 items. |
+ */
+ put: operations["repos/set-user-access-restrictions"];
+ /**
+ * Add user access restrictions
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * Grants the specified people push access for this branch.
+ *
+ * | Type | Description |
+ * | ------- | ----------------------------------------------------------------------------------------------------------------------------- |
+ * | `array` | Usernames for people who can have push access. **Note**: The list of users, apps, and teams in total is limited to 100 items. |
+ */
+ post: operations["repos/add-user-access-restrictions"];
+ /**
+ * Remove user access restrictions
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * Removes the ability of a user to push to this branch.
+ *
+ * | Type | Description |
+ * | ------- | --------------------------------------------------------------------------------------------------------------------------------------------- |
+ * | `array` | Usernames of the people who should no longer have push access. **Note**: The list of users, apps, and teams in total is limited to 100 items. |
+ */
+ delete: operations["repos/remove-user-access-restrictions"];
+ };
+ "/repos/{owner}/{repo}/branches/{branch}/rename": {
+ /**
+ * Rename a branch
+ * @description Renames a branch in a repository.
+ *
+ * **Note:** Although the API responds immediately, the branch rename process might take some extra time to complete in the background. You won't be able to push to the old branch name while the rename process is in progress. For more information, see "[Renaming a branch](https://docs.github.com/github/administering-a-repository/renaming-a-branch)".
+ *
+ * The authenticated user must have push access to the branch. If the branch is the default branch, the authenticated user must also have admin or owner permissions.
+ *
+ * In order to rename the default branch, fine-grained access tokens also need the `administration:write` repository permission.
+ */
+ post: operations["repos/rename-branch"];
+ };
+ "/repos/{owner}/{repo}/check-runs": {
+ /**
+ * Create a check run
+ * @description **Note:** The Checks API only looks for pushes in the repository where the check suite or check run were created. Pushes to a branch in a forked repository are not detected and return an empty `pull_requests` array.
+ *
+ * Creates a new check run for a specific commit in a repository. Your GitHub App must have the `checks:write` permission to create check runs.
+ *
+ * In a check suite, GitHub limits the number of check runs with the same name to 1000. Once these check runs exceed 1000, GitHub will start to automatically delete older check runs.
+ */
+ post: operations["checks/create"];
+ };
+ "/repos/{owner}/{repo}/check-runs/{check_run_id}": {
+ /**
+ * Get a check run
+ * @description Gets a single check run using its `id`.
+ *
+ * **Note:** The Checks API only looks for pushes in the repository where the check suite or check run were created. Pushes to a branch in a forked repository are not detected and return an empty `pull_requests` array.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint on a private repository.
+ */
+ get: operations["checks/get"];
+ /**
+ * Update a check run
+ * @description Updates a check run for a specific commit in a repository.
+ *
+ * **Note:** The endpoints to manage checks only look for pushes in the repository where the check suite or check run were created. Pushes to a branch in a forked repository are not detected and return an empty `pull_requests` array.
+ *
+ * OAuth apps and personal access tokens (classic) cannot use this endpoint.
+ */
+ patch: operations["checks/update"];
+ };
+ "/repos/{owner}/{repo}/check-runs/{check_run_id}/annotations": {
+ /**
+ * List check run annotations
+ * @description Lists annotations for a check run using the annotation `id`.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint on a private repository.
+ */
+ get: operations["checks/list-annotations"];
+ };
+ "/repos/{owner}/{repo}/check-runs/{check_run_id}/rerequest": {
+ /**
+ * Rerequest a check run
+ * @description Triggers GitHub to rerequest an existing check run, without pushing new code to a repository. This endpoint will trigger the [`check_run` webhook](https://docs.github.com/webhooks/event-payloads/#check_run) event with the action `rerequested`. When a check run is `rerequested`, its `status` is reset to `queued` and the `conclusion` is cleared.
+ *
+ * For more information about how to re-run GitHub Actions jobs, see "[Re-run a job from a workflow run](https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run)".
+ *
+ * OAuth apps and personal access tokens (classic) cannot use this endpoint.
+ */
+ post: operations["checks/rerequest-run"];
+ };
+ "/repos/{owner}/{repo}/check-suites": {
+ /**
+ * Create a check suite
+ * @description Creates a check suite manually. By default, check suites are automatically created when you create a [check run](https://docs.github.com/rest/checks/runs). You only need to use this endpoint for manually creating check suites when you've disabled automatic creation using "[Update repository preferences for check suites](https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites)".
+ *
+ * **Note:** The Checks API only looks for pushes in the repository where the check suite or check run were created. Pushes to a branch in a forked repository are not detected and return an empty `pull_requests` array and a `null` value for `head_branch`.
+ *
+ * OAuth apps and personal access tokens (classic) cannot use this endpoint.
+ */
+ post: operations["checks/create-suite"];
+ };
+ "/repos/{owner}/{repo}/check-suites/preferences": {
+ /**
+ * Update repository preferences for check suites
+ * @description Changes the default automatic flow when creating check suites. By default, a check suite is automatically created each time code is pushed to a repository. When you disable the automatic creation of check suites, you can manually [Create a check suite](https://docs.github.com/rest/checks/suites#create-a-check-suite).
+ * You must have admin permissions in the repository to set preferences for check suites.
+ */
+ patch: operations["checks/set-suites-preferences"];
+ };
+ "/repos/{owner}/{repo}/check-suites/{check_suite_id}": {
+ /**
+ * Get a check suite
+ * @description Gets a single check suite using its `id`.
+ *
+ * **Note:** The Checks API only looks for pushes in the repository where the check suite or check run were created. Pushes to a branch in a forked repository are not detected and return an empty `pull_requests` array and a `null` value for `head_branch`.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint on a private repository.
+ */
+ get: operations["checks/get-suite"];
+ };
+ "/repos/{owner}/{repo}/check-suites/{check_suite_id}/check-runs": {
+ /**
+ * List check runs in a check suite
+ * @description Lists check runs for a check suite using its `id`.
+ *
+ * **Note:** The endpoints to manage checks only look for pushes in the repository where the check suite or check run were created. Pushes to a branch in a forked repository are not detected and return an empty `pull_requests` array.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint on a private repository.
+ */
+ get: operations["checks/list-for-suite"];
+ };
+ "/repos/{owner}/{repo}/check-suites/{check_suite_id}/rerequest": {
+ /**
+ * Rerequest a check suite
+ * @description Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the [`check_suite` webhook](https://docs.github.com/webhooks/event-payloads/#check_suite) event with the action `rerequested`. When a check suite is `rerequested`, its `status` is reset to `queued` and the `conclusion` is cleared.
+ *
+ * OAuth apps and personal access tokens (classic) cannot use this endpoint.
+ */
+ post: operations["checks/rerequest-suite"];
+ };
+ "/repos/{owner}/{repo}/code-scanning/alerts": {
+ /**
+ * List code scanning alerts for a repository
+ * @description Lists all open code scanning alerts for the default branch (usually `main`
+ * or `master`). You must use an access token with the `security_events` scope to use
+ * this endpoint with private repos, the `public_repo` scope also grants permission to read
+ * security events on public repos only. GitHub Apps must have the `security_events` read
+ * permission to use this endpoint.
+ *
+ * The response includes a `most_recent_instance` object.
+ * This provides details of the most recent instance of this alert
+ * for the default branch or for the specified Git reference
+ * (if you used `ref` in the request).
+ */
+ get: operations["code-scanning/list-alerts-for-repo"];
+ };
+ "/repos/{owner}/{repo}/code-scanning/alerts/{alert_number}": {
+ /**
+ * Get a code scanning alert
+ * @description Gets a single code scanning alert.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.
+ */
+ get: operations["code-scanning/get-alert"];
+ /**
+ * Update a code scanning alert
+ * @description Updates the status of a single code scanning alert.
+ * OAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.
+ */
+ patch: operations["code-scanning/update-alert"];
+ };
+ "/repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/instances": {
+ /**
+ * List instances of a code scanning alert
+ * @description Lists all instances of the specified code scanning alert.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.
+ */
+ get: operations["code-scanning/list-alert-instances"];
+ };
+ "/repos/{owner}/{repo}/code-scanning/analyses": {
+ /**
+ * List code scanning analyses for a repository
+ * @description Lists the details of all code scanning analyses for a repository,
+ * starting with the most recent.
+ * The response is paginated and you can use the `page` and `per_page` parameters
+ * to list the analyses you're interested in.
+ * By default 30 analyses are listed per page.
+ *
+ * The `rules_count` field in the response give the number of rules
+ * that were run in the analysis.
+ * For very old analyses this data is not available,
+ * and `0` is returned in this field.
+ *
+ * **Deprecation notice**:
+ * The `tool_name` field is deprecated and will, in future, not be included in the response for this endpoint. The example response reflects this change. The tool name can now be found inside the `tool` field.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.
+ */
+ get: operations["code-scanning/list-recent-analyses"];
+ };
+ "/repos/{owner}/{repo}/code-scanning/analyses/{analysis_id}": {
+ /**
+ * Get a code scanning analysis for a repository
+ * @description Gets a specified code scanning analysis for a repository.
+ *
+ * The default JSON response contains fields that describe the analysis.
+ * This includes the Git reference and commit SHA to which the analysis relates,
+ * the datetime of the analysis, the name of the code scanning tool,
+ * and the number of alerts.
+ *
+ * The `rules_count` field in the default response give the number of rules
+ * that were run in the analysis.
+ * For very old analyses this data is not available,
+ * and `0` is returned in this field.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/sarif+json`**: Instead of returning a summary of the analysis, this endpoint returns a subset of the analysis data that was uploaded. The data is formatted as [SARIF version 2.1.0](https://docs.oasis-open.org/sarif/sarif/v2.1.0/cs01/sarif-v2.1.0-cs01.html). It also returns additional data such as the `github/alertNumber` and `github/alertUrl` properties.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.
+ */
+ get: operations["code-scanning/get-analysis"];
+ /**
+ * Delete a code scanning analysis from a repository
+ * @description Deletes a specified code scanning analysis from a repository.
+ *
+ * You can delete one analysis at a time.
+ * To delete a series of analyses, start with the most recent analysis and work backwards.
+ * Conceptually, the process is similar to the undo function in a text editor.
+ *
+ * When you list the analyses for a repository,
+ * one or more will be identified as deletable in the response:
+ *
+ * ```
+ * "deletable": true
+ * ```
+ *
+ * An analysis is deletable when it's the most recent in a set of analyses.
+ * Typically, a repository will have multiple sets of analyses
+ * for each enabled code scanning tool,
+ * where a set is determined by a unique combination of analysis values:
+ *
+ * * `ref`
+ * * `tool`
+ * * `category`
+ *
+ * If you attempt to delete an analysis that is not the most recent in a set,
+ * you'll get a 400 response with the message:
+ *
+ * ```
+ * Analysis specified is not deletable.
+ * ```
+ *
+ * The response from a successful `DELETE` operation provides you with
+ * two alternative URLs for deleting the next analysis in the set:
+ * `next_analysis_url` and `confirm_delete_url`.
+ * Use the `next_analysis_url` URL if you want to avoid accidentally deleting the final analysis
+ * in a set. This is a useful option if you want to preserve at least one analysis
+ * for the specified tool in your repository.
+ * Use the `confirm_delete_url` URL if you are content to remove all analyses for a tool.
+ * When you delete the last analysis in a set, the value of `next_analysis_url` and `confirm_delete_url`
+ * in the 200 response is `null`.
+ *
+ * As an example of the deletion process,
+ * let's imagine that you added a workflow that configured a particular code scanning tool
+ * to analyze the code in a repository. This tool has added 15 analyses:
+ * 10 on the default branch, and another 5 on a topic branch.
+ * You therefore have two separate sets of analyses for this tool.
+ * You've now decided that you want to remove all of the analyses for the tool.
+ * To do this you must make 15 separate deletion requests.
+ * To start, you must find an analysis that's identified as deletable.
+ * Each set of analyses always has one that's identified as deletable.
+ * Having found the deletable analysis for one of the two sets,
+ * delete this analysis and then continue deleting the next analysis in the set until they're all deleted.
+ * Then repeat the process for the second set.
+ * The procedure therefore consists of a nested loop:
+ *
+ * **Outer loop**:
+ * * List the analyses for the repository, filtered by tool.
+ * * Parse this list to find a deletable analysis. If found:
+ *
+ * **Inner loop**:
+ * * Delete the identified analysis.
+ * * Parse the response for the value of `confirm_delete_url` and, if found, use this in the next iteration.
+ *
+ * The above process assumes that you want to remove all trace of the tool's analyses from the GitHub user interface, for the specified repository, and it therefore uses the `confirm_delete_url` value. Alternatively, you could use the `next_analysis_url` value, which would leave the last analysis in each set undeleted to avoid removing a tool's analysis entirely.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.
+ */
+ delete: operations["code-scanning/delete-analysis"];
+ };
+ "/repos/{owner}/{repo}/code-scanning/codeql/databases": {
+ /**
+ * List CodeQL databases for a repository
+ * @description Lists the CodeQL databases that are available in a repository.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.
+ */
+ get: operations["code-scanning/list-codeql-databases"];
+ };
+ "/repos/{owner}/{repo}/code-scanning/codeql/databases/{language}": {
+ /**
+ * Get a CodeQL database for a repository
+ * @description Gets a CodeQL database for a language in a repository.
+ *
+ * By default this endpoint returns JSON metadata about the CodeQL database. To
+ * download the CodeQL database binary content, set the `Accept` header of the request
+ * to [`application/zip`](https://docs.github.com/rest/overview/media-types), and make sure
+ * your HTTP client is configured to follow redirects or use the `Location` header
+ * to make a second request to get the redirect URL.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.
+ */
+ get: operations["code-scanning/get-codeql-database"];
+ };
+ "/repos/{owner}/{repo}/code-scanning/default-setup": {
+ /**
+ * Get a code scanning default setup configuration
+ * @description Gets a code scanning default setup configuration.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.
+ */
+ get: operations["code-scanning/get-default-setup"];
+ /**
+ * Update a code scanning default setup configuration
+ * @description Updates a code scanning default setup configuration.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.
+ */
+ patch: operations["code-scanning/update-default-setup"];
+ };
+ "/repos/{owner}/{repo}/code-scanning/sarifs": {
+ /**
+ * Upload an analysis as SARIF data
+ * @description Uploads SARIF data containing the results of a code scanning analysis to make the results available in a repository. For troubleshooting information, see "[Troubleshooting SARIF uploads](https://docs.github.com/code-security/code-scanning/troubleshooting-sarif)."
+ *
+ * There are two places where you can upload code scanning results.
+ * - If you upload to a pull request, for example `--ref refs/pull/42/merge` or `--ref refs/pull/42/head`, then the results appear as alerts in a pull request check. For more information, see "[Triaging code scanning alerts in pull requests](/code-security/secure-coding/triaging-code-scanning-alerts-in-pull-requests)."
+ * - If you upload to a branch, for example `--ref refs/heads/my-branch`, then the results appear in the **Security** tab for your repository. For more information, see "[Managing code scanning alerts for your repository](/code-security/secure-coding/managing-code-scanning-alerts-for-your-repository#viewing-the-alerts-for-a-repository)."
+ *
+ * You must compress the SARIF-formatted analysis data that you want to upload, using `gzip`, and then encode it as a Base64 format string. For example:
+ *
+ * ```
+ * gzip -c analysis-data.sarif | base64 -w0
+ * ```
+ *
+ * SARIF upload supports a maximum number of entries per the following data objects, and an analysis will be rejected if any of these objects is above its maximum value. For some objects, there are additional values over which the entries will be ignored while keeping the most important entries whenever applicable.
+ * To get the most out of your analysis when it includes data above the supported limits, try to optimize the analysis configuration. For example, for the CodeQL tool, identify and remove the most noisy queries. For more information, see "[SARIF results exceed one or more limits](https://docs.github.com/code-security/code-scanning/troubleshooting-sarif/results-exceed-limit)."
+ *
+ *
+ * | **SARIF data** | **Maximum values** | **Additional limits** |
+ * |----------------------------------|:------------------:|----------------------------------------------------------------------------------|
+ * | Runs per file | 20 | |
+ * | Results per run | 25,000 | Only the top 5,000 results will be included, prioritized by severity. |
+ * | Rules per run | 25,000 | |
+ * | Tool extensions per run | 100 | |
+ * | Thread Flow Locations per result | 10,000 | Only the top 1,000 Thread Flow Locations will be included, using prioritization. |
+ * | Location per result | 1,000 | Only 100 locations will be included. |
+ * | Tags per rule | 20 | Only 10 tags will be included. |
+ *
+ *
+ * The `202 Accepted` response includes an `id` value.
+ * You can use this ID to check the status of the upload by using it in the `/sarifs/{sarif_id}` endpoint.
+ * For more information, see "[Get information about a SARIF upload](/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.
+ */
+ post: operations["code-scanning/upload-sarif"];
+ };
+ "/repos/{owner}/{repo}/code-scanning/sarifs/{sarif_id}": {
+ /**
+ * Get information about a SARIF upload
+ * @description Gets information about a SARIF upload, including the status and the URL of the analysis that was uploaded so that you can retrieve details of the analysis. For more information, see "[Get a code scanning analysis for a repository](/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository)."
+ * OAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.
+ */
+ get: operations["code-scanning/get-sarif"];
+ };
+ "/repos/{owner}/{repo}/codeowners/errors": {
+ /**
+ * List CODEOWNERS errors
+ * @description List any syntax errors that are detected in the CODEOWNERS
+ * file.
+ *
+ * For more information about the correct CODEOWNERS syntax,
+ * see "[About code owners](https://docs.github.com/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners)."
+ */
+ get: operations["repos/codeowners-errors"];
+ };
+ "/repos/{owner}/{repo}/codespaces": {
+ /**
+ * List codespaces in a repository for the authenticated user
+ * @description Lists the codespaces associated to a specified repository and the authenticated user.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` scope to use this endpoint.
+ */
+ get: operations["codespaces/list-in-repository-for-authenticated-user"];
+ /**
+ * Create a codespace in a repository
+ * @description Creates a codespace owned by the authenticated user in the specified repository.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` scope to use this endpoint.
+ */
+ post: operations["codespaces/create-with-repo-for-authenticated-user"];
+ };
+ "/repos/{owner}/{repo}/codespaces/devcontainers": {
+ /**
+ * List devcontainer configurations in a repository for the authenticated user
+ * @description Lists the devcontainer.json files associated with a specified repository and the authenticated user. These files
+ * specify launchpoint configurations for codespaces created within the repository.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` scope to use this endpoint.
+ */
+ get: operations["codespaces/list-devcontainers-in-repository-for-authenticated-user"];
+ };
+ "/repos/{owner}/{repo}/codespaces/machines": {
+ /**
+ * List available machine types for a repository
+ * @description List the machine types available for a given repository based on its configuration.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` scope to use this endpoint.
+ */
+ get: operations["codespaces/repo-machines-for-authenticated-user"];
+ };
+ "/repos/{owner}/{repo}/codespaces/new": {
+ /**
+ * Get default attributes for a codespace
+ * @description Gets the default attributes for codespaces created by the user with the repository.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` scope to use this endpoint.
+ */
+ get: operations["codespaces/pre-flight-with-repo-for-authenticated-user"];
+ };
+ "/repos/{owner}/{repo}/codespaces/permissions_check": {
+ /**
+ * Check if permissions defined by a devcontainer have been accepted by the authenticated user
+ * @description Checks whether the permissions defined by a given devcontainer configuration have been accepted by the authenticated user.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` scope to use this endpoint.
+ */
+ get: operations["codespaces/check-permissions-for-devcontainer"];
+ };
+ "/repos/{owner}/{repo}/codespaces/secrets": {
+ /**
+ * List repository secrets
+ * @description Lists all development environment secrets available in a repository without revealing their encrypted
+ * values.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["codespaces/list-repo-secrets"];
+ };
+ "/repos/{owner}/{repo}/codespaces/secrets/public-key": {
+ /**
+ * Get a repository public key
+ * @description Gets your public key, which you need to encrypt secrets. You need to
+ * encrypt a secret before you can create or update secrets.
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * If the repository is private, OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["codespaces/get-repo-public-key"];
+ };
+ "/repos/{owner}/{repo}/codespaces/secrets/{secret_name}": {
+ /**
+ * Get a repository secret
+ * @description Gets a single repository development environment secret without revealing its encrypted value.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["codespaces/get-repo-secret"];
+ /**
+ * Create or update a repository secret
+ * @description Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using
+ * [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ put: operations["codespaces/create-or-update-repo-secret"];
+ /**
+ * Delete a repository secret
+ * @description Deletes a development environment secret in a repository using the secret name.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ delete: operations["codespaces/delete-repo-secret"];
+ };
+ "/repos/{owner}/{repo}/collaborators": {
+ /**
+ * List repository collaborators
+ * @description For organization-owned repositories, the list of collaborators includes outside collaborators, organization members that are direct collaborators, organization members with access through team memberships, organization members with access through default organization permissions, and organization owners.
+ * Organization members with write, maintain, or admin privileges on the organization-owned repository can use this endpoint.
+ *
+ * Team members will include the members of child teams.
+ *
+ * The authenticated user must have push access to the repository to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:org` and `repo` scopes to use this endpoint.
+ */
+ get: operations["repos/list-collaborators"];
+ };
+ "/repos/{owner}/{repo}/collaborators/{username}": {
+ /**
+ * Check if a user is a repository collaborator
+ * @description For organization-owned repositories, the list of collaborators includes outside collaborators, organization members that are direct collaborators, organization members with access through team memberships, organization members with access through default organization permissions, and organization owners.
+ *
+ * Team members will include the members of child teams.
+ *
+ * The authenticated user must have push access to the repository to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:org` and `repo` scopes to use this endpoint.
+ */
+ get: operations["repos/check-collaborator"];
+ /**
+ * Add a repository collaborator
+ * @description This endpoint triggers [notifications](https://docs.github.com/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. For more information, see "[Rate limits for the API](https://docs.github.com/rest/overview/rate-limits-for-the-rest-api#about-secondary-rate-limits)" and "[Best practices for using the REST API](https://docs.github.com/rest/guides/best-practices-for-using-the-rest-api)."
+ *
+ * Adding an outside collaborator may be restricted by enterprise administrators. For more information, see "[Enforcing repository management policies in your enterprise](https://docs.github.com/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-inviting-outside-collaborators-to-repositories)."
+ *
+ * For more information on permission levels, see "[Repository permission levels for an organization](https://docs.github.com/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization#permission-levels-for-repositories-owned-by-an-organization)". There are restrictions on which permissions can be granted to organization members when an organization base role is in place. In this case, the permission being given must be equal to or higher than the org base permission. Otherwise, the request will fail with:
+ *
+ * ```
+ * Cannot assign {member} permission of {role name}
+ * ```
+ *
+ * Note that, if you choose not to pass any parameters, you'll need to set `Content-Length` to zero when calling out to this endpoint. For more information, see "[HTTP method](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#http-method)."
+ *
+ * The invitee will receive a notification that they have been invited to the repository, which they must accept or decline. They may do this via the notifications page, the email they receive, or by using the [API](https://docs.github.com/rest/collaborators/invitations).
+ *
+ * **Updating an existing collaborator's permission level**
+ *
+ * The endpoint can also be used to change the permissions of an existing collaborator without first removing and re-adding the collaborator. To change the permissions, use the same endpoint and pass a different `permission` parameter. The response will be a `204`, with no other indication that the permission level changed.
+ *
+ * **Rate limits**
+ *
+ * You are limited to sending 50 invitations to a repository per 24 hour period. Note there is no limit if you are inviting organization members to an organization repository.
+ */
+ put: operations["repos/add-collaborator"];
+ /**
+ * Remove a repository collaborator
+ * @description Removes a collaborator from a repository.
+ *
+ * To use this endpoint, the authenticated user must either be an administrator of the repository or target themselves for removal.
+ *
+ * This endpoint also:
+ * - Cancels any outstanding invitations
+ * - Unasigns the user from any issues
+ * - Removes access to organization projects if the user is not an organization member and is not a collaborator on any other organization repositories.
+ * - Unstars the repository
+ * - Updates access permissions to packages
+ *
+ * Removing a user as a collaborator has the following effects on forks:
+ * - If the user had access to a fork through their membership to this repository, the user will also be removed from the fork.
+ * - If the user had their own fork of the repository, the fork will be deleted.
+ * - If the user still has read access to the repository, open pull requests by this user from a fork will be denied.
+ *
+ * **Note**: A user can still have access to the repository through organization permissions like base repository permissions.
+ *
+ * Although the API responds immediately, the additional permission updates might take some extra time to complete in the background.
+ *
+ * For more information on fork permissions, see "[About permissions and visibility of forks](https://docs.github.com/pull-requests/collaborating-with-pull-requests/working-with-forks/about-permissions-and-visibility-of-forks)".
+ */
+ delete: operations["repos/remove-collaborator"];
+ };
+ "/repos/{owner}/{repo}/collaborators/{username}/permission": {
+ /**
+ * Get repository permissions for a user
+ * @description Checks the repository permission of a collaborator. The possible repository
+ * permissions are `admin`, `write`, `read`, and `none`.
+ *
+ * *Note*: The `permission` attribute provides the legacy base roles of `admin`, `write`, `read`, and `none`, where the
+ * `maintain` role is mapped to `write` and the `triage` role is mapped to `read`. To determine the role assigned to the
+ * collaborator, see the `role_name` attribute, which will provide the full role name, including custom roles. The
+ * `permissions` hash can also be used to determine which base level of access the collaborator has to the repository.
+ */
+ get: operations["repos/get-collaborator-permission-level"];
+ };
+ "/repos/{owner}/{repo}/comments": {
+ /**
+ * List commit comments for a repository
+ * @description Lists the commit comments for a specified repository. Comments are ordered by ascending ID.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github-commitcomment.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github-commitcomment.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github-commitcomment.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github-commitcomment.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ get: operations["repos/list-commit-comments-for-repo"];
+ };
+ "/repos/{owner}/{repo}/comments/{comment_id}": {
+ /**
+ * Get a commit comment
+ * @description Gets a specified commit comment.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github-commitcomment.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github-commitcomment.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github-commitcomment.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github-commitcomment.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ get: operations["repos/get-commit-comment"];
+ /** Delete a commit comment */
+ delete: operations["repos/delete-commit-comment"];
+ /**
+ * Update a commit comment
+ * @description Updates the contents of a specified commit comment.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github-commitcomment.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github-commitcomment.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github-commitcomment.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github-commitcomment.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ patch: operations["repos/update-commit-comment"];
+ };
+ "/repos/{owner}/{repo}/comments/{comment_id}/reactions": {
+ /**
+ * List reactions for a commit comment
+ * @description List the reactions to a [commit comment](https://docs.github.com/rest/commits/comments#get-a-commit-comment).
+ */
+ get: operations["reactions/list-for-commit-comment"];
+ /**
+ * Create reaction for a commit comment
+ * @description Create a reaction to a [commit comment](https://docs.github.com/rest/commits/comments#get-a-commit-comment). A response with an HTTP `200` status means that you already added the reaction type to this commit comment.
+ */
+ post: operations["reactions/create-for-commit-comment"];
+ };
+ "/repos/{owner}/{repo}/comments/{comment_id}/reactions/{reaction_id}": {
+ /**
+ * Delete a commit comment reaction
+ * @description **Note:** You can also specify a repository by `repository_id` using the route `DELETE /repositories/:repository_id/comments/:comment_id/reactions/:reaction_id`.
+ *
+ * Delete a reaction to a [commit comment](https://docs.github.com/rest/commits/comments#get-a-commit-comment).
+ */
+ delete: operations["reactions/delete-for-commit-comment"];
+ };
+ "/repos/{owner}/{repo}/commits": {
+ /**
+ * List commits
+ * @description **Signature verification object**
+ *
+ * The response will include a `verification` object that describes the result of verifying the commit's signature. The following fields are included in the `verification` object:
+ *
+ * | Name | Type | Description |
+ * | ---- | ---- | ----------- |
+ * | `verified` | `boolean` | Indicates whether GitHub considers the signature in this commit to be verified. |
+ * | `reason` | `string` | The reason for verified value. Possible values and their meanings are enumerated in table below. |
+ * | `signature` | `string` | The signature that was extracted from the commit. |
+ * | `payload` | `string` | The value that was signed. |
+ *
+ * These are the possible values for `reason` in the `verification` object:
+ *
+ * | Value | Description |
+ * | ----- | ----------- |
+ * | `expired_key` | The key that made the signature is expired. |
+ * | `not_signing_key` | The "signing" flag is not among the usage flags in the GPG key that made the signature. |
+ * | `gpgverify_error` | There was an error communicating with the signature verification service. |
+ * | `gpgverify_unavailable` | The signature verification service is currently unavailable. |
+ * | `unsigned` | The object does not include a signature. |
+ * | `unknown_signature_type` | A non-PGP signature was found in the commit. |
+ * | `no_user` | No user was associated with the `committer` email address in the commit. |
+ * | `unverified_email` | The `committer` email address in the commit was associated with a user, but the email address is not verified on their account. |
+ * | `bad_email` | The `committer` email address in the commit is not included in the identities of the PGP key that made the signature. |
+ * | `unknown_key` | The key that made the signature has not been registered with any user's account. |
+ * | `malformed_signature` | There was an error parsing the signature. |
+ * | `invalid` | The signature could not be cryptographically verified using the key whose key-id was found in the signature. |
+ * | `valid` | None of the above errors applied, so the signature is considered to be verified. |
+ */
+ get: operations["repos/list-commits"];
+ };
+ "/repos/{owner}/{repo}/commits/{commit_sha}/branches-where-head": {
+ /**
+ * List branches for HEAD commit
+ * @description Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * Returns all branches where the given commit SHA is the HEAD, or latest commit for the branch.
+ */
+ get: operations["repos/list-branches-for-head-commit"];
+ };
+ "/repos/{owner}/{repo}/commits/{commit_sha}/comments": {
+ /**
+ * List commit comments
+ * @description Lists the comments for a specified commit.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github-commitcomment.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github-commitcomment.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github-commitcomment.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github-commitcomment.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ get: operations["repos/list-comments-for-commit"];
+ /**
+ * Create a commit comment
+ * @description Create a comment for a commit using its `:commit_sha`.
+ *
+ * This endpoint triggers [notifications](https://docs.github.com/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. For more information, see "[Rate limits for the API](https://docs.github.com/rest/overview/rate-limits-for-the-rest-api#about-secondary-rate-limits)" and "[Best practices for using the REST API](https://docs.github.com/rest/guides/best-practices-for-using-the-rest-api)."
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github-commitcomment.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github-commitcomment.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github-commitcomment.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github-commitcomment.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ post: operations["repos/create-commit-comment"];
+ };
+ "/repos/{owner}/{repo}/commits/{commit_sha}/pulls": {
+ /**
+ * List pull requests associated with a commit
+ * @description Lists the merged pull request that introduced the commit to the repository. If the commit is not present in the default branch, will only return open pull requests associated with the commit.
+ *
+ * To list the open or merged pull requests associated with a branch, you can set the `commit_sha` parameter to the branch name.
+ */
+ get: operations["repos/list-pull-requests-associated-with-commit"];
+ };
+ "/repos/{owner}/{repo}/commits/{ref}": {
+ /**
+ * Get a commit
+ * @description Returns the contents of a single commit reference. You must have `read` access for the repository to use this endpoint.
+ *
+ * **Note:** If there are more than 300 files in the commit diff and the default JSON media type is requested, the response will include pagination link headers for the remaining files, up to a limit of 3000 files. Each page contains the static commit information, and the only changes are to the file listing.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)." Pagination query parameters are not supported for these media types.
+ *
+ * - **`application/vnd.github.diff`**: Returns the diff of the commit. Larger diffs may time out and return a 5xx status code.
+ * - **`application/vnd.github.patch`**: Returns the patch of the commit. Diffs with binary data will have no `patch` property. Larger diffs may time out and return a 5xx status code.
+ * - **`application/vnd.github.sha`**: Returns the commit's SHA-1 hash. You can use this endpoint to check if a remote reference's SHA-1 hash is the same as your local reference's SHA-1 hash by providing the local SHA-1 reference as the ETag.
+ *
+ * **Signature verification object**
+ *
+ * The response will include a `verification` object that describes the result of verifying the commit's signature. The following fields are included in the `verification` object:
+ *
+ * | Name | Type | Description |
+ * | ---- | ---- | ----------- |
+ * | `verified` | `boolean` | Indicates whether GitHub considers the signature in this commit to be verified. |
+ * | `reason` | `string` | The reason for verified value. Possible values and their meanings are enumerated in table below. |
+ * | `signature` | `string` | The signature that was extracted from the commit. |
+ * | `payload` | `string` | The value that was signed. |
+ *
+ * These are the possible values for `reason` in the `verification` object:
+ *
+ * | Value | Description |
+ * | ----- | ----------- |
+ * | `expired_key` | The key that made the signature is expired. |
+ * | `not_signing_key` | The "signing" flag is not among the usage flags in the GPG key that made the signature. |
+ * | `gpgverify_error` | There was an error communicating with the signature verification service. |
+ * | `gpgverify_unavailable` | The signature verification service is currently unavailable. |
+ * | `unsigned` | The object does not include a signature. |
+ * | `unknown_signature_type` | A non-PGP signature was found in the commit. |
+ * | `no_user` | No user was associated with the `committer` email address in the commit. |
+ * | `unverified_email` | The `committer` email address in the commit was associated with a user, but the email address is not verified on their account. |
+ * | `bad_email` | The `committer` email address in the commit is not included in the identities of the PGP key that made the signature. |
+ * | `unknown_key` | The key that made the signature has not been registered with any user's account. |
+ * | `malformed_signature` | There was an error parsing the signature. |
+ * | `invalid` | The signature could not be cryptographically verified using the key whose key-id was found in the signature. |
+ * | `valid` | None of the above errors applied, so the signature is considered to be verified. |
+ */
+ get: operations["repos/get-commit"];
+ };
+ "/repos/{owner}/{repo}/commits/{ref}/check-runs": {
+ /**
+ * List check runs for a Git reference
+ * @description Lists check runs for a commit ref. The `ref` can be a SHA, branch name, or a tag name.
+ *
+ * **Note:** The endpoints to manage checks only look for pushes in the repository where the check suite or check run were created. Pushes to a branch in a forked repository are not detected and return an empty `pull_requests` array.
+ *
+ * If there are more than 1000 check suites on a single git reference, this endpoint will limit check runs to the 1000 most recent check suites. To iterate over all possible check runs, use the [List check suites for a Git reference](https://docs.github.com/rest/reference/checks#list-check-suites-for-a-git-reference) endpoint and provide the `check_suite_id` parameter to the [List check runs in a check suite](https://docs.github.com/rest/reference/checks#list-check-runs-in-a-check-suite) endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint on a private repository.
+ */
+ get: operations["checks/list-for-ref"];
+ };
+ "/repos/{owner}/{repo}/commits/{ref}/check-suites": {
+ /**
+ * List check suites for a Git reference
+ * @description Lists check suites for a commit `ref`. The `ref` can be a SHA, branch name, or a tag name.
+ *
+ * **Note:** The endpoints to manage checks only look for pushes in the repository where the check suite or check run were created. Pushes to a branch in a forked repository are not detected and return an empty `pull_requests` array and a `null` value for `head_branch`.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint on a private repository.
+ */
+ get: operations["checks/list-suites-for-ref"];
+ };
+ "/repos/{owner}/{repo}/commits/{ref}/status": {
+ /**
+ * Get the combined status for a specific reference
+ * @description Users with pull access in a repository can access a combined view of commit statuses for a given ref. The ref can be a SHA, a branch name, or a tag name.
+ *
+ *
+ * Additionally, a combined `state` is returned. The `state` is one of:
+ *
+ * * **failure** if any of the contexts report as `error` or `failure`
+ * * **pending** if there are no statuses or a context is `pending`
+ * * **success** if the latest status for all contexts is `success`
+ */
+ get: operations["repos/get-combined-status-for-ref"];
+ };
+ "/repos/{owner}/{repo}/commits/{ref}/statuses": {
+ /**
+ * List commit statuses for a reference
+ * @description Users with pull access in a repository can view commit statuses for a given ref. The ref can be a SHA, a branch name, or a tag name. Statuses are returned in reverse chronological order. The first status in the list will be the latest one.
+ *
+ * This resource is also available via a legacy route: `GET /repos/:owner/:repo/statuses/:ref`.
+ */
+ get: operations["repos/list-commit-statuses-for-ref"];
+ };
+ "/repos/{owner}/{repo}/community/profile": {
+ /**
+ * Get community profile metrics
+ * @description Returns all community profile metrics for a repository. The repository cannot be a fork.
+ *
+ * The returned metrics include an overall health score, the repository description, the presence of documentation, the
+ * detected code of conduct, the detected license, and the presence of ISSUE\_TEMPLATE, PULL\_REQUEST\_TEMPLATE,
+ * README, and CONTRIBUTING files.
+ *
+ * The `health_percentage` score is defined as a percentage of how many of
+ * the recommended community health files are present. For more information, see
+ * "[About community profiles for public repositories](https://docs.github.com/communities/setting-up-your-project-for-healthy-contributions/about-community-profiles-for-public-repositories)."
+ *
+ * `content_reports_enabled` is only returned for organization-owned repositories.
+ */
+ get: operations["repos/get-community-profile-metrics"];
+ };
+ "/repos/{owner}/{repo}/compare/{basehead}": {
+ /**
+ * Compare two commits
+ * @description Compares two commits against one another. You can compare refs (branches or tags) and commit SHAs in the same repository, or you can compare refs and commit SHAs that exist in different repositories within the same repository network, including fork branches. For more information about how to view a repository's network, see "[Understanding connections between repositories](https://docs.github.com/repositories/viewing-activity-and-data-for-your-repository/understanding-connections-between-repositories)."
+ *
+ * This endpoint is equivalent to running the `git log BASE..HEAD` command, but it returns commits in a different order. The `git log BASE..HEAD` command returns commits in reverse chronological order, whereas the API returns commits in chronological order.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.diff`**: Returns the diff of the commit.
+ * - **`application/vnd.github.patch`**: Returns the patch of the commit. Diffs with binary data will have no `patch` property.
+ *
+ * The API response includes details about the files that were changed between the two commits. This includes the status of the change (if a file was added, removed, modified, or renamed), and details of the change itself. For example, files with a `renamed` status have a `previous_filename` field showing the previous filename of the file, and files with a `modified` status have a `patch` field showing the changes made to the file.
+ *
+ * When calling this endpoint without any paging parameter (`per_page` or `page`), the returned list is limited to 250 commits, and the last commit in the list is the most recent of the entire comparison.
+ *
+ * **Working with large comparisons**
+ *
+ * To process a response with a large number of commits, use a query parameter (`per_page` or `page`) to paginate the results. When using pagination:
+ *
+ * - The list of changed files is only shown on the first page of results, but it includes all changed files for the entire comparison.
+ * - The results are returned in chronological order, but the last commit in the returned list may not be the most recent one in the entire set if there are more pages of results.
+ *
+ * For more information on working with pagination, see "[Using pagination in the REST API](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api)."
+ *
+ * **Signature verification object**
+ *
+ * The response will include a `verification` object that describes the result of verifying the commit's signature. The `verification` object includes the following fields:
+ *
+ * | Name | Type | Description |
+ * | ---- | ---- | ----------- |
+ * | `verified` | `boolean` | Indicates whether GitHub considers the signature in this commit to be verified. |
+ * | `reason` | `string` | The reason for verified value. Possible values and their meanings are enumerated in table below. |
+ * | `signature` | `string` | The signature that was extracted from the commit. |
+ * | `payload` | `string` | The value that was signed. |
+ *
+ * These are the possible values for `reason` in the `verification` object:
+ *
+ * | Value | Description |
+ * | ----- | ----------- |
+ * | `expired_key` | The key that made the signature is expired. |
+ * | `not_signing_key` | The "signing" flag is not among the usage flags in the GPG key that made the signature. |
+ * | `gpgverify_error` | There was an error communicating with the signature verification service. |
+ * | `gpgverify_unavailable` | The signature verification service is currently unavailable. |
+ * | `unsigned` | The object does not include a signature. |
+ * | `unknown_signature_type` | A non-PGP signature was found in the commit. |
+ * | `no_user` | No user was associated with the `committer` email address in the commit. |
+ * | `unverified_email` | The `committer` email address in the commit was associated with a user, but the email address is not verified on their account. |
+ * | `bad_email` | The `committer` email address in the commit is not included in the identities of the PGP key that made the signature. |
+ * | `unknown_key` | The key that made the signature has not been registered with any user's account. |
+ * | `malformed_signature` | There was an error parsing the signature. |
+ * | `invalid` | The signature could not be cryptographically verified using the key whose key-id was found in the signature. |
+ * | `valid` | None of the above errors applied, so the signature is considered to be verified. |
+ */
+ get: operations["repos/compare-commits-with-basehead"];
+ };
+ "/repos/{owner}/{repo}/contents/{path}": {
+ /**
+ * Get repository content
+ * @description Gets the contents of a file or directory in a repository. Specify the file path or directory with the `path` parameter. If you omit the `path` parameter, you will receive the contents of the repository's root directory.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw file contents for files and symlinks.
+ * - **`application/vnd.github.html+json`**: Returns the file contents in HTML. Markup languages are rendered to HTML using GitHub's open-source [Markup library](https://github.com/github/markup).
+ * - **`application/vnd.github.object+json`**: Returns the contents in a consistent object format regardless of the content type. For example, instead of an array of objects for a directory, the response will be an object with an `entries` attribute containing the array of objects.
+ *
+ * If the content is a directory, the response will be an array of objects, one object for each item in the directory. When listing the contents of a directory, submodules have their "type" specified as "file". Logically, the value _should_ be "submodule". This behavior exists [for backwards compatibility purposes](https://git.io/v1YCW). In the next major version of the API, the type will be returned as "submodule".
+ *
+ * If the content is a symlink and the symlink's target is a normal file in the repository, then the API responds with the content of the file. Otherwise, the API responds with an object describing the symlink itself.
+ *
+ * If the content is a submodule, the `submodule_git_url` field identifies the location of the submodule repository, and the `sha` identifies a specific commit within the submodule repository. Git uses the given URL when cloning the submodule repository, and checks out the submodule at that specific commit. If the submodule repository is not hosted on github.com, the Git URLs (`git_url` and `_links["git"]`) and the github.com URLs (`html_url` and `_links["html"]`) will have null values.
+ *
+ * **Notes**:
+ *
+ * - To get a repository's contents recursively, you can [recursively get the tree](https://docs.github.com/rest/git/trees#get-a-tree).
+ * - This API has an upper limit of 1,000 files for a directory. If you need to retrieve
+ * more files, use the [Git Trees API](https://docs.github.com/rest/git/trees#get-a-tree).
+ * - Download URLs expire and are meant to be used just once. To ensure the download URL does not expire, please use the contents API to obtain a fresh download URL for each download.
+ * - If the requested file's size is:
+ * - 1 MB or smaller: All features of this endpoint are supported.
+ * - Between 1-100 MB: Only the `raw` or `object` custom media types are supported. Both will work as normal, except that when using the `object` media type, the `content` field will be an empty
+ * string and the `encoding` field will be `"none"`. To get the contents of these larger files, use the `raw` media type.
+ * - Greater than 100 MB: This endpoint is not supported.
+ */
+ get: operations["repos/get-content"];
+ /**
+ * Create or update file contents
+ * @description Creates a new file or replaces an existing file in a repository.
+ *
+ * **Note:** If you use this endpoint and the "[Delete a file](https://docs.github.com/rest/repos/contents/#delete-a-file)" endpoint in parallel, the concurrent requests will conflict and you will receive errors. You must use these endpoints serially instead.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The `workflow` scope is also required in order to modify files in the `.github/workflows` directory.
+ */
+ put: operations["repos/create-or-update-file-contents"];
+ /**
+ * Delete a file
+ * @description Deletes a file in a repository.
+ *
+ * You can provide an additional `committer` parameter, which is an object containing information about the committer. Or, you can provide an `author` parameter, which is an object containing information about the author.
+ *
+ * The `author` section is optional and is filled in with the `committer` information if omitted. If the `committer` information is omitted, the authenticated user's information is used.
+ *
+ * You must provide values for both `name` and `email`, whether you choose to use `author` or `committer`. Otherwise, you'll receive a `422` status code.
+ *
+ * **Note:** If you use this endpoint and the "[Create or update file contents](https://docs.github.com/rest/repos/contents/#create-or-update-file-contents)" endpoint in parallel, the concurrent requests will conflict and you will receive errors. You must use these endpoints serially instead.
+ */
+ delete: operations["repos/delete-file"];
+ };
+ "/repos/{owner}/{repo}/contributors": {
+ /**
+ * List repository contributors
+ * @description Lists contributors to the specified repository and sorts them by the number of commits per contributor in descending order. This endpoint may return information that is a few hours old because the GitHub REST API caches contributor data to improve performance.
+ *
+ * GitHub identifies contributors by author email address. This endpoint groups contribution counts by GitHub user, which includes all associated email addresses. To improve performance, only the first 500 author email addresses in the repository link to GitHub users. The rest will appear as anonymous contributors without associated GitHub user information.
+ */
+ get: operations["repos/list-contributors"];
+ };
+ "/repos/{owner}/{repo}/dependabot/alerts": {
+ /**
+ * List Dependabot alerts for a repository
+ * @description OAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.
+ */
+ get: operations["dependabot/list-alerts-for-repo"];
+ };
+ "/repos/{owner}/{repo}/dependabot/alerts/{alert_number}": {
+ /**
+ * Get a Dependabot alert
+ * @description OAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.
+ */
+ get: operations["dependabot/get-alert"];
+ /**
+ * Update a Dependabot alert
+ * @description The authenticated user must have access to security alerts for the repository to use this endpoint. For more information, see "[Granting access to security alerts](https://docs.github.com/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository#granting-access-to-security-alerts)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.
+ */
+ patch: operations["dependabot/update-alert"];
+ };
+ "/repos/{owner}/{repo}/dependabot/secrets": {
+ /**
+ * List repository secrets
+ * @description Lists all secrets available in a repository without revealing their encrypted
+ * values.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["dependabot/list-repo-secrets"];
+ };
+ "/repos/{owner}/{repo}/dependabot/secrets/public-key": {
+ /**
+ * Get a repository public key
+ * @description Gets your public key, which you need to encrypt secrets. You need to
+ * encrypt a secret before you can create or update secrets. Anyone with read access
+ * to the repository can use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint if the repository is private.
+ */
+ get: operations["dependabot/get-repo-public-key"];
+ };
+ "/repos/{owner}/{repo}/dependabot/secrets/{secret_name}": {
+ /**
+ * Get a repository secret
+ * @description Gets a single repository secret without revealing its encrypted value.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["dependabot/get-repo-secret"];
+ /**
+ * Create or update a repository secret
+ * @description Creates or updates a repository secret with an encrypted value. Encrypt your secret using
+ * [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ put: operations["dependabot/create-or-update-repo-secret"];
+ /**
+ * Delete a repository secret
+ * @description Deletes a secret in a repository using the secret name.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ delete: operations["dependabot/delete-repo-secret"];
+ };
+ "/repos/{owner}/{repo}/dependency-graph/compare/{basehead}": {
+ /**
+ * Get a diff of the dependencies between commits
+ * @description Gets the diff of the dependency changes between two commits of a repository, based on the changes to the dependency manifests made in those commits.
+ */
+ get: operations["dependency-graph/diff-range"];
+ };
+ "/repos/{owner}/{repo}/dependency-graph/sbom": {
+ /**
+ * Export a software bill of materials (SBOM) for a repository.
+ * @description Exports the software bill of materials (SBOM) for a repository in SPDX JSON format.
+ */
+ get: operations["dependency-graph/export-sbom"];
+ };
+ "/repos/{owner}/{repo}/dependency-graph/snapshots": {
+ /**
+ * Create a snapshot of dependencies for a repository
+ * @description Create a new snapshot of a repository's dependencies.
+ *
+ * The authenticated user must have access to the repository.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ post: operations["dependency-graph/create-repository-snapshot"];
+ };
+ "/repos/{owner}/{repo}/deployments": {
+ /**
+ * List deployments
+ * @description Simple filtering of deployments is available via query parameters:
+ */
+ get: operations["repos/list-deployments"];
+ /**
+ * Create a deployment
+ * @description Deployments offer a few configurable parameters with certain defaults.
+ *
+ * The `ref` parameter can be any named branch, tag, or SHA. At GitHub we often deploy branches and verify them
+ * before we merge a pull request.
+ *
+ * The `environment` parameter allows deployments to be issued to different runtime environments. Teams often have
+ * multiple environments for verifying their applications, such as `production`, `staging`, and `qa`. This parameter
+ * makes it easier to track which environments have requested deployments. The default environment is `production`.
+ *
+ * The `auto_merge` parameter is used to ensure that the requested ref is not behind the repository's default branch. If
+ * the ref _is_ behind the default branch for the repository, we will attempt to merge it for you. If the merge succeeds,
+ * the API will return a successful merge commit. If merge conflicts prevent the merge from succeeding, the API will
+ * return a failure response.
+ *
+ * By default, [commit statuses](https://docs.github.com/rest/commits/statuses) for every submitted context must be in a `success`
+ * state. The `required_contexts` parameter allows you to specify a subset of contexts that must be `success`, or to
+ * specify contexts that have not yet been submitted. You are not required to use commit statuses to deploy. If you do
+ * not require any contexts or create any commit statuses, the deployment will always succeed.
+ *
+ * The `payload` parameter is available for any extra information that a deployment system might need. It is a JSON text
+ * field that will be passed on when a deployment event is dispatched.
+ *
+ * The `task` parameter is used by the deployment system to allow different execution paths. In the web world this might
+ * be `deploy:migrations` to run schema changes on the system. In the compiled world this could be a flag to compile an
+ * application with debugging enabled.
+ *
+ * Merged branch response:
+ *
+ * You will see this response when GitHub automatically merges the base branch into the topic branch instead of creating
+ * a deployment. This auto-merge happens when:
+ * * Auto-merge option is enabled in the repository
+ * * Topic branch does not include the latest changes on the base branch, which is `master` in the response example
+ * * There are no merge conflicts
+ *
+ * If there are no new commits in the base branch, a new request to create a deployment should give a successful
+ * response.
+ *
+ * Merge conflict response:
+ *
+ * This error happens when the `auto_merge` option is enabled and when the default branch (in this case `master`), can't
+ * be merged into the branch that's being deployed (in this case `topic-branch`), due to merge conflicts.
+ *
+ * Failed commit status checks:
+ *
+ * This error happens when the `required_contexts` parameter indicates that one or more contexts need to have a `success`
+ * status for the commit to be deployed, but one or more of the required contexts do not have a state of `success`.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` or `repo_deployment` scope to use this endpoint.
+ */
+ post: operations["repos/create-deployment"];
+ };
+ "/repos/{owner}/{repo}/deployments/{deployment_id}": {
+ /** Get a deployment */
+ get: operations["repos/get-deployment"];
+ /**
+ * Delete a deployment
+ * @description If the repository only has one deployment, you can delete the deployment regardless of its status. If the repository has more than one deployment, you can only delete inactive deployments. This ensures that repositories with multiple deployments will always have an active deployment.
+ *
+ * To set a deployment as inactive, you must:
+ *
+ * * Create a new deployment that is active so that the system has a record of the current state, then delete the previously active deployment.
+ * * Mark the active deployment as inactive by adding any non-successful deployment status.
+ *
+ * For more information, see "[Create a deployment](https://docs.github.com/rest/deployments/deployments/#create-a-deployment)" and "[Create a deployment status](https://docs.github.com/rest/deployments/statuses#create-a-deployment-status)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` or `repo_deployment` scope to use this endpoint.
+ */
+ delete: operations["repos/delete-deployment"];
+ };
+ "/repos/{owner}/{repo}/deployments/{deployment_id}/statuses": {
+ /**
+ * List deployment statuses
+ * @description Users with pull access can view deployment statuses for a deployment:
+ */
+ get: operations["repos/list-deployment-statuses"];
+ /**
+ * Create a deployment status
+ * @description Users with `push` access can create deployment statuses for a given deployment.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo_deployment` scope to use this endpoint.
+ */
+ post: operations["repos/create-deployment-status"];
+ };
+ "/repos/{owner}/{repo}/deployments/{deployment_id}/statuses/{status_id}": {
+ /**
+ * Get a deployment status
+ * @description Users with pull access can view a deployment status for a deployment:
+ */
+ get: operations["repos/get-deployment-status"];
+ };
+ "/repos/{owner}/{repo}/dispatches": {
+ /**
+ * Create a repository dispatch event
+ * @description You can use this endpoint to trigger a webhook event called `repository_dispatch` when you want activity that happens outside of GitHub to trigger a GitHub Actions workflow or GitHub App webhook. You must configure your GitHub Actions workflow or GitHub App to run when the `repository_dispatch` event occurs. For an example `repository_dispatch` webhook payload, see "[RepositoryDispatchEvent](https://docs.github.com/webhooks/event-payloads/#repository_dispatch)."
+ *
+ * The `client_payload` parameter is available for any extra information that your workflow might need. This parameter is a JSON payload that will be passed on when the webhook event is dispatched. For example, the `client_payload` can include a message that a user would like to send using a GitHub Actions workflow. Or the `client_payload` can be used as a test to debug your workflow.
+ *
+ * This input example shows how you can use the `client_payload` as a test to debug your workflow.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ post: operations["repos/create-dispatch-event"];
+ };
+ "/repos/{owner}/{repo}/environments": {
+ /**
+ * List environments
+ * @description Lists the environments for a repository.
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.
+ */
+ get: operations["repos/get-all-environments"];
+ };
+ "/repos/{owner}/{repo}/environments/{environment_name}": {
+ /**
+ * Get an environment
+ * @description **Note:** To get information about name patterns that branches must match in order to deploy to this environment, see "[Get a deployment branch policy](/rest/deployments/branch-policies#get-a-deployment-branch-policy)."
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.
+ */
+ get: operations["repos/get-environment"];
+ /**
+ * Create or update an environment
+ * @description Create or update an environment with protection rules, such as required reviewers. For more information about environment protection rules, see "[Environments](/actions/reference/environments#environment-protection-rules)."
+ *
+ * **Note:** To create or update name patterns that branches must match in order to deploy to this environment, see "[Deployment branch policies](/rest/deployments/branch-policies)."
+ *
+ * **Note:** To create or update secrets for an environment, see "[GitHub Actions secrets](/rest/actions/secrets)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ put: operations["repos/create-or-update-environment"];
+ /**
+ * Delete an environment
+ * @description OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ delete: operations["repos/delete-an-environment"];
+ };
+ "/repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies": {
+ /**
+ * List deployment branch policies
+ * @description Lists the deployment branch policies for an environment.
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.
+ */
+ get: operations["repos/list-deployment-branch-policies"];
+ /**
+ * Create a deployment branch policy
+ * @description Creates a deployment branch or tag policy for an environment.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ post: operations["repos/create-deployment-branch-policy"];
+ };
+ "/repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies/{branch_policy_id}": {
+ /**
+ * Get a deployment branch policy
+ * @description Gets a deployment branch or tag policy for an environment.
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.
+ */
+ get: operations["repos/get-deployment-branch-policy"];
+ /**
+ * Update a deployment branch policy
+ * @description Updates a deployment branch or tag policy for an environment.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ put: operations["repos/update-deployment-branch-policy"];
+ /**
+ * Delete a deployment branch policy
+ * @description Deletes a deployment branch or tag policy for an environment.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ delete: operations["repos/delete-deployment-branch-policy"];
+ };
+ "/repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules": {
+ /**
+ * Get all deployment protection rules for an environment
+ * @description Gets all custom deployment protection rules that are enabled for an environment. Anyone with read access to the repository can use this endpoint. For more information about environments, see "[Using environments for deployment](https://docs.github.com/actions/deployment/targeting-different-environments/using-environments-for-deployment)."
+ *
+ * For more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/rest/apps/apps#get-an-app).
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.
+ */
+ get: operations["repos/get-all-deployment-protection-rules"];
+ /**
+ * Create a custom deployment protection rule on an environment
+ * @description Enable a custom deployment protection rule for an environment.
+ *
+ * The authenticated user must have admin or owner permissions to the repository to use this endpoint.
+ *
+ * For more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/rest/apps/apps#get-an-app).
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ post: operations["repos/create-deployment-protection-rule"];
+ };
+ "/repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/apps": {
+ /**
+ * List custom deployment rule integrations available for an environment
+ * @description Gets all custom deployment protection rule integrations that are available for an environment. Anyone with read access to the repository can use this endpoint.
+ *
+ * For more information about environments, see "[Using environments for deployment](https://docs.github.com/actions/deployment/targeting-different-environments/using-environments-for-deployment)."
+ *
+ * For more information about the app that is providing this custom deployment rule, see "[GET an app](https://docs.github.com/rest/apps/apps#get-an-app)".
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.
+ */
+ get: operations["repos/list-custom-deployment-rule-integrations"];
+ };
+ "/repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/{protection_rule_id}": {
+ /**
+ * Get a custom deployment protection rule
+ * @description Gets an enabled custom deployment protection rule for an environment. Anyone with read access to the repository can use this endpoint. For more information about environments, see "[Using environments for deployment](https://docs.github.com/actions/deployment/targeting-different-environments/using-environments-for-deployment)."
+ *
+ * For more information about the app that is providing this custom deployment rule, see [`GET /apps/{app_slug}`](https://docs.github.com/rest/apps/apps#get-an-app).
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.
+ */
+ get: operations["repos/get-custom-deployment-protection-rule"];
+ /**
+ * Disable a custom protection rule for an environment
+ * @description Disables a custom deployment protection rule for an environment.
+ *
+ * The authenticated user must have admin or owner permissions to the repository to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ delete: operations["repos/disable-deployment-protection-rule"];
+ };
+ "/repos/{owner}/{repo}/environments/{environment_name}/secrets": {
+ /**
+ * List environment secrets
+ * @description Lists all secrets available in an environment without revealing their
+ * encrypted values.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read secrets.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/list-environment-secrets"];
+ };
+ "/repos/{owner}/{repo}/environments/{environment_name}/secrets/public-key": {
+ /**
+ * Get an environment public key
+ * @description Get the public key for an environment, which you need to encrypt environment
+ * secrets. You need to encrypt a secret before you can create or update secrets.
+ *
+ * Anyone with read access to the repository can use this endpoint.
+ *
+ * If the repository is private, OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/get-environment-public-key"];
+ };
+ "/repos/{owner}/{repo}/environments/{environment_name}/secrets/{secret_name}": {
+ /**
+ * Get an environment secret
+ * @description Gets a single environment secret without revealing its encrypted value.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read secrets.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/get-environment-secret"];
+ /**
+ * Create or update an environment secret
+ * @description Creates or updates an environment secret with an encrypted value. Encrypt your secret using
+ * [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api)."
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read secrets.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ put: operations["actions/create-or-update-environment-secret"];
+ /**
+ * Delete an environment secret
+ * @description Deletes a secret in an environment using the secret name.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read secrets.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ delete: operations["actions/delete-environment-secret"];
+ };
+ "/repos/{owner}/{repo}/environments/{environment_name}/variables": {
+ /**
+ * List environment variables
+ * @description Lists all environment variables.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read variables.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/list-environment-variables"];
+ /**
+ * Create an environment variable
+ * @description Create an environment variable that you can reference in a GitHub Actions workflow.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read variables.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ post: operations["actions/create-environment-variable"];
+ };
+ "/repos/{owner}/{repo}/environments/{environment_name}/variables/{name}": {
+ /**
+ * Get an environment variable
+ * @description Gets a specific variable in an environment.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read variables.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["actions/get-environment-variable"];
+ /**
+ * Delete an environment variable
+ * @description Deletes an environment variable using the variable name.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read variables.
+ *
+ * OAuth tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ delete: operations["actions/delete-environment-variable"];
+ /**
+ * Update an environment variable
+ * @description Updates an environment variable that you can reference in a GitHub Actions workflow.
+ *
+ * Authenticated users must have collaborator access to a repository to create, update, or read variables.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ patch: operations["actions/update-environment-variable"];
+ };
+ "/repos/{owner}/{repo}/events": {
+ /**
+ * List repository events
+ * @description **Note**: This API is not built to serve real-time use cases. Depending on the time of day, event latency can be anywhere from 30s to 6h.
+ */
+ get: operations["activity/list-repo-events"];
+ };
+ "/repos/{owner}/{repo}/forks": {
+ /** List forks */
+ get: operations["repos/list-forks"];
+ /**
+ * Create a fork
+ * @description Create a fork for the authenticated user.
+ *
+ * **Note**: Forking a Repository happens asynchronously. You may have to wait a short period of time before you can access the git objects. If this takes longer than 5 minutes, be sure to contact [GitHub Support](https://support.github.com/contact?tags=dotcom-rest-api).
+ *
+ * **Note**: Although this endpoint works with GitHub Apps, the GitHub App must be installed on the destination account with access to all repositories and on the source account with access to the source repository.
+ */
+ post: operations["repos/create-fork"];
+ };
+ "/repos/{owner}/{repo}/git/blobs": {
+ /** Create a blob */
+ post: operations["git/create-blob"];
+ };
+ "/repos/{owner}/{repo}/git/blobs/{file_sha}": {
+ /**
+ * Get a blob
+ * @description The `content` in the response will always be Base64 encoded.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw blob data.
+ * - **`application/vnd.github+json`**: Returns a JSON representation of the blob with `content` as a base64 encoded string. This is the default if no media type is specified.
+ *
+ * **Note** This endpoint supports blobs up to 100 megabytes in size.
+ */
+ get: operations["git/get-blob"];
+ };
+ "/repos/{owner}/{repo}/git/commits": {
+ /**
+ * Create a commit
+ * @description Creates a new Git [commit object](https://git-scm.com/book/en/v2/Git-Internals-Git-Objects).
+ *
+ * **Signature verification object**
+ *
+ * The response will include a `verification` object that describes the result of verifying the commit's signature. The following fields are included in the `verification` object:
+ *
+ * | Name | Type | Description |
+ * | ---- | ---- | ----------- |
+ * | `verified` | `boolean` | Indicates whether GitHub considers the signature in this commit to be verified. |
+ * | `reason` | `string` | The reason for verified value. Possible values and their meanings are enumerated in the table below. |
+ * | `signature` | `string` | The signature that was extracted from the commit. |
+ * | `payload` | `string` | The value that was signed. |
+ *
+ * These are the possible values for `reason` in the `verification` object:
+ *
+ * | Value | Description |
+ * | ----- | ----------- |
+ * | `expired_key` | The key that made the signature is expired. |
+ * | `not_signing_key` | The "signing" flag is not among the usage flags in the GPG key that made the signature. |
+ * | `gpgverify_error` | There was an error communicating with the signature verification service. |
+ * | `gpgverify_unavailable` | The signature verification service is currently unavailable. |
+ * | `unsigned` | The object does not include a signature. |
+ * | `unknown_signature_type` | A non-PGP signature was found in the commit. |
+ * | `no_user` | No user was associated with the `committer` email address in the commit. |
+ * | `unverified_email` | The `committer` email address in the commit was associated with a user, but the email address is not verified on their account. |
+ * | `bad_email` | The `committer` email address in the commit is not included in the identities of the PGP key that made the signature. |
+ * | `unknown_key` | The key that made the signature has not been registered with any user's account. |
+ * | `malformed_signature` | There was an error parsing the signature. |
+ * | `invalid` | The signature could not be cryptographically verified using the key whose key-id was found in the signature. |
+ * | `valid` | None of the above errors applied, so the signature is considered to be verified. |
+ */
+ post: operations["git/create-commit"];
+ };
+ "/repos/{owner}/{repo}/git/commits/{commit_sha}": {
+ /**
+ * Get a commit object
+ * @description Gets a Git [commit object](https://git-scm.com/book/en/v2/Git-Internals-Git-Objects).
+ *
+ * To get the contents of a commit, see "[Get a commit](/rest/commits/commits#get-a-commit)."
+ *
+ * **Signature verification object**
+ *
+ * The response will include a `verification` object that describes the result of verifying the commit's signature. The following fields are included in the `verification` object:
+ *
+ * | Name | Type | Description |
+ * | ---- | ---- | ----------- |
+ * | `verified` | `boolean` | Indicates whether GitHub considers the signature in this commit to be verified. |
+ * | `reason` | `string` | The reason for verified value. Possible values and their meanings are enumerated in the table below. |
+ * | `signature` | `string` | The signature that was extracted from the commit. |
+ * | `payload` | `string` | The value that was signed. |
+ *
+ * These are the possible values for `reason` in the `verification` object:
+ *
+ * | Value | Description |
+ * | ----- | ----------- |
+ * | `expired_key` | The key that made the signature is expired. |
+ * | `not_signing_key` | The "signing" flag is not among the usage flags in the GPG key that made the signature. |
+ * | `gpgverify_error` | There was an error communicating with the signature verification service. |
+ * | `gpgverify_unavailable` | The signature verification service is currently unavailable. |
+ * | `unsigned` | The object does not include a signature. |
+ * | `unknown_signature_type` | A non-PGP signature was found in the commit. |
+ * | `no_user` | No user was associated with the `committer` email address in the commit. |
+ * | `unverified_email` | The `committer` email address in the commit was associated with a user, but the email address is not verified on their account. |
+ * | `bad_email` | The `committer` email address in the commit is not included in the identities of the PGP key that made the signature. |
+ * | `unknown_key` | The key that made the signature has not been registered with any user's account. |
+ * | `malformed_signature` | There was an error parsing the signature. |
+ * | `invalid` | The signature could not be cryptographically verified using the key whose key-id was found in the signature. |
+ * | `valid` | None of the above errors applied, so the signature is considered to be verified. |
+ */
+ get: operations["git/get-commit"];
+ };
+ "/repos/{owner}/{repo}/git/matching-refs/{ref}": {
+ /**
+ * List matching references
+ * @description Returns an array of references from your Git database that match the supplied name. The `:ref` in the URL must be formatted as `heads/` for branches and `tags/` for tags. If the `:ref` doesn't exist in the repository, but existing refs start with `:ref`, they will be returned as an array.
+ *
+ * When you use this endpoint without providing a `:ref`, it will return an array of all the references from your Git database, including notes and stashes if they exist on the server. Anything in the namespace is returned, not just `heads` and `tags`.
+ *
+ * **Note:** You need to explicitly [request a pull request](https://docs.github.com/rest/pulls/pulls#get-a-pull-request) to trigger a test merge commit, which checks the mergeability of pull requests. For more information, see "[Checking mergeability of pull requests](https://docs.github.com/rest/guides/getting-started-with-the-git-database-api#checking-mergeability-of-pull-requests)".
+ *
+ * If you request matching references for a branch named `feature` but the branch `feature` doesn't exist, the response can still include other matching head refs that start with the word `feature`, such as `featureA` and `featureB`.
+ */
+ get: operations["git/list-matching-refs"];
+ };
+ "/repos/{owner}/{repo}/git/ref/{ref}": {
+ /**
+ * Get a reference
+ * @description Returns a single reference from your Git database. The `:ref` in the URL must be formatted as `heads/` for branches and `tags/` for tags. If the `:ref` doesn't match an existing ref, a `404` is returned.
+ *
+ * **Note:** You need to explicitly [request a pull request](https://docs.github.com/rest/pulls/pulls#get-a-pull-request) to trigger a test merge commit, which checks the mergeability of pull requests. For more information, see "[Checking mergeability of pull requests](https://docs.github.com/rest/guides/getting-started-with-the-git-database-api#checking-mergeability-of-pull-requests)".
+ */
+ get: operations["git/get-ref"];
+ };
+ "/repos/{owner}/{repo}/git/refs": {
+ /**
+ * Create a reference
+ * @description Creates a reference for your repository. You are unable to create new references for empty repositories, even if the commit SHA-1 hash used exists. Empty repositories are repositories without branches.
+ */
+ post: operations["git/create-ref"];
+ };
+ "/repos/{owner}/{repo}/git/refs/{ref}": {
+ /**
+ * Delete a reference
+ * @description Deletes the provided reference.
+ */
+ delete: operations["git/delete-ref"];
+ /**
+ * Update a reference
+ * @description Updates the provided reference to point to a new SHA. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation.
+ */
+ patch: operations["git/update-ref"];
+ };
+ "/repos/{owner}/{repo}/git/tags": {
+ /**
+ * Create a tag object
+ * @description Note that creating a tag object does not create the reference that makes a tag in Git. If you want to create an annotated tag in Git, you have to do this call to create the tag object, and then [create](https://docs.github.com/rest/git/refs#create-a-reference) the `refs/tags/[tag]` reference. If you want to create a lightweight tag, you only have to [create](https://docs.github.com/rest/git/refs#create-a-reference) the tag reference - this call would be unnecessary.
+ *
+ * **Signature verification object**
+ *
+ * The response will include a `verification` object that describes the result of verifying the commit's signature. The following fields are included in the `verification` object:
+ *
+ * | Name | Type | Description |
+ * | ---- | ---- | ----------- |
+ * | `verified` | `boolean` | Indicates whether GitHub considers the signature in this commit to be verified. |
+ * | `reason` | `string` | The reason for verified value. Possible values and their meanings are enumerated in table below. |
+ * | `signature` | `string` | The signature that was extracted from the commit. |
+ * | `payload` | `string` | The value that was signed. |
+ *
+ * These are the possible values for `reason` in the `verification` object:
+ *
+ * | Value | Description |
+ * | ----- | ----------- |
+ * | `expired_key` | The key that made the signature is expired. |
+ * | `not_signing_key` | The "signing" flag is not among the usage flags in the GPG key that made the signature. |
+ * | `gpgverify_error` | There was an error communicating with the signature verification service. |
+ * | `gpgverify_unavailable` | The signature verification service is currently unavailable. |
+ * | `unsigned` | The object does not include a signature. |
+ * | `unknown_signature_type` | A non-PGP signature was found in the commit. |
+ * | `no_user` | No user was associated with the `committer` email address in the commit. |
+ * | `unverified_email` | The `committer` email address in the commit was associated with a user, but the email address is not verified on their account. |
+ * | `bad_email` | The `committer` email address in the commit is not included in the identities of the PGP key that made the signature. |
+ * | `unknown_key` | The key that made the signature has not been registered with any user's account. |
+ * | `malformed_signature` | There was an error parsing the signature. |
+ * | `invalid` | The signature could not be cryptographically verified using the key whose key-id was found in the signature. |
+ * | `valid` | None of the above errors applied, so the signature is considered to be verified. |
+ */
+ post: operations["git/create-tag"];
+ };
+ "/repos/{owner}/{repo}/git/tags/{tag_sha}": {
+ /**
+ * Get a tag
+ * @description **Signature verification object**
+ *
+ * The response will include a `verification` object that describes the result of verifying the commit's signature. The following fields are included in the `verification` object:
+ *
+ * | Name | Type | Description |
+ * | ---- | ---- | ----------- |
+ * | `verified` | `boolean` | Indicates whether GitHub considers the signature in this commit to be verified. |
+ * | `reason` | `string` | The reason for verified value. Possible values and their meanings are enumerated in table below. |
+ * | `signature` | `string` | The signature that was extracted from the commit. |
+ * | `payload` | `string` | The value that was signed. |
+ *
+ * These are the possible values for `reason` in the `verification` object:
+ *
+ * | Value | Description |
+ * | ----- | ----------- |
+ * | `expired_key` | The key that made the signature is expired. |
+ * | `not_signing_key` | The "signing" flag is not among the usage flags in the GPG key that made the signature. |
+ * | `gpgverify_error` | There was an error communicating with the signature verification service. |
+ * | `gpgverify_unavailable` | The signature verification service is currently unavailable. |
+ * | `unsigned` | The object does not include a signature. |
+ * | `unknown_signature_type` | A non-PGP signature was found in the commit. |
+ * | `no_user` | No user was associated with the `committer` email address in the commit. |
+ * | `unverified_email` | The `committer` email address in the commit was associated with a user, but the email address is not verified on their account. |
+ * | `bad_email` | The `committer` email address in the commit is not included in the identities of the PGP key that made the signature. |
+ * | `unknown_key` | The key that made the signature has not been registered with any user's account. |
+ * | `malformed_signature` | There was an error parsing the signature. |
+ * | `invalid` | The signature could not be cryptographically verified using the key whose key-id was found in the signature. |
+ * | `valid` | None of the above errors applied, so the signature is considered to be verified. |
+ */
+ get: operations["git/get-tag"];
+ };
+ "/repos/{owner}/{repo}/git/trees": {
+ /**
+ * Create a tree
+ * @description The tree creation API accepts nested entries. If you specify both a tree and a nested path modifying that tree, this endpoint will overwrite the contents of the tree with the new path contents, and create a new tree structure.
+ *
+ * If you use this endpoint to add, delete, or modify the file contents in a tree, you will need to commit the tree and then update a branch to point to the commit. For more information see "[Create a commit](https://docs.github.com/rest/git/commits#create-a-commit)" and "[Update a reference](https://docs.github.com/rest/git/refs#update-a-reference)."
+ *
+ * Returns an error if you try to delete a file that does not exist.
+ */
+ post: operations["git/create-tree"];
+ };
+ "/repos/{owner}/{repo}/git/trees/{tree_sha}": {
+ /**
+ * Get a tree
+ * @description Returns a single tree using the SHA1 value or ref name for that tree.
+ *
+ * If `truncated` is `true` in the response then the number of items in the `tree` array exceeded our maximum limit. If you need to fetch more items, use the non-recursive method of fetching trees, and fetch one sub-tree at a time.
+ *
+ *
+ * **Note**: The limit for the `tree` array is 100,000 entries with a maximum size of 7 MB when using the `recursive` parameter.
+ */
+ get: operations["git/get-tree"];
+ };
+ "/repos/{owner}/{repo}/hooks": {
+ /**
+ * List repository webhooks
+ * @description Lists webhooks for a repository. `last response` may return null if there have not been any deliveries within 30 days.
+ */
+ get: operations["repos/list-webhooks"];
+ /**
+ * Create a repository webhook
+ * @description Repositories can have multiple webhooks installed. Each webhook should have a unique `config`. Multiple webhooks can
+ * share the same `config` as long as those webhooks do not have any `events` that overlap.
+ */
+ post: operations["repos/create-webhook"];
+ };
+ "/repos/{owner}/{repo}/hooks/{hook_id}": {
+ /**
+ * Get a repository webhook
+ * @description Returns a webhook configured in a repository. To get only the webhook `config` properties, see "[Get a webhook configuration for a repository](/rest/webhooks/repo-config#get-a-webhook-configuration-for-a-repository)."
+ */
+ get: operations["repos/get-webhook"];
+ /** Delete a repository webhook */
+ delete: operations["repos/delete-webhook"];
+ /**
+ * Update a repository webhook
+ * @description Updates a webhook configured in a repository. If you previously had a `secret` set, you must provide the same `secret` or set a new `secret` or the secret will be removed. If you are only updating individual webhook `config` properties, use "[Update a webhook configuration for a repository](/rest/webhooks/repo-config#update-a-webhook-configuration-for-a-repository)."
+ */
+ patch: operations["repos/update-webhook"];
+ };
+ "/repos/{owner}/{repo}/hooks/{hook_id}/config": {
+ /**
+ * Get a webhook configuration for a repository
+ * @description Returns the webhook configuration for a repository. To get more information about the webhook, including the `active` state and `events`, use "[Get a repository webhook](/rest/webhooks/repos#get-a-repository-webhook)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:repo_hook` or `repo` scope to use this endpoint.
+ */
+ get: operations["repos/get-webhook-config-for-repo"];
+ /**
+ * Update a webhook configuration for a repository
+ * @description Updates the webhook configuration for a repository. To update more information about the webhook, including the `active` state and `events`, use "[Update a repository webhook](/rest/webhooks/repos#update-a-repository-webhook)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:repo_hook` or `repo` scope to use this endpoint.
+ */
+ patch: operations["repos/update-webhook-config-for-repo"];
+ };
+ "/repos/{owner}/{repo}/hooks/{hook_id}/deliveries": {
+ /**
+ * List deliveries for a repository webhook
+ * @description Returns a list of webhook deliveries for a webhook configured in a repository.
+ */
+ get: operations["repos/list-webhook-deliveries"];
+ };
+ "/repos/{owner}/{repo}/hooks/{hook_id}/deliveries/{delivery_id}": {
+ /**
+ * Get a delivery for a repository webhook
+ * @description Returns a delivery for a webhook configured in a repository.
+ */
+ get: operations["repos/get-webhook-delivery"];
+ };
+ "/repos/{owner}/{repo}/hooks/{hook_id}/deliveries/{delivery_id}/attempts": {
+ /**
+ * Redeliver a delivery for a repository webhook
+ * @description Redeliver a webhook delivery for a webhook configured in a repository.
+ */
+ post: operations["repos/redeliver-webhook-delivery"];
+ };
+ "/repos/{owner}/{repo}/hooks/{hook_id}/pings": {
+ /**
+ * Ping a repository webhook
+ * @description This will trigger a [ping event](https://docs.github.com/webhooks/#ping-event) to be sent to the hook.
+ */
+ post: operations["repos/ping-webhook"];
+ };
+ "/repos/{owner}/{repo}/hooks/{hook_id}/tests": {
+ /**
+ * Test the push repository webhook
+ * @description This will trigger the hook with the latest push to the current repository if the hook is subscribed to `push` events. If the hook is not subscribed to `push` events, the server will respond with 204 but no test POST will be generated.
+ *
+ * **Note**: Previously `/repos/:owner/:repo/hooks/:hook_id/test`
+ */
+ post: operations["repos/test-push-webhook"];
+ };
+ "/repos/{owner}/{repo}/import": {
+ /**
+ * Get an import status
+ * @deprecated
+ * @description View the progress of an import.
+ *
+ * **Warning:** Due to very low levels of usage and available alternatives, this endpoint is deprecated and will no longer be available from 00:00 UTC on April 12, 2024. For more details and alternatives, see the [changelog](https://gh.io/source-imports-api-deprecation).
+ *
+ * **Import status**
+ *
+ * This section includes details about the possible values of the `status` field of the Import Progress response.
+ *
+ * An import that does not have errors will progress through these steps:
+ *
+ * * `detecting` - the "detection" step of the import is in progress because the request did not include a `vcs` parameter. The import is identifying the type of source control present at the URL.
+ * * `importing` - the "raw" step of the import is in progress. This is where commit data is fetched from the original repository. The import progress response will include `commit_count` (the total number of raw commits that will be imported) and `percent` (0 - 100, the current progress through the import).
+ * * `mapping` - the "rewrite" step of the import is in progress. This is where SVN branches are converted to Git branches, and where author updates are applied. The import progress response does not include progress information.
+ * * `pushing` - the "push" step of the import is in progress. This is where the importer updates the repository on GitHub. The import progress response will include `push_percent`, which is the percent value reported by `git push` when it is "Writing objects".
+ * * `complete` - the import is complete, and the repository is ready on GitHub.
+ *
+ * If there are problems, you will see one of these in the `status` field:
+ *
+ * * `auth_failed` - the import requires authentication in order to connect to the original repository. To update authentication for the import, please see the [Update an import](https://docs.github.com/rest/migrations/source-imports#update-an-import) section.
+ * * `error` - the import encountered an error. The import progress response will include the `failed_step` and an error message. Contact [GitHub Support](https://support.github.com/contact?tags=dotcom-rest-api) for more information.
+ * * `detection_needs_auth` - the importer requires authentication for the originating repository to continue detection. To update authentication for the import, please see the [Update an import](https://docs.github.com/rest/migrations/source-imports#update-an-import) section.
+ * * `detection_found_nothing` - the importer didn't recognize any source control at the URL. To resolve, [Cancel the import](https://docs.github.com/rest/migrations/source-imports#cancel-an-import) and [retry](https://docs.github.com/rest/migrations/source-imports#start-an-import) with the correct URL.
+ * * `detection_found_multiple` - the importer found several projects or repositories at the provided URL. When this is the case, the Import Progress response will also include a `project_choices` field with the possible project choices as values. To update project choice, please see the [Update an import](https://docs.github.com/rest/migrations/source-imports#update-an-import) section.
+ *
+ * **The project_choices field**
+ *
+ * When multiple projects are found at the provided URL, the response hash will include a `project_choices` field, the value of which is an array of hashes each representing a project choice. The exact key/value pairs of the project hashes will differ depending on the version control type.
+ *
+ * **Git LFS related fields**
+ *
+ * This section includes details about Git LFS related fields that may be present in the Import Progress response.
+ *
+ * * `use_lfs` - describes whether the import has been opted in or out of using Git LFS. The value can be `opt_in`, `opt_out`, or `undecided` if no action has been taken.
+ * * `has_large_files` - the boolean value describing whether files larger than 100MB were found during the `importing` step.
+ * * `large_files_size` - the total size in gigabytes of files larger than 100MB found in the originating repository.
+ * * `large_files_count` - the total number of files larger than 100MB found in the originating repository. To see a list of these files, make a "Get Large Files" request.
+ */
+ get: operations["migrations/get-import-status"];
+ /**
+ * Start an import
+ * @deprecated
+ * @description Start a source import to a GitHub repository using GitHub Importer.
+ * Importing into a GitHub repository with GitHub Actions enabled is not supported and will
+ * return a status `422 Unprocessable Entity` response.
+ *
+ * **Warning:** Due to very low levels of usage and available alternatives, this endpoint is deprecated and will no longer be available from 00:00 UTC on April 12, 2024. For more details and alternatives, see the [changelog](https://gh.io/source-imports-api-deprecation).
+ */
+ put: operations["migrations/start-import"];
+ /**
+ * Cancel an import
+ * @deprecated
+ * @description Stop an import for a repository.
+ *
+ * **Warning:** Due to very low levels of usage and available alternatives, this endpoint is deprecated and will no longer be available from 00:00 UTC on April 12, 2024. For more details and alternatives, see the [changelog](https://gh.io/source-imports-api-deprecation).
+ */
+ delete: operations["migrations/cancel-import"];
+ /**
+ * Update an import
+ * @deprecated
+ * @description An import can be updated with credentials or a project choice by passing in the appropriate parameters in this API
+ * request. If no parameters are provided, the import will be restarted.
+ *
+ * Some servers (e.g. TFS servers) can have several projects at a single URL. In those cases the import progress will
+ * have the status `detection_found_multiple` and the Import Progress response will include a `project_choices` array.
+ * You can select the project to import by providing one of the objects in the `project_choices` array in the update request.
+ *
+ * **Warning:** Due to very low levels of usage and available alternatives, this endpoint is deprecated and will no longer be available from 00:00 UTC on April 12, 2024. For more details and alternatives, see the [changelog](https://gh.io/source-imports-api-deprecation).
+ */
+ patch: operations["migrations/update-import"];
+ };
+ "/repos/{owner}/{repo}/import/authors": {
+ /**
+ * Get commit authors
+ * @deprecated
+ * @description Each type of source control system represents authors in a different way. For example, a Git commit author has a display name and an email address, but a Subversion commit author just has a username. The GitHub Importer will make the author information valid, but the author might not be correct. For example, it will change the bare Subversion username `hubot` into something like `hubot `.
+ *
+ * This endpoint and the [Map a commit author](https://docs.github.com/rest/migrations/source-imports#map-a-commit-author) endpoint allow you to provide correct Git author information.
+ *
+ * **Warning:** Due to very low levels of usage and available alternatives, this endpoint is deprecated and will no longer be available from 00:00 UTC on April 12, 2024. For more details and alternatives, see the [changelog](https://gh.io/source-imports-api-deprecation).
+ */
+ get: operations["migrations/get-commit-authors"];
+ };
+ "/repos/{owner}/{repo}/import/authors/{author_id}": {
+ /**
+ * Map a commit author
+ * @deprecated
+ * @description Update an author's identity for the import. Your application can continue updating authors any time before you push
+ * new commits to the repository.
+ *
+ * **Warning:** Due to very low levels of usage and available alternatives, this endpoint is deprecated and will no longer be available from 00:00 UTC on April 12, 2024. For more details and alternatives, see the [changelog](https://gh.io/source-imports-api-deprecation).
+ */
+ patch: operations["migrations/map-commit-author"];
+ };
+ "/repos/{owner}/{repo}/import/large_files": {
+ /**
+ * Get large files
+ * @deprecated
+ * @description List files larger than 100MB found during the import
+ *
+ * **Warning:** Due to very low levels of usage and available alternatives, this endpoint is deprecated and will no longer be available from 00:00 UTC on April 12, 2024. For more details and alternatives, see the [changelog](https://gh.io/source-imports-api-deprecation).
+ */
+ get: operations["migrations/get-large-files"];
+ };
+ "/repos/{owner}/{repo}/import/lfs": {
+ /**
+ * Update Git LFS preference
+ * @deprecated
+ * @description You can import repositories from Subversion, Mercurial, and TFS that include files larger than 100MB. This ability
+ * is powered by [Git LFS](https://git-lfs.com).
+ *
+ * You can learn more about our LFS feature and working with large files [on our help
+ * site](https://docs.github.com/repositories/working-with-files/managing-large-files).
+ *
+ * **Warning:** Due to very low levels of usage and available alternatives, this endpoint is deprecated and will no longer be available from 00:00 UTC on April 12, 2024. For more details and alternatives, see the [changelog](https://gh.io/source-imports-api-deprecation).
+ */
+ patch: operations["migrations/set-lfs-preference"];
+ };
+ "/repos/{owner}/{repo}/installation": {
+ /**
+ * Get a repository installation for the authenticated app
+ * @description Enables an authenticated GitHub App to find the repository's installation information. The installation's account type will be either an organization or a user account, depending which account the repository belongs to.
+ *
+ * You must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.
+ */
+ get: operations["apps/get-repo-installation"];
+ };
+ "/repos/{owner}/{repo}/interaction-limits": {
+ /**
+ * Get interaction restrictions for a repository
+ * @description Shows which type of GitHub user can interact with this repository and when the restriction expires. If there are no restrictions, you will see an empty response.
+ */
+ get: operations["interactions/get-restrictions-for-repo"];
+ /**
+ * Set interaction restrictions for a repository
+ * @description Temporarily restricts interactions to a certain type of GitHub user within the given repository. You must have owner or admin access to set these restrictions. If an interaction limit is set for the user or organization that owns this repository, you will receive a `409 Conflict` response and will not be able to use this endpoint to change the interaction limit for a single repository.
+ */
+ put: operations["interactions/set-restrictions-for-repo"];
+ /**
+ * Remove interaction restrictions for a repository
+ * @description Removes all interaction restrictions from the given repository. You must have owner or admin access to remove restrictions. If the interaction limit is set for the user or organization that owns this repository, you will receive a `409 Conflict` response and will not be able to use this endpoint to change the interaction limit for a single repository.
+ */
+ delete: operations["interactions/remove-restrictions-for-repo"];
+ };
+ "/repos/{owner}/{repo}/invitations": {
+ /**
+ * List repository invitations
+ * @description When authenticating as a user with admin rights to a repository, this endpoint will list all currently open repository invitations.
+ */
+ get: operations["repos/list-invitations"];
+ };
+ "/repos/{owner}/{repo}/invitations/{invitation_id}": {
+ /** Delete a repository invitation */
+ delete: operations["repos/delete-invitation"];
+ /** Update a repository invitation */
+ patch: operations["repos/update-invitation"];
+ };
+ "/repos/{owner}/{repo}/issues": {
+ /**
+ * List repository issues
+ * @description List issues in a repository. Only open issues will be listed.
+ *
+ * **Note**: GitHub's REST API considers every pull request an issue, but not every issue is a pull request. For this
+ * reason, "Issues" endpoints may return both issues and pull requests in the response. You can identify pull requests by
+ * the `pull_request` key. Be aware that the `id` of a pull request returned from "Issues" endpoints will be an _issue id_. To find out the pull
+ * request id, use the "[List pull requests](https://docs.github.com/rest/pulls/pulls#list-pull-requests)" endpoint.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ get: operations["issues/list-for-repo"];
+ /**
+ * Create an issue
+ * @description Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://docs.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.
+ *
+ * This endpoint triggers [notifications](https://docs.github.com/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. For more information, see "[Rate limits for the API](https://docs.github.com/rest/overview/rate-limits-for-the-rest-api#about-secondary-rate-limits)"
+ * and "[Best practices for using the REST API](https://docs.github.com/rest/guides/best-practices-for-using-the-rest-api)."
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ post: operations["issues/create"];
+ };
+ "/repos/{owner}/{repo}/issues/comments": {
+ /**
+ * List issue comments for a repository
+ * @description You can use the REST API to list comments on issues and pull requests for a repository. Every pull request is an issue, but not every issue is a pull request.
+ *
+ * By default, issue comments are ordered by ascending ID.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ get: operations["issues/list-comments-for-repo"];
+ };
+ "/repos/{owner}/{repo}/issues/comments/{comment_id}": {
+ /**
+ * Get an issue comment
+ * @description You can use the REST API to get comments on issues and pull requests. Every pull request is an issue, but not every issue is a pull request.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ get: operations["issues/get-comment"];
+ /**
+ * Delete an issue comment
+ * @description You can use the REST API to delete comments on issues and pull requests. Every pull request is an issue, but not every issue is a pull request.
+ */
+ delete: operations["issues/delete-comment"];
+ /**
+ * Update an issue comment
+ * @description You can use the REST API to update comments on issues and pull requests. Every pull request is an issue, but not every issue is a pull request.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ patch: operations["issues/update-comment"];
+ };
+ "/repos/{owner}/{repo}/issues/comments/{comment_id}/reactions": {
+ /**
+ * List reactions for an issue comment
+ * @description List the reactions to an [issue comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment).
+ */
+ get: operations["reactions/list-for-issue-comment"];
+ /**
+ * Create reaction for an issue comment
+ * @description Create a reaction to an [issue comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment). A response with an HTTP `200` status means that you already added the reaction type to this issue comment.
+ */
+ post: operations["reactions/create-for-issue-comment"];
+ };
+ "/repos/{owner}/{repo}/issues/comments/{comment_id}/reactions/{reaction_id}": {
+ /**
+ * Delete an issue comment reaction
+ * @description **Note:** You can also specify a repository by `repository_id` using the route `DELETE delete /repositories/:repository_id/issues/comments/:comment_id/reactions/:reaction_id`.
+ *
+ * Delete a reaction to an [issue comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment).
+ */
+ delete: operations["reactions/delete-for-issue-comment"];
+ };
+ "/repos/{owner}/{repo}/issues/events": {
+ /**
+ * List issue events for a repository
+ * @description Lists events for a repository.
+ */
+ get: operations["issues/list-events-for-repo"];
+ };
+ "/repos/{owner}/{repo}/issues/events/{event_id}": {
+ /**
+ * Get an issue event
+ * @description Gets a single event by the event id.
+ */
+ get: operations["issues/get-event"];
+ };
+ "/repos/{owner}/{repo}/issues/{issue_number}": {
+ /**
+ * Get an issue
+ * @description The API returns a [`301 Moved Permanently` status](https://docs.github.com/rest/guides/best-practices-for-using-the-rest-api#follow-redirects) if the issue was
+ * [transferred](https://docs.github.com/articles/transferring-an-issue-to-another-repository/) to another repository. If
+ * the issue was transferred to or deleted from a repository where the authenticated user lacks read access, the API
+ * returns a `404 Not Found` status. If the issue was deleted from a repository where the authenticated user has read
+ * access, the API returns a `410 Gone` status. To receive webhook events for transferred and deleted issues, subscribe
+ * to the [`issues`](https://docs.github.com/webhooks/event-payloads/#issues) webhook.
+ *
+ * **Note**: GitHub's REST API considers every pull request an issue, but not every issue is a pull request. For this
+ * reason, "Issues" endpoints may return both issues and pull requests in the response. You can identify pull requests by
+ * the `pull_request` key. Be aware that the `id` of a pull request returned from "Issues" endpoints will be an _issue id_. To find out the pull
+ * request id, use the "[List pull requests](https://docs.github.com/rest/pulls/pulls#list-pull-requests)" endpoint.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ get: operations["issues/get"];
+ /**
+ * Update an issue
+ * @description Issue owners and users with push access can edit an issue.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ patch: operations["issues/update"];
+ };
+ "/repos/{owner}/{repo}/issues/{issue_number}/assignees": {
+ /**
+ * Add assignees to an issue
+ * @description Adds up to 10 assignees to an issue. Users already assigned to an issue are not replaced.
+ */
+ post: operations["issues/add-assignees"];
+ /**
+ * Remove assignees from an issue
+ * @description Removes one or more assignees from an issue.
+ */
+ delete: operations["issues/remove-assignees"];
+ };
+ "/repos/{owner}/{repo}/issues/{issue_number}/assignees/{assignee}": {
+ /**
+ * Check if a user can be assigned to a issue
+ * @description Checks if a user has permission to be assigned to a specific issue.
+ *
+ * If the `assignee` can be assigned to this issue, a `204` status code with no content is returned.
+ *
+ * Otherwise a `404` status code is returned.
+ */
+ get: operations["issues/check-user-can-be-assigned-to-issue"];
+ };
+ "/repos/{owner}/{repo}/issues/{issue_number}/comments": {
+ /**
+ * List issue comments
+ * @description You can use the REST API to list comments on issues and pull requests. Every pull request is an issue, but not every issue is a pull request.
+ *
+ * Issue comments are ordered by ascending ID.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ get: operations["issues/list-comments"];
+ /**
+ * Create an issue comment
+ * @description You can use the REST API to create comments on issues and pull requests. Every pull request is an issue, but not every issue is a pull request.
+ *
+ * This endpoint triggers [notifications](https://docs.github.com/github/managing-subscriptions-and-notifications-on-github/about-notifications).
+ * Creating content too quickly using this endpoint may result in secondary rate limiting.
+ * For more information, see "[Rate limits for the API](https://docs.github.com/rest/overview/rate-limits-for-the-rest-api#about-secondary-rate-limits)"
+ * and "[Best practices for using the REST API](https://docs.github.com/rest/guides/best-practices-for-using-the-rest-api)."
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ post: operations["issues/create-comment"];
+ };
+ "/repos/{owner}/{repo}/issues/{issue_number}/events": {
+ /**
+ * List issue events
+ * @description Lists all events for an issue.
+ */
+ get: operations["issues/list-events"];
+ };
+ "/repos/{owner}/{repo}/issues/{issue_number}/labels": {
+ /**
+ * List labels for an issue
+ * @description Lists all labels for an issue.
+ */
+ get: operations["issues/list-labels-on-issue"];
+ /**
+ * Set labels for an issue
+ * @description Removes any previous labels and sets the new labels for an issue.
+ */
+ put: operations["issues/set-labels"];
+ /**
+ * Add labels to an issue
+ * @description Adds labels to an issue. If you provide an empty array of labels, all labels are removed from the issue.
+ */
+ post: operations["issues/add-labels"];
+ /**
+ * Remove all labels from an issue
+ * @description Removes all labels from an issue.
+ */
+ delete: operations["issues/remove-all-labels"];
+ };
+ "/repos/{owner}/{repo}/issues/{issue_number}/labels/{name}": {
+ /**
+ * Remove a label from an issue
+ * @description Removes the specified label from the issue, and returns the remaining labels on the issue. This endpoint returns a `404 Not Found` status if the label does not exist.
+ */
+ delete: operations["issues/remove-label"];
+ };
+ "/repos/{owner}/{repo}/issues/{issue_number}/lock": {
+ /**
+ * Lock an issue
+ * @description Users with push access can lock an issue or pull request's conversation.
+ *
+ * Note that, if you choose not to pass any parameters, you'll need to set `Content-Length` to zero when calling out to this endpoint. For more information, see "[HTTP method](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#http-method)."
+ */
+ put: operations["issues/lock"];
+ /**
+ * Unlock an issue
+ * @description Users with push access can unlock an issue's conversation.
+ */
+ delete: operations["issues/unlock"];
+ };
+ "/repos/{owner}/{repo}/issues/{issue_number}/reactions": {
+ /**
+ * List reactions for an issue
+ * @description List the reactions to an [issue](https://docs.github.com/rest/issues/issues#get-an-issue).
+ */
+ get: operations["reactions/list-for-issue"];
+ /**
+ * Create reaction for an issue
+ * @description Create a reaction to an [issue](https://docs.github.com/rest/issues/issues#get-an-issue). A response with an HTTP `200` status means that you already added the reaction type to this issue.
+ */
+ post: operations["reactions/create-for-issue"];
+ };
+ "/repos/{owner}/{repo}/issues/{issue_number}/reactions/{reaction_id}": {
+ /**
+ * Delete an issue reaction
+ * @description **Note:** You can also specify a repository by `repository_id` using the route `DELETE /repositories/:repository_id/issues/:issue_number/reactions/:reaction_id`.
+ *
+ * Delete a reaction to an [issue](https://docs.github.com/rest/issues/issues#get-an-issue).
+ */
+ delete: operations["reactions/delete-for-issue"];
+ };
+ "/repos/{owner}/{repo}/issues/{issue_number}/timeline": {
+ /**
+ * List timeline events for an issue
+ * @description List all timeline events for an issue.
+ */
+ get: operations["issues/list-events-for-timeline"];
+ };
+ "/repos/{owner}/{repo}/keys": {
+ /** List deploy keys */
+ get: operations["repos/list-deploy-keys"];
+ /**
+ * Create a deploy key
+ * @description You can create a read-only deploy key.
+ */
+ post: operations["repos/create-deploy-key"];
+ };
+ "/repos/{owner}/{repo}/keys/{key_id}": {
+ /** Get a deploy key */
+ get: operations["repos/get-deploy-key"];
+ /**
+ * Delete a deploy key
+ * @description Deploy keys are immutable. If you need to update a key, remove the key and create a new one instead.
+ */
+ delete: operations["repos/delete-deploy-key"];
+ };
+ "/repos/{owner}/{repo}/labels": {
+ /**
+ * List labels for a repository
+ * @description Lists all labels for a repository.
+ */
+ get: operations["issues/list-labels-for-repo"];
+ /**
+ * Create a label
+ * @description Creates a label for the specified repository with the given name and color. The name and color parameters are required. The color must be a valid [hexadecimal color code](http://www.color-hex.com/).
+ */
+ post: operations["issues/create-label"];
+ };
+ "/repos/{owner}/{repo}/labels/{name}": {
+ /**
+ * Get a label
+ * @description Gets a label using the given name.
+ */
+ get: operations["issues/get-label"];
+ /**
+ * Delete a label
+ * @description Deletes a label using the given label name.
+ */
+ delete: operations["issues/delete-label"];
+ /**
+ * Update a label
+ * @description Updates a label using the given label name.
+ */
+ patch: operations["issues/update-label"];
+ };
+ "/repos/{owner}/{repo}/languages": {
+ /**
+ * List repository languages
+ * @description Lists languages for the specified repository. The value shown for each language is the number of bytes of code written in that language.
+ */
+ get: operations["repos/list-languages"];
+ };
+ "/repos/{owner}/{repo}/license": {
+ /**
+ * Get the license for a repository
+ * @description This method returns the contents of the repository's license file, if one is detected.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw contents of the license.
+ * - **`application/vnd.github.html+json`**: Returns the license contents in HTML. Markup languages are rendered to HTML using GitHub's open-source [Markup library](https://github.com/github/markup).
+ */
+ get: operations["licenses/get-for-repo"];
+ };
+ "/repos/{owner}/{repo}/merge-upstream": {
+ /**
+ * Sync a fork branch with the upstream repository
+ * @description Sync a branch of a forked repository to keep it up-to-date with the upstream repository.
+ */
+ post: operations["repos/merge-upstream"];
+ };
+ "/repos/{owner}/{repo}/merges": {
+ /** Merge a branch */
+ post: operations["repos/merge"];
+ };
+ "/repos/{owner}/{repo}/milestones": {
+ /**
+ * List milestones
+ * @description Lists milestones for a repository.
+ */
+ get: operations["issues/list-milestones"];
+ /**
+ * Create a milestone
+ * @description Creates a milestone.
+ */
+ post: operations["issues/create-milestone"];
+ };
+ "/repos/{owner}/{repo}/milestones/{milestone_number}": {
+ /**
+ * Get a milestone
+ * @description Gets a milestone using the given milestone number.
+ */
+ get: operations["issues/get-milestone"];
+ /**
+ * Delete a milestone
+ * @description Deletes a milestone using the given milestone number.
+ */
+ delete: operations["issues/delete-milestone"];
+ /** Update a milestone */
+ patch: operations["issues/update-milestone"];
+ };
+ "/repos/{owner}/{repo}/milestones/{milestone_number}/labels": {
+ /**
+ * List labels for issues in a milestone
+ * @description Lists labels for issues in a milestone.
+ */
+ get: operations["issues/list-labels-for-milestone"];
+ };
+ "/repos/{owner}/{repo}/notifications": {
+ /**
+ * List repository notifications for the authenticated user
+ * @description Lists all notifications for the current user in the specified repository.
+ */
+ get: operations["activity/list-repo-notifications-for-authenticated-user"];
+ /**
+ * Mark repository notifications as read
+ * @description Marks all notifications in a repository as "read" for the current user. If the number of notifications is too large to complete in one request, you will receive a `202 Accepted` status and GitHub will run an asynchronous process to mark notifications as "read." To check whether any "unread" notifications remain, you can use the [List repository notifications for the authenticated user](https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user) endpoint and pass the query parameter `all=false`.
+ */
+ put: operations["activity/mark-repo-notifications-as-read"];
+ };
+ "/repos/{owner}/{repo}/pages": {
+ /**
+ * Get a GitHub Pages site
+ * @description Gets information about a GitHub Pages site.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["repos/get-pages"];
+ /**
+ * Update information about a GitHub Pages site
+ * @description Updates information for a GitHub Pages site. For more information, see "[About GitHub Pages](/github/working-with-github-pages/about-github-pages).
+ *
+ * The authenticated user must be a repository administrator, maintainer, or have the 'manage GitHub Pages settings' permission.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ put: operations["repos/update-information-about-pages-site"];
+ /**
+ * Create a GitHub Pages site
+ * @description Configures a GitHub Pages site. For more information, see "[About GitHub Pages](/github/working-with-github-pages/about-github-pages)."
+ *
+ * The authenticated user must be a repository administrator, maintainer, or have the 'manage GitHub Pages settings' permission.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ post: operations["repos/create-pages-site"];
+ /**
+ * Delete a GitHub Pages site
+ * @description Deletes a GitHub Pages site. For more information, see "[About GitHub Pages](/github/working-with-github-pages/about-github-pages).
+ *
+ * The authenticated user must be a repository administrator, maintainer, or have the 'manage GitHub Pages settings' permission.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ delete: operations["repos/delete-pages-site"];
+ };
+ "/repos/{owner}/{repo}/pages/builds": {
+ /**
+ * List GitHub Pages builds
+ * @description Lists builts of a GitHub Pages site.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["repos/list-pages-builds"];
+ /**
+ * Request a GitHub Pages build
+ * @description You can request that your site be built from the latest revision on the default branch. This has the same effect as pushing a commit to your default branch, but does not require an additional commit. Manually triggering page builds can be helpful when diagnosing build warnings and failures.
+ *
+ * Build requests are limited to one concurrent build per repository and one concurrent build per requester. If you request a build while another is still in progress, the second request will be queued until the first completes.
+ */
+ post: operations["repos/request-pages-build"];
+ };
+ "/repos/{owner}/{repo}/pages/builds/latest": {
+ /**
+ * Get latest Pages build
+ * @description Gets information about the single most recent build of a GitHub Pages site.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["repos/get-latest-pages-build"];
+ };
+ "/repos/{owner}/{repo}/pages/builds/{build_id}": {
+ /**
+ * Get GitHub Pages build
+ * @description Gets information about a GitHub Pages build.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["repos/get-pages-build"];
+ };
+ "/repos/{owner}/{repo}/pages/deployments": {
+ /**
+ * Create a GitHub Pages deployment
+ * @description Create a GitHub Pages deployment for a repository.
+ *
+ * The authenticated user must have write permission to the repository.
+ */
+ post: operations["repos/create-pages-deployment"];
+ };
+ "/repos/{owner}/{repo}/pages/deployments/{pages_deployment_id}": {
+ /**
+ * Get the status of a GitHub Pages deployment
+ * @description Gets the current status of a GitHub Pages deployment.
+ *
+ * The authenticated user must have read permission for the GitHub Pages site.
+ */
+ get: operations["repos/get-pages-deployment"];
+ };
+ "/repos/{owner}/{repo}/pages/deployments/{pages_deployment_id}/cancel": {
+ /**
+ * Cancel a GitHub Pages deployment
+ * @description Cancels a GitHub Pages deployment.
+ *
+ * The authenticated user must have write permissions for the GitHub Pages site.
+ */
+ post: operations["repos/cancel-pages-deployment"];
+ };
+ "/repos/{owner}/{repo}/pages/health": {
+ /**
+ * Get a DNS health check for GitHub Pages
+ * @description Gets a health check of the DNS settings for the `CNAME` record configured for a repository's GitHub Pages.
+ *
+ * The first request to this endpoint returns a `202 Accepted` status and starts an asynchronous background task to get the results for the domain. After the background task completes, subsequent requests to this endpoint return a `200 OK` status with the health check results in the response.
+ *
+ * The authenticated user must be a repository administrator, maintainer, or have the 'manage GitHub Pages settings' permission to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["repos/get-pages-health-check"];
+ };
+ "/repos/{owner}/{repo}/private-vulnerability-reporting": {
+ /**
+ * Check if private vulnerability reporting is enabled for a repository
+ * @description Returns a boolean indicating whether or not private vulnerability reporting is enabled for the repository. For more information, see "[Evaluating the security settings of a repository](https://docs.github.com/code-security/security-advisories/working-with-repository-security-advisories/evaluating-the-security-settings-of-a-repository)".
+ */
+ get: operations["repos/check-private-vulnerability-reporting"];
+ /**
+ * Enable private vulnerability reporting for a repository
+ * @description Enables private vulnerability reporting for a repository. The authenticated user must have admin access to the repository. For more information, see "[Privately reporting a security vulnerability](https://docs.github.com/code-security/security-advisories/guidance-on-reporting-and-writing/privately-reporting-a-security-vulnerability)."
+ */
+ put: operations["repos/enable-private-vulnerability-reporting"];
+ /**
+ * Disable private vulnerability reporting for a repository
+ * @description Disables private vulnerability reporting for a repository. The authenticated user must have admin access to the repository. For more information, see "[Privately reporting a security vulnerability](https://docs.github.com/code-security/security-advisories/guidance-on-reporting-and-writing/privately-reporting-a-security-vulnerability)".
+ */
+ delete: operations["repos/disable-private-vulnerability-reporting"];
+ };
+ "/repos/{owner}/{repo}/projects": {
+ /**
+ * List repository projects
+ * @description Lists the projects in a repository. Returns a `404 Not Found` status if projects are disabled in the repository. If you do not have sufficient privileges to perform this action, a `401 Unauthorized` or `410 Gone` status is returned.
+ */
+ get: operations["projects/list-for-repo"];
+ /**
+ * Create a repository project
+ * @description Creates a repository project board. Returns a `410 Gone` status if projects are disabled in the repository or if the repository does not have existing classic projects. If you do not have sufficient privileges to perform this action, a `401 Unauthorized` or `410 Gone` status is returned.
+ */
+ post: operations["projects/create-for-repo"];
+ };
+ "/repos/{owner}/{repo}/properties/values": {
+ /**
+ * Get all custom property values for a repository
+ * @description Gets all custom property values that are set for a repository.
+ * Users with read access to the repository can use this endpoint.
+ */
+ get: operations["repos/get-custom-properties-values"];
+ /**
+ * Create or update custom property values for a repository
+ * @description Create new or update existing custom property values for a repository.
+ * Using a value of `null` for a custom property will remove or 'unset' the property value from the repository.
+ *
+ * Repository admins and other users with the repository-level "edit custom property values" fine-grained permission can use this endpoint.
+ */
+ patch: operations["repos/create-or-update-custom-properties-values"];
+ };
+ "/repos/{owner}/{repo}/pulls": {
+ /**
+ * List pull requests
+ * @description Lists pull requests in a specified repository.
+ *
+ * Draft pull requests are available in public repositories with GitHub
+ * Free and GitHub Free for organizations, GitHub Pro, and legacy per-repository billing
+ * plans, and in public and private repositories with GitHub Team and GitHub Enterprise
+ * Cloud. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products)
+ * in the GitHub Help documentation.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ get: operations["pulls/list"];
+ /**
+ * Create a pull request
+ * @description Draft pull requests are available in public repositories with GitHub Free and GitHub Free for organizations, GitHub Pro, and legacy per-repository billing plans, and in public and private repositories with GitHub Team and GitHub Enterprise Cloud. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * To open or update a pull request in a public repository, you must have write access to the head or the source branch. For organization-owned repositories, you must be a member of the organization that owns the repository to open or update a pull request.
+ *
+ * This endpoint triggers [notifications](https://docs.github.com/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. For more information, see "[Rate limits for the API](https://docs.github.com/rest/overview/rate-limits-for-the-rest-api#about-secondary-rate-limits)" and "[Best practices for using the REST API](https://docs.github.com/rest/guides/best-practices-for-using-the-rest-api)."
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ post: operations["pulls/create"];
+ };
+ "/repos/{owner}/{repo}/pulls/comments": {
+ /**
+ * List review comments in a repository
+ * @description Lists review comments for all pull requests in a repository. By default,
+ * review comments are in ascending order by ID.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github-commitcomment.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github-commitcomment.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github-commitcomment.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github-commitcomment.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ get: operations["pulls/list-review-comments-for-repo"];
+ };
+ "/repos/{owner}/{repo}/pulls/comments/{comment_id}": {
+ /**
+ * Get a review comment for a pull request
+ * @description Provides details for a specified review comment.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github-commitcomment.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github-commitcomment.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github-commitcomment.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github-commitcomment.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ get: operations["pulls/get-review-comment"];
+ /**
+ * Delete a review comment for a pull request
+ * @description Deletes a review comment.
+ */
+ delete: operations["pulls/delete-review-comment"];
+ /**
+ * Update a review comment for a pull request
+ * @description Edits the content of a specified review comment.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github-commitcomment.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github-commitcomment.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github-commitcomment.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github-commitcomment.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ patch: operations["pulls/update-review-comment"];
+ };
+ "/repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions": {
+ /**
+ * List reactions for a pull request review comment
+ * @description List the reactions to a [pull request review comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request).
+ */
+ get: operations["reactions/list-for-pull-request-review-comment"];
+ /**
+ * Create reaction for a pull request review comment
+ * @description Create a reaction to a [pull request review comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request). A response with an HTTP `200` status means that you already added the reaction type to this pull request review comment.
+ */
+ post: operations["reactions/create-for-pull-request-review-comment"];
+ };
+ "/repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions/{reaction_id}": {
+ /**
+ * Delete a pull request comment reaction
+ * @description **Note:** You can also specify a repository by `repository_id` using the route `DELETE /repositories/:repository_id/pulls/comments/:comment_id/reactions/:reaction_id.`
+ *
+ * Delete a reaction to a [pull request review comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request).
+ */
+ delete: operations["reactions/delete-for-pull-request-comment"];
+ };
+ "/repos/{owner}/{repo}/pulls/{pull_number}": {
+ /**
+ * Get a pull request
+ * @description Draft pull requests are available in public repositories with GitHub Free and GitHub Free for organizations, GitHub Pro, and legacy per-repository billing plans, and in public and private repositories with GitHub Team and GitHub Enterprise Cloud. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * Lists details of a pull request by providing its number.
+ *
+ * When you get, [create](https://docs.github.com/rest/pulls/pulls/#create-a-pull-request), or [edit](https://docs.github.com/rest/pulls/pulls#update-a-pull-request) a pull request, GitHub creates a merge commit to test whether the pull request can be automatically merged into the base branch. This test commit is not added to the base branch or the head branch. You can review the status of the test commit using the `mergeable` key. For more information, see "[Checking mergeability of pull requests](https://docs.github.com/rest/guides/getting-started-with-the-git-database-api#checking-mergeability-of-pull-requests)".
+ *
+ * The value of the `mergeable` attribute can be `true`, `false`, or `null`. If the value is `null`, then GitHub has started a background job to compute the mergeability. After giving the job time to complete, resubmit the request. When the job finishes, you will see a non-`null` value for the `mergeable` attribute in the response. If `mergeable` is `true`, then `merge_commit_sha` will be the SHA of the _test_ merge commit.
+ *
+ * The value of the `merge_commit_sha` attribute changes depending on the state of the pull request. Before merging a pull request, the `merge_commit_sha` attribute holds the SHA of the _test_ merge commit. After merging a pull request, the `merge_commit_sha` attribute changes depending on how you merged the pull request:
+ *
+ * * If merged as a [merge commit](https://docs.github.com/articles/about-merge-methods-on-github/), `merge_commit_sha` represents the SHA of the merge commit.
+ * * If merged via a [squash](https://docs.github.com/articles/about-merge-methods-on-github/#squashing-your-merge-commits), `merge_commit_sha` represents the SHA of the squashed commit on the base branch.
+ * * If [rebased](https://docs.github.com/articles/about-merge-methods-on-github/#rebasing-and-merging-your-commits), `merge_commit_sha` represents the commit that the base branch was updated to.
+ *
+ * Pass the appropriate [media type](https://docs.github.com/rest/overview/media-types/#commits-commit-comparison-and-pull-requests) to fetch diff and patch formats.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ * - **`application/vnd.github.diff`**: For more information, see "[git-diff](https://git-scm.com/docs/git-diff)" in the Git documentation. If a diff is corrupt, contact us through the [GitHub Support portal](https://support.github.com/). Include the repository name and pull request ID in your message.
+ */
+ get: operations["pulls/get"];
+ /**
+ * Update a pull request
+ * @description Draft pull requests are available in public repositories with GitHub Free and GitHub Free for organizations, GitHub Pro, and legacy per-repository billing plans, and in public and private repositories with GitHub Team and GitHub Enterprise Cloud. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * To open or update a pull request in a public repository, you must have write access to the head or the source branch. For organization-owned repositories, you must be a member of the organization that owns the repository to open or update a pull request.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ patch: operations["pulls/update"];
+ };
+ "/repos/{owner}/{repo}/pulls/{pull_number}/codespaces": {
+ /**
+ * Create a codespace from a pull request
+ * @description Creates a codespace owned by the authenticated user for the specified pull request.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` scope to use this endpoint.
+ */
+ post: operations["codespaces/create-with-pr-for-authenticated-user"];
+ };
+ "/repos/{owner}/{repo}/pulls/{pull_number}/comments": {
+ /**
+ * List review comments on a pull request
+ * @description Lists all review comments for a specified pull request. By default, review comments
+ * are in ascending order by ID.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github-commitcomment.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github-commitcomment.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github-commitcomment.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github-commitcomment.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ get: operations["pulls/list-review-comments"];
+ /**
+ * Create a review comment for a pull request
+ * @description Creates a review comment on the diff of a specified pull request. To add a regular comment to a pull request timeline, see "[Create an issue comment](https://docs.github.com/rest/issues/comments#create-an-issue-comment)."
+ *
+ * If your comment applies to more than one line in the pull request diff, you should use the parameters `line`, `side`, and optionally `start_line` and `start_side` in your request.
+ *
+ * The `position` parameter is deprecated. If you use `position`, the `line`, `side`, `start_line`, and `start_side` parameters are not required.
+ *
+ * This endpoint triggers [notifications](https://docs.github.com/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. For more information, see "[Rate limits for the API](https://docs.github.com/rest/overview/rate-limits-for-the-rest-api#about-secondary-rate-limits)"
+ * and "[Best practices for using the REST API](https://docs.github.com/rest/guides/best-practices-for-using-the-rest-api)."
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github-commitcomment.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github-commitcomment.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github-commitcomment.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github-commitcomment.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ post: operations["pulls/create-review-comment"];
+ };
+ "/repos/{owner}/{repo}/pulls/{pull_number}/comments/{comment_id}/replies": {
+ /**
+ * Create a reply for a review comment
+ * @description Creates a reply to a review comment for a pull request. For the `comment_id`, provide the ID of the review comment you are replying to. This must be the ID of a _top-level review comment_, not a reply to that comment. Replies to replies are not supported.
+ *
+ * This endpoint triggers [notifications](https://docs.github.com/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. For more information, see "[Rate limits for the API](https://docs.github.com/rest/overview/rate-limits-for-the-rest-api#about-secondary-rate-limits)"
+ * and "[Best practices for using the REST API](https://docs.github.com/rest/guides/best-practices-for-using-the-rest-api)."
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github-commitcomment.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github-commitcomment.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github-commitcomment.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github-commitcomment.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ post: operations["pulls/create-reply-for-review-comment"];
+ };
+ "/repos/{owner}/{repo}/pulls/{pull_number}/commits": {
+ /**
+ * List commits on a pull request
+ * @description Lists a maximum of 250 commits for a pull request. To receive a complete
+ * commit list for pull requests with more than 250 commits, use the [List commits](https://docs.github.com/rest/commits/commits#list-commits)
+ * endpoint.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ get: operations["pulls/list-commits"];
+ };
+ "/repos/{owner}/{repo}/pulls/{pull_number}/files": {
+ /**
+ * List pull requests files
+ * @description Lists the files in a specified pull request.
+ *
+ * **Note:** Responses include a maximum of 3000 files. The paginated response
+ * returns 30 files per page by default.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ get: operations["pulls/list-files"];
+ };
+ "/repos/{owner}/{repo}/pulls/{pull_number}/merge": {
+ /**
+ * Check if a pull request has been merged
+ * @description Checks if a pull request has been merged into the base branch. The HTTP status of the response indicates whether or not the pull request has been merged; the response body is empty.
+ */
+ get: operations["pulls/check-if-merged"];
+ /**
+ * Merge a pull request
+ * @description Merges a pull request into the base branch.
+ * This endpoint triggers [notifications](https://docs.github.com/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. For more information, see "[Rate limits for the API](https://docs.github.com/rest/overview/rate-limits-for-the-rest-api#about-secondary-rate-limits)" and "[Best practices for using the REST API](https://docs.github.com/rest/guides/best-practices-for-using-the-rest-api)."
+ */
+ put: operations["pulls/merge"];
+ };
+ "/repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers": {
+ /**
+ * Get all requested reviewers for a pull request
+ * @description Gets the users or teams whose review is requested for a pull request. Once a requested reviewer submits a review, they are no longer considered a requested reviewer. Their review will instead be returned by the [List reviews for a pull request](https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request) operation.
+ */
+ get: operations["pulls/list-requested-reviewers"];
+ /**
+ * Request reviewers for a pull request
+ * @description This endpoint triggers [notifications](https://docs.github.com/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See "[Secondary rate limits](https://docs.github.com/rest/overview/resources-in-the-rest-api#secondary-rate-limits)" and "[Dealing with secondary rate limits](https://docs.github.com/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)" for details.
+ */
+ post: operations["pulls/request-reviewers"];
+ /**
+ * Remove requested reviewers from a pull request
+ * @description Removes review requests from a pull request for a given set of users and/or teams.
+ */
+ delete: operations["pulls/remove-requested-reviewers"];
+ };
+ "/repos/{owner}/{repo}/pulls/{pull_number}/reviews": {
+ /**
+ * List reviews for a pull request
+ * @description Lists all reviews for a specified pull request. The list of reviews returns in chronological order.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github-commitcomment.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github-commitcomment.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github-commitcomment.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github-commitcomment.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ get: operations["pulls/list-reviews"];
+ /**
+ * Create a review for a pull request
+ * @description Creates a review on a specified pull request.
+ *
+ * This endpoint triggers [notifications](https://docs.github.com/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. For more information, see "[Rate limits for the API](https://docs.github.com/rest/overview/rate-limits-for-the-rest-api#about-secondary-rate-limits)" and "[Best practices for using the REST API](https://docs.github.com/rest/guides/best-practices-for-using-the-rest-api)."
+ *
+ * Pull request reviews created in the `PENDING` state are not submitted and therefore do not include the `submitted_at` property in the response. To create a pending review for a pull request, leave the `event` parameter blank. For more information about submitting a `PENDING` review, see "[Submit a review for a pull request](https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request)."
+ *
+ * **Note:** To comment on a specific line in a file, you need to first determine the position of that line in the diff. To see a pull request diff, add the `application/vnd.github.v3.diff` media type to the `Accept` header of a call to the [Get a pull request](https://docs.github.com/rest/pulls/pulls#get-a-pull-request) endpoint.
+ *
+ * The `position` value equals the number of lines down from the first "@@" hunk header in the file you want to add a comment. The line just below the "@@" line is position 1, the next line is position 2, and so on. The position in the diff continues to increase through lines of whitespace and additional hunks until the beginning of a new file.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github-commitcomment.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github-commitcomment.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github-commitcomment.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github-commitcomment.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ post: operations["pulls/create-review"];
+ };
+ "/repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}": {
+ /**
+ * Get a review for a pull request
+ * @description Retrieves a pull request review by its ID.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github-commitcomment.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github-commitcomment.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github-commitcomment.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github-commitcomment.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ get: operations["pulls/get-review"];
+ /**
+ * Update a review for a pull request
+ * @description Updates the contents of a specified review summary comment.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github-commitcomment.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github-commitcomment.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github-commitcomment.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github-commitcomment.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ put: operations["pulls/update-review"];
+ /**
+ * Delete a pending review for a pull request
+ * @description Deletes a pull request review that has not been submitted. Submitted reviews cannot be deleted.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github-commitcomment.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github-commitcomment.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github-commitcomment.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github-commitcomment.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ delete: operations["pulls/delete-pending-review"];
+ };
+ "/repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/comments": {
+ /**
+ * List comments for a pull request review
+ * @description Lists comments for a specific pull request review.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github-commitcomment.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github-commitcomment.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github-commitcomment.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github-commitcomment.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ get: operations["pulls/list-comments-for-review"];
+ };
+ "/repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/dismissals": {
+ /**
+ * Dismiss a review for a pull request
+ * @description Dismisses a specified review on a pull request.
+ *
+ * **Note:** To dismiss a pull request review on a [protected branch](https://docs.github.com/rest/branches/branch-protection),
+ * you must be a repository administrator or be included in the list of people or teams
+ * who can dismiss pull request reviews.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github-commitcomment.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github-commitcomment.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github-commitcomment.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github-commitcomment.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ put: operations["pulls/dismiss-review"];
+ };
+ "/repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/events": {
+ /**
+ * Submit a review for a pull request
+ * @description Submits a pending review for a pull request. For more information about creating a pending review for a pull request, see "[Create a review for a pull request](https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request)."
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github-commitcomment.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github-commitcomment.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github-commitcomment.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github-commitcomment.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ post: operations["pulls/submit-review"];
+ };
+ "/repos/{owner}/{repo}/pulls/{pull_number}/update-branch": {
+ /**
+ * Update a pull request branch
+ * @description Updates the pull request branch with the latest upstream changes by merging HEAD from the base branch into the pull request branch.
+ */
+ put: operations["pulls/update-branch"];
+ };
+ "/repos/{owner}/{repo}/readme": {
+ /**
+ * Get a repository README
+ * @description Gets the preferred README for a repository.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw file contents. This is the default if you do not specify a media type.
+ * - **`application/vnd.github.html+json`**: Returns the README in HTML. Markup languages are rendered to HTML using GitHub's open-source [Markup library](https://github.com/github/markup).
+ */
+ get: operations["repos/get-readme"];
+ };
+ "/repos/{owner}/{repo}/readme/{dir}": {
+ /**
+ * Get a repository README for a directory
+ * @description Gets the README from a repository directory.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw file contents. This is the default if you do not specify a media type.
+ * - **`application/vnd.github.html+json`**: Returns the README in HTML. Markup languages are rendered to HTML using GitHub's open-source [Markup library](https://github.com/github/markup).
+ */
+ get: operations["repos/get-readme-in-directory"];
+ };
+ "/repos/{owner}/{repo}/releases": {
+ /**
+ * List releases
+ * @description This returns a list of releases, which does not include regular Git tags that have not been associated with a release. To get a list of Git tags, use the [Repository Tags API](https://docs.github.com/rest/repos/repos#list-repository-tags).
+ *
+ * Information about published releases are available to everyone. Only users with push access will receive listings for draft releases.
+ */
+ get: operations["repos/list-releases"];
+ /**
+ * Create a release
+ * @description Users with push access to the repository can create a release.
+ *
+ * This endpoint triggers [notifications](https://docs.github.com/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. For more information, see "[Rate limits for the API](https://docs.github.com/rest/overview/rate-limits-for-the-rest-api#about-secondary-rate-limits)" and "[Best practices for using the REST API](https://docs.github.com/rest/guides/best-practices-for-using-the-rest-api)."
+ */
+ post: operations["repos/create-release"];
+ };
+ "/repos/{owner}/{repo}/releases/assets/{asset_id}": {
+ /**
+ * Get a release asset
+ * @description To download the asset's binary content, set the `Accept` header of the request to [`application/octet-stream`](https://docs.github.com/rest/overview/media-types). The API will either redirect the client to the location, or stream it directly if possible. API clients should handle both a `200` or `302` response.
+ */
+ get: operations["repos/get-release-asset"];
+ /** Delete a release asset */
+ delete: operations["repos/delete-release-asset"];
+ /**
+ * Update a release asset
+ * @description Users with push access to the repository can edit a release asset.
+ */
+ patch: operations["repos/update-release-asset"];
+ };
+ "/repos/{owner}/{repo}/releases/generate-notes": {
+ /**
+ * Generate release notes content for a release
+ * @description Generate a name and body describing a [release](https://docs.github.com/rest/releases/releases#get-a-release). The body content will be markdown formatted and contain information like the changes since last release and users who contributed. The generated release notes are not saved anywhere. They are intended to be generated and used when creating a new release.
+ */
+ post: operations["repos/generate-release-notes"];
+ };
+ "/repos/{owner}/{repo}/releases/latest": {
+ /**
+ * Get the latest release
+ * @description View the latest published full release for the repository.
+ *
+ * The latest release is the most recent non-prerelease, non-draft release, sorted by the `created_at` attribute. The `created_at` attribute is the date of the commit used for the release, and not the date when the release was drafted or published.
+ */
+ get: operations["repos/get-latest-release"];
+ };
+ "/repos/{owner}/{repo}/releases/tags/{tag}": {
+ /**
+ * Get a release by tag name
+ * @description Get a published release with the specified tag.
+ */
+ get: operations["repos/get-release-by-tag"];
+ };
+ "/repos/{owner}/{repo}/releases/{release_id}": {
+ /**
+ * Get a release
+ * @description Gets a public release with the specified release ID.
+ *
+ * **Note:** This returns an `upload_url` key corresponding to the endpoint
+ * for uploading release assets. This key is a hypermedia resource. For more information, see
+ * "[Getting started with the REST API](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."
+ */
+ get: operations["repos/get-release"];
+ /**
+ * Delete a release
+ * @description Users with push access to the repository can delete a release.
+ */
+ delete: operations["repos/delete-release"];
+ /**
+ * Update a release
+ * @description Users with push access to the repository can edit a release.
+ */
+ patch: operations["repos/update-release"];
+ };
+ "/repos/{owner}/{repo}/releases/{release_id}/assets": {
+ /** List release assets */
+ get: operations["repos/list-release-assets"];
+ /**
+ * Upload a release asset
+ * @description This endpoint makes use of a [Hypermedia relation](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia) to determine which URL to access. The endpoint you call to upload release assets is specific to your release. Use the `upload_url` returned in
+ * the response of the [Create a release endpoint](https://docs.github.com/rest/releases/releases#create-a-release) to upload a release asset.
+ *
+ * You need to use an HTTP client which supports [SNI](http://en.wikipedia.org/wiki/Server_Name_Indication) to make calls to this endpoint.
+ *
+ * Most libraries will set the required `Content-Length` header automatically. Use the required `Content-Type` header to provide the media type of the asset. For a list of media types, see [Media Types](https://www.iana.org/assignments/media-types/media-types.xhtml). For example:
+ *
+ * `application/zip`
+ *
+ * GitHub expects the asset data in its raw binary form, rather than JSON. You will send the raw binary content of the asset as the request body. Everything else about the endpoint is the same as the rest of the API. For example,
+ * you'll still need to pass your authentication to be able to upload an asset.
+ *
+ * When an upstream failure occurs, you will receive a `502 Bad Gateway` status. This may leave an empty asset with a state of `starter`. It can be safely deleted.
+ *
+ * **Notes:**
+ * * GitHub renames asset filenames that have special characters, non-alphanumeric characters, and leading or trailing periods. The "[List release assets](https://docs.github.com/rest/releases/assets#list-release-assets)"
+ * endpoint lists the renamed filenames. For more information and help, contact [GitHub Support](https://support.github.com/contact?tags=dotcom-rest-api).
+ * * To find the `release_id` query the [`GET /repos/{owner}/{repo}/releases/latest` endpoint](https://docs.github.com/rest/releases/releases#get-the-latest-release).
+ * * If you upload an asset with the same filename as another uploaded asset, you'll receive an error and must delete the old file before you can re-upload the new asset.
+ */
+ post: operations["repos/upload-release-asset"];
+ };
+ "/repos/{owner}/{repo}/releases/{release_id}/reactions": {
+ /**
+ * List reactions for a release
+ * @description List the reactions to a [release](https://docs.github.com/rest/releases/releases#get-a-release).
+ */
+ get: operations["reactions/list-for-release"];
+ /**
+ * Create reaction for a release
+ * @description Create a reaction to a [release](https://docs.github.com/rest/releases/releases#get-a-release). A response with a `Status: 200 OK` means that you already added the reaction type to this release.
+ */
+ post: operations["reactions/create-for-release"];
+ };
+ "/repos/{owner}/{repo}/releases/{release_id}/reactions/{reaction_id}": {
+ /**
+ * Delete a release reaction
+ * @description **Note:** You can also specify a repository by `repository_id` using the route `DELETE delete /repositories/:repository_id/releases/:release_id/reactions/:reaction_id`.
+ *
+ * Delete a reaction to a [release](https://docs.github.com/rest/releases/releases#get-a-release).
+ */
+ delete: operations["reactions/delete-for-release"];
+ };
+ "/repos/{owner}/{repo}/rules/branches/{branch}": {
+ /**
+ * Get rules for a branch
+ * @description Returns all active rules that apply to the specified branch. The branch does not need to exist; rules that would apply
+ * to a branch with that name will be returned. All active rules that apply will be returned, regardless of the level
+ * at which they are configured (e.g. repository or organization). Rules in rulesets with "evaluate" or "disabled"
+ * enforcement statuses are not returned.
+ */
+ get: operations["repos/get-branch-rules"];
+ };
+ "/repos/{owner}/{repo}/rulesets": {
+ /**
+ * Get all repository rulesets
+ * @description Get all the rulesets for a repository.
+ */
+ get: operations["repos/get-repo-rulesets"];
+ /**
+ * Create a repository ruleset
+ * @description Create a ruleset for a repository.
+ */
+ post: operations["repos/create-repo-ruleset"];
+ };
+ "/repos/{owner}/{repo}/rulesets/rule-suites": {
+ /**
+ * List repository rule suites
+ * @description Lists suites of rule evaluations at the repository level.
+ * For more information, see "[Managing rulesets for a repository](https://docs.github.com/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/managing-rulesets-for-a-repository#viewing-insights-for-rulesets)."
+ */
+ get: operations["repos/get-repo-rule-suites"];
+ };
+ "/repos/{owner}/{repo}/rulesets/rule-suites/{rule_suite_id}": {
+ /**
+ * Get a repository rule suite
+ * @description Gets information about a suite of rule evaluations from within a repository.
+ * For more information, see "[Managing rulesets for a repository](https://docs.github.com/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/managing-rulesets-for-a-repository#viewing-insights-for-rulesets)."
+ */
+ get: operations["repos/get-repo-rule-suite"];
+ };
+ "/repos/{owner}/{repo}/rulesets/{ruleset_id}": {
+ /**
+ * Get a repository ruleset
+ * @description Get a ruleset for a repository.
+ */
+ get: operations["repos/get-repo-ruleset"];
+ /**
+ * Update a repository ruleset
+ * @description Update a ruleset for a repository.
+ */
+ put: operations["repos/update-repo-ruleset"];
+ /**
+ * Delete a repository ruleset
+ * @description Delete a ruleset for a repository.
+ */
+ delete: operations["repos/delete-repo-ruleset"];
+ };
+ "/repos/{owner}/{repo}/secret-scanning/alerts": {
+ /**
+ * List secret scanning alerts for a repository
+ * @description Lists secret scanning alerts for an eligible repository, from newest to oldest.
+ *
+ * The authenticated user must be an administrator for the repository or for the organization that owns the repository to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.
+ */
+ get: operations["secret-scanning/list-alerts-for-repo"];
+ };
+ "/repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}": {
+ /**
+ * Get a secret scanning alert
+ * @description Gets a single secret scanning alert detected in an eligible repository.
+ *
+ * The authenticated user must be an administrator for the repository or for the organization that owns the repository to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.
+ */
+ get: operations["secret-scanning/get-alert"];
+ /**
+ * Update a secret scanning alert
+ * @description Updates the status of a secret scanning alert in an eligible repository.
+ *
+ * The authenticated user must be an administrator for the repository or for the organization that owns the repository to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.
+ */
+ patch: operations["secret-scanning/update-alert"];
+ };
+ "/repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}/locations": {
+ /**
+ * List locations for a secret scanning alert
+ * @description Lists all locations for a given secret scanning alert for an eligible repository.
+ *
+ * The authenticated user must be an administrator for the repository or for the organization that owns the repository to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.
+ */
+ get: operations["secret-scanning/list-locations-for-alert"];
+ };
+ "/repos/{owner}/{repo}/security-advisories": {
+ /**
+ * List repository security advisories
+ * @description Lists security advisories in a repository.
+ *
+ * The authenticated user can access unpublished security advisories from a repository if they are a security manager or administrator of that repository, or if they are a collaborator on any security advisory.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` or `repository_advisories:read` scope to to get a published security advisory in a private repository, or any unpublished security advisory that the authenticated user has access to.
+ */
+ get: operations["security-advisories/list-repository-advisories"];
+ /**
+ * Create a repository security advisory
+ * @description Creates a new repository security advisory.
+ *
+ * In order to create a draft repository security advisory, the authenticated user must be a security manager or administrator of that repository.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` or `repository_advisories:write` scope to use this endpoint.
+ */
+ post: operations["security-advisories/create-repository-advisory"];
+ };
+ "/repos/{owner}/{repo}/security-advisories/reports": {
+ /**
+ * Privately report a security vulnerability
+ * @description Report a security vulnerability to the maintainers of the repository.
+ * See "[Privately reporting a security vulnerability](https://docs.github.com/code-security/security-advisories/guidance-on-reporting-and-writing/privately-reporting-a-security-vulnerability)" for more information about private vulnerability reporting.
+ */
+ post: operations["security-advisories/create-private-vulnerability-report"];
+ };
+ "/repos/{owner}/{repo}/security-advisories/{ghsa_id}": {
+ /**
+ * Get a repository security advisory
+ * @description Get a repository security advisory using its GitHub Security Advisory (GHSA) identifier.
+ *
+ * Anyone can access any published security advisory on a public repository.
+ *
+ * The authenticated user can access an unpublished security advisory from a repository if they are a security manager or administrator of that repository, or if they are a
+ * collaborator on the security advisory.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` or `repository_advisories:read` scope to to get a published security advisory in a private repository, or any unpublished security advisory that the authenticated user has access to.
+ */
+ get: operations["security-advisories/get-repository-advisory"];
+ /**
+ * Update a repository security advisory
+ * @description Update a repository security advisory using its GitHub Security Advisory (GHSA) identifier.
+ *
+ * In order to update any security advisory, the authenticated user must be a security manager or administrator of that repository,
+ * or a collaborator on the repository security advisory.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` or `repository_advisories:write` scope to use this endpoint.
+ */
+ patch: operations["security-advisories/update-repository-advisory"];
+ };
+ "/repos/{owner}/{repo}/security-advisories/{ghsa_id}/cve": {
+ /**
+ * Request a CVE for a repository security advisory
+ * @description If you want a CVE identification number for the security vulnerability in your project, and don't already have one, you can request a CVE identification number from GitHub. For more information see "[Requesting a CVE identification number](https://docs.github.com/code-security/security-advisories/repository-security-advisories/publishing-a-repository-security-advisory#requesting-a-cve-identification-number-optional)."
+ *
+ * You may request a CVE for public repositories, but cannot do so for private repositories.
+ *
+ * In order to request a CVE for a repository security advisory, the authenticated user must be a security manager or administrator of that repository.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` or `repository_advisories:write` scope to use this endpoint.
+ */
+ post: operations["security-advisories/create-repository-advisory-cve-request"];
+ };
+ "/repos/{owner}/{repo}/security-advisories/{ghsa_id}/forks": {
+ /**
+ * Create a temporary private fork
+ * @description Create a temporary private fork to collaborate on fixing a security vulnerability in your repository.
+ *
+ * **Note**: Forking a repository happens asynchronously. You may have to wait up to 5 minutes before you can access the fork.
+ */
+ post: operations["security-advisories/create-fork"];
+ };
+ "/repos/{owner}/{repo}/stargazers": {
+ /**
+ * List stargazers
+ * @description Lists the people that have starred the repository.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.star+json`**: Includes a timestamp of when the star was created.
+ */
+ get: operations["activity/list-stargazers-for-repo"];
+ };
+ "/repos/{owner}/{repo}/stats/code_frequency": {
+ /**
+ * Get the weekly commit activity
+ * @description
+ * Returns a weekly aggregate of the number of additions and deletions pushed to a repository.
+ *
+ * **Note:** This endpoint can only be used for repositories with fewer than 10,000 commits. If the repository contains
+ * 10,000 or more commits, a 422 status code will be returned.
+ */
+ get: operations["repos/get-code-frequency-stats"];
+ };
+ "/repos/{owner}/{repo}/stats/commit_activity": {
+ /**
+ * Get the last year of commit activity
+ * @description Returns the last year of commit activity grouped by week. The `days` array is a group of commits per day, starting on `Sunday`.
+ */
+ get: operations["repos/get-commit-activity-stats"];
+ };
+ "/repos/{owner}/{repo}/stats/contributors": {
+ /**
+ * Get all contributor commit activity
+ * @description
+ * Returns the `total` number of commits authored by the contributor. In addition, the response includes a Weekly Hash (`weeks` array) with the following information:
+ *
+ * * `w` - Start of the week, given as a [Unix timestamp](https://en.wikipedia.org/wiki/Unix_time).
+ * * `a` - Number of additions
+ * * `d` - Number of deletions
+ * * `c` - Number of commits
+ *
+ * **Note:** This endpoint will return `0` values for all addition and deletion counts in repositories with 10,000 or more commits.
+ */
+ get: operations["repos/get-contributors-stats"];
+ };
+ "/repos/{owner}/{repo}/stats/participation": {
+ /**
+ * Get the weekly commit count
+ * @description Returns the total commit counts for the `owner` and total commit counts in `all`. `all` is everyone combined, including the `owner` in the last 52 weeks. If you'd like to get the commit counts for non-owners, you can subtract `owner` from `all`.
+ *
+ * The array order is oldest week (index 0) to most recent week.
+ *
+ * The most recent week is seven days ago at UTC midnight to today at UTC midnight.
+ */
+ get: operations["repos/get-participation-stats"];
+ };
+ "/repos/{owner}/{repo}/stats/punch_card": {
+ /**
+ * Get the hourly commit count for each day
+ * @description Each array contains the day number, hour number, and number of commits:
+ *
+ * * `0-6`: Sunday - Saturday
+ * * `0-23`: Hour of day
+ * * Number of commits
+ *
+ * For example, `[2, 14, 25]` indicates that there were 25 total commits, during the 2:00pm hour on Tuesdays. All times are based on the time zone of individual commits.
+ */
+ get: operations["repos/get-punch-card-stats"];
+ };
+ "/repos/{owner}/{repo}/statuses/{sha}": {
+ /**
+ * Create a commit status
+ * @description Users with push access in a repository can create commit statuses for a given SHA.
+ *
+ * Note: there is a limit of 1000 statuses per `sha` and `context` within a repository. Attempts to create more than 1000 statuses will result in a validation error.
+ */
+ post: operations["repos/create-commit-status"];
+ };
+ "/repos/{owner}/{repo}/subscribers": {
+ /**
+ * List watchers
+ * @description Lists the people watching the specified repository.
+ */
+ get: operations["activity/list-watchers-for-repo"];
+ };
+ "/repos/{owner}/{repo}/subscription": {
+ /**
+ * Get a repository subscription
+ * @description Gets information about whether the authenticated user is subscribed to the repository.
+ */
+ get: operations["activity/get-repo-subscription"];
+ /**
+ * Set a repository subscription
+ * @description If you would like to watch a repository, set `subscribed` to `true`. If you would like to ignore notifications made within a repository, set `ignored` to `true`. If you would like to stop watching a repository, [delete the repository's subscription](https://docs.github.com/rest/activity/watching#delete-a-repository-subscription) completely.
+ */
+ put: operations["activity/set-repo-subscription"];
+ /**
+ * Delete a repository subscription
+ * @description This endpoint should only be used to stop watching a repository. To control whether or not you wish to receive notifications from a repository, [set the repository's subscription manually](https://docs.github.com/rest/activity/watching#set-a-repository-subscription).
+ */
+ delete: operations["activity/delete-repo-subscription"];
+ };
+ "/repos/{owner}/{repo}/tags": {
+ /** List repository tags */
+ get: operations["repos/list-tags"];
+ };
+ "/repos/{owner}/{repo}/tags/protection": {
+ /**
+ * List tag protection states for a repository
+ * @description This returns the tag protection states of a repository.
+ *
+ * This information is only available to repository administrators.
+ */
+ get: operations["repos/list-tag-protection"];
+ /**
+ * Create a tag protection state for a repository
+ * @description This creates a tag protection state for a repository.
+ * This endpoint is only available to repository administrators.
+ */
+ post: operations["repos/create-tag-protection"];
+ };
+ "/repos/{owner}/{repo}/tags/protection/{tag_protection_id}": {
+ /**
+ * Delete a tag protection state for a repository
+ * @description This deletes a tag protection state for a repository.
+ * This endpoint is only available to repository administrators.
+ */
+ delete: operations["repos/delete-tag-protection"];
+ };
+ "/repos/{owner}/{repo}/tarball/{ref}": {
+ /**
+ * Download a repository archive (tar)
+ * @description Gets a redirect URL to download a tar archive for a repository. If you omit `:ref`, the repository’s default branch (usually
+ * `main`) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use
+ * the `Location` header to make a second `GET` request.
+ * **Note**: For private repositories, these links are temporary and expire after five minutes.
+ */
+ get: operations["repos/download-tarball-archive"];
+ };
+ "/repos/{owner}/{repo}/teams": {
+ /**
+ * List repository teams
+ * @description Lists the teams that have access to the specified repository and that are also visible to the authenticated user.
+ *
+ * For a public repository, a team is listed only if that team added the public repository explicitly.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `public_repo` or `repo` scope to use this endpoint with a public repository, and `repo` scope to use this endpoint with a private repository.
+ */
+ get: operations["repos/list-teams"];
+ };
+ "/repos/{owner}/{repo}/topics": {
+ /** Get all repository topics */
+ get: operations["repos/get-all-topics"];
+ /** Replace all repository topics */
+ put: operations["repos/replace-all-topics"];
+ };
+ "/repos/{owner}/{repo}/traffic/clones": {
+ /**
+ * Get repository clones
+ * @description Get the total number of clones and breakdown per day or week for the last 14 days. Timestamps are aligned to UTC midnight of the beginning of the day or week. Week begins on Monday.
+ */
+ get: operations["repos/get-clones"];
+ };
+ "/repos/{owner}/{repo}/traffic/popular/paths": {
+ /**
+ * Get top referral paths
+ * @description Get the top 10 popular contents over the last 14 days.
+ */
+ get: operations["repos/get-top-paths"];
+ };
+ "/repos/{owner}/{repo}/traffic/popular/referrers": {
+ /**
+ * Get top referral sources
+ * @description Get the top 10 referrers over the last 14 days.
+ */
+ get: operations["repos/get-top-referrers"];
+ };
+ "/repos/{owner}/{repo}/traffic/views": {
+ /**
+ * Get page views
+ * @description Get the total number of views and breakdown per day or week for the last 14 days. Timestamps are aligned to UTC midnight of the beginning of the day or week. Week begins on Monday.
+ */
+ get: operations["repos/get-views"];
+ };
+ "/repos/{owner}/{repo}/transfer": {
+ /**
+ * Transfer a repository
+ * @description A transfer request will need to be accepted by the new owner when transferring a personal repository to another user. The response will contain the original `owner`, and the transfer will continue asynchronously. For more details on the requirements to transfer personal and organization-owned repositories, see [about repository transfers](https://docs.github.com/articles/about-repository-transfers/).
+ */
+ post: operations["repos/transfer"];
+ };
+ "/repos/{owner}/{repo}/vulnerability-alerts": {
+ /**
+ * Check if vulnerability alerts are enabled for a repository
+ * @description Shows whether dependency alerts are enabled or disabled for a repository. The authenticated user must have admin read access to the repository. For more information, see "[About security alerts for vulnerable dependencies](https://docs.github.com/articles/about-security-alerts-for-vulnerable-dependencies)".
+ */
+ get: operations["repos/check-vulnerability-alerts"];
+ /**
+ * Enable vulnerability alerts
+ * @description Enables dependency alerts and the dependency graph for a repository. The authenticated user must have admin access to the repository. For more information, see "[About security alerts for vulnerable dependencies](https://docs.github.com/articles/about-security-alerts-for-vulnerable-dependencies)".
+ */
+ put: operations["repos/enable-vulnerability-alerts"];
+ /**
+ * Disable vulnerability alerts
+ * @description Disables dependency alerts and the dependency graph for a repository.
+ * The authenticated user must have admin access to the repository. For more information,
+ * see "[About security alerts for vulnerable dependencies](https://docs.github.com/articles/about-security-alerts-for-vulnerable-dependencies)".
+ */
+ delete: operations["repos/disable-vulnerability-alerts"];
+ };
+ "/repos/{owner}/{repo}/zipball/{ref}": {
+ /**
+ * Download a repository archive (zip)
+ * @description Gets a redirect URL to download a zip archive for a repository. If you omit `:ref`, the repository’s default branch (usually
+ * `main`) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use
+ * the `Location` header to make a second `GET` request.
+ *
+ * **Note**: For private repositories, these links are temporary and expire after five minutes. If the repository is empty, you will receive a 404 when you follow the redirect.
+ */
+ get: operations["repos/download-zipball-archive"];
+ };
+ "/repos/{template_owner}/{template_repo}/generate": {
+ /**
+ * Create a repository using a template
+ * @description Creates a new repository using a repository template. Use the `template_owner` and `template_repo` route parameters to specify the repository to use as the template. If the repository is not public, the authenticated user must own or be a member of an organization that owns the repository. To check if a repository is available to use as a template, get the repository's information using the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint and check that the `is_template` key is `true`.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `public_repo` or `repo` scope to create a public repository, and `repo` scope to create a private repository.
+ */
+ post: operations["repos/create-using-template"];
+ };
+ "/repositories": {
+ /**
+ * List public repositories
+ * @description Lists all public repositories in the order that they were created.
+ *
+ * Note:
+ * - For GitHub Enterprise Server, this endpoint will only list repositories available to all users on the enterprise.
+ * - Pagination is powered exclusively by the `since` parameter. Use the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers) to get the URL for the next page of repositories.
+ */
+ get: operations["repos/list-public"];
+ };
+ "/search/code": {
+ /**
+ * Search code
+ * @description Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).
+ *
+ * When searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).
+ *
+ * For example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:
+ *
+ * `q=addClass+in:file+language:js+repo:jquery/jquery`
+ *
+ * This query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.
+ *
+ * Considerations for code search:
+ *
+ * Due to the complexity of searching code, there are a few restrictions on how searches are performed:
+ *
+ * * Only the _default branch_ is considered. In most cases, this will be the `master` branch.
+ * * Only files smaller than 384 KB are searchable.
+ * * You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing
+ * language:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.
+ *
+ * This endpoint requires you to authenticate and limits you to 10 requests per minute.
+ */
+ get: operations["search/code"];
+ };
+ "/search/commits": {
+ /**
+ * Search commits
+ * @description Find commits via various criteria on the default branch (usually `main`). This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).
+ *
+ * When searching for commits, you can get text match metadata for the **message** field when you provide the `text-match` media type. For more details about how to receive highlighted search results, see [Text match
+ * metadata](https://docs.github.com/rest/search/search#text-match-metadata).
+ *
+ * For example, if you want to find commits related to CSS in the [octocat/Spoon-Knife](https://github.com/octocat/Spoon-Knife) repository. Your query would look something like this:
+ *
+ * `q=repo:octocat/Spoon-Knife+css`
+ */
+ get: operations["search/commits"];
+ };
+ "/search/issues": {
+ /**
+ * Search issues and pull requests
+ * @description Find issues by state and keyword. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).
+ *
+ * When searching for issues, you can get text match metadata for the issue **title**, issue **body**, and issue **comment body** fields when you pass the `text-match` media type. For more details about how to receive highlighted
+ * search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).
+ *
+ * For example, if you want to find the oldest unresolved Python bugs on Windows. Your query might look something like this.
+ *
+ * `q=windows+label:bug+language:python+state:open&sort=created&order=asc`
+ *
+ * This query searches for the keyword `windows`, within any open issue that is labeled as `bug`. The search runs across repositories whose primary language is Python. The results are sorted by creation date in ascending order, which means the oldest issues appear first in the search results.
+ *
+ * **Note:** For requests made by GitHub Apps with a user access token, you can't retrieve a combination of issues and pull requests in a single query. Requests that don't include the `is:issue` or `is:pull-request` qualifier will receive an HTTP `422 Unprocessable Entity` response. To get results for both issues and pull requests, you must send separate queries for issues and pull requests. For more information about the `is` qualifier, see "[Searching only issues or pull requests](https://docs.github.com/github/searching-for-information-on-github/searching-issues-and-pull-requests#search-only-issues-or-pull-requests)."
+ */
+ get: operations["search/issues-and-pull-requests"];
+ };
+ "/search/labels": {
+ /**
+ * Search labels
+ * @description Find labels in a repository with names or descriptions that match search keywords. Returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).
+ *
+ * When searching for labels, you can get text match metadata for the label **name** and **description** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).
+ *
+ * For example, if you want to find labels in the `linguist` repository that match `bug`, `defect`, or `enhancement`. Your query might look like this:
+ *
+ * `q=bug+defect+enhancement&repository_id=64778136`
+ *
+ * The labels that best match the query appear first in the search results.
+ */
+ get: operations["search/labels"];
+ };
+ "/search/repositories": {
+ /**
+ * Search repositories
+ * @description Find repositories via various criteria. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).
+ *
+ * When searching for repositories, you can get text match metadata for the **name** and **description** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).
+ *
+ * For example, if you want to search for popular Tetris repositories written in assembly code, your query might look like this:
+ *
+ * `q=tetris+language:assembly&sort=stars&order=desc`
+ *
+ * This query searches for repositories with the word `tetris` in the name, the description, or the README. The results are limited to repositories where the primary language is assembly. The results are sorted by stars in descending order, so that the most popular repositories appear first in the search results.
+ */
+ get: operations["search/repos"];
+ };
+ "/search/topics": {
+ /**
+ * Search topics
+ * @description Find topics via various criteria. Results are sorted by best match. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api). See "[Searching topics](https://docs.github.com/articles/searching-topics/)" for a detailed list of qualifiers.
+ *
+ * When searching for topics, you can get text match metadata for the topic's **short\_description**, **description**, **name**, or **display\_name** field when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).
+ *
+ * For example, if you want to search for topics related to Ruby that are featured on https://github.com/topics. Your query might look like this:
+ *
+ * `q=ruby+is:featured`
+ *
+ * This query searches for topics with the keyword `ruby` and limits the results to find only topics that are featured. The topics that are the best match for the query appear first in the search results.
+ */
+ get: operations["search/topics"];
+ };
+ "/search/users": {
+ /**
+ * Search users
+ * @description Find users via various criteria. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).
+ *
+ * When searching for users, you can get text match metadata for the issue **login**, public **email**, and **name** fields when you pass the `text-match` media type. For more details about highlighting search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata). For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).
+ *
+ * For example, if you're looking for a list of popular users, you might try this query:
+ *
+ * `q=tom+repos:%3E42+followers:%3E1000`
+ *
+ * This query searches for users with the name `tom`. The results are restricted to users with more than 42 repositories and over 1,000 followers.
+ *
+ * This endpoint does not accept authentication and will only include publicly visible users. As an alternative, you can use the GraphQL API. The GraphQL API requires authentication and will return private users, including Enterprise Managed Users (EMUs), that you are authorized to view. For more information, see "[GraphQL Queries](https://docs.github.com/graphql/reference/queries#search)."
+ */
+ get: operations["search/users"];
+ };
+ "/teams/{team_id}": {
+ /**
+ * Get a team (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the [Get a team by name](https://docs.github.com/rest/teams/teams#get-a-team-by-name) endpoint.
+ */
+ get: operations["teams/get-legacy"];
+ /**
+ * Delete a team (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Delete a team](https://docs.github.com/rest/teams/teams#delete-a-team) endpoint.
+ *
+ * To delete a team, the authenticated user must be an organization owner or team maintainer.
+ *
+ * If you are an organization owner, deleting a parent team will delete all of its child teams as well.
+ */
+ delete: operations["teams/delete-legacy"];
+ /**
+ * Update a team (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Update a team](https://docs.github.com/rest/teams/teams#update-a-team) endpoint.
+ *
+ * To edit a team, the authenticated user must either be an organization owner or a team maintainer.
+ *
+ * **Note:** With nested teams, the `privacy` for parent teams cannot be `secret`.
+ */
+ patch: operations["teams/update-legacy"];
+ };
+ "/teams/{team_id}/discussions": {
+ /**
+ * List discussions (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List discussions`](https://docs.github.com/rest/teams/discussions#list-discussions) endpoint.
+ *
+ * List all discussions on a team's page.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:discussion` scope to use this endpoint.
+ */
+ get: operations["teams/list-discussions-legacy"];
+ /**
+ * Create a discussion (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [`Create a discussion`](https://docs.github.com/rest/teams/discussions#create-a-discussion) endpoint.
+ *
+ * Creates a new discussion post on a team's page.
+ *
+ * This endpoint triggers [notifications](https://docs.github.com/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. For more information, see "[Rate limits for the API](https://docs.github.com/rest/overview/rate-limits-for-the-rest-api#about-secondary-rate-limits)" and "[Best practices for using the REST API](https://docs.github.com/rest/guides/best-practices-for-using-the-rest-api)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:discussion` scope to use this endpoint.
+ */
+ post: operations["teams/create-discussion-legacy"];
+ };
+ "/teams/{team_id}/discussions/{discussion_number}": {
+ /**
+ * Get a discussion (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Get a discussion](https://docs.github.com/rest/teams/discussions#get-a-discussion) endpoint.
+ *
+ * Get a specific discussion on a team's page.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:discussion` scope to use this endpoint.
+ */
+ get: operations["teams/get-discussion-legacy"];
+ /**
+ * Delete a discussion (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [`Delete a discussion`](https://docs.github.com/rest/teams/discussions#delete-a-discussion) endpoint.
+ *
+ * Delete a discussion from a team's page.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:discussion` scope to use this endpoint.
+ */
+ delete: operations["teams/delete-discussion-legacy"];
+ /**
+ * Update a discussion (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Update a discussion](https://docs.github.com/rest/teams/discussions#update-a-discussion) endpoint.
+ *
+ * Edits the title and body text of a discussion post. Only the parameters you provide are updated.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:discussion` scope to use this endpoint.
+ */
+ patch: operations["teams/update-discussion-legacy"];
+ };
+ "/teams/{team_id}/discussions/{discussion_number}/comments": {
+ /**
+ * List discussion comments (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [List discussion comments](https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments) endpoint.
+ *
+ * List all comments on a team discussion.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:discussion` scope to use this endpoint.
+ */
+ get: operations["teams/list-discussion-comments-legacy"];
+ /**
+ * Create a discussion comment (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Create a discussion comment](https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment) endpoint.
+ *
+ * Creates a new comment on a team discussion.
+ *
+ * This endpoint triggers [notifications](https://docs.github.com/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. For more information, see "[Rate limits for the API](https://docs.github.com/rest/overview/rate-limits-for-the-rest-api#about-secondary-rate-limits)" and "[Best practices for using the REST API](https://docs.github.com/rest/guides/best-practices-for-using-the-rest-api)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:discussion` scope to use this endpoint.
+ */
+ post: operations["teams/create-discussion-comment-legacy"];
+ };
+ "/teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}": {
+ /**
+ * Get a discussion comment (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Get a discussion comment](https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment) endpoint.
+ *
+ * Get a specific comment on a team discussion.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:discussion` scope to use this endpoint.
+ */
+ get: operations["teams/get-discussion-comment-legacy"];
+ /**
+ * Delete a discussion comment (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Delete a discussion comment](https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment) endpoint.
+ *
+ * Deletes a comment on a team discussion.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:discussion` scope to use this endpoint.
+ */
+ delete: operations["teams/delete-discussion-comment-legacy"];
+ /**
+ * Update a discussion comment (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Update a discussion comment](https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment) endpoint.
+ *
+ * Edits the body text of a discussion comment.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:discussion` scope to use this endpoint.
+ */
+ patch: operations["teams/update-discussion-comment-legacy"];
+ };
+ "/teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}/reactions": {
+ /**
+ * List reactions for a team discussion comment (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List reactions for a team discussion comment`](https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment) endpoint.
+ *
+ * List the reactions to a [team discussion comment](https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment).
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:discussion` scope to use this endpoint.
+ */
+ get: operations["reactions/list-for-team-discussion-comment-legacy"];
+ /**
+ * Create reaction for a team discussion comment (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new "[Create reaction for a team discussion comment](https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment)" endpoint.
+ *
+ * Create a reaction to a [team discussion comment](https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment).
+ *
+ * A response with an HTTP `200` status means that you already added the reaction type to this team discussion comment.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:discussion` scope to use this endpoint.
+ */
+ post: operations["reactions/create-for-team-discussion-comment-legacy"];
+ };
+ "/teams/{team_id}/discussions/{discussion_number}/reactions": {
+ /**
+ * List reactions for a team discussion (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List reactions for a team discussion`](https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion) endpoint.
+ *
+ * List the reactions to a [team discussion](https://docs.github.com/rest/teams/discussions#get-a-discussion).
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:discussion` scope to use this endpoint.
+ */
+ get: operations["reactions/list-for-team-discussion-legacy"];
+ /**
+ * Create reaction for a team discussion (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [`Create reaction for a team discussion`](https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion) endpoint.
+ *
+ * Create a reaction to a [team discussion](https://docs.github.com/rest/teams/discussions#get-a-discussion).
+ *
+ * A response with an HTTP `200` status means that you already added the reaction type to this team discussion.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:discussion` scope to use this endpoint.
+ */
+ post: operations["reactions/create-for-team-discussion-legacy"];
+ };
+ "/teams/{team_id}/invitations": {
+ /**
+ * List pending team invitations (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List pending team invitations`](https://docs.github.com/rest/teams/members#list-pending-team-invitations) endpoint.
+ *
+ * The return hash contains a `role` field which refers to the Organization Invitation role and will be one of the following values: `direct_member`, `admin`, `billing_manager`, `hiring_manager`, or `reinstate`. If the invitee is not a GitHub member, the `login` field in the return hash will be `null`.
+ */
+ get: operations["teams/list-pending-invitations-legacy"];
+ };
+ "/teams/{team_id}/members": {
+ /**
+ * List team members (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List team members`](https://docs.github.com/rest/teams/members#list-team-members) endpoint.
+ *
+ * Team members will include the members of child teams.
+ */
+ get: operations["teams/list-members-legacy"];
+ };
+ "/teams/{team_id}/members/{username}": {
+ /**
+ * Get team member (Legacy)
+ * @deprecated
+ * @description The "Get team member" endpoint (described below) is deprecated.
+ *
+ * We recommend using the [Get team membership for a user](https://docs.github.com/rest/teams/members#get-team-membership-for-a-user) endpoint instead. It allows you to get both active and pending memberships.
+ *
+ * To list members in a team, the team must be visible to the authenticated user.
+ */
+ get: operations["teams/get-member-legacy"];
+ /**
+ * Add team member (Legacy)
+ * @deprecated
+ * @description The "Add team member" endpoint (described below) is deprecated.
+ *
+ * We recommend using the [Add or update team membership for a user](https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user) endpoint instead. It allows you to invite new organization members to your teams.
+ *
+ * Team synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * To add someone to a team, the authenticated user must be an organization owner or a team maintainer in the team they're changing. The person being added to the team must be a member of the team's organization.
+ *
+ * **Note:** When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see "[Synchronizing teams between your identity provider and GitHub](https://docs.github.com/articles/synchronizing-teams-between-your-identity-provider-and-github/)."
+ *
+ * Note that you'll need to set `Content-Length` to zero when calling out to this endpoint. For more information, see "[HTTP method](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#http-method)."
+ */
+ put: operations["teams/add-member-legacy"];
+ /**
+ * Remove team member (Legacy)
+ * @deprecated
+ * @description The "Remove team member" endpoint (described below) is deprecated.
+ *
+ * We recommend using the [Remove team membership for a user](https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user) endpoint instead. It allows you to remove both active and pending memberships.
+ *
+ * Team synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * To remove a team member, the authenticated user must have 'admin' permissions to the team or be an owner of the org that the team is associated with. Removing a team member does not delete the user, it just removes them from the team.
+ *
+ * **Note:** When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see "[Synchronizing teams between your identity provider and GitHub](https://docs.github.com/articles/synchronizing-teams-between-your-identity-provider-and-github/)."
+ */
+ delete: operations["teams/remove-member-legacy"];
+ };
+ "/teams/{team_id}/memberships/{username}": {
+ /**
+ * Get team membership for a user (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Get team membership for a user](https://docs.github.com/rest/teams/members#get-team-membership-for-a-user) endpoint.
+ *
+ * Team members will include the members of child teams.
+ *
+ * To get a user's membership with a team, the team must be visible to the authenticated user.
+ *
+ * **Note:**
+ * The response contains the `state` of the membership and the member's `role`.
+ *
+ * The `role` for organization owners is set to `maintainer`. For more information about `maintainer` roles, see [Create a team](https://docs.github.com/rest/teams/teams#create-a-team).
+ */
+ get: operations["teams/get-membership-for-user-legacy"];
+ /**
+ * Add or update team membership for a user (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Add or update team membership for a user](https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user) endpoint.
+ *
+ * Team synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * If the user is already a member of the team's organization, this endpoint will add the user to the team. To add a membership between an organization member and a team, the authenticated user must be an organization owner or a team maintainer.
+ *
+ * **Note:** When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see "[Synchronizing teams between your identity provider and GitHub](https://docs.github.com/articles/synchronizing-teams-between-your-identity-provider-and-github/)."
+ *
+ * If the user is unaffiliated with the team's organization, this endpoint will send an invitation to the user via email. This newly-created membership will be in the "pending" state until the user accepts the invitation, at which point the membership will transition to the "active" state and the user will be added as a member of the team. To add a membership between an unaffiliated user and a team, the authenticated user must be an organization owner.
+ *
+ * If the user is already a member of the team, this endpoint will update the role of the team member's role. To update the membership of a team member, the authenticated user must be an organization owner or a team maintainer.
+ */
+ put: operations["teams/add-or-update-membership-for-user-legacy"];
+ /**
+ * Remove team membership for a user (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Remove team membership for a user](https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user) endpoint.
+ *
+ * Team synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see [GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.
+ *
+ * To remove a membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership from the team.
+ *
+ * **Note:** When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see "[Synchronizing teams between your identity provider and GitHub](https://docs.github.com/articles/synchronizing-teams-between-your-identity-provider-and-github/)."
+ */
+ delete: operations["teams/remove-membership-for-user-legacy"];
+ };
+ "/teams/{team_id}/projects": {
+ /**
+ * List team projects (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List team projects`](https://docs.github.com/rest/teams/teams#list-team-projects) endpoint.
+ *
+ * Lists the organization projects for a team.
+ */
+ get: operations["teams/list-projects-legacy"];
+ };
+ "/teams/{team_id}/projects/{project_id}": {
+ /**
+ * Check team permissions for a project (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Check team permissions for a project](https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project) endpoint.
+ *
+ * Checks whether a team has `read`, `write`, or `admin` permissions for an organization project. The response includes projects inherited from a parent team.
+ */
+ get: operations["teams/check-permissions-for-project-legacy"];
+ /**
+ * Add or update team project permissions (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Add or update team project permissions](https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions) endpoint.
+ *
+ * Adds an organization project to a team. To add a project to a team or update the team's permission on a project, the authenticated user must have `admin` permissions for the project. The project and team must be part of the same organization.
+ */
+ put: operations["teams/add-or-update-project-permissions-legacy"];
+ /**
+ * Remove a project from a team (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Remove a project from a team](https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team) endpoint.
+ *
+ * Removes an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have `read` access to both the team and project, or `admin` access to the team or project. **Note:** This endpoint removes the project from the team, but does not delete it.
+ */
+ delete: operations["teams/remove-project-legacy"];
+ };
+ "/teams/{team_id}/repos": {
+ /**
+ * List team repositories (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [List team repositories](https://docs.github.com/rest/teams/teams#list-team-repositories) endpoint.
+ */
+ get: operations["teams/list-repos-legacy"];
+ };
+ "/teams/{team_id}/repos/{owner}/{repo}": {
+ /**
+ * Check team permissions for a repository (Legacy)
+ * @deprecated
+ * @description **Note**: Repositories inherited through a parent team will also be checked.
+ *
+ * **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Check team permissions for a repository](https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository) endpoint.
+ *
+ * You can also get information about the specified repository, including what permissions the team grants on it, by passing the following custom [media type](https://docs.github.com/rest/overview/media-types/) via the `Accept` header:
+ */
+ get: operations["teams/check-permissions-for-repo-legacy"];
+ /**
+ * Add or update team repository permissions (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new "[Add or update team repository permissions](https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions)" endpoint.
+ *
+ * To add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a `422 Unprocessable Entity` status if you attempt to add a repository to a team that is not owned by the organization.
+ *
+ * Note that, if you choose not to pass any parameters, you'll need to set `Content-Length` to zero when calling out to this endpoint. For more information, see "[HTTP method](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#http-method)."
+ */
+ put: operations["teams/add-or-update-repo-permissions-legacy"];
+ /**
+ * Remove a repository from a team (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Remove a repository from a team](https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team) endpoint.
+ *
+ * If the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. NOTE: This does not delete the repository, it just removes it from the team.
+ */
+ delete: operations["teams/remove-repo-legacy"];
+ };
+ "/teams/{team_id}/teams": {
+ /**
+ * List child teams (Legacy)
+ * @deprecated
+ * @description **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List child teams`](https://docs.github.com/rest/teams/teams#list-child-teams) endpoint.
+ */
+ get: operations["teams/list-child-legacy"];
+ };
+ "/user": {
+ /**
+ * Get the authenticated user
+ * @description OAuth app tokens and personal access tokens (classic) need the `user` scope in order for the response to include private profile information.
+ */
+ get: operations["users/get-authenticated"];
+ /**
+ * Update the authenticated user
+ * @description **Note:** If your email is set to private and you send an `email` parameter as part of this request to update your profile, your privacy settings are still enforced: the email address will not be displayed on your public profile or via the API.
+ */
+ patch: operations["users/update-authenticated"];
+ };
+ "/user/blocks": {
+ /**
+ * List users blocked by the authenticated user
+ * @description List the users you've blocked on your personal account.
+ */
+ get: operations["users/list-blocked-by-authenticated-user"];
+ };
+ "/user/blocks/{username}": {
+ /**
+ * Check if a user is blocked by the authenticated user
+ * @description Returns a 204 if the given user is blocked by the authenticated user. Returns a 404 if the given user is not blocked by the authenticated user, or if the given user account has been identified as spam by GitHub.
+ */
+ get: operations["users/check-blocked"];
+ /**
+ * Block a user
+ * @description Blocks the given user and returns a 204. If the authenticated user cannot block the given user a 422 is returned.
+ */
+ put: operations["users/block"];
+ /**
+ * Unblock a user
+ * @description Unblocks the given user and returns a 204.
+ */
+ delete: operations["users/unblock"];
+ };
+ "/user/codespaces": {
+ /**
+ * List codespaces for the authenticated user
+ * @description Lists the authenticated user's codespaces.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` scope to use this endpoint.
+ */
+ get: operations["codespaces/list-for-authenticated-user"];
+ /**
+ * Create a codespace for the authenticated user
+ * @description Creates a new codespace, owned by the authenticated user.
+ *
+ * This endpoint requires either a `repository_id` OR a `pull_request` but not both.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` scope to use this endpoint.
+ */
+ post: operations["codespaces/create-for-authenticated-user"];
+ };
+ "/user/codespaces/secrets": {
+ /**
+ * List secrets for the authenticated user
+ * @description Lists all development environment secrets available for a user's codespaces without revealing their
+ * encrypted values.
+ *
+ * The authenticated user must have Codespaces access to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` or `codespace:secrets` scope to use this endpoint.
+ */
+ get: operations["codespaces/list-secrets-for-authenticated-user"];
+ };
+ "/user/codespaces/secrets/public-key": {
+ /**
+ * Get public key for the authenticated user
+ * @description Gets your public key, which you need to encrypt secrets. You need to encrypt a secret before you can create or update secrets.
+ *
+ * The authenticated user must have Codespaces access to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` or `codespace:secrets` scope to use this endpoint.
+ */
+ get: operations["codespaces/get-public-key-for-authenticated-user"];
+ };
+ "/user/codespaces/secrets/{secret_name}": {
+ /**
+ * Get a secret for the authenticated user
+ * @description Gets a development environment secret available to a user's codespaces without revealing its encrypted value.
+ *
+ * The authenticated user must have Codespaces access to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` or `codespace:secrets` scope to use this endpoint.
+ */
+ get: operations["codespaces/get-secret-for-authenticated-user"];
+ /**
+ * Create or update a secret for the authenticated user
+ * @description Creates or updates a development environment secret for a user's codespace with an encrypted value. Encrypt your secret using
+ * [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api)."
+ *
+ * The authenticated user must have Codespaces access to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` or `codespace:secrets` scope to use this endpoint.
+ */
+ put: operations["codespaces/create-or-update-secret-for-authenticated-user"];
+ /**
+ * Delete a secret for the authenticated user
+ * @description Deletes a development environment secret from a user's codespaces using the secret name. Deleting the secret will remove access from all codespaces that were allowed to access the secret.
+ *
+ * The authenticated user must have Codespaces access to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` or `codespace:secrets` scope to use this endpoint.
+ */
+ delete: operations["codespaces/delete-secret-for-authenticated-user"];
+ };
+ "/user/codespaces/secrets/{secret_name}/repositories": {
+ /**
+ * List selected repositories for a user secret
+ * @description List the repositories that have been granted the ability to use a user's development environment secret.
+ *
+ * The authenticated user must have Codespaces access to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` or `codespace:secrets` scope to use this endpoint.
+ */
+ get: operations["codespaces/list-repositories-for-secret-for-authenticated-user"];
+ /**
+ * Set selected repositories for a user secret
+ * @description Select the repositories that will use a user's development environment secret.
+ *
+ * The authenticated user must have Codespaces access to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` or `codespace:secrets` scope to use this endpoint.
+ */
+ put: operations["codespaces/set-repositories-for-secret-for-authenticated-user"];
+ };
+ "/user/codespaces/secrets/{secret_name}/repositories/{repository_id}": {
+ /**
+ * Add a selected repository to a user secret
+ * @description Adds a repository to the selected repositories for a user's development environment secret.
+ *
+ * The authenticated user must have Codespaces access to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` or `codespace:secrets` scope to use this endpoint.
+ */
+ put: operations["codespaces/add-repository-for-secret-for-authenticated-user"];
+ /**
+ * Remove a selected repository from a user secret
+ * @description Removes a repository from the selected repositories for a user's development environment secret.
+ *
+ * The authenticated user must have Codespaces access to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` or `codespace:secrets` scope to use this endpoint.
+ */
+ delete: operations["codespaces/remove-repository-for-secret-for-authenticated-user"];
+ };
+ "/user/codespaces/{codespace_name}": {
+ /**
+ * Get a codespace for the authenticated user
+ * @description Gets information about a user's codespace.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` scope to use this endpoint.
+ */
+ get: operations["codespaces/get-for-authenticated-user"];
+ /**
+ * Delete a codespace for the authenticated user
+ * @description Deletes a user's codespace.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` scope to use this endpoint.
+ */
+ delete: operations["codespaces/delete-for-authenticated-user"];
+ /**
+ * Update a codespace for the authenticated user
+ * @description Updates a codespace owned by the authenticated user. Currently only the codespace's machine type and recent folders can be modified using this endpoint.
+ *
+ * If you specify a new machine type it will be applied the next time your codespace is started.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` scope to use this endpoint.
+ */
+ patch: operations["codespaces/update-for-authenticated-user"];
+ };
+ "/user/codespaces/{codespace_name}/exports": {
+ /**
+ * Export a codespace for the authenticated user
+ * @description Triggers an export of the specified codespace and returns a URL and ID where the status of the export can be monitored.
+ *
+ * If changes cannot be pushed to the codespace's repository, they will be pushed to a new or previously-existing fork instead.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` scope to use this endpoint.
+ */
+ post: operations["codespaces/export-for-authenticated-user"];
+ };
+ "/user/codespaces/{codespace_name}/exports/{export_id}": {
+ /**
+ * Get details about a codespace export
+ * @description Gets information about an export of a codespace.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` scope to use this endpoint.
+ */
+ get: operations["codespaces/get-export-details-for-authenticated-user"];
+ };
+ "/user/codespaces/{codespace_name}/machines": {
+ /**
+ * List machine types for a codespace
+ * @description List the machine types a codespace can transition to use.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` scope to use this endpoint.
+ */
+ get: operations["codespaces/codespace-machines-for-authenticated-user"];
+ };
+ "/user/codespaces/{codespace_name}/publish": {
+ /**
+ * Create a repository from an unpublished codespace
+ * @description Publishes an unpublished codespace, creating a new repository and assigning it to the codespace.
+ *
+ * The codespace's token is granted write permissions to the repository, allowing the user to push their changes.
+ *
+ * This will fail for a codespace that is already published, meaning it has an associated repository.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` scope to use this endpoint.
+ */
+ post: operations["codespaces/publish-for-authenticated-user"];
+ };
+ "/user/codespaces/{codespace_name}/start": {
+ /**
+ * Start a codespace for the authenticated user
+ * @description Starts a user's codespace.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` scope to use this endpoint.
+ */
+ post: operations["codespaces/start-for-authenticated-user"];
+ };
+ "/user/codespaces/{codespace_name}/stop": {
+ /**
+ * Stop a codespace for the authenticated user
+ * @description Stops a user's codespace.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `codespace` scope to use this endpoint.
+ */
+ post: operations["codespaces/stop-for-authenticated-user"];
+ };
+ "/user/docker/conflicts": {
+ /**
+ * Get list of conflicting packages during Docker migration for authenticated-user
+ * @description Lists all packages that are owned by the authenticated user within the user's namespace, and that encountered a conflict during a Docker migration.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint.
+ */
+ get: operations["packages/list-docker-migration-conflicting-packages-for-authenticated-user"];
+ };
+ "/user/email/visibility": {
+ /**
+ * Set primary email visibility for the authenticated user
+ * @description Sets the visibility for your primary email addresses.
+ */
+ patch: operations["users/set-primary-email-visibility-for-authenticated-user"];
+ };
+ "/user/emails": {
+ /**
+ * List email addresses for the authenticated user
+ * @description Lists all of your email addresses, and specifies which one is visible
+ * to the public.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `user:email` scope to use this endpoint.
+ */
+ get: operations["users/list-emails-for-authenticated-user"];
+ /**
+ * Add an email address for the authenticated user
+ * @description OAuth app tokens and personal access tokens (classic) need the `user` scope to use this endpoint.
+ */
+ post: operations["users/add-email-for-authenticated-user"];
+ /**
+ * Delete an email address for the authenticated user
+ * @description OAuth app tokens and personal access tokens (classic) need the `user` scope to use this endpoint.
+ */
+ delete: operations["users/delete-email-for-authenticated-user"];
+ };
+ "/user/followers": {
+ /**
+ * List followers of the authenticated user
+ * @description Lists the people following the authenticated user.
+ */
+ get: operations["users/list-followers-for-authenticated-user"];
+ };
+ "/user/following": {
+ /**
+ * List the people the authenticated user follows
+ * @description Lists the people who the authenticated user follows.
+ */
+ get: operations["users/list-followed-by-authenticated-user"];
+ };
+ "/user/following/{username}": {
+ /** Check if a person is followed by the authenticated user */
+ get: operations["users/check-person-is-followed-by-authenticated"];
+ /**
+ * Follow a user
+ * @description Note that you'll need to set `Content-Length` to zero when calling out to this endpoint. For more information, see "[HTTP verbs](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#http-method)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `user:follow` scope to use this endpoint.
+ */
+ put: operations["users/follow"];
+ /**
+ * Unfollow a user
+ * @description OAuth app tokens and personal access tokens (classic) need the `user:follow` scope to use this endpoint.
+ */
+ delete: operations["users/unfollow"];
+ };
+ "/user/gpg_keys": {
+ /**
+ * List GPG keys for the authenticated user
+ * @description Lists the current user's GPG keys.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:gpg_key` scope to use this endpoint.
+ */
+ get: operations["users/list-gpg-keys-for-authenticated-user"];
+ /**
+ * Create a GPG key for the authenticated user
+ * @description Adds a GPG key to the authenticated user's GitHub account.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:gpg_key` scope to use this endpoint.
+ */
+ post: operations["users/create-gpg-key-for-authenticated-user"];
+ };
+ "/user/gpg_keys/{gpg_key_id}": {
+ /**
+ * Get a GPG key for the authenticated user
+ * @description View extended details for a single GPG key.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:gpg_key` scope to use this endpoint.
+ */
+ get: operations["users/get-gpg-key-for-authenticated-user"];
+ /**
+ * Delete a GPG key for the authenticated user
+ * @description Removes a GPG key from the authenticated user's GitHub account.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:gpg_key` scope to use this endpoint.
+ */
+ delete: operations["users/delete-gpg-key-for-authenticated-user"];
+ };
+ "/user/installations": {
+ /**
+ * List app installations accessible to the user access token
+ * @description Lists installations of your GitHub App that the authenticated user has explicit permission (`:read`, `:write`, or `:admin`) to access.
+ *
+ * The authenticated user has explicit permission to access repositories they own, repositories where they are a collaborator, and repositories that they can access through an organization membership.
+ *
+ * You can find the permissions for the installation under the `permissions` key.
+ */
+ get: operations["apps/list-installations-for-authenticated-user"];
+ };
+ "/user/installations/{installation_id}/repositories": {
+ /**
+ * List repositories accessible to the user access token
+ * @description List repositories that the authenticated user has explicit permission (`:read`, `:write`, or `:admin`) to access for an installation.
+ *
+ * The authenticated user has explicit permission to access repositories they own, repositories where they are a collaborator, and repositories that they can access through an organization membership.
+ *
+ * The access the user has to each repository is included in the hash under the `permissions` key.
+ */
+ get: operations["apps/list-installation-repos-for-authenticated-user"];
+ };
+ "/user/installations/{installation_id}/repositories/{repository_id}": {
+ /**
+ * Add a repository to an app installation
+ * @description Add a single repository to an installation. The authenticated user must have admin access to the repository.
+ */
+ put: operations["apps/add-repo-to-installation-for-authenticated-user"];
+ /**
+ * Remove a repository from an app installation
+ * @description Remove a single repository from an installation. The authenticated user must have admin access to the repository. The installation must have the `repository_selection` of `selected`.
+ */
+ delete: operations["apps/remove-repo-from-installation-for-authenticated-user"];
+ };
+ "/user/interaction-limits": {
+ /**
+ * Get interaction restrictions for your public repositories
+ * @description Shows which type of GitHub user can interact with your public repositories and when the restriction expires.
+ */
+ get: operations["interactions/get-restrictions-for-authenticated-user"];
+ /**
+ * Set interaction restrictions for your public repositories
+ * @description Temporarily restricts which type of GitHub user can interact with your public repositories. Setting the interaction limit at the user level will overwrite any interaction limits that are set for individual repositories owned by the user.
+ */
+ put: operations["interactions/set-restrictions-for-authenticated-user"];
+ /**
+ * Remove interaction restrictions from your public repositories
+ * @description Removes any interaction restrictions from your public repositories.
+ */
+ delete: operations["interactions/remove-restrictions-for-authenticated-user"];
+ };
+ "/user/issues": {
+ /**
+ * List user account issues assigned to the authenticated user
+ * @description List issues across owned and member repositories assigned to the authenticated user.
+ *
+ * **Note**: GitHub's REST API considers every pull request an issue, but not every issue is a pull request. For this
+ * reason, "Issues" endpoints may return both issues and pull requests in the response. You can identify pull requests by
+ * the `pull_request` key. Be aware that the `id` of a pull request returned from "Issues" endpoints will be an _issue id_. To find out the pull
+ * request id, use the "[List pull requests](https://docs.github.com/rest/pulls/pulls#list-pull-requests)" endpoint.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.
+ * - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.
+ * - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.
+ * - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.
+ */
+ get: operations["issues/list-for-authenticated-user"];
+ };
+ "/user/keys": {
+ /**
+ * List public SSH keys for the authenticated user
+ * @description Lists the public SSH keys for the authenticated user's GitHub account.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:public_key` scope to use this endpoint.
+ */
+ get: operations["users/list-public-ssh-keys-for-authenticated-user"];
+ /**
+ * Create a public SSH key for the authenticated user
+ * @description Adds a public SSH key to the authenticated user's GitHub account.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:gpg_key` scope to use this endpoint.
+ */
+ post: operations["users/create-public-ssh-key-for-authenticated-user"];
+ };
+ "/user/keys/{key_id}": {
+ /**
+ * Get a public SSH key for the authenticated user
+ * @description View extended details for a single public SSH key.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:public_key` scope to use this endpoint.
+ */
+ get: operations["users/get-public-ssh-key-for-authenticated-user"];
+ /**
+ * Delete a public SSH key for the authenticated user
+ * @description Removes a public SSH key from the authenticated user's GitHub account.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:public_key` scope to use this endpoint.
+ */
+ delete: operations["users/delete-public-ssh-key-for-authenticated-user"];
+ };
+ "/user/marketplace_purchases": {
+ /**
+ * List subscriptions for the authenticated user
+ * @description Lists the active subscriptions for the authenticated user.
+ */
+ get: operations["apps/list-subscriptions-for-authenticated-user"];
+ };
+ "/user/marketplace_purchases/stubbed": {
+ /**
+ * List subscriptions for the authenticated user (stubbed)
+ * @description Lists the active subscriptions for the authenticated user.
+ */
+ get: operations["apps/list-subscriptions-for-authenticated-user-stubbed"];
+ };
+ "/user/memberships/orgs": {
+ /**
+ * List organization memberships for the authenticated user
+ * @description Lists all of the authenticated user's organization memberships.
+ */
+ get: operations["orgs/list-memberships-for-authenticated-user"];
+ };
+ "/user/memberships/orgs/{org}": {
+ /**
+ * Get an organization membership for the authenticated user
+ * @description If the authenticated user is an active or pending member of the organization, this endpoint will return the user's membership. If the authenticated user is not affiliated with the organization, a `404` is returned. This endpoint will return a `403` if the request is made by a GitHub App that is blocked by the organization.
+ */
+ get: operations["orgs/get-membership-for-authenticated-user"];
+ /**
+ * Update an organization membership for the authenticated user
+ * @description Converts the authenticated user to an active member of the organization, if that user has a pending invitation from the organization.
+ */
+ patch: operations["orgs/update-membership-for-authenticated-user"];
+ };
+ "/user/migrations": {
+ /**
+ * List user migrations
+ * @description Lists all migrations a user has started.
+ */
+ get: operations["migrations/list-for-authenticated-user"];
+ /**
+ * Start a user migration
+ * @description Initiates the generation of a user migration archive.
+ */
+ post: operations["migrations/start-for-authenticated-user"];
+ };
+ "/user/migrations/{migration_id}": {
+ /**
+ * Get a user migration status
+ * @description Fetches a single user migration. The response includes the `state` of the migration, which can be one of the following values:
+ *
+ * * `pending` - the migration hasn't started yet.
+ * * `exporting` - the migration is in progress.
+ * * `exported` - the migration finished successfully.
+ * * `failed` - the migration failed.
+ *
+ * Once the migration has been `exported` you can [download the migration archive](https://docs.github.com/rest/migrations/users#download-a-user-migration-archive).
+ */
+ get: operations["migrations/get-status-for-authenticated-user"];
+ };
+ "/user/migrations/{migration_id}/archive": {
+ /**
+ * Download a user migration archive
+ * @description Fetches the URL to download the migration archive as a `tar.gz` file. Depending on the resources your repository uses, the migration archive can contain JSON files with data for these objects:
+ *
+ * * attachments
+ * * bases
+ * * commit\_comments
+ * * issue\_comments
+ * * issue\_events
+ * * issues
+ * * milestones
+ * * organizations
+ * * projects
+ * * protected\_branches
+ * * pull\_request\_reviews
+ * * pull\_requests
+ * * releases
+ * * repositories
+ * * review\_comments
+ * * schema
+ * * users
+ *
+ * The archive will also contain an `attachments` directory that includes all attachment files uploaded to GitHub.com and a `repositories` directory that contains the repository's Git data.
+ */
+ get: operations["migrations/get-archive-for-authenticated-user"];
+ /**
+ * Delete a user migration archive
+ * @description Deletes a previous migration archive. Downloadable migration archives are automatically deleted after seven days. Migration metadata, which is returned in the [List user migrations](https://docs.github.com/rest/migrations/users#list-user-migrations) and [Get a user migration status](https://docs.github.com/rest/migrations/users#get-a-user-migration-status) endpoints, will continue to be available even after an archive is deleted.
+ */
+ delete: operations["migrations/delete-archive-for-authenticated-user"];
+ };
+ "/user/migrations/{migration_id}/repos/{repo_name}/lock": {
+ /**
+ * Unlock a user repository
+ * @description Unlocks a repository. You can lock repositories when you [start a user migration](https://docs.github.com/rest/migrations/users#start-a-user-migration). Once the migration is complete you can unlock each repository to begin using it again or [delete the repository](https://docs.github.com/rest/repos/repos#delete-a-repository) if you no longer need the source data. Returns a status of `404 Not Found` if the repository is not locked.
+ */
+ delete: operations["migrations/unlock-repo-for-authenticated-user"];
+ };
+ "/user/migrations/{migration_id}/repositories": {
+ /**
+ * List repositories for a user migration
+ * @description Lists all the repositories for this user migration.
+ */
+ get: operations["migrations/list-repos-for-authenticated-user"];
+ };
+ "/user/orgs": {
+ /**
+ * List organizations for the authenticated user
+ * @description List organizations for the authenticated user.
+ *
+ * For OAuth app tokens and personal access tokens (classic), this endpoint only lists organizations that your authorization allows you to operate on in some way (e.g., you can list teams with `read:org` scope, you can publicize your organization membership with `user` scope, etc.). Therefore, this API requires at least `user` or `read:org` scope for OAuth app tokens and personal access tokens (classic). Requests with insufficient scope will receive a `403 Forbidden` response.
+ */
+ get: operations["orgs/list-for-authenticated-user"];
+ };
+ "/user/packages": {
+ /**
+ * List packages for the authenticated user's namespace
+ * @description Lists packages owned by the authenticated user within the user's namespace.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ get: operations["packages/list-packages-for-authenticated-user"];
+ };
+ "/user/packages/{package_type}/{package_name}": {
+ /**
+ * Get a package for the authenticated user
+ * @description Gets a specific package for a package owned by the authenticated user.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ get: operations["packages/get-package-for-authenticated-user"];
+ /**
+ * Delete a package for the authenticated user
+ * @description Deletes a package owned by the authenticated user. You cannot delete a public package if any version of the package has more than 5,000 downloads. In this scenario, contact GitHub support for further assistance.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` and `delete:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, `repo` scope is also required. For the list these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ delete: operations["packages/delete-package-for-authenticated-user"];
+ };
+ "/user/packages/{package_type}/{package_name}/restore": {
+ /**
+ * Restore a package for the authenticated user
+ * @description Restores a package owned by the authenticated user.
+ *
+ * You can restore a deleted package under the following conditions:
+ * - The package was deleted within the last 30 days.
+ * - The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` and `write:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ post: operations["packages/restore-package-for-authenticated-user"];
+ };
+ "/user/packages/{package_type}/{package_name}/versions": {
+ /**
+ * List package versions for a package owned by the authenticated user
+ * @description Lists package versions for a package owned by the authenticated user.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ get: operations["packages/get-all-package-versions-for-package-owned-by-authenticated-user"];
+ };
+ "/user/packages/{package_type}/{package_name}/versions/{package_version_id}": {
+ /**
+ * Get a package version for the authenticated user
+ * @description Gets a specific package version for a package owned by the authenticated user.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ get: operations["packages/get-package-version-for-authenticated-user"];
+ /**
+ * Delete a package version for the authenticated user
+ * @description Deletes a specific package version for a package owned by the authenticated user. If the package is public and the package version has more than 5,000 downloads, you cannot delete the package version. In this scenario, contact GitHub support for further assistance.
+ *
+ * The authenticated user must have admin permissions in the organization to use this endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` and `delete:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ delete: operations["packages/delete-package-version-for-authenticated-user"];
+ };
+ "/user/packages/{package_type}/{package_name}/versions/{package_version_id}/restore": {
+ /**
+ * Restore a package version for the authenticated user
+ * @description Restores a package version owned by the authenticated user.
+ *
+ * You can restore a deleted package version under the following conditions:
+ * - The package was deleted within the last 30 days.
+ * - The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` and `write:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ post: operations["packages/restore-package-version-for-authenticated-user"];
+ };
+ "/user/projects": {
+ /**
+ * Create a user project
+ * @description Creates a user project board. Returns a `410 Gone` status if the user does not have existing classic projects. If you do not have sufficient privileges to perform this action, a `401 Unauthorized` or `410 Gone` status is returned.
+ */
+ post: operations["projects/create-for-authenticated-user"];
+ };
+ "/user/public_emails": {
+ /**
+ * List public email addresses for the authenticated user
+ * @description Lists your publicly visible email address, which you can set with the
+ * [Set primary email visibility for the authenticated user](https://docs.github.com/rest/users/emails#set-primary-email-visibility-for-the-authenticated-user)
+ * endpoint.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `user:email` scope to use this endpoint.
+ */
+ get: operations["users/list-public-emails-for-authenticated-user"];
+ };
+ "/user/repos": {
+ /**
+ * List repositories for the authenticated user
+ * @description Lists repositories that the authenticated user has explicit permission (`:read`, `:write`, or `:admin`) to access.
+ *
+ * The authenticated user has explicit permission to access repositories they own, repositories where they are a collaborator, and repositories that they can access through an organization membership.
+ */
+ get: operations["repos/list-for-authenticated-user"];
+ /**
+ * Create a repository for the authenticated user
+ * @description Creates a new repository for the authenticated user.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `public_repo` or `repo` scope to create a public repository, and `repo` scope to create a private repository.
+ */
+ post: operations["repos/create-for-authenticated-user"];
+ };
+ "/user/repository_invitations": {
+ /**
+ * List repository invitations for the authenticated user
+ * @description When authenticating as a user, this endpoint will list all currently open repository invitations for that user.
+ */
+ get: operations["repos/list-invitations-for-authenticated-user"];
+ };
+ "/user/repository_invitations/{invitation_id}": {
+ /** Decline a repository invitation */
+ delete: operations["repos/decline-invitation-for-authenticated-user"];
+ /** Accept a repository invitation */
+ patch: operations["repos/accept-invitation-for-authenticated-user"];
+ };
+ "/user/social_accounts": {
+ /**
+ * List social accounts for the authenticated user
+ * @description Lists all of your social accounts.
+ */
+ get: operations["users/list-social-accounts-for-authenticated-user"];
+ /**
+ * Add social accounts for the authenticated user
+ * @description Add one or more social accounts to the authenticated user's profile.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `user` scope to use this endpoint.
+ */
+ post: operations["users/add-social-account-for-authenticated-user"];
+ /**
+ * Delete social accounts for the authenticated user
+ * @description Deletes one or more social accounts from the authenticated user's profile.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `user` scope to use this endpoint.
+ */
+ delete: operations["users/delete-social-account-for-authenticated-user"];
+ };
+ "/user/ssh_signing_keys": {
+ /**
+ * List SSH signing keys for the authenticated user
+ * @description Lists the SSH signing keys for the authenticated user's GitHub account.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:ssh_signing_key` scope to use this endpoint.
+ */
+ get: operations["users/list-ssh-signing-keys-for-authenticated-user"];
+ /**
+ * Create a SSH signing key for the authenticated user
+ * @description Creates an SSH signing key for the authenticated user's GitHub account.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `write:ssh_signing_key` scope to use this endpoint.
+ */
+ post: operations["users/create-ssh-signing-key-for-authenticated-user"];
+ };
+ "/user/ssh_signing_keys/{ssh_signing_key_id}": {
+ /**
+ * Get an SSH signing key for the authenticated user
+ * @description Gets extended details for an SSH signing key.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:ssh_signing_key` scope to use this endpoint.
+ */
+ get: operations["users/get-ssh-signing-key-for-authenticated-user"];
+ /**
+ * Delete an SSH signing key for the authenticated user
+ * @description Deletes an SSH signing key from the authenticated user's GitHub account.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `admin:ssh_signing_key` scope to use this endpoint.
+ */
+ delete: operations["users/delete-ssh-signing-key-for-authenticated-user"];
+ };
+ "/user/starred": {
+ /**
+ * List repositories starred by the authenticated user
+ * @description Lists repositories the authenticated user has starred.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.star+json`**: Includes a timestamp of when the star was created.
+ */
+ get: operations["activity/list-repos-starred-by-authenticated-user"];
+ };
+ "/user/starred/{owner}/{repo}": {
+ /**
+ * Check if a repository is starred by the authenticated user
+ * @description Whether the authenticated user has starred the repository.
+ */
+ get: operations["activity/check-repo-is-starred-by-authenticated-user"];
+ /**
+ * Star a repository for the authenticated user
+ * @description Note that you'll need to set `Content-Length` to zero when calling out to this endpoint. For more information, see "[HTTP method](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#http-method)."
+ */
+ put: operations["activity/star-repo-for-authenticated-user"];
+ /**
+ * Unstar a repository for the authenticated user
+ * @description Unstar a repository that the authenticated user has previously starred.
+ */
+ delete: operations["activity/unstar-repo-for-authenticated-user"];
+ };
+ "/user/subscriptions": {
+ /**
+ * List repositories watched by the authenticated user
+ * @description Lists repositories the authenticated user is watching.
+ */
+ get: operations["activity/list-watched-repos-for-authenticated-user"];
+ };
+ "/user/teams": {
+ /**
+ * List teams for the authenticated user
+ * @description List all of the teams across all of the organizations to which the authenticated
+ * user belongs.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `user`, `repo`, or `read:org` scope to use this endpoint.
+ *
+ * When using a fine-grained personal access token, the resource owner of the token must be a single organization, and the response will only include the teams from that organization.
+ */
+ get: operations["teams/list-for-authenticated-user"];
+ };
+ "/users": {
+ /**
+ * List users
+ * @description Lists all users, in the order that they signed up on GitHub. This list includes personal user accounts and organization accounts.
+ *
+ * Note: Pagination is powered exclusively by the `since` parameter. Use the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers) to get the URL for the next page of users.
+ */
+ get: operations["users/list"];
+ };
+ "/users/{username}": {
+ /**
+ * Get a user
+ * @description Provides publicly available information about someone with a GitHub account.
+ *
+ * The `email` key in the following response is the publicly visible email address from your GitHub [profile page](https://github.com/settings/profile). When setting up your profile, you can select a primary email address to be “public” which provides an email entry for this endpoint. If you do not set a public email address for `email`, then it will have a value of `null`. You only see publicly visible email addresses when authenticated with GitHub. For more information, see [Authentication](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#authentication).
+ *
+ * The Emails API enables you to list all of your email addresses, and toggle a primary email to be visible publicly. For more information, see "[Emails API](https://docs.github.com/rest/users/emails)".
+ */
+ get: operations["users/get-by-username"];
+ };
+ "/users/{username}/docker/conflicts": {
+ /**
+ * Get list of conflicting packages during Docker migration for user
+ * @description Lists all packages that are in a specific user's namespace, that the requesting user has access to, and that encountered a conflict during Docker migration.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint.
+ */
+ get: operations["packages/list-docker-migration-conflicting-packages-for-user"];
+ };
+ "/users/{username}/events": {
+ /**
+ * List events for the authenticated user
+ * @description If you are authenticated as the given user, you will see your private events. Otherwise, you'll only see public events.
+ */
+ get: operations["activity/list-events-for-authenticated-user"];
+ };
+ "/users/{username}/events/orgs/{org}": {
+ /**
+ * List organization events for the authenticated user
+ * @description This is the user's organization dashboard. You must be authenticated as the user to view this.
+ */
+ get: operations["activity/list-org-events-for-authenticated-user"];
+ };
+ "/users/{username}/events/public": {
+ /** List public events for a user */
+ get: operations["activity/list-public-events-for-user"];
+ };
+ "/users/{username}/followers": {
+ /**
+ * List followers of a user
+ * @description Lists the people following the specified user.
+ */
+ get: operations["users/list-followers-for-user"];
+ };
+ "/users/{username}/following": {
+ /**
+ * List the people a user follows
+ * @description Lists the people who the specified user follows.
+ */
+ get: operations["users/list-following-for-user"];
+ };
+ "/users/{username}/following/{target_user}": {
+ /** Check if a user follows another user */
+ get: operations["users/check-following-for-user"];
+ };
+ "/users/{username}/gists": {
+ /**
+ * List gists for a user
+ * @description Lists public gists for the specified user:
+ */
+ get: operations["gists/list-for-user"];
+ };
+ "/users/{username}/gpg_keys": {
+ /**
+ * List GPG keys for a user
+ * @description Lists the GPG keys for a user. This information is accessible by anyone.
+ */
+ get: operations["users/list-gpg-keys-for-user"];
+ };
+ "/users/{username}/hovercard": {
+ /**
+ * Get contextual information for a user
+ * @description Provides hovercard information. You can find out more about someone in relation to their pull requests, issues, repositories, and organizations.
+ *
+ * The `subject_type` and `subject_id` parameters provide context for the person's hovercard, which returns more information than without the parameters. For example, if you wanted to find out more about `octocat` who owns the `Spoon-Knife` repository, you would use a `subject_type` value of `repository` and a `subject_id` value of `1300192` (the ID of the `Spoon-Knife` repository).
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
+ */
+ get: operations["users/get-context-for-user"];
+ };
+ "/users/{username}/installation": {
+ /**
+ * Get a user installation for the authenticated app
+ * @description Enables an authenticated GitHub App to find the user’s installation information.
+ *
+ * You must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.
+ */
+ get: operations["apps/get-user-installation"];
+ };
+ "/users/{username}/keys": {
+ /**
+ * List public keys for a user
+ * @description Lists the _verified_ public SSH keys for a user. This is accessible by anyone.
+ */
+ get: operations["users/list-public-keys-for-user"];
+ };
+ "/users/{username}/orgs": {
+ /**
+ * List organizations for a user
+ * @description List [public organization memberships](https://docs.github.com/articles/publicizing-or-concealing-organization-membership) for the specified user.
+ *
+ * This method only lists _public_ memberships, regardless of authentication. If you need to fetch all of the organization memberships (public and private) for the authenticated user, use the [List organizations for the authenticated user](https://docs.github.com/rest/orgs/orgs#list-organizations-for-the-authenticated-user) API instead.
+ */
+ get: operations["orgs/list-for-user"];
+ };
+ "/users/{username}/packages": {
+ /**
+ * List packages for a user
+ * @description Lists all packages in a user's namespace for which the requesting user has access.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ get: operations["packages/list-packages-for-user"];
+ };
+ "/users/{username}/packages/{package_type}/{package_name}": {
+ /**
+ * Get a package for a user
+ * @description Gets a specific package metadata for a public package owned by a user.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ get: operations["packages/get-package-for-user"];
+ /**
+ * Delete a package for a user
+ * @description Deletes an entire package for a user. You cannot delete a public package if any version of the package has more than 5,000 downloads. In this scenario, contact GitHub support for further assistance.
+ *
+ * If the `package_type` belongs to a GitHub Packages registry that supports granular permissions, the authenticated user must have admin permissions to the package. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#granular-permissions-for-userorganization-scoped-packages)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` and `delete:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ delete: operations["packages/delete-package-for-user"];
+ };
+ "/users/{username}/packages/{package_type}/{package_name}/restore": {
+ /**
+ * Restore a package for a user
+ * @description Restores an entire package for a user.
+ *
+ * You can restore a deleted package under the following conditions:
+ * - The package was deleted within the last 30 days.
+ * - The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
+ *
+ * If the `package_type` belongs to a GitHub Packages registry that supports granular permissions, the authenticated user must have admin permissions to the package. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#granular-permissions-for-userorganization-scoped-packages)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` and `write:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ post: operations["packages/restore-package-for-user"];
+ };
+ "/users/{username}/packages/{package_type}/{package_name}/versions": {
+ /**
+ * List package versions for a package owned by a user
+ * @description Lists package versions for a public package owned by a specified user.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ get: operations["packages/get-all-package-versions-for-package-owned-by-user"];
+ };
+ "/users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}": {
+ /**
+ * Get a package version for a user
+ * @description Gets a specific package version for a public package owned by a specified user.
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ get: operations["packages/get-package-version-for-user"];
+ /**
+ * Delete package version for a user
+ * @description Deletes a specific package version for a user. If the package is public and the package version has more than 5,000 downloads, you cannot delete the package version. In this scenario, contact GitHub support for further assistance.
+ *
+ * If the `package_type` belongs to a GitHub Packages registry that supports granular permissions, the authenticated user must have admin permissions to the package. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#granular-permissions-for-userorganization-scoped-packages)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` and `delete:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ delete: operations["packages/delete-package-version-for-user"];
+ };
+ "/users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}/restore": {
+ /**
+ * Restore package version for a user
+ * @description Restores a specific package version for a user.
+ *
+ * You can restore a deleted package under the following conditions:
+ * - The package was deleted within the last 30 days.
+ * - The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
+ *
+ * If the `package_type` belongs to a GitHub Packages registry that supports granular permissions, the authenticated user must have admin permissions to the package. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#granular-permissions-for-userorganization-scoped-packages)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `read:packages` and `write:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
+ */
+ post: operations["packages/restore-package-version-for-user"];
+ };
+ "/users/{username}/projects": {
+ /**
+ * List user projects
+ * @description Lists projects for a user.
+ */
+ get: operations["projects/list-for-user"];
+ };
+ "/users/{username}/received_events": {
+ /**
+ * List events received by the authenticated user
+ * @description These are events that you've received by watching repositories and following users. If you are authenticated as the given user, you will see private events. Otherwise, you'll only see public events.
+ */
+ get: operations["activity/list-received-events-for-user"];
+ };
+ "/users/{username}/received_events/public": {
+ /** List public events received by a user */
+ get: operations["activity/list-received-public-events-for-user"];
+ };
+ "/users/{username}/repos": {
+ /**
+ * List repositories for a user
+ * @description Lists public repositories for the specified user.
+ */
+ get: operations["repos/list-for-user"];
+ };
+ "/users/{username}/settings/billing/actions": {
+ /**
+ * Get GitHub Actions billing for a user
+ * @description Gets the summary of the free and paid GitHub Actions minutes used.
+ *
+ * Paid minutes only apply to workflows in private repositories that use GitHub-hosted runners. Minutes used is listed for each GitHub-hosted runner operating system. Any job re-runs are also included in the usage. The usage returned includes any minute multipliers for macOS and Windows runners, and is rounded up to the nearest whole minute. For more information, see "[Managing billing for GitHub Actions](https://docs.github.com/github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-actions)".
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `user` scope to use this endpoint.
+ */
+ get: operations["billing/get-github-actions-billing-user"];
+ };
+ "/users/{username}/settings/billing/packages": {
+ /**
+ * Get GitHub Packages billing for a user
+ * @description Gets the free and paid storage used for GitHub Packages in gigabytes.
+ *
+ * Paid minutes only apply to packages stored for private repositories. For more information, see "[Managing billing for GitHub Packages](https://docs.github.com/github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-packages)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `user` scope to use this endpoint.
+ */
+ get: operations["billing/get-github-packages-billing-user"];
+ };
+ "/users/{username}/settings/billing/shared-storage": {
+ /**
+ * Get shared storage billing for a user
+ * @description Gets the estimated paid and estimated total storage used for GitHub Actions and GitHub Packages.
+ *
+ * Paid minutes only apply to packages stored for private repositories. For more information, see "[Managing billing for GitHub Packages](https://docs.github.com/github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-packages)."
+ *
+ * OAuth app tokens and personal access tokens (classic) need the `user` scope to use this endpoint.
+ */
+ get: operations["billing/get-shared-storage-billing-user"];
+ };
+ "/users/{username}/social_accounts": {
+ /**
+ * List social accounts for a user
+ * @description Lists social media accounts for a user. This endpoint is accessible by anyone.
+ */
+ get: operations["users/list-social-accounts-for-user"];
+ };
+ "/users/{username}/ssh_signing_keys": {
+ /**
+ * List SSH signing keys for a user
+ * @description Lists the SSH signing keys for a user. This operation is accessible by anyone.
+ */
+ get: operations["users/list-ssh-signing-keys-for-user"];
+ };
+ "/users/{username}/starred": {
+ /**
+ * List repositories starred by a user
+ * @description Lists repositories a user has starred.
+ *
+ * This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)."
+ *
+ * - **`application/vnd.github.star+json`**: Includes a timestamp of when the star was created.
+ */
+ get: operations["activity/list-repos-starred-by-user"];
+ };
+ "/users/{username}/subscriptions": {
+ /**
+ * List repositories watched by a user
+ * @description Lists repositories a user is watching.
+ */
+ get: operations["activity/list-repos-watched-by-user"];
+ };
+ "/versions": {
+ /**
+ * Get all API versions
+ * @description Get all supported GitHub API versions.
+ */
+ get: operations["meta/get-all-versions"];
+ };
+ "/zen": {
+ /**
+ * Get the Zen of GitHub
+ * @description Get a random sentence from the Zen of GitHub
+ */
+ get: operations["meta/get-zen"];
+ };
+ "/repos/{owner}/{repo}/compare/{base}...{head}": {
+ /**
+ * Compare two commits
+ * @description **Deprecated**: Use `repos.compareCommitsWithBasehead()` (`GET /repos/{owner}/{repo}/compare/{basehead}`) instead. Both `:base` and `:head` must be branch names in `:repo`. To compare branches across other repositories in the same network as `:repo`, use the format `:branch`.
+ *
+ * The response from the API is equivalent to running the `git log base..head` command; however, commits are returned in chronological order. Pass the appropriate [media type](https://docs.github.com/rest/overview/media-types/#commits-commit-comparison-and-pull-requests) to fetch diff and patch formats.
+ *
+ * The response also includes details on the files that were changed between the two commits. This includes the status of the change (for example, if a file was added, removed, modified, or renamed), and details of the change itself. For example, files with a `renamed` status have a `previous_filename` field showing the previous filename of the file, and files with a `modified` status have a `patch` field showing the changes made to the file.
+ *
+ * **Working with large comparisons**
+ *
+ * To process a response with a large number of commits, you can use (`per_page` or `page`) to paginate the results. When using paging, the list of changed files is only returned with page 1, but includes all changed files for the entire comparison. For more information on working with pagination, see "[Traversing with pagination](/rest/guides/traversing-with-pagination)."
+ *
+ * When calling this API without any paging parameters (`per_page` or `page`), the returned list is limited to 250 commits and the last commit in the list is the most recent of the entire comparison. When a paging parameter is specified, the first commit in the returned list of each page is the earliest.
+ *
+ * **Signature verification object**
+ *
+ * The response will include a `verification` object that describes the result of verifying the commit's signature. The following fields are included in the `verification` object:
+ *
+ * | Name | Type | Description |
+ * | ---- | ---- | ----------- |
+ * | `verified` | `boolean` | Indicates whether GitHub considers the signature in this commit to be verified. |
+ * | `reason` | `string` | The reason for verified value. Possible values and their meanings are enumerated in table below. |
+ * | `signature` | `string` | The signature that was extracted from the commit. |
+ * | `payload` | `string` | The value that was signed. |
+ *
+ * These are the possible values for `reason` in the `verification` object:
+ *
+ * | Value | Description |
+ * | ----- | ----------- |
+ * | `expired_key` | The key that made the signature is expired. |
+ * | `not_signing_key` | The "signing" flag is not among the usage flags in the GPG key that made the signature. |
+ * | `gpgverify_error` | There was an error communicating with the signature verification service. |
+ * | `gpgverify_unavailable` | The signature verification service is currently unavailable. |
+ * | `unsigned` | The object does not include a signature. |
+ * | `unknown_signature_type` | A non-PGP signature was found in the commit. |
+ * | `no_user` | No user was associated with the `committer` email address in the commit. |
+ * | `unverified_email` | The `committer` email address in the commit was associated with a user, but the email address is not verified on her/his account. |
+ * | `bad_email` | The `committer` email address in the commit is not included in the identities of the PGP key that made the signature. |
+ * | `unknown_key` | The key that made the signature has not been registered with any user's account. |
+ * | `malformed_signature` | There was an error parsing the signature. |
+ * | `invalid` | The signature could not be cryptographically verified using the key whose key-id was found in the signature. |
+ * | `valid` | None of the above errors applied, so the signature is considered to be verified. |
+ */
+ get: operations["repos/compare-commits"];
+ };
+}
+
+export type webhooks = Record;
+
+export interface components {
+ schemas: {
+ root: {
+ /** Format: uri-template */
+ current_user_url: string;
+ /** Format: uri-template */
+ current_user_authorizations_html_url: string;
+ /** Format: uri-template */
+ authorizations_url: string;
+ /** Format: uri-template */
+ code_search_url: string;
+ /** Format: uri-template */
+ commit_search_url: string;
+ /** Format: uri-template */
+ emails_url: string;
+ /** Format: uri-template */
+ emojis_url: string;
+ /** Format: uri-template */
+ events_url: string;
+ /** Format: uri-template */
+ feeds_url: string;
+ /** Format: uri-template */
+ followers_url: string;
+ /** Format: uri-template */
+ following_url: string;
+ /** Format: uri-template */
+ gists_url: string;
+ /**
+ * Format: uri-template
+ * @deprecated
+ */
+ hub_url?: string;
+ /** Format: uri-template */
+ issue_search_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ label_search_url: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ /** Format: uri-template */
+ organization_url: string;
+ /** Format: uri-template */
+ organization_repositories_url: string;
+ /** Format: uri-template */
+ organization_teams_url: string;
+ /** Format: uri-template */
+ public_gists_url: string;
+ /** Format: uri-template */
+ rate_limit_url: string;
+ /** Format: uri-template */
+ repository_url: string;
+ /** Format: uri-template */
+ repository_search_url: string;
+ /** Format: uri-template */
+ current_user_repositories_url: string;
+ /** Format: uri-template */
+ starred_url: string;
+ /** Format: uri-template */
+ starred_gists_url: string;
+ /** Format: uri-template */
+ topic_search_url?: string;
+ /** Format: uri-template */
+ user_url: string;
+ /** Format: uri-template */
+ user_organizations_url: string;
+ /** Format: uri-template */
+ user_repositories_url: string;
+ /** Format: uri-template */
+ user_search_url: string;
+ };
+ /**
+ * @description The package's language or package management ecosystem.
+ * @enum {string}
+ */
+ "security-advisory-ecosystems":
+ | "rubygems"
+ | "npm"
+ | "pip"
+ | "maven"
+ | "nuget"
+ | "composer"
+ | "go"
+ | "rust"
+ | "erlang"
+ | "actions"
+ | "pub"
+ | "other"
+ | "swift";
+ /** @description A vulnerability describing the product and its affected versions within a GitHub Security Advisory. */
+ vulnerability: {
+ /** @description The name of the package affected by the vulnerability. */
+ package: {
+ ecosystem: components["schemas"]["security-advisory-ecosystems"];
+ /** @description The unique package name within its ecosystem. */
+ name: string | null;
+ } | null;
+ /** @description The range of the package versions affected by the vulnerability. */
+ vulnerable_version_range: string | null;
+ /** @description The package version that resolves the vulnerability. */
+ first_patched_version: string | null;
+ /** @description The functions in the package that are affected by the vulnerability. */
+ vulnerable_functions: readonly string[] | null;
+ };
+ /**
+ * Simple User
+ * @description A GitHub user.
+ */
+ "simple-user": {
+ name?: string | null;
+ email?: string | null;
+ /** @example octocat */
+ login: string;
+ /** @example 1 */
+ id: number;
+ /** @example MDQ6VXNlcjE= */
+ node_id: string;
+ /**
+ * Format: uri
+ * @example https://github.com/images/error/octocat_happy.gif
+ */
+ avatar_url: string;
+ /** @example 41d064eb2195891e12d0413f63227ea7 */
+ gravatar_id: string | null;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat
+ */
+ url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat
+ */
+ html_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/followers
+ */
+ followers_url: string;
+ /** @example https://api.github.com/users/octocat/following{/other_user} */
+ following_url: string;
+ /** @example https://api.github.com/users/octocat/gists{/gist_id} */
+ gists_url: string;
+ /** @example https://api.github.com/users/octocat/starred{/owner}{/repo} */
+ starred_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/subscriptions
+ */
+ subscriptions_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/orgs
+ */
+ organizations_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/repos
+ */
+ repos_url: string;
+ /** @example https://api.github.com/users/octocat/events{/privacy} */
+ events_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/received_events
+ */
+ received_events_url: string;
+ /** @example User */
+ type: string;
+ site_admin: boolean;
+ /** @example "2020-07-09T00:17:55Z" */
+ starred_at?: string;
+ };
+ /**
+ * @description The type of credit the user is receiving.
+ * @enum {string}
+ */
+ "security-advisory-credit-types":
+ | "analyst"
+ | "finder"
+ | "reporter"
+ | "coordinator"
+ | "remediation_developer"
+ | "remediation_reviewer"
+ | "remediation_verifier"
+ | "tool"
+ | "sponsor"
+ | "other";
+ /** @description A GitHub Security Advisory. */
+ "global-advisory": {
+ /** @description The GitHub Security Advisory ID. */
+ ghsa_id: string;
+ /** @description The Common Vulnerabilities and Exposures (CVE) ID. */
+ cve_id: string | null;
+ /** @description The API URL for the advisory. */
+ url: string;
+ /**
+ * Format: uri
+ * @description The URL for the advisory.
+ */
+ html_url: string;
+ /**
+ * Format: uri
+ * @description The API URL for the repository advisory.
+ */
+ repository_advisory_url: string | null;
+ /** @description A short summary of the advisory. */
+ summary: string;
+ /** @description A detailed description of what the advisory entails. */
+ description: string | null;
+ /**
+ * @description The type of advisory.
+ * @enum {string}
+ */
+ type: "reviewed" | "unreviewed" | "malware";
+ /**
+ * @description The severity of the advisory.
+ * @enum {string}
+ */
+ severity: "critical" | "high" | "medium" | "low" | "unknown";
+ /**
+ * Format: uri
+ * @description The URL of the advisory's source code.
+ */
+ source_code_location: string | null;
+ identifiers:
+ | readonly {
+ /**
+ * @description The type of identifier.
+ * @enum {string}
+ */
+ type: "CVE" | "GHSA";
+ /** @description The identifier value. */
+ value: string;
+ }[]
+ | null;
+ references: string[] | null;
+ /**
+ * Format: date-time
+ * @description The date and time of when the advisory was published, in ISO 8601 format.
+ */
+ published_at: string;
+ /**
+ * Format: date-time
+ * @description The date and time of when the advisory was last updated, in ISO 8601 format.
+ */
+ updated_at: string;
+ /**
+ * Format: date-time
+ * @description The date and time of when the advisory was reviewed by GitHub, in ISO 8601 format.
+ */
+ github_reviewed_at: string | null;
+ /**
+ * Format: date-time
+ * @description The date and time when the advisory was published in the National Vulnerability Database, in ISO 8601 format.
+ * This field is only populated when the advisory is imported from the National Vulnerability Database.
+ */
+ nvd_published_at: string | null;
+ /**
+ * Format: date-time
+ * @description The date and time of when the advisory was withdrawn, in ISO 8601 format.
+ */
+ withdrawn_at: string | null;
+ /** @description The products and respective version ranges affected by the advisory. */
+ vulnerabilities: components["schemas"]["vulnerability"][] | null;
+ cvss: {
+ /** @description The CVSS vector. */
+ vector_string: string | null;
+ /** @description The CVSS score. */
+ score: number | null;
+ } | null;
+ cwes:
+ | {
+ /** @description The Common Weakness Enumeration (CWE) identifier. */
+ cwe_id: string;
+ /** @description The name of the CWE. */
+ name: string;
+ }[]
+ | null;
+ /** @description The users who contributed to the advisory. */
+ credits:
+ | readonly {
+ user: components["schemas"]["simple-user"];
+ type: components["schemas"]["security-advisory-credit-types"];
+ }[]
+ | null;
+ };
+ /**
+ * Basic Error
+ * @description Basic Error
+ */
+ "basic-error": {
+ message?: string;
+ documentation_url?: string;
+ url?: string;
+ status?: string;
+ };
+ /**
+ * Validation Error Simple
+ * @description Validation Error Simple
+ */
+ "validation-error-simple": {
+ message: string;
+ documentation_url: string;
+ errors?: string[];
+ };
+ /**
+ * Simple User
+ * @description A GitHub user.
+ */
+ "nullable-simple-user": {
+ name?: string | null;
+ email?: string | null;
+ /** @example octocat */
+ login: string;
+ /** @example 1 */
+ id: number;
+ /** @example MDQ6VXNlcjE= */
+ node_id: string;
+ /**
+ * Format: uri
+ * @example https://github.com/images/error/octocat_happy.gif
+ */
+ avatar_url: string;
+ /** @example 41d064eb2195891e12d0413f63227ea7 */
+ gravatar_id: string | null;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat
+ */
+ url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat
+ */
+ html_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/followers
+ */
+ followers_url: string;
+ /** @example https://api.github.com/users/octocat/following{/other_user} */
+ following_url: string;
+ /** @example https://api.github.com/users/octocat/gists{/gist_id} */
+ gists_url: string;
+ /** @example https://api.github.com/users/octocat/starred{/owner}{/repo} */
+ starred_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/subscriptions
+ */
+ subscriptions_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/orgs
+ */
+ organizations_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/repos
+ */
+ repos_url: string;
+ /** @example https://api.github.com/users/octocat/events{/privacy} */
+ events_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/received_events
+ */
+ received_events_url: string;
+ /** @example User */
+ type: string;
+ site_admin: boolean;
+ /** @example "2020-07-09T00:17:55Z" */
+ starred_at?: string;
+ } | null;
+ /**
+ * GitHub app
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ integration: {
+ /**
+ * @description Unique identifier of the GitHub app
+ * @example 37
+ */
+ id: number;
+ /**
+ * @description The slug name of the GitHub app
+ * @example probot-owners
+ */
+ slug?: string;
+ /** @example MDExOkludGVncmF0aW9uMQ== */
+ node_id: string;
+ owner: components["schemas"]["nullable-simple-user"];
+ /**
+ * @description The name of the GitHub app
+ * @example Probot Owners
+ */
+ name: string;
+ /** @example The description of the app. */
+ description: string | null;
+ /**
+ * Format: uri
+ * @example https://example.com
+ */
+ external_url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/apps/super-ci
+ */
+ html_url: string;
+ /**
+ * Format: date-time
+ * @example 2017-07-08T16:18:44-04:00
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2017-07-08T16:18:44-04:00
+ */
+ updated_at: string;
+ /**
+ * @description The set of permissions for the GitHub app
+ * @example {
+ * "issues": "read",
+ * "deployments": "write"
+ * }
+ */
+ permissions: {
+ issues?: string;
+ checks?: string;
+ metadata?: string;
+ contents?: string;
+ deployments?: string;
+ [key: string]: string | undefined;
+ };
+ /**
+ * @description The list of events for the GitHub app
+ * @example [
+ * "label",
+ * "deployment"
+ * ]
+ */
+ events: string[];
+ /**
+ * @description The number of installations associated with the GitHub app
+ * @example 5
+ */
+ installations_count?: number;
+ /** @example "Iv1.25b5d1e65ffc4022" */
+ client_id?: string;
+ /** @example "1d4b2097ac622ba702d19de498f005747a8b21d3" */
+ client_secret?: string;
+ /** @example "6fba8f2fc8a7e8f2cca5577eddd82ca7586b3b6b" */
+ webhook_secret?: string | null;
+ /** @example "-----BEGIN RSA PRIVATE KEY-----\nMIIEogIBAAKCAQEArYxrNYD/iT5CZVpRJu4rBKmmze3PVmT/gCo2ATUvDvZTPTey\nxcGJ3vvrJXazKk06pN05TN29o98jrYz4cengG3YGsXPNEpKsIrEl8NhbnxapEnM9\nJCMRe0P5JcPsfZlX6hmiT7136GRWiGOUba2X9+HKh8QJVLG5rM007TBER9/z9mWm\nrJuNh+m5l320oBQY/Qq3A7wzdEfZw8qm/mIN0FCeoXH1L6B8xXWaAYBwhTEh6SSn\nZHlO1Xu1JWDmAvBCi0RO5aRSKM8q9QEkvvHP4yweAtK3N8+aAbZ7ovaDhyGz8r6r\nzhU1b8Uo0Z2ysf503WqzQgIajr7Fry7/kUwpgQIDAQABAoIBADwJp80Ko1xHPZDy\nfcCKBDfIuPvkmSW6KumbsLMaQv1aGdHDwwTGv3t0ixSay8CGlxMRtRDyZPib6SvQ\n6OH/lpfpbMdW2ErkksgtoIKBVrDilfrcAvrNZu7NxRNbhCSvN8q0s4ICecjbbVQh\nnueSdlA6vGXbW58BHMq68uRbHkP+k+mM9U0mDJ1HMch67wlg5GbayVRt63H7R2+r\nVxcna7B80J/lCEjIYZznawgiTvp3MSanTglqAYi+m1EcSsP14bJIB9vgaxS79kTu\noiSo93leJbBvuGo8QEiUqTwMw4tDksmkLsoqNKQ1q9P7LZ9DGcujtPy4EZsamSJT\ny8OJt0ECgYEA2lxOxJsQk2kI325JgKFjo92mQeUObIvPfSNWUIZQDTjniOI6Gv63\nGLWVFrZcvQBWjMEQraJA9xjPbblV8PtfO87MiJGLWCHFxmPz2dzoedN+2Coxom8m\nV95CLz8QUShuao6u/RYcvUaZEoYs5bHcTmy5sBK80JyEmafJPtCQVxMCgYEAy3ar\nZr3yv4xRPEPMat4rseswmuMooSaK3SKub19WFI5IAtB/e7qR1Rj9JhOGcZz+OQrl\nT78O2OFYlgOIkJPvRMrPpK5V9lslc7tz1FSh3BZMRGq5jSyD7ETSOQ0c8T2O/s7v\nbeEPbVbDe4mwvM24XByH0GnWveVxaDl51ABD65sCgYB3ZAspUkOA5egVCh8kNpnd\nSd6SnuQBE3ySRlT2WEnCwP9Ph6oPgn+oAfiPX4xbRqkL8q/k0BdHQ4h+zNwhk7+h\nWtPYRAP1Xxnc/F+jGjb+DVaIaKGU18MWPg7f+FI6nampl3Q0KvfxwX0GdNhtio8T\nTj1E+SnFwh56SRQuxSh2gwKBgHKjlIO5NtNSflsUYFM+hyQiPiqnHzddfhSG+/3o\nm5nNaSmczJesUYreH5San7/YEy2UxAugvP7aSY2MxB+iGsiJ9WD2kZzTUlDZJ7RV\nUzWsoqBR+eZfVJ2FUWWvy8TpSG6trh4dFxImNtKejCR1TREpSiTV3Zb1dmahK9GV\nrK9NAoGAbBxRLoC01xfxCTgt5BDiBcFVh4fp5yYKwavJPLzHSpuDOrrI9jDn1oKN\nonq5sDU1i391zfQvdrbX4Ova48BN+B7p63FocP/MK5tyyBoT8zQEk2+vWDOw7H/Z\nu5dTCPxTIsoIwUw1I+7yIxqJzLPFgR2gVBwY1ra/8iAqCj+zeBw=\n-----END RSA PRIVATE KEY-----\n" */
+ pem?: string;
+ } | null;
+ /**
+ * Format: uri
+ * @description The URL to which the payloads will be delivered.
+ * @example https://example.com/webhook
+ */
+ "webhook-config-url": string;
+ /**
+ * @description The media type used to serialize the payloads. Supported values include `json` and `form`. The default is `form`.
+ * @example "json"
+ */
+ "webhook-config-content-type": string;
+ /**
+ * @description If provided, the `secret` will be used as the `key` to generate the HMAC hex digest value for [delivery signature headers](https://docs.github.com/webhooks/event-payloads/#delivery-headers).
+ * @example "********"
+ */
+ "webhook-config-secret": string;
+ "webhook-config-insecure-ssl": string | number;
+ /**
+ * Webhook Configuration
+ * @description Configuration object of the webhook
+ */
+ "webhook-config": {
+ url?: components["schemas"]["webhook-config-url"];
+ content_type?: components["schemas"]["webhook-config-content-type"];
+ secret?: components["schemas"]["webhook-config-secret"];
+ insecure_ssl?: components["schemas"]["webhook-config-insecure-ssl"];
+ };
+ /**
+ * Simple webhook delivery
+ * @description Delivery made by a webhook, without request and response information.
+ */
+ "hook-delivery-item": {
+ /**
+ * @description Unique identifier of the webhook delivery.
+ * @example 42
+ */
+ id: number;
+ /**
+ * @description Unique identifier for the event (shared with all deliveries for all webhooks that subscribe to this event).
+ * @example 58474f00-b361-11eb-836d-0e4f3503ccbe
+ */
+ guid: string;
+ /**
+ * Format: date-time
+ * @description Time when the webhook delivery occurred.
+ * @example 2021-05-12T20:33:44Z
+ */
+ delivered_at: string;
+ /**
+ * @description Whether the webhook delivery is a redelivery.
+ * @example false
+ */
+ redelivery: boolean;
+ /**
+ * @description Time spent delivering.
+ * @example 0.03
+ */
+ duration: number;
+ /**
+ * @description Describes the response returned after attempting the delivery.
+ * @example failed to connect
+ */
+ status: string;
+ /**
+ * @description Status code received when delivery was made.
+ * @example 502
+ */
+ status_code: number;
+ /**
+ * @description The event that triggered the delivery.
+ * @example issues
+ */
+ event: string;
+ /**
+ * @description The type of activity for the event that triggered the delivery.
+ * @example opened
+ */
+ action: string | null;
+ /**
+ * @description The id of the GitHub App installation associated with this event.
+ * @example 123
+ */
+ installation_id: number | null;
+ /**
+ * @description The id of the repository associated with this event.
+ * @example 123
+ */
+ repository_id: number | null;
+ };
+ /**
+ * Scim Error
+ * @description Scim Error
+ */
+ "scim-error": {
+ message?: string | null;
+ documentation_url?: string | null;
+ detail?: string | null;
+ status?: number;
+ scimType?: string | null;
+ schemas?: string[];
+ };
+ /**
+ * Validation Error
+ * @description Validation Error
+ */
+ "validation-error": {
+ message: string;
+ documentation_url: string;
+ errors?: {
+ resource?: string;
+ field?: string;
+ message?: string;
+ code: string;
+ index?: number;
+ value?: (string | null) | (number | null) | (string[] | null);
+ }[];
+ };
+ /**
+ * Webhook delivery
+ * @description Delivery made by a webhook.
+ */
+ "hook-delivery": {
+ /**
+ * @description Unique identifier of the delivery.
+ * @example 42
+ */
+ id: number;
+ /**
+ * @description Unique identifier for the event (shared with all deliveries for all webhooks that subscribe to this event).
+ * @example 58474f00-b361-11eb-836d-0e4f3503ccbe
+ */
+ guid: string;
+ /**
+ * Format: date-time
+ * @description Time when the delivery was delivered.
+ * @example 2021-05-12T20:33:44Z
+ */
+ delivered_at: string;
+ /**
+ * @description Whether the delivery is a redelivery.
+ * @example false
+ */
+ redelivery: boolean;
+ /**
+ * @description Time spent delivering.
+ * @example 0.03
+ */
+ duration: number;
+ /**
+ * @description Description of the status of the attempted delivery
+ * @example failed to connect
+ */
+ status: string;
+ /**
+ * @description Status code received when delivery was made.
+ * @example 502
+ */
+ status_code: number;
+ /**
+ * @description The event that triggered the delivery.
+ * @example issues
+ */
+ event: string;
+ /**
+ * @description The type of activity for the event that triggered the delivery.
+ * @example opened
+ */
+ action: string | null;
+ /**
+ * @description The id of the GitHub App installation associated with this event.
+ * @example 123
+ */
+ installation_id: number | null;
+ /**
+ * @description The id of the repository associated with this event.
+ * @example 123
+ */
+ repository_id: number | null;
+ /**
+ * @description The URL target of the delivery.
+ * @example https://www.example.com
+ */
+ url?: string;
+ request: {
+ /** @description The request headers sent with the webhook delivery. */
+ headers: {
+ [key: string]: unknown;
+ } | null;
+ /** @description The webhook payload. */
+ payload: {
+ [key: string]: unknown;
+ } | null;
+ };
+ response: {
+ /** @description The response headers received when the delivery was made. */
+ headers: {
+ [key: string]: unknown;
+ } | null;
+ /** @description The response payload received. */
+ payload: string | null;
+ };
+ };
+ /**
+ * Enterprise
+ * @description An enterprise on GitHub.
+ */
+ enterprise: {
+ /** @description A short description of the enterprise. */
+ description?: string | null;
+ /**
+ * Format: uri
+ * @example https://github.com/enterprises/octo-business
+ */
+ html_url: string;
+ /**
+ * Format: uri
+ * @description The enterprise's website URL.
+ */
+ website_url?: string | null;
+ /**
+ * @description Unique identifier of the enterprise
+ * @example 42
+ */
+ id: number;
+ /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */
+ node_id: string;
+ /**
+ * @description The name of the enterprise.
+ * @example Octo Business
+ */
+ name: string;
+ /**
+ * @description The slug url identifier for the enterprise.
+ * @example octo-business
+ */
+ slug: string;
+ /**
+ * Format: date-time
+ * @example 2019-01-26T19:01:12Z
+ */
+ created_at: string | null;
+ /**
+ * Format: date-time
+ * @example 2019-01-26T19:14:43Z
+ */
+ updated_at: string | null;
+ /** Format: uri */
+ avatar_url: string;
+ };
+ /**
+ * Integration Installation Request
+ * @description Request to install an integration on a target
+ */
+ "integration-installation-request": {
+ /**
+ * @description Unique identifier of the request installation.
+ * @example 42
+ */
+ id: number;
+ /** @example MDExOkludGVncmF0aW9uMQ== */
+ node_id?: string;
+ account:
+ | components["schemas"]["simple-user"]
+ | components["schemas"]["enterprise"];
+ requester: components["schemas"]["simple-user"];
+ /**
+ * Format: date-time
+ * @example 2022-07-08T16:18:44-04:00
+ */
+ created_at: string;
+ };
+ /**
+ * App Permissions
+ * @description The permissions granted to the user access token.
+ * @example {
+ * "contents": "read",
+ * "issues": "read",
+ * "deployments": "write",
+ * "single_file": "read"
+ * }
+ */
+ "app-permissions": {
+ /**
+ * @description The level of permission to grant the access token for GitHub Actions workflows, workflow runs, and artifacts.
+ * @enum {string}
+ */
+ actions?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token for repository creation, deletion, settings, teams, and collaborators creation.
+ * @enum {string}
+ */
+ administration?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token for checks on code.
+ * @enum {string}
+ */
+ checks?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token to create, edit, delete, and list Codespaces.
+ * @enum {string}
+ */
+ codespaces?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token for repository contents, commits, branches, downloads, releases, and merges.
+ * @enum {string}
+ */
+ contents?: "read" | "write";
+ /**
+ * @description The leve of permission to grant the access token to manage Dependabot secrets.
+ * @enum {string}
+ */
+ dependabot_secrets?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token for deployments and deployment statuses.
+ * @enum {string}
+ */
+ deployments?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token for managing repository environments.
+ * @enum {string}
+ */
+ environments?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token for issues and related comments, assignees, labels, and milestones.
+ * @enum {string}
+ */
+ issues?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token to search repositories, list collaborators, and access repository metadata.
+ * @enum {string}
+ */
+ metadata?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token for packages published to GitHub Packages.
+ * @enum {string}
+ */
+ packages?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token to retrieve Pages statuses, configuration, and builds, as well as create new builds.
+ * @enum {string}
+ */
+ pages?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token for pull requests and related comments, assignees, labels, milestones, and merges.
+ * @enum {string}
+ */
+ pull_requests?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token to view and edit custom properties for a repository, when allowed by the property.
+ * @enum {string}
+ */
+ repository_custom_properties?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token to manage the post-receive hooks for a repository.
+ * @enum {string}
+ */
+ repository_hooks?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token to manage repository projects, columns, and cards.
+ * @enum {string}
+ */
+ repository_projects?: "read" | "write" | "admin";
+ /**
+ * @description The level of permission to grant the access token to view and manage secret scanning alerts.
+ * @enum {string}
+ */
+ secret_scanning_alerts?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token to manage repository secrets.
+ * @enum {string}
+ */
+ secrets?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token to view and manage security events like code scanning alerts.
+ * @enum {string}
+ */
+ security_events?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token to manage just a single file.
+ * @enum {string}
+ */
+ single_file?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token for commit statuses.
+ * @enum {string}
+ */
+ statuses?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token to manage Dependabot alerts.
+ * @enum {string}
+ */
+ vulnerability_alerts?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token to update GitHub Actions workflow files.
+ * @enum {string}
+ */
+ workflows?: "write";
+ /**
+ * @description The level of permission to grant the access token for organization teams and members.
+ * @enum {string}
+ */
+ members?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token to manage access to an organization.
+ * @enum {string}
+ */
+ organization_administration?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token for custom repository roles management.
+ * @enum {string}
+ */
+ organization_custom_roles?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token for custom organization roles management.
+ * @enum {string}
+ */
+ organization_custom_org_roles?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token for custom property management.
+ * @enum {string}
+ */
+ organization_custom_properties?: "read" | "write" | "admin";
+ /**
+ * @description The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in beta and is subject to change.
+ * @enum {string}
+ */
+ organization_copilot_seat_management?: "write";
+ /**
+ * @description The level of permission to grant the access token to view and manage announcement banners for an organization.
+ * @enum {string}
+ */
+ organization_announcement_banners?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token to view events triggered by an activity in an organization.
+ * @enum {string}
+ */
+ organization_events?: "read";
+ /**
+ * @description The level of permission to grant the access token to manage the post-receive hooks for an organization.
+ * @enum {string}
+ */
+ organization_hooks?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token for viewing and managing fine-grained personal access token requests to an organization.
+ * @enum {string}
+ */
+ organization_personal_access_tokens?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token for viewing and managing fine-grained personal access tokens that have been approved by an organization.
+ * @enum {string}
+ */
+ organization_personal_access_token_requests?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token for viewing an organization's plan.
+ * @enum {string}
+ */
+ organization_plan?: "read";
+ /**
+ * @description The level of permission to grant the access token to manage organization projects and projects beta (where available).
+ * @enum {string}
+ */
+ organization_projects?: "read" | "write" | "admin";
+ /**
+ * @description The level of permission to grant the access token for organization packages published to GitHub Packages.
+ * @enum {string}
+ */
+ organization_packages?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token to manage organization secrets.
+ * @enum {string}
+ */
+ organization_secrets?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token to view and manage GitHub Actions self-hosted runners available to an organization.
+ * @enum {string}
+ */
+ organization_self_hosted_runners?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token to view and manage users blocked by the organization.
+ * @enum {string}
+ */
+ organization_user_blocking?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token to manage team discussions and related comments.
+ * @enum {string}
+ */
+ team_discussions?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token to manage the email addresses belonging to a user.
+ * @enum {string}
+ */
+ email_addresses?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token to manage the followers belonging to a user.
+ * @enum {string}
+ */
+ followers?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token to manage git SSH keys.
+ * @enum {string}
+ */
+ git_ssh_keys?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token to view and manage GPG keys belonging to a user.
+ * @enum {string}
+ */
+ gpg_keys?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token to view and manage interaction limits on a repository.
+ * @enum {string}
+ */
+ interaction_limits?: "read" | "write";
+ /**
+ * @description The level of permission to grant the access token to manage the profile settings belonging to a user.
+ * @enum {string}
+ */
+ profile?: "write";
+ /**
+ * @description The level of permission to grant the access token to list and manage repositories a user is starring.
+ * @enum {string}
+ */
+ starring?: "read" | "write";
+ };
+ /**
+ * Installation
+ * @description Installation
+ */
+ installation: {
+ /**
+ * @description The ID of the installation.
+ * @example 1
+ */
+ id: number;
+ account:
+ | (
+ | components["schemas"]["simple-user"]
+ | components["schemas"]["enterprise"]
+ )
+ | null;
+ /**
+ * @description Describe whether all repositories have been selected or there's a selection involved
+ * @enum {string}
+ */
+ repository_selection: "all" | "selected";
+ /**
+ * Format: uri
+ * @example https://api.github.com/app/installations/1/access_tokens
+ */
+ access_tokens_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/installation/repositories
+ */
+ repositories_url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/organizations/github/settings/installations/1
+ */
+ html_url: string;
+ /** @example 1 */
+ app_id: number;
+ /** @description The ID of the user or organization this token is being scoped to. */
+ target_id: number;
+ /** @example Organization */
+ target_type: string;
+ permissions: components["schemas"]["app-permissions"];
+ events: string[];
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** @example config.yaml */
+ single_file_name: string | null;
+ /** @example true */
+ has_multiple_single_files?: boolean;
+ /**
+ * @example [
+ * "config.yml",
+ * ".github/issue_TEMPLATE.md"
+ * ]
+ */
+ single_file_paths?: string[];
+ /** @example github-actions */
+ app_slug: string;
+ suspended_by: components["schemas"]["nullable-simple-user"];
+ /** Format: date-time */
+ suspended_at: string | null;
+ /** @example "test_13f1e99741e3e004@d7e1eb0bc0a1ba12.com" */
+ contact_email?: string | null;
+ };
+ /**
+ * License Simple
+ * @description License Simple
+ */
+ "nullable-license-simple": {
+ /** @example mit */
+ key: string;
+ /** @example MIT License */
+ name: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/licenses/mit
+ */
+ url: string | null;
+ /** @example MIT */
+ spdx_id: string | null;
+ /** @example MDc6TGljZW5zZW1pdA== */
+ node_id: string;
+ /** Format: uri */
+ html_url?: string;
+ } | null;
+ /**
+ * Repository
+ * @description A repository on GitHub.
+ */
+ repository: {
+ /**
+ * @description Unique identifier of the repository
+ * @example 42
+ */
+ id: number;
+ /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */
+ node_id: string;
+ /**
+ * @description The name of the repository.
+ * @example Team Environment
+ */
+ name: string;
+ /** @example octocat/Hello-World */
+ full_name: string;
+ license: components["schemas"]["nullable-license-simple"];
+ forks: number;
+ permissions?: {
+ admin: boolean;
+ pull: boolean;
+ triage?: boolean;
+ push: boolean;
+ maintain?: boolean;
+ };
+ owner: components["schemas"]["simple-user"];
+ /**
+ * @description Whether the repository is private or public.
+ * @default false
+ */
+ private: boolean;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World
+ */
+ html_url: string;
+ /** @example This your first repo! */
+ description: string | null;
+ fork: boolean;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World
+ */
+ url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref} */
+ archive_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/assignees{/user} */
+ assignees_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha} */
+ blobs_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/branches{/branch} */
+ branches_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator} */
+ collaborators_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/comments{/number} */
+ comments_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/commits{/sha} */
+ commits_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head} */
+ compare_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/contents/{+path} */
+ contents_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/contributors
+ */
+ contributors_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/deployments
+ */
+ deployments_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/downloads
+ */
+ downloads_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/events
+ */
+ events_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/forks
+ */
+ forks_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/commits{/sha} */
+ git_commits_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/refs{/sha} */
+ git_refs_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/tags{/sha} */
+ git_tags_url: string;
+ /** @example git:github.com/octocat/Hello-World.git */
+ git_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues/comments{/number} */
+ issue_comment_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues/events{/number} */
+ issue_events_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues{/number} */
+ issues_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/keys{/key_id} */
+ keys_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/labels{/name} */
+ labels_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/languages
+ */
+ languages_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/merges
+ */
+ merges_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/milestones{/number} */
+ milestones_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating} */
+ notifications_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/pulls{/number} */
+ pulls_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/releases{/id} */
+ releases_url: string;
+ /** @example git@github.com:octocat/Hello-World.git */
+ ssh_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/stargazers
+ */
+ stargazers_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/statuses/{sha} */
+ statuses_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/subscribers
+ */
+ subscribers_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/subscription
+ */
+ subscription_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/tags
+ */
+ tags_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/teams
+ */
+ teams_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/trees{/sha} */
+ trees_url: string;
+ /** @example https://github.com/octocat/Hello-World.git */
+ clone_url: string;
+ /**
+ * Format: uri
+ * @example git:git.example.com/octocat/Hello-World
+ */
+ mirror_url: string | null;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/hooks
+ */
+ hooks_url: string;
+ /**
+ * Format: uri
+ * @example https://svn.github.com/octocat/Hello-World
+ */
+ svn_url: string;
+ /**
+ * Format: uri
+ * @example https://github.com
+ */
+ homepage: string | null;
+ language: string | null;
+ /** @example 9 */
+ forks_count: number;
+ /** @example 80 */
+ stargazers_count: number;
+ /** @example 80 */
+ watchers_count: number;
+ /**
+ * @description The size of the repository, in kilobytes. Size is calculated hourly. When a repository is initially created, the size is 0.
+ * @example 108
+ */
+ size: number;
+ /**
+ * @description The default branch of the repository.
+ * @example master
+ */
+ default_branch: string;
+ /** @example 0 */
+ open_issues_count: number;
+ /**
+ * @description Whether this repository acts as a template that can be used to generate new repositories.
+ * @default false
+ * @example true
+ */
+ is_template?: boolean;
+ topics?: string[];
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ * @example true
+ */
+ has_issues: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ * @example true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ * @example true
+ */
+ has_wiki: boolean;
+ has_pages: boolean;
+ /**
+ * @deprecated
+ * @description Whether downloads are enabled.
+ * @default true
+ * @example true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ * @example true
+ */
+ has_discussions?: boolean;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** @description Returns whether or not this repository disabled. */
+ disabled: boolean;
+ /**
+ * @description The repository visibility: public, private, or internal.
+ * @default public
+ */
+ visibility?: string;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:06:43Z
+ */
+ pushed_at: string | null;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:01:12Z
+ */
+ created_at: string | null;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:14:43Z
+ */
+ updated_at: string | null;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ * @example true
+ */
+ allow_rebase_merge?: boolean;
+ temp_clone_token?: string;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ * @example true
+ */
+ allow_squash_merge?: boolean;
+ /**
+ * @description Whether to allow Auto-merge to be used on pull requests.
+ * @default false
+ * @example false
+ */
+ allow_auto_merge?: boolean;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ * @example false
+ */
+ delete_branch_on_merge?: boolean;
+ /**
+ * @description Whether or not a pull request head branch that is behind its base branch can always be updated even if it is not required to be up to date before merging.
+ * @default false
+ * @example false
+ */
+ allow_update_branch?: boolean;
+ /**
+ * @deprecated
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?: "PR_BODY" | "COMMIT_MESSAGES" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ * @example true
+ */
+ allow_merge_commit?: boolean;
+ /** @description Whether to allow forking this repo */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to require contributors to sign off on web-based commits
+ * @default false
+ */
+ web_commit_signoff_required?: boolean;
+ open_issues: number;
+ watchers: number;
+ master_branch?: string;
+ /** @example "2020-07-09T00:17:42Z" */
+ starred_at?: string;
+ /** @description Whether anonymous git access is enabled for this repository */
+ anonymous_access_enabled?: boolean;
+ };
+ /**
+ * Installation Token
+ * @description Authentication token for a GitHub App installed on a user or org.
+ */
+ "installation-token": {
+ token: string;
+ expires_at: string;
+ permissions?: components["schemas"]["app-permissions"];
+ /** @enum {string} */
+ repository_selection?: "all" | "selected";
+ repositories?: components["schemas"]["repository"][];
+ /** @example README.md */
+ single_file?: string;
+ /** @example true */
+ has_multiple_single_files?: boolean;
+ /**
+ * @example [
+ * "config.yml",
+ * ".github/issue_TEMPLATE.md"
+ * ]
+ */
+ single_file_paths?: string[];
+ };
+ /** Scoped Installation */
+ "nullable-scoped-installation": {
+ permissions: components["schemas"]["app-permissions"];
+ /**
+ * @description Describe whether all repositories have been selected or there's a selection involved
+ * @enum {string}
+ */
+ repository_selection: "all" | "selected";
+ /** @example config.yaml */
+ single_file_name: string | null;
+ /** @example true */
+ has_multiple_single_files?: boolean;
+ /**
+ * @example [
+ * "config.yml",
+ * ".github/issue_TEMPLATE.md"
+ * ]
+ */
+ single_file_paths?: string[];
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/repos
+ */
+ repositories_url: string;
+ account: components["schemas"]["simple-user"];
+ } | null;
+ /**
+ * Authorization
+ * @description The authorization for an OAuth app, GitHub App, or a Personal Access Token.
+ */
+ authorization: {
+ id: number;
+ /** Format: uri */
+ url: string;
+ /** @description A list of scopes that this authorization is in. */
+ scopes: string[] | null;
+ token: string;
+ token_last_eight: string | null;
+ hashed_token: string | null;
+ app: {
+ client_id: string;
+ name: string;
+ /** Format: uri */
+ url: string;
+ };
+ note: string | null;
+ /** Format: uri */
+ note_url: string | null;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: date-time */
+ created_at: string;
+ fingerprint: string | null;
+ user?: components["schemas"]["nullable-simple-user"];
+ installation?: components["schemas"]["nullable-scoped-installation"];
+ /** Format: date-time */
+ expires_at: string | null;
+ };
+ /**
+ * Simple Classroom Repository
+ * @description A GitHub repository view for Classroom
+ */
+ "simple-classroom-repository": {
+ /**
+ * @description A unique identifier of the repository.
+ * @example 1296269
+ */
+ id: number;
+ /**
+ * @description The full, globally unique name of the repository.
+ * @example octocat/Hello-World
+ */
+ full_name: string;
+ /**
+ * Format: uri
+ * @description The URL to view the repository on GitHub.com.
+ * @example https://github.com/octocat/Hello-World
+ */
+ html_url: string;
+ /**
+ * @description The GraphQL identifier of the repository.
+ * @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5
+ */
+ node_id: string;
+ /** @description Whether the repository is private. */
+ private: boolean;
+ /**
+ * @description The default branch for the repository.
+ * @example main
+ */
+ default_branch: string;
+ };
+ /**
+ * Organization Simple for Classroom
+ * @description A GitHub organization.
+ */
+ "simple-classroom-organization": {
+ /** @example 1 */
+ id: number;
+ /** @example github */
+ login: string;
+ /** @example MDEyOk9yZ2FuaXphdGlvbjE= */
+ node_id: string;
+ /**
+ * Format: uri
+ * @example https://github.com/github
+ */
+ html_url: string;
+ /** @example Github - Code thigns happen here */
+ name: string | null;
+ /** @example https://github.com/images/error/octocat_happy.gif */
+ avatar_url: string;
+ };
+ /**
+ * Classroom
+ * @description A GitHub Classroom classroom
+ */
+ classroom: {
+ /**
+ * @description Unique identifier of the classroom.
+ * @example 42
+ */
+ id: number;
+ /**
+ * @description The name of the classroom.
+ * @example Programming Elixir
+ */
+ name: string;
+ /**
+ * @description Whether classroom is archived.
+ * @example false
+ */
+ archived: boolean;
+ organization: components["schemas"]["simple-classroom-organization"];
+ /**
+ * @description The URL of the classroom on GitHub Classroom.
+ * @example https://classroom.github.com/classrooms/1-programming-elixir
+ */
+ url: string;
+ };
+ /**
+ * Classroom Assignment
+ * @description A GitHub Classroom assignment
+ */
+ "classroom-assignment": {
+ /**
+ * @description Unique identifier of the repository.
+ * @example 42
+ */
+ id: number;
+ /**
+ * @description Whether an accepted assignment creates a public repository.
+ * @example true
+ */
+ public_repo: boolean;
+ /**
+ * @description Assignment title.
+ * @example Intro to Binaries
+ */
+ title: string;
+ /**
+ * @description Whether it's a group assignment or individual assignment.
+ * @example individual
+ * @enum {string}
+ */
+ type: "individual" | "group";
+ /**
+ * @description The link that a student can use to accept the assignment.
+ * @example https://classroom.github.com/a/Lx7jiUgx
+ */
+ invite_link: string;
+ /**
+ * @description Whether the invitation link is enabled. Visiting an enabled invitation link will accept the assignment.
+ * @example true
+ */
+ invitations_enabled: boolean;
+ /**
+ * @description Sluggified name of the assignment.
+ * @example intro-to-binaries
+ */
+ slug: string;
+ /**
+ * @description Whether students are admins on created repository when a student accepts the assignment.
+ * @example true
+ */
+ students_are_repo_admins: boolean;
+ /**
+ * @description Whether feedback pull request will be created when a student accepts the assignment.
+ * @example true
+ */
+ feedback_pull_requests_enabled: boolean;
+ /**
+ * @description The maximum allowable teams for the assignment.
+ * @example 0
+ */
+ max_teams: number | null;
+ /**
+ * @description The maximum allowable members per team.
+ * @example 0
+ */
+ max_members: number | null;
+ /**
+ * @description The selected editor for the assignment.
+ * @example codespaces
+ */
+ editor: string;
+ /**
+ * @description The number of students that have accepted the assignment.
+ * @example 25
+ */
+ accepted: number;
+ /**
+ * @description The number of students that have submitted the assignment.
+ * @example 10
+ */
+ submitted: number;
+ /**
+ * @description The number of students that have passed the assignment.
+ * @example 10
+ */
+ passing: number;
+ /**
+ * @description The programming language used in the assignment.
+ * @example elixir
+ */
+ language: string;
+ /**
+ * Format: date-time
+ * @description The time at which the assignment is due.
+ * @example 2011-01-26T19:06:43Z
+ */
+ deadline: string | null;
+ starter_code_repository: components["schemas"]["simple-classroom-repository"];
+ classroom: components["schemas"]["classroom"];
+ };
+ /**
+ * Simple Classroom User
+ * @description A GitHub user simplified for Classroom.
+ */
+ "simple-classroom-user": {
+ /** @example 1 */
+ id: number;
+ /** @example octocat */
+ login: string;
+ /**
+ * Format: uri
+ * @example https://github.com/images/error/octocat_happy.gif
+ */
+ avatar_url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat
+ */
+ html_url: string;
+ };
+ /**
+ * Simple Classroom
+ * @description A GitHub Classroom classroom
+ */
+ "simple-classroom": {
+ /**
+ * @description Unique identifier of the classroom.
+ * @example 42
+ */
+ id: number;
+ /**
+ * @description The name of the classroom.
+ * @example Programming Elixir
+ */
+ name: string;
+ /**
+ * @description Returns whether classroom is archived or not.
+ * @example false
+ */
+ archived: boolean;
+ /**
+ * @description The url of the classroom on GitHub Classroom.
+ * @example https://classroom.github.com/classrooms/1-programming-elixir
+ */
+ url: string;
+ };
+ /**
+ * Simple Classroom Assignment
+ * @description A GitHub Classroom assignment
+ */
+ "simple-classroom-assignment": {
+ /**
+ * @description Unique identifier of the repository.
+ * @example 42
+ */
+ id: number;
+ /**
+ * @description Whether an accepted assignment creates a public repository.
+ * @example true
+ */
+ public_repo: boolean;
+ /**
+ * @description Assignment title.
+ * @example Intro to Binaries
+ */
+ title: string;
+ /**
+ * @description Whether it's a Group Assignment or Individual Assignment.
+ * @example individual
+ * @enum {string}
+ */
+ type: "individual" | "group";
+ /**
+ * @description The link that a student can use to accept the assignment.
+ * @example https://classroom.github.com/a/Lx7jiUgx
+ */
+ invite_link: string;
+ /**
+ * @description Whether the invitation link is enabled. Visiting an enabled invitation link will accept the assignment.
+ * @example true
+ */
+ invitations_enabled: boolean;
+ /**
+ * @description Sluggified name of the assignment.
+ * @example intro-to-binaries
+ */
+ slug: string;
+ /**
+ * @description Whether students are admins on created repository on accepted assignment.
+ * @example true
+ */
+ students_are_repo_admins: boolean;
+ /**
+ * @description Whether feedback pull request will be created on assignment acceptance.
+ * @example true
+ */
+ feedback_pull_requests_enabled: boolean;
+ /**
+ * @description The maximum allowable teams for the assignment.
+ * @example 0
+ */
+ max_teams?: number | null;
+ /**
+ * @description The maximum allowable members per team.
+ * @example 0
+ */
+ max_members?: number | null;
+ /**
+ * @description The selected editor for the assignment.
+ * @example codespaces
+ */
+ editor: string;
+ /**
+ * @description The number of students that have accepted the assignment.
+ * @example 25
+ */
+ accepted: number;
+ /**
+ * @description The number of students that have submitted the assignment.
+ * @example 10
+ */
+ submitted: number;
+ /**
+ * @description The number of students that have passed the assignment.
+ * @example 10
+ */
+ passing: number;
+ /**
+ * @description The programming language used in the assignment.
+ * @example elixir
+ */
+ language: string;
+ /**
+ * Format: date-time
+ * @description The time at which the assignment is due.
+ * @example 2011-01-26T19:06:43Z
+ */
+ deadline: string | null;
+ classroom: components["schemas"]["simple-classroom"];
+ };
+ /**
+ * Classroom Accepted Assignment
+ * @description A GitHub Classroom accepted assignment
+ */
+ "classroom-accepted-assignment": {
+ /**
+ * @description Unique identifier of the repository.
+ * @example 42
+ */
+ id: number;
+ /**
+ * @description Whether an accepted assignment has been submitted.
+ * @example true
+ */
+ submitted: boolean;
+ /**
+ * @description Whether a submission passed.
+ * @example true
+ */
+ passing: boolean;
+ /**
+ * @description Count of student commits.
+ * @example 5
+ */
+ commit_count: number;
+ /**
+ * @description Most recent grade.
+ * @example 10/10
+ */
+ grade: string;
+ students: components["schemas"]["simple-classroom-user"][];
+ repository: components["schemas"]["simple-classroom-repository"];
+ assignment: components["schemas"]["simple-classroom-assignment"];
+ };
+ /**
+ * Classroom Assignment Grade
+ * @description Grade for a student or groups GitHub Classroom assignment
+ */
+ "classroom-assignment-grade": {
+ /** @description Name of the assignment */
+ assignment_name: string;
+ /** @description URL of the assignment */
+ assignment_url: string;
+ /** @description URL of the starter code for the assignment */
+ starter_code_url: string;
+ /** @description GitHub username of the student */
+ github_username: string;
+ /** @description Roster identifier of the student */
+ roster_identifier: string;
+ /** @description Name of the student's assignment repository */
+ student_repository_name: string;
+ /** @description URL of the student's assignment repository */
+ student_repository_url: string;
+ /** @description Timestamp of the student's assignment submission */
+ submission_timestamp: string;
+ /** @description Number of points awarded to the student */
+ points_awarded: number;
+ /** @description Number of points available for the assignment */
+ points_available: number;
+ /** @description If a group assignment, name of the group the student is in */
+ group_name?: string;
+ };
+ /**
+ * Code Of Conduct
+ * @description Code Of Conduct
+ */
+ "code-of-conduct": {
+ /** @example contributor_covenant */
+ key: string;
+ /** @example Contributor Covenant */
+ name: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/codes_of_conduct/contributor_covenant
+ */
+ url: string;
+ /**
+ * @example # Contributor Covenant Code of Conduct
+ *
+ * ## Our Pledge
+ *
+ * In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
+ *
+ * ## Our Standards
+ *
+ * Examples of behavior that contributes to creating a positive environment include:
+ *
+ * * Using welcoming and inclusive language
+ * * Being respectful of differing viewpoints and experiences
+ * * Gracefully accepting constructive criticism
+ * * Focusing on what is best for the community
+ * * Showing empathy towards other community members
+ *
+ * Examples of unacceptable behavior by participants include:
+ *
+ * * The use of sexualized language or imagery and unwelcome sexual attention or advances
+ * * Trolling, insulting/derogatory comments, and personal or political attacks
+ * * Public or private harassment
+ * * Publishing others' private information, such as a physical or electronic address, without explicit permission
+ * * Other conduct which could reasonably be considered inappropriate in a professional setting
+ *
+ * ## Our Responsibilities
+ *
+ * Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response
+ * to any instances of unacceptable behavior.
+ *
+ * Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
+ *
+ * ## Scope
+ *
+ * This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address,
+ * posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
+ *
+ * ## Enforcement
+ *
+ * Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [EMAIL]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
+ *
+ * Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
+ *
+ * ## Attribution
+ *
+ * This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.4, available at [http://contributor-covenant.org/version/1/4](http://contributor-covenant.org/version/1/4/).
+ */
+ body?: string;
+ /** Format: uri */
+ html_url: string | null;
+ };
+ /**
+ * Copilot Usage Metrics
+ * @description Summary of Copilot usage.
+ */
+ "copilot-usage-metrics": {
+ /**
+ * Format: date
+ * @description The date for which the usage metrics are reported, in `YYYY-MM-DD` format.
+ */
+ day: string;
+ /** @description The total number of Copilot code completion suggestions shown to users. */
+ total_suggestions_count?: number;
+ /** @description The total number of Copilot code completion suggestions accepted by users. */
+ total_acceptances_count?: number;
+ /** @description The total number of lines of code completions suggested by Copilot. */
+ total_lines_suggested?: number;
+ /** @description The total number of lines of code completions accepted by users. */
+ total_lines_accepted?: number;
+ /** @description The total number of users who were shown Copilot code completion suggestions during the day specified. */
+ total_active_users?: number;
+ /** @description The total instances of users who accepted code suggested by Copilot Chat in the IDE (panel and inline). */
+ total_chat_acceptances?: number;
+ /** @description The total number of chat turns (prompt and response pairs) sent between users and Copilot Chat in the IDE. */
+ total_chat_turns?: number;
+ /** @description The total number of users who interacted with Copilot Chat in the IDE during the day specified. */
+ total_active_chat_users?: number;
+ /** @description Breakdown of Copilot code completions usage by language and editor */
+ breakdown:
+ | {
+ /** @description The language in which Copilot suggestions were shown to users in the specified editor. */
+ language?: string;
+ /** @description The editor in which Copilot suggestions were shown to users for the specified language. */
+ editor?: string;
+ /** @description The number of Copilot suggestions shown to users in the editor specified during the day specified. */
+ suggestions_count?: number;
+ /** @description The number of Copilot suggestions accepted by users in the editor specified during the day specified. */
+ acceptances_count?: number;
+ /** @description The number of lines of code suggested by Copilot in the editor specified during the day specified. */
+ lines_suggested?: number;
+ /** @description The number of lines of code accepted by users in the editor specified during the day specified. */
+ lines_accepted?: number;
+ /** @description The number of users who were shown Copilot completion suggestions in the editor specified during the day specified. */
+ active_users?: number;
+ [key: string]: unknown;
+ }[]
+ | null;
+ };
+ /** @description The security alert number. */
+ readonly "alert-number": number;
+ /** @description Details for the vulnerable package. */
+ readonly "dependabot-alert-package": {
+ /** @description The package's language or package management ecosystem. */
+ readonly ecosystem: string;
+ /** @description The unique package name within its ecosystem. */
+ readonly name: string;
+ };
+ /** @description Details pertaining to one vulnerable version range for the advisory. */
+ readonly "dependabot-alert-security-vulnerability": {
+ readonly package: components["schemas"]["dependabot-alert-package"];
+ /**
+ * @description The severity of the vulnerability.
+ * @enum {string}
+ */
+ readonly severity: "low" | "medium" | "high" | "critical";
+ /** @description Conditions that identify vulnerable versions of this vulnerability's package. */
+ readonly vulnerable_version_range: string;
+ /** @description Details pertaining to the package version that patches this vulnerability. */
+ readonly first_patched_version: {
+ /** @description The package version that patches this vulnerability. */
+ readonly identifier: string;
+ } | null;
+ };
+ /** @description Details for the GitHub Security Advisory. */
+ readonly "dependabot-alert-security-advisory": {
+ /** @description The unique GitHub Security Advisory ID assigned to the advisory. */
+ readonly ghsa_id: string;
+ /** @description The unique CVE ID assigned to the advisory. */
+ readonly cve_id: string | null;
+ /** @description A short, plain text summary of the advisory. */
+ readonly summary: string;
+ /** @description A long-form Markdown-supported description of the advisory. */
+ readonly description: string;
+ /** @description Vulnerable version range information for the advisory. */
+ readonly vulnerabilities: readonly components["schemas"]["dependabot-alert-security-vulnerability"][];
+ /**
+ * @description The severity of the advisory.
+ * @enum {string}
+ */
+ readonly severity: "low" | "medium" | "high" | "critical";
+ /** @description Details for the advisory pertaining to the Common Vulnerability Scoring System. */
+ readonly cvss: {
+ /** @description The overall CVSS score of the advisory. */
+ readonly score: number;
+ /** @description The full CVSS vector string for the advisory. */
+ readonly vector_string: string | null;
+ };
+ /** @description Details for the advisory pertaining to Common Weakness Enumeration. */
+ readonly cwes: readonly {
+ /** @description The unique CWE ID. */
+ readonly cwe_id: string;
+ /** @description The short, plain text name of the CWE. */
+ readonly name: string;
+ }[];
+ /** @description Values that identify this advisory among security information sources. */
+ readonly identifiers: readonly {
+ /**
+ * @description The type of advisory identifier.
+ * @enum {string}
+ */
+ readonly type: "CVE" | "GHSA";
+ /** @description The value of the advisory identifer. */
+ readonly value: string;
+ }[];
+ /** @description Links to additional advisory information. */
+ readonly references: readonly {
+ /**
+ * Format: uri
+ * @description The URL of the reference.
+ */
+ readonly url: string;
+ }[];
+ /**
+ * Format: date-time
+ * @description The time that the advisory was published in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.
+ */
+ readonly published_at: string;
+ /**
+ * Format: date-time
+ * @description The time that the advisory was last modified in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.
+ */
+ readonly updated_at: string;
+ /**
+ * Format: date-time
+ * @description The time that the advisory was withdrawn in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.
+ */
+ readonly withdrawn_at: string | null;
+ };
+ /**
+ * Format: uri
+ * @description The REST API URL of the alert resource.
+ */
+ readonly "alert-url": string;
+ /**
+ * Format: uri
+ * @description The GitHub URL of the alert resource.
+ */
+ readonly "alert-html-url": string;
+ /**
+ * Format: date-time
+ * @description The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.
+ */
+ readonly "alert-created-at": string;
+ /**
+ * Format: date-time
+ * @description The time that the alert was last updated in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.
+ */
+ readonly "alert-updated-at": string;
+ /**
+ * Format: date-time
+ * @description The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.
+ */
+ readonly "alert-dismissed-at": string | null;
+ /**
+ * Format: date-time
+ * @description The time that the alert was no longer detected and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.
+ */
+ readonly "alert-fixed-at": string | null;
+ /**
+ * Format: date-time
+ * @description The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.
+ */
+ readonly "alert-auto-dismissed-at": string | null;
+ /**
+ * Simple Repository
+ * @description A GitHub repository.
+ */
+ "simple-repository": {
+ /**
+ * @description A unique identifier of the repository.
+ * @example 1296269
+ */
+ id: number;
+ /**
+ * @description The GraphQL identifier of the repository.
+ * @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5
+ */
+ node_id: string;
+ /**
+ * @description The name of the repository.
+ * @example Hello-World
+ */
+ name: string;
+ /**
+ * @description The full, globally unique, name of the repository.
+ * @example octocat/Hello-World
+ */
+ full_name: string;
+ owner: components["schemas"]["simple-user"];
+ /** @description Whether the repository is private. */
+ private: boolean;
+ /**
+ * Format: uri
+ * @description The URL to view the repository on GitHub.com.
+ * @example https://github.com/octocat/Hello-World
+ */
+ html_url: string;
+ /**
+ * @description The repository description.
+ * @example This your first repo!
+ */
+ description: string | null;
+ /** @description Whether the repository is a fork. */
+ fork: boolean;
+ /**
+ * Format: uri
+ * @description The URL to get more information about the repository from the GitHub API.
+ * @example https://api.github.com/repos/octocat/Hello-World
+ */
+ url: string;
+ /**
+ * @description A template for the API URL to download the repository as an archive.
+ * @example https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}
+ */
+ archive_url: string;
+ /**
+ * @description A template for the API URL to list the available assignees for issues in the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/assignees{/user}
+ */
+ assignees_url: string;
+ /**
+ * @description A template for the API URL to create or retrieve a raw Git blob in the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}
+ */
+ blobs_url: string;
+ /**
+ * @description A template for the API URL to get information about branches in the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/branches{/branch}
+ */
+ branches_url: string;
+ /**
+ * @description A template for the API URL to get information about collaborators of the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}
+ */
+ collaborators_url: string;
+ /**
+ * @description A template for the API URL to get information about comments on the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/comments{/number}
+ */
+ comments_url: string;
+ /**
+ * @description A template for the API URL to get information about commits on the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/commits{/sha}
+ */
+ commits_url: string;
+ /**
+ * @description A template for the API URL to compare two commits or refs.
+ * @example https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}
+ */
+ compare_url: string;
+ /**
+ * @description A template for the API URL to get the contents of the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/contents/{+path}
+ */
+ contents_url: string;
+ /**
+ * Format: uri
+ * @description A template for the API URL to list the contributors to the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/contributors
+ */
+ contributors_url: string;
+ /**
+ * Format: uri
+ * @description The API URL to list the deployments of the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/deployments
+ */
+ deployments_url: string;
+ /**
+ * Format: uri
+ * @description The API URL to list the downloads on the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/downloads
+ */
+ downloads_url: string;
+ /**
+ * Format: uri
+ * @description The API URL to list the events of the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/events
+ */
+ events_url: string;
+ /**
+ * Format: uri
+ * @description The API URL to list the forks of the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/forks
+ */
+ forks_url: string;
+ /**
+ * @description A template for the API URL to get information about Git commits of the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}
+ */
+ git_commits_url: string;
+ /**
+ * @description A template for the API URL to get information about Git refs of the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}
+ */
+ git_refs_url: string;
+ /**
+ * @description A template for the API URL to get information about Git tags of the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}
+ */
+ git_tags_url: string;
+ /**
+ * @description A template for the API URL to get information about issue comments on the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}
+ */
+ issue_comment_url: string;
+ /**
+ * @description A template for the API URL to get information about issue events on the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/issues/events{/number}
+ */
+ issue_events_url: string;
+ /**
+ * @description A template for the API URL to get information about issues on the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/issues{/number}
+ */
+ issues_url: string;
+ /**
+ * @description A template for the API URL to get information about deploy keys on the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/keys{/key_id}
+ */
+ keys_url: string;
+ /**
+ * @description A template for the API URL to get information about labels of the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/labels{/name}
+ */
+ labels_url: string;
+ /**
+ * Format: uri
+ * @description The API URL to get information about the languages of the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/languages
+ */
+ languages_url: string;
+ /**
+ * Format: uri
+ * @description The API URL to merge branches in the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/merges
+ */
+ merges_url: string;
+ /**
+ * @description A template for the API URL to get information about milestones of the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/milestones{/number}
+ */
+ milestones_url: string;
+ /**
+ * @description A template for the API URL to get information about notifications on the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}
+ */
+ notifications_url: string;
+ /**
+ * @description A template for the API URL to get information about pull requests on the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/pulls{/number}
+ */
+ pulls_url: string;
+ /**
+ * @description A template for the API URL to get information about releases on the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/releases{/id}
+ */
+ releases_url: string;
+ /**
+ * Format: uri
+ * @description The API URL to list the stargazers on the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/stargazers
+ */
+ stargazers_url: string;
+ /**
+ * @description A template for the API URL to get information about statuses of a commit.
+ * @example https://api.github.com/repos/octocat/Hello-World/statuses/{sha}
+ */
+ statuses_url: string;
+ /**
+ * Format: uri
+ * @description The API URL to list the subscribers on the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/subscribers
+ */
+ subscribers_url: string;
+ /**
+ * Format: uri
+ * @description The API URL to subscribe to notifications for this repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/subscription
+ */
+ subscription_url: string;
+ /**
+ * Format: uri
+ * @description The API URL to get information about tags on the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/tags
+ */
+ tags_url: string;
+ /**
+ * Format: uri
+ * @description The API URL to list the teams on the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/teams
+ */
+ teams_url: string;
+ /**
+ * @description A template for the API URL to create or retrieve a raw Git tree of the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}
+ */
+ trees_url: string;
+ /**
+ * Format: uri
+ * @description The API URL to list the hooks on the repository.
+ * @example https://api.github.com/repos/octocat/Hello-World/hooks
+ */
+ hooks_url: string;
+ };
+ /** @description A Dependabot alert. */
+ "dependabot-alert-with-repository": {
+ number: components["schemas"]["alert-number"];
+ /**
+ * @description The state of the Dependabot alert.
+ * @enum {string}
+ */
+ state: "auto_dismissed" | "dismissed" | "fixed" | "open";
+ /** @description Details for the vulnerable dependency. */
+ dependency: {
+ readonly package?: components["schemas"]["dependabot-alert-package"];
+ /** @description The full path to the dependency manifest file, relative to the root of the repository. */
+ readonly manifest_path?: string;
+ /**
+ * @description The execution scope of the vulnerable dependency.
+ * @enum {string|null}
+ */
+ readonly scope?: "development" | "runtime" | null;
+ };
+ security_advisory: components["schemas"]["dependabot-alert-security-advisory"];
+ security_vulnerability: components["schemas"]["dependabot-alert-security-vulnerability"];
+ url: components["schemas"]["alert-url"];
+ html_url: components["schemas"]["alert-html-url"];
+ created_at: components["schemas"]["alert-created-at"];
+ updated_at: components["schemas"]["alert-updated-at"];
+ dismissed_at: components["schemas"]["alert-dismissed-at"];
+ dismissed_by: components["schemas"]["nullable-simple-user"];
+ /**
+ * @description The reason that the alert was dismissed.
+ * @enum {string|null}
+ */
+ dismissed_reason:
+ | "fix_started"
+ | "inaccurate"
+ | "no_bandwidth"
+ | "not_used"
+ | "tolerable_risk"
+ | null;
+ /** @description An optional comment associated with the alert's dismissal. */
+ dismissed_comment: string | null;
+ fixed_at: components["schemas"]["alert-fixed-at"];
+ auto_dismissed_at?: components["schemas"]["alert-auto-dismissed-at"];
+ repository: components["schemas"]["simple-repository"];
+ };
+ /**
+ * Format: date-time
+ * @description The time that the alert was last updated in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.
+ */
+ readonly "nullable-alert-updated-at": string | null;
+ /**
+ * @description Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`.
+ * @enum {string}
+ */
+ "secret-scanning-alert-state": "open" | "resolved";
+ /**
+ * @description **Required when the `state` is `resolved`.** The reason for resolving the alert.
+ * @enum {string|null}
+ */
+ "secret-scanning-alert-resolution":
+ | "false_positive"
+ | "wont_fix"
+ | "revoked"
+ | "used_in_tests"
+ | null;
+ "organization-secret-scanning-alert": {
+ number?: components["schemas"]["alert-number"];
+ created_at?: components["schemas"]["alert-created-at"];
+ updated_at?: components["schemas"]["nullable-alert-updated-at"];
+ url?: components["schemas"]["alert-url"];
+ html_url?: components["schemas"]["alert-html-url"];
+ /**
+ * Format: uri
+ * @description The REST API URL of the code locations for this alert.
+ */
+ locations_url?: string;
+ state?: components["schemas"]["secret-scanning-alert-state"];
+ resolution?: components["schemas"]["secret-scanning-alert-resolution"];
+ /**
+ * Format: date-time
+ * @description The time that the alert was resolved in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.
+ */
+ resolved_at?: string | null;
+ resolved_by?: components["schemas"]["nullable-simple-user"];
+ /** @description The type of secret that secret scanning detected. */
+ secret_type?: string;
+ /**
+ * @description User-friendly name for the detected secret, matching the `secret_type`.
+ * For a list of built-in patterns, see "[Secret scanning patterns](https://docs.github.com/code-security/secret-scanning/secret-scanning-patterns#supported-secrets-for-advanced-security)."
+ */
+ secret_type_display_name?: string;
+ /** @description The secret that was detected. */
+ secret?: string;
+ repository?: components["schemas"]["simple-repository"];
+ /** @description Whether push protection was bypassed for the detected secret. */
+ push_protection_bypassed?: boolean | null;
+ push_protection_bypassed_by?: components["schemas"]["nullable-simple-user"];
+ /**
+ * Format: date-time
+ * @description The time that push protection was bypassed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.
+ */
+ push_protection_bypassed_at?: string | null;
+ /** @description The comment that was optionally added when this alert was closed */
+ resolution_comment?: string | null;
+ /**
+ * @description The token status as of the latest validity check.
+ * @enum {string}
+ */
+ validity?: "active" | "inactive" | "unknown";
+ };
+ /**
+ * Actor
+ * @description Actor
+ */
+ actor: {
+ id: number;
+ login: string;
+ display_login?: string;
+ gravatar_id: string | null;
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ avatar_url: string;
+ };
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ "nullable-milestone": {
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/milestones/1
+ */
+ url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World/milestones/v1.0
+ */
+ html_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/milestones/1/labels
+ */
+ labels_url: string;
+ /** @example 1002604 */
+ id: number;
+ /** @example MDk6TWlsZXN0b25lMTAwMjYwNA== */
+ node_id: string;
+ /**
+ * @description The number of the milestone.
+ * @example 42
+ */
+ number: number;
+ /**
+ * @description The state of the milestone.
+ * @default open
+ * @example open
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /**
+ * @description The title of the milestone.
+ * @example v1.0
+ */
+ title: string;
+ /** @example Tracking milestone for version 1.0 */
+ description: string | null;
+ creator: components["schemas"]["nullable-simple-user"];
+ /** @example 4 */
+ open_issues: number;
+ /** @example 8 */
+ closed_issues: number;
+ /**
+ * Format: date-time
+ * @example 2011-04-10T20:09:31Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2014-03-03T18:58:10Z
+ */
+ updated_at: string;
+ /**
+ * Format: date-time
+ * @example 2013-02-12T13:22:01Z
+ */
+ closed_at: string | null;
+ /**
+ * Format: date-time
+ * @example 2012-10-09T23:39:01Z
+ */
+ due_on: string | null;
+ } | null;
+ /**
+ * GitHub app
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ "nullable-integration": {
+ /**
+ * @description Unique identifier of the GitHub app
+ * @example 37
+ */
+ id: number;
+ /**
+ * @description The slug name of the GitHub app
+ * @example probot-owners
+ */
+ slug?: string;
+ /** @example MDExOkludGVncmF0aW9uMQ== */
+ node_id: string;
+ owner: components["schemas"]["nullable-simple-user"];
+ /**
+ * @description The name of the GitHub app
+ * @example Probot Owners
+ */
+ name: string;
+ /** @example The description of the app. */
+ description: string | null;
+ /**
+ * Format: uri
+ * @example https://example.com
+ */
+ external_url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/apps/super-ci
+ */
+ html_url: string;
+ /**
+ * Format: date-time
+ * @example 2017-07-08T16:18:44-04:00
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2017-07-08T16:18:44-04:00
+ */
+ updated_at: string;
+ /**
+ * @description The set of permissions for the GitHub app
+ * @example {
+ * "issues": "read",
+ * "deployments": "write"
+ * }
+ */
+ permissions: {
+ issues?: string;
+ checks?: string;
+ metadata?: string;
+ contents?: string;
+ deployments?: string;
+ [key: string]: string | undefined;
+ };
+ /**
+ * @description The list of events for the GitHub app
+ * @example [
+ * "label",
+ * "deployment"
+ * ]
+ */
+ events: string[];
+ /**
+ * @description The number of installations associated with the GitHub app
+ * @example 5
+ */
+ installations_count?: number;
+ /** @example "Iv1.25b5d1e65ffc4022" */
+ client_id?: string;
+ /** @example "1d4b2097ac622ba702d19de498f005747a8b21d3" */
+ client_secret?: string;
+ /** @example "6fba8f2fc8a7e8f2cca5577eddd82ca7586b3b6b" */
+ webhook_secret?: string | null;
+ /** @example "-----BEGIN RSA PRIVATE KEY-----\nMIIEogIBAAKCAQEArYxrNYD/iT5CZVpRJu4rBKmmze3PVmT/gCo2ATUvDvZTPTey\nxcGJ3vvrJXazKk06pN05TN29o98jrYz4cengG3YGsXPNEpKsIrEl8NhbnxapEnM9\nJCMRe0P5JcPsfZlX6hmiT7136GRWiGOUba2X9+HKh8QJVLG5rM007TBER9/z9mWm\nrJuNh+m5l320oBQY/Qq3A7wzdEfZw8qm/mIN0FCeoXH1L6B8xXWaAYBwhTEh6SSn\nZHlO1Xu1JWDmAvBCi0RO5aRSKM8q9QEkvvHP4yweAtK3N8+aAbZ7ovaDhyGz8r6r\nzhU1b8Uo0Z2ysf503WqzQgIajr7Fry7/kUwpgQIDAQABAoIBADwJp80Ko1xHPZDy\nfcCKBDfIuPvkmSW6KumbsLMaQv1aGdHDwwTGv3t0ixSay8CGlxMRtRDyZPib6SvQ\n6OH/lpfpbMdW2ErkksgtoIKBVrDilfrcAvrNZu7NxRNbhCSvN8q0s4ICecjbbVQh\nnueSdlA6vGXbW58BHMq68uRbHkP+k+mM9U0mDJ1HMch67wlg5GbayVRt63H7R2+r\nVxcna7B80J/lCEjIYZznawgiTvp3MSanTglqAYi+m1EcSsP14bJIB9vgaxS79kTu\noiSo93leJbBvuGo8QEiUqTwMw4tDksmkLsoqNKQ1q9P7LZ9DGcujtPy4EZsamSJT\ny8OJt0ECgYEA2lxOxJsQk2kI325JgKFjo92mQeUObIvPfSNWUIZQDTjniOI6Gv63\nGLWVFrZcvQBWjMEQraJA9xjPbblV8PtfO87MiJGLWCHFxmPz2dzoedN+2Coxom8m\nV95CLz8QUShuao6u/RYcvUaZEoYs5bHcTmy5sBK80JyEmafJPtCQVxMCgYEAy3ar\nZr3yv4xRPEPMat4rseswmuMooSaK3SKub19WFI5IAtB/e7qR1Rj9JhOGcZz+OQrl\nT78O2OFYlgOIkJPvRMrPpK5V9lslc7tz1FSh3BZMRGq5jSyD7ETSOQ0c8T2O/s7v\nbeEPbVbDe4mwvM24XByH0GnWveVxaDl51ABD65sCgYB3ZAspUkOA5egVCh8kNpnd\nSd6SnuQBE3ySRlT2WEnCwP9Ph6oPgn+oAfiPX4xbRqkL8q/k0BdHQ4h+zNwhk7+h\nWtPYRAP1Xxnc/F+jGjb+DVaIaKGU18MWPg7f+FI6nampl3Q0KvfxwX0GdNhtio8T\nTj1E+SnFwh56SRQuxSh2gwKBgHKjlIO5NtNSflsUYFM+hyQiPiqnHzddfhSG+/3o\nm5nNaSmczJesUYreH5San7/YEy2UxAugvP7aSY2MxB+iGsiJ9WD2kZzTUlDZJ7RV\nUzWsoqBR+eZfVJ2FUWWvy8TpSG6trh4dFxImNtKejCR1TREpSiTV3Zb1dmahK9GV\nrK9NAoGAbBxRLoC01xfxCTgt5BDiBcFVh4fp5yYKwavJPLzHSpuDOrrI9jDn1oKN\nonq5sDU1i391zfQvdrbX4Ova48BN+B7p63FocP/MK5tyyBoT8zQEk2+vWDOw7H/Z\nu5dTCPxTIsoIwUw1I+7yIxqJzLPFgR2gVBwY1ra/8iAqCj+zeBw=\n-----END RSA PRIVATE KEY-----\n" */
+ pem?: string;
+ } | null;
+ /**
+ * author_association
+ * @description How the author is associated with the repository.
+ * @example OWNER
+ * @enum {string}
+ */
+ "author-association":
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** Reaction Rollup */
+ "reaction-rollup": {
+ /** Format: uri */
+ url: string;
+ total_count: number;
+ "+1": number;
+ "-1": number;
+ laugh: number;
+ confused: number;
+ heart: number;
+ hooray: number;
+ eyes: number;
+ rocket: number;
+ };
+ /**
+ * Issue
+ * @description Issues are a great way to keep track of tasks, enhancements, and bugs for your projects.
+ */
+ issue: {
+ /** Format: int64 */
+ id: number;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the issue
+ * @example https://api.github.com/repositories/42/issues/1
+ */
+ url: string;
+ /** Format: uri */
+ repository_url: string;
+ labels_url: string;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: uri */
+ events_url: string;
+ /** Format: uri */
+ html_url: string;
+ /**
+ * @description Number uniquely identifying the issue within its repository
+ * @example 42
+ */
+ number: number;
+ /**
+ * @description State of the issue; either 'open' or 'closed'
+ * @example open
+ */
+ state: string;
+ /**
+ * @description The reason for the current state
+ * @example not_planned
+ * @enum {string|null}
+ */
+ state_reason?: "completed" | "reopened" | "not_planned" | null;
+ /**
+ * @description Title of the issue
+ * @example Widget creation fails in Safari on OS X 10.8
+ */
+ title: string;
+ /**
+ * @description Contents of the issue
+ * @example It looks like the new widget form is broken on Safari. When I try and create the widget, Safari crashes. This is reproducible on 10.8, but not 10.9. Maybe a browser bug?
+ */
+ body?: string | null;
+ user: components["schemas"]["nullable-simple-user"];
+ /**
+ * @description Labels to associate with this issue; pass one or more label names to replace the set of labels on this issue; send an empty array to clear all labels from the issue; note that the labels are silently dropped for users without push access to the repository
+ * @example [
+ * "bug",
+ * "registration"
+ * ]
+ */
+ labels: OneOf<
+ [
+ string,
+ {
+ /** Format: int64 */
+ id?: number;
+ node_id?: string;
+ /** Format: uri */
+ url?: string;
+ name?: string;
+ description?: string | null;
+ color?: string | null;
+ default?: boolean;
+ },
+ ]
+ >[];
+ assignee: components["schemas"]["nullable-simple-user"];
+ assignees?: components["schemas"]["simple-user"][] | null;
+ milestone: components["schemas"]["nullable-milestone"];
+ locked: boolean;
+ active_lock_reason?: string | null;
+ comments: number;
+ pull_request?: {
+ /** Format: date-time */
+ merged_at?: string | null;
+ /** Format: uri */
+ diff_url: string | null;
+ /** Format: uri */
+ html_url: string | null;
+ /** Format: uri */
+ patch_url: string | null;
+ /** Format: uri */
+ url: string | null;
+ };
+ /** Format: date-time */
+ closed_at: string | null;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ draft?: boolean;
+ closed_by?: components["schemas"]["nullable-simple-user"];
+ body_html?: string;
+ body_text?: string;
+ /** Format: uri */
+ timeline_url?: string;
+ repository?: components["schemas"]["repository"];
+ performed_via_github_app?: components["schemas"]["nullable-integration"];
+ author_association: components["schemas"]["author-association"];
+ reactions?: components["schemas"]["reaction-rollup"];
+ };
+ /**
+ * Issue Comment
+ * @description Comments provide a way for people to collaborate on an issue.
+ */
+ "issue-comment": {
+ /**
+ * Format: int64
+ * @description Unique identifier of the issue comment
+ * @example 42
+ */
+ id: number;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the issue comment
+ * @example https://api.github.com/repositories/42/issues/comments/1
+ */
+ url: string;
+ /**
+ * @description Contents of the issue comment
+ * @example What version of Safari were you using when you observed this bug?
+ */
+ body?: string;
+ body_text?: string;
+ body_html?: string;
+ /** Format: uri */
+ html_url: string;
+ user: components["schemas"]["nullable-simple-user"];
+ /**
+ * Format: date-time
+ * @example 2011-04-14T16:00:49Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2011-04-14T16:00:49Z
+ */
+ updated_at: string;
+ /** Format: uri */
+ issue_url: string;
+ author_association: components["schemas"]["author-association"];
+ performed_via_github_app?: components["schemas"]["nullable-integration"];
+ reactions?: components["schemas"]["reaction-rollup"];
+ };
+ /**
+ * Event
+ * @description Event
+ */
+ event: {
+ id: string;
+ type: string | null;
+ actor: components["schemas"]["actor"];
+ repo: {
+ id: number;
+ name: string;
+ /** Format: uri */
+ url: string;
+ };
+ org?: components["schemas"]["actor"];
+ payload: {
+ action?: string;
+ issue?: components["schemas"]["issue"];
+ comment?: components["schemas"]["issue-comment"];
+ pages?: {
+ page_name?: string;
+ title?: string;
+ summary?: string | null;
+ action?: string;
+ sha?: string;
+ html_url?: string;
+ }[];
+ };
+ public: boolean;
+ /** Format: date-time */
+ created_at: string | null;
+ };
+ /**
+ * Link With Type
+ * @description Hypermedia Link with Type
+ */
+ "link-with-type": {
+ href: string;
+ type: string;
+ };
+ /**
+ * Feed
+ * @description Feed
+ */
+ feed: {
+ /** @example https://github.com/timeline */
+ timeline_url: string;
+ /** @example https://github.com/{user} */
+ user_url: string;
+ /** @example https://github.com/octocat */
+ current_user_public_url?: string;
+ /** @example https://github.com/octocat.private?token=abc123 */
+ current_user_url?: string;
+ /** @example https://github.com/octocat.private.actor?token=abc123 */
+ current_user_actor_url?: string;
+ /** @example https://github.com/octocat-org */
+ current_user_organization_url?: string;
+ /**
+ * @example [
+ * "https://github.com/organizations/github/octocat.private.atom?token=abc123"
+ * ]
+ */
+ current_user_organization_urls?: string[];
+ /** @example https://github.com/security-advisories */
+ security_advisories_url?: string;
+ /**
+ * @description A feed of discussions for a given repository.
+ * @example https://github.com/{user}/{repo}/discussions
+ */
+ repository_discussions_url?: string;
+ /**
+ * @description A feed of discussions for a given repository and category.
+ * @example https://github.com/{user}/{repo}/discussions/categories/{category}
+ */
+ repository_discussions_category_url?: string;
+ _links: {
+ timeline: components["schemas"]["link-with-type"];
+ user: components["schemas"]["link-with-type"];
+ security_advisories?: components["schemas"]["link-with-type"];
+ current_user?: components["schemas"]["link-with-type"];
+ current_user_public?: components["schemas"]["link-with-type"];
+ current_user_actor?: components["schemas"]["link-with-type"];
+ current_user_organization?: components["schemas"]["link-with-type"];
+ current_user_organizations?: components["schemas"]["link-with-type"][];
+ repository_discussions?: components["schemas"]["link-with-type"];
+ repository_discussions_category?: components["schemas"]["link-with-type"];
+ };
+ };
+ /**
+ * Base Gist
+ * @description Base Gist
+ */
+ "base-gist": {
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ forks_url: string;
+ /** Format: uri */
+ commits_url: string;
+ id: string;
+ node_id: string;
+ /** Format: uri */
+ git_pull_url: string;
+ /** Format: uri */
+ git_push_url: string;
+ /** Format: uri */
+ html_url: string;
+ files: {
+ [key: string]: {
+ filename?: string;
+ type?: string;
+ language?: string;
+ raw_url?: string;
+ size?: number;
+ };
+ };
+ public: boolean;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ description: string | null;
+ comments: number;
+ user: components["schemas"]["nullable-simple-user"];
+ /** Format: uri */
+ comments_url: string;
+ owner?: components["schemas"]["simple-user"];
+ truncated?: boolean;
+ forks?: unknown[];
+ history?: unknown[];
+ };
+ /**
+ * Public User
+ * @description Public User
+ */
+ "public-user": {
+ login: string;
+ id: number;
+ node_id: string;
+ /** Format: uri */
+ avatar_url: string;
+ gravatar_id: string | null;
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ html_url: string;
+ /** Format: uri */
+ followers_url: string;
+ following_url: string;
+ gists_url: string;
+ starred_url: string;
+ /** Format: uri */
+ subscriptions_url: string;
+ /** Format: uri */
+ organizations_url: string;
+ /** Format: uri */
+ repos_url: string;
+ events_url: string;
+ /** Format: uri */
+ received_events_url: string;
+ type: string;
+ site_admin: boolean;
+ name: string | null;
+ company: string | null;
+ blog: string | null;
+ location: string | null;
+ /** Format: email */
+ email: string | null;
+ hireable: boolean | null;
+ bio: string | null;
+ twitter_username?: string | null;
+ public_repos: number;
+ public_gists: number;
+ followers: number;
+ following: number;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ plan?: {
+ collaborators: number;
+ name: string;
+ space: number;
+ private_repos: number;
+ };
+ /** Format: date-time */
+ suspended_at?: string | null;
+ /** @example 1 */
+ private_gists?: number;
+ /** @example 2 */
+ total_private_repos?: number;
+ /** @example 2 */
+ owned_private_repos?: number;
+ /** @example 1 */
+ disk_usage?: number;
+ /** @example 3 */
+ collaborators?: number;
+ };
+ /**
+ * Gist History
+ * @description Gist History
+ */
+ "gist-history": {
+ user?: components["schemas"]["nullable-simple-user"];
+ version?: string;
+ /** Format: date-time */
+ committed_at?: string;
+ change_status?: {
+ total?: number;
+ additions?: number;
+ deletions?: number;
+ };
+ /** Format: uri */
+ url?: string;
+ };
+ /**
+ * Gist Simple
+ * @description Gist Simple
+ */
+ "gist-simple": {
+ /** @deprecated */
+ forks?:
+ | {
+ id?: string;
+ /** Format: uri */
+ url?: string;
+ user?: components["schemas"]["public-user"];
+ /** Format: date-time */
+ created_at?: string;
+ /** Format: date-time */
+ updated_at?: string;
+ }[]
+ | null;
+ /** @deprecated */
+ history?: components["schemas"]["gist-history"][] | null;
+ /**
+ * Gist
+ * @description Gist
+ */
+ fork_of?: {
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ forks_url: string;
+ /** Format: uri */
+ commits_url: string;
+ id: string;
+ node_id: string;
+ /** Format: uri */
+ git_pull_url: string;
+ /** Format: uri */
+ git_push_url: string;
+ /** Format: uri */
+ html_url: string;
+ files: {
+ [key: string]: {
+ filename?: string;
+ type?: string;
+ language?: string;
+ raw_url?: string;
+ size?: number;
+ };
+ };
+ public: boolean;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ description: string | null;
+ comments: number;
+ user: components["schemas"]["nullable-simple-user"];
+ /** Format: uri */
+ comments_url: string;
+ owner?: components["schemas"]["nullable-simple-user"];
+ truncated?: boolean;
+ forks?: unknown[];
+ history?: unknown[];
+ } | null;
+ url?: string;
+ forks_url?: string;
+ commits_url?: string;
+ id?: string;
+ node_id?: string;
+ git_pull_url?: string;
+ git_push_url?: string;
+ html_url?: string;
+ files?: {
+ [key: string]: {
+ filename?: string;
+ type?: string;
+ language?: string;
+ raw_url?: string;
+ size?: number;
+ truncated?: boolean;
+ content?: string;
+ } | null;
+ };
+ public?: boolean;
+ created_at?: string;
+ updated_at?: string;
+ description?: string | null;
+ comments?: number;
+ user?: string | null;
+ comments_url?: string;
+ owner?: components["schemas"]["simple-user"];
+ truncated?: boolean;
+ };
+ /**
+ * Gist Comment
+ * @description A comment made to a gist.
+ */
+ "gist-comment": {
+ /** @example 1 */
+ id: number;
+ /** @example MDExOkdpc3RDb21tZW50MQ== */
+ node_id: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/gists/a6db0bec360bb87e9418/comments/1
+ */
+ url: string;
+ /**
+ * @description The comment text.
+ * @example Body of the attachment
+ */
+ body: string;
+ user: components["schemas"]["nullable-simple-user"];
+ /**
+ * Format: date-time
+ * @example 2011-04-18T23:23:56Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2011-04-18T23:23:56Z
+ */
+ updated_at: string;
+ author_association: components["schemas"]["author-association"];
+ };
+ /**
+ * Gist Commit
+ * @description Gist Commit
+ */
+ "gist-commit": {
+ /**
+ * Format: uri
+ * @example https://api.github.com/gists/aa5a315d61ae9438b18d/57a7f021a713b1c5a6a199b54cc514735d2d462f
+ */
+ url: string;
+ /** @example 57a7f021a713b1c5a6a199b54cc514735d2d462f */
+ version: string;
+ user: components["schemas"]["nullable-simple-user"];
+ change_status: {
+ total?: number;
+ additions?: number;
+ deletions?: number;
+ };
+ /**
+ * Format: date-time
+ * @example 2010-04-14T02:15:15Z
+ */
+ committed_at: string;
+ };
+ /**
+ * Gitignore Template
+ * @description Gitignore Template
+ */
+ "gitignore-template": {
+ /** @example C */
+ name: string;
+ /**
+ * @example # Object files
+ * *.o
+ *
+ * # Libraries
+ * *.lib
+ * *.a
+ *
+ * # Shared objects (inc. Windows DLLs)
+ * *.dll
+ * *.so
+ * *.so.*
+ * *.dylib
+ *
+ * # Executables
+ * *.exe
+ * *.out
+ * *.app
+ */
+ source: string;
+ };
+ /**
+ * License Simple
+ * @description License Simple
+ */
+ "license-simple": {
+ /** @example mit */
+ key: string;
+ /** @example MIT License */
+ name: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/licenses/mit
+ */
+ url: string | null;
+ /** @example MIT */
+ spdx_id: string | null;
+ /** @example MDc6TGljZW5zZW1pdA== */
+ node_id: string;
+ /** Format: uri */
+ html_url?: string;
+ };
+ /**
+ * License
+ * @description License
+ */
+ license: {
+ /** @example mit */
+ key: string;
+ /** @example MIT License */
+ name: string;
+ /** @example MIT */
+ spdx_id: string | null;
+ /**
+ * Format: uri
+ * @example https://api.github.com/licenses/mit
+ */
+ url: string | null;
+ /** @example MDc6TGljZW5zZW1pdA== */
+ node_id: string;
+ /**
+ * Format: uri
+ * @example http://choosealicense.com/licenses/mit/
+ */
+ html_url: string;
+ /** @example A permissive license that is short and to the point. It lets people do anything with your code with proper attribution and without warranty. */
+ description: string;
+ /** @example Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace [year] with the current year and [fullname] with the name (or names) of the copyright holders. */
+ implementation: string;
+ /**
+ * @example [
+ * "commercial-use",
+ * "modifications",
+ * "distribution",
+ * "sublicense",
+ * "private-use"
+ * ]
+ */
+ permissions: string[];
+ /**
+ * @example [
+ * "include-copyright"
+ * ]
+ */
+ conditions: string[];
+ /**
+ * @example [
+ * "no-liability"
+ * ]
+ */
+ limitations: string[];
+ /**
+ * @example
+ *
+ * The MIT License (MIT)
+ *
+ * Copyright (c) [year] [fullname]
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+ body: string;
+ /** @example true */
+ featured: boolean;
+ };
+ /**
+ * Marketplace Listing Plan
+ * @description Marketplace Listing Plan
+ */
+ "marketplace-listing-plan": {
+ /**
+ * Format: uri
+ * @example https://api.github.com/marketplace_listing/plans/1313
+ */
+ url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/marketplace_listing/plans/1313/accounts
+ */
+ accounts_url: string;
+ /** @example 1313 */
+ id: number;
+ /** @example 3 */
+ number: number;
+ /** @example Pro */
+ name: string;
+ /** @example A professional-grade CI solution */
+ description: string;
+ /** @example 1099 */
+ monthly_price_in_cents: number;
+ /** @example 11870 */
+ yearly_price_in_cents: number;
+ /**
+ * @example FLAT_RATE
+ * @enum {string}
+ */
+ price_model: "FREE" | "FLAT_RATE" | "PER_UNIT";
+ /** @example true */
+ has_free_trial: boolean;
+ unit_name: string | null;
+ /** @example published */
+ state: string;
+ /**
+ * @example [
+ * "Up to 25 private repositories",
+ * "11 concurrent builds"
+ * ]
+ */
+ bullets: string[];
+ };
+ /**
+ * Marketplace Purchase
+ * @description Marketplace Purchase
+ */
+ "marketplace-purchase": {
+ url: string;
+ type: string;
+ id: number;
+ login: string;
+ organization_billing_email?: string;
+ email?: string | null;
+ marketplace_pending_change?: {
+ is_installed?: boolean;
+ effective_date?: string;
+ unit_count?: number | null;
+ id?: number;
+ plan?: components["schemas"]["marketplace-listing-plan"];
+ } | null;
+ marketplace_purchase: {
+ billing_cycle?: string;
+ next_billing_date?: string | null;
+ is_installed?: boolean;
+ unit_count?: number | null;
+ on_free_trial?: boolean;
+ free_trial_ends_on?: string | null;
+ updated_at?: string;
+ plan?: components["schemas"]["marketplace-listing-plan"];
+ };
+ };
+ /**
+ * Api Overview
+ * @description Api Overview
+ */
+ "api-overview": {
+ /** @example true */
+ verifiable_password_authentication: boolean;
+ ssh_key_fingerprints?: {
+ SHA256_RSA?: string;
+ SHA256_DSA?: string;
+ SHA256_ECDSA?: string;
+ SHA256_ED25519?: string;
+ };
+ /**
+ * @example [
+ * "ssh-ed25519 ABCDEFGHIJKLMNOPQRSTUVWXYZ"
+ * ]
+ */
+ ssh_keys?: string[];
+ /**
+ * @example [
+ * "192.0.2.1"
+ * ]
+ */
+ hooks?: string[];
+ /**
+ * @example [
+ * "192.0.2.1"
+ * ]
+ */
+ github_enterprise_importer?: string[];
+ /**
+ * @example [
+ * "192.0.2.1"
+ * ]
+ */
+ web?: string[];
+ /**
+ * @example [
+ * "192.0.2.1"
+ * ]
+ */
+ api?: string[];
+ /**
+ * @example [
+ * "192.0.2.1"
+ * ]
+ */
+ git?: string[];
+ /**
+ * @example [
+ * "192.0.2.1"
+ * ]
+ */
+ packages?: string[];
+ /**
+ * @example [
+ * "192.0.2.1"
+ * ]
+ */
+ pages?: string[];
+ /**
+ * @example [
+ * "192.0.2.1"
+ * ]
+ */
+ importer?: string[];
+ /**
+ * @example [
+ * "192.0.2.1"
+ * ]
+ */
+ actions?: string[];
+ /**
+ * @example [
+ * "192.0.2.1"
+ * ]
+ */
+ dependabot?: string[];
+ domains?: {
+ website?: string[];
+ codespaces?: string[];
+ copilot?: string[];
+ packages?: string[];
+ actions?: string[];
+ };
+ };
+ "security-and-analysis": {
+ advanced_security?: {
+ /** @enum {string} */
+ status?: "enabled" | "disabled";
+ };
+ /** @description Enable or disable Dependabot security updates for the repository. */
+ dependabot_security_updates?: {
+ /**
+ * @description The enablement status of Dependabot security updates for the repository.
+ * @enum {string}
+ */
+ status?: "enabled" | "disabled";
+ };
+ secret_scanning?: {
+ /** @enum {string} */
+ status?: "enabled" | "disabled";
+ };
+ secret_scanning_push_protection?: {
+ /** @enum {string} */
+ status?: "enabled" | "disabled";
+ };
+ } | null;
+ /**
+ * Minimal Repository
+ * @description Minimal Repository
+ */
+ "minimal-repository": {
+ /** @example 1296269 */
+ id: number;
+ /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */
+ node_id: string;
+ /** @example Hello-World */
+ name: string;
+ /** @example octocat/Hello-World */
+ full_name: string;
+ owner: components["schemas"]["simple-user"];
+ private: boolean;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World
+ */
+ html_url: string;
+ /** @example This your first repo! */
+ description: string | null;
+ fork: boolean;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World
+ */
+ url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref} */
+ archive_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/assignees{/user} */
+ assignees_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha} */
+ blobs_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/branches{/branch} */
+ branches_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator} */
+ collaborators_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/comments{/number} */
+ comments_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/commits{/sha} */
+ commits_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head} */
+ compare_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/contents/{+path} */
+ contents_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/contributors
+ */
+ contributors_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/deployments
+ */
+ deployments_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/downloads
+ */
+ downloads_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/events
+ */
+ events_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/forks
+ */
+ forks_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/commits{/sha} */
+ git_commits_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/refs{/sha} */
+ git_refs_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/tags{/sha} */
+ git_tags_url: string;
+ git_url?: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues/comments{/number} */
+ issue_comment_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues/events{/number} */
+ issue_events_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues{/number} */
+ issues_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/keys{/key_id} */
+ keys_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/labels{/name} */
+ labels_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/languages
+ */
+ languages_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/merges
+ */
+ merges_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/milestones{/number} */
+ milestones_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating} */
+ notifications_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/pulls{/number} */
+ pulls_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/releases{/id} */
+ releases_url: string;
+ ssh_url?: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/stargazers
+ */
+ stargazers_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/statuses/{sha} */
+ statuses_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/subscribers
+ */
+ subscribers_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/subscription
+ */
+ subscription_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/tags
+ */
+ tags_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/teams
+ */
+ teams_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/trees{/sha} */
+ trees_url: string;
+ clone_url?: string;
+ mirror_url?: string | null;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/hooks
+ */
+ hooks_url: string;
+ svn_url?: string;
+ homepage?: string | null;
+ language?: string | null;
+ forks_count?: number;
+ stargazers_count?: number;
+ watchers_count?: number;
+ /** @description The size of the repository, in kilobytes. Size is calculated hourly. When a repository is initially created, the size is 0. */
+ size?: number;
+ default_branch?: string;
+ open_issues_count?: number;
+ is_template?: boolean;
+ topics?: string[];
+ has_issues?: boolean;
+ has_projects?: boolean;
+ has_wiki?: boolean;
+ has_pages?: boolean;
+ has_downloads?: boolean;
+ has_discussions?: boolean;
+ archived?: boolean;
+ disabled?: boolean;
+ visibility?: string;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:06:43Z
+ */
+ pushed_at?: string | null;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:01:12Z
+ */
+ created_at?: string | null;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:14:43Z
+ */
+ updated_at?: string | null;
+ permissions?: {
+ admin?: boolean;
+ maintain?: boolean;
+ push?: boolean;
+ triage?: boolean;
+ pull?: boolean;
+ };
+ /** @example admin */
+ role_name?: string;
+ temp_clone_token?: string;
+ delete_branch_on_merge?: boolean;
+ subscribers_count?: number;
+ network_count?: number;
+ code_of_conduct?: components["schemas"]["code-of-conduct"];
+ license?: {
+ key?: string;
+ name?: string;
+ spdx_id?: string;
+ url?: string;
+ node_id?: string;
+ } | null;
+ /** @example 0 */
+ forks?: number;
+ /** @example 0 */
+ open_issues?: number;
+ /** @example 0 */
+ watchers?: number;
+ allow_forking?: boolean;
+ /** @example false */
+ web_commit_signoff_required?: boolean;
+ security_and_analysis?: components["schemas"]["security-and-analysis"];
+ };
+ /**
+ * Thread
+ * @description Thread
+ */
+ thread: {
+ id: string;
+ repository: components["schemas"]["minimal-repository"];
+ subject: {
+ title: string;
+ url: string;
+ latest_comment_url: string;
+ type: string;
+ };
+ reason: string;
+ unread: boolean;
+ updated_at: string;
+ last_read_at: string | null;
+ url: string;
+ /** @example https://api.github.com/notifications/threads/2/subscription */
+ subscription_url: string;
+ };
+ /**
+ * Thread Subscription
+ * @description Thread Subscription
+ */
+ "thread-subscription": {
+ /** @example true */
+ subscribed: boolean;
+ ignored: boolean;
+ reason: string | null;
+ /**
+ * Format: date-time
+ * @example 2012-10-06T21:34:12Z
+ */
+ created_at: string | null;
+ /**
+ * Format: uri
+ * @example https://api.github.com/notifications/threads/1/subscription
+ */
+ url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/notifications/threads/1
+ */
+ thread_url?: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/1
+ */
+ repository_url?: string;
+ };
+ /**
+ * Organization Simple
+ * @description A GitHub organization.
+ */
+ "organization-simple": {
+ /** @example github */
+ login: string;
+ /** @example 1 */
+ id: number;
+ /** @example MDEyOk9yZ2FuaXphdGlvbjE= */
+ node_id: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/orgs/github
+ */
+ url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/orgs/github/repos
+ */
+ repos_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/orgs/github/events
+ */
+ events_url: string;
+ /** @example https://api.github.com/orgs/github/hooks */
+ hooks_url: string;
+ /** @example https://api.github.com/orgs/github/issues */
+ issues_url: string;
+ /** @example https://api.github.com/orgs/github/members{/member} */
+ members_url: string;
+ /** @example https://api.github.com/orgs/github/public_members{/member} */
+ public_members_url: string;
+ /** @example https://github.com/images/error/octocat_happy.gif */
+ avatar_url: string;
+ /** @example A great organization */
+ description: string | null;
+ };
+ /**
+ * Organization Full
+ * @description Organization Full
+ */
+ "organization-full": {
+ /** @example github */
+ login: string;
+ /** @example 1 */
+ id: number;
+ /** @example MDEyOk9yZ2FuaXphdGlvbjE= */
+ node_id: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/orgs/github
+ */
+ url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/orgs/github/repos
+ */
+ repos_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/orgs/github/events
+ */
+ events_url: string;
+ /** @example https://api.github.com/orgs/github/hooks */
+ hooks_url: string;
+ /** @example https://api.github.com/orgs/github/issues */
+ issues_url: string;
+ /** @example https://api.github.com/orgs/github/members{/member} */
+ members_url: string;
+ /** @example https://api.github.com/orgs/github/public_members{/member} */
+ public_members_url: string;
+ /** @example https://github.com/images/error/octocat_happy.gif */
+ avatar_url: string;
+ /** @example A great organization */
+ description: string | null;
+ /** @example github */
+ name?: string;
+ /** @example GitHub */
+ company?: string;
+ /**
+ * Format: uri
+ * @example https://github.com/blog
+ */
+ blog?: string;
+ /** @example San Francisco */
+ location?: string;
+ /**
+ * Format: email
+ * @example octocat@github.com
+ */
+ email?: string;
+ /** @example github */
+ twitter_username?: string | null;
+ /** @example true */
+ is_verified?: boolean;
+ /** @example true */
+ has_organization_projects: boolean;
+ /** @example true */
+ has_repository_projects: boolean;
+ /** @example 2 */
+ public_repos: number;
+ /** @example 1 */
+ public_gists: number;
+ /** @example 20 */
+ followers: number;
+ /** @example 0 */
+ following: number;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat
+ */
+ html_url: string;
+ /** @example Organization */
+ type: string;
+ /** @example 100 */
+ total_private_repos?: number;
+ /** @example 100 */
+ owned_private_repos?: number;
+ /** @example 81 */
+ private_gists?: number | null;
+ /** @example 10000 */
+ disk_usage?: number | null;
+ /** @example 8 */
+ collaborators?: number | null;
+ /**
+ * Format: email
+ * @example org@example.com
+ */
+ billing_email?: string | null;
+ plan?: {
+ name: string;
+ space: number;
+ private_repos: number;
+ filled_seats?: number;
+ seats?: number;
+ };
+ default_repository_permission?: string | null;
+ /** @example true */
+ members_can_create_repositories?: boolean | null;
+ /** @example true */
+ two_factor_requirement_enabled?: boolean | null;
+ /** @example all */
+ members_allowed_repository_creation_type?: string;
+ /** @example true */
+ members_can_create_public_repositories?: boolean;
+ /** @example true */
+ members_can_create_private_repositories?: boolean;
+ /** @example true */
+ members_can_create_internal_repositories?: boolean;
+ /** @example true */
+ members_can_create_pages?: boolean;
+ /** @example true */
+ members_can_create_public_pages?: boolean;
+ /** @example true */
+ members_can_create_private_pages?: boolean;
+ /** @example false */
+ members_can_fork_private_repositories?: boolean | null;
+ /** @example false */
+ web_commit_signoff_required?: boolean;
+ /**
+ * @description Whether GitHub Advanced Security is enabled for new repositories and repositories transferred to this organization.
+ *
+ * This field is only visible to organization owners or members of a team with the security manager role.
+ * @example false
+ */
+ advanced_security_enabled_for_new_repositories?: boolean;
+ /**
+ * @description Whether GitHub Advanced Security is automatically enabled for new repositories and repositories transferred to
+ * this organization.
+ *
+ * This field is only visible to organization owners or members of a team with the security manager role.
+ * @example false
+ */
+ dependabot_alerts_enabled_for_new_repositories?: boolean;
+ /**
+ * @description Whether dependabot security updates are automatically enabled for new repositories and repositories transferred
+ * to this organization.
+ *
+ * This field is only visible to organization owners or members of a team with the security manager role.
+ * @example false
+ */
+ dependabot_security_updates_enabled_for_new_repositories?: boolean;
+ /**
+ * @description Whether dependency graph is automatically enabled for new repositories and repositories transferred to this
+ * organization.
+ *
+ * This field is only visible to organization owners or members of a team with the security manager role.
+ * @example false
+ */
+ dependency_graph_enabled_for_new_repositories?: boolean;
+ /**
+ * @description Whether secret scanning is automatically enabled for new repositories and repositories transferred to this
+ * organization.
+ *
+ * This field is only visible to organization owners or members of a team with the security manager role.
+ * @example false
+ */
+ secret_scanning_enabled_for_new_repositories?: boolean;
+ /**
+ * @description Whether secret scanning push protection is automatically enabled for new repositories and repositories
+ * transferred to this organization.
+ *
+ * This field is only visible to organization owners or members of a team with the security manager role.
+ * @example false
+ */
+ secret_scanning_push_protection_enabled_for_new_repositories?: boolean;
+ /**
+ * @description Whether a custom link is shown to contributors who are blocked from pushing a secret by push protection.
+ * @example false
+ */
+ secret_scanning_push_protection_custom_link_enabled?: boolean;
+ /**
+ * @description An optional URL string to display to contributors who are blocked from pushing a secret.
+ * @example https://github.com/test-org/test-repo/blob/main/README.md
+ */
+ secret_scanning_push_protection_custom_link?: string | null;
+ /**
+ * Format: date-time
+ * @example 2008-01-14T04:33:35Z
+ */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: date-time */
+ archived_at: string | null;
+ };
+ "actions-cache-usage-org-enterprise": {
+ /** @description The count of active caches across all repositories of an enterprise or an organization. */
+ total_active_caches_count: number;
+ /** @description The total size in bytes of all active cache items across all repositories of an enterprise or an organization. */
+ total_active_caches_size_in_bytes: number;
+ };
+ /**
+ * Actions Cache Usage by repository
+ * @description GitHub Actions Cache Usage by repository.
+ */
+ "actions-cache-usage-by-repository": {
+ /**
+ * @description The repository owner and name for the cache usage being shown.
+ * @example octo-org/Hello-World
+ */
+ full_name: string;
+ /**
+ * @description The sum of the size in bytes of all the active cache items in the repository.
+ * @example 2322142
+ */
+ active_caches_size_in_bytes: number;
+ /**
+ * @description The number of active caches in the repository.
+ * @example 3
+ */
+ active_caches_count: number;
+ };
+ /**
+ * Actions OIDC Subject customization
+ * @description Actions OIDC Subject customization
+ */
+ "oidc-custom-sub": {
+ /** @description Array of unique strings. Each claim key can only contain alphanumeric characters and underscores. */
+ include_claim_keys: string[];
+ };
+ /**
+ * Empty Object
+ * @description An object without any properties.
+ */
+ "empty-object": Record;
+ /**
+ * @description The policy that controls the repositories in the organization that are allowed to run GitHub Actions.
+ * @enum {string}
+ */
+ "enabled-repositories": "all" | "none" | "selected";
+ /**
+ * @description The permissions policy that controls the actions and reusable workflows that are allowed to run.
+ * @enum {string}
+ */
+ "allowed-actions": "all" | "local_only" | "selected";
+ /** @description The API URL to use to get or set the actions and reusable workflows that are allowed to run, when `allowed_actions` is set to `selected`. */
+ "selected-actions-url": string;
+ "actions-organization-permissions": {
+ enabled_repositories: components["schemas"]["enabled-repositories"];
+ /** @description The API URL to use to get or set the selected repositories that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. */
+ selected_repositories_url?: string;
+ allowed_actions?: components["schemas"]["allowed-actions"];
+ selected_actions_url?: components["schemas"]["selected-actions-url"];
+ };
+ "selected-actions": {
+ /** @description Whether GitHub-owned actions are allowed. For example, this includes the actions in the `actions` organization. */
+ github_owned_allowed?: boolean;
+ /** @description Whether actions from GitHub Marketplace verified creators are allowed. Set to `true` to allow all actions by GitHub Marketplace verified creators. */
+ verified_allowed?: boolean;
+ /**
+ * @description Specifies a list of string-matching patterns to allow specific action(s) and reusable workflow(s). Wildcards, tags, and SHAs are allowed. For example, `monalisa/octocat@*`, `monalisa/octocat@v2`, `monalisa/*`.
+ *
+ * **Note**: The `patterns_allowed` setting only applies to public repositories.
+ */
+ patterns_allowed?: string[];
+ };
+ /**
+ * @description The default workflow permissions granted to the GITHUB_TOKEN when running workflows.
+ * @enum {string}
+ */
+ "actions-default-workflow-permissions": "read" | "write";
+ /** @description Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. */
+ "actions-can-approve-pull-request-reviews": boolean;
+ "actions-get-default-workflow-permissions": {
+ default_workflow_permissions: components["schemas"]["actions-default-workflow-permissions"];
+ can_approve_pull_request_reviews: components["schemas"]["actions-can-approve-pull-request-reviews"];
+ };
+ "actions-set-default-workflow-permissions": {
+ default_workflow_permissions?: components["schemas"]["actions-default-workflow-permissions"];
+ can_approve_pull_request_reviews?: components["schemas"]["actions-can-approve-pull-request-reviews"];
+ };
+ /**
+ * Self hosted runner label
+ * @description A label for a self hosted runner
+ */
+ "runner-label": {
+ /** @description Unique identifier of the label. */
+ id?: number;
+ /** @description Name of the label. */
+ name: string;
+ /**
+ * @description The type of label. Read-only labels are applied automatically when the runner is configured.
+ * @enum {string}
+ */
+ type?: "read-only" | "custom";
+ };
+ /**
+ * Self hosted runners
+ * @description A self hosted runner
+ */
+ runner: {
+ /**
+ * @description The id of the runner.
+ * @example 5
+ */
+ id: number;
+ /**
+ * @description The id of the runner group.
+ * @example 1
+ */
+ runner_group_id?: number;
+ /**
+ * @description The name of the runner.
+ * @example iMac
+ */
+ name: string;
+ /**
+ * @description The Operating System of the runner.
+ * @example macos
+ */
+ os: string;
+ /**
+ * @description The status of the runner.
+ * @example online
+ */
+ status: string;
+ busy: boolean;
+ labels: components["schemas"]["runner-label"][];
+ };
+ /**
+ * Runner Application
+ * @description Runner Application
+ */
+ "runner-application": {
+ os: string;
+ architecture: string;
+ download_url: string;
+ filename: string;
+ /** @description A short lived bearer token used to download the runner, if needed. */
+ temp_download_token?: string;
+ sha256_checksum?: string;
+ };
+ /**
+ * Authentication Token
+ * @description Authentication Token
+ */
+ "authentication-token": {
+ /**
+ * @description The token used for authentication
+ * @example v1.1f699f1069f60xxx
+ */
+ token: string;
+ /**
+ * Format: date-time
+ * @description The time this token expires
+ * @example 2016-07-11T22:14:10Z
+ */
+ expires_at: string;
+ /**
+ * @example {
+ * "issues": "read",
+ * "deployments": "write"
+ * }
+ */
+ permissions?: Record;
+ /** @description The repositories this token has access to */
+ repositories?: components["schemas"]["repository"][];
+ /** @example config.yaml */
+ single_file?: string | null;
+ /**
+ * @description Describe whether all repositories have been selected or there's a selection involved
+ * @enum {string}
+ */
+ repository_selection?: "all" | "selected";
+ };
+ /**
+ * Actions Secret for an Organization
+ * @description Secrets for GitHub Actions for an organization.
+ */
+ "organization-actions-secret": {
+ /**
+ * @description The name of the secret.
+ * @example SECRET_TOKEN
+ */
+ name: string;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * @description Visibility of a secret
+ * @enum {string}
+ */
+ visibility: "all" | "private" | "selected";
+ /**
+ * Format: uri
+ * @example https://api.github.com/organizations/org/secrets/my_secret/repositories
+ */
+ selected_repositories_url?: string;
+ };
+ /**
+ * ActionsPublicKey
+ * @description The public key used for setting Actions Secrets.
+ */
+ "actions-public-key": {
+ /**
+ * @description The identifier for the key.
+ * @example 1234567
+ */
+ key_id: string;
+ /**
+ * @description The Base64 encoded public key.
+ * @example hBT5WZEj8ZoOv6TYJsfWq7MxTEQopZO5/IT3ZCVQPzs=
+ */
+ key: string;
+ /** @example 2 */
+ id?: number;
+ /** @example https://api.github.com/user/keys/2 */
+ url?: string;
+ /** @example ssh-rsa AAAAB3NzaC1yc2EAAA */
+ title?: string;
+ /** @example 2011-01-26T19:01:12Z */
+ created_at?: string;
+ };
+ /**
+ * Actions Variable for an Organization
+ * @description Organization variable for GitHub Actions.
+ */
+ "organization-actions-variable": {
+ /**
+ * @description The name of the variable.
+ * @example USERNAME
+ */
+ name: string;
+ /**
+ * @description The value of the variable.
+ * @example octocat
+ */
+ value: string;
+ /**
+ * Format: date-time
+ * @description The date and time at which the variable was created, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ.
+ * @example 2019-01-24T22:45:36.000Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @description The date and time at which the variable was last updated, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ.
+ * @example 2019-01-24T22:45:36.000Z
+ */
+ updated_at: string;
+ /**
+ * @description Visibility of a variable
+ * @enum {string}
+ */
+ visibility: "all" | "private" | "selected";
+ /**
+ * Format: uri
+ * @example https://api.github.com/organizations/org/variables/USERNAME/repositories
+ */
+ selected_repositories_url?: string;
+ };
+ /** @description The name of the tool used to generate the code scanning analysis. */
+ "code-scanning-analysis-tool-name": string;
+ /** @description The GUID of the tool used to generate the code scanning analysis, if provided in the uploaded SARIF data. */
+ "code-scanning-analysis-tool-guid": string | null;
+ /**
+ * @description State of a code scanning alert.
+ * @enum {string}
+ */
+ "code-scanning-alert-state-query":
+ | "open"
+ | "closed"
+ | "dismissed"
+ | "fixed";
+ /**
+ * @description Severity of a code scanning alert.
+ * @enum {string}
+ */
+ "code-scanning-alert-severity":
+ | "critical"
+ | "high"
+ | "medium"
+ | "low"
+ | "warning"
+ | "note"
+ | "error";
+ /**
+ * Format: uri
+ * @description The REST API URL for fetching the list of instances for an alert.
+ */
+ readonly "alert-instances-url": string;
+ /**
+ * @description State of a code scanning alert.
+ * @enum {string}
+ */
+ "code-scanning-alert-state": "open" | "dismissed" | "fixed";
+ /**
+ * @description **Required when the state is dismissed.** The reason for dismissing or closing the alert.
+ * @enum {string|null}
+ */
+ "code-scanning-alert-dismissed-reason":
+ | null
+ | "false positive"
+ | "won't fix"
+ | "used in tests";
+ /** @description The dismissal comment associated with the dismissal of the alert. */
+ "code-scanning-alert-dismissed-comment": string | null;
+ "code-scanning-alert-rule-summary": {
+ /** @description A unique identifier for the rule used to detect the alert. */
+ id?: string | null;
+ /** @description The name of the rule used to detect the alert. */
+ name?: string;
+ /** @description A set of tags applicable for the rule. */
+ tags?: string[] | null;
+ /**
+ * @description The severity of the alert.
+ * @enum {string|null}
+ */
+ severity?: "none" | "note" | "warning" | "error" | null;
+ /**
+ * @description The security severity of the alert.
+ * @enum {string|null}
+ */
+ security_severity_level?: "low" | "medium" | "high" | "critical" | null;
+ /** @description A short description of the rule used to detect the alert. */
+ description?: string;
+ };
+ /** @description The version of the tool used to generate the code scanning analysis. */
+ "code-scanning-analysis-tool-version": string | null;
+ "code-scanning-analysis-tool": {
+ name?: components["schemas"]["code-scanning-analysis-tool-name"];
+ version?: components["schemas"]["code-scanning-analysis-tool-version"];
+ guid?: components["schemas"]["code-scanning-analysis-tool-guid"];
+ };
+ /**
+ * @description The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`,
+ * `refs/heads/` or simply ``.
+ */
+ "code-scanning-ref": string;
+ /** @description Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. */
+ "code-scanning-analysis-analysis-key": string;
+ /** @description Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. */
+ "code-scanning-alert-environment": string;
+ /** @description Identifies the configuration under which the analysis was executed. Used to distinguish between multiple analyses for the same tool and commit, but performed on different languages or different parts of the code. */
+ "code-scanning-analysis-category": string;
+ /** @description Describe a region within a file for the alert. */
+ "code-scanning-alert-location": {
+ path?: string;
+ start_line?: number;
+ end_line?: number;
+ start_column?: number;
+ end_column?: number;
+ };
+ /**
+ * @description A classification of the file. For example to identify it as generated.
+ * @enum {string|null}
+ */
+ "code-scanning-alert-classification":
+ | "source"
+ | "generated"
+ | "test"
+ | "library"
+ | null;
+ "code-scanning-alert-instance": {
+ ref?: components["schemas"]["code-scanning-ref"];
+ analysis_key?: components["schemas"]["code-scanning-analysis-analysis-key"];
+ environment?: components["schemas"]["code-scanning-alert-environment"];
+ category?: components["schemas"]["code-scanning-analysis-category"];
+ state?: components["schemas"]["code-scanning-alert-state"];
+ commit_sha?: string;
+ message?: {
+ text?: string;
+ };
+ location?: components["schemas"]["code-scanning-alert-location"];
+ html_url?: string;
+ /**
+ * @description Classifications that have been applied to the file that triggered the alert.
+ * For example identifying it as documentation, or a generated file.
+ */
+ classifications?: components["schemas"]["code-scanning-alert-classification"][];
+ };
+ "code-scanning-organization-alert-items": {
+ number: components["schemas"]["alert-number"];
+ created_at: components["schemas"]["alert-created-at"];
+ updated_at?: components["schemas"]["alert-updated-at"];
+ url: components["schemas"]["alert-url"];
+ html_url: components["schemas"]["alert-html-url"];
+ instances_url: components["schemas"]["alert-instances-url"];
+ state: components["schemas"]["code-scanning-alert-state"];
+ fixed_at?: components["schemas"]["alert-fixed-at"];
+ dismissed_by: components["schemas"]["nullable-simple-user"];
+ dismissed_at: components["schemas"]["alert-dismissed-at"];
+ dismissed_reason: components["schemas"]["code-scanning-alert-dismissed-reason"];
+ dismissed_comment?: components["schemas"]["code-scanning-alert-dismissed-comment"];
+ rule: components["schemas"]["code-scanning-alert-rule-summary"];
+ tool: components["schemas"]["code-scanning-analysis-tool"];
+ most_recent_instance: components["schemas"]["code-scanning-alert-instance"];
+ repository: components["schemas"]["simple-repository"];
+ };
+ /**
+ * Codespace machine
+ * @description A description of the machine powering a codespace.
+ */
+ "nullable-codespace-machine": {
+ /**
+ * @description The name of the machine.
+ * @example standardLinux
+ */
+ name: string;
+ /**
+ * @description The display name of the machine includes cores, memory, and storage.
+ * @example 4 cores, 16 GB RAM, 64 GB storage
+ */
+ display_name: string;
+ /**
+ * @description The operating system of the machine.
+ * @example linux
+ */
+ operating_system: string;
+ /**
+ * @description How much storage is available to the codespace.
+ * @example 68719476736
+ */
+ storage_in_bytes: number;
+ /**
+ * @description How much memory is available to the codespace.
+ * @example 17179869184
+ */
+ memory_in_bytes: number;
+ /**
+ * @description How many cores are available to the codespace.
+ * @example 4
+ */
+ cpus: number;
+ /**
+ * @description Whether a prebuild is currently available when creating a codespace for this machine and repository. If a branch was not specified as a ref, the default branch will be assumed. Value will be "null" if prebuilds are not supported or prebuild availability could not be determined. Value will be "none" if no prebuild is available. Latest values "ready" and "in_progress" indicate the prebuild availability status.
+ * @example ready
+ * @enum {string|null}
+ */
+ prebuild_availability: "none" | "ready" | "in_progress" | null;
+ } | null;
+ /**
+ * Codespace
+ * @description A codespace.
+ */
+ codespace: {
+ /** @example 1 */
+ id: number;
+ /**
+ * @description Automatically generated name of this codespace.
+ * @example monalisa-octocat-hello-world-g4wpq6h95q
+ */
+ name: string;
+ /**
+ * @description Display name for this codespace.
+ * @example bookish space pancake
+ */
+ display_name?: string | null;
+ /**
+ * @description UUID identifying this codespace's environment.
+ * @example 26a7c758-7299-4a73-b978-5a92a7ae98a0
+ */
+ environment_id: string | null;
+ owner: components["schemas"]["simple-user"];
+ billable_owner: components["schemas"]["simple-user"];
+ repository: components["schemas"]["minimal-repository"];
+ machine: components["schemas"]["nullable-codespace-machine"];
+ /**
+ * @description Path to devcontainer.json from repo root used to create Codespace.
+ * @example .devcontainer/example/devcontainer.json
+ */
+ devcontainer_path?: string | null;
+ /**
+ * @description Whether the codespace was created from a prebuild.
+ * @example false
+ */
+ prebuild: boolean | null;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:01:12Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:01:12Z
+ */
+ updated_at: string;
+ /**
+ * Format: date-time
+ * @description Last known time this codespace was started.
+ * @example 2011-01-26T19:01:12Z
+ */
+ last_used_at: string;
+ /**
+ * @description State of this codespace.
+ * @example Available
+ * @enum {string}
+ */
+ state:
+ | "Unknown"
+ | "Created"
+ | "Queued"
+ | "Provisioning"
+ | "Available"
+ | "Awaiting"
+ | "Unavailable"
+ | "Deleted"
+ | "Moved"
+ | "Shutdown"
+ | "Archived"
+ | "Starting"
+ | "ShuttingDown"
+ | "Failed"
+ | "Exporting"
+ | "Updating"
+ | "Rebuilding";
+ /**
+ * Format: uri
+ * @description API URL for this codespace.
+ */
+ url: string;
+ /** @description Details about the codespace's git repository. */
+ git_status: {
+ /**
+ * @description The number of commits the local repository is ahead of the remote.
+ * @example 0
+ */
+ ahead?: number;
+ /**
+ * @description The number of commits the local repository is behind the remote.
+ * @example 0
+ */
+ behind?: number;
+ /** @description Whether the local repository has unpushed changes. */
+ has_unpushed_changes?: boolean;
+ /** @description Whether the local repository has uncommitted changes. */
+ has_uncommitted_changes?: boolean;
+ /**
+ * @description The current branch (or SHA if in detached HEAD state) of the local repository.
+ * @example main
+ */
+ ref?: string;
+ };
+ /**
+ * @description The initally assigned location of a new codespace.
+ * @example WestUs2
+ * @enum {string}
+ */
+ location: "EastUs" | "SouthEastAsia" | "WestEurope" | "WestUs2";
+ /**
+ * @description The number of minutes of inactivity after which this codespace will be automatically stopped.
+ * @example 60
+ */
+ idle_timeout_minutes: number | null;
+ /**
+ * Format: uri
+ * @description URL to access this codespace on the web.
+ */
+ web_url: string;
+ /**
+ * Format: uri
+ * @description API URL to access available alternate machine types for this codespace.
+ */
+ machines_url: string;
+ /**
+ * Format: uri
+ * @description API URL to start this codespace.
+ */
+ start_url: string;
+ /**
+ * Format: uri
+ * @description API URL to stop this codespace.
+ */
+ stop_url: string;
+ /**
+ * Format: uri
+ * @description API URL to publish this codespace to a new repository.
+ */
+ publish_url?: string | null;
+ /**
+ * Format: uri
+ * @description API URL for the Pull Request associated with this codespace, if any.
+ */
+ pulls_url: string | null;
+ recent_folders: string[];
+ runtime_constraints?: {
+ /** @description The privacy settings a user can select from when forwarding a port. */
+ allowed_port_privacy_settings?: string[] | null;
+ };
+ /** @description Whether or not a codespace has a pending async operation. This would mean that the codespace is temporarily unavailable. The only thing that you can do with a codespace in this state is delete it. */
+ pending_operation?: boolean | null;
+ /** @description Text to show user when codespace is disabled by a pending operation */
+ pending_operation_disabled_reason?: string | null;
+ /** @description Text to show user when codespace idle timeout minutes has been overriden by an organization policy */
+ idle_timeout_notice?: string | null;
+ /**
+ * @description Duration in minutes after codespace has gone idle in which it will be deleted. Must be integer minutes between 0 and 43200 (30 days).
+ * @example 60
+ */
+ retention_period_minutes?: number | null;
+ /**
+ * Format: date-time
+ * @description When a codespace will be auto-deleted based on the "retention_period_minutes" and "last_used_at"
+ * @example 2011-01-26T20:01:12Z
+ */
+ retention_expires_at?: string | null;
+ /**
+ * @description The text to display to a user when a codespace has been stopped for a potentially actionable reason.
+ * @example you've used 100% of your spending limit for Codespaces
+ */
+ last_known_stop_notice?: string | null;
+ };
+ /**
+ * Codespaces Secret
+ * @description Secrets for a GitHub Codespace.
+ */
+ "codespaces-org-secret": {
+ /**
+ * @description The name of the secret
+ * @example SECRET_NAME
+ */
+ name: string;
+ /**
+ * Format: date-time
+ * @description The date and time at which the secret was created, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ.
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @description The date and time at which the secret was created, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ.
+ */
+ updated_at: string;
+ /**
+ * @description The type of repositories in the organization that the secret is visible to
+ * @enum {string}
+ */
+ visibility: "all" | "private" | "selected";
+ /**
+ * Format: uri
+ * @description The API URL at which the list of repositories this secret is visible to can be retrieved
+ * @example https://api.github.com/orgs/ORGANIZATION/codespaces/secrets/SECRET_NAME/repositories
+ */
+ selected_repositories_url?: string;
+ };
+ /**
+ * CodespacesPublicKey
+ * @description The public key used for setting Codespaces secrets.
+ */
+ "codespaces-public-key": {
+ /**
+ * @description The identifier for the key.
+ * @example 1234567
+ */
+ key_id: string;
+ /**
+ * @description The Base64 encoded public key.
+ * @example hBT5WZEj8ZoOv6TYJsfWq7MxTEQopZO5/IT3ZCVQPzs=
+ */
+ key: string;
+ /** @example 2 */
+ id?: number;
+ /** @example https://api.github.com/user/keys/2 */
+ url?: string;
+ /** @example ssh-rsa AAAAB3NzaC1yc2EAAA */
+ title?: string;
+ /** @example 2011-01-26T19:01:12Z */
+ created_at?: string;
+ };
+ /**
+ * Copilot Business Seat Breakdown
+ * @description The breakdown of Copilot Business seats for the organization.
+ */
+ "copilot-seat-breakdown": {
+ /** @description The total number of seats being billed for the organization as of the current billing cycle. */
+ total?: number;
+ /** @description Seats added during the current billing cycle. */
+ added_this_cycle?: number;
+ /** @description The number of seats that are pending cancellation at the end of the current billing cycle. */
+ pending_cancellation?: number;
+ /** @description The number of seats that have been assigned to users that have not yet accepted an invitation to this organization. */
+ pending_invitation?: number;
+ /** @description The number of seats that have used Copilot during the current billing cycle. */
+ active_this_cycle?: number;
+ /** @description The number of seats that have not used Copilot during the current billing cycle. */
+ inactive_this_cycle?: number;
+ };
+ /**
+ * Copilot Business Organization Details
+ * @description Information about the seat breakdown and policies set for an organization with a Copilot Business subscription.
+ */
+ "copilot-organization-details": {
+ seat_breakdown: components["schemas"]["copilot-seat-breakdown"];
+ /**
+ * @description The organization policy for allowing or disallowing Copilot to make suggestions that match public code.
+ * @enum {string}
+ */
+ public_code_suggestions: "allow" | "block" | "unconfigured" | "unknown";
+ /**
+ * @description The organization policy for allowing or disallowing organization members to use Copilot Chat within their editor.
+ * @enum {string}
+ */
+ ide_chat?: "enabled" | "disabled" | "unconfigured";
+ /**
+ * @description The organization policy for allowing or disallowing organization members to use Copilot features within github.com.
+ * @enum {string}
+ */
+ platform_chat?: "enabled" | "disabled" | "unconfigured";
+ /**
+ * @description The organization policy for allowing or disallowing organization members to use Copilot within their CLI.
+ * @enum {string}
+ */
+ cli?: "enabled" | "disabled" | "unconfigured";
+ /**
+ * @description The mode of assigning new seats.
+ * @enum {string}
+ */
+ seat_management_setting:
+ | "assign_all"
+ | "assign_selected"
+ | "disabled"
+ | "unconfigured";
+ [key: string]: unknown;
+ };
+ /**
+ * Team Simple
+ * @description Groups of organization members that gives permissions on specified repositories.
+ */
+ "nullable-team-simple": {
+ /**
+ * @description Unique identifier of the team
+ * @example 1
+ */
+ id: number;
+ /** @example MDQ6VGVhbTE= */
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ * @example https://api.github.com/organizations/1/team/1
+ */
+ url: string;
+ /** @example https://api.github.com/organizations/1/team/1/members{/member} */
+ members_url: string;
+ /**
+ * @description Name of the team
+ * @example Justice League
+ */
+ name: string;
+ /**
+ * @description Description of the team
+ * @example A great team.
+ */
+ description: string | null;
+ /**
+ * @description Permission that the team will have for its repositories
+ * @example admin
+ */
+ permission: string;
+ /**
+ * @description The level of privacy this team should have
+ * @example closed
+ */
+ privacy?: string;
+ /**
+ * @description The notification setting the team has set
+ * @example notifications_enabled
+ */
+ notification_setting?: string;
+ /**
+ * Format: uri
+ * @example https://github.com/orgs/rails/teams/core
+ */
+ html_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/organizations/1/team/1/repos
+ */
+ repositories_url: string;
+ /** @example justice-league */
+ slug: string;
+ /**
+ * @description Distinguished Name (DN) that team maps to within LDAP environment
+ * @example uid=example,ou=users,dc=github,dc=com
+ */
+ ldap_dn?: string;
+ } | null;
+ /**
+ * Team
+ * @description Groups of organization members that gives permissions on specified repositories.
+ */
+ team: {
+ id: number;
+ node_id: string;
+ name: string;
+ slug: string;
+ description: string | null;
+ privacy?: string;
+ notification_setting?: string;
+ permission: string;
+ permissions?: {
+ pull: boolean;
+ triage: boolean;
+ push: boolean;
+ maintain: boolean;
+ admin: boolean;
+ };
+ /** Format: uri */
+ url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/orgs/rails/teams/core
+ */
+ html_url: string;
+ members_url: string;
+ /** Format: uri */
+ repositories_url: string;
+ parent: components["schemas"]["nullable-team-simple"];
+ };
+ /**
+ * Organization
+ * @description GitHub account for managing multiple users, teams, and repositories
+ */
+ organization: {
+ /**
+ * @description Unique login name of the organization
+ * @example new-org
+ */
+ login: string;
+ /**
+ * Format: uri
+ * @description URL for the organization
+ * @example https://api.github.com/orgs/github
+ */
+ url: string;
+ id: number;
+ node_id: string;
+ /** Format: uri */
+ repos_url: string;
+ /** Format: uri */
+ events_url: string;
+ hooks_url: string;
+ issues_url: string;
+ members_url: string;
+ public_members_url: string;
+ avatar_url: string;
+ description: string | null;
+ /**
+ * Format: uri
+ * @description Display blog url for the organization
+ * @example blog.example-org.com
+ */
+ blog?: string;
+ /** Format: uri */
+ html_url: string;
+ /**
+ * @description Display name for the organization
+ * @example New Org
+ */
+ name?: string;
+ /**
+ * @description Display company name for the organization
+ * @example Acme corporation
+ */
+ company?: string;
+ /**
+ * @description Display location for the organization
+ * @example Berlin, Germany
+ */
+ location?: string;
+ /**
+ * Format: email
+ * @description Display email for the organization
+ * @example org@example.com
+ */
+ email?: string;
+ /** @description Specifies if organization projects are enabled for this org */
+ has_organization_projects: boolean;
+ /** @description Specifies if repository projects are enabled for repositories that belong to this org */
+ has_repository_projects: boolean;
+ is_verified?: boolean;
+ public_repos: number;
+ public_gists: number;
+ followers: number;
+ following: number;
+ type: string;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ plan?: {
+ name?: string;
+ space?: number;
+ private_repos?: number;
+ filled_seats?: number;
+ seats?: number;
+ };
+ };
+ /**
+ * Copilot Business Seat Detail
+ * @description Information about a Copilot Business seat assignment for a user, team, or organization.
+ */
+ "copilot-seat-details": {
+ /** @description The assignee that has been granted access to GitHub Copilot. */
+ assignee: {
+ [key: string]: unknown;
+ } & (
+ | components["schemas"]["simple-user"]
+ | components["schemas"]["team"]
+ | components["schemas"]["organization"]
+ );
+ /** @description The team that granted access to GitHub Copilot to the assignee. This will be null if the user was assigned a seat individually. */
+ assigning_team?: components["schemas"]["team"] | null;
+ /**
+ * Format: date
+ * @description The pending cancellation date for the seat, in `YYYY-MM-DD` format. This will be null unless the assignee's Copilot access has been canceled during the current billing cycle. If the seat has been cancelled, this corresponds to the start of the organization's next billing cycle.
+ */
+ pending_cancellation_date?: string | null;
+ /**
+ * Format: date-time
+ * @description Timestamp of user's last GitHub Copilot activity, in ISO 8601 format.
+ */
+ last_activity_at?: string | null;
+ /** @description Last editor that was used by the user for a GitHub Copilot completion. */
+ last_activity_editor?: string | null;
+ /**
+ * Format: date-time
+ * @description Timestamp of when the assignee was last granted access to GitHub Copilot, in ISO 8601 format.
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @description Timestamp of when the assignee's GitHub Copilot access was last updated, in ISO 8601 format.
+ */
+ updated_at?: string;
+ };
+ /**
+ * Dependabot Secret for an Organization
+ * @description Secrets for GitHub Dependabot for an organization.
+ */
+ "organization-dependabot-secret": {
+ /**
+ * @description The name of the secret.
+ * @example SECRET_TOKEN
+ */
+ name: string;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * @description Visibility of a secret
+ * @enum {string}
+ */
+ visibility: "all" | "private" | "selected";
+ /**
+ * Format: uri
+ * @example https://api.github.com/organizations/org/dependabot/secrets/my_secret/repositories
+ */
+ selected_repositories_url?: string;
+ };
+ /**
+ * DependabotPublicKey
+ * @description The public key used for setting Dependabot Secrets.
+ */
+ "dependabot-public-key": {
+ /**
+ * @description The identifier for the key.
+ * @example 1234567
+ */
+ key_id: string;
+ /**
+ * @description The Base64 encoded public key.
+ * @example hBT5WZEj8ZoOv6TYJsfWq7MxTEQopZO5/IT3ZCVQPzs=
+ */
+ key: string;
+ };
+ /**
+ * Minimal Repository
+ * @description Minimal Repository
+ */
+ "nullable-minimal-repository": {
+ /** @example 1296269 */
+ id: number;
+ /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */
+ node_id: string;
+ /** @example Hello-World */
+ name: string;
+ /** @example octocat/Hello-World */
+ full_name: string;
+ owner: components["schemas"]["simple-user"];
+ private: boolean;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World
+ */
+ html_url: string;
+ /** @example This your first repo! */
+ description: string | null;
+ fork: boolean;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World
+ */
+ url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref} */
+ archive_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/assignees{/user} */
+ assignees_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha} */
+ blobs_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/branches{/branch} */
+ branches_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator} */
+ collaborators_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/comments{/number} */
+ comments_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/commits{/sha} */
+ commits_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head} */
+ compare_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/contents/{+path} */
+ contents_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/contributors
+ */
+ contributors_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/deployments
+ */
+ deployments_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/downloads
+ */
+ downloads_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/events
+ */
+ events_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/forks
+ */
+ forks_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/commits{/sha} */
+ git_commits_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/refs{/sha} */
+ git_refs_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/tags{/sha} */
+ git_tags_url: string;
+ git_url?: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues/comments{/number} */
+ issue_comment_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues/events{/number} */
+ issue_events_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues{/number} */
+ issues_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/keys{/key_id} */
+ keys_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/labels{/name} */
+ labels_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/languages
+ */
+ languages_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/merges
+ */
+ merges_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/milestones{/number} */
+ milestones_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating} */
+ notifications_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/pulls{/number} */
+ pulls_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/releases{/id} */
+ releases_url: string;
+ ssh_url?: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/stargazers
+ */
+ stargazers_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/statuses/{sha} */
+ statuses_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/subscribers
+ */
+ subscribers_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/subscription
+ */
+ subscription_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/tags
+ */
+ tags_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/teams
+ */
+ teams_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/trees{/sha} */
+ trees_url: string;
+ clone_url?: string;
+ mirror_url?: string | null;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/hooks
+ */
+ hooks_url: string;
+ svn_url?: string;
+ homepage?: string | null;
+ language?: string | null;
+ forks_count?: number;
+ stargazers_count?: number;
+ watchers_count?: number;
+ /** @description The size of the repository, in kilobytes. Size is calculated hourly. When a repository is initially created, the size is 0. */
+ size?: number;
+ default_branch?: string;
+ open_issues_count?: number;
+ is_template?: boolean;
+ topics?: string[];
+ has_issues?: boolean;
+ has_projects?: boolean;
+ has_wiki?: boolean;
+ has_pages?: boolean;
+ has_downloads?: boolean;
+ has_discussions?: boolean;
+ archived?: boolean;
+ disabled?: boolean;
+ visibility?: string;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:06:43Z
+ */
+ pushed_at?: string | null;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:01:12Z
+ */
+ created_at?: string | null;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:14:43Z
+ */
+ updated_at?: string | null;
+ permissions?: {
+ admin?: boolean;
+ maintain?: boolean;
+ push?: boolean;
+ triage?: boolean;
+ pull?: boolean;
+ };
+ /** @example admin */
+ role_name?: string;
+ temp_clone_token?: string;
+ delete_branch_on_merge?: boolean;
+ subscribers_count?: number;
+ network_count?: number;
+ code_of_conduct?: components["schemas"]["code-of-conduct"];
+ license?: {
+ key?: string;
+ name?: string;
+ spdx_id?: string;
+ url?: string;
+ node_id?: string;
+ } | null;
+ /** @example 0 */
+ forks?: number;
+ /** @example 0 */
+ open_issues?: number;
+ /** @example 0 */
+ watchers?: number;
+ allow_forking?: boolean;
+ /** @example false */
+ web_commit_signoff_required?: boolean;
+ security_and_analysis?: components["schemas"]["security-and-analysis"];
+ } | null;
+ /**
+ * Package
+ * @description A software package
+ */
+ package: {
+ /**
+ * @description Unique identifier of the package.
+ * @example 1
+ */
+ id: number;
+ /**
+ * @description The name of the package.
+ * @example super-linter
+ */
+ name: string;
+ /**
+ * @example docker
+ * @enum {string}
+ */
+ package_type:
+ | "npm"
+ | "maven"
+ | "rubygems"
+ | "docker"
+ | "nuget"
+ | "container";
+ /** @example https://api.github.com/orgs/github/packages/container/super-linter */
+ url: string;
+ /** @example https://github.com/orgs/github/packages/container/package/super-linter */
+ html_url: string;
+ /**
+ * @description The number of versions of the package.
+ * @example 1
+ */
+ version_count: number;
+ /**
+ * @example private
+ * @enum {string}
+ */
+ visibility: "private" | "public";
+ owner?: components["schemas"]["nullable-simple-user"];
+ repository?: components["schemas"]["nullable-minimal-repository"];
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ };
+ /**
+ * Organization Invitation
+ * @description Organization Invitation
+ */
+ "organization-invitation": {
+ id: number;
+ login: string | null;
+ email: string | null;
+ role: string;
+ created_at: string;
+ failed_at?: string | null;
+ failed_reason?: string | null;
+ inviter: components["schemas"]["simple-user"];
+ team_count: number;
+ /** @example "MDIyOk9yZ2FuaXphdGlvbkludml0YXRpb24x" */
+ node_id: string;
+ /** @example "https://api.github.com/organizations/16/invitations/1/teams" */
+ invitation_teams_url: string;
+ /** @example "member" */
+ invitation_source?: string;
+ };
+ /**
+ * Org Hook
+ * @description Org Hook
+ */
+ "org-hook": {
+ /** @example 1 */
+ id: number;
+ /**
+ * Format: uri
+ * @example https://api.github.com/orgs/octocat/hooks/1
+ */
+ url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/orgs/octocat/hooks/1/pings
+ */
+ ping_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/orgs/octocat/hooks/1/deliveries
+ */
+ deliveries_url?: string;
+ /** @example web */
+ name: string;
+ /**
+ * @example [
+ * "push",
+ * "pull_request"
+ * ]
+ */
+ events: string[];
+ /** @example true */
+ active: boolean;
+ config: {
+ /** @example "http://example.com/2" */
+ url?: string;
+ /** @example "0" */
+ insecure_ssl?: string;
+ /** @example "form" */
+ content_type?: string;
+ /** @example "********" */
+ secret?: string;
+ };
+ /**
+ * Format: date-time
+ * @example 2011-09-06T20:39:23Z
+ */
+ updated_at: string;
+ /**
+ * Format: date-time
+ * @example 2011-09-06T17:26:27Z
+ */
+ created_at: string;
+ type: string;
+ };
+ /**
+ * @description The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit is in effect.
+ * @example collaborators_only
+ * @enum {string}
+ */
+ "interaction-group":
+ | "existing_users"
+ | "contributors_only"
+ | "collaborators_only";
+ /**
+ * Interaction Limits
+ * @description Interaction limit settings.
+ */
+ "interaction-limit-response": {
+ limit: components["schemas"]["interaction-group"];
+ /** @example repository */
+ origin: string;
+ /**
+ * Format: date-time
+ * @example 2018-08-17T04:18:39Z
+ */
+ expires_at: string;
+ };
+ /**
+ * @description The duration of the interaction restriction. Default: `one_day`.
+ * @example one_month
+ * @enum {string}
+ */
+ "interaction-expiry":
+ | "one_day"
+ | "three_days"
+ | "one_week"
+ | "one_month"
+ | "six_months";
+ /**
+ * Interaction Restrictions
+ * @description Limit interactions to a specific type of user for a specified duration
+ */
+ "interaction-limit": {
+ limit: components["schemas"]["interaction-group"];
+ expiry?: components["schemas"]["interaction-expiry"];
+ };
+ /**
+ * Org Membership
+ * @description Org Membership
+ */
+ "org-membership": {
+ /**
+ * Format: uri
+ * @example https://api.github.com/orgs/octocat/memberships/defunkt
+ */
+ url: string;
+ /**
+ * @description The state of the member in the organization. The `pending` state indicates the user has not yet accepted an invitation.
+ * @example active
+ * @enum {string}
+ */
+ state: "active" | "pending";
+ /**
+ * @description The user's membership type in the organization.
+ * @example admin
+ * @enum {string}
+ */
+ role: "admin" | "member" | "billing_manager";
+ /**
+ * Format: uri
+ * @example https://api.github.com/orgs/octocat
+ */
+ organization_url: string;
+ organization: components["schemas"]["organization-simple"];
+ user: components["schemas"]["nullable-simple-user"];
+ permissions?: {
+ can_create_repository: boolean;
+ };
+ };
+ /**
+ * Migration
+ * @description A migration.
+ */
+ migration: {
+ /** @example 79 */
+ id: number;
+ owner: components["schemas"]["nullable-simple-user"];
+ /** @example 0b989ba4-242f-11e5-81e1-c7b6966d2516 */
+ guid: string;
+ /** @example pending */
+ state: string;
+ /** @example true */
+ lock_repositories: boolean;
+ exclude_metadata: boolean;
+ exclude_git_data: boolean;
+ exclude_attachments: boolean;
+ exclude_releases: boolean;
+ exclude_owner_projects: boolean;
+ org_metadata_only: boolean;
+ /** @description The repositories included in the migration. Only returned for export migrations. */
+ repositories: components["schemas"]["repository"][];
+ /**
+ * Format: uri
+ * @example https://api.github.com/orgs/octo-org/migrations/79
+ */
+ url: string;
+ /**
+ * Format: date-time
+ * @example 2015-07-06T15:33:38-07:00
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2015-07-06T15:33:38-07:00
+ */
+ updated_at: string;
+ node_id: string;
+ /** Format: uri */
+ archive_url?: string;
+ /** @description Exclude related items from being returned in the response in order to improve performance of the request. The array can include any of: `"repositories"`. */
+ exclude?: string[];
+ };
+ /**
+ * Organization Fine-Grained Permission
+ * @description A fine-grained permission that protects organization resources.
+ */
+ "organization-fine-grained-permission": {
+ name: string;
+ description: string;
+ };
+ /**
+ * Organization Role
+ * @description Organization roles
+ */
+ "organization-role": {
+ /** @description The unique identifier of the role. */
+ id: number;
+ /** @description The name of the role. */
+ name: string;
+ /** @description A short description about who this role is for or what permissions it grants. */
+ description?: string | null;
+ /** @description A list of permissions included in this role. */
+ permissions: string[];
+ organization: components["schemas"]["nullable-simple-user"];
+ /**
+ * Format: date-time
+ * @description The date and time the role was created.
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @description The date and time the role was last updated.
+ */
+ updated_at: string;
+ };
+ /**
+ * Package Version
+ * @description A version of a software package
+ */
+ "package-version": {
+ /**
+ * @description Unique identifier of the package version.
+ * @example 1
+ */
+ id: number;
+ /**
+ * @description The name of the package version.
+ * @example latest
+ */
+ name: string;
+ /** @example https://api.github.com/orgs/github/packages/container/super-linter/versions/786068 */
+ url: string;
+ /** @example https://github.com/orgs/github/packages/container/package/super-linter */
+ package_html_url: string;
+ /** @example https://github.com/orgs/github/packages/container/super-linter/786068 */
+ html_url?: string;
+ /** @example MIT */
+ license?: string;
+ description?: string;
+ /**
+ * Format: date-time
+ * @example 2011-04-10T20:09:31Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2014-03-03T18:58:10Z
+ */
+ updated_at: string;
+ /**
+ * Format: date-time
+ * @example 2014-03-03T18:58:10Z
+ */
+ deleted_at?: string;
+ /** Package Version Metadata */
+ metadata?: {
+ /**
+ * @example docker
+ * @enum {string}
+ */
+ package_type:
+ | "npm"
+ | "maven"
+ | "rubygems"
+ | "docker"
+ | "nuget"
+ | "container";
+ /** Container Metadata */
+ container?: {
+ tags: string[];
+ };
+ /** Docker Metadata */
+ docker?: {
+ tag?: string[];
+ };
+ };
+ };
+ /**
+ * Simple Organization Programmatic Access Grant Request
+ * @description Minimal representation of an organization programmatic access grant request for enumerations
+ */
+ "organization-programmatic-access-grant-request": {
+ /** @description Unique identifier of the request for access via fine-grained personal access token. The `pat_request_id` used to review PAT requests. */
+ id: number;
+ /** @description Reason for requesting access. */
+ reason: string | null;
+ owner: components["schemas"]["simple-user"];
+ /**
+ * @description Type of repository selection requested.
+ * @enum {string}
+ */
+ repository_selection: "none" | "all" | "subset";
+ /** @description URL to the list of repositories requested to be accessed via fine-grained personal access token. Should only be followed when `repository_selection` is `subset`. */
+ repositories_url: string;
+ /** @description Permissions requested, categorized by type of permission. */
+ permissions: {
+ organization?: {
+ [key: string]: string;
+ };
+ repository?: {
+ [key: string]: string;
+ };
+ other?: {
+ [key: string]: string;
+ };
+ };
+ /** @description Date and time when the request for access was created. */
+ created_at: string;
+ /** @description Whether the associated fine-grained personal access token has expired. */
+ token_expired: boolean;
+ /** @description Date and time when the associated fine-grained personal access token expires. */
+ token_expires_at: string | null;
+ /** @description Date and time when the associated fine-grained personal access token was last used for authentication. */
+ token_last_used_at: string | null;
+ };
+ /**
+ * Organization Programmatic Access Grant
+ * @description Minimal representation of an organization programmatic access grant for enumerations
+ */
+ "organization-programmatic-access-grant": {
+ /** @description Unique identifier of the fine-grained personal access token. The `pat_id` used to get details about an approved fine-grained personal access token. */
+ id: number;
+ owner: components["schemas"]["simple-user"];
+ /**
+ * @description Type of repository selection requested.
+ * @enum {string}
+ */
+ repository_selection: "none" | "all" | "subset";
+ /** @description URL to the list of repositories the fine-grained personal access token can access. Only follow when `repository_selection` is `subset`. */
+ repositories_url: string;
+ /** @description Permissions requested, categorized by type of permission. */
+ permissions: {
+ organization?: {
+ [key: string]: string;
+ };
+ repository?: {
+ [key: string]: string;
+ };
+ other?: {
+ [key: string]: string;
+ };
+ };
+ /** @description Date and time when the fine-grained personal access token was approved to access the organization. */
+ access_granted_at: string;
+ /** @description Whether the associated fine-grained personal access token has expired. */
+ token_expired: boolean;
+ /** @description Date and time when the associated fine-grained personal access token expires. */
+ token_expires_at: string | null;
+ /** @description Date and time when the associated fine-grained personal access token was last used for authentication. */
+ token_last_used_at: string | null;
+ };
+ /**
+ * Project
+ * @description Projects are a way to organize columns and cards of work.
+ */
+ project: {
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/api-playground/projects-test
+ */
+ owner_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/projects/1002604
+ */
+ url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/api-playground/projects-test/projects/12
+ */
+ html_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/projects/1002604/columns
+ */
+ columns_url: string;
+ /** @example 1002604 */
+ id: number;
+ /** @example MDc6UHJvamVjdDEwMDI2MDQ= */
+ node_id: string;
+ /**
+ * @description Name of the project
+ * @example Week One Sprint
+ */
+ name: string;
+ /**
+ * @description Body of the project
+ * @example This project represents the sprint of the first week in January
+ */
+ body: string | null;
+ /** @example 1 */
+ number: number;
+ /**
+ * @description State of the project; either 'open' or 'closed'
+ * @example open
+ */
+ state: string;
+ creator: components["schemas"]["nullable-simple-user"];
+ /**
+ * Format: date-time
+ * @example 2011-04-10T20:09:31Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2014-03-03T18:58:10Z
+ */
+ updated_at: string;
+ /**
+ * @description The baseline permission that all organization members have on this project. Only present if owner is an organization.
+ * @enum {string}
+ */
+ organization_permission?: "read" | "write" | "admin" | "none";
+ /** @description Whether or not this project can be seen by everyone. Only present if owner is an organization. */
+ private?: boolean;
+ };
+ /**
+ * Organization Custom Property
+ * @description Custom property defined on an organization
+ */
+ "org-custom-property": {
+ /** @description The name of the property */
+ property_name: string;
+ /**
+ * @description The type of the value for the property
+ * @example single_select
+ * @enum {string}
+ */
+ value_type: "string" | "single_select";
+ /** @description Whether the property is required. */
+ required?: boolean;
+ /** @description Default value of the property */
+ default_value?: string | string[] | null;
+ /** @description Short description of the property */
+ description?: string | null;
+ /**
+ * @description An ordered list of the allowed values of the property.
+ * The property can have up to 200 allowed values.
+ */
+ allowed_values?: string[] | null;
+ /**
+ * @description Who can edit the values of the property
+ * @example org_actors
+ * @enum {string|null}
+ */
+ values_editable_by?: "org_actors" | "org_and_repo_actors" | null;
+ };
+ /**
+ * Custom Property Value
+ * @description Custom property name and associated value
+ */
+ "custom-property-value": {
+ /** @description The name of the property */
+ property_name: string;
+ /** @description The value assigned to the property */
+ value: string | string[] | null;
+ };
+ /**
+ * Organization Repository Custom Property Values
+ * @description List of custom property values for a repository
+ */
+ "org-repo-custom-property-values": {
+ /** @example 1296269 */
+ repository_id: number;
+ /** @example Hello-World */
+ repository_name: string;
+ /** @example octocat/Hello-World */
+ repository_full_name: string;
+ /** @description List of custom property names and associated values */
+ properties: components["schemas"]["custom-property-value"][];
+ };
+ /**
+ * Repository
+ * @description A repository on GitHub.
+ */
+ "nullable-repository": {
+ /**
+ * @description Unique identifier of the repository
+ * @example 42
+ */
+ id: number;
+ /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */
+ node_id: string;
+ /**
+ * @description The name of the repository.
+ * @example Team Environment
+ */
+ name: string;
+ /** @example octocat/Hello-World */
+ full_name: string;
+ license: components["schemas"]["nullable-license-simple"];
+ forks: number;
+ permissions?: {
+ admin: boolean;
+ pull: boolean;
+ triage?: boolean;
+ push: boolean;
+ maintain?: boolean;
+ };
+ owner: components["schemas"]["simple-user"];
+ /**
+ * @description Whether the repository is private or public.
+ * @default false
+ */
+ private: boolean;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World
+ */
+ html_url: string;
+ /** @example This your first repo! */
+ description: string | null;
+ fork: boolean;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World
+ */
+ url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref} */
+ archive_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/assignees{/user} */
+ assignees_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha} */
+ blobs_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/branches{/branch} */
+ branches_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator} */
+ collaborators_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/comments{/number} */
+ comments_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/commits{/sha} */
+ commits_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head} */
+ compare_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/contents/{+path} */
+ contents_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/contributors
+ */
+ contributors_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/deployments
+ */
+ deployments_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/downloads
+ */
+ downloads_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/events
+ */
+ events_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/forks
+ */
+ forks_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/commits{/sha} */
+ git_commits_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/refs{/sha} */
+ git_refs_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/tags{/sha} */
+ git_tags_url: string;
+ /** @example git:github.com/octocat/Hello-World.git */
+ git_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues/comments{/number} */
+ issue_comment_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues/events{/number} */
+ issue_events_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues{/number} */
+ issues_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/keys{/key_id} */
+ keys_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/labels{/name} */
+ labels_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/languages
+ */
+ languages_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/merges
+ */
+ merges_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/milestones{/number} */
+ milestones_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating} */
+ notifications_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/pulls{/number} */
+ pulls_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/releases{/id} */
+ releases_url: string;
+ /** @example git@github.com:octocat/Hello-World.git */
+ ssh_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/stargazers
+ */
+ stargazers_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/statuses/{sha} */
+ statuses_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/subscribers
+ */
+ subscribers_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/subscription
+ */
+ subscription_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/tags
+ */
+ tags_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/teams
+ */
+ teams_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/trees{/sha} */
+ trees_url: string;
+ /** @example https://github.com/octocat/Hello-World.git */
+ clone_url: string;
+ /**
+ * Format: uri
+ * @example git:git.example.com/octocat/Hello-World
+ */
+ mirror_url: string | null;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/hooks
+ */
+ hooks_url: string;
+ /**
+ * Format: uri
+ * @example https://svn.github.com/octocat/Hello-World
+ */
+ svn_url: string;
+ /**
+ * Format: uri
+ * @example https://github.com
+ */
+ homepage: string | null;
+ language: string | null;
+ /** @example 9 */
+ forks_count: number;
+ /** @example 80 */
+ stargazers_count: number;
+ /** @example 80 */
+ watchers_count: number;
+ /**
+ * @description The size of the repository, in kilobytes. Size is calculated hourly. When a repository is initially created, the size is 0.
+ * @example 108
+ */
+ size: number;
+ /**
+ * @description The default branch of the repository.
+ * @example master
+ */
+ default_branch: string;
+ /** @example 0 */
+ open_issues_count: number;
+ /**
+ * @description Whether this repository acts as a template that can be used to generate new repositories.
+ * @default false
+ * @example true
+ */
+ is_template?: boolean;
+ topics?: string[];
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ * @example true
+ */
+ has_issues: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ * @example true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ * @example true
+ */
+ has_wiki: boolean;
+ has_pages: boolean;
+ /**
+ * @deprecated
+ * @description Whether downloads are enabled.
+ * @default true
+ * @example true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ * @example true
+ */
+ has_discussions?: boolean;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** @description Returns whether or not this repository disabled. */
+ disabled: boolean;
+ /**
+ * @description The repository visibility: public, private, or internal.
+ * @default public
+ */
+ visibility?: string;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:06:43Z
+ */
+ pushed_at: string | null;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:01:12Z
+ */
+ created_at: string | null;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:14:43Z
+ */
+ updated_at: string | null;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ * @example true
+ */
+ allow_rebase_merge?: boolean;
+ temp_clone_token?: string;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ * @example true
+ */
+ allow_squash_merge?: boolean;
+ /**
+ * @description Whether to allow Auto-merge to be used on pull requests.
+ * @default false
+ * @example false
+ */
+ allow_auto_merge?: boolean;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ * @example false
+ */
+ delete_branch_on_merge?: boolean;
+ /**
+ * @description Whether or not a pull request head branch that is behind its base branch can always be updated even if it is not required to be up to date before merging.
+ * @default false
+ * @example false
+ */
+ allow_update_branch?: boolean;
+ /**
+ * @deprecated
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?: "PR_BODY" | "COMMIT_MESSAGES" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ * @example true
+ */
+ allow_merge_commit?: boolean;
+ /** @description Whether to allow forking this repo */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to require contributors to sign off on web-based commits
+ * @default false
+ */
+ web_commit_signoff_required?: boolean;
+ open_issues: number;
+ watchers: number;
+ master_branch?: string;
+ /** @example "2020-07-09T00:17:42Z" */
+ starred_at?: string;
+ /** @description Whether anonymous git access is enabled for this repository */
+ anonymous_access_enabled?: boolean;
+ } | null;
+ /**
+ * Code Of Conduct Simple
+ * @description Code of Conduct Simple
+ */
+ "code-of-conduct-simple": {
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/github/docs/community/code_of_conduct
+ */
+ url: string;
+ /** @example citizen_code_of_conduct */
+ key: string;
+ /** @example Citizen Code of Conduct */
+ name: string;
+ /**
+ * Format: uri
+ * @example https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md
+ */
+ html_url: string | null;
+ };
+ /**
+ * Full Repository
+ * @description Full Repository
+ */
+ "full-repository": {
+ /** @example 1296269 */
+ id: number;
+ /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */
+ node_id: string;
+ /** @example Hello-World */
+ name: string;
+ /** @example octocat/Hello-World */
+ full_name: string;
+ owner: components["schemas"]["simple-user"];
+ private: boolean;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World
+ */
+ html_url: string;
+ /** @example This your first repo! */
+ description: string | null;
+ fork: boolean;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World
+ */
+ url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref} */
+ archive_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/assignees{/user} */
+ assignees_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha} */
+ blobs_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/branches{/branch} */
+ branches_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator} */
+ collaborators_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/comments{/number} */
+ comments_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/commits{/sha} */
+ commits_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head} */
+ compare_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/contents/{+path} */
+ contents_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/contributors
+ */
+ contributors_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/deployments
+ */
+ deployments_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/downloads
+ */
+ downloads_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/events
+ */
+ events_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/forks
+ */
+ forks_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/commits{/sha} */
+ git_commits_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/refs{/sha} */
+ git_refs_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/tags{/sha} */
+ git_tags_url: string;
+ /** @example git:github.com/octocat/Hello-World.git */
+ git_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues/comments{/number} */
+ issue_comment_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues/events{/number} */
+ issue_events_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues{/number} */
+ issues_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/keys{/key_id} */
+ keys_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/labels{/name} */
+ labels_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/languages
+ */
+ languages_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/merges
+ */
+ merges_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/milestones{/number} */
+ milestones_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating} */
+ notifications_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/pulls{/number} */
+ pulls_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/releases{/id} */
+ releases_url: string;
+ /** @example git@github.com:octocat/Hello-World.git */
+ ssh_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/stargazers
+ */
+ stargazers_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/statuses/{sha} */
+ statuses_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/subscribers
+ */
+ subscribers_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/subscription
+ */
+ subscription_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/tags
+ */
+ tags_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/teams
+ */
+ teams_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/trees{/sha} */
+ trees_url: string;
+ /** @example https://github.com/octocat/Hello-World.git */
+ clone_url: string;
+ /**
+ * Format: uri
+ * @example git:git.example.com/octocat/Hello-World
+ */
+ mirror_url: string | null;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/hooks
+ */
+ hooks_url: string;
+ /**
+ * Format: uri
+ * @example https://svn.github.com/octocat/Hello-World
+ */
+ svn_url: string;
+ /**
+ * Format: uri
+ * @example https://github.com
+ */
+ homepage: string | null;
+ language: string | null;
+ /** @example 9 */
+ forks_count: number;
+ /** @example 80 */
+ stargazers_count: number;
+ /** @example 80 */
+ watchers_count: number;
+ /**
+ * @description The size of the repository, in kilobytes. Size is calculated hourly. When a repository is initially created, the size is 0.
+ * @example 108
+ */
+ size: number;
+ /** @example master */
+ default_branch: string;
+ /** @example 0 */
+ open_issues_count: number;
+ /** @example true */
+ is_template?: boolean;
+ /**
+ * @example [
+ * "octocat",
+ * "atom",
+ * "electron",
+ * "API"
+ * ]
+ */
+ topics?: string[];
+ /** @example true */
+ has_issues: boolean;
+ /** @example true */
+ has_projects: boolean;
+ /** @example true */
+ has_wiki: boolean;
+ has_pages: boolean;
+ /** @example true */
+ has_downloads?: boolean;
+ /** @example true */
+ has_discussions: boolean;
+ archived: boolean;
+ /** @description Returns whether or not this repository disabled. */
+ disabled: boolean;
+ /**
+ * @description The repository visibility: public, private, or internal.
+ * @example public
+ */
+ visibility?: string;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:06:43Z
+ */
+ pushed_at: string;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:01:12Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:14:43Z
+ */
+ updated_at: string;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ push: boolean;
+ triage?: boolean;
+ pull: boolean;
+ };
+ /** @example true */
+ allow_rebase_merge?: boolean;
+ template_repository?: components["schemas"]["nullable-repository"];
+ temp_clone_token?: string | null;
+ /** @example true */
+ allow_squash_merge?: boolean;
+ /** @example false */
+ allow_auto_merge?: boolean;
+ /** @example false */
+ delete_branch_on_merge?: boolean;
+ /** @example true */
+ allow_merge_commit?: boolean;
+ /** @example true */
+ allow_update_branch?: boolean;
+ /** @example false */
+ use_squash_pr_title_as_default?: boolean;
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @example PR_TITLE
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @example PR_BODY
+ * @enum {string}
+ */
+ squash_merge_commit_message?: "PR_BODY" | "COMMIT_MESSAGES" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @example PR_TITLE
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @example PR_BODY
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /** @example true */
+ allow_forking?: boolean;
+ /** @example false */
+ web_commit_signoff_required?: boolean;
+ /** @example 42 */
+ subscribers_count: number;
+ /** @example 0 */
+ network_count: number;
+ license: components["schemas"]["nullable-license-simple"];
+ organization?: components["schemas"]["nullable-simple-user"];
+ parent?: components["schemas"]["repository"];
+ source?: components["schemas"]["repository"];
+ forks: number;
+ master_branch?: string;
+ open_issues: number;
+ watchers: number;
+ /**
+ * @description Whether anonymous git access is allowed.
+ * @default true
+ */
+ anonymous_access_enabled?: boolean;
+ code_of_conduct?: components["schemas"]["code-of-conduct-simple"];
+ security_and_analysis?: components["schemas"]["security-and-analysis"];
+ /** @description The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. */
+ custom_properties?: {
+ [key: string]: unknown;
+ };
+ };
+ /**
+ * @description The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins can view insights on the Rule Insights page (`evaluate` is only available with GitHub Enterprise).
+ * @enum {string}
+ */
+ "repository-rule-enforcement": "disabled" | "active" | "evaluate";
+ /**
+ * Repository Ruleset Bypass Actor
+ * @description An actor that can bypass rules in a ruleset
+ */
+ "repository-ruleset-bypass-actor": {
+ /** @description The ID of the actor that can bypass a ruleset. If `actor_type` is `OrganizationAdmin`, this should be `1`. If `actor_type` is `DeployKey`, this should be null. `OrganizationAdmin` is not applicable for personal repositories. */
+ actor_id?: number | null;
+ /**
+ * @description The type of actor that can bypass a ruleset.
+ *
+ * @enum {string}
+ */
+ actor_type:
+ | "Integration"
+ | "OrganizationAdmin"
+ | "RepositoryRole"
+ | "Team"
+ | "DeployKey";
+ /**
+ * @description When the specified actor can bypass the ruleset. `pull_request` means that an actor can only bypass rules on pull requests. `pull_request` is not applicable for the `DeployKey` actor type.
+ *
+ * @enum {string}
+ */
+ bypass_mode: "always" | "pull_request";
+ };
+ /**
+ * Repository ruleset conditions for ref names
+ * @description Parameters for a repository ruleset ref name condition
+ */
+ "repository-ruleset-conditions": {
+ ref_name?: {
+ /** @description Array of ref names or patterns to include. One of these patterns must match for the condition to pass. Also accepts `~DEFAULT_BRANCH` to include the default branch or `~ALL` to include all branches. */
+ include?: string[];
+ /** @description Array of ref names or patterns to exclude. The condition will not pass if any of these patterns match. */
+ exclude?: string[];
+ };
+ };
+ /**
+ * Repository ruleset conditions for repository names
+ * @description Parameters for a repository name condition
+ */
+ "repository-ruleset-conditions-repository-name-target": {
+ repository_name: {
+ /** @description Array of repository names or patterns to include. One of these patterns must match for the condition to pass. Also accepts `~ALL` to include all repositories. */
+ include?: string[];
+ /** @description Array of repository names or patterns to exclude. The condition will not pass if any of these patterns match. */
+ exclude?: string[];
+ /** @description Whether renaming of target repositories is prevented. */
+ protected?: boolean;
+ };
+ };
+ /**
+ * Repository ruleset conditions for repository IDs
+ * @description Parameters for a repository ID condition
+ */
+ "repository-ruleset-conditions-repository-id-target": {
+ repository_id: {
+ /** @description The repository IDs that the ruleset applies to. One of these IDs must match for the condition to pass. */
+ repository_ids?: number[];
+ };
+ };
+ /**
+ * Repository ruleset property targeting definition
+ * @description Parameters for a targeting a repository property
+ */
+ "repository-ruleset-conditions-repository-property-spec": {
+ /** @description The name of the repository property to target */
+ name: string;
+ /** @description The values to match for the repository property */
+ property_values: string[];
+ };
+ /**
+ * Repository ruleset conditions for repository properties
+ * @description Parameters for a repository property condition
+ */
+ "repository-ruleset-conditions-repository-property-target": {
+ repository_property: {
+ /** @description The repository properties and values to include. All of these properties must match for the condition to pass. */
+ include?: components["schemas"]["repository-ruleset-conditions-repository-property-spec"][];
+ /** @description The repository properties and values to exclude. The condition will not pass if any of these properties match. */
+ exclude?: components["schemas"]["repository-ruleset-conditions-repository-property-spec"][];
+ };
+ };
+ /**
+ * Organization ruleset conditions
+ * @description Conditions for an organization ruleset. The conditions object should contain both `repository_name` and `ref_name` properties or both `repository_id` and `ref_name` properties.
+ */
+ "org-ruleset-conditions":
+ | (components["schemas"]["repository-ruleset-conditions"] &
+ components["schemas"]["repository-ruleset-conditions-repository-name-target"])
+ | (components["schemas"]["repository-ruleset-conditions"] &
+ components["schemas"]["repository-ruleset-conditions-repository-id-target"])
+ | (components["schemas"]["repository-ruleset-conditions"] &
+ components["schemas"]["repository-ruleset-conditions-repository-property-target"]);
+ /**
+ * creation
+ * @description Only allow users with bypass permission to create matching refs.
+ */
+ "repository-rule-creation": {
+ /** @enum {string} */
+ type: "creation";
+ };
+ /**
+ * update
+ * @description Only allow users with bypass permission to update matching refs.
+ */
+ "repository-rule-update": {
+ /** @enum {string} */
+ type: "update";
+ parameters?: {
+ /** @description Branch can pull changes from its upstream repository */
+ update_allows_fetch_and_merge: boolean;
+ };
+ };
+ /**
+ * deletion
+ * @description Only allow users with bypass permissions to delete matching refs.
+ */
+ "repository-rule-deletion": {
+ /** @enum {string} */
+ type: "deletion";
+ };
+ /**
+ * required_linear_history
+ * @description Prevent merge commits from being pushed to matching refs.
+ */
+ "repository-rule-required-linear-history": {
+ /** @enum {string} */
+ type: "required_linear_history";
+ };
+ /**
+ * required_deployments
+ * @description Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.
+ */
+ "repository-rule-required-deployments": {
+ /** @enum {string} */
+ type: "required_deployments";
+ parameters?: {
+ /** @description The environments that must be successfully deployed to before branches can be merged. */
+ required_deployment_environments: string[];
+ };
+ };
+ /**
+ * required_signatures
+ * @description Commits pushed to matching refs must have verified signatures.
+ */
+ "repository-rule-required-signatures": {
+ /** @enum {string} */
+ type: "required_signatures";
+ };
+ /**
+ * pull_request
+ * @description Require all commits be made to a non-target branch and submitted via a pull request before they can be merged.
+ */
+ "repository-rule-pull-request": {
+ /** @enum {string} */
+ type: "pull_request";
+ parameters?: {
+ /** @description New, reviewable commits pushed will dismiss previous pull request review approvals. */
+ dismiss_stale_reviews_on_push: boolean;
+ /** @description Require an approving review in pull requests that modify files that have a designated code owner. */
+ require_code_owner_review: boolean;
+ /** @description Whether the most recent reviewable push must be approved by someone other than the person who pushed it. */
+ require_last_push_approval: boolean;
+ /** @description The number of approving reviews that are required before a pull request can be merged. */
+ required_approving_review_count: number;
+ /** @description All conversations on code must be resolved before a pull request can be merged. */
+ required_review_thread_resolution: boolean;
+ };
+ };
+ /**
+ * StatusCheckConfiguration
+ * @description Required status check
+ */
+ "repository-rule-params-status-check-configuration": {
+ /** @description The status check context name that must be present on the commit. */
+ context: string;
+ /** @description The optional integration ID that this status check must originate from. */
+ integration_id?: number;
+ };
+ /**
+ * required_status_checks
+ * @description Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed to another ref where the checks pass.
+ */
+ "repository-rule-required-status-checks": {
+ /** @enum {string} */
+ type: "required_status_checks";
+ parameters?: {
+ /** @description Status checks that are required. */
+ required_status_checks: components["schemas"]["repository-rule-params-status-check-configuration"][];
+ /** @description Whether pull requests targeting a matching branch must be tested with the latest code. This setting will not take effect unless at least one status check is enabled. */
+ strict_required_status_checks_policy: boolean;
+ };
+ };
+ /**
+ * non_fast_forward
+ * @description Prevent users with push access from force pushing to refs.
+ */
+ "repository-rule-non-fast-forward": {
+ /** @enum {string} */
+ type: "non_fast_forward";
+ };
+ /**
+ * commit_message_pattern
+ * @description Parameters to be used for the commit_message_pattern rule
+ */
+ "repository-rule-commit-message-pattern": {
+ /** @enum {string} */
+ type: "commit_message_pattern";
+ parameters?: {
+ /** @description How this rule will appear to users. */
+ name?: string;
+ /** @description If true, the rule will fail if the pattern matches. */
+ negate?: boolean;
+ /**
+ * @description The operator to use for matching.
+ * @enum {string}
+ */
+ operator: "starts_with" | "ends_with" | "contains" | "regex";
+ /** @description The pattern to match with. */
+ pattern: string;
+ };
+ };
+ /**
+ * commit_author_email_pattern
+ * @description Parameters to be used for the commit_author_email_pattern rule
+ */
+ "repository-rule-commit-author-email-pattern": {
+ /** @enum {string} */
+ type: "commit_author_email_pattern";
+ parameters?: {
+ /** @description How this rule will appear to users. */
+ name?: string;
+ /** @description If true, the rule will fail if the pattern matches. */
+ negate?: boolean;
+ /**
+ * @description The operator to use for matching.
+ * @enum {string}
+ */
+ operator: "starts_with" | "ends_with" | "contains" | "regex";
+ /** @description The pattern to match with. */
+ pattern: string;
+ };
+ };
+ /**
+ * committer_email_pattern
+ * @description Parameters to be used for the committer_email_pattern rule
+ */
+ "repository-rule-committer-email-pattern": {
+ /** @enum {string} */
+ type: "committer_email_pattern";
+ parameters?: {
+ /** @description How this rule will appear to users. */
+ name?: string;
+ /** @description If true, the rule will fail if the pattern matches. */
+ negate?: boolean;
+ /**
+ * @description The operator to use for matching.
+ * @enum {string}
+ */
+ operator: "starts_with" | "ends_with" | "contains" | "regex";
+ /** @description The pattern to match with. */
+ pattern: string;
+ };
+ };
+ /**
+ * branch_name_pattern
+ * @description Parameters to be used for the branch_name_pattern rule
+ */
+ "repository-rule-branch-name-pattern": {
+ /** @enum {string} */
+ type: "branch_name_pattern";
+ parameters?: {
+ /** @description How this rule will appear to users. */
+ name?: string;
+ /** @description If true, the rule will fail if the pattern matches. */
+ negate?: boolean;
+ /**
+ * @description The operator to use for matching.
+ * @enum {string}
+ */
+ operator: "starts_with" | "ends_with" | "contains" | "regex";
+ /** @description The pattern to match with. */
+ pattern: string;
+ };
+ };
+ /**
+ * tag_name_pattern
+ * @description Parameters to be used for the tag_name_pattern rule
+ */
+ "repository-rule-tag-name-pattern": {
+ /** @enum {string} */
+ type: "tag_name_pattern";
+ parameters?: {
+ /** @description How this rule will appear to users. */
+ name?: string;
+ /** @description If true, the rule will fail if the pattern matches. */
+ negate?: boolean;
+ /**
+ * @description The operator to use for matching.
+ * @enum {string}
+ */
+ operator: "starts_with" | "ends_with" | "contains" | "regex";
+ /** @description The pattern to match with. */
+ pattern: string;
+ };
+ };
+ /**
+ * RestrictedCommits
+ * @description Restricted commit
+ */
+ "repository-rule-params-restricted-commits": {
+ /** @description Full or abbreviated commit hash to reject */
+ oid: string;
+ /** @description Reason for restriction */
+ reason?: string;
+ };
+ /**
+ * WorkflowFileReference
+ * @description A workflow that must run for this rule to pass
+ */
+ "repository-rule-params-workflow-file-reference": {
+ /** @description The path to the workflow file */
+ path: string;
+ /** @description The ref (branch or tag) of the workflow file to use */
+ ref?: string;
+ /** @description The ID of the repository where the workflow is defined */
+ repository_id: number;
+ /** @description The commit SHA of the workflow file to use */
+ sha?: string;
+ };
+ /**
+ * workflows
+ * @description Require all changes made to a targeted branch to pass the specified workflows before they can be merged.
+ */
+ "repository-rule-workflows": {
+ /** @enum {string} */
+ type: "workflows";
+ parameters?: {
+ /** @description Workflows that must pass for this rule to pass. */
+ workflows: components["schemas"]["repository-rule-params-workflow-file-reference"][];
+ };
+ };
+ /**
+ * CodeScanningTool
+ * @description A tool that must provide code scanning results for this rule to pass.
+ */
+ "repository-rule-params-code-scanning-tool": {
+ /**
+ * @description The severity level at which code scanning results that raise alerts block a reference update. For more information on alert severity levels, see "[About code scanning alerts](https://docs.github.com/code-security/code-scanning/managing-code-scanning-alerts/about-code-scanning-alerts#about-alert-severity-and-security-severity-levels)."
+ * @enum {string}
+ */
+ alerts_threshold: "none" | "errors" | "errors_and_warnings" | "all";
+ /**
+ * @description The severity level at which code scanning results that raise security alerts block a reference update. For more information on security severity levels, see "[About code scanning alerts](https://docs.github.com/code-security/code-scanning/managing-code-scanning-alerts/about-code-scanning-alerts#about-alert-severity-and-security-severity-levels)."
+ * @enum {string}
+ */
+ security_alerts_threshold:
+ | "none"
+ | "critical"
+ | "high_or_higher"
+ | "medium_or_higher"
+ | "all";
+ /** @description The name of a code scanning tool */
+ tool: string;
+ };
+ /**
+ * Repository Rule
+ * @description A repository rule.
+ */
+ "repository-rule":
+ | components["schemas"]["repository-rule-creation"]
+ | components["schemas"]["repository-rule-update"]
+ | components["schemas"]["repository-rule-deletion"]
+ | components["schemas"]["repository-rule-required-linear-history"]
+ | components["schemas"]["repository-rule-required-deployments"]
+ | components["schemas"]["repository-rule-required-signatures"]
+ | components["schemas"]["repository-rule-pull-request"]
+ | components["schemas"]["repository-rule-required-status-checks"]
+ | components["schemas"]["repository-rule-non-fast-forward"]
+ | components["schemas"]["repository-rule-commit-message-pattern"]
+ | components["schemas"]["repository-rule-commit-author-email-pattern"]
+ | components["schemas"]["repository-rule-committer-email-pattern"]
+ | components["schemas"]["repository-rule-branch-name-pattern"]
+ | components["schemas"]["repository-rule-tag-name-pattern"]
+ | {
+ /** @enum {string} */
+ type: "file_path_restriction";
+ parameters?: {
+ /** @description The file paths that are restricted from being pushed to the commit graph. */
+ restricted_file_paths: string[];
+ };
+ }
+ | {
+ /** @enum {string} */
+ type: "max_file_path_length";
+ parameters?: {
+ /** @description The maximum amount of characters allowed in file paths */
+ max_file_path_length: number;
+ };
+ }
+ | {
+ /** @enum {string} */
+ type: "file_extension_restriction";
+ parameters?: {
+ /** @description The file extensions that are restricted from being pushed to the commit graph. */
+ restricted_file_extensions: string[];
+ };
+ }
+ | {
+ /** @enum {string} */
+ type: "max_file_size";
+ parameters?: {
+ /** @description The maximum file size allowed in megabytes. This limit does not apply to Git Large File Storage (Git LFS). */
+ max_file_size: number;
+ };
+ }
+ | components["schemas"]["repository-rule-workflows"];
+ /**
+ * Repository ruleset
+ * @description A set of rules to apply when specified conditions are met.
+ */
+ "repository-ruleset": {
+ /** @description The ID of the ruleset */
+ id: number;
+ /** @description The name of the ruleset */
+ name: string;
+ /**
+ * @description The target of the ruleset
+ *
+ * **Note**: The `push` target is in beta and is subject to change.
+ * @enum {string}
+ */
+ target?: "branch" | "tag" | "push";
+ /**
+ * @description The type of the source of the ruleset
+ * @enum {string}
+ */
+ source_type?: "Repository" | "Organization";
+ /** @description The name of the source */
+ source: string;
+ enforcement: components["schemas"]["repository-rule-enforcement"];
+ /** @description The actors that can bypass the rules in this ruleset */
+ bypass_actors?: components["schemas"]["repository-ruleset-bypass-actor"][];
+ /**
+ * @description The bypass type of the user making the API request for this ruleset. This field is only returned when
+ * querying the repository-level endpoint.
+ * @enum {string}
+ */
+ current_user_can_bypass?: "always" | "pull_requests_only" | "never";
+ node_id?: string;
+ _links?: {
+ self?: {
+ /** @description The URL of the ruleset */
+ href?: string;
+ };
+ html?: {
+ /** @description The html URL of the ruleset */
+ href?: string;
+ };
+ };
+ conditions?:
+ | (
+ | components["schemas"]["repository-ruleset-conditions"]
+ | components["schemas"]["org-ruleset-conditions"]
+ )
+ | null;
+ rules?: components["schemas"]["repository-rule"][];
+ /** Format: date-time */
+ created_at?: string;
+ /** Format: date-time */
+ updated_at?: string;
+ };
+ /**
+ * Rule Suites
+ * @description Response
+ */
+ "rule-suites": {
+ /** @description The unique identifier of the rule insight. */
+ id?: number;
+ /** @description The number that identifies the user. */
+ actor_id?: number;
+ /** @description The handle for the GitHub user account. */
+ actor_name?: string;
+ /** @description The first commit sha before the push evaluation. */
+ before_sha?: string;
+ /** @description The last commit sha in the push evaluation. */
+ after_sha?: string;
+ /** @description The ref name that the evaluation ran on. */
+ ref?: string;
+ /** @description The ID of the repository associated with the rule evaluation. */
+ repository_id?: number;
+ /** @description The name of the repository without the `.git` extension. */
+ repository_name?: string;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:06:43Z
+ */
+ pushed_at?: string;
+ /**
+ * @description The result of the rule evaluations for rules with the `active` enforcement status.
+ * @enum {string}
+ */
+ result?: "pass" | "fail" | "bypass";
+ /**
+ * @description The result of the rule evaluations for rules with the `active` and `evaluate` enforcement statuses, demonstrating whether rules would pass or fail if all rules in the rule suite were `active`.
+ * @enum {string}
+ */
+ evaluation_result?: "pass" | "fail";
+ }[];
+ /**
+ * Rule Suite
+ * @description Response
+ */
+ "rule-suite": {
+ /** @description The unique identifier of the rule insight. */
+ id?: number;
+ /** @description The number that identifies the user. */
+ actor_id?: number | null;
+ /** @description The handle for the GitHub user account. */
+ actor_name?: string | null;
+ /** @description The first commit sha before the push evaluation. */
+ before_sha?: string;
+ /** @description The last commit sha in the push evaluation. */
+ after_sha?: string;
+ /** @description The ref name that the evaluation ran on. */
+ ref?: string;
+ /** @description The ID of the repository associated with the rule evaluation. */
+ repository_id?: number;
+ /** @description The name of the repository without the `.git` extension. */
+ repository_name?: string;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:06:43Z
+ */
+ pushed_at?: string;
+ /**
+ * @description The result of the rule evaluations for rules with the `active` enforcement status.
+ * @enum {string}
+ */
+ result?: "pass" | "fail" | "bypass";
+ /**
+ * @description The result of the rule evaluations for rules with the `active` and `evaluate` enforcement statuses, demonstrating whether rules would pass or fail if all rules in the rule suite were `active`.
+ * @enum {string}
+ */
+ evaluation_result?: "pass" | "fail";
+ /** @description Details on the evaluated rules. */
+ rule_evaluations?: {
+ rule_source?: {
+ /** @description The type of rule source. */
+ type?: string;
+ /** @description The ID of the rule source. */
+ id?: number | null;
+ /** @description The name of the rule source. */
+ name?: string | null;
+ };
+ /**
+ * @description The enforcement level of this rule source.
+ * @enum {string}
+ */
+ enforcement?: "active" | "evaluate" | "deleted ruleset";
+ /**
+ * @description The result of the evaluation of the individual rule.
+ * @enum {string}
+ */
+ result?: "pass" | "fail";
+ /** @description The type of rule. */
+ rule_type?: string;
+ /** @description Any associated details with the rule evaluation. */
+ details?: string;
+ }[];
+ };
+ /** @description A product affected by the vulnerability detailed in a repository security advisory. */
+ "repository-advisory-vulnerability": {
+ /** @description The name of the package affected by the vulnerability. */
+ package: {
+ ecosystem: components["schemas"]["security-advisory-ecosystems"];
+ /** @description The unique package name within its ecosystem. */
+ name: string | null;
+ } | null;
+ /** @description The range of the package versions affected by the vulnerability. */
+ vulnerable_version_range: string | null;
+ /** @description The package version(s) that resolve the vulnerability. */
+ patched_versions: string | null;
+ /** @description The functions in the package that are affected. */
+ vulnerable_functions: string[] | null;
+ };
+ /** @description A credit given to a user for a repository security advisory. */
+ "repository-advisory-credit": {
+ user: components["schemas"]["simple-user"];
+ type: components["schemas"]["security-advisory-credit-types"];
+ /**
+ * @description The state of the user's acceptance of the credit.
+ * @enum {string}
+ */
+ state: "accepted" | "declined" | "pending";
+ };
+ /** @description A repository security advisory. */
+ "repository-advisory": {
+ /** @description The GitHub Security Advisory ID. */
+ ghsa_id: string;
+ /** @description The Common Vulnerabilities and Exposures (CVE) ID. */
+ cve_id: string | null;
+ /**
+ * Format: uri
+ * @description The API URL for the advisory.
+ */
+ url: string;
+ /**
+ * Format: uri
+ * @description The URL for the advisory.
+ */
+ html_url: string;
+ /** @description A short summary of the advisory. */
+ summary: string;
+ /** @description A detailed description of what the advisory entails. */
+ description: string | null;
+ /**
+ * @description The severity of the advisory.
+ * @enum {string|null}
+ */
+ severity: "critical" | "high" | "medium" | "low" | null;
+ /** @description The author of the advisory. */
+ author: components["schemas"]["simple-user"] | null;
+ /** @description The publisher of the advisory. */
+ publisher: components["schemas"]["simple-user"] | null;
+ identifiers: readonly {
+ /**
+ * @description The type of identifier.
+ * @enum {string}
+ */
+ type: "CVE" | "GHSA";
+ /** @description The identifier value. */
+ value: string;
+ }[];
+ /**
+ * @description The state of the advisory.
+ * @enum {string}
+ */
+ state: "published" | "closed" | "withdrawn" | "draft" | "triage";
+ /**
+ * Format: date-time
+ * @description The date and time of when the advisory was created, in ISO 8601 format.
+ */
+ created_at: string | null;
+ /**
+ * Format: date-time
+ * @description The date and time of when the advisory was last updated, in ISO 8601 format.
+ */
+ updated_at: string | null;
+ /**
+ * Format: date-time
+ * @description The date and time of when the advisory was published, in ISO 8601 format.
+ */
+ published_at: string | null;
+ /**
+ * Format: date-time
+ * @description The date and time of when the advisory was closed, in ISO 8601 format.
+ */
+ closed_at: string | null;
+ /**
+ * Format: date-time
+ * @description The date and time of when the advisory was withdrawn, in ISO 8601 format.
+ */
+ withdrawn_at: string | null;
+ submission: {
+ /** @description Whether a private vulnerability report was accepted by the repository's administrators. */
+ readonly accepted: boolean;
+ } | null;
+ vulnerabilities:
+ | components["schemas"]["repository-advisory-vulnerability"][]
+ | null;
+ cvss: {
+ /** @description The CVSS vector. */
+ vector_string: string | null;
+ /** @description The CVSS score. */
+ score: number | null;
+ } | null;
+ cwes:
+ | readonly {
+ /** @description The Common Weakness Enumeration (CWE) identifier. */
+ cwe_id: string;
+ /** @description The name of the CWE. */
+ name: string;
+ }[]
+ | null;
+ /** @description A list of only the CWE IDs. */
+ cwe_ids: string[] | null;
+ credits:
+ | {
+ /** @description The username of the user credited. */
+ login?: string;
+ type?: components["schemas"]["security-advisory-credit-types"];
+ }[]
+ | null;
+ credits_detailed:
+ | readonly components["schemas"]["repository-advisory-credit"][]
+ | null;
+ /** @description A list of users that collaborate on the advisory. */
+ collaborating_users: components["schemas"]["simple-user"][] | null;
+ /** @description A list of teams that collaborate on the advisory. */
+ collaborating_teams: components["schemas"]["team"][] | null;
+ /** @description A temporary private fork of the advisory's repository for collaborating on a fix. */
+ private_fork: components["schemas"]["simple-repository"] | null;
+ };
+ /**
+ * Team Simple
+ * @description Groups of organization members that gives permissions on specified repositories.
+ */
+ "team-simple": {
+ /**
+ * @description Unique identifier of the team
+ * @example 1
+ */
+ id: number;
+ /** @example MDQ6VGVhbTE= */
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ * @example https://api.github.com/organizations/1/team/1
+ */
+ url: string;
+ /** @example https://api.github.com/organizations/1/team/1/members{/member} */
+ members_url: string;
+ /**
+ * @description Name of the team
+ * @example Justice League
+ */
+ name: string;
+ /**
+ * @description Description of the team
+ * @example A great team.
+ */
+ description: string | null;
+ /**
+ * @description Permission that the team will have for its repositories
+ * @example admin
+ */
+ permission: string;
+ /**
+ * @description The level of privacy this team should have
+ * @example closed
+ */
+ privacy?: string;
+ /**
+ * @description The notification setting the team has set
+ * @example notifications_enabled
+ */
+ notification_setting?: string;
+ /**
+ * Format: uri
+ * @example https://github.com/orgs/rails/teams/core
+ */
+ html_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/organizations/1/team/1/repos
+ */
+ repositories_url: string;
+ /** @example justice-league */
+ slug: string;
+ /**
+ * @description Distinguished Name (DN) that team maps to within LDAP environment
+ * @example uid=example,ou=users,dc=github,dc=com
+ */
+ ldap_dn?: string;
+ };
+ "actions-billing-usage": {
+ /** @description The sum of the free and paid GitHub Actions minutes used. */
+ total_minutes_used: number;
+ /** @description The total paid GitHub Actions minutes used. */
+ total_paid_minutes_used: number;
+ /** @description The amount of free GitHub Actions minutes available. */
+ included_minutes: number;
+ minutes_used_breakdown: {
+ /** @description Total minutes used on Ubuntu runner machines. */
+ UBUNTU?: number;
+ /** @description Total minutes used on macOS runner machines. */
+ MACOS?: number;
+ /** @description Total minutes used on Windows runner machines. */
+ WINDOWS?: number;
+ /** @description Total minutes used on Ubuntu 4 core runner machines. */
+ ubuntu_4_core?: number;
+ /** @description Total minutes used on Ubuntu 8 core runner machines. */
+ ubuntu_8_core?: number;
+ /** @description Total minutes used on Ubuntu 16 core runner machines. */
+ ubuntu_16_core?: number;
+ /** @description Total minutes used on Ubuntu 32 core runner machines. */
+ ubuntu_32_core?: number;
+ /** @description Total minutes used on Ubuntu 64 core runner machines. */
+ ubuntu_64_core?: number;
+ /** @description Total minutes used on Windows 4 core runner machines. */
+ windows_4_core?: number;
+ /** @description Total minutes used on Windows 8 core runner machines. */
+ windows_8_core?: number;
+ /** @description Total minutes used on Windows 16 core runner machines. */
+ windows_16_core?: number;
+ /** @description Total minutes used on Windows 32 core runner machines. */
+ windows_32_core?: number;
+ /** @description Total minutes used on Windows 64 core runner machines. */
+ windows_64_core?: number;
+ /** @description Total minutes used on macOS 12 core runner machines. */
+ macos_12_core?: number;
+ /** @description Total minutes used on all runner machines. */
+ total?: number;
+ };
+ };
+ "packages-billing-usage": {
+ /** @description Sum of the free and paid storage space (GB) for GitHuub Packages. */
+ total_gigabytes_bandwidth_used: number;
+ /** @description Total paid storage space (GB) for GitHuub Packages. */
+ total_paid_gigabytes_bandwidth_used: number;
+ /** @description Free storage space (GB) for GitHub Packages. */
+ included_gigabytes_bandwidth: number;
+ };
+ "combined-billing-usage": {
+ /** @description Numbers of days left in billing cycle. */
+ days_left_in_billing_cycle: number;
+ /** @description Estimated storage space (GB) used in billing cycle. */
+ estimated_paid_storage_for_month: number;
+ /** @description Estimated sum of free and paid storage space (GB) used in billing cycle. */
+ estimated_storage_for_month: number;
+ };
+ /**
+ * Team Organization
+ * @description Team Organization
+ */
+ "team-organization": {
+ /** @example github */
+ login: string;
+ /** @example 1 */
+ id: number;
+ /** @example MDEyOk9yZ2FuaXphdGlvbjE= */
+ node_id: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/orgs/github
+ */
+ url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/orgs/github/repos
+ */
+ repos_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/orgs/github/events
+ */
+ events_url: string;
+ /** @example https://api.github.com/orgs/github/hooks */
+ hooks_url: string;
+ /** @example https://api.github.com/orgs/github/issues */
+ issues_url: string;
+ /** @example https://api.github.com/orgs/github/members{/member} */
+ members_url: string;
+ /** @example https://api.github.com/orgs/github/public_members{/member} */
+ public_members_url: string;
+ /** @example https://github.com/images/error/octocat_happy.gif */
+ avatar_url: string;
+ /** @example A great organization */
+ description: string | null;
+ /** @example github */
+ name?: string;
+ /** @example GitHub */
+ company?: string;
+ /**
+ * Format: uri
+ * @example https://github.com/blog
+ */
+ blog?: string;
+ /** @example San Francisco */
+ location?: string;
+ /**
+ * Format: email
+ * @example octocat@github.com
+ */
+ email?: string;
+ /** @example github */
+ twitter_username?: string | null;
+ /** @example true */
+ is_verified?: boolean;
+ /** @example true */
+ has_organization_projects: boolean;
+ /** @example true */
+ has_repository_projects: boolean;
+ /** @example 2 */
+ public_repos: number;
+ /** @example 1 */
+ public_gists: number;
+ /** @example 20 */
+ followers: number;
+ /** @example 0 */
+ following: number;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat
+ */
+ html_url: string;
+ /**
+ * Format: date-time
+ * @example 2008-01-14T04:33:35Z
+ */
+ created_at: string;
+ /** @example Organization */
+ type: string;
+ /** @example 100 */
+ total_private_repos?: number;
+ /** @example 100 */
+ owned_private_repos?: number;
+ /** @example 81 */
+ private_gists?: number | null;
+ /** @example 10000 */
+ disk_usage?: number | null;
+ /** @example 8 */
+ collaborators?: number | null;
+ /**
+ * Format: email
+ * @example org@example.com
+ */
+ billing_email?: string | null;
+ plan?: {
+ name: string;
+ space: number;
+ private_repos: number;
+ filled_seats?: number;
+ seats?: number;
+ };
+ default_repository_permission?: string | null;
+ /** @example true */
+ members_can_create_repositories?: boolean | null;
+ /** @example true */
+ two_factor_requirement_enabled?: boolean | null;
+ /** @example all */
+ members_allowed_repository_creation_type?: string;
+ /** @example true */
+ members_can_create_public_repositories?: boolean;
+ /** @example true */
+ members_can_create_private_repositories?: boolean;
+ /** @example true */
+ members_can_create_internal_repositories?: boolean;
+ /** @example true */
+ members_can_create_pages?: boolean;
+ /** @example true */
+ members_can_create_public_pages?: boolean;
+ /** @example true */
+ members_can_create_private_pages?: boolean;
+ /** @example false */
+ members_can_fork_private_repositories?: boolean | null;
+ /** @example false */
+ web_commit_signoff_required?: boolean;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: date-time */
+ archived_at: string | null;
+ };
+ /**
+ * Full Team
+ * @description Groups of organization members that gives permissions on specified repositories.
+ */
+ "team-full": {
+ /**
+ * @description Unique identifier of the team
+ * @example 42
+ */
+ id: number;
+ /** @example MDQ6VGVhbTE= */
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ * @example https://api.github.com/organizations/1/team/1
+ */
+ url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/orgs/rails/teams/core
+ */
+ html_url: string;
+ /**
+ * @description Name of the team
+ * @example Developers
+ */
+ name: string;
+ /** @example justice-league */
+ slug: string;
+ /** @example A great team. */
+ description: string | null;
+ /**
+ * @description The level of privacy this team should have
+ * @example closed
+ * @enum {string}
+ */
+ privacy?: "closed" | "secret";
+ /**
+ * @description The notification setting the team has set
+ * @example notifications_enabled
+ * @enum {string}
+ */
+ notification_setting?: "notifications_enabled" | "notifications_disabled";
+ /**
+ * @description Permission that the team will have for its repositories
+ * @example push
+ */
+ permission: string;
+ /** @example https://api.github.com/organizations/1/team/1/members{/member} */
+ members_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/organizations/1/team/1/repos
+ */
+ repositories_url: string;
+ parent?: components["schemas"]["nullable-team-simple"];
+ /** @example 3 */
+ members_count: number;
+ /** @example 10 */
+ repos_count: number;
+ /**
+ * Format: date-time
+ * @example 2017-07-14T16:53:42Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2017-08-17T12:37:15Z
+ */
+ updated_at: string;
+ organization: components["schemas"]["team-organization"];
+ /**
+ * @description Distinguished Name (DN) that team maps to within LDAP environment
+ * @example uid=example,ou=users,dc=github,dc=com
+ */
+ ldap_dn?: string;
+ };
+ /**
+ * Team Discussion
+ * @description A team discussion is a persistent record of a free-form conversation within a team.
+ */
+ "team-discussion": {
+ author: components["schemas"]["nullable-simple-user"];
+ /**
+ * @description The main text of the discussion.
+ * @example Please suggest improvements to our workflow in comments.
+ */
+ body: string;
+ /** @example Hi! This is an area for us to collaborate as a team
*/
+ body_html: string;
+ /**
+ * @description The current version of the body content. If provided, this update operation will be rejected if the given version does not match the latest version on the server.
+ * @example 0307116bbf7ced493b8d8a346c650b71
+ */
+ body_version: string;
+ /** @example 0 */
+ comments_count: number;
+ /**
+ * Format: uri
+ * @example https://api.github.com/organizations/1/team/2343027/discussions/1/comments
+ */
+ comments_url: string;
+ /**
+ * Format: date-time
+ * @example 2018-01-25T18:56:31Z
+ */
+ created_at: string;
+ /** Format: date-time */
+ last_edited_at: string | null;
+ /**
+ * Format: uri
+ * @example https://github.com/orgs/github/teams/justice-league/discussions/1
+ */
+ html_url: string;
+ /** @example MDE0OlRlYW1EaXNjdXNzaW9uMQ== */
+ node_id: string;
+ /**
+ * @description The unique sequence number of a team discussion.
+ * @example 42
+ */
+ number: number;
+ /**
+ * @description Whether or not this discussion should be pinned for easy retrieval.
+ * @example true
+ */
+ pinned: boolean;
+ /**
+ * @description Whether or not this discussion should be restricted to team members and organization owners.
+ * @example true
+ */
+ private: boolean;
+ /**
+ * Format: uri
+ * @example https://api.github.com/organizations/1/team/2343027
+ */
+ team_url: string;
+ /**
+ * @description The title of the discussion.
+ * @example How can we improve our workflow?
+ */
+ title: string;
+ /**
+ * Format: date-time
+ * @example 2018-01-25T18:56:31Z
+ */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/organizations/1/team/2343027/discussions/1
+ */
+ url: string;
+ reactions?: components["schemas"]["reaction-rollup"];
+ };
+ /**
+ * Team Discussion Comment
+ * @description A reply to a discussion within a team.
+ */
+ "team-discussion-comment": {
+ author: components["schemas"]["nullable-simple-user"];
+ /**
+ * @description The main text of the comment.
+ * @example I agree with this suggestion.
+ */
+ body: string;
+ /** @example Do you like apples?
*/
+ body_html: string;
+ /**
+ * @description The current version of the body content. If provided, this update operation will be rejected if the given version does not match the latest version on the server.
+ * @example 0307116bbf7ced493b8d8a346c650b71
+ */
+ body_version: string;
+ /**
+ * Format: date-time
+ * @example 2018-01-15T23:53:58Z
+ */
+ created_at: string;
+ /** Format: date-time */
+ last_edited_at: string | null;
+ /**
+ * Format: uri
+ * @example https://api.github.com/organizations/1/team/2403582/discussions/1
+ */
+ discussion_url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1
+ */
+ html_url: string;
+ /** @example MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE= */
+ node_id: string;
+ /**
+ * @description The unique sequence number of a team discussion comment.
+ * @example 42
+ */
+ number: number;
+ /**
+ * Format: date-time
+ * @example 2018-01-15T23:53:58Z
+ */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/organizations/1/team/2403582/discussions/1/comments/1
+ */
+ url: string;
+ reactions?: components["schemas"]["reaction-rollup"];
+ };
+ /**
+ * Reaction
+ * @description Reactions to conversations provide a way to help people express their feelings more simply and effectively.
+ */
+ reaction: {
+ /** @example 1 */
+ id: number;
+ /** @example MDg6UmVhY3Rpb24x */
+ node_id: string;
+ user: components["schemas"]["nullable-simple-user"];
+ /**
+ * @description The reaction to use
+ * @example heart
+ * @enum {string}
+ */
+ content:
+ | "+1"
+ | "-1"
+ | "laugh"
+ | "confused"
+ | "heart"
+ | "hooray"
+ | "rocket"
+ | "eyes";
+ /**
+ * Format: date-time
+ * @example 2016-05-20T20:09:31Z
+ */
+ created_at: string;
+ };
+ /**
+ * Team Membership
+ * @description Team Membership
+ */
+ "team-membership": {
+ /** Format: uri */
+ url: string;
+ /**
+ * @description The role of the user in the team.
+ * @default member
+ * @example member
+ * @enum {string}
+ */
+ role: "member" | "maintainer";
+ /**
+ * @description The state of the user's membership in the team.
+ * @enum {string}
+ */
+ state: "active" | "pending";
+ };
+ /**
+ * Team Project
+ * @description A team's access to a project.
+ */
+ "team-project": {
+ owner_url: string;
+ url: string;
+ html_url: string;
+ columns_url: string;
+ id: number;
+ node_id: string;
+ name: string;
+ body: string | null;
+ number: number;
+ state: string;
+ creator: components["schemas"]["simple-user"];
+ created_at: string;
+ updated_at: string;
+ /** @description The organization permission for this project. Only present when owner is an organization. */
+ organization_permission?: string;
+ /** @description Whether the project is private or not. Only present when owner is an organization. */
+ private?: boolean;
+ permissions: {
+ read: boolean;
+ write: boolean;
+ admin: boolean;
+ };
+ };
+ /**
+ * Team Repository
+ * @description A team's access to a repository.
+ */
+ "team-repository": {
+ /**
+ * @description Unique identifier of the repository
+ * @example 42
+ */
+ id: number;
+ /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */
+ node_id: string;
+ /**
+ * @description The name of the repository.
+ * @example Team Environment
+ */
+ name: string;
+ /** @example octocat/Hello-World */
+ full_name: string;
+ license: components["schemas"]["nullable-license-simple"];
+ forks: number;
+ permissions?: {
+ admin: boolean;
+ pull: boolean;
+ triage?: boolean;
+ push: boolean;
+ maintain?: boolean;
+ };
+ /** @example admin */
+ role_name?: string;
+ owner: components["schemas"]["nullable-simple-user"];
+ /**
+ * @description Whether the repository is private or public.
+ * @default false
+ */
+ private: boolean;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World
+ */
+ html_url: string;
+ /** @example This your first repo! */
+ description: string | null;
+ fork: boolean;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World
+ */
+ url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref} */
+ archive_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/assignees{/user} */
+ assignees_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha} */
+ blobs_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/branches{/branch} */
+ branches_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator} */
+ collaborators_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/comments{/number} */
+ comments_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/commits{/sha} */
+ commits_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head} */
+ compare_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/contents/{+path} */
+ contents_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/contributors
+ */
+ contributors_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/deployments
+ */
+ deployments_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/downloads
+ */
+ downloads_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/events
+ */
+ events_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/forks
+ */
+ forks_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/commits{/sha} */
+ git_commits_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/refs{/sha} */
+ git_refs_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/tags{/sha} */
+ git_tags_url: string;
+ /** @example git:github.com/octocat/Hello-World.git */
+ git_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues/comments{/number} */
+ issue_comment_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues/events{/number} */
+ issue_events_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues{/number} */
+ issues_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/keys{/key_id} */
+ keys_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/labels{/name} */
+ labels_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/languages
+ */
+ languages_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/merges
+ */
+ merges_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/milestones{/number} */
+ milestones_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating} */
+ notifications_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/pulls{/number} */
+ pulls_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/releases{/id} */
+ releases_url: string;
+ /** @example git@github.com:octocat/Hello-World.git */
+ ssh_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/stargazers
+ */
+ stargazers_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/statuses/{sha} */
+ statuses_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/subscribers
+ */
+ subscribers_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/subscription
+ */
+ subscription_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/tags
+ */
+ tags_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/teams
+ */
+ teams_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/trees{/sha} */
+ trees_url: string;
+ /** @example https://github.com/octocat/Hello-World.git */
+ clone_url: string;
+ /**
+ * Format: uri
+ * @example git:git.example.com/octocat/Hello-World
+ */
+ mirror_url: string | null;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/hooks
+ */
+ hooks_url: string;
+ /**
+ * Format: uri
+ * @example https://svn.github.com/octocat/Hello-World
+ */
+ svn_url: string;
+ /**
+ * Format: uri
+ * @example https://github.com
+ */
+ homepage: string | null;
+ language: string | null;
+ /** @example 9 */
+ forks_count: number;
+ /** @example 80 */
+ stargazers_count: number;
+ /** @example 80 */
+ watchers_count: number;
+ /** @example 108 */
+ size: number;
+ /**
+ * @description The default branch of the repository.
+ * @example master
+ */
+ default_branch: string;
+ /** @example 0 */
+ open_issues_count: number;
+ /**
+ * @description Whether this repository acts as a template that can be used to generate new repositories.
+ * @default false
+ * @example true
+ */
+ is_template?: boolean;
+ topics?: string[];
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ * @example true
+ */
+ has_issues: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ * @example true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ * @example true
+ */
+ has_wiki: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ * @example true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** @description Returns whether or not this repository disabled. */
+ disabled: boolean;
+ /**
+ * @description The repository visibility: public, private, or internal.
+ * @default public
+ */
+ visibility?: string;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:06:43Z
+ */
+ pushed_at: string | null;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:01:12Z
+ */
+ created_at: string | null;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:14:43Z
+ */
+ updated_at: string | null;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ * @example true
+ */
+ allow_rebase_merge?: boolean;
+ temp_clone_token?: string;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ * @example true
+ */
+ allow_squash_merge?: boolean;
+ /**
+ * @description Whether to allow Auto-merge to be used on pull requests.
+ * @default false
+ * @example false
+ */
+ allow_auto_merge?: boolean;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ * @example false
+ */
+ delete_branch_on_merge?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ * @example true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow forking this repo
+ * @default false
+ * @example false
+ */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to require contributors to sign off on web-based commits
+ * @default false
+ * @example false
+ */
+ web_commit_signoff_required?: boolean;
+ subscribers_count?: number;
+ network_count?: number;
+ open_issues: number;
+ watchers: number;
+ master_branch?: string;
+ };
+ /**
+ * Project Card
+ * @description Project cards represent a scope of work.
+ */
+ "project-card": {
+ /**
+ * Format: uri
+ * @example https://api.github.com/projects/columns/cards/1478
+ */
+ url: string;
+ /**
+ * @description The project card's ID
+ * @example 42
+ */
+ id: number;
+ /** @example MDExOlByb2plY3RDYXJkMTQ3OA== */
+ node_id: string;
+ /** @example Add payload for delete Project column */
+ note: string | null;
+ creator: components["schemas"]["nullable-simple-user"];
+ /**
+ * Format: date-time
+ * @example 2016-09-05T14:21:06Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2016-09-05T14:20:22Z
+ */
+ updated_at: string;
+ /**
+ * @description Whether or not the card is archived
+ * @example false
+ */
+ archived?: boolean;
+ column_name?: string;
+ project_id?: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/projects/columns/367
+ */
+ column_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/api-playground/projects-test/issues/3
+ */
+ content_url?: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/projects/120
+ */
+ project_url: string;
+ };
+ /**
+ * Project Column
+ * @description Project columns contain cards of work.
+ */
+ "project-column": {
+ /**
+ * Format: uri
+ * @example https://api.github.com/projects/columns/367
+ */
+ url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/projects/120
+ */
+ project_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/projects/columns/367/cards
+ */
+ cards_url: string;
+ /**
+ * @description The unique identifier of the project column
+ * @example 42
+ */
+ id: number;
+ /** @example MDEzOlByb2plY3RDb2x1bW4zNjc= */
+ node_id: string;
+ /**
+ * @description Name of the project column
+ * @example Remaining tasks
+ */
+ name: string;
+ /**
+ * Format: date-time
+ * @example 2016-09-05T14:18:44Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2016-09-05T14:22:28Z
+ */
+ updated_at: string;
+ };
+ /**
+ * Project Collaborator Permission
+ * @description Project Collaborator Permission
+ */
+ "project-collaborator-permission": {
+ permission: string;
+ user: components["schemas"]["nullable-simple-user"];
+ };
+ /** Rate Limit */
+ "rate-limit": {
+ limit: number;
+ remaining: number;
+ reset: number;
+ used: number;
+ };
+ /**
+ * Rate Limit Overview
+ * @description Rate Limit Overview
+ */
+ "rate-limit-overview": {
+ resources: {
+ core: components["schemas"]["rate-limit"];
+ graphql?: components["schemas"]["rate-limit"];
+ search: components["schemas"]["rate-limit"];
+ code_search?: components["schemas"]["rate-limit"];
+ source_import?: components["schemas"]["rate-limit"];
+ integration_manifest?: components["schemas"]["rate-limit"];
+ code_scanning_upload?: components["schemas"]["rate-limit"];
+ actions_runner_registration?: components["schemas"]["rate-limit"];
+ scim?: components["schemas"]["rate-limit"];
+ dependency_snapshots?: components["schemas"]["rate-limit"];
+ };
+ rate: components["schemas"]["rate-limit"];
+ };
+ /**
+ * Artifact
+ * @description An artifact
+ */
+ artifact: {
+ /** @example 5 */
+ id: number;
+ /** @example MDEwOkNoZWNrU3VpdGU1 */
+ node_id: string;
+ /**
+ * @description The name of the artifact.
+ * @example AdventureWorks.Framework
+ */
+ name: string;
+ /**
+ * @description The size in bytes of the artifact.
+ * @example 12345
+ */
+ size_in_bytes: number;
+ /** @example https://api.github.com/repos/github/hello-world/actions/artifacts/5 */
+ url: string;
+ /** @example https://api.github.com/repos/github/hello-world/actions/artifacts/5/zip */
+ archive_download_url: string;
+ /** @description Whether or not the artifact has expired. */
+ expired: boolean;
+ /** Format: date-time */
+ created_at: string | null;
+ /** Format: date-time */
+ expires_at: string | null;
+ /** Format: date-time */
+ updated_at: string | null;
+ workflow_run?: {
+ /** @example 10 */
+ id?: number;
+ /** @example 42 */
+ repository_id?: number;
+ /** @example 42 */
+ head_repository_id?: number;
+ /** @example main */
+ head_branch?: string;
+ /** @example 009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d */
+ head_sha?: string;
+ } | null;
+ };
+ /**
+ * Repository actions caches
+ * @description Repository actions caches
+ */
+ "actions-cache-list": {
+ /**
+ * @description Total number of caches
+ * @example 2
+ */
+ total_count: number;
+ /** @description Array of caches */
+ actions_caches: {
+ /** @example 2 */
+ id?: number;
+ /** @example refs/heads/main */
+ ref?: string;
+ /** @example Linux-node-958aff96db2d75d67787d1e634ae70b659de937b */
+ key?: string;
+ /** @example 73885106f58cc52a7df9ec4d4a5622a5614813162cb516c759a30af6bf56e6f0 */
+ version?: string;
+ /**
+ * Format: date-time
+ * @example 2019-01-24T22:45:36.000Z
+ */
+ last_accessed_at?: string;
+ /**
+ * Format: date-time
+ * @example 2019-01-24T22:45:36.000Z
+ */
+ created_at?: string;
+ /** @example 1024 */
+ size_in_bytes?: number;
+ }[];
+ };
+ /**
+ * Job
+ * @description Information of a job execution in a workflow run
+ */
+ job: {
+ /**
+ * @description The id of the job.
+ * @example 21
+ */
+ id: number;
+ /**
+ * @description The id of the associated workflow run.
+ * @example 5
+ */
+ run_id: number;
+ /** @example https://api.github.com/repos/github/hello-world/actions/runs/5 */
+ run_url: string;
+ /**
+ * @description Attempt number of the associated workflow run, 1 for first attempt and higher if the workflow was re-run.
+ * @example 1
+ */
+ run_attempt?: number;
+ /** @example MDg6Q2hlY2tSdW40 */
+ node_id: string;
+ /**
+ * @description The SHA of the commit that is being run.
+ * @example 009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d
+ */
+ head_sha: string;
+ /** @example https://api.github.com/repos/github/hello-world/actions/jobs/21 */
+ url: string;
+ /** @example https://github.com/github/hello-world/runs/4 */
+ html_url: string | null;
+ /**
+ * @description The phase of the lifecycle that the job is currently in.
+ * @example queued
+ * @enum {string}
+ */
+ status:
+ | "queued"
+ | "in_progress"
+ | "completed"
+ | "waiting"
+ | "requested"
+ | "pending";
+ /**
+ * @description The outcome of the job.
+ * @example success
+ * @enum {string|null}
+ */
+ conclusion:
+ | "success"
+ | "failure"
+ | "neutral"
+ | "cancelled"
+ | "skipped"
+ | "timed_out"
+ | "action_required"
+ | null;
+ /**
+ * Format: date-time
+ * @description The time that the job created, in ISO 8601 format.
+ * @example 2019-08-08T08:00:00-07:00
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @description The time that the job started, in ISO 8601 format.
+ * @example 2019-08-08T08:00:00-07:00
+ */
+ started_at: string;
+ /**
+ * Format: date-time
+ * @description The time that the job finished, in ISO 8601 format.
+ * @example 2019-08-08T08:00:00-07:00
+ */
+ completed_at: string | null;
+ /**
+ * @description The name of the job.
+ * @example test-coverage
+ */
+ name: string;
+ /** @description Steps in this job. */
+ steps?: {
+ /**
+ * @description The phase of the lifecycle that the job is currently in.
+ * @example queued
+ * @enum {string}
+ */
+ status: "queued" | "in_progress" | "completed";
+ /**
+ * @description The outcome of the job.
+ * @example success
+ */
+ conclusion: string | null;
+ /**
+ * @description The name of the job.
+ * @example test-coverage
+ */
+ name: string;
+ /** @example 1 */
+ number: number;
+ /**
+ * Format: date-time
+ * @description The time that the step started, in ISO 8601 format.
+ * @example 2019-08-08T08:00:00-07:00
+ */
+ started_at?: string | null;
+ /**
+ * Format: date-time
+ * @description The time that the job finished, in ISO 8601 format.
+ * @example 2019-08-08T08:00:00-07:00
+ */
+ completed_at?: string | null;
+ }[];
+ /** @example https://api.github.com/repos/github/hello-world/check-runs/4 */
+ check_run_url: string;
+ /**
+ * @description Labels for the workflow job. Specified by the "runs_on" attribute in the action's workflow file.
+ * @example [
+ * "self-hosted",
+ * "foo",
+ * "bar"
+ * ]
+ */
+ labels: string[];
+ /**
+ * @description The ID of the runner to which this job has been assigned. (If a runner hasn't yet been assigned, this will be null.)
+ * @example 1
+ */
+ runner_id: number | null;
+ /**
+ * @description The name of the runner to which this job has been assigned. (If a runner hasn't yet been assigned, this will be null.)
+ * @example my runner
+ */
+ runner_name: string | null;
+ /**
+ * @description The ID of the runner group to which this job has been assigned. (If a runner hasn't yet been assigned, this will be null.)
+ * @example 2
+ */
+ runner_group_id: number | null;
+ /**
+ * @description The name of the runner group to which this job has been assigned. (If a runner hasn't yet been assigned, this will be null.)
+ * @example my runner group
+ */
+ runner_group_name: string | null;
+ /**
+ * @description The name of the workflow.
+ * @example Build
+ */
+ workflow_name: string | null;
+ /**
+ * @description The name of the current branch.
+ * @example main
+ */
+ head_branch: string | null;
+ };
+ /**
+ * Actions OIDC subject customization for a repository
+ * @description Actions OIDC subject customization for a repository
+ */
+ "oidc-custom-sub-repo": {
+ /** @description Whether to use the default template or not. If `true`, the `include_claim_keys` field is ignored. */
+ use_default: boolean;
+ /** @description Array of unique strings. Each claim key can only contain alphanumeric characters and underscores. */
+ include_claim_keys?: string[];
+ };
+ /**
+ * Actions Secret
+ * @description Set secrets for GitHub Actions.
+ */
+ "actions-secret": {
+ /**
+ * @description The name of the secret.
+ * @example SECRET_TOKEN
+ */
+ name: string;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ };
+ /** Actions Variable */
+ "actions-variable": {
+ /**
+ * @description The name of the variable.
+ * @example USERNAME
+ */
+ name: string;
+ /**
+ * @description The value of the variable.
+ * @example octocat
+ */
+ value: string;
+ /**
+ * Format: date-time
+ * @description The date and time at which the variable was created, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ.
+ * @example 2019-01-24T22:45:36.000Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @description The date and time at which the variable was last updated, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ.
+ * @example 2019-01-24T22:45:36.000Z
+ */
+ updated_at: string;
+ };
+ /** @description Whether GitHub Actions is enabled on the repository. */
+ "actions-enabled": boolean;
+ "actions-repository-permissions": {
+ enabled: components["schemas"]["actions-enabled"];
+ allowed_actions?: components["schemas"]["allowed-actions"];
+ selected_actions_url?: components["schemas"]["selected-actions-url"];
+ };
+ "actions-workflow-access-to-repository": {
+ /**
+ * @description Defines the level of access that workflows outside of the repository have to actions and reusable workflows within the
+ * repository.
+ *
+ * `none` means the access is only possible from workflows in this repository. `user` level access allows sharing across user owned private repositories only. `organization` level access allows sharing across the organization.
+ * @enum {string}
+ */
+ access_level: "none" | "user" | "organization";
+ };
+ /**
+ * Referenced workflow
+ * @description A workflow referenced/reused by the initial caller workflow
+ */
+ "referenced-workflow": {
+ path: string;
+ sha: string;
+ ref?: string;
+ };
+ /** Pull Request Minimal */
+ "pull-request-minimal": {
+ id: number;
+ number: number;
+ url: string;
+ head: {
+ ref: string;
+ sha: string;
+ repo: {
+ id: number;
+ url: string;
+ name: string;
+ };
+ };
+ base: {
+ ref: string;
+ sha: string;
+ repo: {
+ id: number;
+ url: string;
+ name: string;
+ };
+ };
+ };
+ /**
+ * Simple Commit
+ * @description A commit.
+ */
+ "nullable-simple-commit": {
+ /**
+ * @description SHA for the commit
+ * @example 7638417db6d59f3c431d3e1f261cc637155684cd
+ */
+ id: string;
+ /** @description SHA for the commit's tree */
+ tree_id: string;
+ /**
+ * @description Message describing the purpose of the commit
+ * @example Fix #42
+ */
+ message: string;
+ /**
+ * Format: date-time
+ * @description Timestamp of the commit
+ * @example 2014-08-09T08:02:04+12:00
+ */
+ timestamp: string;
+ /** @description Information about the Git author */
+ author: {
+ /**
+ * @description Name of the commit's author
+ * @example Monalisa Octocat
+ */
+ name: string;
+ /**
+ * Format: email
+ * @description Git email address of the commit's author
+ * @example monalisa.octocat@example.com
+ */
+ email: string;
+ } | null;
+ /** @description Information about the Git committer */
+ committer: {
+ /**
+ * @description Name of the commit's committer
+ * @example Monalisa Octocat
+ */
+ name: string;
+ /**
+ * Format: email
+ * @description Git email address of the commit's committer
+ * @example monalisa.octocat@example.com
+ */
+ email: string;
+ } | null;
+ } | null;
+ /**
+ * Workflow Run
+ * @description An invocation of a workflow
+ */
+ "workflow-run": {
+ /**
+ * @description The ID of the workflow run.
+ * @example 5
+ */
+ id: number;
+ /**
+ * @description The name of the workflow run.
+ * @example Build
+ */
+ name?: string | null;
+ /** @example MDEwOkNoZWNrU3VpdGU1 */
+ node_id: string;
+ /**
+ * @description The ID of the associated check suite.
+ * @example 42
+ */
+ check_suite_id?: number;
+ /**
+ * @description The node ID of the associated check suite.
+ * @example MDEwOkNoZWNrU3VpdGU0Mg==
+ */
+ check_suite_node_id?: string;
+ /** @example master */
+ head_branch: string | null;
+ /**
+ * @description The SHA of the head commit that points to the version of the workflow being run.
+ * @example 009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d
+ */
+ head_sha: string;
+ /**
+ * @description The full path of the workflow
+ * @example octocat/octo-repo/.github/workflows/ci.yml@main
+ */
+ path: string;
+ /**
+ * @description The auto incrementing run number for the workflow run.
+ * @example 106
+ */
+ run_number: number;
+ /**
+ * @description Attempt number of the run, 1 for first attempt and higher if the workflow was re-run.
+ * @example 1
+ */
+ run_attempt?: number;
+ referenced_workflows?:
+ | components["schemas"]["referenced-workflow"][]
+ | null;
+ /** @example push */
+ event: string;
+ /** @example completed */
+ status: string | null;
+ /** @example neutral */
+ conclusion: string | null;
+ /**
+ * @description The ID of the parent workflow.
+ * @example 5
+ */
+ workflow_id: number;
+ /**
+ * @description The URL to the workflow run.
+ * @example https://api.github.com/repos/github/hello-world/actions/runs/5
+ */
+ url: string;
+ /** @example https://github.com/github/hello-world/suites/4 */
+ html_url: string;
+ /** @description Pull requests that are open with a `head_sha` or `head_branch` that matches the workflow run. The returned pull requests do not necessarily indicate pull requests that triggered the run. */
+ pull_requests: components["schemas"]["pull-request-minimal"][] | null;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ actor?: components["schemas"]["simple-user"];
+ triggering_actor?: components["schemas"]["simple-user"];
+ /**
+ * Format: date-time
+ * @description The start time of the latest run. Resets on re-run.
+ */
+ run_started_at?: string;
+ /**
+ * @description The URL to the jobs for the workflow run.
+ * @example https://api.github.com/repos/github/hello-world/actions/runs/5/jobs
+ */
+ jobs_url: string;
+ /**
+ * @description The URL to download the logs for the workflow run.
+ * @example https://api.github.com/repos/github/hello-world/actions/runs/5/logs
+ */
+ logs_url: string;
+ /**
+ * @description The URL to the associated check suite.
+ * @example https://api.github.com/repos/github/hello-world/check-suites/12
+ */
+ check_suite_url: string;
+ /**
+ * @description The URL to the artifacts for the workflow run.
+ * @example https://api.github.com/repos/github/hello-world/actions/runs/5/rerun/artifacts
+ */
+ artifacts_url: string;
+ /**
+ * @description The URL to cancel the workflow run.
+ * @example https://api.github.com/repos/github/hello-world/actions/runs/5/cancel
+ */
+ cancel_url: string;
+ /**
+ * @description The URL to rerun the workflow run.
+ * @example https://api.github.com/repos/github/hello-world/actions/runs/5/rerun
+ */
+ rerun_url: string;
+ /**
+ * @description The URL to the previous attempted run of this workflow, if one exists.
+ * @example https://api.github.com/repos/github/hello-world/actions/runs/5/attempts/3
+ */
+ previous_attempt_url?: string | null;
+ /**
+ * @description The URL to the workflow.
+ * @example https://api.github.com/repos/github/hello-world/actions/workflows/main.yaml
+ */
+ workflow_url: string;
+ head_commit: components["schemas"]["nullable-simple-commit"];
+ repository: components["schemas"]["minimal-repository"];
+ head_repository: components["schemas"]["minimal-repository"];
+ /** @example 5 */
+ head_repository_id?: number;
+ /**
+ * @description The event-specific title associated with the run or the run-name if set, or the value of `run-name` if it is set in the workflow.
+ * @example Simple Workflow
+ */
+ display_title: string;
+ };
+ /**
+ * Environment Approval
+ * @description An entry in the reviews log for environment deployments
+ */
+ "environment-approvals": {
+ /** @description The list of environments that were approved or rejected */
+ environments: {
+ /**
+ * @description The id of the environment.
+ * @example 56780428
+ */
+ id?: number;
+ /** @example MDExOkVudmlyb25tZW50NTY3ODA0Mjg= */
+ node_id?: string;
+ /**
+ * @description The name of the environment.
+ * @example staging
+ */
+ name?: string;
+ /** @example https://api.github.com/repos/github/hello-world/environments/staging */
+ url?: string;
+ /** @example https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging */
+ html_url?: string;
+ /**
+ * Format: date-time
+ * @description The time that the environment was created, in ISO 8601 format.
+ * @example 2020-11-23T22:00:40Z
+ */
+ created_at?: string;
+ /**
+ * Format: date-time
+ * @description The time that the environment was last updated, in ISO 8601 format.
+ * @example 2020-11-23T22:00:40Z
+ */
+ updated_at?: string;
+ }[];
+ /**
+ * @description Whether deployment to the environment(s) was approved or rejected or pending (with comments)
+ * @example approved
+ * @enum {string}
+ */
+ state: "approved" | "rejected" | "pending";
+ user: components["schemas"]["simple-user"];
+ /**
+ * @description The comment submitted with the deployment review
+ * @example Ship it!
+ */
+ comment: string;
+ };
+ "review-custom-gates-comment-required": {
+ /** @description The name of the environment to approve or reject. */
+ environment_name: string;
+ /** @description Comment associated with the pending deployment protection rule. **Required when state is not provided.** */
+ comment: string;
+ };
+ "review-custom-gates-state-required": {
+ /** @description The name of the environment to approve or reject. */
+ environment_name: string;
+ /**
+ * @description Whether to approve or reject deployment to the specified environments.
+ * @enum {string}
+ */
+ state: "approved" | "rejected";
+ /** @description Optional comment to include with the review. */
+ comment?: string;
+ };
+ /**
+ * @description The type of reviewer.
+ * @example User
+ * @enum {string}
+ */
+ "deployment-reviewer-type": "User" | "Team";
+ /**
+ * Pending Deployment
+ * @description Details of a deployment that is waiting for protection rules to pass
+ */
+ "pending-deployment": {
+ environment: {
+ /**
+ * @description The id of the environment.
+ * @example 56780428
+ */
+ id?: number;
+ /** @example MDExOkVudmlyb25tZW50NTY3ODA0Mjg= */
+ node_id?: string;
+ /**
+ * @description The name of the environment.
+ * @example staging
+ */
+ name?: string;
+ /** @example https://api.github.com/repos/github/hello-world/environments/staging */
+ url?: string;
+ /** @example https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging */
+ html_url?: string;
+ };
+ /**
+ * @description The set duration of the wait timer
+ * @example 30
+ */
+ wait_timer: number;
+ /**
+ * Format: date-time
+ * @description The time that the wait timer began.
+ * @example 2020-11-23T22:00:40Z
+ */
+ wait_timer_started_at: string | null;
+ /**
+ * @description Whether the currently authenticated user can approve the deployment
+ * @example true
+ */
+ current_user_can_approve: boolean;
+ /** @description The people or teams that may approve jobs that reference the environment. You can list up to six users or teams as reviewers. The reviewers must have at least read access to the repository. Only one of the required reviewers needs to approve the job for it to proceed. */
+ reviewers: {
+ type?: components["schemas"]["deployment-reviewer-type"];
+ reviewer?:
+ | components["schemas"]["simple-user"]
+ | components["schemas"]["team"];
+ }[];
+ };
+ /**
+ * Deployment
+ * @description A request for a specific ref(branch,sha,tag) to be deployed
+ */
+ deployment: {
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/example/deployments/1
+ */
+ url: string;
+ /**
+ * @description Unique identifier of the deployment
+ * @example 42
+ */
+ id: number;
+ /** @example MDEwOkRlcGxveW1lbnQx */
+ node_id: string;
+ /** @example a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d */
+ sha: string;
+ /**
+ * @description The ref to deploy. This can be a branch, tag, or sha.
+ * @example topic-branch
+ */
+ ref: string;
+ /**
+ * @description Parameter to specify a task to execute
+ * @example deploy
+ */
+ task: string;
+ payload: OneOf<
+ [
+ {
+ [key: string]: unknown;
+ },
+ string,
+ ]
+ >;
+ /** @example staging */
+ original_environment?: string;
+ /**
+ * @description Name for the target deployment environment.
+ * @example production
+ */
+ environment: string;
+ /** @example Deploy request from hubot */
+ description: string | null;
+ creator: components["schemas"]["nullable-simple-user"];
+ /**
+ * Format: date-time
+ * @example 2012-07-20T01:19:13Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2012-07-20T01:19:13Z
+ */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/example/deployments/1/statuses
+ */
+ statuses_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/example
+ */
+ repository_url: string;
+ /**
+ * @description Specifies if the given environment is will no longer exist at some point in the future. Default: false.
+ * @example true
+ */
+ transient_environment?: boolean;
+ /**
+ * @description Specifies if the given environment is one that end-users directly interact with. Default: false.
+ * @example true
+ */
+ production_environment?: boolean;
+ performed_via_github_app?: components["schemas"]["nullable-integration"];
+ };
+ /**
+ * Workflow Run Usage
+ * @description Workflow Run Usage
+ */
+ "workflow-run-usage": {
+ billable: {
+ UBUNTU?: {
+ total_ms: number;
+ jobs: number;
+ job_runs?: {
+ job_id: number;
+ duration_ms: number;
+ }[];
+ };
+ MACOS?: {
+ total_ms: number;
+ jobs: number;
+ job_runs?: {
+ job_id: number;
+ duration_ms: number;
+ }[];
+ };
+ WINDOWS?: {
+ total_ms: number;
+ jobs: number;
+ job_runs?: {
+ job_id: number;
+ duration_ms: number;
+ }[];
+ };
+ };
+ run_duration_ms?: number;
+ };
+ /**
+ * Workflow
+ * @description A GitHub Actions workflow
+ */
+ workflow: {
+ /** @example 5 */
+ id: number;
+ /** @example MDg6V29ya2Zsb3cxMg== */
+ node_id: string;
+ /** @example CI */
+ name: string;
+ /** @example ruby.yaml */
+ path: string;
+ /**
+ * @example active
+ * @enum {string}
+ */
+ state:
+ | "active"
+ | "deleted"
+ | "disabled_fork"
+ | "disabled_inactivity"
+ | "disabled_manually";
+ /**
+ * Format: date-time
+ * @example 2019-12-06T14:20:20.000Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2019-12-06T14:20:20.000Z
+ */
+ updated_at: string;
+ /** @example https://api.github.com/repos/actions/setup-ruby/workflows/5 */
+ url: string;
+ /** @example https://github.com/actions/setup-ruby/blob/master/.github/workflows/ruby.yaml */
+ html_url: string;
+ /** @example https://github.com/actions/setup-ruby/workflows/CI/badge.svg */
+ badge_url: string;
+ /**
+ * Format: date-time
+ * @example 2019-12-06T14:20:20.000Z
+ */
+ deleted_at?: string;
+ };
+ /**
+ * Workflow Usage
+ * @description Workflow Usage
+ */
+ "workflow-usage": {
+ billable: {
+ UBUNTU?: {
+ total_ms?: number;
+ };
+ MACOS?: {
+ total_ms?: number;
+ };
+ WINDOWS?: {
+ total_ms?: number;
+ };
+ };
+ };
+ /**
+ * Activity
+ * @description Activity
+ */
+ activity: {
+ /** @example 1296269 */
+ id: number;
+ /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */
+ node_id: string;
+ /**
+ * @description The SHA of the commit before the activity.
+ * @example 6dcb09b5b57875f334f61aebed695e2e4193db5e
+ */
+ before: string;
+ /**
+ * @description The SHA of the commit after the activity.
+ * @example 827efc6d56897b048c772eb4087f854f46256132
+ */
+ after: string;
+ /**
+ * @description The full Git reference, formatted as `refs/heads/`.
+ * @example refs/heads/main
+ */
+ ref: string;
+ /**
+ * Format: date-time
+ * @description The time when the activity occurred.
+ * @example 2011-01-26T19:06:43Z
+ */
+ timestamp: string;
+ /**
+ * @description The type of the activity that was performed.
+ * @example force_push
+ * @enum {string}
+ */
+ activity_type:
+ | "push"
+ | "force_push"
+ | "branch_deletion"
+ | "branch_creation"
+ | "pr_merge"
+ | "merge_queue_merge";
+ actor: components["schemas"]["nullable-simple-user"];
+ };
+ /**
+ * Autolink reference
+ * @description An autolink reference.
+ */
+ autolink: {
+ /** @example 3 */
+ id: number;
+ /**
+ * @description The prefix of a key that is linkified.
+ * @example TICKET-
+ */
+ key_prefix: string;
+ /**
+ * @description A template for the target URL that is generated if a key was found.
+ * @example https://example.com/TICKET?query=
+ */
+ url_template: string;
+ /**
+ * @description Whether this autolink reference matches alphanumeric characters. If false, this autolink reference only matches numeric characters.
+ * @example true
+ */
+ is_alphanumeric: boolean;
+ };
+ /**
+ * Check Automated Security Fixes
+ * @description Check Automated Security Fixes
+ */
+ "check-automated-security-fixes": {
+ /**
+ * @description Whether automated security fixes are enabled for the repository.
+ * @example true
+ */
+ enabled: boolean;
+ /**
+ * @description Whether automated security fixes are paused for the repository.
+ * @example false
+ */
+ paused: boolean;
+ };
+ /**
+ * Protected Branch Required Status Check
+ * @description Protected Branch Required Status Check
+ */
+ "protected-branch-required-status-check": {
+ url?: string;
+ enforcement_level?: string;
+ contexts: string[];
+ checks: {
+ context: string;
+ app_id: number | null;
+ }[];
+ contexts_url?: string;
+ strict?: boolean;
+ };
+ /**
+ * Protected Branch Admin Enforced
+ * @description Protected Branch Admin Enforced
+ */
+ "protected-branch-admin-enforced": {
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins
+ */
+ url: string;
+ /** @example true */
+ enabled: boolean;
+ };
+ /**
+ * Protected Branch Pull Request Review
+ * @description Protected Branch Pull Request Review
+ */
+ "protected-branch-pull-request-review": {
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions
+ */
+ url?: string;
+ dismissal_restrictions?: {
+ /** @description The list of users with review dismissal access. */
+ users?: components["schemas"]["simple-user"][];
+ /** @description The list of teams with review dismissal access. */
+ teams?: components["schemas"]["team"][];
+ /** @description The list of apps with review dismissal access. */
+ apps?: components["schemas"]["integration"][];
+ /** @example "https://api.github.com/repos/the-org/an-org-repo/branches/master/protection/dismissal_restrictions" */
+ url?: string;
+ /** @example "https://api.github.com/repos/the-org/an-org-repo/branches/master/protection/dismissal_restrictions/users" */
+ users_url?: string;
+ /** @example "https://api.github.com/repos/the-org/an-org-repo/branches/master/protection/dismissal_restrictions/teams" */
+ teams_url?: string;
+ };
+ /** @description Allow specific users, teams, or apps to bypass pull request requirements. */
+ bypass_pull_request_allowances?: {
+ /** @description The list of users allowed to bypass pull request requirements. */
+ users?: components["schemas"]["simple-user"][];
+ /** @description The list of teams allowed to bypass pull request requirements. */
+ teams?: components["schemas"]["team"][];
+ /** @description The list of apps allowed to bypass pull request requirements. */
+ apps?: components["schemas"]["integration"][];
+ };
+ /** @example true */
+ dismiss_stale_reviews: boolean;
+ /** @example true */
+ require_code_owner_reviews: boolean;
+ /** @example 2 */
+ required_approving_review_count?: number;
+ /**
+ * @description Whether the most recent push must be approved by someone other than the person who pushed it.
+ * @default false
+ * @example true
+ */
+ require_last_push_approval?: boolean;
+ };
+ /**
+ * Branch Restriction Policy
+ * @description Branch Restriction Policy
+ */
+ "branch-restriction-policy": {
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ users_url: string;
+ /** Format: uri */
+ teams_url: string;
+ /** Format: uri */
+ apps_url: string;
+ users: {
+ login?: string;
+ id?: number;
+ node_id?: string;
+ avatar_url?: string;
+ gravatar_id?: string;
+ url?: string;
+ html_url?: string;
+ followers_url?: string;
+ following_url?: string;
+ gists_url?: string;
+ starred_url?: string;
+ subscriptions_url?: string;
+ organizations_url?: string;
+ repos_url?: string;
+ events_url?: string;
+ received_events_url?: string;
+ type?: string;
+ site_admin?: boolean;
+ }[];
+ teams: {
+ id?: number;
+ node_id?: string;
+ url?: string;
+ html_url?: string;
+ name?: string;
+ slug?: string;
+ description?: string | null;
+ privacy?: string;
+ notification_setting?: string;
+ permission?: string;
+ members_url?: string;
+ repositories_url?: string;
+ parent?: string | null;
+ }[];
+ apps: {
+ id?: number;
+ slug?: string;
+ node_id?: string;
+ owner?: {
+ login?: string;
+ id?: number;
+ node_id?: string;
+ url?: string;
+ repos_url?: string;
+ events_url?: string;
+ hooks_url?: string;
+ issues_url?: string;
+ members_url?: string;
+ public_members_url?: string;
+ avatar_url?: string;
+ description?: string;
+ /** @example "" */
+ gravatar_id?: string;
+ /** @example "https://github.com/testorg-ea8ec76d71c3af4b" */
+ html_url?: string;
+ /** @example "https://api.github.com/users/testorg-ea8ec76d71c3af4b/followers" */
+ followers_url?: string;
+ /** @example "https://api.github.com/users/testorg-ea8ec76d71c3af4b/following{/other_user}" */
+ following_url?: string;
+ /** @example "https://api.github.com/users/testorg-ea8ec76d71c3af4b/gists{/gist_id}" */
+ gists_url?: string;
+ /** @example "https://api.github.com/users/testorg-ea8ec76d71c3af4b/starred{/owner}{/repo}" */
+ starred_url?: string;
+ /** @example "https://api.github.com/users/testorg-ea8ec76d71c3af4b/subscriptions" */
+ subscriptions_url?: string;
+ /** @example "https://api.github.com/users/testorg-ea8ec76d71c3af4b/orgs" */
+ organizations_url?: string;
+ /** @example "https://api.github.com/users/testorg-ea8ec76d71c3af4b/received_events" */
+ received_events_url?: string;
+ /** @example "Organization" */
+ type?: string;
+ /** @example false */
+ site_admin?: boolean;
+ };
+ name?: string;
+ description?: string;
+ external_url?: string;
+ html_url?: string;
+ created_at?: string;
+ updated_at?: string;
+ permissions?: {
+ metadata?: string;
+ contents?: string;
+ issues?: string;
+ single_file?: string;
+ };
+ events?: string[];
+ }[];
+ };
+ /**
+ * Branch Protection
+ * @description Branch Protection
+ */
+ "branch-protection": {
+ url?: string;
+ enabled?: boolean;
+ required_status_checks?: components["schemas"]["protected-branch-required-status-check"];
+ enforce_admins?: components["schemas"]["protected-branch-admin-enforced"];
+ required_pull_request_reviews?: components["schemas"]["protected-branch-pull-request-review"];
+ restrictions?: components["schemas"]["branch-restriction-policy"];
+ required_linear_history?: {
+ enabled?: boolean;
+ };
+ allow_force_pushes?: {
+ enabled?: boolean;
+ };
+ allow_deletions?: {
+ enabled?: boolean;
+ };
+ block_creations?: {
+ enabled?: boolean;
+ };
+ required_conversation_resolution?: {
+ enabled?: boolean;
+ };
+ /** @example "branch/with/protection" */
+ name?: string;
+ /** @example "https://api.github.com/repos/owner-79e94e2d36b3fd06a32bb213/AAA_Public_Repo/branches/branch/with/protection/protection" */
+ protection_url?: string;
+ required_signatures?: {
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures
+ */
+ url: string;
+ /** @example true */
+ enabled: boolean;
+ };
+ /** @description Whether to set the branch as read-only. If this is true, users will not be able to push to the branch. */
+ lock_branch?: {
+ /** @default false */
+ enabled?: boolean;
+ };
+ /** @description Whether users can pull changes from upstream when the branch is locked. Set to `true` to allow fork syncing. Set to `false` to prevent fork syncing. */
+ allow_fork_syncing?: {
+ /** @default false */
+ enabled?: boolean;
+ };
+ };
+ /**
+ * Short Branch
+ * @description Short Branch
+ */
+ "short-branch": {
+ name: string;
+ commit: {
+ sha: string;
+ /** Format: uri */
+ url: string;
+ };
+ protected: boolean;
+ protection?: components["schemas"]["branch-protection"];
+ /** Format: uri */
+ protection_url?: string;
+ };
+ /**
+ * Git User
+ * @description Metaproperties for Git author/committer information.
+ */
+ "nullable-git-user": {
+ /** @example "Chris Wanstrath" */
+ name?: string;
+ /** @example "chris@ozmm.org" */
+ email?: string;
+ /** @example "2007-10-29T02:42:39.000-07:00" */
+ date?: string;
+ } | null;
+ /** Verification */
+ verification: {
+ verified: boolean;
+ reason: string;
+ payload: string | null;
+ signature: string | null;
+ };
+ /**
+ * Diff Entry
+ * @description Diff Entry
+ */
+ "diff-entry": {
+ /** @example bbcd538c8e72b8c175046e27cc8f907076331401 */
+ sha: string;
+ /** @example file1.txt */
+ filename: string;
+ /**
+ * @example added
+ * @enum {string}
+ */
+ status:
+ | "added"
+ | "removed"
+ | "modified"
+ | "renamed"
+ | "copied"
+ | "changed"
+ | "unchanged";
+ /** @example 103 */
+ additions: number;
+ /** @example 21 */
+ deletions: number;
+ /** @example 124 */
+ changes: number;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World/blob/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt
+ */
+ blob_url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World/raw/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt
+ */
+ raw_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/contents/file1.txt?ref=6dcb09b5b57875f334f61aebed695e2e4193db5e
+ */
+ contents_url: string;
+ /** @example @@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test */
+ patch?: string;
+ /** @example file.txt */
+ previous_filename?: string;
+ };
+ /**
+ * Commit
+ * @description Commit
+ */
+ commit: {
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e
+ */
+ url: string;
+ /** @example 6dcb09b5b57875f334f61aebed695e2e4193db5e */
+ sha: string;
+ /** @example MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ== */
+ node_id: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e
+ */
+ html_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments
+ */
+ comments_url: string;
+ commit: {
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e
+ */
+ url: string;
+ author: components["schemas"]["nullable-git-user"];
+ committer: components["schemas"]["nullable-git-user"];
+ /** @example Fix all the bugs */
+ message: string;
+ /** @example 0 */
+ comment_count: number;
+ tree: {
+ /** @example 827efc6d56897b048c772eb4087f854f46256132 */
+ sha: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/tree/827efc6d56897b048c772eb4087f854f46256132
+ */
+ url: string;
+ };
+ verification?: components["schemas"]["verification"];
+ };
+ author: components["schemas"]["nullable-simple-user"];
+ committer: components["schemas"]["nullable-simple-user"];
+ parents: {
+ /** @example 7638417db6d59f3c431d3e1f261cc637155684cd */
+ sha: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/commits/7638417db6d59f3c431d3e1f261cc637155684cd
+ */
+ url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd
+ */
+ html_url?: string;
+ }[];
+ stats?: {
+ additions?: number;
+ deletions?: number;
+ total?: number;
+ };
+ files?: components["schemas"]["diff-entry"][];
+ };
+ /**
+ * Branch With Protection
+ * @description Branch With Protection
+ */
+ "branch-with-protection": {
+ name: string;
+ commit: components["schemas"]["commit"];
+ _links: {
+ html: string;
+ /** Format: uri */
+ self: string;
+ };
+ protected: boolean;
+ protection: components["schemas"]["branch-protection"];
+ /** Format: uri */
+ protection_url: string;
+ /** @example "mas*" */
+ pattern?: string;
+ /** @example 1 */
+ required_approving_review_count?: number;
+ };
+ /**
+ * Status Check Policy
+ * @description Status Check Policy
+ */
+ "status-check-policy": {
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks
+ */
+ url: string;
+ /** @example true */
+ strict: boolean;
+ /**
+ * @example [
+ * "continuous-integration/travis-ci"
+ * ]
+ */
+ contexts: string[];
+ checks: {
+ /** @example continuous-integration/travis-ci */
+ context: string;
+ app_id: number | null;
+ }[];
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks/contexts
+ */
+ contexts_url: string;
+ };
+ /**
+ * Protected Branch
+ * @description Branch protections protect branches
+ */
+ "protected-branch": {
+ /** Format: uri */
+ url: string;
+ required_status_checks?: components["schemas"]["status-check-policy"];
+ required_pull_request_reviews?: {
+ /** Format: uri */
+ url: string;
+ dismiss_stale_reviews?: boolean;
+ require_code_owner_reviews?: boolean;
+ required_approving_review_count?: number;
+ /**
+ * @description Whether the most recent push must be approved by someone other than the person who pushed it.
+ * @default false
+ */
+ require_last_push_approval?: boolean;
+ dismissal_restrictions?: {
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ users_url: string;
+ /** Format: uri */
+ teams_url: string;
+ users: components["schemas"]["simple-user"][];
+ teams: components["schemas"]["team"][];
+ apps?: components["schemas"]["integration"][];
+ };
+ bypass_pull_request_allowances?: {
+ users: components["schemas"]["simple-user"][];
+ teams: components["schemas"]["team"][];
+ apps?: components["schemas"]["integration"][];
+ };
+ };
+ required_signatures?: {
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures
+ */
+ url: string;
+ /** @example true */
+ enabled: boolean;
+ };
+ enforce_admins?: {
+ /** Format: uri */
+ url: string;
+ enabled: boolean;
+ };
+ required_linear_history?: {
+ enabled: boolean;
+ };
+ allow_force_pushes?: {
+ enabled: boolean;
+ };
+ allow_deletions?: {
+ enabled: boolean;
+ };
+ restrictions?: components["schemas"]["branch-restriction-policy"];
+ required_conversation_resolution?: {
+ enabled?: boolean;
+ };
+ block_creations?: {
+ enabled: boolean;
+ };
+ /** @description Whether to set the branch as read-only. If this is true, users will not be able to push to the branch. */
+ lock_branch?: {
+ /** @default false */
+ enabled?: boolean;
+ };
+ /** @description Whether users can pull changes from upstream when the branch is locked. Set to `true` to allow fork syncing. Set to `false` to prevent fork syncing. */
+ allow_fork_syncing?: {
+ /** @default false */
+ enabled?: boolean;
+ };
+ };
+ /**
+ * Deployment
+ * @description A deployment created as the result of an Actions check run from a workflow that references an environment
+ */
+ "deployment-simple": {
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/example/deployments/1
+ */
+ url: string;
+ /**
+ * @description Unique identifier of the deployment
+ * @example 42
+ */
+ id: number;
+ /** @example MDEwOkRlcGxveW1lbnQx */
+ node_id: string;
+ /**
+ * @description Parameter to specify a task to execute
+ * @example deploy
+ */
+ task: string;
+ /** @example staging */
+ original_environment?: string;
+ /**
+ * @description Name for the target deployment environment.
+ * @example production
+ */
+ environment: string;
+ /** @example Deploy request from hubot */
+ description: string | null;
+ /**
+ * Format: date-time
+ * @example 2012-07-20T01:19:13Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2012-07-20T01:19:13Z
+ */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/example/deployments/1/statuses
+ */
+ statuses_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/example
+ */
+ repository_url: string;
+ /**
+ * @description Specifies if the given environment is will no longer exist at some point in the future. Default: false.
+ * @example true
+ */
+ transient_environment?: boolean;
+ /**
+ * @description Specifies if the given environment is one that end-users directly interact with. Default: false.
+ * @example true
+ */
+ production_environment?: boolean;
+ performed_via_github_app?: components["schemas"]["nullable-integration"];
+ };
+ /**
+ * CheckRun
+ * @description A check performed on the code of a given code change
+ */
+ "check-run": {
+ /**
+ * @description The id of the check.
+ * @example 21
+ */
+ id: number;
+ /**
+ * @description The SHA of the commit that is being checked.
+ * @example 009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d
+ */
+ head_sha: string;
+ /** @example MDg6Q2hlY2tSdW40 */
+ node_id: string;
+ /** @example 42 */
+ external_id: string | null;
+ /** @example https://api.github.com/repos/github/hello-world/check-runs/4 */
+ url: string;
+ /** @example https://github.com/github/hello-world/runs/4 */
+ html_url: string | null;
+ /** @example https://example.com */
+ details_url: string | null;
+ /**
+ * @description The phase of the lifecycle that the check is currently in. Statuses of waiting, requested, and pending are reserved for GitHub Actions check runs.
+ * @example queued
+ * @enum {string}
+ */
+ status:
+ | "queued"
+ | "in_progress"
+ | "completed"
+ | "waiting"
+ | "requested"
+ | "pending";
+ /**
+ * @example neutral
+ * @enum {string|null}
+ */
+ conclusion:
+ | "success"
+ | "failure"
+ | "neutral"
+ | "cancelled"
+ | "skipped"
+ | "timed_out"
+ | "action_required"
+ | null;
+ /**
+ * Format: date-time
+ * @example 2018-05-04T01:14:52Z
+ */
+ started_at: string | null;
+ /**
+ * Format: date-time
+ * @example 2018-05-04T01:14:52Z
+ */
+ completed_at: string | null;
+ output: {
+ title: string | null;
+ summary: string | null;
+ text: string | null;
+ annotations_count: number;
+ /** Format: uri */
+ annotations_url: string;
+ };
+ /**
+ * @description The name of the check.
+ * @example test-coverage
+ */
+ name: string;
+ check_suite: {
+ id: number;
+ } | null;
+ app: components["schemas"]["nullable-integration"];
+ /** @description Pull requests that are open with a `head_sha` or `head_branch` that matches the check. The returned pull requests do not necessarily indicate pull requests that triggered the check. */
+ pull_requests: components["schemas"]["pull-request-minimal"][];
+ deployment?: components["schemas"]["deployment-simple"];
+ };
+ /**
+ * Check Annotation
+ * @description Check Annotation
+ */
+ "check-annotation": {
+ /** @example README.md */
+ path: string;
+ /** @example 2 */
+ start_line: number;
+ /** @example 2 */
+ end_line: number;
+ /** @example 5 */
+ start_column: number | null;
+ /** @example 10 */
+ end_column: number | null;
+ /** @example warning */
+ annotation_level: string | null;
+ /** @example Spell Checker */
+ title: string | null;
+ /** @example Check your spelling for 'banaas'. */
+ message: string | null;
+ /** @example Do you mean 'bananas' or 'banana'? */
+ raw_details: string | null;
+ blob_href: string;
+ };
+ /**
+ * Simple Commit
+ * @description A commit.
+ */
+ "simple-commit": {
+ /**
+ * @description SHA for the commit
+ * @example 7638417db6d59f3c431d3e1f261cc637155684cd
+ */
+ id: string;
+ /** @description SHA for the commit's tree */
+ tree_id: string;
+ /**
+ * @description Message describing the purpose of the commit
+ * @example Fix #42
+ */
+ message: string;
+ /**
+ * Format: date-time
+ * @description Timestamp of the commit
+ * @example 2014-08-09T08:02:04+12:00
+ */
+ timestamp: string;
+ /** @description Information about the Git author */
+ author: {
+ /**
+ * @description Name of the commit's author
+ * @example Monalisa Octocat
+ */
+ name: string;
+ /**
+ * Format: email
+ * @description Git email address of the commit's author
+ * @example monalisa.octocat@example.com
+ */
+ email: string;
+ } | null;
+ /** @description Information about the Git committer */
+ committer: {
+ /**
+ * @description Name of the commit's committer
+ * @example Monalisa Octocat
+ */
+ name: string;
+ /**
+ * Format: email
+ * @description Git email address of the commit's committer
+ * @example monalisa.octocat@example.com
+ */
+ email: string;
+ } | null;
+ };
+ /**
+ * CheckSuite
+ * @description A suite of checks performed on the code of a given code change
+ */
+ "check-suite": {
+ /** @example 5 */
+ id: number;
+ /** @example MDEwOkNoZWNrU3VpdGU1 */
+ node_id: string;
+ /** @example master */
+ head_branch: string | null;
+ /**
+ * @description The SHA of the head commit that is being checked.
+ * @example 009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d
+ */
+ head_sha: string;
+ /**
+ * @description The phase of the lifecycle that the check suite is currently in. Statuses of waiting, requested, and pending are reserved for GitHub Actions check suites.
+ * @example completed
+ * @enum {string|null}
+ */
+ status:
+ | "queued"
+ | "in_progress"
+ | "completed"
+ | "waiting"
+ | "requested"
+ | "pending"
+ | null;
+ /**
+ * @example neutral
+ * @enum {string|null}
+ */
+ conclusion:
+ | "success"
+ | "failure"
+ | "neutral"
+ | "cancelled"
+ | "skipped"
+ | "timed_out"
+ | "action_required"
+ | "startup_failure"
+ | "stale"
+ | null;
+ /** @example https://api.github.com/repos/github/hello-world/check-suites/5 */
+ url: string | null;
+ /** @example 146e867f55c26428e5f9fade55a9bbf5e95a7912 */
+ before: string | null;
+ /** @example d6fde92930d4715a2b49857d24b940956b26d2d3 */
+ after: string | null;
+ pull_requests: components["schemas"]["pull-request-minimal"][] | null;
+ app: components["schemas"]["nullable-integration"];
+ repository: components["schemas"]["minimal-repository"];
+ /** Format: date-time */
+ created_at: string | null;
+ /** Format: date-time */
+ updated_at: string | null;
+ head_commit: components["schemas"]["simple-commit"];
+ latest_check_runs_count: number;
+ check_runs_url: string;
+ rerequestable?: boolean;
+ runs_rerequestable?: boolean;
+ };
+ /**
+ * Check Suite Preference
+ * @description Check suite configuration preferences for a repository.
+ */
+ "check-suite-preference": {
+ preferences: {
+ auto_trigger_checks?: {
+ app_id: number;
+ setting: boolean;
+ }[];
+ };
+ repository: components["schemas"]["minimal-repository"];
+ };
+ "code-scanning-alert-items": {
+ number: components["schemas"]["alert-number"];
+ created_at: components["schemas"]["alert-created-at"];
+ updated_at?: components["schemas"]["alert-updated-at"];
+ url: components["schemas"]["alert-url"];
+ html_url: components["schemas"]["alert-html-url"];
+ instances_url: components["schemas"]["alert-instances-url"];
+ state: components["schemas"]["code-scanning-alert-state"];
+ fixed_at?: components["schemas"]["alert-fixed-at"];
+ dismissed_by: components["schemas"]["nullable-simple-user"];
+ dismissed_at: components["schemas"]["alert-dismissed-at"];
+ dismissed_reason: components["schemas"]["code-scanning-alert-dismissed-reason"];
+ dismissed_comment?: components["schemas"]["code-scanning-alert-dismissed-comment"];
+ rule: components["schemas"]["code-scanning-alert-rule-summary"];
+ tool: components["schemas"]["code-scanning-analysis-tool"];
+ most_recent_instance: components["schemas"]["code-scanning-alert-instance"];
+ };
+ "code-scanning-alert-rule": {
+ /** @description A unique identifier for the rule used to detect the alert. */
+ id?: string | null;
+ /** @description The name of the rule used to detect the alert. */
+ name?: string;
+ /**
+ * @description The severity of the alert.
+ * @enum {string|null}
+ */
+ severity?: "none" | "note" | "warning" | "error" | null;
+ /**
+ * @description The security severity of the alert.
+ * @enum {string|null}
+ */
+ security_severity_level?: "low" | "medium" | "high" | "critical" | null;
+ /** @description A short description of the rule used to detect the alert. */
+ description?: string;
+ /** @description description of the rule used to detect the alert. */
+ full_description?: string;
+ /** @description A set of tags applicable for the rule. */
+ tags?: string[] | null;
+ /** @description Detailed documentation for the rule as GitHub Flavored Markdown. */
+ help?: string | null;
+ /** @description A link to the documentation for the rule used to detect the alert. */
+ help_uri?: string | null;
+ };
+ "code-scanning-alert": {
+ number: components["schemas"]["alert-number"];
+ created_at: components["schemas"]["alert-created-at"];
+ updated_at?: components["schemas"]["alert-updated-at"];
+ url: components["schemas"]["alert-url"];
+ html_url: components["schemas"]["alert-html-url"];
+ instances_url: components["schemas"]["alert-instances-url"];
+ state: components["schemas"]["code-scanning-alert-state"];
+ fixed_at?: components["schemas"]["alert-fixed-at"];
+ dismissed_by: components["schemas"]["nullable-simple-user"];
+ dismissed_at: components["schemas"]["alert-dismissed-at"];
+ dismissed_reason: components["schemas"]["code-scanning-alert-dismissed-reason"];
+ dismissed_comment?: components["schemas"]["code-scanning-alert-dismissed-comment"];
+ rule: components["schemas"]["code-scanning-alert-rule"];
+ tool: components["schemas"]["code-scanning-analysis-tool"];
+ most_recent_instance: components["schemas"]["code-scanning-alert-instance"];
+ };
+ /**
+ * @description Sets the state of the code scanning alert. You must provide `dismissed_reason` when you set the state to `dismissed`.
+ * @enum {string}
+ */
+ "code-scanning-alert-set-state": "open" | "dismissed";
+ /**
+ * @description An identifier for the upload.
+ * @example 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53
+ */
+ "code-scanning-analysis-sarif-id": string;
+ /** @description The SHA of the commit to which the analysis you are uploading relates. */
+ "code-scanning-analysis-commit-sha": string;
+ /** @description Identifies the variable values associated with the environment in which this analysis was performed. */
+ "code-scanning-analysis-environment": string;
+ /**
+ * Format: date-time
+ * @description The time that the analysis was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.
+ */
+ readonly "code-scanning-analysis-created-at": string;
+ /**
+ * Format: uri
+ * @description The REST API URL of the analysis resource.
+ */
+ readonly "code-scanning-analysis-url": string;
+ "code-scanning-analysis": {
+ ref: components["schemas"]["code-scanning-ref"];
+ commit_sha: components["schemas"]["code-scanning-analysis-commit-sha"];
+ analysis_key: components["schemas"]["code-scanning-analysis-analysis-key"];
+ environment: components["schemas"]["code-scanning-analysis-environment"];
+ category?: components["schemas"]["code-scanning-analysis-category"];
+ /** @example error reading field xyz */
+ error: string;
+ created_at: components["schemas"]["code-scanning-analysis-created-at"];
+ /** @description The total number of results in the analysis. */
+ results_count: number;
+ /** @description The total number of rules used in the analysis. */
+ rules_count: number;
+ /** @description Unique identifier for this analysis. */
+ id: number;
+ url: components["schemas"]["code-scanning-analysis-url"];
+ sarif_id: components["schemas"]["code-scanning-analysis-sarif-id"];
+ tool: components["schemas"]["code-scanning-analysis-tool"];
+ deletable: boolean;
+ /**
+ * @description Warning generated when processing the analysis
+ * @example 123 results were ignored
+ */
+ warning: string;
+ };
+ /**
+ * Analysis deletion
+ * @description Successful deletion of a code scanning analysis
+ */
+ "code-scanning-analysis-deletion": {
+ /**
+ * Format: uri
+ * @description Next deletable analysis in chain, without last analysis deletion confirmation
+ */
+ next_analysis_url: string | null;
+ /**
+ * Format: uri
+ * @description Next deletable analysis in chain, with last analysis deletion confirmation
+ */
+ confirm_delete_url: string | null;
+ };
+ /**
+ * CodeQL Database
+ * @description A CodeQL database.
+ */
+ "code-scanning-codeql-database": {
+ /** @description The ID of the CodeQL database. */
+ id: number;
+ /** @description The name of the CodeQL database. */
+ name: string;
+ /** @description The language of the CodeQL database. */
+ language: string;
+ uploader: components["schemas"]["simple-user"];
+ /** @description The MIME type of the CodeQL database file. */
+ content_type: string;
+ /** @description The size of the CodeQL database file in bytes. */
+ size: number;
+ /**
+ * Format: date-time
+ * @description The date and time at which the CodeQL database was created, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ.
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @description The date and time at which the CodeQL database was last updated, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ.
+ */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description The URL at which to download the CodeQL database. The `Accept` header must be set to the value of the `content_type` property.
+ */
+ url: string;
+ /** @description The commit SHA of the repository at the time the CodeQL database was created. */
+ commit_oid?: string | null;
+ };
+ /** @description Configuration for code scanning default setup. */
+ "code-scanning-default-setup": {
+ /**
+ * @description Code scanning default setup has been configured or not.
+ * @enum {string}
+ */
+ state?: "configured" | "not-configured";
+ /** @description Languages to be analyzed. */
+ languages?: (
+ | "c-cpp"
+ | "csharp"
+ | "go"
+ | "java-kotlin"
+ | "javascript-typescript"
+ | "javascript"
+ | "python"
+ | "ruby"
+ | "typescript"
+ | "swift"
+ )[];
+ /**
+ * @description CodeQL query suite to be used.
+ * @enum {string}
+ */
+ query_suite?: "default" | "extended";
+ /**
+ * Format: date-time
+ * @description Timestamp of latest configuration update.
+ * @example 2023-12-06T14:20:20.000Z
+ */
+ updated_at?: string | null;
+ /**
+ * @description The frequency of the periodic analysis.
+ * @enum {string|null}
+ */
+ schedule?: "weekly" | null;
+ };
+ /** @description Configuration for code scanning default setup. */
+ "code-scanning-default-setup-update": {
+ /**
+ * @description The desired state of code scanning default setup.
+ * @enum {string}
+ */
+ state?: "configured" | "not-configured";
+ /**
+ * @description CodeQL query suite to be used.
+ * @enum {string}
+ */
+ query_suite?: "default" | "extended";
+ /** @description CodeQL languages to be analyzed. */
+ languages?: (
+ | "c-cpp"
+ | "csharp"
+ | "go"
+ | "java-kotlin"
+ | "javascript-typescript"
+ | "python"
+ | "ruby"
+ | "swift"
+ )[];
+ };
+ /**
+ * @description You can use `run_url` to track the status of the run. This includes a property status and conclusion.
+ * You should not rely on this always being an actions workflow run object.
+ */
+ "code-scanning-default-setup-update-response": {
+ /** @description ID of the corresponding run. */
+ run_id?: number;
+ /** @description URL of the corresponding run. */
+ run_url?: string;
+ };
+ /**
+ * @description The full Git reference, formatted as `refs/heads/`,
+ * `refs/tags/`, `refs/pull//merge`, or `refs/pull//head`.
+ * @example refs/heads/main
+ */
+ "code-scanning-ref-full": string;
+ /** @description A Base64 string representing the SARIF file to upload. You must first compress your SARIF file using [`gzip`](http://www.gnu.org/software/gzip/manual/gzip.html) and then translate the contents of the file into a Base64 encoding string. For more information, see "[SARIF support for code scanning](https://docs.github.com/code-security/secure-coding/sarif-support-for-code-scanning)." */
+ "code-scanning-analysis-sarif-file": string;
+ "code-scanning-sarifs-receipt": {
+ id?: components["schemas"]["code-scanning-analysis-sarif-id"];
+ /**
+ * Format: uri
+ * @description The REST API URL for checking the status of the upload.
+ */
+ url?: string;
+ };
+ "code-scanning-sarifs-status": {
+ /**
+ * @description `pending` files have not yet been processed, while `complete` means results from the SARIF have been stored. `failed` files have either not been processed at all, or could only be partially processed.
+ * @enum {string}
+ */
+ processing_status?: "pending" | "complete" | "failed";
+ /**
+ * Format: uri
+ * @description The REST API URL for getting the analyses associated with the upload.
+ */
+ analyses_url?: string | null;
+ /** @description Any errors that ocurred during processing of the delivery. */
+ errors?: readonly string[] | null;
+ };
+ /**
+ * CODEOWNERS errors
+ * @description A list of errors found in a repo's CODEOWNERS file
+ */
+ "codeowners-errors": {
+ errors: {
+ /**
+ * @description The line number where this errors occurs.
+ * @example 7
+ */
+ line: number;
+ /**
+ * @description The column number where this errors occurs.
+ * @example 3
+ */
+ column: number;
+ /**
+ * @description The contents of the line where the error occurs.
+ * @example * user
+ */
+ source?: string;
+ /**
+ * @description The type of error.
+ * @example Invalid owner
+ */
+ kind: string;
+ /**
+ * @description Suggested action to fix the error. This will usually be `null`, but is provided for some common errors.
+ * @example The pattern `/` will never match anything, did you mean `*` instead?
+ */
+ suggestion?: string | null;
+ /**
+ * @description A human-readable description of the error, combining information from multiple fields, laid out for display in a monospaced typeface (for example, a command-line setting).
+ * @example Invalid owner on line 7:
+ *
+ * * user
+ * ^
+ */
+ message: string;
+ /**
+ * @description The path of the file where the error occured.
+ * @example .github/CODEOWNERS
+ */
+ path: string;
+ }[];
+ };
+ /**
+ * Codespace machine
+ * @description A description of the machine powering a codespace.
+ */
+ "codespace-machine": {
+ /**
+ * @description The name of the machine.
+ * @example standardLinux
+ */
+ name: string;
+ /**
+ * @description The display name of the machine includes cores, memory, and storage.
+ * @example 4 cores, 16 GB RAM, 64 GB storage
+ */
+ display_name: string;
+ /**
+ * @description The operating system of the machine.
+ * @example linux
+ */
+ operating_system: string;
+ /**
+ * @description How much storage is available to the codespace.
+ * @example 68719476736
+ */
+ storage_in_bytes: number;
+ /**
+ * @description How much memory is available to the codespace.
+ * @example 17179869184
+ */
+ memory_in_bytes: number;
+ /**
+ * @description How many cores are available to the codespace.
+ * @example 4
+ */
+ cpus: number;
+ /**
+ * @description Whether a prebuild is currently available when creating a codespace for this machine and repository. If a branch was not specified as a ref, the default branch will be assumed. Value will be "null" if prebuilds are not supported or prebuild availability could not be determined. Value will be "none" if no prebuild is available. Latest values "ready" and "in_progress" indicate the prebuild availability status.
+ * @example ready
+ * @enum {string|null}
+ */
+ prebuild_availability: "none" | "ready" | "in_progress" | null;
+ };
+ /**
+ * Codespaces Permissions Check
+ * @description Permission check result for a given devcontainer config.
+ */
+ "codespaces-permissions-check-for-devcontainer": {
+ /**
+ * @description Whether the user has accepted the permissions defined by the devcontainer config
+ * @example true
+ */
+ accepted: boolean;
+ };
+ /**
+ * Codespaces Secret
+ * @description Set repository secrets for GitHub Codespaces.
+ */
+ "repo-codespaces-secret": {
+ /**
+ * @description The name of the secret.
+ * @example SECRET_TOKEN
+ */
+ name: string;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ };
+ /**
+ * Collaborator
+ * @description Collaborator
+ */
+ collaborator: {
+ /** @example octocat */
+ login: string;
+ /** @example 1 */
+ id: number;
+ email?: string | null;
+ name?: string | null;
+ /** @example MDQ6VXNlcjE= */
+ node_id: string;
+ /**
+ * Format: uri
+ * @example https://github.com/images/error/octocat_happy.gif
+ */
+ avatar_url: string;
+ /** @example 41d064eb2195891e12d0413f63227ea7 */
+ gravatar_id: string | null;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat
+ */
+ url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat
+ */
+ html_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/followers
+ */
+ followers_url: string;
+ /** @example https://api.github.com/users/octocat/following{/other_user} */
+ following_url: string;
+ /** @example https://api.github.com/users/octocat/gists{/gist_id} */
+ gists_url: string;
+ /** @example https://api.github.com/users/octocat/starred{/owner}{/repo} */
+ starred_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/subscriptions
+ */
+ subscriptions_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/orgs
+ */
+ organizations_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/repos
+ */
+ repos_url: string;
+ /** @example https://api.github.com/users/octocat/events{/privacy} */
+ events_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/received_events
+ */
+ received_events_url: string;
+ /** @example User */
+ type: string;
+ site_admin: boolean;
+ permissions?: {
+ pull: boolean;
+ triage?: boolean;
+ push: boolean;
+ maintain?: boolean;
+ admin: boolean;
+ };
+ /** @example admin */
+ role_name: string;
+ };
+ /**
+ * Repository Invitation
+ * @description Repository invitations let you manage who you collaborate with.
+ */
+ "repository-invitation": {
+ /**
+ * @description Unique identifier of the repository invitation.
+ * @example 42
+ */
+ id: number;
+ repository: components["schemas"]["minimal-repository"];
+ invitee: components["schemas"]["nullable-simple-user"];
+ inviter: components["schemas"]["nullable-simple-user"];
+ /**
+ * @description The permission associated with the invitation.
+ * @example read
+ * @enum {string}
+ */
+ permissions: "read" | "write" | "admin" | "triage" | "maintain";
+ /**
+ * Format: date-time
+ * @example 2016-06-13T14:52:50-05:00
+ */
+ created_at: string;
+ /** @description Whether or not the invitation has expired */
+ expired?: boolean;
+ /**
+ * @description URL for the repository invitation
+ * @example https://api.github.com/user/repository-invitations/1
+ */
+ url: string;
+ /** @example https://github.com/octocat/Hello-World/invitations */
+ html_url: string;
+ node_id: string;
+ };
+ /**
+ * Collaborator
+ * @description Collaborator
+ */
+ "nullable-collaborator": {
+ /** @example octocat */
+ login: string;
+ /** @example 1 */
+ id: number;
+ email?: string | null;
+ name?: string | null;
+ /** @example MDQ6VXNlcjE= */
+ node_id: string;
+ /**
+ * Format: uri
+ * @example https://github.com/images/error/octocat_happy.gif
+ */
+ avatar_url: string;
+ /** @example 41d064eb2195891e12d0413f63227ea7 */
+ gravatar_id: string | null;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat
+ */
+ url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat
+ */
+ html_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/followers
+ */
+ followers_url: string;
+ /** @example https://api.github.com/users/octocat/following{/other_user} */
+ following_url: string;
+ /** @example https://api.github.com/users/octocat/gists{/gist_id} */
+ gists_url: string;
+ /** @example https://api.github.com/users/octocat/starred{/owner}{/repo} */
+ starred_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/subscriptions
+ */
+ subscriptions_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/orgs
+ */
+ organizations_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/repos
+ */
+ repos_url: string;
+ /** @example https://api.github.com/users/octocat/events{/privacy} */
+ events_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/received_events
+ */
+ received_events_url: string;
+ /** @example User */
+ type: string;
+ site_admin: boolean;
+ permissions?: {
+ pull: boolean;
+ triage?: boolean;
+ push: boolean;
+ maintain?: boolean;
+ admin: boolean;
+ };
+ /** @example admin */
+ role_name: string;
+ } | null;
+ /**
+ * Repository Collaborator Permission
+ * @description Repository Collaborator Permission
+ */
+ "repository-collaborator-permission": {
+ permission: string;
+ /** @example admin */
+ role_name: string;
+ user: components["schemas"]["nullable-collaborator"];
+ };
+ /**
+ * Commit Comment
+ * @description Commit Comment
+ */
+ "commit-comment": {
+ /** Format: uri */
+ html_url: string;
+ /** Format: uri */
+ url: string;
+ id: number;
+ node_id: string;
+ body: string;
+ path: string | null;
+ position: number | null;
+ line: number | null;
+ commit_id: string;
+ user: components["schemas"]["nullable-simple-user"];
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ author_association: components["schemas"]["author-association"];
+ reactions?: components["schemas"]["reaction-rollup"];
+ };
+ /**
+ * Branch Short
+ * @description Branch Short
+ */
+ "branch-short": {
+ name: string;
+ commit: {
+ sha: string;
+ url: string;
+ };
+ protected: boolean;
+ };
+ /**
+ * Link
+ * @description Hypermedia Link
+ */
+ link: {
+ href: string;
+ };
+ /**
+ * Auto merge
+ * @description The status of auto merging a pull request.
+ */
+ "auto-merge": {
+ enabled_by: components["schemas"]["simple-user"];
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ /** @description Title for the merge commit message. */
+ commit_title: string;
+ /** @description Commit message for the merge commit. */
+ commit_message: string;
+ } | null;
+ /**
+ * Pull Request Simple
+ * @description Pull Request Simple
+ */
+ "pull-request-simple": {
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/pulls/1347
+ */
+ url: string;
+ /** @example 1 */
+ id: number;
+ /** @example MDExOlB1bGxSZXF1ZXN0MQ== */
+ node_id: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World/pull/1347
+ */
+ html_url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World/pull/1347.diff
+ */
+ diff_url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World/pull/1347.patch
+ */
+ patch_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/issues/1347
+ */
+ issue_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits
+ */
+ commits_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments
+ */
+ review_comments_url: string;
+ /** @example https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number} */
+ review_comment_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/issues/1347/comments
+ */
+ comments_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e
+ */
+ statuses_url: string;
+ /** @example 1347 */
+ number: number;
+ /** @example open */
+ state: string;
+ /** @example true */
+ locked: boolean;
+ /** @example new-feature */
+ title: string;
+ user: components["schemas"]["nullable-simple-user"];
+ /** @example Please pull these awesome changes */
+ body: string | null;
+ labels: {
+ /** Format: int64 */
+ id: number;
+ node_id: string;
+ url: string;
+ name: string;
+ description: string;
+ color: string;
+ default: boolean;
+ }[];
+ milestone: components["schemas"]["nullable-milestone"];
+ /** @example too heated */
+ active_lock_reason?: string | null;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:01:12Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:01:12Z
+ */
+ updated_at: string;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:01:12Z
+ */
+ closed_at: string | null;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:01:12Z
+ */
+ merged_at: string | null;
+ /** @example e5bd3914e2e596debea16f433f57875b5b90bcd6 */
+ merge_commit_sha: string | null;
+ assignee: components["schemas"]["nullable-simple-user"];
+ assignees?: components["schemas"]["simple-user"][] | null;
+ requested_reviewers?: components["schemas"]["simple-user"][] | null;
+ requested_teams?: components["schemas"]["team"][] | null;
+ head: {
+ label: string;
+ ref: string;
+ repo: components["schemas"]["repository"];
+ sha: string;
+ user: components["schemas"]["nullable-simple-user"];
+ };
+ base: {
+ label: string;
+ ref: string;
+ repo: components["schemas"]["repository"];
+ sha: string;
+ user: components["schemas"]["nullable-simple-user"];
+ };
+ _links: {
+ comments: components["schemas"]["link"];
+ commits: components["schemas"]["link"];
+ statuses: components["schemas"]["link"];
+ html: components["schemas"]["link"];
+ issue: components["schemas"]["link"];
+ review_comments: components["schemas"]["link"];
+ review_comment: components["schemas"]["link"];
+ self: components["schemas"]["link"];
+ };
+ author_association: components["schemas"]["author-association"];
+ auto_merge: components["schemas"]["auto-merge"];
+ /**
+ * @description Indicates whether or not the pull request is a draft.
+ * @example false
+ */
+ draft?: boolean;
+ };
+ /** Simple Commit Status */
+ "simple-commit-status": {
+ description: string | null;
+ id: number;
+ node_id: string;
+ state: string;
+ context: string;
+ /** Format: uri */
+ target_url: string | null;
+ required?: boolean | null;
+ /** Format: uri */
+ avatar_url: string | null;
+ /** Format: uri */
+ url: string;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ };
+ /**
+ * Combined Commit Status
+ * @description Combined Commit Status
+ */
+ "combined-commit-status": {
+ state: string;
+ statuses: components["schemas"]["simple-commit-status"][];
+ sha: string;
+ total_count: number;
+ repository: components["schemas"]["minimal-repository"];
+ /** Format: uri */
+ commit_url: string;
+ /** Format: uri */
+ url: string;
+ };
+ /**
+ * Status
+ * @description The status of a commit.
+ */
+ status: {
+ url: string;
+ avatar_url: string | null;
+ id: number;
+ node_id: string;
+ state: string;
+ description: string | null;
+ target_url: string | null;
+ context: string;
+ created_at: string;
+ updated_at: string;
+ creator: components["schemas"]["nullable-simple-user"];
+ };
+ /**
+ * Code Of Conduct Simple
+ * @description Code of Conduct Simple
+ */
+ "nullable-code-of-conduct-simple": {
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/github/docs/community/code_of_conduct
+ */
+ url: string;
+ /** @example citizen_code_of_conduct */
+ key: string;
+ /** @example Citizen Code of Conduct */
+ name: string;
+ /**
+ * Format: uri
+ * @example https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md
+ */
+ html_url: string | null;
+ } | null;
+ /** Community Health File */
+ "nullable-community-health-file": {
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ html_url: string;
+ } | null;
+ /**
+ * Community Profile
+ * @description Community Profile
+ */
+ "community-profile": {
+ /** @example 100 */
+ health_percentage: number;
+ /** @example My first repository on GitHub! */
+ description: string | null;
+ /** @example example.com */
+ documentation: string | null;
+ files: {
+ code_of_conduct: components["schemas"]["nullable-code-of-conduct-simple"];
+ code_of_conduct_file: components["schemas"]["nullable-community-health-file"];
+ license: components["schemas"]["nullable-license-simple"];
+ contributing: components["schemas"]["nullable-community-health-file"];
+ readme: components["schemas"]["nullable-community-health-file"];
+ issue_template: components["schemas"]["nullable-community-health-file"];
+ pull_request_template: components["schemas"]["nullable-community-health-file"];
+ };
+ /**
+ * Format: date-time
+ * @example 2017-02-28T19:09:29Z
+ */
+ updated_at: string | null;
+ /** @example true */
+ content_reports_enabled?: boolean;
+ };
+ /**
+ * Commit Comparison
+ * @description Commit Comparison
+ */
+ "commit-comparison": {
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/compare/master...topic
+ */
+ url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World/compare/master...topic
+ */
+ html_url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World/compare/octocat:bbcd538c8e72b8c175046e27cc8f907076331401...octocat:0328041d1152db8ae77652d1618a02e57f745f17
+ */
+ permalink_url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World/compare/master...topic.diff
+ */
+ diff_url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World/compare/master...topic.patch
+ */
+ patch_url: string;
+ base_commit: components["schemas"]["commit"];
+ merge_base_commit: components["schemas"]["commit"];
+ /**
+ * @example ahead
+ * @enum {string}
+ */
+ status: "diverged" | "ahead" | "behind" | "identical";
+ /** @example 4 */
+ ahead_by: number;
+ /** @example 5 */
+ behind_by: number;
+ /** @example 6 */
+ total_commits: number;
+ commits: components["schemas"]["commit"][];
+ files?: components["schemas"]["diff-entry"][];
+ };
+ /**
+ * Content Tree
+ * @description Content Tree
+ */
+ "content-tree": {
+ type: string;
+ size: number;
+ name: string;
+ path: string;
+ sha: string;
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ git_url: string | null;
+ /** Format: uri */
+ html_url: string | null;
+ /** Format: uri */
+ download_url: string | null;
+ entries?: {
+ type: string;
+ size: number;
+ name: string;
+ path: string;
+ content?: string;
+ sha: string;
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ git_url: string | null;
+ /** Format: uri */
+ html_url: string | null;
+ /** Format: uri */
+ download_url: string | null;
+ _links: {
+ /** Format: uri */
+ git: string | null;
+ /** Format: uri */
+ html: string | null;
+ /** Format: uri */
+ self: string;
+ };
+ }[];
+ _links: {
+ /** Format: uri */
+ git: string | null;
+ /** Format: uri */
+ html: string | null;
+ /** Format: uri */
+ self: string;
+ };
+ };
+ /**
+ * Content Directory
+ * @description A list of directory items
+ */
+ "content-directory": {
+ /** @enum {string} */
+ type: "dir" | "file" | "submodule" | "symlink";
+ size: number;
+ name: string;
+ path: string;
+ content?: string;
+ sha: string;
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ git_url: string | null;
+ /** Format: uri */
+ html_url: string | null;
+ /** Format: uri */
+ download_url: string | null;
+ _links: {
+ /** Format: uri */
+ git: string | null;
+ /** Format: uri */
+ html: string | null;
+ /** Format: uri */
+ self: string;
+ };
+ }[];
+ /**
+ * Content File
+ * @description Content File
+ */
+ "content-file": {
+ /** @enum {string} */
+ type: "file";
+ encoding: string;
+ size: number;
+ name: string;
+ path: string;
+ content: string;
+ sha: string;
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ git_url: string | null;
+ /** Format: uri */
+ html_url: string | null;
+ /** Format: uri */
+ download_url: string | null;
+ _links: {
+ /** Format: uri */
+ git: string | null;
+ /** Format: uri */
+ html: string | null;
+ /** Format: uri */
+ self: string;
+ };
+ /** @example "actual/actual.md" */
+ target?: string;
+ /** @example "git://example.com/defunkt/dotjs.git" */
+ submodule_git_url?: string;
+ };
+ /**
+ * Symlink Content
+ * @description An object describing a symlink
+ */
+ "content-symlink": {
+ /** @enum {string} */
+ type: "symlink";
+ target: string;
+ size: number;
+ name: string;
+ path: string;
+ sha: string;
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ git_url: string | null;
+ /** Format: uri */
+ html_url: string | null;
+ /** Format: uri */
+ download_url: string | null;
+ _links: {
+ /** Format: uri */
+ git: string | null;
+ /** Format: uri */
+ html: string | null;
+ /** Format: uri */
+ self: string;
+ };
+ };
+ /**
+ * Submodule Content
+ * @description An object describing a submodule
+ */
+ "content-submodule": {
+ /** @enum {string} */
+ type: "submodule";
+ /** Format: uri */
+ submodule_git_url: string;
+ size: number;
+ name: string;
+ path: string;
+ sha: string;
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ git_url: string | null;
+ /** Format: uri */
+ html_url: string | null;
+ /** Format: uri */
+ download_url: string | null;
+ _links: {
+ /** Format: uri */
+ git: string | null;
+ /** Format: uri */
+ html: string | null;
+ /** Format: uri */
+ self: string;
+ };
+ };
+ /**
+ * File Commit
+ * @description File Commit
+ */
+ "file-commit": {
+ content: {
+ name?: string;
+ path?: string;
+ sha?: string;
+ size?: number;
+ url?: string;
+ html_url?: string;
+ git_url?: string;
+ download_url?: string;
+ type?: string;
+ _links?: {
+ self?: string;
+ git?: string;
+ html?: string;
+ };
+ } | null;
+ commit: {
+ sha?: string;
+ node_id?: string;
+ url?: string;
+ html_url?: string;
+ author?: {
+ date?: string;
+ name?: string;
+ email?: string;
+ };
+ committer?: {
+ date?: string;
+ name?: string;
+ email?: string;
+ };
+ message?: string;
+ tree?: {
+ url?: string;
+ sha?: string;
+ };
+ parents?: {
+ url?: string;
+ html_url?: string;
+ sha?: string;
+ }[];
+ verification?: {
+ verified?: boolean;
+ reason?: string;
+ signature?: string | null;
+ payload?: string | null;
+ };
+ };
+ };
+ /**
+ * Contributor
+ * @description Contributor
+ */
+ contributor: {
+ login?: string;
+ id?: number;
+ node_id?: string;
+ /** Format: uri */
+ avatar_url?: string;
+ gravatar_id?: string | null;
+ /** Format: uri */
+ url?: string;
+ /** Format: uri */
+ html_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ following_url?: string;
+ gists_url?: string;
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ events_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ type: string;
+ site_admin?: boolean;
+ contributions: number;
+ email?: string;
+ name?: string;
+ };
+ /** @description A Dependabot alert. */
+ "dependabot-alert": {
+ number: components["schemas"]["alert-number"];
+ /**
+ * @description The state of the Dependabot alert.
+ * @enum {string}
+ */
+ state: "auto_dismissed" | "dismissed" | "fixed" | "open";
+ /** @description Details for the vulnerable dependency. */
+ dependency: {
+ readonly package?: components["schemas"]["dependabot-alert-package"];
+ /** @description The full path to the dependency manifest file, relative to the root of the repository. */
+ readonly manifest_path?: string;
+ /**
+ * @description The execution scope of the vulnerable dependency.
+ * @enum {string|null}
+ */
+ readonly scope?: "development" | "runtime" | null;
+ };
+ security_advisory: components["schemas"]["dependabot-alert-security-advisory"];
+ security_vulnerability: components["schemas"]["dependabot-alert-security-vulnerability"];
+ url: components["schemas"]["alert-url"];
+ html_url: components["schemas"]["alert-html-url"];
+ created_at: components["schemas"]["alert-created-at"];
+ updated_at: components["schemas"]["alert-updated-at"];
+ dismissed_at: components["schemas"]["alert-dismissed-at"];
+ dismissed_by: components["schemas"]["nullable-simple-user"];
+ /**
+ * @description The reason that the alert was dismissed.
+ * @enum {string|null}
+ */
+ dismissed_reason:
+ | "fix_started"
+ | "inaccurate"
+ | "no_bandwidth"
+ | "not_used"
+ | "tolerable_risk"
+ | null;
+ /** @description An optional comment associated with the alert's dismissal. */
+ dismissed_comment: string | null;
+ fixed_at: components["schemas"]["alert-fixed-at"];
+ auto_dismissed_at?: components["schemas"]["alert-auto-dismissed-at"];
+ };
+ /**
+ * Dependabot Secret
+ * @description Set secrets for Dependabot.
+ */
+ "dependabot-secret": {
+ /**
+ * @description The name of the secret.
+ * @example MY_ARTIFACTORY_PASSWORD
+ */
+ name: string;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ };
+ /**
+ * Dependency Graph Diff
+ * @description A diff of the dependencies between two commits.
+ */
+ "dependency-graph-diff": {
+ /** @enum {string} */
+ change_type: "added" | "removed";
+ /** @example path/to/package-lock.json */
+ manifest: string;
+ /** @example npm */
+ ecosystem: string;
+ /** @example @actions/core */
+ name: string;
+ /** @example 1.0.0 */
+ version: string;
+ /** @example pkg:/npm/%40actions/core@1.1.0 */
+ package_url: string | null;
+ /** @example MIT */
+ license: string | null;
+ /** @example https://github.com/github/actions */
+ source_repository_url: string | null;
+ vulnerabilities: {
+ /** @example critical */
+ severity: string;
+ /** @example GHSA-rf4j-j272-fj86 */
+ advisory_ghsa_id: string;
+ /** @example A summary of the advisory. */
+ advisory_summary: string;
+ /** @example https://github.com/advisories/GHSA-rf4j-j272-fj86 */
+ advisory_url: string;
+ }[];
+ /**
+ * @description Where the dependency is utilized. `development` means that the dependency is only utilized in the development environment. `runtime` means that the dependency is utilized at runtime and in the development environment.
+ * @enum {string}
+ */
+ scope: "unknown" | "runtime" | "development";
+ }[];
+ /**
+ * Dependency Graph SPDX SBOM
+ * @description A schema for the SPDX JSON format returned by the Dependency Graph.
+ */
+ "dependency-graph-spdx-sbom": {
+ sbom: {
+ /**
+ * @description The SPDX identifier for the SPDX document.
+ * @example SPDXRef-DOCUMENT
+ */
+ SPDXID: string;
+ /**
+ * @description The version of the SPDX specification that this document conforms to.
+ * @example SPDX-2.3
+ */
+ spdxVersion: string;
+ creationInfo: {
+ /**
+ * @description The date and time the SPDX document was created.
+ * @example 2021-11-03T00:00:00Z
+ */
+ created: string;
+ /** @description The tools that were used to generate the SPDX document. */
+ creators: string[];
+ };
+ /**
+ * @description The name of the SPDX document.
+ * @example github/github
+ */
+ name: string;
+ /**
+ * @description The license under which the SPDX document is licensed.
+ * @example CC0-1.0
+ */
+ dataLicense: string;
+ /** @description The name of the repository that the SPDX document describes. */
+ documentDescribes: string[];
+ /**
+ * @description The namespace for the SPDX document.
+ * @example https://github.com/example/dependency_graph/sbom-123
+ */
+ documentNamespace: string;
+ packages: {
+ /**
+ * @description A unique SPDX identifier for the package.
+ * @example SPDXRef-Package
+ */
+ SPDXID?: string;
+ /**
+ * @description The name of the package.
+ * @example rubygems:github/github
+ */
+ name?: string;
+ /**
+ * @description The version of the package. If the package does not have an exact version specified,
+ * a version range is given.
+ * @example 1.0.0
+ */
+ versionInfo?: string;
+ /**
+ * @description The location where the package can be downloaded,
+ * or NOASSERTION if this has not been determined.
+ * @example NOASSERTION
+ */
+ downloadLocation?: string;
+ /**
+ * @description Whether the package's file content has been subjected to
+ * analysis during the creation of the SPDX document.
+ * @example false
+ */
+ filesAnalyzed?: boolean;
+ /**
+ * @description The license of the package as determined while creating the SPDX document.
+ * @example MIT
+ */
+ licenseConcluded?: string;
+ /**
+ * @description The license of the package as declared by its author, or NOASSERTION if this information
+ * was not available when the SPDX document was created.
+ * @example NOASSERTION
+ */
+ licenseDeclared?: string;
+ /**
+ * @description The distribution source of this package, or NOASSERTION if this was not determined.
+ * @example NOASSERTION
+ */
+ supplier?: string;
+ externalRefs?: {
+ /**
+ * @description The category of reference to an external resource this reference refers to.
+ * @example PACKAGE-MANAGER
+ */
+ referenceCategory: string;
+ /**
+ * @description A locator for the particular external resource this reference refers to.
+ * @example pkg:gem/rails@6.0.1
+ */
+ referenceLocator: string;
+ /**
+ * @description The category of reference to an external resource this reference refers to.
+ * @example purl
+ */
+ referenceType: string;
+ }[];
+ }[];
+ };
+ };
+ /**
+ * metadata
+ * @description User-defined metadata to store domain-specific information limited to 8 keys with scalar values.
+ */
+ metadata: {
+ [key: string]: (string | number | boolean) | null;
+ };
+ dependency: {
+ /**
+ * @description Package-url (PURL) of dependency. See https://github.com/package-url/purl-spec for more details.
+ * @example pkg:/npm/%40actions/http-client@1.0.11
+ */
+ package_url?: string;
+ metadata?: components["schemas"]["metadata"];
+ /**
+ * @description A notation of whether a dependency is requested directly by this manifest or is a dependency of another dependency.
+ * @example direct
+ * @enum {string}
+ */
+ relationship?: "direct" | "indirect";
+ /**
+ * @description A notation of whether the dependency is required for the primary build artifact (runtime) or is only used for development. Future versions of this specification may allow for more granular scopes.
+ * @example runtime
+ * @enum {string}
+ */
+ scope?: "runtime" | "development";
+ /**
+ * @description Array of package-url (PURLs) of direct child dependencies.
+ * @example @actions/http-client
+ */
+ dependencies?: string[];
+ };
+ manifest: {
+ /**
+ * @description The name of the manifest.
+ * @example package-lock.json
+ */
+ name: string;
+ file?: {
+ /**
+ * @description The path of the manifest file relative to the root of the Git repository.
+ * @example /src/build/package-lock.json
+ */
+ source_location?: string;
+ };
+ metadata?: components["schemas"]["metadata"];
+ /** @description A collection of resolved package dependencies. */
+ resolved?: {
+ [key: string]: components["schemas"]["dependency"];
+ };
+ };
+ /**
+ * snapshot
+ * @description Create a new snapshot of a repository's dependencies.
+ */
+ snapshot: {
+ /** @description The version of the repository snapshot submission. */
+ version: number;
+ job: {
+ /**
+ * @description The external ID of the job.
+ * @example 5622a2b0-63f6-4732-8c34-a1ab27e102a11
+ */
+ id: string;
+ /**
+ * @description Correlator provides a key that is used to group snapshots submitted over time. Only the "latest" submitted snapshot for a given combination of `job.correlator` and `detector.name` will be considered when calculating a repository's current dependencies. Correlator should be as unique as it takes to distinguish all detection runs for a given "wave" of CI workflow you run. If you're using GitHub Actions, a good default value for this could be the environment variables GITHUB_WORKFLOW and GITHUB_JOB concatenated together. If you're using a build matrix, then you'll also need to add additional key(s) to distinguish between each submission inside a matrix variation.
+ * @example yourworkflowname_yourjobname
+ */
+ correlator: string;
+ /**
+ * @description The url for the job.
+ * @example http://example.com/build
+ */
+ html_url?: string;
+ };
+ /**
+ * @description The commit SHA associated with this dependency snapshot. Maximum length: 40 characters.
+ * @example ddc951f4b1293222421f2c8df679786153acf689
+ */
+ sha: string;
+ /**
+ * @description The repository branch that triggered this snapshot.
+ * @example refs/heads/main
+ */
+ ref: string;
+ /** @description A description of the detector used. */
+ detector: {
+ /**
+ * @description The name of the detector used.
+ * @example docker buildtime detector
+ */
+ name: string;
+ /**
+ * @description The version of the detector used.
+ * @example 1.0.0
+ */
+ version: string;
+ /**
+ * @description The url of the detector used.
+ * @example http://example.com/docker-buildtimer-detector
+ */
+ url: string;
+ };
+ metadata?: components["schemas"]["metadata"];
+ /** @description A collection of package manifests, which are a collection of related dependencies declared in a file or representing a logical group of dependencies. */
+ manifests?: {
+ [key: string]: components["schemas"]["manifest"];
+ };
+ /**
+ * Format: date-time
+ * @description The time at which the snapshot was scanned.
+ * @example 2020-06-13T14:52:50-05:00
+ */
+ scanned: string;
+ };
+ /**
+ * Deployment Status
+ * @description The status of a deployment.
+ */
+ "deployment-status": {
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/example/deployments/42/statuses/1
+ */
+ url: string;
+ /** @example 1 */
+ id: number;
+ /** @example MDE2OkRlcGxveW1lbnRTdGF0dXMx */
+ node_id: string;
+ /**
+ * @description The state of the status.
+ * @example success
+ * @enum {string}
+ */
+ state:
+ | "error"
+ | "failure"
+ | "inactive"
+ | "pending"
+ | "success"
+ | "queued"
+ | "in_progress";
+ creator: components["schemas"]["nullable-simple-user"];
+ /**
+ * @description A short description of the status.
+ * @default
+ * @example Deployment finished successfully.
+ */
+ description: string;
+ /**
+ * @description The environment of the deployment that the status is for.
+ * @default
+ * @example production
+ */
+ environment?: string;
+ /**
+ * Format: uri
+ * @description Deprecated: the URL to associate with this status.
+ * @default
+ * @example https://example.com/deployment/42/output
+ */
+ target_url: string;
+ /**
+ * Format: date-time
+ * @example 2012-07-20T01:19:13Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2012-07-20T01:19:13Z
+ */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/example/deployments/42
+ */
+ deployment_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/example
+ */
+ repository_url: string;
+ /**
+ * Format: uri
+ * @description The URL for accessing your environment.
+ * @default
+ * @example https://staging.example.com/
+ */
+ environment_url?: string;
+ /**
+ * Format: uri
+ * @description The URL to associate with this status.
+ * @default
+ * @example https://example.com/deployment/42/output
+ */
+ log_url?: string;
+ performed_via_github_app?: components["schemas"]["nullable-integration"];
+ };
+ /**
+ * @description The amount of time to delay a job after the job is initially triggered. The time (in minutes) must be an integer between 0 and 43,200 (30 days).
+ * @example 30
+ */
+ "wait-timer": number;
+ /** @description The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. */
+ "deployment-branch-policy-settings": {
+ /** @description Whether only branches with branch protection rules can deploy to this environment. If `protected_branches` is `true`, `custom_branch_policies` must be `false`; if `protected_branches` is `false`, `custom_branch_policies` must be `true`. */
+ protected_branches: boolean;
+ /** @description Whether only branches that match the specified name patterns can deploy to this environment. If `custom_branch_policies` is `true`, `protected_branches` must be `false`; if `custom_branch_policies` is `false`, `protected_branches` must be `true`. */
+ custom_branch_policies: boolean;
+ } | null;
+ /**
+ * Environment
+ * @description Details of a deployment environment
+ */
+ environment: {
+ /**
+ * @description The id of the environment.
+ * @example 56780428
+ */
+ id: number;
+ /** @example MDExOkVudmlyb25tZW50NTY3ODA0Mjg= */
+ node_id: string;
+ /**
+ * @description The name of the environment.
+ * @example staging
+ */
+ name: string;
+ /** @example https://api.github.com/repos/github/hello-world/environments/staging */
+ url: string;
+ /** @example https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging */
+ html_url: string;
+ /**
+ * Format: date-time
+ * @description The time that the environment was created, in ISO 8601 format.
+ * @example 2020-11-23T22:00:40Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @description The time that the environment was last updated, in ISO 8601 format.
+ * @example 2020-11-23T22:00:40Z
+ */
+ updated_at: string;
+ /** @description Built-in deployment protection rules for the environment. */
+ protection_rules?: (
+ | {
+ /** @example 3515 */
+ id: number;
+ /** @example MDQ6R2F0ZTM1MTU= */
+ node_id: string;
+ /** @example wait_timer */
+ type: string;
+ wait_timer?: components["schemas"]["wait-timer"];
+ }
+ | {
+ /** @example 3755 */
+ id: number;
+ /** @example MDQ6R2F0ZTM3NTU= */
+ node_id: string;
+ /**
+ * @description Whether deployments to this environment can be approved by the user who created the deployment.
+ * @example false
+ */
+ prevent_self_review?: boolean;
+ /** @example required_reviewers */
+ type: string;
+ /** @description The people or teams that may approve jobs that reference the environment. You can list up to six users or teams as reviewers. The reviewers must have at least read access to the repository. Only one of the required reviewers needs to approve the job for it to proceed. */
+ reviewers?: {
+ type?: components["schemas"]["deployment-reviewer-type"];
+ reviewer?:
+ | components["schemas"]["simple-user"]
+ | components["schemas"]["team"];
+ }[];
+ }
+ | {
+ /** @example 3515 */
+ id: number;
+ /** @example MDQ6R2F0ZTM1MTU= */
+ node_id: string;
+ /** @example branch_policy */
+ type: string;
+ }
+ )[];
+ deployment_branch_policy?: components["schemas"]["deployment-branch-policy-settings"];
+ };
+ /**
+ * @description Whether or not a user who created the job is prevented from approving their own job.
+ * @example false
+ */
+ "prevent-self-review": boolean;
+ /**
+ * Deployment branch policy
+ * @description Details of a deployment branch or tag policy.
+ */
+ "deployment-branch-policy": {
+ /**
+ * @description The unique identifier of the branch or tag policy.
+ * @example 361471
+ */
+ id?: number;
+ /** @example MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjE0NzE= */
+ node_id?: string;
+ /**
+ * @description The name pattern that branches or tags must match in order to deploy to the environment.
+ * @example release/*
+ */
+ name?: string;
+ /**
+ * @description Whether this rule targets a branch or tag.
+ * @example branch
+ * @enum {string}
+ */
+ type?: "branch" | "tag";
+ };
+ /** Deployment branch and tag policy name pattern */
+ "deployment-branch-policy-name-pattern-with-type": {
+ /**
+ * @description The name pattern that branches or tags must match in order to deploy to the environment.
+ *
+ * Wildcard characters will not match `/`. For example, to match branches that begin with `release/` and contain an additional single slash, use `release/*\/*`.
+ * For more information about pattern matching syntax, see the [Ruby File.fnmatch documentation](https://ruby-doc.org/core-2.5.1/File.html#method-c-fnmatch).
+ * @example release/*
+ */
+ name: string;
+ /**
+ * @description Whether this rule targets a branch or tag
+ * @example branch
+ * @enum {string}
+ */
+ type?: "branch" | "tag";
+ };
+ /** Deployment branch policy name pattern */
+ "deployment-branch-policy-name-pattern": {
+ /**
+ * @description The name pattern that branches must match in order to deploy to the environment.
+ *
+ * Wildcard characters will not match `/`. For example, to match branches that begin with `release/` and contain an additional single slash, use `release/*\/*`.
+ * For more information about pattern matching syntax, see the [Ruby File.fnmatch documentation](https://ruby-doc.org/core-2.5.1/File.html#method-c-fnmatch).
+ * @example release/*
+ */
+ name: string;
+ };
+ /**
+ * Custom deployment protection rule app
+ * @description A GitHub App that is providing a custom deployment protection rule.
+ */
+ "custom-deployment-rule-app": {
+ /**
+ * @description The unique identifier of the deployment protection rule integration.
+ * @example 3515
+ */
+ id: number;
+ /**
+ * @description The slugified name of the deployment protection rule integration.
+ * @example my-custom-app
+ */
+ slug: string;
+ /**
+ * @description The URL for the endpoint to get details about the app.
+ * @example https://api.github.com/apps/custom-app-slug
+ */
+ integration_url: string;
+ /**
+ * @description The node ID for the deployment protection rule integration.
+ * @example MDQ6R2F0ZTM1MTU=
+ */
+ node_id: string;
+ };
+ /**
+ * Deployment protection rule
+ * @description Deployment protection rule
+ */
+ "deployment-protection-rule": {
+ /**
+ * @description The unique identifier for the deployment protection rule.
+ * @example 3515
+ */
+ id: number;
+ /**
+ * @description The node ID for the deployment protection rule.
+ * @example MDQ6R2F0ZTM1MTU=
+ */
+ node_id: string;
+ /**
+ * @description Whether the deployment protection rule is enabled for the environment.
+ * @example true
+ */
+ enabled: boolean;
+ app: components["schemas"]["custom-deployment-rule-app"];
+ };
+ /**
+ * Short Blob
+ * @description Short Blob
+ */
+ "short-blob": {
+ url: string;
+ sha: string;
+ };
+ /**
+ * Blob
+ * @description Blob
+ */
+ blob: {
+ content: string;
+ encoding: string;
+ /** Format: uri */
+ url: string;
+ sha: string;
+ size: number | null;
+ node_id: string;
+ highlighted_content?: string;
+ };
+ /**
+ * Git Commit
+ * @description Low-level Git commit operations within a repository
+ */
+ "git-commit": {
+ /**
+ * @description SHA for the commit
+ * @example 7638417db6d59f3c431d3e1f261cc637155684cd
+ */
+ sha: string;
+ node_id: string;
+ /** Format: uri */
+ url: string;
+ /** @description Identifying information for the git-user */
+ author: {
+ /**
+ * Format: date-time
+ * @description Timestamp of the commit
+ * @example 2014-08-09T08:02:04+12:00
+ */
+ date: string;
+ /**
+ * @description Git email address of the user
+ * @example monalisa.octocat@example.com
+ */
+ email: string;
+ /**
+ * @description Name of the git user
+ * @example Monalisa Octocat
+ */
+ name: string;
+ };
+ /** @description Identifying information for the git-user */
+ committer: {
+ /**
+ * Format: date-time
+ * @description Timestamp of the commit
+ * @example 2014-08-09T08:02:04+12:00
+ */
+ date: string;
+ /**
+ * @description Git email address of the user
+ * @example monalisa.octocat@example.com
+ */
+ email: string;
+ /**
+ * @description Name of the git user
+ * @example Monalisa Octocat
+ */
+ name: string;
+ };
+ /**
+ * @description Message describing the purpose of the commit
+ * @example Fix #42
+ */
+ message: string;
+ tree: {
+ /**
+ * @description SHA for the commit
+ * @example 7638417db6d59f3c431d3e1f261cc637155684cd
+ */
+ sha: string;
+ /** Format: uri */
+ url: string;
+ };
+ parents: {
+ /**
+ * @description SHA for the commit
+ * @example 7638417db6d59f3c431d3e1f261cc637155684cd
+ */
+ sha: string;
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ html_url: string;
+ }[];
+ verification: {
+ verified: boolean;
+ reason: string;
+ signature: string | null;
+ payload: string | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ };
+ /**
+ * Git Reference
+ * @description Git references within a repository
+ */
+ "git-ref": {
+ ref: string;
+ node_id: string;
+ /** Format: uri */
+ url: string;
+ object: {
+ type: string;
+ /**
+ * @description SHA for the reference
+ * @example 7638417db6d59f3c431d3e1f261cc637155684cd
+ */
+ sha: string;
+ /** Format: uri */
+ url: string;
+ };
+ };
+ /**
+ * Git Tag
+ * @description Metadata for a Git tag
+ */
+ "git-tag": {
+ /** @example MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== */
+ node_id: string;
+ /**
+ * @description Name of the tag
+ * @example v0.0.1
+ */
+ tag: string;
+ /** @example 940bd336248efae0f9ee5bc7b2d5c985887b16ac */
+ sha: string;
+ /**
+ * Format: uri
+ * @description URL for the tag
+ * @example https://api.github.com/repositories/42/git/tags/940bd336248efae0f9ee5bc7b2d5c985887b16ac
+ */
+ url: string;
+ /**
+ * @description Message describing the purpose of the tag
+ * @example Initial public release
+ */
+ message: string;
+ tagger: {
+ date: string;
+ email: string;
+ name: string;
+ };
+ object: {
+ sha: string;
+ type: string;
+ /** Format: uri */
+ url: string;
+ };
+ verification?: components["schemas"]["verification"];
+ };
+ /**
+ * Git Tree
+ * @description The hierarchy between files in a Git repository.
+ */
+ "git-tree": {
+ sha: string;
+ /** Format: uri */
+ url: string;
+ truncated: boolean;
+ /**
+ * @description Objects specifying a tree structure
+ * @example [
+ * {
+ * "path": "file.rb",
+ * "mode": "100644",
+ * "type": "blob",
+ * "size": 30,
+ * "sha": "44b4fc6d56897b048c772eb4087f854f46256132",
+ * "url": "https://api.github.com/repos/octocat/Hello-World/git/blobs/44b4fc6d56897b048c772eb4087f854f46256132",
+ * "properties": {
+ * "path": {
+ * "type": "string"
+ * },
+ * "mode": {
+ * "type": "string"
+ * },
+ * "type": {
+ * "type": "string"
+ * },
+ * "size": {
+ * "type": "integer"
+ * },
+ * "sha": {
+ * "type": "string"
+ * },
+ * "url": {
+ * "type": "string"
+ * }
+ * },
+ * "required": [
+ * "path",
+ * "mode",
+ * "type",
+ * "sha",
+ * "url",
+ * "size"
+ * ]
+ * }
+ * ]
+ */
+ tree: {
+ /** @example test/file.rb */
+ path?: string;
+ /** @example 040000 */
+ mode?: string;
+ /** @example tree */
+ type?: string;
+ /** @example 23f6827669e43831def8a7ad935069c8bd418261 */
+ sha?: string;
+ /** @example 12 */
+ size?: number;
+ /** @example https://api.github.com/repos/owner-482f3203ecf01f67e9deb18e/BBB_Private_Repo/git/blobs/23f6827669e43831def8a7ad935069c8bd418261 */
+ url?: string;
+ }[];
+ };
+ /** Hook Response */
+ "hook-response": {
+ code: number | null;
+ status: string | null;
+ message: string | null;
+ };
+ /**
+ * Webhook
+ * @description Webhooks for repositories.
+ */
+ hook: {
+ type: string;
+ /**
+ * @description Unique identifier of the webhook.
+ * @example 42
+ */
+ id: number;
+ /**
+ * @description The name of a valid service, use 'web' for a webhook.
+ * @example web
+ */
+ name: string;
+ /**
+ * @description Determines whether the hook is actually triggered on pushes.
+ * @example true
+ */
+ active: boolean;
+ /**
+ * @description Determines what events the hook is triggered for. Default: ['push'].
+ * @example [
+ * "push",
+ * "pull_request"
+ * ]
+ */
+ events: string[];
+ config: components["schemas"]["webhook-config"];
+ /**
+ * Format: date-time
+ * @example 2011-09-06T20:39:23Z
+ */
+ updated_at: string;
+ /**
+ * Format: date-time
+ * @example 2011-09-06T17:26:27Z
+ */
+ created_at: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/hooks/1
+ */
+ url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/hooks/1/test
+ */
+ test_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/hooks/1/pings
+ */
+ ping_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries
+ */
+ deliveries_url?: string;
+ last_response: components["schemas"]["hook-response"];
+ };
+ /**
+ * Import
+ * @description A repository import from an external source.
+ */
+ import: {
+ vcs: string | null;
+ use_lfs?: boolean;
+ /** @description The URL of the originating repository. */
+ vcs_url: string;
+ svc_root?: string;
+ tfvc_project?: string;
+ /** @enum {string} */
+ status:
+ | "auth"
+ | "error"
+ | "none"
+ | "detecting"
+ | "choose"
+ | "auth_failed"
+ | "importing"
+ | "mapping"
+ | "waiting_to_push"
+ | "pushing"
+ | "complete"
+ | "setup"
+ | "unknown"
+ | "detection_found_multiple"
+ | "detection_found_nothing"
+ | "detection_needs_auth";
+ status_text?: string | null;
+ failed_step?: string | null;
+ error_message?: string | null;
+ import_percent?: number | null;
+ commit_count?: number | null;
+ push_percent?: number | null;
+ has_large_files?: boolean;
+ large_files_size?: number;
+ large_files_count?: number;
+ project_choices?: {
+ vcs?: string;
+ tfvc_project?: string;
+ human_name?: string;
+ }[];
+ message?: string;
+ authors_count?: number | null;
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ html_url: string;
+ /** Format: uri */
+ authors_url: string;
+ /** Format: uri */
+ repository_url: string;
+ svn_root?: string;
+ };
+ /**
+ * Porter Author
+ * @description Porter Author
+ */
+ "porter-author": {
+ id: number;
+ remote_id: string;
+ remote_name: string;
+ email: string;
+ name: string;
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ import_url: string;
+ };
+ /**
+ * Porter Large File
+ * @description Porter Large File
+ */
+ "porter-large-file": {
+ ref_name: string;
+ path: string;
+ oid: string;
+ size: number;
+ };
+ /**
+ * Issue
+ * @description Issues are a great way to keep track of tasks, enhancements, and bugs for your projects.
+ */
+ "nullable-issue": {
+ /** Format: int64 */
+ id: number;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the issue
+ * @example https://api.github.com/repositories/42/issues/1
+ */
+ url: string;
+ /** Format: uri */
+ repository_url: string;
+ labels_url: string;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: uri */
+ events_url: string;
+ /** Format: uri */
+ html_url: string;
+ /**
+ * @description Number uniquely identifying the issue within its repository
+ * @example 42
+ */
+ number: number;
+ /**
+ * @description State of the issue; either 'open' or 'closed'
+ * @example open
+ */
+ state: string;
+ /**
+ * @description The reason for the current state
+ * @example not_planned
+ * @enum {string|null}
+ */
+ state_reason?: "completed" | "reopened" | "not_planned" | null;
+ /**
+ * @description Title of the issue
+ * @example Widget creation fails in Safari on OS X 10.8
+ */
+ title: string;
+ /**
+ * @description Contents of the issue
+ * @example It looks like the new widget form is broken on Safari. When I try and create the widget, Safari crashes. This is reproducible on 10.8, but not 10.9. Maybe a browser bug?
+ */
+ body?: string | null;
+ user: components["schemas"]["nullable-simple-user"];
+ /**
+ * @description Labels to associate with this issue; pass one or more label names to replace the set of labels on this issue; send an empty array to clear all labels from the issue; note that the labels are silently dropped for users without push access to the repository
+ * @example [
+ * "bug",
+ * "registration"
+ * ]
+ */
+ labels: OneOf<
+ [
+ string,
+ {
+ /** Format: int64 */
+ id?: number;
+ node_id?: string;
+ /** Format: uri */
+ url?: string;
+ name?: string;
+ description?: string | null;
+ color?: string | null;
+ default?: boolean;
+ },
+ ]
+ >[];
+ assignee: components["schemas"]["nullable-simple-user"];
+ assignees?: components["schemas"]["simple-user"][] | null;
+ milestone: components["schemas"]["nullable-milestone"];
+ locked: boolean;
+ active_lock_reason?: string | null;
+ comments: number;
+ pull_request?: {
+ /** Format: date-time */
+ merged_at?: string | null;
+ /** Format: uri */
+ diff_url: string | null;
+ /** Format: uri */
+ html_url: string | null;
+ /** Format: uri */
+ patch_url: string | null;
+ /** Format: uri */
+ url: string | null;
+ };
+ /** Format: date-time */
+ closed_at: string | null;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ draft?: boolean;
+ closed_by?: components["schemas"]["nullable-simple-user"];
+ body_html?: string;
+ body_text?: string;
+ /** Format: uri */
+ timeline_url?: string;
+ repository?: components["schemas"]["repository"];
+ performed_via_github_app?: components["schemas"]["nullable-integration"];
+ author_association: components["schemas"]["author-association"];
+ reactions?: components["schemas"]["reaction-rollup"];
+ } | null;
+ /**
+ * Issue Event Label
+ * @description Issue Event Label
+ */
+ "issue-event-label": {
+ name: string | null;
+ color: string | null;
+ };
+ /** Issue Event Dismissed Review */
+ "issue-event-dismissed-review": {
+ state: string;
+ review_id: number;
+ dismissal_message: string | null;
+ dismissal_commit_id?: string | null;
+ };
+ /**
+ * Issue Event Milestone
+ * @description Issue Event Milestone
+ */
+ "issue-event-milestone": {
+ title: string;
+ };
+ /**
+ * Issue Event Project Card
+ * @description Issue Event Project Card
+ */
+ "issue-event-project-card": {
+ /** Format: uri */
+ url: string;
+ id: number;
+ /** Format: uri */
+ project_url: string;
+ project_id: number;
+ column_name: string;
+ previous_column_name?: string;
+ };
+ /**
+ * Issue Event Rename
+ * @description Issue Event Rename
+ */
+ "issue-event-rename": {
+ from: string;
+ to: string;
+ };
+ /**
+ * Issue Event
+ * @description Issue Event
+ */
+ "issue-event": {
+ /**
+ * Format: int64
+ * @example 1
+ */
+ id: number;
+ /** @example MDEwOklzc3VlRXZlbnQx */
+ node_id: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/issues/events/1
+ */
+ url: string;
+ actor: components["schemas"]["nullable-simple-user"];
+ /** @example closed */
+ event: string;
+ /** @example 6dcb09b5b57875f334f61aebed695e2e4193db5e */
+ commit_id: string | null;
+ /** @example https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e */
+ commit_url: string | null;
+ /**
+ * Format: date-time
+ * @example 2011-04-14T16:00:49Z
+ */
+ created_at: string;
+ issue?: components["schemas"]["nullable-issue"];
+ label?: components["schemas"]["issue-event-label"];
+ assignee?: components["schemas"]["nullable-simple-user"];
+ assigner?: components["schemas"]["nullable-simple-user"];
+ review_requester?: components["schemas"]["nullable-simple-user"];
+ requested_reviewer?: components["schemas"]["nullable-simple-user"];
+ requested_team?: components["schemas"]["team"];
+ dismissed_review?: components["schemas"]["issue-event-dismissed-review"];
+ milestone?: components["schemas"]["issue-event-milestone"];
+ project_card?: components["schemas"]["issue-event-project-card"];
+ rename?: components["schemas"]["issue-event-rename"];
+ author_association?: components["schemas"]["author-association"];
+ lock_reason?: string | null;
+ performed_via_github_app?: components["schemas"]["nullable-integration"];
+ };
+ /**
+ * Labeled Issue Event
+ * @description Labeled Issue Event
+ */
+ "labeled-issue-event": {
+ id: number;
+ node_id: string;
+ url: string;
+ actor: components["schemas"]["simple-user"];
+ event: string;
+ commit_id: string | null;
+ commit_url: string | null;
+ created_at: string;
+ performed_via_github_app: components["schemas"]["nullable-integration"];
+ label: {
+ name: string;
+ color: string;
+ };
+ };
+ /**
+ * Unlabeled Issue Event
+ * @description Unlabeled Issue Event
+ */
+ "unlabeled-issue-event": {
+ id: number;
+ node_id: string;
+ url: string;
+ actor: components["schemas"]["simple-user"];
+ event: string;
+ commit_id: string | null;
+ commit_url: string | null;
+ created_at: string;
+ performed_via_github_app: components["schemas"]["nullable-integration"];
+ label: {
+ name: string;
+ color: string;
+ };
+ };
+ /**
+ * Assigned Issue Event
+ * @description Assigned Issue Event
+ */
+ "assigned-issue-event": {
+ id: number;
+ node_id: string;
+ url: string;
+ actor: components["schemas"]["simple-user"];
+ event: string;
+ commit_id: string | null;
+ commit_url: string | null;
+ created_at: string;
+ performed_via_github_app: components["schemas"]["integration"];
+ assignee: components["schemas"]["simple-user"];
+ assigner: components["schemas"]["simple-user"];
+ };
+ /**
+ * Unassigned Issue Event
+ * @description Unassigned Issue Event
+ */
+ "unassigned-issue-event": {
+ id: number;
+ node_id: string;
+ url: string;
+ actor: components["schemas"]["simple-user"];
+ event: string;
+ commit_id: string | null;
+ commit_url: string | null;
+ created_at: string;
+ performed_via_github_app: components["schemas"]["nullable-integration"];
+ assignee: components["schemas"]["simple-user"];
+ assigner: components["schemas"]["simple-user"];
+ };
+ /**
+ * Milestoned Issue Event
+ * @description Milestoned Issue Event
+ */
+ "milestoned-issue-event": {
+ id: number;
+ node_id: string;
+ url: string;
+ actor: components["schemas"]["simple-user"];
+ event: string;
+ commit_id: string | null;
+ commit_url: string | null;
+ created_at: string;
+ performed_via_github_app: components["schemas"]["nullable-integration"];
+ milestone: {
+ title: string;
+ };
+ };
+ /**
+ * Demilestoned Issue Event
+ * @description Demilestoned Issue Event
+ */
+ "demilestoned-issue-event": {
+ id: number;
+ node_id: string;
+ url: string;
+ actor: components["schemas"]["simple-user"];
+ event: string;
+ commit_id: string | null;
+ commit_url: string | null;
+ created_at: string;
+ performed_via_github_app: components["schemas"]["nullable-integration"];
+ milestone: {
+ title: string;
+ };
+ };
+ /**
+ * Renamed Issue Event
+ * @description Renamed Issue Event
+ */
+ "renamed-issue-event": {
+ id: number;
+ node_id: string;
+ url: string;
+ actor: components["schemas"]["simple-user"];
+ event: string;
+ commit_id: string | null;
+ commit_url: string | null;
+ created_at: string;
+ performed_via_github_app: components["schemas"]["nullable-integration"];
+ rename: {
+ from: string;
+ to: string;
+ };
+ };
+ /**
+ * Review Requested Issue Event
+ * @description Review Requested Issue Event
+ */
+ "review-requested-issue-event": {
+ id: number;
+ node_id: string;
+ url: string;
+ actor: components["schemas"]["simple-user"];
+ event: string;
+ commit_id: string | null;
+ commit_url: string | null;
+ created_at: string;
+ performed_via_github_app: components["schemas"]["nullable-integration"];
+ review_requester: components["schemas"]["simple-user"];
+ requested_team?: components["schemas"]["team"];
+ requested_reviewer?: components["schemas"]["simple-user"];
+ };
+ /**
+ * Review Request Removed Issue Event
+ * @description Review Request Removed Issue Event
+ */
+ "review-request-removed-issue-event": {
+ id: number;
+ node_id: string;
+ url: string;
+ actor: components["schemas"]["simple-user"];
+ event: string;
+ commit_id: string | null;
+ commit_url: string | null;
+ created_at: string;
+ performed_via_github_app: components["schemas"]["nullable-integration"];
+ review_requester: components["schemas"]["simple-user"];
+ requested_team?: components["schemas"]["team"];
+ requested_reviewer?: components["schemas"]["simple-user"];
+ };
+ /**
+ * Review Dismissed Issue Event
+ * @description Review Dismissed Issue Event
+ */
+ "review-dismissed-issue-event": {
+ id: number;
+ node_id: string;
+ url: string;
+ actor: components["schemas"]["simple-user"];
+ event: string;
+ commit_id: string | null;
+ commit_url: string | null;
+ created_at: string;
+ performed_via_github_app: components["schemas"]["nullable-integration"];
+ dismissed_review: {
+ state: string;
+ review_id: number;
+ dismissal_message: string | null;
+ dismissal_commit_id?: string;
+ };
+ };
+ /**
+ * Locked Issue Event
+ * @description Locked Issue Event
+ */
+ "locked-issue-event": {
+ id: number;
+ node_id: string;
+ url: string;
+ actor: components["schemas"]["simple-user"];
+ event: string;
+ commit_id: string | null;
+ commit_url: string | null;
+ created_at: string;
+ performed_via_github_app: components["schemas"]["nullable-integration"];
+ /** @example "off-topic" */
+ lock_reason: string | null;
+ };
+ /**
+ * Added to Project Issue Event
+ * @description Added to Project Issue Event
+ */
+ "added-to-project-issue-event": {
+ id: number;
+ node_id: string;
+ url: string;
+ actor: components["schemas"]["simple-user"];
+ event: string;
+ commit_id: string | null;
+ commit_url: string | null;
+ created_at: string;
+ performed_via_github_app: components["schemas"]["nullable-integration"];
+ project_card?: {
+ id: number;
+ /** Format: uri */
+ url: string;
+ project_id: number;
+ /** Format: uri */
+ project_url: string;
+ column_name: string;
+ previous_column_name?: string;
+ };
+ };
+ /**
+ * Moved Column in Project Issue Event
+ * @description Moved Column in Project Issue Event
+ */
+ "moved-column-in-project-issue-event": {
+ id: number;
+ node_id: string;
+ url: string;
+ actor: components["schemas"]["simple-user"];
+ event: string;
+ commit_id: string | null;
+ commit_url: string | null;
+ created_at: string;
+ performed_via_github_app: components["schemas"]["nullable-integration"];
+ project_card?: {
+ id: number;
+ /** Format: uri */
+ url: string;
+ project_id: number;
+ /** Format: uri */
+ project_url: string;
+ column_name: string;
+ previous_column_name?: string;
+ };
+ };
+ /**
+ * Removed from Project Issue Event
+ * @description Removed from Project Issue Event
+ */
+ "removed-from-project-issue-event": {
+ id: number;
+ node_id: string;
+ url: string;
+ actor: components["schemas"]["simple-user"];
+ event: string;
+ commit_id: string | null;
+ commit_url: string | null;
+ created_at: string;
+ performed_via_github_app: components["schemas"]["nullable-integration"];
+ project_card?: {
+ id: number;
+ /** Format: uri */
+ url: string;
+ project_id: number;
+ /** Format: uri */
+ project_url: string;
+ column_name: string;
+ previous_column_name?: string;
+ };
+ };
+ /**
+ * Converted Note to Issue Issue Event
+ * @description Converted Note to Issue Issue Event
+ */
+ "converted-note-to-issue-issue-event": {
+ id: number;
+ node_id: string;
+ url: string;
+ actor: components["schemas"]["simple-user"];
+ event: string;
+ commit_id: string | null;
+ commit_url: string | null;
+ created_at: string;
+ performed_via_github_app: components["schemas"]["integration"];
+ project_card?: {
+ id: number;
+ /** Format: uri */
+ url: string;
+ project_id: number;
+ /** Format: uri */
+ project_url: string;
+ column_name: string;
+ previous_column_name?: string;
+ };
+ };
+ /**
+ * Issue Event for Issue
+ * @description Issue Event for Issue
+ */
+ "issue-event-for-issue":
+ | components["schemas"]["labeled-issue-event"]
+ | components["schemas"]["unlabeled-issue-event"]
+ | components["schemas"]["assigned-issue-event"]
+ | components["schemas"]["unassigned-issue-event"]
+ | components["schemas"]["milestoned-issue-event"]
+ | components["schemas"]["demilestoned-issue-event"]
+ | components["schemas"]["renamed-issue-event"]
+ | components["schemas"]["review-requested-issue-event"]
+ | components["schemas"]["review-request-removed-issue-event"]
+ | components["schemas"]["review-dismissed-issue-event"]
+ | components["schemas"]["locked-issue-event"]
+ | components["schemas"]["added-to-project-issue-event"]
+ | components["schemas"]["moved-column-in-project-issue-event"]
+ | components["schemas"]["removed-from-project-issue-event"]
+ | components["schemas"]["converted-note-to-issue-issue-event"];
+ /**
+ * Label
+ * @description Color-coded labels help you categorize and filter your issues (just like labels in Gmail).
+ */
+ label: {
+ /**
+ * Format: int64
+ * @example 208045946
+ */
+ id: number;
+ /** @example MDU6TGFiZWwyMDgwNDU5NDY= */
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ * @example https://api.github.com/repositories/42/labels/bug
+ */
+ url: string;
+ /**
+ * @description The name of the label.
+ * @example bug
+ */
+ name: string;
+ /** @example Something isn't working */
+ description: string | null;
+ /**
+ * @description 6-character hex code, without the leading #, identifying the color
+ * @example FFFFFF
+ */
+ color: string;
+ /** @example true */
+ default: boolean;
+ };
+ /**
+ * Timeline Comment Event
+ * @description Timeline Comment Event
+ */
+ "timeline-comment-event": {
+ event: string;
+ actor: components["schemas"]["simple-user"];
+ /**
+ * @description Unique identifier of the issue comment
+ * @example 42
+ */
+ id: number;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the issue comment
+ * @example https://api.github.com/repositories/42/issues/comments/1
+ */
+ url: string;
+ /**
+ * @description Contents of the issue comment
+ * @example What version of Safari were you using when you observed this bug?
+ */
+ body?: string;
+ body_text?: string;
+ body_html?: string;
+ /** Format: uri */
+ html_url: string;
+ user: components["schemas"]["simple-user"];
+ /**
+ * Format: date-time
+ * @example 2011-04-14T16:00:49Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2011-04-14T16:00:49Z
+ */
+ updated_at: string;
+ /** Format: uri */
+ issue_url: string;
+ author_association: components["schemas"]["author-association"];
+ performed_via_github_app?: components["schemas"]["nullable-integration"];
+ reactions?: components["schemas"]["reaction-rollup"];
+ };
+ /**
+ * Timeline Cross Referenced Event
+ * @description Timeline Cross Referenced Event
+ */
+ "timeline-cross-referenced-event": {
+ event: string;
+ actor?: components["schemas"]["simple-user"];
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ source: {
+ type?: string;
+ issue?: components["schemas"]["issue"];
+ };
+ };
+ /**
+ * Timeline Committed Event
+ * @description Timeline Committed Event
+ */
+ "timeline-committed-event": {
+ event?: string;
+ /**
+ * @description SHA for the commit
+ * @example 7638417db6d59f3c431d3e1f261cc637155684cd
+ */
+ sha: string;
+ node_id: string;
+ /** Format: uri */
+ url: string;
+ /** @description Identifying information for the git-user */
+ author: {
+ /**
+ * Format: date-time
+ * @description Timestamp of the commit
+ * @example 2014-08-09T08:02:04+12:00
+ */
+ date: string;
+ /**
+ * @description Git email address of the user
+ * @example monalisa.octocat@example.com
+ */
+ email: string;
+ /**
+ * @description Name of the git user
+ * @example Monalisa Octocat
+ */
+ name: string;
+ };
+ /** @description Identifying information for the git-user */
+ committer: {
+ /**
+ * Format: date-time
+ * @description Timestamp of the commit
+ * @example 2014-08-09T08:02:04+12:00
+ */
+ date: string;
+ /**
+ * @description Git email address of the user
+ * @example monalisa.octocat@example.com
+ */
+ email: string;
+ /**
+ * @description Name of the git user
+ * @example Monalisa Octocat
+ */
+ name: string;
+ };
+ /**
+ * @description Message describing the purpose of the commit
+ * @example Fix #42
+ */
+ message: string;
+ tree: {
+ /**
+ * @description SHA for the commit
+ * @example 7638417db6d59f3c431d3e1f261cc637155684cd
+ */
+ sha: string;
+ /** Format: uri */
+ url: string;
+ };
+ parents: {
+ /**
+ * @description SHA for the commit
+ * @example 7638417db6d59f3c431d3e1f261cc637155684cd
+ */
+ sha: string;
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ html_url: string;
+ }[];
+ verification: {
+ verified: boolean;
+ reason: string;
+ signature: string | null;
+ payload: string | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ };
+ /**
+ * Timeline Reviewed Event
+ * @description Timeline Reviewed Event
+ */
+ "timeline-reviewed-event": {
+ event: string;
+ /**
+ * @description Unique identifier of the review
+ * @example 42
+ */
+ id: number;
+ /** @example MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= */
+ node_id: string;
+ user: components["schemas"]["simple-user"];
+ /**
+ * @description The text of the review.
+ * @example This looks great.
+ */
+ body: string | null;
+ /** @example CHANGES_REQUESTED */
+ state: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80
+ */
+ html_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/pulls/12
+ */
+ pull_request_url: string;
+ _links: {
+ html: {
+ href: string;
+ };
+ pull_request: {
+ href: string;
+ };
+ };
+ /** Format: date-time */
+ submitted_at?: string;
+ /**
+ * @description A commit SHA for the review.
+ * @example 54bb654c9e6025347f57900a4a5c2313a96b8035
+ */
+ commit_id: string;
+ body_html?: string;
+ body_text?: string;
+ author_association: components["schemas"]["author-association"];
+ };
+ /**
+ * Pull Request Review Comment
+ * @description Pull Request Review Comments are comments on a portion of the Pull Request's diff.
+ */
+ "pull-request-review-comment": {
+ /**
+ * @description URL for the pull request review comment
+ * @example https://api.github.com/repos/octocat/Hello-World/pulls/comments/1
+ */
+ url: string;
+ /**
+ * @description The ID of the pull request review to which the comment belongs.
+ * @example 42
+ */
+ pull_request_review_id: number | null;
+ /**
+ * @description The ID of the pull request review comment.
+ * @example 1
+ */
+ id: number;
+ /**
+ * @description The node ID of the pull request review comment.
+ * @example MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw
+ */
+ node_id: string;
+ /**
+ * @description The diff of the line that the comment refers to.
+ * @example @@ -16,33 +16,40 @@ public class Connection : IConnection...
+ */
+ diff_hunk: string;
+ /**
+ * @description The relative path of the file to which the comment applies.
+ * @example config/database.yaml
+ */
+ path: string;
+ /**
+ * @description The line index in the diff to which the comment applies. This field is deprecated; use `line` instead.
+ * @example 1
+ */
+ position?: number;
+ /**
+ * @description The index of the original line in the diff to which the comment applies. This field is deprecated; use `original_line` instead.
+ * @example 4
+ */
+ original_position?: number;
+ /**
+ * @description The SHA of the commit to which the comment applies.
+ * @example 6dcb09b5b57875f334f61aebed695e2e4193db5e
+ */
+ commit_id: string;
+ /**
+ * @description The SHA of the original commit to which the comment applies.
+ * @example 9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840
+ */
+ original_commit_id: string;
+ /**
+ * @description The comment ID to reply to.
+ * @example 8
+ */
+ in_reply_to_id?: number;
+ user: components["schemas"]["simple-user"];
+ /**
+ * @description The text of the comment.
+ * @example We should probably include a check for null values here.
+ */
+ body: string;
+ /**
+ * Format: date-time
+ * @example 2011-04-14T16:00:49Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2011-04-14T16:00:49Z
+ */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description HTML URL for the pull request review comment.
+ * @example https://github.com/octocat/Hello-World/pull/1#discussion-diff-1
+ */
+ html_url: string;
+ /**
+ * Format: uri
+ * @description URL for the pull request that the review comment belongs to.
+ * @example https://api.github.com/repos/octocat/Hello-World/pulls/1
+ */
+ pull_request_url: string;
+ author_association: components["schemas"]["author-association"];
+ _links: {
+ self: {
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/pulls/comments/1
+ */
+ href: string;
+ };
+ html: {
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World/pull/1#discussion-diff-1
+ */
+ href: string;
+ };
+ pull_request: {
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/pulls/1
+ */
+ href: string;
+ };
+ };
+ /**
+ * @description The first line of the range for a multi-line comment.
+ * @example 2
+ */
+ start_line?: number | null;
+ /**
+ * @description The first line of the range for a multi-line comment.
+ * @example 2
+ */
+ original_start_line?: number | null;
+ /**
+ * @description The side of the first line of the range for a multi-line comment.
+ * @default RIGHT
+ * @enum {string|null}
+ */
+ start_side?: "LEFT" | "RIGHT" | null;
+ /**
+ * @description The line of the blob to which the comment applies. The last line of the range for a multi-line comment
+ * @example 2
+ */
+ line?: number;
+ /**
+ * @description The line of the blob to which the comment applies. The last line of the range for a multi-line comment
+ * @example 2
+ */
+ original_line?: number;
+ /**
+ * @description The side of the diff to which the comment applies. The side of the last line of the range for a multi-line comment
+ * @default RIGHT
+ * @enum {string}
+ */
+ side?: "LEFT" | "RIGHT";
+ /**
+ * @description The level at which the comment is targeted, can be a diff line or a file.
+ * @enum {string}
+ */
+ subject_type?: "line" | "file";
+ reactions?: components["schemas"]["reaction-rollup"];
+ /** @example "comment body
" */
+ body_html?: string;
+ /** @example "comment body" */
+ body_text?: string;
+ };
+ /**
+ * Timeline Line Commented Event
+ * @description Timeline Line Commented Event
+ */
+ "timeline-line-commented-event": {
+ event?: string;
+ node_id?: string;
+ comments?: components["schemas"]["pull-request-review-comment"][];
+ };
+ /**
+ * Timeline Commit Commented Event
+ * @description Timeline Commit Commented Event
+ */
+ "timeline-commit-commented-event": {
+ event?: string;
+ node_id?: string;
+ commit_id?: string;
+ comments?: components["schemas"]["commit-comment"][];
+ };
+ /**
+ * Timeline Assigned Issue Event
+ * @description Timeline Assigned Issue Event
+ */
+ "timeline-assigned-issue-event": {
+ id: number;
+ node_id: string;
+ url: string;
+ actor: components["schemas"]["simple-user"];
+ event: string;
+ commit_id: string | null;
+ commit_url: string | null;
+ created_at: string;
+ performed_via_github_app: components["schemas"]["nullable-integration"];
+ assignee: components["schemas"]["simple-user"];
+ };
+ /**
+ * Timeline Unassigned Issue Event
+ * @description Timeline Unassigned Issue Event
+ */
+ "timeline-unassigned-issue-event": {
+ id: number;
+ node_id: string;
+ url: string;
+ actor: components["schemas"]["simple-user"];
+ event: string;
+ commit_id: string | null;
+ commit_url: string | null;
+ created_at: string;
+ performed_via_github_app: components["schemas"]["nullable-integration"];
+ assignee: components["schemas"]["simple-user"];
+ };
+ /**
+ * State Change Issue Event
+ * @description State Change Issue Event
+ */
+ "state-change-issue-event": {
+ id: number;
+ node_id: string;
+ url: string;
+ actor: components["schemas"]["simple-user"];
+ event: string;
+ commit_id: string | null;
+ commit_url: string | null;
+ created_at: string;
+ performed_via_github_app: components["schemas"]["nullable-integration"];
+ state_reason?: string | null;
+ };
+ /**
+ * Timeline Event
+ * @description Timeline Event
+ */
+ "timeline-issue-events":
+ | components["schemas"]["labeled-issue-event"]
+ | components["schemas"]["unlabeled-issue-event"]
+ | components["schemas"]["milestoned-issue-event"]
+ | components["schemas"]["demilestoned-issue-event"]
+ | components["schemas"]["renamed-issue-event"]
+ | components["schemas"]["review-requested-issue-event"]
+ | components["schemas"]["review-request-removed-issue-event"]
+ | components["schemas"]["review-dismissed-issue-event"]
+ | components["schemas"]["locked-issue-event"]
+ | components["schemas"]["added-to-project-issue-event"]
+ | components["schemas"]["moved-column-in-project-issue-event"]
+ | components["schemas"]["removed-from-project-issue-event"]
+ | components["schemas"]["converted-note-to-issue-issue-event"]
+ | components["schemas"]["timeline-comment-event"]
+ | components["schemas"]["timeline-cross-referenced-event"]
+ | components["schemas"]["timeline-committed-event"]
+ | components["schemas"]["timeline-reviewed-event"]
+ | components["schemas"]["timeline-line-commented-event"]
+ | components["schemas"]["timeline-commit-commented-event"]
+ | components["schemas"]["timeline-assigned-issue-event"]
+ | components["schemas"]["timeline-unassigned-issue-event"]
+ | components["schemas"]["state-change-issue-event"];
+ /**
+ * Deploy Key
+ * @description An SSH key granting access to a single repository.
+ */
+ "deploy-key": {
+ id: number;
+ key: string;
+ url: string;
+ title: string;
+ verified: boolean;
+ created_at: string;
+ read_only: boolean;
+ added_by?: string | null;
+ last_used?: string | null;
+ };
+ /**
+ * Language
+ * @description Language
+ */
+ language: {
+ [key: string]: number;
+ };
+ /**
+ * License Content
+ * @description License Content
+ */
+ "license-content": {
+ name: string;
+ path: string;
+ sha: string;
+ size: number;
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ html_url: string | null;
+ /** Format: uri */
+ git_url: string | null;
+ /** Format: uri */
+ download_url: string | null;
+ type: string;
+ content: string;
+ encoding: string;
+ _links: {
+ /** Format: uri */
+ git: string | null;
+ /** Format: uri */
+ html: string | null;
+ /** Format: uri */
+ self: string;
+ };
+ license: components["schemas"]["nullable-license-simple"];
+ };
+ /**
+ * Merged upstream
+ * @description Results of a successful merge upstream request
+ */
+ "merged-upstream": {
+ message?: string;
+ /** @enum {string} */
+ merge_type?: "merge" | "fast-forward" | "none";
+ base_branch?: string;
+ };
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/milestones/1
+ */
+ url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World/milestones/v1.0
+ */
+ html_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/milestones/1/labels
+ */
+ labels_url: string;
+ /** @example 1002604 */
+ id: number;
+ /** @example MDk6TWlsZXN0b25lMTAwMjYwNA== */
+ node_id: string;
+ /**
+ * @description The number of the milestone.
+ * @example 42
+ */
+ number: number;
+ /**
+ * @description The state of the milestone.
+ * @default open
+ * @example open
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /**
+ * @description The title of the milestone.
+ * @example v1.0
+ */
+ title: string;
+ /** @example Tracking milestone for version 1.0 */
+ description: string | null;
+ creator: components["schemas"]["nullable-simple-user"];
+ /** @example 4 */
+ open_issues: number;
+ /** @example 8 */
+ closed_issues: number;
+ /**
+ * Format: date-time
+ * @example 2011-04-10T20:09:31Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2014-03-03T18:58:10Z
+ */
+ updated_at: string;
+ /**
+ * Format: date-time
+ * @example 2013-02-12T13:22:01Z
+ */
+ closed_at: string | null;
+ /**
+ * Format: date-time
+ * @example 2012-10-09T23:39:01Z
+ */
+ due_on: string | null;
+ };
+ /** Pages Source Hash */
+ "pages-source-hash": {
+ branch: string;
+ path: string;
+ };
+ /** Pages Https Certificate */
+ "pages-https-certificate": {
+ /**
+ * @example approved
+ * @enum {string}
+ */
+ state:
+ | "new"
+ | "authorization_created"
+ | "authorization_pending"
+ | "authorized"
+ | "authorization_revoked"
+ | "issued"
+ | "uploaded"
+ | "approved"
+ | "errored"
+ | "bad_authz"
+ | "destroy_pending"
+ | "dns_changed";
+ /** @example Certificate is approved */
+ description: string;
+ /**
+ * @description Array of the domain set and its alternate name (if it is configured)
+ * @example [
+ * "example.com",
+ * "www.example.com"
+ * ]
+ */
+ domains: string[];
+ /** Format: date */
+ expires_at?: string;
+ };
+ /**
+ * GitHub Pages
+ * @description The configuration for GitHub Pages for a repository.
+ */
+ page: {
+ /**
+ * Format: uri
+ * @description The API address for accessing this Page resource.
+ * @example https://api.github.com/repos/github/hello-world/pages
+ */
+ url: string;
+ /**
+ * @description The status of the most recent build of the Page.
+ * @example built
+ * @enum {string|null}
+ */
+ status: "built" | "building" | "errored" | null;
+ /**
+ * @description The Pages site's custom domain
+ * @example example.com
+ */
+ cname: string | null;
+ /**
+ * @description The state if the domain is verified
+ * @example pending
+ * @enum {string|null}
+ */
+ protected_domain_state?: "pending" | "verified" | "unverified" | null;
+ /**
+ * Format: date-time
+ * @description The timestamp when a pending domain becomes unverified.
+ */
+ pending_domain_unverified_at?: string | null;
+ /**
+ * @description Whether the Page has a custom 404 page.
+ * @default false
+ * @example false
+ */
+ custom_404: boolean;
+ /**
+ * Format: uri
+ * @description The web address the Page can be accessed from.
+ * @example https://example.com
+ */
+ html_url?: string;
+ /**
+ * @description The process in which the Page will be built.
+ * @example legacy
+ * @enum {string|null}
+ */
+ build_type?: "legacy" | "workflow" | null;
+ source?: components["schemas"]["pages-source-hash"];
+ /**
+ * @description Whether the GitHub Pages site is publicly visible. If set to `true`, the site is accessible to anyone on the internet. If set to `false`, the site will only be accessible to users who have at least `read` access to the repository that published the site.
+ * @example true
+ */
+ public: boolean;
+ https_certificate?: components["schemas"]["pages-https-certificate"];
+ /**
+ * @description Whether https is enabled on the domain
+ * @example true
+ */
+ https_enforced?: boolean;
+ };
+ /**
+ * Page Build
+ * @description Page Build
+ */
+ "page-build": {
+ /** Format: uri */
+ url: string;
+ status: string;
+ error: {
+ message: string | null;
+ };
+ pusher: components["schemas"]["nullable-simple-user"];
+ commit: string;
+ duration: number;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ };
+ /**
+ * Page Build Status
+ * @description Page Build Status
+ */
+ "page-build-status": {
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/github/hello-world/pages/builds/latest
+ */
+ url: string;
+ /** @example queued */
+ status: string;
+ };
+ /**
+ * GitHub Pages
+ * @description The GitHub Pages deployment status.
+ */
+ "page-deployment": {
+ /** @description The ID of the GitHub Pages deployment. This is the Git SHA of the deployed commit. */
+ id: number | string;
+ /**
+ * Format: uri
+ * @description The URI to monitor GitHub Pages deployment status.
+ * @example https://api.github.com/repos/github/hello-world/pages/deployments/4fd754f7e594640989b406850d0bc8f06a121251
+ */
+ status_url: string;
+ /**
+ * Format: uri
+ * @description The URI to the deployed GitHub Pages.
+ * @example hello-world.github.io
+ */
+ page_url: string;
+ /**
+ * Format: uri
+ * @description The URI to the deployed GitHub Pages preview.
+ * @example monalisa-1231a2312sa32-23sda74.drafts.github.io
+ */
+ preview_url?: string;
+ };
+ /** GitHub Pages deployment status */
+ "pages-deployment-status": {
+ /**
+ * @description The current status of the deployment.
+ * @enum {string}
+ */
+ status?:
+ | "deployment_in_progress"
+ | "syncing_files"
+ | "finished_file_sync"
+ | "updating_pages"
+ | "purging_cdn"
+ | "deployment_cancelled"
+ | "deployment_failed"
+ | "deployment_content_failed"
+ | "deployment_attempt_error"
+ | "deployment_lost"
+ | "succeed";
+ };
+ /**
+ * Pages Health Check Status
+ * @description Pages Health Check Status
+ */
+ "pages-health-check": {
+ domain?: {
+ host?: string;
+ uri?: string;
+ nameservers?: string;
+ dns_resolves?: boolean;
+ is_proxied?: boolean | null;
+ is_cloudflare_ip?: boolean | null;
+ is_fastly_ip?: boolean | null;
+ is_old_ip_address?: boolean | null;
+ is_a_record?: boolean | null;
+ has_cname_record?: boolean | null;
+ has_mx_records_present?: boolean | null;
+ is_valid_domain?: boolean;
+ is_apex_domain?: boolean;
+ should_be_a_record?: boolean | null;
+ is_cname_to_github_user_domain?: boolean | null;
+ is_cname_to_pages_dot_github_dot_com?: boolean | null;
+ is_cname_to_fastly?: boolean | null;
+ is_pointed_to_github_pages_ip?: boolean | null;
+ is_non_github_pages_ip_present?: boolean | null;
+ is_pages_domain?: boolean;
+ is_served_by_pages?: boolean | null;
+ is_valid?: boolean;
+ reason?: string | null;
+ responds_to_https?: boolean;
+ enforces_https?: boolean;
+ https_error?: string | null;
+ is_https_eligible?: boolean | null;
+ caa_error?: string | null;
+ };
+ alt_domain?: {
+ host?: string;
+ uri?: string;
+ nameservers?: string;
+ dns_resolves?: boolean;
+ is_proxied?: boolean | null;
+ is_cloudflare_ip?: boolean | null;
+ is_fastly_ip?: boolean | null;
+ is_old_ip_address?: boolean | null;
+ is_a_record?: boolean | null;
+ has_cname_record?: boolean | null;
+ has_mx_records_present?: boolean | null;
+ is_valid_domain?: boolean;
+ is_apex_domain?: boolean;
+ should_be_a_record?: boolean | null;
+ is_cname_to_github_user_domain?: boolean | null;
+ is_cname_to_pages_dot_github_dot_com?: boolean | null;
+ is_cname_to_fastly?: boolean | null;
+ is_pointed_to_github_pages_ip?: boolean | null;
+ is_non_github_pages_ip_present?: boolean | null;
+ is_pages_domain?: boolean;
+ is_served_by_pages?: boolean | null;
+ is_valid?: boolean;
+ reason?: string | null;
+ responds_to_https?: boolean;
+ enforces_https?: boolean;
+ https_error?: string | null;
+ is_https_eligible?: boolean | null;
+ caa_error?: string | null;
+ } | null;
+ };
+ /**
+ * Pull Request
+ * @description Pull requests let you tell others about changes you've pushed to a repository on GitHub. Once a pull request is sent, interested parties can review the set of changes, discuss potential modifications, and even push follow-up commits if necessary.
+ */
+ "pull-request": {
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/pulls/1347
+ */
+ url: string;
+ /** @example 1 */
+ id: number;
+ /** @example MDExOlB1bGxSZXF1ZXN0MQ== */
+ node_id: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World/pull/1347
+ */
+ html_url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World/pull/1347.diff
+ */
+ diff_url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World/pull/1347.patch
+ */
+ patch_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/issues/1347
+ */
+ issue_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits
+ */
+ commits_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments
+ */
+ review_comments_url: string;
+ /** @example https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number} */
+ review_comment_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/issues/1347/comments
+ */
+ comments_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e
+ */
+ statuses_url: string;
+ /**
+ * @description Number uniquely identifying the pull request within its repository.
+ * @example 42
+ */
+ number: number;
+ /**
+ * @description State of this Pull Request. Either `open` or `closed`.
+ * @example open
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @example true */
+ locked: boolean;
+ /**
+ * @description The title of the pull request.
+ * @example Amazing new feature
+ */
+ title: string;
+ user: components["schemas"]["simple-user"];
+ /** @example Please pull these awesome changes */
+ body: string | null;
+ labels: {
+ /** Format: int64 */
+ id: number;
+ node_id: string;
+ url: string;
+ name: string;
+ description: string | null;
+ color: string;
+ default: boolean;
+ }[];
+ milestone: components["schemas"]["nullable-milestone"];
+ /** @example too heated */
+ active_lock_reason?: string | null;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:01:12Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:01:12Z
+ */
+ updated_at: string;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:01:12Z
+ */
+ closed_at: string | null;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:01:12Z
+ */
+ merged_at: string | null;
+ /** @example e5bd3914e2e596debea16f433f57875b5b90bcd6 */
+ merge_commit_sha: string | null;
+ assignee: components["schemas"]["nullable-simple-user"];
+ assignees?: components["schemas"]["simple-user"][] | null;
+ requested_reviewers?: components["schemas"]["simple-user"][] | null;
+ requested_teams?: components["schemas"]["team-simple"][] | null;
+ head: {
+ label: string;
+ ref: string;
+ repo: {
+ archive_url: string;
+ assignees_url: string;
+ blobs_url: string;
+ branches_url: string;
+ collaborators_url: string;
+ comments_url: string;
+ commits_url: string;
+ compare_url: string;
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ git_commits_url: string;
+ git_refs_url: string;
+ git_tags_url: string;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ node_id: string;
+ issue_comment_url: string;
+ issue_events_url: string;
+ issues_url: string;
+ keys_url: string;
+ labels_url: string;
+ /** Format: uri */
+ languages_url: string;
+ /** Format: uri */
+ merges_url: string;
+ milestones_url: string;
+ name: string;
+ notifications_url: string;
+ owner: {
+ /** Format: uri */
+ avatar_url: string;
+ events_url: string;
+ /** Format: uri */
+ followers_url: string;
+ following_url: string;
+ gists_url: string;
+ gravatar_id: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ node_id: string;
+ login: string;
+ /** Format: uri */
+ organizations_url: string;
+ /** Format: uri */
+ received_events_url: string;
+ /** Format: uri */
+ repos_url: string;
+ site_admin: boolean;
+ starred_url: string;
+ /** Format: uri */
+ subscriptions_url: string;
+ type: string;
+ /** Format: uri */
+ url: string;
+ };
+ private: boolean;
+ pulls_url: string;
+ releases_url: string;
+ /** Format: uri */
+ stargazers_url: string;
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ trees_url: string;
+ /** Format: uri */
+ url: string;
+ clone_url: string;
+ default_branch: string;
+ forks: number;
+ forks_count: number;
+ git_url: string;
+ has_downloads: boolean;
+ has_issues: boolean;
+ has_projects: boolean;
+ has_wiki: boolean;
+ has_pages: boolean;
+ has_discussions: boolean;
+ /** Format: uri */
+ homepage: string | null;
+ language: string | null;
+ master_branch?: string;
+ archived: boolean;
+ disabled: boolean;
+ /** @description The repository visibility: public, private, or internal. */
+ visibility?: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ open_issues: number;
+ open_issues_count: number;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ push: boolean;
+ triage?: boolean;
+ pull: boolean;
+ };
+ temp_clone_token?: string;
+ allow_merge_commit?: boolean;
+ allow_squash_merge?: boolean;
+ allow_rebase_merge?: boolean;
+ license: {
+ key: string;
+ name: string;
+ /** Format: uri */
+ url: string | null;
+ spdx_id: string | null;
+ node_id: string;
+ } | null;
+ /** Format: date-time */
+ pushed_at: string;
+ size: number;
+ ssh_url: string;
+ stargazers_count: number;
+ /** Format: uri */
+ svn_url: string;
+ topics?: string[];
+ watchers: number;
+ watchers_count: number;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ allow_forking?: boolean;
+ is_template?: boolean;
+ web_commit_signoff_required?: boolean;
+ } | null;
+ sha: string;
+ user: {
+ /** Format: uri */
+ avatar_url: string;
+ events_url: string;
+ /** Format: uri */
+ followers_url: string;
+ following_url: string;
+ gists_url: string;
+ gravatar_id: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ node_id: string;
+ login: string;
+ /** Format: uri */
+ organizations_url: string;
+ /** Format: uri */
+ received_events_url: string;
+ /** Format: uri */
+ repos_url: string;
+ site_admin: boolean;
+ starred_url: string;
+ /** Format: uri */
+ subscriptions_url: string;
+ type: string;
+ /** Format: uri */
+ url: string;
+ };
+ };
+ base: {
+ label: string;
+ ref: string;
+ repo: {
+ archive_url: string;
+ assignees_url: string;
+ blobs_url: string;
+ branches_url: string;
+ collaborators_url: string;
+ comments_url: string;
+ commits_url: string;
+ compare_url: string;
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ git_commits_url: string;
+ git_refs_url: string;
+ git_tags_url: string;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ is_template?: boolean;
+ node_id: string;
+ issue_comment_url: string;
+ issue_events_url: string;
+ issues_url: string;
+ keys_url: string;
+ labels_url: string;
+ /** Format: uri */
+ languages_url: string;
+ /** Format: uri */
+ merges_url: string;
+ milestones_url: string;
+ name: string;
+ notifications_url: string;
+ owner: {
+ /** Format: uri */
+ avatar_url: string;
+ events_url: string;
+ /** Format: uri */
+ followers_url: string;
+ following_url: string;
+ gists_url: string;
+ gravatar_id: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ node_id: string;
+ login: string;
+ /** Format: uri */
+ organizations_url: string;
+ /** Format: uri */
+ received_events_url: string;
+ /** Format: uri */
+ repos_url: string;
+ site_admin: boolean;
+ starred_url: string;
+ /** Format: uri */
+ subscriptions_url: string;
+ type: string;
+ /** Format: uri */
+ url: string;
+ };
+ private: boolean;
+ pulls_url: string;
+ releases_url: string;
+ /** Format: uri */
+ stargazers_url: string;
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ trees_url: string;
+ /** Format: uri */
+ url: string;
+ clone_url: string;
+ default_branch: string;
+ forks: number;
+ forks_count: number;
+ git_url: string;
+ has_downloads: boolean;
+ has_issues: boolean;
+ has_projects: boolean;
+ has_wiki: boolean;
+ has_pages: boolean;
+ has_discussions: boolean;
+ /** Format: uri */
+ homepage: string | null;
+ language: string | null;
+ master_branch?: string;
+ archived: boolean;
+ disabled: boolean;
+ /** @description The repository visibility: public, private, or internal. */
+ visibility?: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ open_issues: number;
+ open_issues_count: number;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ push: boolean;
+ triage?: boolean;
+ pull: boolean;
+ };
+ temp_clone_token?: string;
+ allow_merge_commit?: boolean;
+ allow_squash_merge?: boolean;
+ allow_rebase_merge?: boolean;
+ license: components["schemas"]["nullable-license-simple"];
+ /** Format: date-time */
+ pushed_at: string;
+ size: number;
+ ssh_url: string;
+ stargazers_count: number;
+ /** Format: uri */
+ svn_url: string;
+ topics?: string[];
+ watchers: number;
+ watchers_count: number;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ allow_forking?: boolean;
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ user: {
+ /** Format: uri */
+ avatar_url: string;
+ events_url: string;
+ /** Format: uri */
+ followers_url: string;
+ following_url: string;
+ gists_url: string;
+ gravatar_id: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ node_id: string;
+ login: string;
+ /** Format: uri */
+ organizations_url: string;
+ /** Format: uri */
+ received_events_url: string;
+ /** Format: uri */
+ repos_url: string;
+ site_admin: boolean;
+ starred_url: string;
+ /** Format: uri */
+ subscriptions_url: string;
+ type: string;
+ /** Format: uri */
+ url: string;
+ };
+ };
+ _links: {
+ comments: components["schemas"]["link"];
+ commits: components["schemas"]["link"];
+ statuses: components["schemas"]["link"];
+ html: components["schemas"]["link"];
+ issue: components["schemas"]["link"];
+ review_comments: components["schemas"]["link"];
+ review_comment: components["schemas"]["link"];
+ self: components["schemas"]["link"];
+ };
+ author_association: components["schemas"]["author-association"];
+ auto_merge: components["schemas"]["auto-merge"];
+ /**
+ * @description Indicates whether or not the pull request is a draft.
+ * @example false
+ */
+ draft?: boolean;
+ merged: boolean;
+ /** @example true */
+ mergeable: boolean | null;
+ /** @example true */
+ rebaseable?: boolean | null;
+ /** @example clean */
+ mergeable_state: string;
+ merged_by: components["schemas"]["nullable-simple-user"];
+ /** @example 10 */
+ comments: number;
+ /** @example 0 */
+ review_comments: number;
+ /**
+ * @description Indicates whether maintainers can modify the pull request.
+ * @example true
+ */
+ maintainer_can_modify: boolean;
+ /** @example 3 */
+ commits: number;
+ /** @example 100 */
+ additions: number;
+ /** @example 3 */
+ deletions: number;
+ /** @example 5 */
+ changed_files: number;
+ };
+ /**
+ * Pull Request Merge Result
+ * @description Pull Request Merge Result
+ */
+ "pull-request-merge-result": {
+ sha: string;
+ merged: boolean;
+ message: string;
+ };
+ /**
+ * Pull Request Review Request
+ * @description Pull Request Review Request
+ */
+ "pull-request-review-request": {
+ users: components["schemas"]["simple-user"][];
+ teams: components["schemas"]["team"][];
+ };
+ /**
+ * Pull Request Review
+ * @description Pull Request Reviews are reviews on pull requests.
+ */
+ "pull-request-review": {
+ /**
+ * @description Unique identifier of the review
+ * @example 42
+ */
+ id: number;
+ /** @example MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= */
+ node_id: string;
+ user: components["schemas"]["nullable-simple-user"];
+ /**
+ * @description The text of the review.
+ * @example This looks great.
+ */
+ body: string;
+ /** @example CHANGES_REQUESTED */
+ state: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80
+ */
+ html_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/pulls/12
+ */
+ pull_request_url: string;
+ _links: {
+ html: {
+ href: string;
+ };
+ pull_request: {
+ href: string;
+ };
+ };
+ /** Format: date-time */
+ submitted_at?: string;
+ /**
+ * @description A commit SHA for the review. If the commit object was garbage collected or forcibly deleted, then it no longer exists in Git and this value will be `null`.
+ * @example 54bb654c9e6025347f57900a4a5c2313a96b8035
+ */
+ commit_id: string | null;
+ body_html?: string;
+ body_text?: string;
+ author_association: components["schemas"]["author-association"];
+ };
+ /**
+ * Legacy Review Comment
+ * @description Legacy Review Comment
+ */
+ "review-comment": {
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/pulls/comments/1
+ */
+ url: string;
+ /** @example 42 */
+ pull_request_review_id: number | null;
+ /** @example 10 */
+ id: number;
+ /** @example MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw */
+ node_id: string;
+ /** @example @@ -16,33 +16,40 @@ public class Connection : IConnection... */
+ diff_hunk: string;
+ /** @example file1.txt */
+ path: string;
+ /** @example 1 */
+ position: number | null;
+ /** @example 4 */
+ original_position: number;
+ /** @example 6dcb09b5b57875f334f61aebed695e2e4193db5e */
+ commit_id: string;
+ /** @example 9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840 */
+ original_commit_id: string;
+ /** @example 8 */
+ in_reply_to_id?: number;
+ user: components["schemas"]["nullable-simple-user"];
+ /** @example Great stuff */
+ body: string;
+ /**
+ * Format: date-time
+ * @example 2011-04-14T16:00:49Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2011-04-14T16:00:49Z
+ */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World/pull/1#discussion-diff-1
+ */
+ html_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World/pulls/1
+ */
+ pull_request_url: string;
+ author_association: components["schemas"]["author-association"];
+ _links: {
+ self: components["schemas"]["link"];
+ html: components["schemas"]["link"];
+ pull_request: components["schemas"]["link"];
+ };
+ body_text?: string;
+ body_html?: string;
+ reactions?: components["schemas"]["reaction-rollup"];
+ /**
+ * @description The side of the first line of the range for a multi-line comment.
+ * @default RIGHT
+ * @enum {string}
+ */
+ side?: "LEFT" | "RIGHT";
+ /**
+ * @description The side of the first line of the range for a multi-line comment.
+ * @default RIGHT
+ * @enum {string|null}
+ */
+ start_side?: "LEFT" | "RIGHT" | null;
+ /**
+ * @description The line of the blob to which the comment applies. The last line of the range for a multi-line comment
+ * @example 2
+ */
+ line?: number;
+ /**
+ * @description The original line of the blob to which the comment applies. The last line of the range for a multi-line comment
+ * @example 2
+ */
+ original_line?: number;
+ /**
+ * @description The first line of the range for a multi-line comment.
+ * @example 2
+ */
+ start_line?: number | null;
+ /**
+ * @description The original first line of the range for a multi-line comment.
+ * @example 2
+ */
+ original_start_line?: number | null;
+ };
+ /**
+ * Release Asset
+ * @description Data related to a release.
+ */
+ "release-asset": {
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ browser_download_url: string;
+ id: number;
+ node_id: string;
+ /**
+ * @description The file name of the asset.
+ * @example Team Environment
+ */
+ name: string;
+ label: string | null;
+ /**
+ * @description State of the release asset.
+ * @enum {string}
+ */
+ state: "uploaded" | "open";
+ content_type: string;
+ size: number;
+ download_count: number;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ uploader: components["schemas"]["nullable-simple-user"];
+ };
+ /**
+ * Release
+ * @description A release.
+ */
+ release: {
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ html_url: string;
+ /** Format: uri */
+ assets_url: string;
+ upload_url: string;
+ /** Format: uri */
+ tarball_url: string | null;
+ /** Format: uri */
+ zipball_url: string | null;
+ id: number;
+ node_id: string;
+ /**
+ * @description The name of the tag.
+ * @example v1.0.0
+ */
+ tag_name: string;
+ /**
+ * @description Specifies the commitish value that determines where the Git tag is created from.
+ * @example master
+ */
+ target_commitish: string;
+ name: string | null;
+ body?: string | null;
+ /**
+ * @description true to create a draft (unpublished) release, false to create a published one.
+ * @example false
+ */
+ draft: boolean;
+ /**
+ * @description Whether to identify the release as a prerelease or a full release.
+ * @example false
+ */
+ prerelease: boolean;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ published_at: string | null;
+ author: components["schemas"]["simple-user"];
+ assets: components["schemas"]["release-asset"][];
+ body_html?: string;
+ body_text?: string;
+ mentions_count?: number;
+ /**
+ * Format: uri
+ * @description The URL of the release discussion.
+ */
+ discussion_url?: string;
+ reactions?: components["schemas"]["reaction-rollup"];
+ };
+ /**
+ * Generated Release Notes Content
+ * @description Generated name and body describing a release
+ */
+ "release-notes-content": {
+ /**
+ * @description The generated name of the release
+ * @example Release v1.0.0 is now available!
+ */
+ name: string;
+ /** @description The generated body describing the contents of the release supporting markdown formatting */
+ body: string;
+ };
+ /**
+ * repository ruleset data for rule
+ * @description User-defined metadata to store domain-specific information limited to 8 keys with scalar values.
+ */
+ "repository-rule-ruleset-info": {
+ /**
+ * @description The type of source for the ruleset that includes this rule.
+ * @enum {string}
+ */
+ ruleset_source_type?: "Repository" | "Organization";
+ /** @description The name of the source of the ruleset that includes this rule. */
+ ruleset_source?: string;
+ /** @description The ID of the ruleset that includes this rule. */
+ ruleset_id?: number;
+ };
+ /**
+ * Repository Rule
+ * @description A repository rule with ruleset details.
+ */
+ "repository-rule-detailed":
+ | (components["schemas"]["repository-rule-creation"] &
+ components["schemas"]["repository-rule-ruleset-info"])
+ | (components["schemas"]["repository-rule-update"] &
+ components["schemas"]["repository-rule-ruleset-info"])
+ | (components["schemas"]["repository-rule-deletion"] &
+ components["schemas"]["repository-rule-ruleset-info"])
+ | (components["schemas"]["repository-rule-required-linear-history"] &
+ components["schemas"]["repository-rule-ruleset-info"])
+ | (components["schemas"]["repository-rule-required-deployments"] &
+ components["schemas"]["repository-rule-ruleset-info"])
+ | (components["schemas"]["repository-rule-required-signatures"] &
+ components["schemas"]["repository-rule-ruleset-info"])
+ | (components["schemas"]["repository-rule-pull-request"] &
+ components["schemas"]["repository-rule-ruleset-info"])
+ | (components["schemas"]["repository-rule-required-status-checks"] &
+ components["schemas"]["repository-rule-ruleset-info"])
+ | (components["schemas"]["repository-rule-non-fast-forward"] &
+ components["schemas"]["repository-rule-ruleset-info"])
+ | (components["schemas"]["repository-rule-commit-message-pattern"] &
+ components["schemas"]["repository-rule-ruleset-info"])
+ | (components["schemas"]["repository-rule-commit-author-email-pattern"] &
+ components["schemas"]["repository-rule-ruleset-info"])
+ | (components["schemas"]["repository-rule-committer-email-pattern"] &
+ components["schemas"]["repository-rule-ruleset-info"])
+ | (components["schemas"]["repository-rule-branch-name-pattern"] &
+ components["schemas"]["repository-rule-ruleset-info"])
+ | (components["schemas"]["repository-rule-tag-name-pattern"] &
+ components["schemas"]["repository-rule-ruleset-info"])
+ | (components["schemas"]["repository-rule-workflows"] &
+ components["schemas"]["repository-rule-ruleset-info"]);
+ "secret-scanning-alert": {
+ number?: components["schemas"]["alert-number"];
+ created_at?: components["schemas"]["alert-created-at"];
+ updated_at?: components["schemas"]["nullable-alert-updated-at"];
+ url?: components["schemas"]["alert-url"];
+ html_url?: components["schemas"]["alert-html-url"];
+ /**
+ * Format: uri
+ * @description The REST API URL of the code locations for this alert.
+ */
+ locations_url?: string;
+ state?: components["schemas"]["secret-scanning-alert-state"];
+ resolution?: components["schemas"]["secret-scanning-alert-resolution"];
+ /**
+ * Format: date-time
+ * @description The time that the alert was resolved in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.
+ */
+ resolved_at?: string | null;
+ resolved_by?: components["schemas"]["nullable-simple-user"];
+ /** @description An optional comment to resolve an alert. */
+ resolution_comment?: string | null;
+ /** @description The type of secret that secret scanning detected. */
+ secret_type?: string;
+ /**
+ * @description User-friendly name for the detected secret, matching the `secret_type`.
+ * For a list of built-in patterns, see "[Secret scanning patterns](https://docs.github.com/code-security/secret-scanning/secret-scanning-patterns#supported-secrets-for-advanced-security)."
+ */
+ secret_type_display_name?: string;
+ /** @description The secret that was detected. */
+ secret?: string;
+ /** @description Whether push protection was bypassed for the detected secret. */
+ push_protection_bypassed?: boolean | null;
+ push_protection_bypassed_by?: components["schemas"]["nullable-simple-user"];
+ /**
+ * Format: date-time
+ * @description The time that push protection was bypassed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.
+ */
+ push_protection_bypassed_at?: string | null;
+ /**
+ * @description The token status as of the latest validity check.
+ * @enum {string}
+ */
+ validity?: "active" | "inactive" | "unknown";
+ };
+ /** @description An optional comment when closing an alert. Cannot be updated or deleted. Must be `null` when changing `state` to `open`. */
+ "secret-scanning-alert-resolution-comment": string | null;
+ /** @description Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. */
+ "secret-scanning-location-commit": {
+ /**
+ * @description The file path in the repository
+ * @example /example/secrets.txt
+ */
+ path: string;
+ /** @description Line number at which the secret starts in the file */
+ start_line: number;
+ /** @description Line number at which the secret ends in the file */
+ end_line: number;
+ /** @description The column at which the secret starts within the start line when the file is interpreted as 8BIT ASCII */
+ start_column: number;
+ /** @description The column at which the secret ends within the end line when the file is interpreted as 8BIT ASCII */
+ end_column: number;
+ /**
+ * @description SHA-1 hash ID of the associated blob
+ * @example af5626b4a114abcb82d63db7c8082c3c4756e51b
+ */
+ blob_sha: string;
+ /** @description The API URL to get the associated blob resource */
+ blob_url: string;
+ /**
+ * @description SHA-1 hash ID of the associated commit
+ * @example af5626b4a114abcb82d63db7c8082c3c4756e51b
+ */
+ commit_sha: string;
+ /** @description The API URL to get the associated commit resource */
+ commit_url: string;
+ };
+ /** @description Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. */
+ "secret-scanning-location-wiki-commit": {
+ /**
+ * @description The file path of the wiki page
+ * @example /example/Home.md
+ */
+ path: string;
+ /** @description Line number at which the secret starts in the file */
+ start_line: number;
+ /** @description Line number at which the secret ends in the file */
+ end_line: number;
+ /** @description The column at which the secret starts within the start line when the file is interpreted as 8-bit ASCII. */
+ start_column: number;
+ /** @description The column at which the secret ends within the end line when the file is interpreted as 8-bit ASCII. */
+ end_column: number;
+ /**
+ * @description SHA-1 hash ID of the associated blob
+ * @example af5626b4a114abcb82d63db7c8082c3c4756e51b
+ */
+ blob_sha: string;
+ /**
+ * @description The GitHub URL to get the associated wiki page
+ * @example https://github.com/octocat/Hello-World/wiki/Home/302c0b7e200761c9dd9b57e57db540ee0b4293a5
+ */
+ page_url: string;
+ /**
+ * @description SHA-1 hash ID of the associated commit
+ * @example 302c0b7e200761c9dd9b57e57db540ee0b4293a5
+ */
+ commit_sha: string;
+ /**
+ * @description The GitHub URL to get the associated wiki commit
+ * @example https://github.com/octocat/Hello-World/wiki/_compare/302c0b7e200761c9dd9b57e57db540ee0b4293a5
+ */
+ commit_url: string;
+ };
+ /** @description Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. */
+ "secret-scanning-location-issue-title": {
+ /**
+ * Format: uri
+ * @description The API URL to get the issue where the secret was detected.
+ * @example https://api.github.com/repos/octocat/Hello-World/issues/1347
+ */
+ issue_title_url: string;
+ };
+ /** @description Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. */
+ "secret-scanning-location-issue-body": {
+ /**
+ * Format: uri
+ * @description The API URL to get the issue where the secret was detected.
+ * @example https://api.github.com/repos/octocat/Hello-World/issues/1347
+ */
+ issue_body_url: string;
+ };
+ /** @description Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. */
+ "secret-scanning-location-issue-comment": {
+ /**
+ * Format: uri
+ * @description The API URL to get the issue comment where the secret was detected.
+ * @example https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451
+ */
+ issue_comment_url: string;
+ };
+ /** @description Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. */
+ "secret-scanning-location-discussion-title": {
+ /**
+ * Format: uri
+ * @description The URL to the discussion where the secret was detected.
+ * @example https://github.com/community/community/discussions/39082
+ */
+ discussion_title_url: string;
+ };
+ /** @description Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. */
+ "secret-scanning-location-discussion-body": {
+ /**
+ * Format: uri
+ * @description The URL to the discussion where the secret was detected.
+ * @example https://github.com/community/community/discussions/39082#discussion-4566270
+ */
+ discussion_body_url: string;
+ };
+ /** @description Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. */
+ "secret-scanning-location-discussion-comment": {
+ /**
+ * Format: uri
+ * @description The API URL to get the discussion comment where the secret was detected.
+ * @example https://github.com/community/community/discussions/39082#discussioncomment-4158232
+ */
+ discussion_comment_url: string;
+ };
+ /** @description Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. */
+ "secret-scanning-location-pull-request-title": {
+ /**
+ * Format: uri
+ * @description The API URL to get the pull request where the secret was detected.
+ * @example https://api.github.com/repos/octocat/Hello-World/pull/2846
+ */
+ pull_request_title_url: string;
+ };
+ /** @description Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. */
+ "secret-scanning-location-pull-request-body": {
+ /**
+ * Format: uri
+ * @description The API URL to get the pull request where the secret was detected.
+ * @example https://api.github.com/repos/octocat/Hello-World/pull/2846
+ */
+ pull_request_body_url: string;
+ };
+ /** @description Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. */
+ "secret-scanning-location-pull-request-comment": {
+ /**
+ * Format: uri
+ * @description The API URL to get the pull request comment where the secret was detected.
+ * @example https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451
+ */
+ pull_request_comment_url: string;
+ };
+ /** @description Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. */
+ "secret-scanning-location-pull-request-review": {
+ /**
+ * Format: uri
+ * @description The API URL to get the pull request review where the secret was detected.
+ * @example https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80
+ */
+ pull_request_review_url: string;
+ };
+ /** @description Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. */
+ "secret-scanning-location-pull-request-review-comment": {
+ /**
+ * Format: uri
+ * @description The API URL to get the pull request review comment where the secret was detected.
+ * @example https://api.github.com/repos/octocat/Hello-World/pulls/comments/12
+ */
+ pull_request_review_comment_url: string;
+ };
+ "secret-scanning-location": {
+ /**
+ * @description The location type. Because secrets may be found in different types of resources (ie. code, comments, issues, pull requests, discussions), this field identifies the type of resource where the secret was found.
+ * @example commit
+ * @enum {string}
+ */
+ type?:
+ | "commit"
+ | "wiki_commit"
+ | "issue_title"
+ | "issue_body"
+ | "issue_comment"
+ | "discussion_title"
+ | "discussion_body"
+ | "discussion_comment"
+ | "pull_request_title"
+ | "pull_request_body"
+ | "pull_request_comment"
+ | "pull_request_review"
+ | "pull_request_review_comment";
+ details?:
+ | components["schemas"]["secret-scanning-location-commit"]
+ | components["schemas"]["secret-scanning-location-wiki-commit"]
+ | components["schemas"]["secret-scanning-location-issue-title"]
+ | components["schemas"]["secret-scanning-location-issue-body"]
+ | components["schemas"]["secret-scanning-location-issue-comment"]
+ | components["schemas"]["secret-scanning-location-discussion-title"]
+ | components["schemas"]["secret-scanning-location-discussion-body"]
+ | components["schemas"]["secret-scanning-location-discussion-comment"]
+ | components["schemas"]["secret-scanning-location-pull-request-title"]
+ | components["schemas"]["secret-scanning-location-pull-request-body"]
+ | components["schemas"]["secret-scanning-location-pull-request-comment"]
+ | components["schemas"]["secret-scanning-location-pull-request-review"]
+ | components["schemas"]["secret-scanning-location-pull-request-review-comment"];
+ };
+ "repository-advisory-create": {
+ /** @description A short summary of the advisory. */
+ summary: string;
+ /** @description A detailed description of what the advisory impacts. */
+ description: string;
+ /** @description The Common Vulnerabilities and Exposures (CVE) ID. */
+ cve_id?: string | null;
+ /** @description A product affected by the vulnerability detailed in a repository security advisory. */
+ vulnerabilities: {
+ /** @description The name of the package affected by the vulnerability. */
+ package: {
+ ecosystem: components["schemas"]["security-advisory-ecosystems"];
+ /** @description The unique package name within its ecosystem. */
+ name?: string | null;
+ };
+ /** @description The range of the package versions affected by the vulnerability. */
+ vulnerable_version_range?: string | null;
+ /** @description The package version(s) that resolve the vulnerability. */
+ patched_versions?: string | null;
+ /** @description The functions in the package that are affected. */
+ vulnerable_functions?: string[] | null;
+ }[];
+ /** @description A list of Common Weakness Enumeration (CWE) IDs. */
+ cwe_ids?: string[] | null;
+ /** @description A list of users receiving credit for their participation in the security advisory. */
+ credits?:
+ | {
+ /** @description The username of the user credited. */
+ login: string;
+ type: components["schemas"]["security-advisory-credit-types"];
+ }[]
+ | null;
+ /**
+ * @description The severity of the advisory. You must choose between setting this field or `cvss_vector_string`.
+ * @enum {string|null}
+ */
+ severity?: "critical" | "high" | "medium" | "low" | null;
+ /** @description The CVSS vector that calculates the severity of the advisory. You must choose between setting this field or `severity`. */
+ cvss_vector_string?: string | null;
+ /**
+ * @description Whether to create a temporary private fork of the repository to collaborate on a fix.
+ * @default false
+ */
+ start_private_fork?: boolean;
+ };
+ "private-vulnerability-report-create": {
+ /** @description A short summary of the advisory. */
+ summary: string;
+ /** @description A detailed description of what the advisory impacts. */
+ description: string;
+ /** @description An array of products affected by the vulnerability detailed in a repository security advisory. */
+ vulnerabilities?:
+ | {
+ /** @description The name of the package affected by the vulnerability. */
+ package: {
+ ecosystem: components["schemas"]["security-advisory-ecosystems"];
+ /** @description The unique package name within its ecosystem. */
+ name?: string | null;
+ };
+ /** @description The range of the package versions affected by the vulnerability. */
+ vulnerable_version_range?: string | null;
+ /** @description The package version(s) that resolve the vulnerability. */
+ patched_versions?: string | null;
+ /** @description The functions in the package that are affected. */
+ vulnerable_functions?: string[] | null;
+ }[]
+ | null;
+ /** @description A list of Common Weakness Enumeration (CWE) IDs. */
+ cwe_ids?: string[] | null;
+ /**
+ * @description The severity of the advisory. You must choose between setting this field or `cvss_vector_string`.
+ * @enum {string|null}
+ */
+ severity?: "critical" | "high" | "medium" | "low" | null;
+ /** @description The CVSS vector that calculates the severity of the advisory. You must choose between setting this field or `severity`. */
+ cvss_vector_string?: string | null;
+ /**
+ * @description Whether to create a temporary private fork of the repository to collaborate on a fix.
+ * @default false
+ */
+ start_private_fork?: boolean;
+ };
+ "repository-advisory-update": {
+ /** @description A short summary of the advisory. */
+ summary?: string;
+ /** @description A detailed description of what the advisory impacts. */
+ description?: string;
+ /** @description The Common Vulnerabilities and Exposures (CVE) ID. */
+ cve_id?: string | null;
+ /** @description A product affected by the vulnerability detailed in a repository security advisory. */
+ vulnerabilities?: {
+ /** @description The name of the package affected by the vulnerability. */
+ package: {
+ ecosystem: components["schemas"]["security-advisory-ecosystems"];
+ /** @description The unique package name within its ecosystem. */
+ name?: string | null;
+ };
+ /** @description The range of the package versions affected by the vulnerability. */
+ vulnerable_version_range?: string | null;
+ /** @description The package version(s) that resolve the vulnerability. */
+ patched_versions?: string | null;
+ /** @description The functions in the package that are affected. */
+ vulnerable_functions?: string[] | null;
+ }[];
+ /** @description A list of Common Weakness Enumeration (CWE) IDs. */
+ cwe_ids?: string[] | null;
+ /** @description A list of users receiving credit for their participation in the security advisory. */
+ credits?:
+ | {
+ /** @description The username of the user credited. */
+ login: string;
+ type: components["schemas"]["security-advisory-credit-types"];
+ }[]
+ | null;
+ /**
+ * @description The severity of the advisory. You must choose between setting this field or `cvss_vector_string`.
+ * @enum {string|null}
+ */
+ severity?: "critical" | "high" | "medium" | "low" | null;
+ /** @description The CVSS vector that calculates the severity of the advisory. You must choose between setting this field or `severity`. */
+ cvss_vector_string?: string | null;
+ /**
+ * @description The state of the advisory.
+ * @enum {string}
+ */
+ state?: "published" | "closed" | "draft";
+ /** @description A list of usernames who have been granted write access to the advisory. */
+ collaborating_users?: string[] | null;
+ /** @description A list of team slugs which have been granted write access to the advisory. */
+ collaborating_teams?: string[] | null;
+ };
+ /**
+ * Stargazer
+ * @description Stargazer
+ */
+ stargazer: {
+ /** Format: date-time */
+ starred_at: string;
+ user: components["schemas"]["nullable-simple-user"];
+ };
+ /**
+ * Code Frequency Stat
+ * @description Code Frequency Stat
+ */
+ "code-frequency-stat": number[];
+ /**
+ * Commit Activity
+ * @description Commit Activity
+ */
+ "commit-activity": {
+ /**
+ * @example [
+ * 0,
+ * 3,
+ * 26,
+ * 20,
+ * 39,
+ * 1,
+ * 0
+ * ]
+ */
+ days: number[];
+ /** @example 89 */
+ total: number;
+ /** @example 1336280400 */
+ week: number;
+ };
+ /**
+ * Contributor Activity
+ * @description Contributor Activity
+ */
+ "contributor-activity": {
+ author: components["schemas"]["nullable-simple-user"];
+ /** @example 135 */
+ total: number;
+ /**
+ * @example [
+ * {
+ * "w": "1367712000",
+ * "a": 6898,
+ * "d": 77,
+ * "c": 10
+ * }
+ * ]
+ */
+ weeks: {
+ w?: number;
+ a?: number;
+ d?: number;
+ c?: number;
+ }[];
+ };
+ /** Participation Stats */
+ "participation-stats": {
+ all: number[];
+ owner: number[];
+ };
+ /**
+ * Repository Invitation
+ * @description Repository invitations let you manage who you collaborate with.
+ */
+ "repository-subscription": {
+ /**
+ * @description Determines if notifications should be received from this repository.
+ * @example true
+ */
+ subscribed: boolean;
+ /** @description Determines if all notifications should be blocked from this repository. */
+ ignored: boolean;
+ reason: string | null;
+ /**
+ * Format: date-time
+ * @example 2012-10-06T21:34:12Z
+ */
+ created_at: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/example/subscription
+ */
+ url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/example
+ */
+ repository_url: string;
+ };
+ /**
+ * Tag
+ * @description Tag
+ */
+ tag: {
+ /** @example v0.1 */
+ name: string;
+ commit: {
+ sha: string;
+ /** Format: uri */
+ url: string;
+ };
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World/zipball/v0.1
+ */
+ zipball_url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World/tarball/v0.1
+ */
+ tarball_url: string;
+ node_id: string;
+ };
+ /**
+ * Tag protection
+ * @description Tag protection
+ */
+ "tag-protection": {
+ /** @example 2 */
+ id?: number;
+ /** @example 2011-01-26T19:01:12Z */
+ created_at?: string;
+ /** @example 2011-01-26T19:01:12Z */
+ updated_at?: string;
+ /** @example true */
+ enabled?: boolean;
+ /** @example v1.* */
+ pattern: string;
+ };
+ /**
+ * Topic
+ * @description A topic aggregates entities that are related to a subject.
+ */
+ topic: {
+ names: string[];
+ };
+ /** Traffic */
+ traffic: {
+ /** Format: date-time */
+ timestamp: string;
+ uniques: number;
+ count: number;
+ };
+ /**
+ * Clone Traffic
+ * @description Clone Traffic
+ */
+ "clone-traffic": {
+ /** @example 173 */
+ count: number;
+ /** @example 128 */
+ uniques: number;
+ clones: components["schemas"]["traffic"][];
+ };
+ /**
+ * Content Traffic
+ * @description Content Traffic
+ */
+ "content-traffic": {
+ /** @example /github/hubot */
+ path: string;
+ /** @example github/hubot: A customizable life embetterment robot. */
+ title: string;
+ /** @example 3542 */
+ count: number;
+ /** @example 2225 */
+ uniques: number;
+ };
+ /**
+ * Referrer Traffic
+ * @description Referrer Traffic
+ */
+ "referrer-traffic": {
+ /** @example Google */
+ referrer: string;
+ /** @example 4 */
+ count: number;
+ /** @example 3 */
+ uniques: number;
+ };
+ /**
+ * View Traffic
+ * @description View Traffic
+ */
+ "view-traffic": {
+ /** @example 14850 */
+ count: number;
+ /** @example 3782 */
+ uniques: number;
+ views: components["schemas"]["traffic"][];
+ };
+ /** Search Result Text Matches */
+ "search-result-text-matches": {
+ object_url?: string;
+ object_type?: string | null;
+ property?: string;
+ fragment?: string;
+ matches?: {
+ text?: string;
+ indices?: number[];
+ }[];
+ }[];
+ /**
+ * Code Search Result Item
+ * @description Code Search Result Item
+ */
+ "code-search-result-item": {
+ name: string;
+ path: string;
+ sha: string;
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ git_url: string;
+ /** Format: uri */
+ html_url: string;
+ repository: components["schemas"]["minimal-repository"];
+ score: number;
+ file_size?: number;
+ language?: string | null;
+ /** Format: date-time */
+ last_modified_at?: string;
+ /**
+ * @example [
+ * "73..77",
+ * "77..78"
+ * ]
+ */
+ line_numbers?: string[];
+ text_matches?: components["schemas"]["search-result-text-matches"];
+ };
+ /**
+ * Commit Search Result Item
+ * @description Commit Search Result Item
+ */
+ "commit-search-result-item": {
+ /** Format: uri */
+ url: string;
+ sha: string;
+ /** Format: uri */
+ html_url: string;
+ /** Format: uri */
+ comments_url: string;
+ commit: {
+ author: {
+ name: string;
+ email: string;
+ /** Format: date-time */
+ date: string;
+ };
+ committer: components["schemas"]["nullable-git-user"];
+ comment_count: number;
+ message: string;
+ tree: {
+ sha: string;
+ /** Format: uri */
+ url: string;
+ };
+ /** Format: uri */
+ url: string;
+ verification?: components["schemas"]["verification"];
+ };
+ author: components["schemas"]["nullable-simple-user"];
+ committer: components["schemas"]["nullable-git-user"];
+ parents: {
+ url?: string;
+ html_url?: string;
+ sha?: string;
+ }[];
+ repository: components["schemas"]["minimal-repository"];
+ score: number;
+ node_id: string;
+ text_matches?: components["schemas"]["search-result-text-matches"];
+ };
+ /**
+ * Issue Search Result Item
+ * @description Issue Search Result Item
+ */
+ "issue-search-result-item": {
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ repository_url: string;
+ labels_url: string;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: uri */
+ events_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** Format: int64 */
+ id: number;
+ node_id: string;
+ number: number;
+ title: string;
+ locked: boolean;
+ active_lock_reason?: string | null;
+ assignees?: components["schemas"]["simple-user"][] | null;
+ user: components["schemas"]["nullable-simple-user"];
+ labels: {
+ /** Format: int64 */
+ id?: number;
+ node_id?: string;
+ url?: string;
+ name?: string;
+ color?: string;
+ default?: boolean;
+ description?: string | null;
+ }[];
+ state: string;
+ state_reason?: string | null;
+ assignee: components["schemas"]["nullable-simple-user"];
+ milestone: components["schemas"]["nullable-milestone"];
+ comments: number;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: date-time */
+ closed_at: string | null;
+ text_matches?: components["schemas"]["search-result-text-matches"];
+ pull_request?: {
+ /** Format: date-time */
+ merged_at?: string | null;
+ /** Format: uri */
+ diff_url: string | null;
+ /** Format: uri */
+ html_url: string | null;
+ /** Format: uri */
+ patch_url: string | null;
+ /** Format: uri */
+ url: string | null;
+ };
+ body?: string;
+ score: number;
+ author_association: components["schemas"]["author-association"];
+ draft?: boolean;
+ repository?: components["schemas"]["repository"];
+ body_html?: string;
+ body_text?: string;
+ /** Format: uri */
+ timeline_url?: string;
+ performed_via_github_app?: components["schemas"]["nullable-integration"];
+ reactions?: components["schemas"]["reaction-rollup"];
+ };
+ /**
+ * Label Search Result Item
+ * @description Label Search Result Item
+ */
+ "label-search-result-item": {
+ id: number;
+ node_id: string;
+ /** Format: uri */
+ url: string;
+ name: string;
+ color: string;
+ default: boolean;
+ description: string | null;
+ score: number;
+ text_matches?: components["schemas"]["search-result-text-matches"];
+ };
+ /**
+ * Repo Search Result Item
+ * @description Repo Search Result Item
+ */
+ "repo-search-result-item": {
+ id: number;
+ node_id: string;
+ name: string;
+ full_name: string;
+ owner: components["schemas"]["nullable-simple-user"];
+ private: boolean;
+ /** Format: uri */
+ html_url: string;
+ description: string | null;
+ fork: boolean;
+ /** Format: uri */
+ url: string;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: date-time */
+ pushed_at: string;
+ /** Format: uri */
+ homepage: string | null;
+ size: number;
+ stargazers_count: number;
+ watchers_count: number;
+ language: string | null;
+ forks_count: number;
+ open_issues_count: number;
+ master_branch?: string;
+ default_branch: string;
+ score: number;
+ /** Format: uri */
+ forks_url: string;
+ keys_url: string;
+ collaborators_url: string;
+ /** Format: uri */
+ teams_url: string;
+ /** Format: uri */
+ hooks_url: string;
+ issue_events_url: string;
+ /** Format: uri */
+ events_url: string;
+ assignees_url: string;
+ branches_url: string;
+ /** Format: uri */
+ tags_url: string;
+ blobs_url: string;
+ git_tags_url: string;
+ git_refs_url: string;
+ trees_url: string;
+ statuses_url: string;
+ /** Format: uri */
+ languages_url: string;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ commits_url: string;
+ git_commits_url: string;
+ comments_url: string;
+ issue_comment_url: string;
+ contents_url: string;
+ compare_url: string;
+ /** Format: uri */
+ merges_url: string;
+ archive_url: string;
+ /** Format: uri */
+ downloads_url: string;
+ issues_url: string;
+ pulls_url: string;
+ milestones_url: string;
+ notifications_url: string;
+ labels_url: string;
+ releases_url: string;
+ /** Format: uri */
+ deployments_url: string;
+ git_url: string;
+ ssh_url: string;
+ clone_url: string;
+ /** Format: uri */
+ svn_url: string;
+ forks: number;
+ open_issues: number;
+ watchers: number;
+ topics?: string[];
+ /** Format: uri */
+ mirror_url: string | null;
+ has_issues: boolean;
+ has_projects: boolean;
+ has_pages: boolean;
+ has_wiki: boolean;
+ has_downloads: boolean;
+ has_discussions?: boolean;
+ archived: boolean;
+ /** @description Returns whether or not this repository disabled. */
+ disabled: boolean;
+ /** @description The repository visibility: public, private, or internal. */
+ visibility?: string;
+ license: components["schemas"]["nullable-license-simple"];
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ push: boolean;
+ triage?: boolean;
+ pull: boolean;
+ };
+ text_matches?: components["schemas"]["search-result-text-matches"];
+ temp_clone_token?: string;
+ allow_merge_commit?: boolean;
+ allow_squash_merge?: boolean;
+ allow_rebase_merge?: boolean;
+ allow_auto_merge?: boolean;
+ delete_branch_on_merge?: boolean;
+ allow_forking?: boolean;
+ is_template?: boolean;
+ /** @example false */
+ web_commit_signoff_required?: boolean;
+ };
+ /**
+ * Topic Search Result Item
+ * @description Topic Search Result Item
+ */
+ "topic-search-result-item": {
+ name: string;
+ display_name: string | null;
+ short_description: string | null;
+ description: string | null;
+ created_by: string | null;
+ released: string | null;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: date-time */
+ updated_at: string;
+ featured: boolean;
+ curated: boolean;
+ score: number;
+ repository_count?: number | null;
+ /** Format: uri */
+ logo_url?: string | null;
+ text_matches?: components["schemas"]["search-result-text-matches"];
+ related?:
+ | {
+ topic_relation?: {
+ id?: number;
+ name?: string;
+ topic_id?: number;
+ relation_type?: string;
+ };
+ }[]
+ | null;
+ aliases?:
+ | {
+ topic_relation?: {
+ id?: number;
+ name?: string;
+ topic_id?: number;
+ relation_type?: string;
+ };
+ }[]
+ | null;
+ };
+ /**
+ * User Search Result Item
+ * @description User Search Result Item
+ */
+ "user-search-result-item": {
+ login: string;
+ id: number;
+ node_id: string;
+ /** Format: uri */
+ avatar_url: string;
+ gravatar_id: string | null;
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ html_url: string;
+ /** Format: uri */
+ followers_url: string;
+ /** Format: uri */
+ subscriptions_url: string;
+ /** Format: uri */
+ organizations_url: string;
+ /** Format: uri */
+ repos_url: string;
+ /** Format: uri */
+ received_events_url: string;
+ type: string;
+ score: number;
+ following_url: string;
+ gists_url: string;
+ starred_url: string;
+ events_url: string;
+ public_repos?: number;
+ public_gists?: number;
+ followers?: number;
+ following?: number;
+ /** Format: date-time */
+ created_at?: string;
+ /** Format: date-time */
+ updated_at?: string;
+ name?: string | null;
+ bio?: string | null;
+ /** Format: email */
+ email?: string | null;
+ location?: string | null;
+ site_admin: boolean;
+ hireable?: boolean | null;
+ text_matches?: components["schemas"]["search-result-text-matches"];
+ blog?: string | null;
+ company?: string | null;
+ /** Format: date-time */
+ suspended_at?: string | null;
+ };
+ /**
+ * Private User
+ * @description Private User
+ */
+ "private-user": {
+ /** @example octocat */
+ login: string;
+ /** @example 1 */
+ id: number;
+ /** @example MDQ6VXNlcjE= */
+ node_id: string;
+ /**
+ * Format: uri
+ * @example https://github.com/images/error/octocat_happy.gif
+ */
+ avatar_url: string;
+ /** @example 41d064eb2195891e12d0413f63227ea7 */
+ gravatar_id: string | null;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat
+ */
+ url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat
+ */
+ html_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/followers
+ */
+ followers_url: string;
+ /** @example https://api.github.com/users/octocat/following{/other_user} */
+ following_url: string;
+ /** @example https://api.github.com/users/octocat/gists{/gist_id} */
+ gists_url: string;
+ /** @example https://api.github.com/users/octocat/starred{/owner}{/repo} */
+ starred_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/subscriptions
+ */
+ subscriptions_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/orgs
+ */
+ organizations_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/repos
+ */
+ repos_url: string;
+ /** @example https://api.github.com/users/octocat/events{/privacy} */
+ events_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/received_events
+ */
+ received_events_url: string;
+ /** @example User */
+ type: string;
+ site_admin: boolean;
+ /** @example monalisa octocat */
+ name: string | null;
+ /** @example GitHub */
+ company: string | null;
+ /** @example https://github.com/blog */
+ blog: string | null;
+ /** @example San Francisco */
+ location: string | null;
+ /**
+ * Format: email
+ * @example octocat@github.com
+ */
+ email: string | null;
+ hireable: boolean | null;
+ /** @example There once was... */
+ bio: string | null;
+ /** @example monalisa */
+ twitter_username?: string | null;
+ /** @example 2 */
+ public_repos: number;
+ /** @example 1 */
+ public_gists: number;
+ /** @example 20 */
+ followers: number;
+ /** @example 0 */
+ following: number;
+ /**
+ * Format: date-time
+ * @example 2008-01-14T04:33:35Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2008-01-14T04:33:35Z
+ */
+ updated_at: string;
+ /** @example 81 */
+ private_gists: number;
+ /** @example 100 */
+ total_private_repos: number;
+ /** @example 100 */
+ owned_private_repos: number;
+ /** @example 10000 */
+ disk_usage: number;
+ /** @example 8 */
+ collaborators: number;
+ /** @example true */
+ two_factor_authentication: boolean;
+ plan?: {
+ collaborators: number;
+ name: string;
+ space: number;
+ private_repos: number;
+ };
+ /** Format: date-time */
+ suspended_at?: string | null;
+ business_plus?: boolean;
+ ldap_dn?: string;
+ };
+ /**
+ * Codespaces Secret
+ * @description Secrets for a GitHub Codespace.
+ */
+ "codespaces-secret": {
+ /**
+ * @description The name of the secret
+ * @example SECRET_NAME
+ */
+ name: string;
+ /**
+ * Format: date-time
+ * @description The date and time at which the secret was created, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ.
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @description The date and time at which the secret was last updated, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ.
+ */
+ updated_at: string;
+ /**
+ * @description The type of repositories in the organization that the secret is visible to
+ * @enum {string}
+ */
+ visibility: "all" | "private" | "selected";
+ /**
+ * Format: uri
+ * @description The API URL at which the list of repositories this secret is visible to can be retrieved
+ * @example https://api.github.com/user/secrets/SECRET_NAME/repositories
+ */
+ selected_repositories_url: string;
+ };
+ /**
+ * CodespacesUserPublicKey
+ * @description The public key used for setting user Codespaces' Secrets.
+ */
+ "codespaces-user-public-key": {
+ /**
+ * @description The identifier for the key.
+ * @example 1234567
+ */
+ key_id: string;
+ /**
+ * @description The Base64 encoded public key.
+ * @example hBT5WZEj8ZoOv6TYJsfWq7MxTEQopZO5/IT3ZCVQPzs=
+ */
+ key: string;
+ };
+ /**
+ * Fetches information about an export of a codespace.
+ * @description An export of a codespace. Also, latest export details for a codespace can be fetched with id = latest
+ */
+ "codespace-export-details": {
+ /**
+ * @description State of the latest export
+ * @example succeeded | failed | in_progress
+ */
+ state?: string | null;
+ /**
+ * Format: date-time
+ * @description Completion time of the last export operation
+ * @example 2021-01-01T19:01:12Z
+ */
+ completed_at?: string | null;
+ /**
+ * @description Name of the exported branch
+ * @example codespace-monalisa-octocat-hello-world-g4wpq6h95q
+ */
+ branch?: string | null;
+ /**
+ * @description Git commit SHA of the exported branch
+ * @example fd95a81ca01e48ede9f39c799ecbcef817b8a3b2
+ */
+ sha?: string | null;
+ /**
+ * @description Id for the export details
+ * @example latest
+ */
+ id?: string;
+ /**
+ * @description Url for fetching export details
+ * @example https://api.github.com/user/codespaces/:name/exports/latest
+ */
+ export_url?: string;
+ /**
+ * @description Web url for the exported branch
+ * @example https://github.com/octocat/hello-world/tree/:branch
+ */
+ html_url?: string | null;
+ };
+ /**
+ * Codespace
+ * @description A codespace.
+ */
+ "codespace-with-full-repository": {
+ /** @example 1 */
+ id: number;
+ /**
+ * @description Automatically generated name of this codespace.
+ * @example monalisa-octocat-hello-world-g4wpq6h95q
+ */
+ name: string;
+ /**
+ * @description Display name for this codespace.
+ * @example bookish space pancake
+ */
+ display_name?: string | null;
+ /**
+ * @description UUID identifying this codespace's environment.
+ * @example 26a7c758-7299-4a73-b978-5a92a7ae98a0
+ */
+ environment_id: string | null;
+ owner: components["schemas"]["simple-user"];
+ billable_owner: components["schemas"]["simple-user"];
+ repository: components["schemas"]["full-repository"];
+ machine: components["schemas"]["nullable-codespace-machine"];
+ /**
+ * @description Path to devcontainer.json from repo root used to create Codespace.
+ * @example .devcontainer/example/devcontainer.json
+ */
+ devcontainer_path?: string | null;
+ /**
+ * @description Whether the codespace was created from a prebuild.
+ * @example false
+ */
+ prebuild: boolean | null;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:01:12Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:01:12Z
+ */
+ updated_at: string;
+ /**
+ * Format: date-time
+ * @description Last known time this codespace was started.
+ * @example 2011-01-26T19:01:12Z
+ */
+ last_used_at: string;
+ /**
+ * @description State of this codespace.
+ * @example Available
+ * @enum {string}
+ */
+ state:
+ | "Unknown"
+ | "Created"
+ | "Queued"
+ | "Provisioning"
+ | "Available"
+ | "Awaiting"
+ | "Unavailable"
+ | "Deleted"
+ | "Moved"
+ | "Shutdown"
+ | "Archived"
+ | "Starting"
+ | "ShuttingDown"
+ | "Failed"
+ | "Exporting"
+ | "Updating"
+ | "Rebuilding";
+ /**
+ * Format: uri
+ * @description API URL for this codespace.
+ */
+ url: string;
+ /** @description Details about the codespace's git repository. */
+ git_status: {
+ /**
+ * @description The number of commits the local repository is ahead of the remote.
+ * @example 0
+ */
+ ahead?: number;
+ /**
+ * @description The number of commits the local repository is behind the remote.
+ * @example 0
+ */
+ behind?: number;
+ /** @description Whether the local repository has unpushed changes. */
+ has_unpushed_changes?: boolean;
+ /** @description Whether the local repository has uncommitted changes. */
+ has_uncommitted_changes?: boolean;
+ /**
+ * @description The current branch (or SHA if in detached HEAD state) of the local repository.
+ * @example main
+ */
+ ref?: string;
+ };
+ /**
+ * @description The initally assigned location of a new codespace.
+ * @example WestUs2
+ * @enum {string}
+ */
+ location: "EastUs" | "SouthEastAsia" | "WestEurope" | "WestUs2";
+ /**
+ * @description The number of minutes of inactivity after which this codespace will be automatically stopped.
+ * @example 60
+ */
+ idle_timeout_minutes: number | null;
+ /**
+ * Format: uri
+ * @description URL to access this codespace on the web.
+ */
+ web_url: string;
+ /**
+ * Format: uri
+ * @description API URL to access available alternate machine types for this codespace.
+ */
+ machines_url: string;
+ /**
+ * Format: uri
+ * @description API URL to start this codespace.
+ */
+ start_url: string;
+ /**
+ * Format: uri
+ * @description API URL to stop this codespace.
+ */
+ stop_url: string;
+ /**
+ * Format: uri
+ * @description API URL to publish this codespace to a new repository.
+ */
+ publish_url?: string | null;
+ /**
+ * Format: uri
+ * @description API URL for the Pull Request associated with this codespace, if any.
+ */
+ pulls_url: string | null;
+ recent_folders: string[];
+ runtime_constraints?: {
+ /** @description The privacy settings a user can select from when forwarding a port. */
+ allowed_port_privacy_settings?: string[] | null;
+ };
+ /** @description Whether or not a codespace has a pending async operation. This would mean that the codespace is temporarily unavailable. The only thing that you can do with a codespace in this state is delete it. */
+ pending_operation?: boolean | null;
+ /** @description Text to show user when codespace is disabled by a pending operation */
+ pending_operation_disabled_reason?: string | null;
+ /** @description Text to show user when codespace idle timeout minutes has been overriden by an organization policy */
+ idle_timeout_notice?: string | null;
+ /**
+ * @description Duration in minutes after codespace has gone idle in which it will be deleted. Must be integer minutes between 0 and 43200 (30 days).
+ * @example 60
+ */
+ retention_period_minutes?: number | null;
+ /**
+ * Format: date-time
+ * @description When a codespace will be auto-deleted based on the "retention_period_minutes" and "last_used_at"
+ * @example 2011-01-26T20:01:12Z
+ */
+ retention_expires_at?: string | null;
+ };
+ /**
+ * Email
+ * @description Email
+ */
+ email: {
+ /**
+ * Format: email
+ * @example octocat@github.com
+ */
+ email: string;
+ /** @example true */
+ primary: boolean;
+ /** @example true */
+ verified: boolean;
+ /** @example public */
+ visibility: string | null;
+ };
+ /**
+ * GPG Key
+ * @description A unique encryption key
+ */
+ "gpg-key": {
+ /** @example 3 */
+ id: number;
+ /** @example Octocat's GPG Key */
+ name?: string | null;
+ primary_key_id: number | null;
+ /** @example 3262EFF25BA0D270 */
+ key_id: string;
+ /** @example xsBNBFayYZ... */
+ public_key: string;
+ /**
+ * @example [
+ * {
+ * "email": "octocat@users.noreply.github.com",
+ * "verified": true
+ * }
+ * ]
+ */
+ emails: {
+ email?: string;
+ verified?: boolean;
+ }[];
+ /**
+ * @example [
+ * {
+ * "id": 4,
+ * "primary_key_id": 3,
+ * "key_id": "4A595D4C72EE49C7",
+ * "public_key": "zsBNBFayYZ...",
+ * "emails": [],
+ * "can_sign": false,
+ * "can_encrypt_comms": true,
+ * "can_encrypt_storage": true,
+ * "can_certify": false,
+ * "created_at": "2016-03-24T11:31:04-06:00",
+ * "expires_at": null,
+ * "revoked": false
+ * }
+ * ]
+ */
+ subkeys: {
+ id?: number;
+ primary_key_id?: number;
+ key_id?: string;
+ public_key?: string;
+ emails?: {
+ email?: string;
+ verified?: boolean;
+ }[];
+ subkeys?: unknown[];
+ can_sign?: boolean;
+ can_encrypt_comms?: boolean;
+ can_encrypt_storage?: boolean;
+ can_certify?: boolean;
+ created_at?: string;
+ expires_at?: string | null;
+ raw_key?: string | null;
+ revoked?: boolean;
+ }[];
+ /** @example true */
+ can_sign: boolean;
+ can_encrypt_comms: boolean;
+ can_encrypt_storage: boolean;
+ /** @example true */
+ can_certify: boolean;
+ /**
+ * Format: date-time
+ * @example 2016-03-24T11:31:04-06:00
+ */
+ created_at: string;
+ /** Format: date-time */
+ expires_at: string | null;
+ /** @example true */
+ revoked: boolean;
+ raw_key: string | null;
+ };
+ /**
+ * Key
+ * @description Key
+ */
+ key: {
+ key: string;
+ id: number;
+ url: string;
+ title: string;
+ /** Format: date-time */
+ created_at: string;
+ verified: boolean;
+ read_only: boolean;
+ };
+ /** Marketplace Account */
+ "marketplace-account": {
+ /** Format: uri */
+ url: string;
+ id: number;
+ type: string;
+ node_id?: string;
+ login: string;
+ /** Format: email */
+ email?: string | null;
+ /** Format: email */
+ organization_billing_email?: string | null;
+ };
+ /**
+ * User Marketplace Purchase
+ * @description User Marketplace Purchase
+ */
+ "user-marketplace-purchase": {
+ /** @example monthly */
+ billing_cycle: string;
+ /**
+ * Format: date-time
+ * @example 2017-11-11T00:00:00Z
+ */
+ next_billing_date: string | null;
+ unit_count: number | null;
+ /** @example true */
+ on_free_trial: boolean;
+ /**
+ * Format: date-time
+ * @example 2017-11-11T00:00:00Z
+ */
+ free_trial_ends_on: string | null;
+ /**
+ * Format: date-time
+ * @example 2017-11-02T01:12:12Z
+ */
+ updated_at: string | null;
+ account: components["schemas"]["marketplace-account"];
+ plan: components["schemas"]["marketplace-listing-plan"];
+ };
+ /**
+ * Social account
+ * @description Social media account
+ */
+ "social-account": {
+ /** @example linkedin */
+ provider: string;
+ /** @example https://www.linkedin.com/company/github/ */
+ url: string;
+ };
+ /**
+ * SSH Signing Key
+ * @description A public SSH key used to sign Git commits
+ */
+ "ssh-signing-key": {
+ key: string;
+ id: number;
+ title: string;
+ /** Format: date-time */
+ created_at: string;
+ };
+ /**
+ * Starred Repository
+ * @description Starred Repository
+ */
+ "starred-repository": {
+ /** Format: date-time */
+ starred_at: string;
+ repo: components["schemas"]["repository"];
+ };
+ /**
+ * Hovercard
+ * @description Hovercard
+ */
+ hovercard: {
+ contexts: {
+ message: string;
+ octicon: string;
+ }[];
+ };
+ /**
+ * Key Simple
+ * @description Key Simple
+ */
+ "key-simple": {
+ id: number;
+ key: string;
+ };
+ /**
+ * Enterprise
+ * @description An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured
+ * on an enterprise account or an organization that's part of an enterprise account. For more information,
+ * see "[About enterprise accounts](https://docs.github.com/admin/overview/about-enterprise-accounts)."
+ */
+ "enterprise-webhooks": {
+ /** @description A short description of the enterprise. */
+ description?: string | null;
+ /**
+ * Format: uri
+ * @example https://github.com/enterprises/octo-business
+ */
+ html_url: string;
+ /**
+ * Format: uri
+ * @description The enterprise's website URL.
+ */
+ website_url?: string | null;
+ /**
+ * @description Unique identifier of the enterprise
+ * @example 42
+ */
+ id: number;
+ /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */
+ node_id: string;
+ /**
+ * @description The name of the enterprise.
+ * @example Octo Business
+ */
+ name: string;
+ /**
+ * @description The slug url identifier for the enterprise.
+ * @example octo-business
+ */
+ slug: string;
+ /**
+ * Format: date-time
+ * @example 2019-01-26T19:01:12Z
+ */
+ created_at: string | null;
+ /**
+ * Format: date-time
+ * @example 2019-01-26T19:14:43Z
+ */
+ updated_at: string | null;
+ /** Format: uri */
+ avatar_url: string;
+ };
+ /**
+ * Simple Installation
+ * @description The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured
+ * for and sent to a GitHub App. For more information,
+ * see "[Using webhooks with GitHub Apps](https://docs.github.com/apps/creating-github-apps/registering-a-github-app/using-webhooks-with-github-apps)."
+ */
+ "simple-installation": {
+ /**
+ * @description The ID of the installation.
+ * @example 1
+ */
+ id: number;
+ /**
+ * @description The global node ID of the installation.
+ * @example MDQ6VXNlcjU4MzIzMQ==
+ */
+ node_id: string;
+ };
+ /**
+ * Organization Simple
+ * @description A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an
+ * organization, or when the event occurs from activity in a repository owned by an organization.
+ */
+ "organization-simple-webhooks": {
+ /** @example github */
+ login: string;
+ /** @example 1 */
+ id: number;
+ /** @example MDEyOk9yZ2FuaXphdGlvbjE= */
+ node_id: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/orgs/github
+ */
+ url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/orgs/github/repos
+ */
+ repos_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/orgs/github/events
+ */
+ events_url: string;
+ /** @example https://api.github.com/orgs/github/hooks */
+ hooks_url: string;
+ /** @example https://api.github.com/orgs/github/issues */
+ issues_url: string;
+ /** @example https://api.github.com/orgs/github/members{/member} */
+ members_url: string;
+ /** @example https://api.github.com/orgs/github/public_members{/member} */
+ public_members_url: string;
+ /** @example https://github.com/images/error/octocat_happy.gif */
+ avatar_url: string;
+ /** @example A great organization */
+ description: string | null;
+ };
+ /**
+ * Repository
+ * @description The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property
+ * when the event occurs from activity in a repository.
+ */
+ "repository-webhooks": {
+ /**
+ * @description Unique identifier of the repository
+ * @example 42
+ */
+ id: number;
+ /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */
+ node_id: string;
+ /**
+ * @description The name of the repository.
+ * @example Team Environment
+ */
+ name: string;
+ /** @example octocat/Hello-World */
+ full_name: string;
+ license: components["schemas"]["nullable-license-simple"];
+ organization?: components["schemas"]["nullable-simple-user"];
+ forks: number;
+ permissions?: {
+ admin: boolean;
+ pull: boolean;
+ triage?: boolean;
+ push: boolean;
+ maintain?: boolean;
+ };
+ owner: components["schemas"]["simple-user"];
+ /**
+ * @description Whether the repository is private or public.
+ * @default false
+ */
+ private: boolean;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World
+ */
+ html_url: string;
+ /** @example This your first repo! */
+ description: string | null;
+ fork: boolean;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World
+ */
+ url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref} */
+ archive_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/assignees{/user} */
+ assignees_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha} */
+ blobs_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/branches{/branch} */
+ branches_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator} */
+ collaborators_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/comments{/number} */
+ comments_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/commits{/sha} */
+ commits_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head} */
+ compare_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/contents/{+path} */
+ contents_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/contributors
+ */
+ contributors_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/deployments
+ */
+ deployments_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/downloads
+ */
+ downloads_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/events
+ */
+ events_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/forks
+ */
+ forks_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/commits{/sha} */
+ git_commits_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/refs{/sha} */
+ git_refs_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/tags{/sha} */
+ git_tags_url: string;
+ /** @example git:github.com/octocat/Hello-World.git */
+ git_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues/comments{/number} */
+ issue_comment_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues/events{/number} */
+ issue_events_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues{/number} */
+ issues_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/keys{/key_id} */
+ keys_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/labels{/name} */
+ labels_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/languages
+ */
+ languages_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/merges
+ */
+ merges_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/milestones{/number} */
+ milestones_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating} */
+ notifications_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/pulls{/number} */
+ pulls_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/releases{/id} */
+ releases_url: string;
+ /** @example git@github.com:octocat/Hello-World.git */
+ ssh_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/stargazers
+ */
+ stargazers_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/statuses/{sha} */
+ statuses_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/subscribers
+ */
+ subscribers_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/subscription
+ */
+ subscription_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/tags
+ */
+ tags_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/teams
+ */
+ teams_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/trees{/sha} */
+ trees_url: string;
+ /** @example https://github.com/octocat/Hello-World.git */
+ clone_url: string;
+ /**
+ * Format: uri
+ * @example git:git.example.com/octocat/Hello-World
+ */
+ mirror_url: string | null;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/hooks
+ */
+ hooks_url: string;
+ /**
+ * Format: uri
+ * @example https://svn.github.com/octocat/Hello-World
+ */
+ svn_url: string;
+ /**
+ * Format: uri
+ * @example https://github.com
+ */
+ homepage: string | null;
+ language: string | null;
+ /** @example 9 */
+ forks_count: number;
+ /** @example 80 */
+ stargazers_count: number;
+ /** @example 80 */
+ watchers_count: number;
+ /**
+ * @description The size of the repository, in kilobytes. Size is calculated hourly. When a repository is initially created, the size is 0.
+ * @example 108
+ */
+ size: number;
+ /**
+ * @description The default branch of the repository.
+ * @example master
+ */
+ default_branch: string;
+ /** @example 0 */
+ open_issues_count: number;
+ /**
+ * @description Whether this repository acts as a template that can be used to generate new repositories.
+ * @default false
+ * @example true
+ */
+ is_template?: boolean;
+ topics?: string[];
+ /** @description The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. */
+ custom_properties?: {
+ [key: string]: unknown;
+ };
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ * @example true
+ */
+ has_issues: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ * @example true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ * @example true
+ */
+ has_wiki: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ * @example true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ * @example true
+ */
+ has_discussions?: boolean;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** @description Returns whether or not this repository disabled. */
+ disabled: boolean;
+ /**
+ * @description The repository visibility: public, private, or internal.
+ * @default public
+ */
+ visibility?: string;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:06:43Z
+ */
+ pushed_at: string | null;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:01:12Z
+ */
+ created_at: string | null;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:14:43Z
+ */
+ updated_at: string | null;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ * @example true
+ */
+ allow_rebase_merge?: boolean;
+ template_repository?: {
+ id?: number;
+ node_id?: string;
+ name?: string;
+ full_name?: string;
+ owner?: {
+ login?: string;
+ id?: number;
+ node_id?: string;
+ avatar_url?: string;
+ gravatar_id?: string;
+ url?: string;
+ html_url?: string;
+ followers_url?: string;
+ following_url?: string;
+ gists_url?: string;
+ starred_url?: string;
+ subscriptions_url?: string;
+ organizations_url?: string;
+ repos_url?: string;
+ events_url?: string;
+ received_events_url?: string;
+ type?: string;
+ site_admin?: boolean;
+ };
+ private?: boolean;
+ html_url?: string;
+ description?: string;
+ fork?: boolean;
+ url?: string;
+ archive_url?: string;
+ assignees_url?: string;
+ blobs_url?: string;
+ branches_url?: string;
+ collaborators_url?: string;
+ comments_url?: string;
+ commits_url?: string;
+ compare_url?: string;
+ contents_url?: string;
+ contributors_url?: string;
+ deployments_url?: string;
+ downloads_url?: string;
+ events_url?: string;
+ forks_url?: string;
+ git_commits_url?: string;
+ git_refs_url?: string;
+ git_tags_url?: string;
+ git_url?: string;
+ issue_comment_url?: string;
+ issue_events_url?: string;
+ issues_url?: string;
+ keys_url?: string;
+ labels_url?: string;
+ languages_url?: string;
+ merges_url?: string;
+ milestones_url?: string;
+ notifications_url?: string;
+ pulls_url?: string;
+ releases_url?: string;
+ ssh_url?: string;
+ stargazers_url?: string;
+ statuses_url?: string;
+ subscribers_url?: string;
+ subscription_url?: string;
+ tags_url?: string;
+ teams_url?: string;
+ trees_url?: string;
+ clone_url?: string;
+ mirror_url?: string;
+ hooks_url?: string;
+ svn_url?: string;
+ homepage?: string;
+ language?: string;
+ forks_count?: number;
+ stargazers_count?: number;
+ watchers_count?: number;
+ size?: number;
+ default_branch?: string;
+ open_issues_count?: number;
+ is_template?: boolean;
+ topics?: string[];
+ has_issues?: boolean;
+ has_projects?: boolean;
+ has_wiki?: boolean;
+ has_pages?: boolean;
+ has_downloads?: boolean;
+ archived?: boolean;
+ disabled?: boolean;
+ visibility?: string;
+ pushed_at?: string;
+ created_at?: string;
+ updated_at?: string;
+ permissions?: {
+ admin?: boolean;
+ maintain?: boolean;
+ push?: boolean;
+ triage?: boolean;
+ pull?: boolean;
+ };
+ allow_rebase_merge?: boolean;
+ temp_clone_token?: string;
+ allow_squash_merge?: boolean;
+ allow_auto_merge?: boolean;
+ delete_branch_on_merge?: boolean;
+ allow_update_branch?: boolean;
+ use_squash_pr_title_as_default?: boolean;
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?: "PR_BODY" | "COMMIT_MESSAGES" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ allow_merge_commit?: boolean;
+ subscribers_count?: number;
+ network_count?: number;
+ } | null;
+ temp_clone_token?: string;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ * @example true
+ */
+ allow_squash_merge?: boolean;
+ /**
+ * @description Whether to allow Auto-merge to be used on pull requests.
+ * @default false
+ * @example false
+ */
+ allow_auto_merge?: boolean;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ * @example false
+ */
+ delete_branch_on_merge?: boolean;
+ /**
+ * @description Whether or not a pull request head branch that is behind its base branch can always be updated even if it is not required to be up to date before merging.
+ * @default false
+ * @example false
+ */
+ allow_update_branch?: boolean;
+ /**
+ * @deprecated
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?: "PR_BODY" | "COMMIT_MESSAGES" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ * @example true
+ */
+ allow_merge_commit?: boolean;
+ /** @description Whether to allow forking this repo */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to require contributors to sign off on web-based commits
+ * @default false
+ */
+ web_commit_signoff_required?: boolean;
+ subscribers_count?: number;
+ network_count?: number;
+ open_issues: number;
+ watchers: number;
+ master_branch?: string;
+ /** @example "2020-07-09T00:17:42Z" */
+ starred_at?: string;
+ /** @description Whether anonymous git access is enabled for this repository */
+ anonymous_access_enabled?: boolean;
+ };
+ /**
+ * Simple User
+ * @description The GitHub user that triggered the event. This property is included in every webhook payload.
+ */
+ "simple-user-webhooks": {
+ name?: string | null;
+ email?: string | null;
+ /** @example octocat */
+ login: string;
+ /** @example 1 */
+ id: number;
+ /** @example MDQ6VXNlcjE= */
+ node_id: string;
+ /**
+ * Format: uri
+ * @example https://github.com/images/error/octocat_happy.gif
+ */
+ avatar_url: string;
+ /** @example 41d064eb2195891e12d0413f63227ea7 */
+ gravatar_id: string | null;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat
+ */
+ url: string;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat
+ */
+ html_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/followers
+ */
+ followers_url: string;
+ /** @example https://api.github.com/users/octocat/following{/other_user} */
+ following_url: string;
+ /** @example https://api.github.com/users/octocat/gists{/gist_id} */
+ gists_url: string;
+ /** @example https://api.github.com/users/octocat/starred{/owner}{/repo} */
+ starred_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/subscriptions
+ */
+ subscriptions_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/orgs
+ */
+ organizations_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/repos
+ */
+ repos_url: string;
+ /** @example https://api.github.com/users/octocat/events{/privacy} */
+ events_url: string;
+ /**
+ * Format: uri
+ * @example https://api.github.com/users/octocat/received_events
+ */
+ received_events_url: string;
+ /** @example User */
+ type: string;
+ site_admin: boolean;
+ /** @example "2020-07-09T00:17:55Z" */
+ starred_at?: string;
+ };
+ /**
+ * branch protection rule
+ * @description The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) applied to branches that match the name. Binary settings are boolean. Multi-level configurations are one of `off`, `non_admins`, or `everyone`. Actor and build lists are arrays of strings.
+ */
+ webhooks_rule: {
+ admin_enforced: boolean;
+ /** @enum {string} */
+ allow_deletions_enforcement_level: "off" | "non_admins" | "everyone";
+ /** @enum {string} */
+ allow_force_pushes_enforcement_level: "off" | "non_admins" | "everyone";
+ authorized_actor_names: string[];
+ authorized_actors_only: boolean;
+ authorized_dismissal_actors_only: boolean;
+ create_protected?: boolean;
+ /** Format: date-time */
+ created_at: string;
+ dismiss_stale_reviews_on_push: boolean;
+ id: number;
+ ignore_approvals_from_contributors: boolean;
+ /** @enum {string} */
+ linear_history_requirement_enforcement_level:
+ | "off"
+ | "non_admins"
+ | "everyone";
+ /** @enum {string} */
+ merge_queue_enforcement_level: "off" | "non_admins" | "everyone";
+ name: string;
+ /** @enum {string} */
+ pull_request_reviews_enforcement_level: "off" | "non_admins" | "everyone";
+ repository_id: number;
+ require_code_owner_review: boolean;
+ /** @description Whether the most recent push must be approved by someone other than the person who pushed it */
+ require_last_push_approval?: boolean;
+ required_approving_review_count: number;
+ /** @enum {string} */
+ required_conversation_resolution_level: "off" | "non_admins" | "everyone";
+ /** @enum {string} */
+ required_deployments_enforcement_level: "off" | "non_admins" | "everyone";
+ required_status_checks: string[];
+ /** @enum {string} */
+ required_status_checks_enforcement_level:
+ | "off"
+ | "non_admins"
+ | "everyone";
+ /** @enum {string} */
+ signature_requirement_enforcement_level:
+ | "off"
+ | "non_admins"
+ | "everyone";
+ strict_required_status_checks_policy: boolean;
+ /** Format: date-time */
+ updated_at: string;
+ };
+ /** @description A suite of checks performed on the code of a given code change */
+ "simple-check-suite": {
+ /** @example d6fde92930d4715a2b49857d24b940956b26d2d3 */
+ after?: string | null;
+ app?: components["schemas"]["integration"];
+ /** @example 146e867f55c26428e5f9fade55a9bbf5e95a7912 */
+ before?: string | null;
+ /**
+ * @example neutral
+ * @enum {string|null}
+ */
+ conclusion?:
+ | "success"
+ | "failure"
+ | "neutral"
+ | "cancelled"
+ | "skipped"
+ | "timed_out"
+ | "action_required"
+ | "stale"
+ | "startup_failure"
+ | null;
+ /** Format: date-time */
+ created_at?: string;
+ /** @example master */
+ head_branch?: string | null;
+ /**
+ * @description The SHA of the head commit that is being checked.
+ * @example 009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d
+ */
+ head_sha?: string;
+ /** @example 5 */
+ id?: number;
+ /** @example MDEwOkNoZWNrU3VpdGU1 */
+ node_id?: string;
+ pull_requests?: components["schemas"]["pull-request-minimal"][];
+ repository?: components["schemas"]["minimal-repository"];
+ /**
+ * @example completed
+ * @enum {string}
+ */
+ status?: "queued" | "in_progress" | "completed" | "pending" | "waiting";
+ /** Format: date-time */
+ updated_at?: string;
+ /** @example https://api.github.com/repos/github/hello-world/check-suites/5 */
+ url?: string;
+ };
+ /**
+ * CheckRun
+ * @description A check performed on the code of a given code change
+ */
+ "check-run-with-simple-check-suite": {
+ app: components["schemas"]["nullable-integration"];
+ check_suite: components["schemas"]["simple-check-suite"];
+ /**
+ * Format: date-time
+ * @example 2018-05-04T01:14:52Z
+ */
+ completed_at: string | null;
+ /**
+ * @example neutral
+ * @enum {string|null}
+ */
+ conclusion:
+ | "waiting"
+ | "pending"
+ | "startup_failure"
+ | "stale"
+ | "success"
+ | "failure"
+ | "neutral"
+ | "cancelled"
+ | "skipped"
+ | "timed_out"
+ | "action_required"
+ | null;
+ deployment?: components["schemas"]["deployment-simple"];
+ /** @example https://example.com */
+ details_url: string;
+ /** @example 42 */
+ external_id: string;
+ /**
+ * @description The SHA of the commit that is being checked.
+ * @example 009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d
+ */
+ head_sha: string;
+ /** @example https://github.com/github/hello-world/runs/4 */
+ html_url: string;
+ /**
+ * @description The id of the check.
+ * @example 21
+ */
+ id: number;
+ /**
+ * @description The name of the check.
+ * @example test-coverage
+ */
+ name: string;
+ /** @example MDg6Q2hlY2tSdW40 */
+ node_id: string;
+ output: {
+ annotations_count: number;
+ /** Format: uri */
+ annotations_url: string;
+ summary: string | null;
+ text: string | null;
+ title: string | null;
+ };
+ pull_requests: components["schemas"]["pull-request-minimal"][];
+ /**
+ * Format: date-time
+ * @example 2018-05-04T01:14:52Z
+ */
+ started_at: string;
+ /**
+ * @description The phase of the lifecycle that the check is currently in.
+ * @example queued
+ * @enum {string}
+ */
+ status: "queued" | "in_progress" | "completed" | "pending";
+ /** @example https://api.github.com/repos/github/hello-world/check-runs/4 */
+ url: string;
+ };
+ /** @description The commit SHA of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. */
+ webhooks_code_scanning_commit_oid: string;
+ /** @description The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. */
+ webhooks_code_scanning_ref: string;
+ /** @description The pusher type for the event. Can be either `user` or a deploy key. */
+ webhooks_deploy_pusher_type: string;
+ /** @description The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. */
+ webhooks_ref_0: string;
+ /** @description The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. */
+ webhooks_deploy_key: {
+ added_by?: string | null;
+ created_at: string;
+ id: number;
+ key: string;
+ last_used?: string | null;
+ read_only: boolean;
+ title: string;
+ /** Format: uri */
+ url: string;
+ verified: boolean;
+ };
+ /** Workflow */
+ webhooks_workflow: {
+ /** Format: uri */
+ badge_url: string;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ name: string;
+ node_id: string;
+ path: string;
+ state: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ webhooks_approver: {
+ avatar_url?: string;
+ events_url?: string;
+ followers_url?: string;
+ following_url?: string;
+ gists_url?: string;
+ gravatar_id?: string;
+ html_url?: string;
+ id?: number;
+ login?: string;
+ node_id?: string;
+ organizations_url?: string;
+ received_events_url?: string;
+ repos_url?: string;
+ site_admin?: boolean;
+ starred_url?: string;
+ subscriptions_url?: string;
+ type?: string;
+ url?: string;
+ };
+ webhooks_reviewers: {
+ /** User */
+ reviewer?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @enum {string} */
+ type?: "User";
+ }[];
+ webhooks_workflow_job_run: {
+ conclusion: unknown;
+ created_at: string;
+ environment: string;
+ html_url: string;
+ id: number;
+ name: unknown;
+ status: string;
+ updated_at: string;
+ };
+ /** User */
+ webhooks_user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ webhooks_answer: {
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ body: string;
+ child_comment_count: number;
+ /** Format: date-time */
+ created_at: string;
+ discussion_id: number;
+ html_url: string;
+ id: number;
+ node_id: string;
+ parent_id: unknown;
+ /** Reactions */
+ reactions?: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ repository_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /**
+ * Discussion
+ * @description A Discussion in a repository.
+ */
+ discussion: {
+ active_lock_reason: string | null;
+ answer_chosen_at: string | null;
+ /** User */
+ answer_chosen_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ answer_html_url: string | null;
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ body: string;
+ category: {
+ /** Format: date-time */
+ created_at: string;
+ description: string;
+ emoji: string;
+ id: number;
+ is_answerable: boolean;
+ name: string;
+ node_id?: string;
+ repository_id: number;
+ slug: string;
+ updated_at: string;
+ };
+ comments: number;
+ /** Format: date-time */
+ created_at: string;
+ html_url: string;
+ id: number;
+ locked: boolean;
+ node_id: string;
+ number: number;
+ /** Reactions */
+ reactions?: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ repository_url: string;
+ /**
+ * @description The current state of the discussion.
+ * `converting` means that the discussion is being converted from an issue.
+ * `transferring` means that the discussion is being transferred from another repository.
+ * @enum {string}
+ */
+ state: "open" | "closed" | "locked" | "converting" | "transferring";
+ /**
+ * @description The reason for the current state
+ * @example resolved
+ * @enum {string|null}
+ */
+ state_reason: "resolved" | "outdated" | "duplicate" | "reopened" | null;
+ timeline_url?: string;
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ webhooks_comment: {
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ body: string;
+ child_comment_count: number;
+ created_at: string;
+ discussion_id: number;
+ html_url: string;
+ id: number;
+ node_id: string;
+ parent_id: number | null;
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ repository_url: string;
+ updated_at: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Label */
+ webhooks_label: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ };
+ /** @description An array of repository objects that the installation can access. */
+ webhooks_repositories: {
+ full_name: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ }[];
+ /** @description An array of repository objects, which were added to the installation. */
+ webhooks_repositories_added: {
+ full_name: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ }[];
+ /**
+ * @description Describe whether all repositories have been selected or there's a selection involved
+ * @enum {string}
+ */
+ webhooks_repository_selection: "all" | "selected";
+ /**
+ * issue comment
+ * @description The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself.
+ */
+ webhooks_issue_comment: {
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description Contents of the issue comment */
+ body: string;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: uri */
+ html_url: string;
+ /**
+ * Format: int64
+ * @description Unique identifier of the issue comment
+ */
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ node_id: string;
+ performed_via_github_app: components["schemas"]["integration"];
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL for the issue comment
+ */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** @description The changes to the comment. */
+ webhooks_changes: {
+ body?: {
+ /** @description The previous version of the body. */
+ from: string;
+ };
+ };
+ /**
+ * Issue
+ * @description The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself.
+ */
+ webhooks_issue: {
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description Contents of the issue */
+ body: string | null;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments: number;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: date-time */
+ created_at: string;
+ draft?: boolean;
+ /** Format: uri */
+ events_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** Format: int64 */
+ id: number;
+ labels?: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ /** Format: uri-template */
+ labels_url: string;
+ locked?: boolean;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /**
+ * App
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ performed_via_github_app?: {
+ /** Format: date-time */
+ created_at: string | null;
+ description: string | null;
+ /** @description The list of events for the GitHub app */
+ events?: (
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "content_reference"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_review"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_dispatch"
+ | "secret_scanning_alert"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_dispatch"
+ | "workflow_run"
+ | "reminder"
+ | "pull_request_review_thread"
+ )[];
+ /** Format: uri */
+ external_url: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the GitHub app */
+ id: number | null;
+ /** @description The name of the GitHub app */
+ name: string;
+ node_id: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The set of permissions for the GitHub app */
+ permissions?: {
+ /** @enum {string} */
+ actions?: "read" | "write";
+ /** @enum {string} */
+ administration?: "read" | "write";
+ /** @enum {string} */
+ checks?: "read" | "write";
+ /** @enum {string} */
+ content_references?: "read" | "write";
+ /** @enum {string} */
+ contents?: "read" | "write";
+ /** @enum {string} */
+ deployments?: "read" | "write";
+ /** @enum {string} */
+ discussions?: "read" | "write";
+ /** @enum {string} */
+ emails?: "read" | "write";
+ /** @enum {string} */
+ environments?: "read" | "write";
+ /** @enum {string} */
+ issues?: "read" | "write";
+ /** @enum {string} */
+ keys?: "read" | "write";
+ /** @enum {string} */
+ members?: "read" | "write";
+ /** @enum {string} */
+ metadata?: "read" | "write";
+ /** @enum {string} */
+ organization_administration?: "read" | "write";
+ /** @enum {string} */
+ organization_hooks?: "read" | "write";
+ /** @enum {string} */
+ organization_packages?: "read" | "write";
+ /** @enum {string} */
+ organization_plan?: "read" | "write";
+ /** @enum {string} */
+ organization_projects?: "read" | "write" | "admin";
+ /** @enum {string} */
+ organization_secrets?: "read" | "write";
+ /** @enum {string} */
+ organization_self_hosted_runners?: "read" | "write";
+ /** @enum {string} */
+ organization_user_blocking?: "read" | "write";
+ /** @enum {string} */
+ packages?: "read" | "write";
+ /** @enum {string} */
+ pages?: "read" | "write";
+ /** @enum {string} */
+ pull_requests?: "read" | "write";
+ /** @enum {string} */
+ repository_hooks?: "read" | "write";
+ /** @enum {string} */
+ repository_projects?: "read" | "write";
+ /** @enum {string} */
+ secret_scanning_alerts?: "read" | "write";
+ /** @enum {string} */
+ secrets?: "read" | "write";
+ /** @enum {string} */
+ security_events?: "read" | "write";
+ /** @enum {string} */
+ security_scanning_alert?: "read" | "write";
+ /** @enum {string} */
+ single_file?: "read" | "write";
+ /** @enum {string} */
+ statuses?: "read" | "write";
+ /** @enum {string} */
+ team_discussions?: "read" | "write";
+ /** @enum {string} */
+ vulnerability_alerts?: "read" | "write";
+ /** @enum {string} */
+ workflows?: "read" | "write";
+ };
+ /** @description The slug name of the GitHub app */
+ slug?: string;
+ /** Format: date-time */
+ updated_at: string | null;
+ } | null;
+ pull_request?: {
+ /** Format: uri */
+ diff_url?: string;
+ /** Format: uri */
+ html_url?: string;
+ /** Format: date-time */
+ merged_at?: string | null;
+ /** Format: uri */
+ patch_url?: string;
+ /** Format: uri */
+ url?: string;
+ };
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /** Format: uri */
+ repository_url: string;
+ /**
+ * @description State of the issue; either 'open' or 'closed'
+ * @enum {string}
+ */
+ state?: "open" | "closed";
+ state_reason?: string | null;
+ /** Format: uri */
+ timeline_url?: string;
+ /** @description Title of the issue */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL for the issue
+ */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ webhooks_milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ };
+ /**
+ * Issue
+ * @description The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself.
+ */
+ webhooks_issue_2: {
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description Contents of the issue */
+ body: string | null;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments: number;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: date-time */
+ created_at: string;
+ draft?: boolean;
+ /** Format: uri */
+ events_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** Format: int64 */
+ id: number;
+ labels?: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ /** Format: uri-template */
+ labels_url: string;
+ locked?: boolean;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /**
+ * App
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ performed_via_github_app?: {
+ /** Format: date-time */
+ created_at: string | null;
+ description: string | null;
+ /** @description The list of events for the GitHub app */
+ events?: (
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "content_reference"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_review"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_dispatch"
+ | "secret_scanning_alert"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_dispatch"
+ | "workflow_run"
+ )[];
+ /** Format: uri */
+ external_url: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the GitHub app */
+ id: number | null;
+ /** @description The name of the GitHub app */
+ name: string;
+ node_id: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The set of permissions for the GitHub app */
+ permissions?: {
+ /** @enum {string} */
+ actions?: "read" | "write";
+ /** @enum {string} */
+ administration?: "read" | "write";
+ /** @enum {string} */
+ checks?: "read" | "write";
+ /** @enum {string} */
+ content_references?: "read" | "write";
+ /** @enum {string} */
+ contents?: "read" | "write";
+ /** @enum {string} */
+ deployments?: "read" | "write";
+ /** @enum {string} */
+ discussions?: "read" | "write";
+ /** @enum {string} */
+ emails?: "read" | "write";
+ /** @enum {string} */
+ environments?: "read" | "write";
+ /** @enum {string} */
+ issues?: "read" | "write";
+ /** @enum {string} */
+ keys?: "read" | "write";
+ /** @enum {string} */
+ members?: "read" | "write";
+ /** @enum {string} */
+ metadata?: "read" | "write";
+ /** @enum {string} */
+ organization_administration?: "read" | "write";
+ /** @enum {string} */
+ organization_hooks?: "read" | "write";
+ /** @enum {string} */
+ organization_packages?: "read" | "write";
+ /** @enum {string} */
+ organization_plan?: "read" | "write";
+ /** @enum {string} */
+ organization_projects?: "read" | "write";
+ /** @enum {string} */
+ organization_secrets?: "read" | "write";
+ /** @enum {string} */
+ organization_self_hosted_runners?: "read" | "write";
+ /** @enum {string} */
+ organization_user_blocking?: "read" | "write";
+ /** @enum {string} */
+ packages?: "read" | "write";
+ /** @enum {string} */
+ pages?: "read" | "write";
+ /** @enum {string} */
+ pull_requests?: "read" | "write";
+ /** @enum {string} */
+ repository_hooks?: "read" | "write";
+ /** @enum {string} */
+ repository_projects?: "read" | "write";
+ /** @enum {string} */
+ secret_scanning_alerts?: "read" | "write";
+ /** @enum {string} */
+ secrets?: "read" | "write";
+ /** @enum {string} */
+ security_events?: "read" | "write";
+ /** @enum {string} */
+ security_scanning_alert?: "read" | "write";
+ /** @enum {string} */
+ single_file?: "read" | "write";
+ /** @enum {string} */
+ statuses?: "read" | "write";
+ /** @enum {string} */
+ team_discussions?: "read" | "write";
+ /** @enum {string} */
+ vulnerability_alerts?: "read" | "write";
+ /** @enum {string} */
+ workflows?: "read" | "write";
+ };
+ /** @description The slug name of the GitHub app */
+ slug?: string;
+ /** Format: date-time */
+ updated_at: string | null;
+ } | null;
+ pull_request?: {
+ /** Format: uri */
+ diff_url?: string;
+ /** Format: uri */
+ html_url?: string;
+ /** Format: date-time */
+ merged_at?: string | null;
+ /** Format: uri */
+ patch_url?: string;
+ /** Format: uri */
+ url?: string;
+ };
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /** Format: uri */
+ repository_url: string;
+ /**
+ * @description State of the issue; either 'open' or 'closed'
+ * @enum {string}
+ */
+ state?: "open" | "closed";
+ state_reason?: string | null;
+ /** Format: uri */
+ timeline_url?: string;
+ /** @description Title of the issue */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL for the issue
+ */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** User */
+ webhooks_user_mannequin: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** Marketplace Purchase */
+ webhooks_marketplace_purchase: {
+ account: {
+ id: number;
+ login: string;
+ node_id: string;
+ organization_billing_email: string | null;
+ type: string;
+ };
+ billing_cycle: string;
+ free_trial_ends_on: string | null;
+ next_billing_date: string | null;
+ on_free_trial: boolean;
+ plan: {
+ bullets: (string | null)[];
+ description: string;
+ has_free_trial: boolean;
+ id: number;
+ monthly_price_in_cents: number;
+ name: string;
+ /** @enum {string} */
+ price_model: "FREE" | "FLAT_RATE" | "PER_UNIT";
+ unit_name: string | null;
+ yearly_price_in_cents: number;
+ };
+ unit_count: number;
+ };
+ /** Marketplace Purchase */
+ webhooks_previous_marketplace_purchase: {
+ account: {
+ id: number;
+ login: string;
+ node_id: string;
+ organization_billing_email: string | null;
+ type: string;
+ };
+ billing_cycle: string;
+ free_trial_ends_on: unknown;
+ next_billing_date?: string | null;
+ on_free_trial: boolean;
+ plan: {
+ bullets: string[];
+ description: string;
+ has_free_trial: boolean;
+ id: number;
+ monthly_price_in_cents: number;
+ name: string;
+ /** @enum {string} */
+ price_model: "FREE" | "FLAT_RATE" | "PER_UNIT";
+ unit_name: string | null;
+ yearly_price_in_cents: number;
+ };
+ unit_count: number;
+ };
+ /**
+ * Team
+ * @description Groups of organization members that gives permissions on specified repositories.
+ */
+ webhooks_team: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /**
+ * @description Whether team members will receive notifications when their team is @mentioned
+ * @enum {string}
+ */
+ notification_setting:
+ | "notifications_enabled"
+ | "notifications_disabled";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** @enum {string} */
+ notification_setting?: "notifications_enabled" | "notifications_disabled";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ };
+ /**
+ * Merge Group
+ * @description A group of pull requests that the merge queue has grouped together to be merged.
+ */
+ "merge-group": {
+ /** @description The SHA of the merge group. */
+ head_sha: string;
+ /** @description The full ref of the merge group. */
+ head_ref: string;
+ /** @description The SHA of the merge group's parent commit. */
+ base_sha: string;
+ /** @description The full ref of the branch the merge group will be merged into. */
+ base_ref: string;
+ head_commit: components["schemas"]["simple-commit"];
+ };
+ /**
+ * Repository
+ * @description The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property
+ * when the event occurs from activity in a repository.
+ */
+ "nullable-repository-webhooks": {
+ /**
+ * @description Unique identifier of the repository
+ * @example 42
+ */
+ id: number;
+ /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */
+ node_id: string;
+ /**
+ * @description The name of the repository.
+ * @example Team Environment
+ */
+ name: string;
+ /** @example octocat/Hello-World */
+ full_name: string;
+ license: components["schemas"]["nullable-license-simple"];
+ organization?: components["schemas"]["nullable-simple-user"];
+ forks: number;
+ permissions?: {
+ admin: boolean;
+ pull: boolean;
+ triage?: boolean;
+ push: boolean;
+ maintain?: boolean;
+ };
+ owner: components["schemas"]["simple-user"];
+ /**
+ * @description Whether the repository is private or public.
+ * @default false
+ */
+ private: boolean;
+ /**
+ * Format: uri
+ * @example https://github.com/octocat/Hello-World
+ */
+ html_url: string;
+ /** @example This your first repo! */
+ description: string | null;
+ fork: boolean;
+ /**
+ * Format: uri
+ * @example https://api.github.com/repos/octocat/Hello-World
+ */
+ url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref} */
+ archive_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/assignees{/user} */
+ assignees_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha} */
+ blobs_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/branches{/branch} */
+ branches_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator} */
+ collaborators_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/comments{/number} */
+ comments_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/commits{/sha} */
+ commits_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head} */
+ compare_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/contents/{+path} */
+ contents_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/contributors
+ */
+ contributors_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/deployments
+ */
+ deployments_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/downloads
+ */
+ downloads_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/events
+ */
+ events_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/forks
+ */
+ forks_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/commits{/sha} */
+ git_commits_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/refs{/sha} */
+ git_refs_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/tags{/sha} */
+ git_tags_url: string;
+ /** @example git:github.com/octocat/Hello-World.git */
+ git_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues/comments{/number} */
+ issue_comment_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues/events{/number} */
+ issue_events_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/issues{/number} */
+ issues_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/keys{/key_id} */
+ keys_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/labels{/name} */
+ labels_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/languages
+ */
+ languages_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/merges
+ */
+ merges_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/milestones{/number} */
+ milestones_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating} */
+ notifications_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/pulls{/number} */
+ pulls_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/releases{/id} */
+ releases_url: string;
+ /** @example git@github.com:octocat/Hello-World.git */
+ ssh_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/stargazers
+ */
+ stargazers_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/statuses/{sha} */
+ statuses_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/subscribers
+ */
+ subscribers_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/subscription
+ */
+ subscription_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/tags
+ */
+ tags_url: string;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/teams
+ */
+ teams_url: string;
+ /** @example http://api.github.com/repos/octocat/Hello-World/git/trees{/sha} */
+ trees_url: string;
+ /** @example https://github.com/octocat/Hello-World.git */
+ clone_url: string;
+ /**
+ * Format: uri
+ * @example git:git.example.com/octocat/Hello-World
+ */
+ mirror_url: string | null;
+ /**
+ * Format: uri
+ * @example http://api.github.com/repos/octocat/Hello-World/hooks
+ */
+ hooks_url: string;
+ /**
+ * Format: uri
+ * @example https://svn.github.com/octocat/Hello-World
+ */
+ svn_url: string;
+ /**
+ * Format: uri
+ * @example https://github.com
+ */
+ homepage: string | null;
+ language: string | null;
+ /** @example 9 */
+ forks_count: number;
+ /** @example 80 */
+ stargazers_count: number;
+ /** @example 80 */
+ watchers_count: number;
+ /**
+ * @description The size of the repository, in kilobytes. Size is calculated hourly. When a repository is initially created, the size is 0.
+ * @example 108
+ */
+ size: number;
+ /**
+ * @description The default branch of the repository.
+ * @example master
+ */
+ default_branch: string;
+ /** @example 0 */
+ open_issues_count: number;
+ /**
+ * @description Whether this repository acts as a template that can be used to generate new repositories.
+ * @default false
+ * @example true
+ */
+ is_template?: boolean;
+ topics?: string[];
+ /** @description The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. */
+ custom_properties?: {
+ [key: string]: unknown;
+ };
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ * @example true
+ */
+ has_issues: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ * @example true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ * @example true
+ */
+ has_wiki: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ * @example true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ * @example true
+ */
+ has_discussions?: boolean;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** @description Returns whether or not this repository disabled. */
+ disabled: boolean;
+ /**
+ * @description The repository visibility: public, private, or internal.
+ * @default public
+ */
+ visibility?: string;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:06:43Z
+ */
+ pushed_at: string | null;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:01:12Z
+ */
+ created_at: string | null;
+ /**
+ * Format: date-time
+ * @example 2011-01-26T19:14:43Z
+ */
+ updated_at: string | null;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ * @example true
+ */
+ allow_rebase_merge?: boolean;
+ template_repository?: {
+ id?: number;
+ node_id?: string;
+ name?: string;
+ full_name?: string;
+ owner?: {
+ login?: string;
+ id?: number;
+ node_id?: string;
+ avatar_url?: string;
+ gravatar_id?: string;
+ url?: string;
+ html_url?: string;
+ followers_url?: string;
+ following_url?: string;
+ gists_url?: string;
+ starred_url?: string;
+ subscriptions_url?: string;
+ organizations_url?: string;
+ repos_url?: string;
+ events_url?: string;
+ received_events_url?: string;
+ type?: string;
+ site_admin?: boolean;
+ };
+ private?: boolean;
+ html_url?: string;
+ description?: string;
+ fork?: boolean;
+ url?: string;
+ archive_url?: string;
+ assignees_url?: string;
+ blobs_url?: string;
+ branches_url?: string;
+ collaborators_url?: string;
+ comments_url?: string;
+ commits_url?: string;
+ compare_url?: string;
+ contents_url?: string;
+ contributors_url?: string;
+ deployments_url?: string;
+ downloads_url?: string;
+ events_url?: string;
+ forks_url?: string;
+ git_commits_url?: string;
+ git_refs_url?: string;
+ git_tags_url?: string;
+ git_url?: string;
+ issue_comment_url?: string;
+ issue_events_url?: string;
+ issues_url?: string;
+ keys_url?: string;
+ labels_url?: string;
+ languages_url?: string;
+ merges_url?: string;
+ milestones_url?: string;
+ notifications_url?: string;
+ pulls_url?: string;
+ releases_url?: string;
+ ssh_url?: string;
+ stargazers_url?: string;
+ statuses_url?: string;
+ subscribers_url?: string;
+ subscription_url?: string;
+ tags_url?: string;
+ teams_url?: string;
+ trees_url?: string;
+ clone_url?: string;
+ mirror_url?: string;
+ hooks_url?: string;
+ svn_url?: string;
+ homepage?: string;
+ language?: string;
+ forks_count?: number;
+ stargazers_count?: number;
+ watchers_count?: number;
+ size?: number;
+ default_branch?: string;
+ open_issues_count?: number;
+ is_template?: boolean;
+ topics?: string[];
+ has_issues?: boolean;
+ has_projects?: boolean;
+ has_wiki?: boolean;
+ has_pages?: boolean;
+ has_downloads?: boolean;
+ archived?: boolean;
+ disabled?: boolean;
+ visibility?: string;
+ pushed_at?: string;
+ created_at?: string;
+ updated_at?: string;
+ permissions?: {
+ admin?: boolean;
+ maintain?: boolean;
+ push?: boolean;
+ triage?: boolean;
+ pull?: boolean;
+ };
+ allow_rebase_merge?: boolean;
+ temp_clone_token?: string;
+ allow_squash_merge?: boolean;
+ allow_auto_merge?: boolean;
+ delete_branch_on_merge?: boolean;
+ allow_update_branch?: boolean;
+ use_squash_pr_title_as_default?: boolean;
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?: "PR_BODY" | "COMMIT_MESSAGES" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ allow_merge_commit?: boolean;
+ subscribers_count?: number;
+ network_count?: number;
+ } | null;
+ temp_clone_token?: string;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ * @example true
+ */
+ allow_squash_merge?: boolean;
+ /**
+ * @description Whether to allow Auto-merge to be used on pull requests.
+ * @default false
+ * @example false
+ */
+ allow_auto_merge?: boolean;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ * @example false
+ */
+ delete_branch_on_merge?: boolean;
+ /**
+ * @description Whether or not a pull request head branch that is behind its base branch can always be updated even if it is not required to be up to date before merging.
+ * @default false
+ * @example false
+ */
+ allow_update_branch?: boolean;
+ /**
+ * @deprecated
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?: "PR_BODY" | "COMMIT_MESSAGES" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ * @example true
+ */
+ allow_merge_commit?: boolean;
+ /** @description Whether to allow forking this repo */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to require contributors to sign off on web-based commits
+ * @default false
+ */
+ web_commit_signoff_required?: boolean;
+ subscribers_count?: number;
+ network_count?: number;
+ open_issues: number;
+ watchers: number;
+ master_branch?: string;
+ /** @example "2020-07-09T00:17:42Z" */
+ starred_at?: string;
+ /** @description Whether anonymous git access is enabled for this repository */
+ anonymous_access_enabled?: boolean;
+ } | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ webhooks_milestone_3: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ };
+ /**
+ * Membership
+ * @description The membership between the user and the organization. Not present when the action is `member_invited`.
+ */
+ webhooks_membership: {
+ /** Format: uri */
+ organization_url: string;
+ role: string;
+ state: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /**
+ * Personal Access Token Request
+ * @description Details of a Personal Access Token Request.
+ */
+ "personal-access-token-request": {
+ /** @description Unique identifier of the request for access via fine-grained personal access token. Used as the `pat_request_id` parameter in the list and review API calls. */
+ id: number;
+ owner: components["schemas"]["simple-user"];
+ /** @description New requested permissions, categorized by type of permission. */
+ permissions_added: {
+ organization?: {
+ [key: string]: string;
+ };
+ repository?: {
+ [key: string]: string;
+ };
+ other?: {
+ [key: string]: string;
+ };
+ };
+ /** @description Requested permissions that elevate access for a previously approved request for access, categorized by type of permission. */
+ permissions_upgraded: {
+ organization?: {
+ [key: string]: string;
+ };
+ repository?: {
+ [key: string]: string;
+ };
+ other?: {
+ [key: string]: string;
+ };
+ };
+ /** @description Permissions requested, categorized by type of permission. This field incorporates `permissions_added` and `permissions_upgraded`. */
+ permissions_result: {
+ organization?: {
+ [key: string]: string;
+ };
+ repository?: {
+ [key: string]: string;
+ };
+ other?: {
+ [key: string]: string;
+ };
+ };
+ /**
+ * @description Type of repository selection requested.
+ * @enum {string}
+ */
+ repository_selection: "none" | "all" | "subset";
+ /** @description The number of repositories the token is requesting access to. This field is only populated when `repository_selection` is `subset`. */
+ repository_count: number | null;
+ /** @description An array of repository objects the token is requesting access to. This field is only populated when `repository_selection` is `subset`. */
+ repositories:
+ | {
+ full_name: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ }[]
+ | null;
+ /** @description Date and time when the request for access was created. */
+ created_at: string;
+ /** @description Whether the associated fine-grained personal access token has expired. */
+ token_expired: boolean;
+ /** @description Date and time when the associated fine-grained personal access token expires. */
+ token_expires_at: string | null;
+ /** @description Date and time when the associated fine-grained personal access token was last used for authentication. */
+ token_last_used_at: string | null;
+ };
+ /** Project Card */
+ webhooks_project_card: {
+ after_id?: number | null;
+ /** @description Whether or not the card is archived */
+ archived: boolean;
+ column_id: number;
+ /** Format: uri */
+ column_url: string;
+ /** Format: uri */
+ content_url?: string;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The project card's ID */
+ id: number;
+ node_id: string;
+ note: string | null;
+ /** Format: uri */
+ project_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ };
+ /** Project */
+ webhooks_project: {
+ /** @description Body of the project */
+ body: string | null;
+ /** Format: uri */
+ columns_url: string;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** @description Name of the project */
+ name: string;
+ node_id: string;
+ number: number;
+ /** Format: uri */
+ owner_url: string;
+ /**
+ * @description State of the project; either 'open' or 'closed'
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ };
+ /** Project Column */
+ webhooks_project_column: {
+ after_id?: number | null;
+ /** Format: uri */
+ cards_url: string;
+ /** Format: date-time */
+ created_at: string;
+ /** @description The unique identifier of the project column */
+ id: number;
+ /** @description Name of the project column */
+ name: string;
+ node_id: string;
+ /** Format: uri */
+ project_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ };
+ /**
+ * Projects v2 Project
+ * @description A projects v2 project
+ */
+ "projects-v2": {
+ id: number;
+ node_id: string;
+ owner: components["schemas"]["simple-user"];
+ creator: components["schemas"]["simple-user"];
+ title: string;
+ description: string | null;
+ public: boolean;
+ /**
+ * Format: date-time
+ * @example 2022-04-28T12:00:00Z
+ */
+ closed_at: string | null;
+ /**
+ * Format: date-time
+ * @example 2022-04-28T12:00:00Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2022-04-28T12:00:00Z
+ */
+ updated_at: string;
+ number: number;
+ short_description: string | null;
+ /**
+ * Format: date-time
+ * @example 2022-04-28T12:00:00Z
+ */
+ deleted_at: string | null;
+ deleted_by: components["schemas"]["nullable-simple-user"];
+ };
+ webhooks_project_changes: {
+ archived_at?: {
+ /** Format: date-time */
+ from?: string | null;
+ /** Format: date-time */
+ to?: string | null;
+ };
+ };
+ /**
+ * Projects v2 Item Content Type
+ * @description The type of content tracked in a project item
+ * @enum {string}
+ */
+ "projects-v2-item-content-type": "Issue" | "PullRequest" | "DraftIssue";
+ /**
+ * Projects v2 Item
+ * @description An item belonging to a project
+ */
+ "projects-v2-item": {
+ id: number;
+ node_id?: string;
+ project_node_id?: string;
+ content_node_id: string;
+ content_type: components["schemas"]["projects-v2-item-content-type"];
+ creator?: components["schemas"]["simple-user"];
+ /**
+ * Format: date-time
+ * @example 2022-04-28T12:00:00Z
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @example 2022-04-28T12:00:00Z
+ */
+ updated_at: string;
+ /**
+ * Format: date-time
+ * @example 2022-04-28T12:00:00Z
+ */
+ archived_at: string | null;
+ };
+ /** @description The pull request number. */
+ webhooks_number: number;
+ "pull-request-webhook": components["schemas"]["pull-request"] & {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow updating the pull request's branch. */
+ allow_update_branch?: boolean;
+ /**
+ * @description Whether to delete head branches when pull requests are merged.
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /**
+ * @description The default value for a merge commit message.
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., "Merge pull request #123 from branch-name").
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /**
+ * @description The default value for a squash merge commit message:
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?: "PR_BODY" | "COMMIT_MESSAGES" | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.**
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ };
+ /** Pull Request */
+ webhooks_pull_request_5: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ additions?: number;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string | null;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?: "PR_BODY" | "COMMIT_MESSAGES" | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ changed_files?: number;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments?: number;
+ /** Format: uri */
+ comments_url: string;
+ commits?: number;
+ /** Format: uri */
+ commits_url: string;
+ /** Format: date-time */
+ created_at: string;
+ deletions?: number;
+ /** Format: uri */
+ diff_url: string;
+ /** @description Indicates whether or not the pull request is a draft. */
+ draft: boolean;
+ head: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?: "PR_BODY" | "COMMIT_MESSAGES" | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ /** @description Indicates whether maintainers can modify the pull request. */
+ maintainer_can_modify?: boolean;
+ merge_commit_sha: string | null;
+ mergeable?: boolean | null;
+ mergeable_state?: string;
+ merged?: boolean | null;
+ /** Format: date-time */
+ merged_at: string | null;
+ /** User */
+ merged_by?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ /** @description Number uniquely identifying the pull request within its repository. */
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ rebaseable?: boolean | null;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ review_comments?: number;
+ /** Format: uri */
+ review_comments_url: string;
+ /**
+ * @description State of this Pull Request. Either `open` or `closed`.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ /** @description The title of the pull request. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /**
+ * Pull Request Review Comment
+ * @description The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself.
+ */
+ webhooks_review_comment: {
+ _links: {
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ pull_request: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description The text of the comment. */
+ body: string;
+ /** @description The SHA of the commit to which the comment applies. */
+ commit_id: string;
+ /** Format: date-time */
+ created_at: string;
+ /** @description The diff of the line that the comment refers to. */
+ diff_hunk: string;
+ /**
+ * Format: uri
+ * @description HTML URL for the pull request review comment.
+ */
+ html_url: string;
+ /** @description The ID of the pull request review comment. */
+ id: number;
+ /** @description The comment ID to reply to. */
+ in_reply_to_id?: number;
+ /** @description The line of the blob to which the comment applies. The last line of the range for a multi-line comment */
+ line: number | null;
+ /** @description The node ID of the pull request review comment. */
+ node_id: string;
+ /** @description The SHA of the original commit to which the comment applies. */
+ original_commit_id: string;
+ /** @description The line of the blob to which the comment applies. The last line of the range for a multi-line comment */
+ original_line: number;
+ /** @description The index of the original line in the diff to which the comment applies. */
+ original_position: number;
+ /** @description The first line of the range for a multi-line comment. */
+ original_start_line: number | null;
+ /** @description The relative path of the file to which the comment applies. */
+ path: string;
+ /** @description The line index in the diff to which the comment applies. */
+ position: number | null;
+ /** @description The ID of the pull request review to which the comment belongs. */
+ pull_request_review_id: number | null;
+ /**
+ * Format: uri
+ * @description URL for the pull request that the review comment belongs to.
+ */
+ pull_request_url: string;
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /**
+ * @description The side of the first line of the range for a multi-line comment.
+ * @enum {string}
+ */
+ side: "LEFT" | "RIGHT";
+ /** @description The first line of the range for a multi-line comment. */
+ start_line: number | null;
+ /**
+ * @description The side of the first line of the range for a multi-line comment.
+ * @default RIGHT
+ * @enum {string|null}
+ */
+ start_side: "LEFT" | "RIGHT" | null;
+ /**
+ * @description The level at which the comment is targeted, can be a diff line or a file.
+ * @enum {string}
+ */
+ subject_type?: "line" | "file";
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL for the pull request review comment
+ */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** @description The review that was affected. */
+ webhooks_review: {
+ _links: {
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ pull_request: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description The text of the review. */
+ body: string | null;
+ /** @description A commit SHA for the review. */
+ commit_id: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the review */
+ id: number;
+ node_id: string;
+ /** Format: uri */
+ pull_request_url: string;
+ state: string;
+ /** Format: date-time */
+ submitted_at: string | null;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ webhooks_nullable_string: string | null;
+ /**
+ * Release
+ * @description The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object.
+ */
+ webhooks_release: {
+ assets: {
+ /** Format: uri */
+ browser_download_url: string;
+ content_type: string;
+ /** Format: date-time */
+ created_at: string;
+ download_count: number;
+ id: number;
+ label: string | null;
+ /** @description The file name of the asset. */
+ name: string;
+ node_id: string;
+ size: number;
+ /**
+ * @description State of the release asset.
+ * @enum {string}
+ */
+ state: "uploaded";
+ /** Format: date-time */
+ updated_at: string;
+ /** User */
+ uploader?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** Format: uri */
+ url: string;
+ }[];
+ /** Format: uri */
+ assets_url: string;
+ /** User */
+ author: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ body: string | null;
+ /** Format: date-time */
+ created_at: string | null;
+ /** Format: uri */
+ discussion_url?: string;
+ /** @description Whether the release is a draft or published */
+ draft: boolean;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ name: string | null;
+ node_id: string;
+ /** @description Whether the release is identified as a prerelease or a full release. */
+ prerelease: boolean;
+ /** Format: date-time */
+ published_at: string | null;
+ /** Reactions */
+ reactions?: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /** @description The name of the tag. */
+ tag_name: string;
+ /** Format: uri */
+ tarball_url: string | null;
+ /** @description Specifies the commitish value that determines where the Git tag is created from. */
+ target_commitish: string;
+ /** Format: uri-template */
+ upload_url: string;
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ zipball_url: string | null;
+ };
+ /**
+ * Release
+ * @description The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object.
+ */
+ webhooks_release_1: {
+ assets: ({
+ /** Format: uri */
+ browser_download_url: string;
+ content_type: string;
+ /** Format: date-time */
+ created_at: string;
+ download_count: number;
+ id: number;
+ label: string | null;
+ /** @description The file name of the asset. */
+ name: string;
+ node_id: string;
+ size: number;
+ /**
+ * @description State of the release asset.
+ * @enum {string}
+ */
+ state: "uploaded";
+ /** Format: date-time */
+ updated_at: string;
+ /** User */
+ uploader?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** Format: uri */
+ url: string;
+ } | null)[];
+ /** Format: uri */
+ assets_url: string;
+ /** User */
+ author: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ body: string | null;
+ /** Format: date-time */
+ created_at: string | null;
+ /** Format: uri */
+ discussion_url?: string;
+ /** @description Whether the release is a draft or published */
+ draft: boolean;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ name: string | null;
+ node_id: string;
+ /** @description Whether the release is identified as a prerelease or a full release. */
+ prerelease: boolean;
+ /** Format: date-time */
+ published_at: string | null;
+ /** Reactions */
+ reactions?: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /** @description The name of the tag. */
+ tag_name: string;
+ /** Format: uri */
+ tarball_url: string | null;
+ /** @description Specifies the commitish value that determines where the Git tag is created from. */
+ target_commitish: string;
+ /** Format: uri-template */
+ upload_url: string;
+ /** Format: uri */
+ url: string;
+ /** Format: uri */
+ zipball_url: string | null;
+ };
+ /**
+ * Repository Vulnerability Alert Alert
+ * @description The security alert of the vulnerable dependency.
+ */
+ webhooks_alert: {
+ affected_package_name: string;
+ affected_range: string;
+ created_at: string;
+ dismiss_reason?: string;
+ dismissed_at?: string;
+ /** User */
+ dismisser?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ external_identifier: string;
+ /** Format: uri */
+ external_reference: string | null;
+ fix_reason?: string;
+ /** Format: date-time */
+ fixed_at?: string;
+ fixed_in?: string;
+ ghsa_id: string;
+ id: number;
+ node_id: string;
+ number: number;
+ severity: string;
+ /** @enum {string} */
+ state: "open";
+ };
+ /**
+ * @description The reason for resolving the alert.
+ * @enum {string|null}
+ */
+ "secret-scanning-alert-resolution-webhook":
+ | "false_positive"
+ | "wont_fix"
+ | "revoked"
+ | "used_in_tests"
+ | "pattern_deleted"
+ | "pattern_edited"
+ | null;
+ "secret-scanning-alert-webhook": {
+ number?: components["schemas"]["alert-number"];
+ created_at?: components["schemas"]["alert-created-at"];
+ updated_at?: components["schemas"]["nullable-alert-updated-at"];
+ url?: components["schemas"]["alert-url"];
+ html_url?: components["schemas"]["alert-html-url"];
+ /**
+ * Format: uri
+ * @description The REST API URL of the code locations for this alert.
+ */
+ locations_url?: string;
+ resolution?: components["schemas"]["secret-scanning-alert-resolution-webhook"];
+ /**
+ * Format: date-time
+ * @description The time that the alert was resolved in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.
+ */
+ resolved_at?: string | null;
+ resolved_by?: components["schemas"]["nullable-simple-user"];
+ /** @description An optional comment to resolve an alert. */
+ resolution_comment?: string | null;
+ /** @description The type of secret that secret scanning detected. */
+ secret_type?: string;
+ /**
+ * @description The token status as of the latest validity check.
+ * @enum {string}
+ */
+ validity?: "active" | "inactive" | "unknown";
+ /** @description Whether push protection was bypassed for the detected secret. */
+ push_protection_bypassed?: boolean | null;
+ push_protection_bypassed_by?: components["schemas"]["nullable-simple-user"];
+ /**
+ * Format: date-time
+ * @description The time that push protection was bypassed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.
+ */
+ push_protection_bypassed_at?: string | null;
+ };
+ /** @description The details of the security advisory, including summary, description, and severity. */
+ webhooks_security_advisory: {
+ cvss: {
+ score: number;
+ vector_string: string | null;
+ };
+ cwes: {
+ cwe_id: string;
+ name: string;
+ }[];
+ description: string;
+ ghsa_id: string;
+ identifiers: {
+ type: string;
+ value: string;
+ }[];
+ published_at: string;
+ references: {
+ /** Format: uri */
+ url: string;
+ }[];
+ severity: string;
+ summary: string;
+ updated_at: string;
+ vulnerabilities: {
+ first_patched_version: {
+ identifier: string;
+ } | null;
+ package: {
+ ecosystem: string;
+ name: string;
+ };
+ severity: string;
+ vulnerable_version_range: string;
+ }[];
+ withdrawn_at: string | null;
+ };
+ webhooks_sponsorship: {
+ created_at: string;
+ maintainer?: {
+ avatar_url?: string;
+ events_url?: string;
+ followers_url?: string;
+ following_url?: string;
+ gists_url?: string;
+ gravatar_id?: string;
+ html_url?: string;
+ id?: number;
+ login?: string;
+ node_id?: string;
+ organizations_url?: string;
+ received_events_url?: string;
+ repos_url?: string;
+ site_admin?: boolean;
+ starred_url?: string;
+ subscriptions_url?: string;
+ type?: string;
+ url?: string;
+ };
+ node_id: string;
+ privacy_level: string;
+ /** User */
+ sponsor: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** User */
+ sponsorable: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * Sponsorship Tier
+ * @description The `tier_changed` and `pending_tier_change` will include the original tier before the change or pending change. For more information, see the pending tier change payload.
+ */
+ tier: {
+ created_at: string;
+ description: string;
+ is_custom_ammount?: boolean;
+ is_custom_amount?: boolean;
+ is_one_time: boolean;
+ monthly_price_in_cents: number;
+ monthly_price_in_dollars: number;
+ name: string;
+ node_id: string;
+ };
+ };
+ /** @description The `pending_cancellation` and `pending_tier_change` event types will include the date the cancellation or tier change will take effect. */
+ webhooks_effective_date: string;
+ webhooks_changes_8: {
+ tier: {
+ /**
+ * Sponsorship Tier
+ * @description The `tier_changed` and `pending_tier_change` will include the original tier before the change or pending change. For more information, see the pending tier change payload.
+ */
+ from: {
+ created_at: string;
+ description: string;
+ is_custom_ammount?: boolean;
+ is_custom_amount?: boolean;
+ is_one_time: boolean;
+ monthly_price_in_cents: number;
+ monthly_price_in_dollars: number;
+ name: string;
+ node_id: string;
+ };
+ };
+ };
+ /**
+ * Team
+ * @description Groups of organization members that gives permissions on specified repositories.
+ */
+ webhooks_team_1: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /**
+ * @description Whether team members will receive notifications when their team is @mentioned
+ * @enum {string}
+ */
+ notification_setting:
+ | "notifications_enabled"
+ | "notifications_disabled";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /**
+ * @description Whether team members will receive notifications when their team is @mentioned
+ * @enum {string}
+ */
+ notification_setting?: "notifications_enabled" | "notifications_disabled";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ };
+ /** branch protection configuration disabled event */
+ "webhook-branch-protection-configuration-disabled": {
+ /** @enum {string} */
+ action: "disabled";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** branch protection configuration enabled event */
+ "webhook-branch-protection-configuration-enabled": {
+ /** @enum {string} */
+ action: "enabled";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** branch protection rule created event */
+ "webhook-branch-protection-rule-created": {
+ /** @enum {string} */
+ action: "created";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ rule: components["schemas"]["webhooks_rule"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** branch protection rule deleted event */
+ "webhook-branch-protection-rule-deleted": {
+ /** @enum {string} */
+ action: "deleted";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ rule: components["schemas"]["webhooks_rule"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** branch protection rule edited event */
+ "webhook-branch-protection-rule-edited": {
+ /** @enum {string} */
+ action: "edited";
+ /** @description If the action was `edited`, the changes to the rule. */
+ changes?: {
+ admin_enforced?: {
+ from: boolean | null;
+ };
+ authorized_actor_names?: {
+ from: string[];
+ };
+ authorized_actors_only?: {
+ from: boolean | null;
+ };
+ authorized_dismissal_actors_only?: {
+ from: boolean | null;
+ };
+ linear_history_requirement_enforcement_level?: {
+ /** @enum {string} */
+ from: "off" | "non_admins" | "everyone";
+ };
+ required_status_checks?: {
+ from: string[];
+ };
+ required_status_checks_enforcement_level?: {
+ /** @enum {string} */
+ from: "off" | "non_admins" | "everyone";
+ };
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ rule: components["schemas"]["webhooks_rule"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** Check Run Completed Event */
+ "webhook-check-run-completed": {
+ /** @enum {string} */
+ action?: "completed";
+ check_run: components["schemas"]["check-run-with-simple-check-suite"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /**
+ * Check Run Completed Event
+ * @description The check_run.completed webhook encoded with URL encoding
+ */
+ "webhook-check-run-completed-form-encoded": {
+ /** @description A URL-encoded string of the check_run.completed JSON payload. The decoded payload is a JSON object. */
+ payload: string;
+ };
+ /** Check Run Created Event */
+ "webhook-check-run-created": {
+ /** @enum {string} */
+ action?: "created";
+ check_run: components["schemas"]["check-run-with-simple-check-suite"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /**
+ * Check Run Created Event
+ * @description The check_run.created webhook encoded with URL encoding
+ */
+ "webhook-check-run-created-form-encoded": {
+ /** @description A URL-encoded string of the check_run.created JSON payload. The decoded payload is a JSON object. */
+ payload: string;
+ };
+ /** Check Run Requested Action Event */
+ "webhook-check-run-requested-action": {
+ /** @enum {string} */
+ action: "requested_action";
+ check_run: components["schemas"]["check-run-with-simple-check-suite"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ /** @description The action requested by the user. */
+ requested_action?: {
+ /** @description The integrator reference of the action requested by the user. */
+ identifier?: string;
+ };
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /**
+ * Check Run Requested Action Event
+ * @description The check_run.requested_action webhook encoded with URL encoding
+ */
+ "webhook-check-run-requested-action-form-encoded": {
+ /** @description A URL-encoded string of the check_run.requested_action JSON payload. The decoded payload is a JSON object. */
+ payload: string;
+ };
+ /** Check Run Re-Requested Event */
+ "webhook-check-run-rerequested": {
+ /** @enum {string} */
+ action?: "rerequested";
+ check_run: components["schemas"]["check-run-with-simple-check-suite"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /**
+ * Check Run Re-Requested Event
+ * @description The check_run.rerequested webhook encoded with URL encoding
+ */
+ "webhook-check-run-rerequested-form-encoded": {
+ /** @description A URL-encoded string of the check_run.rerequested JSON payload. The decoded payload is a JSON object. */
+ payload: string;
+ };
+ /** check_suite completed event */
+ "webhook-check-suite-completed": {
+ /** @enum {string} */
+ action: "completed";
+ /** @description The [check_suite](https://docs.github.com/rest/checks/suites#get-a-check-suite). */
+ check_suite: {
+ after: string | null;
+ /**
+ * App
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ app: {
+ /** Format: date-time */
+ created_at: string | null;
+ description: string | null;
+ /** @description The list of events for the GitHub app */
+ events?: (
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "content_reference"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_review"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_dispatch"
+ | "secret_scanning_alert"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_dispatch"
+ | "workflow_run"
+ | "merge_group"
+ | "pull_request_review_thread"
+ | "workflow_job"
+ | "merge_queue_entry"
+ | "security_and_analysis"
+ | "projects_v2_item"
+ | "secret_scanning_alert_location"
+ )[];
+ /** Format: uri */
+ external_url: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the GitHub app */
+ id: number | null;
+ /** @description The name of the GitHub app */
+ name: string;
+ node_id: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The set of permissions for the GitHub app */
+ permissions?: {
+ /** @enum {string} */
+ actions?: "read" | "write";
+ /** @enum {string} */
+ administration?: "read" | "write";
+ /** @enum {string} */
+ checks?: "read" | "write";
+ /** @enum {string} */
+ content_references?: "read" | "write";
+ /** @enum {string} */
+ contents?: "read" | "write";
+ /** @enum {string} */
+ deployments?: "read" | "write";
+ /** @enum {string} */
+ discussions?: "read" | "write";
+ /** @enum {string} */
+ emails?: "read" | "write";
+ /** @enum {string} */
+ environments?: "read" | "write";
+ /** @enum {string} */
+ issues?: "read" | "write";
+ /** @enum {string} */
+ keys?: "read" | "write";
+ /** @enum {string} */
+ members?: "read" | "write";
+ /** @enum {string} */
+ metadata?: "read" | "write";
+ /** @enum {string} */
+ organization_administration?: "read" | "write";
+ /** @enum {string} */
+ organization_hooks?: "read" | "write";
+ /** @enum {string} */
+ organization_packages?: "read" | "write";
+ /** @enum {string} */
+ organization_plan?: "read" | "write";
+ /** @enum {string} */
+ organization_projects?: "read" | "write" | "admin";
+ /** @enum {string} */
+ organization_secrets?: "read" | "write";
+ /** @enum {string} */
+ organization_self_hosted_runners?: "read" | "write";
+ /** @enum {string} */
+ organization_user_blocking?: "read" | "write";
+ /** @enum {string} */
+ packages?: "read" | "write";
+ /** @enum {string} */
+ pages?: "read" | "write";
+ /** @enum {string} */
+ pull_requests?: "read" | "write";
+ /** @enum {string} */
+ repository_hooks?: "read" | "write";
+ /** @enum {string} */
+ repository_projects?: "read" | "write" | "admin";
+ /** @enum {string} */
+ secret_scanning_alerts?: "read" | "write";
+ /** @enum {string} */
+ secrets?: "read" | "write";
+ /** @enum {string} */
+ security_events?: "read" | "write";
+ /** @enum {string} */
+ security_scanning_alert?: "read" | "write";
+ /** @enum {string} */
+ single_file?: "read" | "write";
+ /** @enum {string} */
+ statuses?: "read" | "write";
+ /** @enum {string} */
+ team_discussions?: "read" | "write";
+ /** @enum {string} */
+ vulnerability_alerts?: "read" | "write";
+ /** @enum {string} */
+ workflows?: "read" | "write";
+ };
+ /** @description The slug name of the GitHub app */
+ slug?: string;
+ /** Format: date-time */
+ updated_at: string | null;
+ };
+ before: string | null;
+ /** Format: uri */
+ check_runs_url: string;
+ /**
+ * @description The summary conclusion for all check runs that are part of the check suite. This value will be `null` until the check run has `completed`.
+ * @enum {string|null}
+ */
+ conclusion:
+ | "success"
+ | "failure"
+ | "neutral"
+ | "cancelled"
+ | "timed_out"
+ | "action_required"
+ | "stale"
+ | null
+ | "skipped"
+ | "startup_failure";
+ /** Format: date-time */
+ created_at: string;
+ /** @description The head branch name the changes are on. */
+ head_branch: string | null;
+ /** SimpleCommit */
+ head_commit: {
+ /**
+ * Committer
+ * @description Metaproperties for Git author/committer information.
+ */
+ author: {
+ /** Format: date-time */
+ date?: string;
+ /** Format: email */
+ email: string | null;
+ /** @description The git author's name. */
+ name: string;
+ username?: string;
+ };
+ /**
+ * Committer
+ * @description Metaproperties for Git author/committer information.
+ */
+ committer: {
+ /** Format: date-time */
+ date?: string;
+ /** Format: email */
+ email: string | null;
+ /** @description The git author's name. */
+ name: string;
+ username?: string;
+ };
+ id: string;
+ message: string;
+ timestamp: string;
+ tree_id: string;
+ };
+ /** @description The SHA of the head commit that is being checked. */
+ head_sha: string;
+ id: number;
+ latest_check_runs_count: number;
+ node_id: string;
+ /** @description An array of pull requests that match this check suite. A pull request matches a check suite if they have the same `head_sha` and `head_branch`. When the check suite's `head_branch` is in a forked repository it will be `null` and the `pull_requests` array will be empty. */
+ pull_requests: {
+ base: {
+ ref: string;
+ /** Repo Ref */
+ repo: {
+ id: number;
+ name: string;
+ /** Format: uri */
+ url: string;
+ };
+ sha: string;
+ };
+ head: {
+ ref: string;
+ /** Repo Ref */
+ repo: {
+ id: number;
+ name: string;
+ /** Format: uri */
+ url: string;
+ };
+ sha: string;
+ };
+ id: number;
+ number: number;
+ /** Format: uri */
+ url: string;
+ }[];
+ rerequestable?: boolean;
+ runs_rerequestable?: boolean;
+ /**
+ * @description The summary status for all check runs that are part of the check suite. Can be `requested`, `in_progress`, or `completed`.
+ * @enum {string|null}
+ */
+ status:
+ | "requested"
+ | "in_progress"
+ | "completed"
+ | "queued"
+ | null
+ | "pending";
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL that points to the check suite API resource.
+ */
+ url: string;
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** check_suite requested event */
+ "webhook-check-suite-requested": {
+ /** @enum {string} */
+ action: "requested";
+ /** @description The [check_suite](https://docs.github.com/rest/checks/suites#get-a-check-suite). */
+ check_suite: {
+ after: string | null;
+ /**
+ * App
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ app: {
+ /** Format: date-time */
+ created_at: string | null;
+ description: string | null;
+ /** @description The list of events for the GitHub app */
+ events?: (
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "content_reference"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_review"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_dispatch"
+ | "secret_scanning_alert"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_dispatch"
+ | "workflow_run"
+ | "pull_request_review_thread"
+ | "workflow_job"
+ | "merge_queue_entry"
+ | "security_and_analysis"
+ | "secret_scanning_alert_location"
+ | "projects_v2_item"
+ | "merge_group"
+ | "repository_import"
+ )[];
+ /** Format: uri */
+ external_url: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the GitHub app */
+ id: number | null;
+ /** @description The name of the GitHub app */
+ name: string;
+ node_id: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The set of permissions for the GitHub app */
+ permissions?: {
+ /** @enum {string} */
+ actions?: "read" | "write";
+ /** @enum {string} */
+ administration?: "read" | "write";
+ /** @enum {string} */
+ checks?: "read" | "write";
+ /** @enum {string} */
+ content_references?: "read" | "write";
+ /** @enum {string} */
+ contents?: "read" | "write";
+ /** @enum {string} */
+ deployments?: "read" | "write";
+ /** @enum {string} */
+ discussions?: "read" | "write";
+ /** @enum {string} */
+ emails?: "read" | "write";
+ /** @enum {string} */
+ environments?: "read" | "write";
+ /** @enum {string} */
+ issues?: "read" | "write";
+ /** @enum {string} */
+ keys?: "read" | "write";
+ /** @enum {string} */
+ members?: "read" | "write";
+ /** @enum {string} */
+ metadata?: "read" | "write";
+ /** @enum {string} */
+ organization_administration?: "read" | "write";
+ /** @enum {string} */
+ organization_hooks?: "read" | "write";
+ /** @enum {string} */
+ organization_packages?: "read" | "write";
+ /** @enum {string} */
+ organization_plan?: "read" | "write";
+ /** @enum {string} */
+ organization_projects?: "read" | "write" | "admin";
+ /** @enum {string} */
+ organization_secrets?: "read" | "write";
+ /** @enum {string} */
+ organization_self_hosted_runners?: "read" | "write";
+ /** @enum {string} */
+ organization_user_blocking?: "read" | "write";
+ /** @enum {string} */
+ packages?: "read" | "write";
+ /** @enum {string} */
+ pages?: "read" | "write";
+ /** @enum {string} */
+ pull_requests?: "read" | "write";
+ /** @enum {string} */
+ repository_hooks?: "read" | "write";
+ /** @enum {string} */
+ repository_projects?: "read" | "write" | "admin";
+ /** @enum {string} */
+ secret_scanning_alerts?: "read" | "write";
+ /** @enum {string} */
+ secrets?: "read" | "write";
+ /** @enum {string} */
+ security_events?: "read" | "write";
+ /** @enum {string} */
+ security_scanning_alert?: "read" | "write";
+ /** @enum {string} */
+ single_file?: "read" | "write";
+ /** @enum {string} */
+ statuses?: "read" | "write";
+ /** @enum {string} */
+ team_discussions?: "read" | "write";
+ /** @enum {string} */
+ vulnerability_alerts?: "read" | "write";
+ /** @enum {string} */
+ workflows?: "read" | "write";
+ };
+ /** @description The slug name of the GitHub app */
+ slug?: string;
+ /** Format: date-time */
+ updated_at: string | null;
+ };
+ before: string | null;
+ /** Format: uri */
+ check_runs_url: string;
+ /**
+ * @description The summary conclusion for all check runs that are part of the check suite. This value will be `null` until the check run has completed.
+ * @enum {string|null}
+ */
+ conclusion:
+ | "success"
+ | "failure"
+ | "neutral"
+ | "cancelled"
+ | "timed_out"
+ | "action_required"
+ | "stale"
+ | null
+ | "skipped";
+ /** Format: date-time */
+ created_at: string;
+ /** @description The head branch name the changes are on. */
+ head_branch: string | null;
+ /** SimpleCommit */
+ head_commit: {
+ /**
+ * Committer
+ * @description Metaproperties for Git author/committer information.
+ */
+ author: {
+ /** Format: date-time */
+ date?: string;
+ /** Format: email */
+ email: string | null;
+ /** @description The git author's name. */
+ name: string;
+ username?: string;
+ };
+ /**
+ * Committer
+ * @description Metaproperties for Git author/committer information.
+ */
+ committer: {
+ /** Format: date-time */
+ date?: string;
+ /** Format: email */
+ email: string | null;
+ /** @description The git author's name. */
+ name: string;
+ username?: string;
+ };
+ id: string;
+ message: string;
+ timestamp: string;
+ tree_id: string;
+ };
+ /** @description The SHA of the head commit that is being checked. */
+ head_sha: string;
+ id: number;
+ latest_check_runs_count: number;
+ node_id: string;
+ /** @description An array of pull requests that match this check suite. A pull request matches a check suite if they have the same `head_sha` and `head_branch`. When the check suite's `head_branch` is in a forked repository it will be `null` and the `pull_requests` array will be empty. */
+ pull_requests: {
+ base: {
+ ref: string;
+ /** Repo Ref */
+ repo: {
+ id: number;
+ name: string;
+ /** Format: uri */
+ url: string;
+ };
+ sha: string;
+ };
+ head: {
+ ref: string;
+ /** Repo Ref */
+ repo: {
+ id: number;
+ name: string;
+ /** Format: uri */
+ url: string;
+ };
+ sha: string;
+ };
+ id: number;
+ number: number;
+ /** Format: uri */
+ url: string;
+ }[];
+ rerequestable?: boolean;
+ runs_rerequestable?: boolean;
+ /**
+ * @description The summary status for all check runs that are part of the check suite. Can be `requested`, `in_progress`, or `completed`.
+ * @enum {string|null}
+ */
+ status: "requested" | "in_progress" | "completed" | "queued" | null;
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL that points to the check suite API resource.
+ */
+ url: string;
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** check_suite rerequested event */
+ "webhook-check-suite-rerequested": {
+ /** @enum {string} */
+ action: "rerequested";
+ /** @description The [check_suite](https://docs.github.com/rest/checks/suites#get-a-check-suite). */
+ check_suite: {
+ after: string | null;
+ /**
+ * App
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ app: {
+ /** Format: date-time */
+ created_at: string | null;
+ description: string | null;
+ /** @description The list of events for the GitHub app */
+ events?: (
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "content_reference"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_review"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_dispatch"
+ | "secret_scanning_alert"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_dispatch"
+ | "workflow_run"
+ | "pull_request_review_thread"
+ | "merge_queue_entry"
+ | "workflow_job"
+ )[];
+ /** Format: uri */
+ external_url: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the GitHub app */
+ id: number | null;
+ /** @description The name of the GitHub app */
+ name: string;
+ node_id: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The set of permissions for the GitHub app */
+ permissions?: {
+ /** @enum {string} */
+ actions?: "read" | "write";
+ /** @enum {string} */
+ administration?: "read" | "write";
+ /** @enum {string} */
+ checks?: "read" | "write";
+ /** @enum {string} */
+ content_references?: "read" | "write";
+ /** @enum {string} */
+ contents?: "read" | "write";
+ /** @enum {string} */
+ deployments?: "read" | "write";
+ /** @enum {string} */
+ discussions?: "read" | "write";
+ /** @enum {string} */
+ emails?: "read" | "write";
+ /** @enum {string} */
+ environments?: "read" | "write";
+ /** @enum {string} */
+ issues?: "read" | "write";
+ /** @enum {string} */
+ keys?: "read" | "write";
+ /** @enum {string} */
+ members?: "read" | "write";
+ /** @enum {string} */
+ metadata?: "read" | "write";
+ /** @enum {string} */
+ organization_administration?: "read" | "write";
+ /** @enum {string} */
+ organization_hooks?: "read" | "write";
+ /** @enum {string} */
+ organization_packages?: "read" | "write";
+ /** @enum {string} */
+ organization_plan?: "read" | "write";
+ /** @enum {string} */
+ organization_projects?: "read" | "write" | "admin";
+ /** @enum {string} */
+ organization_secrets?: "read" | "write";
+ /** @enum {string} */
+ organization_self_hosted_runners?: "read" | "write";
+ /** @enum {string} */
+ organization_user_blocking?: "read" | "write";
+ /** @enum {string} */
+ packages?: "read" | "write";
+ /** @enum {string} */
+ pages?: "read" | "write";
+ /** @enum {string} */
+ pull_requests?: "read" | "write";
+ /** @enum {string} */
+ repository_hooks?: "read" | "write";
+ /** @enum {string} */
+ repository_projects?: "read" | "write" | "admin";
+ /** @enum {string} */
+ secret_scanning_alerts?: "read" | "write";
+ /** @enum {string} */
+ secrets?: "read" | "write";
+ /** @enum {string} */
+ security_events?: "read" | "write";
+ /** @enum {string} */
+ security_scanning_alert?: "read" | "write";
+ /** @enum {string} */
+ single_file?: "read" | "write";
+ /** @enum {string} */
+ statuses?: "read" | "write";
+ /** @enum {string} */
+ team_discussions?: "read" | "write";
+ /** @enum {string} */
+ vulnerability_alerts?: "read" | "write";
+ /** @enum {string} */
+ workflows?: "read" | "write";
+ };
+ /** @description The slug name of the GitHub app */
+ slug?: string;
+ /** Format: date-time */
+ updated_at: string | null;
+ };
+ before: string | null;
+ /** Format: uri */
+ check_runs_url: string;
+ /**
+ * @description The summary conclusion for all check runs that are part of the check suite. This value will be `null` until the check run has completed.
+ * @enum {string|null}
+ */
+ conclusion:
+ | "success"
+ | "failure"
+ | "neutral"
+ | "cancelled"
+ | "timed_out"
+ | "action_required"
+ | "stale"
+ | null;
+ /** Format: date-time */
+ created_at: string;
+ /** @description The head branch name the changes are on. */
+ head_branch: string | null;
+ /** SimpleCommit */
+ head_commit: {
+ /**
+ * Committer
+ * @description Metaproperties for Git author/committer information.
+ */
+ author: {
+ /** Format: date-time */
+ date?: string;
+ /** Format: email */
+ email: string | null;
+ /** @description The git author's name. */
+ name: string;
+ username?: string;
+ };
+ /**
+ * Committer
+ * @description Metaproperties for Git author/committer information.
+ */
+ committer: {
+ /** Format: date-time */
+ date?: string;
+ /** Format: email */
+ email: string | null;
+ /** @description The git author's name. */
+ name: string;
+ username?: string;
+ };
+ id: string;
+ message: string;
+ timestamp: string;
+ tree_id: string;
+ };
+ /** @description The SHA of the head commit that is being checked. */
+ head_sha: string;
+ id: number;
+ latest_check_runs_count: number;
+ node_id: string;
+ /** @description An array of pull requests that match this check suite. A pull request matches a check suite if they have the same `head_sha` and `head_branch`. When the check suite's `head_branch` is in a forked repository it will be `null` and the `pull_requests` array will be empty. */
+ pull_requests: {
+ base: {
+ ref: string;
+ /** Repo Ref */
+ repo: {
+ id: number;
+ name: string;
+ /** Format: uri */
+ url: string;
+ };
+ sha: string;
+ };
+ head: {
+ ref: string;
+ /** Repo Ref */
+ repo: {
+ id: number;
+ name: string;
+ /** Format: uri */
+ url: string;
+ };
+ sha: string;
+ };
+ id: number;
+ number: number;
+ /** Format: uri */
+ url: string;
+ }[];
+ rerequestable?: boolean;
+ runs_rerequestable?: boolean;
+ /**
+ * @description The summary status for all check runs that are part of the check suite. Can be `requested`, `in_progress`, or `completed`.
+ * @enum {string|null}
+ */
+ status: "requested" | "in_progress" | "completed" | "queued" | null;
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL that points to the check suite API resource.
+ */
+ url: string;
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** code_scanning_alert appeared_in_branch event */
+ "webhook-code-scanning-alert-appeared-in-branch": {
+ /** @enum {string} */
+ action: "appeared_in_branch";
+ /** @description The code scanning alert involved in the event. */
+ alert: {
+ /**
+ * Format: date-time
+ * @description The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ.`
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @description The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.
+ */
+ dismissed_at: string | null;
+ /** User */
+ dismissed_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The reason for dismissing or closing the alert.
+ * @enum {string|null}
+ */
+ dismissed_reason:
+ | "false positive"
+ | "won't fix"
+ | "used in tests"
+ | null;
+ /**
+ * Format: uri
+ * @description The GitHub URL of the alert resource.
+ */
+ html_url: string;
+ /** Alert Instance */
+ most_recent_instance?: {
+ /** @description Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. */
+ analysis_key: string;
+ /** @description Identifies the configuration under which the analysis was executed. */
+ category?: string;
+ classifications?: string[];
+ commit_sha?: string;
+ /** @description Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. */
+ environment: string;
+ location?: {
+ end_column?: number;
+ end_line?: number;
+ path?: string;
+ start_column?: number;
+ start_line?: number;
+ };
+ message?: {
+ text?: string;
+ };
+ /** @description The full Git reference, formatted as `refs/heads/`. */
+ ref: string;
+ /**
+ * @description State of a code scanning alert.
+ * @enum {string}
+ */
+ state: "open" | "dismissed" | "fixed";
+ } | null;
+ /** @description The code scanning alert number. */
+ number: number;
+ rule: {
+ /** @description A short description of the rule used to detect the alert. */
+ description: string;
+ /** @description A unique identifier for the rule used to detect the alert. */
+ id: string;
+ /**
+ * @description The severity of the alert.
+ * @enum {string|null}
+ */
+ severity: "none" | "note" | "warning" | "error" | null;
+ };
+ /**
+ * @description State of a code scanning alert.
+ * @enum {string}
+ */
+ state: "open" | "dismissed" | "fixed";
+ tool: {
+ /** @description The name of the tool used to generate the code scanning analysis alert. */
+ name: string;
+ /** @description The version of the tool used to detect the alert. */
+ version: string | null;
+ };
+ /** Format: uri */
+ url: string;
+ };
+ commit_oid: components["schemas"]["webhooks_code_scanning_commit_oid"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ ref: components["schemas"]["webhooks_code_scanning_ref"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** code_scanning_alert closed_by_user event */
+ "webhook-code-scanning-alert-closed-by-user": {
+ /** @enum {string} */
+ action: "closed_by_user";
+ /** @description The code scanning alert involved in the event. */
+ alert: {
+ /**
+ * Format: date-time
+ * @description The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ.`
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @description The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.
+ */
+ dismissed_at: string;
+ /** User */
+ dismissed_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The reason for dismissing or closing the alert.
+ * @enum {string|null}
+ */
+ dismissed_reason:
+ | "false positive"
+ | "won't fix"
+ | "used in tests"
+ | null;
+ /**
+ * Format: uri
+ * @description The GitHub URL of the alert resource.
+ */
+ html_url: string;
+ /** Alert Instance */
+ most_recent_instance?: {
+ /** @description Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. */
+ analysis_key: string;
+ /** @description Identifies the configuration under which the analysis was executed. */
+ category?: string;
+ classifications?: string[];
+ commit_sha?: string;
+ /** @description Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. */
+ environment: string;
+ location?: {
+ end_column?: number;
+ end_line?: number;
+ path?: string;
+ start_column?: number;
+ start_line?: number;
+ };
+ message?: {
+ text?: string;
+ };
+ /** @description The full Git reference, formatted as `refs/heads/`. */
+ ref: string;
+ /**
+ * @description State of a code scanning alert.
+ * @enum {string}
+ */
+ state: "open" | "dismissed" | "fixed";
+ } | null;
+ /** @description The code scanning alert number. */
+ number: number;
+ rule: {
+ /** @description A short description of the rule used to detect the alert. */
+ description: string;
+ full_description?: string;
+ help?: string | null;
+ /** @description A link to the documentation for the rule used to detect the alert. */
+ help_uri?: string | null;
+ /** @description A unique identifier for the rule used to detect the alert. */
+ id: string;
+ name?: string;
+ /**
+ * @description The severity of the alert.
+ * @enum {string|null}
+ */
+ severity: "none" | "note" | "warning" | "error" | null;
+ tags?: string[] | null;
+ };
+ /**
+ * @description State of a code scanning alert.
+ * @enum {string}
+ */
+ state: "dismissed" | "fixed";
+ tool: {
+ guid?: string | null;
+ /** @description The name of the tool used to generate the code scanning analysis alert. */
+ name: string;
+ /** @description The version of the tool used to detect the alert. */
+ version: string | null;
+ };
+ /** Format: uri */
+ url: string;
+ };
+ commit_oid: components["schemas"]["webhooks_code_scanning_commit_oid"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ ref: components["schemas"]["webhooks_code_scanning_ref"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** code_scanning_alert created event */
+ "webhook-code-scanning-alert-created": {
+ /** @enum {string} */
+ action: "created";
+ /** @description The code scanning alert involved in the event. */
+ alert: {
+ /**
+ * Format: date-time
+ * @description The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ.`
+ */
+ created_at: string | null;
+ /** @description The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`. */
+ dismissed_at: unknown;
+ dismissed_by: unknown;
+ dismissed_comment?: components["schemas"]["code-scanning-alert-dismissed-comment"];
+ /** @description The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`. */
+ dismissed_reason: unknown;
+ fixed_at?: unknown;
+ /**
+ * Format: uri
+ * @description The GitHub URL of the alert resource.
+ */
+ html_url: string;
+ instances_url?: string;
+ /** Alert Instance */
+ most_recent_instance?: {
+ /** @description Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. */
+ analysis_key: string;
+ /** @description Identifies the configuration under which the analysis was executed. */
+ category?: string;
+ classifications?: string[];
+ commit_sha?: string;
+ /** @description Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. */
+ environment: string;
+ location?: {
+ end_column?: number;
+ end_line?: number;
+ path?: string;
+ start_column?: number;
+ start_line?: number;
+ };
+ message?: {
+ text?: string;
+ };
+ /** @description The full Git reference, formatted as `refs/heads/`. */
+ ref: string;
+ /**
+ * @description State of a code scanning alert.
+ * @enum {string}
+ */
+ state: "open" | "dismissed" | "fixed";
+ } | null;
+ /** @description The code scanning alert number. */
+ number: number;
+ rule: {
+ /** @description A short description of the rule used to detect the alert. */
+ description: string;
+ full_description?: string;
+ help?: string | null;
+ /** @description A link to the documentation for the rule used to detect the alert. */
+ help_uri?: string | null;
+ /** @description A unique identifier for the rule used to detect the alert. */
+ id: string;
+ name?: string;
+ /**
+ * @description The severity of the alert.
+ * @enum {string|null}
+ */
+ severity: "none" | "note" | "warning" | "error" | null;
+ tags?: string[] | null;
+ };
+ /**
+ * @description State of a code scanning alert.
+ * @enum {string}
+ */
+ state: "open" | "dismissed";
+ tool: {
+ guid?: string | null;
+ /** @description The name of the tool used to generate the code scanning analysis alert. */
+ name: string;
+ /** @description The version of the tool used to detect the alert. */
+ version: string | null;
+ } | null;
+ updated_at?: string | null;
+ /** Format: uri */
+ url: string;
+ };
+ commit_oid: components["schemas"]["webhooks_code_scanning_commit_oid"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ ref: components["schemas"]["webhooks_code_scanning_ref"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** code_scanning_alert fixed event */
+ "webhook-code-scanning-alert-fixed": {
+ /** @enum {string} */
+ action: "fixed";
+ /** @description The code scanning alert involved in the event. */
+ alert: {
+ /**
+ * Format: date-time
+ * @description The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ.`
+ */
+ created_at: string;
+ /**
+ * Format: date-time
+ * @description The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.
+ */
+ dismissed_at: string | null;
+ /** User */
+ dismissed_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The reason for dismissing or closing the alert.
+ * @enum {string|null}
+ */
+ dismissed_reason:
+ | "false positive"
+ | "won't fix"
+ | "used in tests"
+ | null;
+ /**
+ * Format: uri
+ * @description The GitHub URL of the alert resource.
+ */
+ html_url: string;
+ /** Format: uri */
+ instances_url?: string;
+ /** Alert Instance */
+ most_recent_instance?: {
+ /** @description Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. */
+ analysis_key: string;
+ /** @description Identifies the configuration under which the analysis was executed. */
+ category?: string;
+ classifications?: string[];
+ commit_sha?: string;
+ /** @description Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. */
+ environment: string;
+ location?: {
+ end_column?: number;
+ end_line?: number;
+ path?: string;
+ start_column?: number;
+ start_line?: number;
+ };
+ message?: {
+ text?: string;
+ };
+ /** @description The full Git reference, formatted as `refs/heads/`. */
+ ref: string;
+ /**
+ * @description State of a code scanning alert.
+ * @enum {string}
+ */
+ state: "open" | "dismissed" | "fixed";
+ } | null;
+ /** @description The code scanning alert number. */
+ number: number;
+ rule: {
+ /** @description A short description of the rule used to detect the alert. */
+ description: string;
+ full_description?: string;
+ help?: string | null;
+ /** @description A link to the documentation for the rule used to detect the alert. */
+ help_uri?: string | null;
+ /** @description A unique identifier for the rule used to detect the alert. */
+ id: string;
+ name?: string;
+ /**
+ * @description The severity of the alert.
+ * @enum {string|null}
+ */
+ severity: "none" | "note" | "warning" | "error" | null;
+ tags?: string[] | null;
+ };
+ /**
+ * @description State of a code scanning alert.
+ * @enum {string}
+ */
+ state: "fixed";
+ tool: {
+ guid?: string | null;
+ /** @description The name of the tool used to generate the code scanning analysis alert. */
+ name: string;
+ /** @description The version of the tool used to detect the alert. */
+ version: string | null;
+ };
+ /** Format: uri */
+ url: string;
+ };
+ commit_oid: components["schemas"]["webhooks_code_scanning_commit_oid"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ ref: components["schemas"]["webhooks_code_scanning_ref"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** code_scanning_alert reopened event */
+ "webhook-code-scanning-alert-reopened": {
+ /** @enum {string} */
+ action: "reopened";
+ /** @description The code scanning alert involved in the event. */
+ alert: {
+ /**
+ * Format: date-time
+ * @description The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ.`
+ */
+ created_at: string;
+ /** @description The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`. */
+ dismissed_at: string | null;
+ dismissed_by: Record | null;
+ /** @description The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`. */
+ dismissed_reason: string | null;
+ /**
+ * Format: uri
+ * @description The GitHub URL of the alert resource.
+ */
+ html_url: string;
+ /** Alert Instance */
+ most_recent_instance?: {
+ /** @description Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. */
+ analysis_key: string;
+ /** @description Identifies the configuration under which the analysis was executed. */
+ category?: string;
+ classifications?: string[];
+ commit_sha?: string;
+ /** @description Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. */
+ environment: string;
+ location?: {
+ end_column?: number;
+ end_line?: number;
+ path?: string;
+ start_column?: number;
+ start_line?: number;
+ };
+ message?: {
+ text?: string;
+ };
+ /** @description The full Git reference, formatted as `refs/heads/`. */
+ ref: string;
+ /**
+ * @description State of a code scanning alert.
+ * @enum {string}
+ */
+ state: "open" | "dismissed" | "fixed";
+ } | null;
+ /** @description The code scanning alert number. */
+ number: number;
+ rule: {
+ /** @description A short description of the rule used to detect the alert. */
+ description: string;
+ full_description?: string;
+ help?: string | null;
+ /** @description A link to the documentation for the rule used to detect the alert. */
+ help_uri?: string | null;
+ /** @description A unique identifier for the rule used to detect the alert. */
+ id: string;
+ name?: string;
+ /**
+ * @description The severity of the alert.
+ * @enum {string|null}
+ */
+ severity: "none" | "note" | "warning" | "error" | null;
+ tags?: string[] | null;
+ };
+ /**
+ * @description State of a code scanning alert.
+ * @enum {string}
+ */
+ state: "open" | "dismissed" | "fixed";
+ tool: {
+ guid?: string | null;
+ /** @description The name of the tool used to generate the code scanning analysis alert. */
+ name: string;
+ /** @description The version of the tool used to detect the alert. */
+ version: string | null;
+ };
+ /** Format: uri */
+ url: string;
+ } | null;
+ /** @description The commit SHA of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. */
+ commit_oid: string | null;
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** @description The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. */
+ ref: string | null;
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** code_scanning_alert reopened_by_user event */
+ "webhook-code-scanning-alert-reopened-by-user": {
+ /** @enum {string} */
+ action: "reopened_by_user";
+ /** @description The code scanning alert involved in the event. */
+ alert: {
+ /**
+ * Format: date-time
+ * @description The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ.`
+ */
+ created_at: string;
+ /** @description The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`. */
+ dismissed_at: unknown;
+ dismissed_by: unknown;
+ /** @description The reason for dismissing or closing the alert. Can be one of: `false positive`, `won't fix`, and `used in tests`. */
+ dismissed_reason: unknown;
+ /**
+ * Format: uri
+ * @description The GitHub URL of the alert resource.
+ */
+ html_url: string;
+ /** Alert Instance */
+ most_recent_instance?: {
+ /** @description Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. */
+ analysis_key: string;
+ /** @description Identifies the configuration under which the analysis was executed. */
+ category?: string;
+ classifications?: string[];
+ commit_sha?: string;
+ /** @description Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. */
+ environment: string;
+ location?: {
+ end_column?: number;
+ end_line?: number;
+ path?: string;
+ start_column?: number;
+ start_line?: number;
+ };
+ message?: {
+ text?: string;
+ };
+ /** @description The full Git reference, formatted as `refs/heads/`. */
+ ref: string;
+ /**
+ * @description State of a code scanning alert.
+ * @enum {string}
+ */
+ state: "open" | "dismissed" | "fixed";
+ } | null;
+ /** @description The code scanning alert number. */
+ number: number;
+ rule: {
+ /** @description A short description of the rule used to detect the alert. */
+ description: string;
+ /** @description A unique identifier for the rule used to detect the alert. */
+ id: string;
+ /**
+ * @description The severity of the alert.
+ * @enum {string|null}
+ */
+ severity: "none" | "note" | "warning" | "error" | null;
+ };
+ /**
+ * @description State of a code scanning alert.
+ * @enum {string}
+ */
+ state: "open" | "fixed";
+ tool: {
+ /** @description The name of the tool used to generate the code scanning analysis alert. */
+ name: string;
+ /** @description The version of the tool used to detect the alert. */
+ version: string | null;
+ };
+ /** Format: uri */
+ url: string;
+ };
+ commit_oid: components["schemas"]["webhooks_code_scanning_commit_oid"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ ref: components["schemas"]["webhooks_code_scanning_ref"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** commit_comment created event */
+ "webhook-commit-comment-created": {
+ /**
+ * @description The action performed. Can be `created`.
+ * @enum {string}
+ */
+ action: "created";
+ /** @description The [commit comment](https://docs.github.com/rest/commits/comments#get-a-commit-comment) resource. */
+ comment: {
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description The text of the comment. */
+ body: string;
+ /** @description The SHA of the commit to which the comment applies. */
+ commit_id: string;
+ created_at: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description The ID of the commit comment. */
+ id: number;
+ /** @description The line of the blob to which the comment applies. The last line of the range for a multi-line comment */
+ line: number | null;
+ /** @description The node ID of the commit comment. */
+ node_id: string;
+ /** @description The relative path of the file to which the comment applies. */
+ path: string | null;
+ /** @description The line index in the diff to which the comment applies. */
+ position: number | null;
+ /** Reactions */
+ reactions?: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** create event */
+ "webhook-create": {
+ /** @description The repository's current description. */
+ description: string | null;
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ /** @description The name of the repository's default branch (usually `main`). */
+ master_branch: string;
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ pusher_type: components["schemas"]["webhooks_deploy_pusher_type"];
+ ref: components["schemas"]["webhooks_ref_0"];
+ /**
+ * @description The type of Git ref object created in the repository.
+ * @enum {string}
+ */
+ ref_type: "tag" | "branch";
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** custom property created event */
+ "webhook-custom-property-created": {
+ /** @enum {string} */
+ action: "created";
+ definition: components["schemas"]["org-custom-property"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ sender?: components["schemas"]["simple-user-webhooks"];
+ };
+ /** custom property deleted event */
+ "webhook-custom-property-deleted": {
+ /** @enum {string} */
+ action: "deleted";
+ definition: {
+ /** @description The name of the property that was deleted. */
+ property_name: string;
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ sender?: components["schemas"]["simple-user-webhooks"];
+ };
+ /** custom property updated event */
+ "webhook-custom-property-updated": {
+ /** @enum {string} */
+ action: "updated";
+ definition: components["schemas"]["org-custom-property"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ sender?: components["schemas"]["simple-user-webhooks"];
+ };
+ /** Custom property values updated event */
+ "webhook-custom-property-values-updated": {
+ /** @enum {string} */
+ action: "updated";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ repository: components["schemas"]["repository-webhooks"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ sender?: components["schemas"]["simple-user-webhooks"];
+ /** @description The new custom property values for the repository. */
+ new_property_values: components["schemas"]["custom-property-value"][];
+ /** @description The old custom property values for the repository. */
+ old_property_values: components["schemas"]["custom-property-value"][];
+ };
+ /** delete event */
+ "webhook-delete": {
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ pusher_type: components["schemas"]["webhooks_deploy_pusher_type"];
+ ref: components["schemas"]["webhooks_ref_0"];
+ /**
+ * @description The type of Git ref object deleted in the repository.
+ * @enum {string}
+ */
+ ref_type: "tag" | "branch";
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** Dependabot alert auto-dismissed event */
+ "webhook-dependabot-alert-auto-dismissed": {
+ /** @enum {string} */
+ action: "auto_dismissed";
+ alert: components["schemas"]["dependabot-alert"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** Dependabot alert auto-reopened event */
+ "webhook-dependabot-alert-auto-reopened": {
+ /** @enum {string} */
+ action: "auto_reopened";
+ alert: components["schemas"]["dependabot-alert"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** Dependabot alert created event */
+ "webhook-dependabot-alert-created": {
+ /** @enum {string} */
+ action: "created";
+ alert: components["schemas"]["dependabot-alert"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** Dependabot alert dismissed event */
+ "webhook-dependabot-alert-dismissed": {
+ /** @enum {string} */
+ action: "dismissed";
+ alert: components["schemas"]["dependabot-alert"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** Dependabot alert fixed event */
+ "webhook-dependabot-alert-fixed": {
+ /** @enum {string} */
+ action: "fixed";
+ alert: components["schemas"]["dependabot-alert"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** Dependabot alert reintroduced event */
+ "webhook-dependabot-alert-reintroduced": {
+ /** @enum {string} */
+ action: "reintroduced";
+ alert: components["schemas"]["dependabot-alert"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** Dependabot alert reopened event */
+ "webhook-dependabot-alert-reopened": {
+ /** @enum {string} */
+ action: "reopened";
+ alert: components["schemas"]["dependabot-alert"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** deploy_key created event */
+ "webhook-deploy-key-created": {
+ /** @enum {string} */
+ action: "created";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ key: components["schemas"]["webhooks_deploy_key"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** deploy_key deleted event */
+ "webhook-deploy-key-deleted": {
+ /** @enum {string} */
+ action: "deleted";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ key: components["schemas"]["webhooks_deploy_key"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** deployment created event */
+ "webhook-deployment-created": {
+ /** @enum {string} */
+ action: "created";
+ /**
+ * Deployment
+ * @description The [deployment](https://docs.github.com/rest/deployments/deployments#list-deployments).
+ */
+ deployment: {
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ environment: string;
+ id: number;
+ node_id: string;
+ original_environment: string;
+ payload: Record | string;
+ /**
+ * App
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ performed_via_github_app?: {
+ /** Format: date-time */
+ created_at: string | null;
+ description: string | null;
+ /** @description The list of events for the GitHub app */
+ events?: (
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "content_reference"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_review"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_dispatch"
+ | "secret_scanning_alert"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_dispatch"
+ | "workflow_run"
+ | "workflow_job"
+ | "pull_request_review_thread"
+ | "merge_queue_entry"
+ | "secret_scanning_alert_location"
+ | "merge_group"
+ )[];
+ /** Format: uri */
+ external_url: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the GitHub app */
+ id: number | null;
+ /** @description The name of the GitHub app */
+ name: string;
+ node_id: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The set of permissions for the GitHub app */
+ permissions?: {
+ /** @enum {string} */
+ actions?: "read" | "write";
+ /** @enum {string} */
+ administration?: "read" | "write";
+ /** @enum {string} */
+ checks?: "read" | "write";
+ /** @enum {string} */
+ content_references?: "read" | "write";
+ /** @enum {string} */
+ contents?: "read" | "write";
+ /** @enum {string} */
+ deployments?: "read" | "write";
+ /** @enum {string} */
+ discussions?: "read" | "write";
+ /** @enum {string} */
+ emails?: "read" | "write";
+ /** @enum {string} */
+ environments?: "read" | "write";
+ /** @enum {string} */
+ issues?: "read" | "write";
+ /** @enum {string} */
+ keys?: "read" | "write";
+ /** @enum {string} */
+ members?: "read" | "write";
+ /** @enum {string} */
+ metadata?: "read" | "write";
+ /** @enum {string} */
+ organization_administration?: "read" | "write";
+ /** @enum {string} */
+ organization_hooks?: "read" | "write";
+ /** @enum {string} */
+ organization_packages?: "read" | "write";
+ /** @enum {string} */
+ organization_plan?: "read" | "write";
+ /** @enum {string} */
+ organization_projects?: "read" | "write";
+ /** @enum {string} */
+ organization_secrets?: "read" | "write";
+ /** @enum {string} */
+ organization_self_hosted_runners?: "read" | "write";
+ /** @enum {string} */
+ organization_user_blocking?: "read" | "write";
+ /** @enum {string} */
+ packages?: "read" | "write";
+ /** @enum {string} */
+ pages?: "read" | "write";
+ /** @enum {string} */
+ pull_requests?: "read" | "write";
+ /** @enum {string} */
+ repository_hooks?: "read" | "write";
+ /** @enum {string} */
+ repository_projects?: "read" | "write";
+ /** @enum {string} */
+ secret_scanning_alerts?: "read" | "write";
+ /** @enum {string} */
+ secrets?: "read" | "write";
+ /** @enum {string} */
+ security_events?: "read" | "write";
+ /** @enum {string} */
+ security_scanning_alert?: "read" | "write";
+ /** @enum {string} */
+ single_file?: "read" | "write";
+ /** @enum {string} */
+ statuses?: "read" | "write";
+ /** @enum {string} */
+ team_discussions?: "read" | "write";
+ /** @enum {string} */
+ vulnerability_alerts?: "read" | "write";
+ /** @enum {string} */
+ workflows?: "read" | "write";
+ };
+ /** @description The slug name of the GitHub app */
+ slug?: string;
+ /** Format: date-time */
+ updated_at: string | null;
+ } | null;
+ production_environment?: boolean;
+ ref: string;
+ /** Format: uri */
+ repository_url: string;
+ sha: string;
+ /** Format: uri */
+ statuses_url: string;
+ task: string;
+ transient_environment?: boolean;
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ workflow: components["schemas"]["webhooks_workflow"];
+ /** Deployment Workflow Run */
+ workflow_run: {
+ /** User */
+ actor: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ artifacts_url?: string;
+ cancel_url?: string;
+ check_suite_id: number;
+ check_suite_node_id: string;
+ check_suite_url?: string;
+ /** @enum {string|null} */
+ conclusion:
+ | "success"
+ | "failure"
+ | "neutral"
+ | "cancelled"
+ | "timed_out"
+ | "action_required"
+ | "stale"
+ | null;
+ /** Format: date-time */
+ created_at: string;
+ display_title: string;
+ event: string;
+ head_branch: string;
+ head_commit?: unknown;
+ head_repository?: {
+ archive_url?: string;
+ assignees_url?: string;
+ blobs_url?: string;
+ branches_url?: string;
+ collaborators_url?: string;
+ comments_url?: string;
+ commits_url?: string;
+ compare_url?: string;
+ contents_url?: string;
+ contributors_url?: string;
+ deployments_url?: string;
+ description?: unknown;
+ downloads_url?: string;
+ events_url?: string;
+ fork?: boolean;
+ forks_url?: string;
+ full_name?: string;
+ git_commits_url?: string;
+ git_refs_url?: string;
+ git_tags_url?: string;
+ hooks_url?: string;
+ html_url?: string;
+ id?: number;
+ issue_comment_url?: string;
+ issue_events_url?: string;
+ issues_url?: string;
+ keys_url?: string;
+ labels_url?: string;
+ languages_url?: string;
+ merges_url?: string;
+ milestones_url?: string;
+ name?: string;
+ node_id?: string;
+ notifications_url?: string;
+ owner?: {
+ avatar_url?: string;
+ events_url?: string;
+ followers_url?: string;
+ following_url?: string;
+ gists_url?: string;
+ gravatar_id?: string;
+ html_url?: string;
+ id?: number;
+ login?: string;
+ node_id?: string;
+ organizations_url?: string;
+ received_events_url?: string;
+ repos_url?: string;
+ site_admin?: boolean;
+ starred_url?: string;
+ subscriptions_url?: string;
+ type?: string;
+ url?: string;
+ };
+ private?: boolean;
+ pulls_url?: string;
+ releases_url?: string;
+ stargazers_url?: string;
+ statuses_url?: string;
+ subscribers_url?: string;
+ subscription_url?: string;
+ tags_url?: string;
+ teams_url?: string;
+ trees_url?: string;
+ url?: string;
+ };
+ head_sha: string;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ jobs_url?: string;
+ logs_url?: string;
+ name: string;
+ node_id: string;
+ path: string;
+ previous_attempt_url?: unknown;
+ pull_requests: {
+ base: {
+ ref: string;
+ /** Repo Ref */
+ repo: {
+ id: number;
+ name: string;
+ /** Format: uri */
+ url: string;
+ };
+ sha: string;
+ };
+ head: {
+ ref: string;
+ /** Repo Ref */
+ repo: {
+ id: number;
+ name: string;
+ /** Format: uri */
+ url: string;
+ };
+ sha: string;
+ };
+ id: number;
+ number: number;
+ /** Format: uri */
+ url: string;
+ }[];
+ referenced_workflows?:
+ | {
+ path: string;
+ ref?: string;
+ sha: string;
+ }[]
+ | null;
+ repository?: {
+ archive_url?: string;
+ assignees_url?: string;
+ blobs_url?: string;
+ branches_url?: string;
+ collaborators_url?: string;
+ comments_url?: string;
+ commits_url?: string;
+ compare_url?: string;
+ contents_url?: string;
+ contributors_url?: string;
+ deployments_url?: string;
+ description?: unknown;
+ downloads_url?: string;
+ events_url?: string;
+ fork?: boolean;
+ forks_url?: string;
+ full_name?: string;
+ git_commits_url?: string;
+ git_refs_url?: string;
+ git_tags_url?: string;
+ hooks_url?: string;
+ html_url?: string;
+ id?: number;
+ issue_comment_url?: string;
+ issue_events_url?: string;
+ issues_url?: string;
+ keys_url?: string;
+ labels_url?: string;
+ languages_url?: string;
+ merges_url?: string;
+ milestones_url?: string;
+ name?: string;
+ node_id?: string;
+ notifications_url?: string;
+ owner?: {
+ avatar_url?: string;
+ events_url?: string;
+ followers_url?: string;
+ following_url?: string;
+ gists_url?: string;
+ gravatar_id?: string;
+ html_url?: string;
+ id?: number;
+ login?: string;
+ node_id?: string;
+ organizations_url?: string;
+ received_events_url?: string;
+ repos_url?: string;
+ site_admin?: boolean;
+ starred_url?: string;
+ subscriptions_url?: string;
+ type?: string;
+ url?: string;
+ };
+ private?: boolean;
+ pulls_url?: string;
+ releases_url?: string;
+ stargazers_url?: string;
+ statuses_url?: string;
+ subscribers_url?: string;
+ subscription_url?: string;
+ tags_url?: string;
+ teams_url?: string;
+ trees_url?: string;
+ url?: string;
+ };
+ rerun_url?: string;
+ run_attempt: number;
+ run_number: number;
+ /** Format: date-time */
+ run_started_at: string;
+ /** @enum {string} */
+ status:
+ | "requested"
+ | "in_progress"
+ | "completed"
+ | "queued"
+ | "waiting"
+ | "pending";
+ /** User */
+ triggering_actor?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ workflow_id: number;
+ workflow_url?: string;
+ } | null;
+ };
+ /** deployment protection rule requested event */
+ "webhook-deployment-protection-rule-requested": {
+ /** @enum {string} */
+ action?: "requested";
+ /** @description The name of the environment that has the deployment protection rule. */
+ environment?: string;
+ /** @description The event that triggered the deployment protection rule. */
+ event?: string;
+ /**
+ * Format: uri
+ * @description The URL to review the deployment protection rule.
+ */
+ deployment_callback_url?: string;
+ deployment?: components["schemas"]["deployment"];
+ pull_requests?: components["schemas"]["pull-request"][];
+ repository?: components["schemas"]["repository-webhooks"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ sender?: components["schemas"]["simple-user-webhooks"];
+ };
+ "webhook-deployment-review-approved": {
+ /** @enum {string} */
+ action: "approved";
+ approver?: components["schemas"]["webhooks_approver"];
+ comment?: string;
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ reviewers?: components["schemas"]["webhooks_reviewers"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ since: string;
+ workflow_job_run?: components["schemas"]["webhooks_workflow_job_run"];
+ workflow_job_runs?: {
+ conclusion?: unknown;
+ created_at?: string;
+ environment?: string;
+ html_url?: string;
+ id?: number;
+ name?: string | null;
+ status?: string;
+ updated_at?: string;
+ }[];
+ /** Deployment Workflow Run */
+ workflow_run: {
+ /** User */
+ actor: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ artifacts_url?: string;
+ cancel_url?: string;
+ check_suite_id: number;
+ check_suite_node_id: string;
+ check_suite_url?: string;
+ /** @enum {string|null} */
+ conclusion:
+ | "success"
+ | "failure"
+ | "neutral"
+ | "cancelled"
+ | "timed_out"
+ | "action_required"
+ | "stale"
+ | null;
+ /** Format: date-time */
+ created_at: string;
+ display_title: string;
+ event: string;
+ head_branch: string;
+ head_commit?: Record | null;
+ head_repository?: {
+ archive_url?: string;
+ assignees_url?: string;
+ blobs_url?: string;
+ branches_url?: string;
+ collaborators_url?: string;
+ comments_url?: string;
+ commits_url?: string;
+ compare_url?: string;
+ contents_url?: string;
+ contributors_url?: string;
+ deployments_url?: string;
+ description?: string | null;
+ downloads_url?: string;
+ events_url?: string;
+ fork?: boolean;
+ forks_url?: string;
+ full_name?: string;
+ git_commits_url?: string;
+ git_refs_url?: string;
+ git_tags_url?: string;
+ hooks_url?: string;
+ html_url?: string;
+ id?: number;
+ issue_comment_url?: string;
+ issue_events_url?: string;
+ issues_url?: string;
+ keys_url?: string;
+ labels_url?: string;
+ languages_url?: string;
+ merges_url?: string;
+ milestones_url?: string;
+ name?: string;
+ node_id?: string;
+ notifications_url?: string;
+ owner?: {
+ avatar_url?: string;
+ events_url?: string;
+ followers_url?: string;
+ following_url?: string;
+ gists_url?: string;
+ gravatar_id?: string;
+ html_url?: string;
+ id?: number;
+ login?: string;
+ node_id?: string;
+ organizations_url?: string;
+ received_events_url?: string;
+ repos_url?: string;
+ site_admin?: boolean;
+ starred_url?: string;
+ subscriptions_url?: string;
+ type?: string;
+ url?: string;
+ };
+ private?: boolean;
+ pulls_url?: string;
+ releases_url?: string;
+ stargazers_url?: string;
+ statuses_url?: string;
+ subscribers_url?: string;
+ subscription_url?: string;
+ tags_url?: string;
+ teams_url?: string;
+ trees_url?: string;
+ url?: string;
+ };
+ head_sha: string;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ jobs_url?: string;
+ logs_url?: string;
+ name: string;
+ node_id: string;
+ path: string;
+ previous_attempt_url?: string | null;
+ pull_requests: {
+ base: {
+ ref: string;
+ /** Repo Ref */
+ repo: {
+ id: number;
+ name: string;
+ /** Format: uri */
+ url: string;
+ };
+ sha: string;
+ };
+ head: {
+ ref: string;
+ /** Repo Ref */
+ repo: {
+ id: number;
+ name: string;
+ /** Format: uri */
+ url: string;
+ };
+ sha: string;
+ };
+ id: number;
+ number: number;
+ /** Format: uri */
+ url: string;
+ }[];
+ referenced_workflows?:
+ | {
+ path: string;
+ ref?: string;
+ sha: string;
+ }[]
+ | null;
+ repository?: {
+ archive_url?: string;
+ assignees_url?: string;
+ blobs_url?: string;
+ branches_url?: string;
+ collaborators_url?: string;
+ comments_url?: string;
+ commits_url?: string;
+ compare_url?: string;
+ contents_url?: string;
+ contributors_url?: string;
+ deployments_url?: string;
+ description?: string | null;
+ downloads_url?: string;
+ events_url?: string;
+ fork?: boolean;
+ forks_url?: string;
+ full_name?: string;
+ git_commits_url?: string;
+ git_refs_url?: string;
+ git_tags_url?: string;
+ hooks_url?: string;
+ html_url?: string;
+ id?: number;
+ issue_comment_url?: string;
+ issue_events_url?: string;
+ issues_url?: string;
+ keys_url?: string;
+ labels_url?: string;
+ languages_url?: string;
+ merges_url?: string;
+ milestones_url?: string;
+ name?: string;
+ node_id?: string;
+ notifications_url?: string;
+ owner?: {
+ avatar_url?: string;
+ events_url?: string;
+ followers_url?: string;
+ following_url?: string;
+ gists_url?: string;
+ gravatar_id?: string;
+ html_url?: string;
+ id?: number;
+ login?: string;
+ node_id?: string;
+ organizations_url?: string;
+ received_events_url?: string;
+ repos_url?: string;
+ site_admin?: boolean;
+ starred_url?: string;
+ subscriptions_url?: string;
+ type?: string;
+ url?: string;
+ };
+ private?: boolean;
+ pulls_url?: string;
+ releases_url?: string;
+ stargazers_url?: string;
+ statuses_url?: string;
+ subscribers_url?: string;
+ subscription_url?: string;
+ tags_url?: string;
+ teams_url?: string;
+ trees_url?: string;
+ url?: string;
+ };
+ rerun_url?: string;
+ run_attempt: number;
+ run_number: number;
+ /** Format: date-time */
+ run_started_at: string;
+ /** @enum {string} */
+ status:
+ | "requested"
+ | "in_progress"
+ | "completed"
+ | "queued"
+ | "waiting"
+ | "pending";
+ /** User */
+ triggering_actor: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ workflow_id: number;
+ workflow_url?: string;
+ } | null;
+ };
+ "webhook-deployment-review-rejected": {
+ /** @enum {string} */
+ action: "rejected";
+ approver?: components["schemas"]["webhooks_approver"];
+ comment?: string;
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ reviewers?: components["schemas"]["webhooks_reviewers"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ since: string;
+ workflow_job_run?: components["schemas"]["webhooks_workflow_job_run"];
+ workflow_job_runs?: {
+ conclusion?: string | null;
+ created_at?: string;
+ environment?: string;
+ html_url?: string;
+ id?: number;
+ name?: string | null;
+ status?: string;
+ updated_at?: string;
+ }[];
+ /** Deployment Workflow Run */
+ workflow_run: {
+ /** User */
+ actor: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ artifacts_url?: string;
+ cancel_url?: string;
+ check_suite_id: number;
+ check_suite_node_id: string;
+ check_suite_url?: string;
+ /** @enum {string|null} */
+ conclusion:
+ | "success"
+ | "failure"
+ | "neutral"
+ | "cancelled"
+ | "timed_out"
+ | "action_required"
+ | "stale"
+ | null;
+ /** Format: date-time */
+ created_at: string;
+ event: string;
+ head_branch: string;
+ head_commit?: Record | null;
+ head_repository?: {
+ archive_url?: string;
+ assignees_url?: string;
+ blobs_url?: string;
+ branches_url?: string;
+ collaborators_url?: string;
+ comments_url?: string;
+ commits_url?: string;
+ compare_url?: string;
+ contents_url?: string;
+ contributors_url?: string;
+ deployments_url?: string;
+ description?: string | null;
+ downloads_url?: string;
+ events_url?: string;
+ fork?: boolean;
+ forks_url?: string;
+ full_name?: string;
+ git_commits_url?: string;
+ git_refs_url?: string;
+ git_tags_url?: string;
+ hooks_url?: string;
+ html_url?: string;
+ id?: number;
+ issue_comment_url?: string;
+ issue_events_url?: string;
+ issues_url?: string;
+ keys_url?: string;
+ labels_url?: string;
+ languages_url?: string;
+ merges_url?: string;
+ milestones_url?: string;
+ name?: string;
+ node_id?: string;
+ notifications_url?: string;
+ owner?: {
+ avatar_url?: string;
+ events_url?: string;
+ followers_url?: string;
+ following_url?: string;
+ gists_url?: string;
+ gravatar_id?: string;
+ html_url?: string;
+ id?: number;
+ login?: string;
+ node_id?: string;
+ organizations_url?: string;
+ received_events_url?: string;
+ repos_url?: string;
+ site_admin?: boolean;
+ starred_url?: string;
+ subscriptions_url?: string;
+ type?: string;
+ url?: string;
+ };
+ private?: boolean;
+ pulls_url?: string;
+ releases_url?: string;
+ stargazers_url?: string;
+ statuses_url?: string;
+ subscribers_url?: string;
+ subscription_url?: string;
+ tags_url?: string;
+ teams_url?: string;
+ trees_url?: string;
+ url?: string;
+ };
+ head_sha: string;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ jobs_url?: string;
+ logs_url?: string;
+ name: string;
+ node_id: string;
+ path: string;
+ previous_attempt_url?: string | null;
+ pull_requests: {
+ base: {
+ ref: string;
+ /** Repo Ref */
+ repo: {
+ id: number;
+ name: string;
+ /** Format: uri */
+ url: string;
+ };
+ sha: string;
+ };
+ head: {
+ ref: string;
+ /** Repo Ref */
+ repo: {
+ id: number;
+ name: string;
+ /** Format: uri */
+ url: string;
+ };
+ sha: string;
+ };
+ id: number;
+ number: number;
+ /** Format: uri */
+ url: string;
+ }[];
+ referenced_workflows?:
+ | {
+ path: string;
+ ref?: string;
+ sha: string;
+ }[]
+ | null;
+ repository?: {
+ archive_url?: string;
+ assignees_url?: string;
+ blobs_url?: string;
+ branches_url?: string;
+ collaborators_url?: string;
+ comments_url?: string;
+ commits_url?: string;
+ compare_url?: string;
+ contents_url?: string;
+ contributors_url?: string;
+ deployments_url?: string;
+ description?: string | null;
+ downloads_url?: string;
+ events_url?: string;
+ fork?: boolean;
+ forks_url?: string;
+ full_name?: string;
+ git_commits_url?: string;
+ git_refs_url?: string;
+ git_tags_url?: string;
+ hooks_url?: string;
+ html_url?: string;
+ id?: number;
+ issue_comment_url?: string;
+ issue_events_url?: string;
+ issues_url?: string;
+ keys_url?: string;
+ labels_url?: string;
+ languages_url?: string;
+ merges_url?: string;
+ milestones_url?: string;
+ name?: string;
+ node_id?: string;
+ notifications_url?: string;
+ owner?: {
+ avatar_url?: string;
+ events_url?: string;
+ followers_url?: string;
+ following_url?: string;
+ gists_url?: string;
+ gravatar_id?: string;
+ html_url?: string;
+ id?: number;
+ login?: string;
+ node_id?: string;
+ organizations_url?: string;
+ received_events_url?: string;
+ repos_url?: string;
+ site_admin?: boolean;
+ starred_url?: string;
+ subscriptions_url?: string;
+ type?: string;
+ url?: string;
+ };
+ private?: boolean;
+ pulls_url?: string;
+ releases_url?: string;
+ stargazers_url?: string;
+ statuses_url?: string;
+ subscribers_url?: string;
+ subscription_url?: string;
+ tags_url?: string;
+ teams_url?: string;
+ trees_url?: string;
+ url?: string;
+ };
+ rerun_url?: string;
+ run_attempt: number;
+ run_number: number;
+ /** Format: date-time */
+ run_started_at: string;
+ /** @enum {string} */
+ status:
+ | "requested"
+ | "in_progress"
+ | "completed"
+ | "queued"
+ | "waiting";
+ /** User */
+ triggering_actor: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ workflow_id: number;
+ workflow_url?: string;
+ display_title: string;
+ } | null;
+ };
+ "webhook-deployment-review-requested": {
+ /** @enum {string} */
+ action: "requested";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ environment: string;
+ installation?: components["schemas"]["simple-installation"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ requestor: components["schemas"]["webhooks_user"];
+ reviewers: {
+ /** User */
+ reviewer?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login?: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @enum {string} */
+ type?: "User" | "Team";
+ }[];
+ sender: components["schemas"]["simple-user-webhooks"];
+ since: string;
+ workflow_job_run: {
+ conclusion: unknown;
+ created_at: string;
+ environment: string;
+ html_url: string;
+ id: number;
+ name: string | null;
+ status: string;
+ updated_at: string;
+ };
+ /** Deployment Workflow Run */
+ workflow_run: {
+ /** User */
+ actor: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ artifacts_url?: string;
+ cancel_url?: string;
+ check_suite_id: number;
+ check_suite_node_id: string;
+ check_suite_url?: string;
+ /** @enum {string|null} */
+ conclusion:
+ | "success"
+ | "failure"
+ | "neutral"
+ | "cancelled"
+ | "timed_out"
+ | "action_required"
+ | "stale"
+ | null;
+ /** Format: date-time */
+ created_at: string;
+ event: string;
+ head_branch: string;
+ head_commit?: Record | null;
+ head_repository?: {
+ archive_url?: string;
+ assignees_url?: string;
+ blobs_url?: string;
+ branches_url?: string;
+ collaborators_url?: string;
+ comments_url?: string;
+ commits_url?: string;
+ compare_url?: string;
+ contents_url?: string;
+ contributors_url?: string;
+ deployments_url?: string;
+ description?: string | null;
+ downloads_url?: string;
+ events_url?: string;
+ fork?: boolean;
+ forks_url?: string;
+ full_name?: string;
+ git_commits_url?: string;
+ git_refs_url?: string;
+ git_tags_url?: string;
+ hooks_url?: string;
+ html_url?: string;
+ id?: number;
+ issue_comment_url?: string;
+ issue_events_url?: string;
+ issues_url?: string;
+ keys_url?: string;
+ labels_url?: string;
+ languages_url?: string;
+ merges_url?: string;
+ milestones_url?: string;
+ name?: string;
+ node_id?: string;
+ notifications_url?: string;
+ owner?: {
+ avatar_url?: string;
+ events_url?: string;
+ followers_url?: string;
+ following_url?: string;
+ gists_url?: string;
+ gravatar_id?: string;
+ html_url?: string;
+ id?: number;
+ login?: string;
+ node_id?: string;
+ organizations_url?: string;
+ received_events_url?: string;
+ repos_url?: string;
+ site_admin?: boolean;
+ starred_url?: string;
+ subscriptions_url?: string;
+ type?: string;
+ url?: string;
+ };
+ private?: boolean;
+ pulls_url?: string;
+ releases_url?: string;
+ stargazers_url?: string;
+ statuses_url?: string;
+ subscribers_url?: string;
+ subscription_url?: string;
+ tags_url?: string;
+ teams_url?: string;
+ trees_url?: string;
+ url?: string;
+ };
+ head_sha: string;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ jobs_url?: string;
+ logs_url?: string;
+ name: string;
+ node_id: string;
+ path: string;
+ previous_attempt_url?: string | null;
+ pull_requests: {
+ base: {
+ ref: string;
+ /** Repo Ref */
+ repo: {
+ id: number;
+ name: string;
+ /** Format: uri */
+ url: string;
+ };
+ sha: string;
+ };
+ head: {
+ ref: string;
+ /** Repo Ref */
+ repo: {
+ id: number;
+ name: string;
+ /** Format: uri */
+ url: string;
+ };
+ sha: string;
+ };
+ id: number;
+ number: number;
+ /** Format: uri */
+ url: string;
+ }[];
+ referenced_workflows?:
+ | {
+ path: string;
+ ref?: string;
+ sha: string;
+ }[]
+ | null;
+ repository?: {
+ archive_url?: string;
+ assignees_url?: string;
+ blobs_url?: string;
+ branches_url?: string;
+ collaborators_url?: string;
+ comments_url?: string;
+ commits_url?: string;
+ compare_url?: string;
+ contents_url?: string;
+ contributors_url?: string;
+ deployments_url?: string;
+ description?: string | null;
+ downloads_url?: string;
+ events_url?: string;
+ fork?: boolean;
+ forks_url?: string;
+ full_name?: string;
+ git_commits_url?: string;
+ git_refs_url?: string;
+ git_tags_url?: string;
+ hooks_url?: string;
+ html_url?: string;
+ id?: number;
+ issue_comment_url?: string;
+ issue_events_url?: string;
+ issues_url?: string;
+ keys_url?: string;
+ labels_url?: string;
+ languages_url?: string;
+ merges_url?: string;
+ milestones_url?: string;
+ name?: string;
+ node_id?: string;
+ notifications_url?: string;
+ owner?: {
+ avatar_url?: string;
+ events_url?: string;
+ followers_url?: string;
+ following_url?: string;
+ gists_url?: string;
+ gravatar_id?: string;
+ html_url?: string;
+ id?: number;
+ login?: string;
+ node_id?: string;
+ organizations_url?: string;
+ received_events_url?: string;
+ repos_url?: string;
+ site_admin?: boolean;
+ starred_url?: string;
+ subscriptions_url?: string;
+ type?: string;
+ url?: string;
+ };
+ private?: boolean;
+ pulls_url?: string;
+ releases_url?: string;
+ stargazers_url?: string;
+ statuses_url?: string;
+ subscribers_url?: string;
+ subscription_url?: string;
+ tags_url?: string;
+ teams_url?: string;
+ trees_url?: string;
+ url?: string;
+ };
+ rerun_url?: string;
+ run_attempt: number;
+ run_number: number;
+ /** Format: date-time */
+ run_started_at: string;
+ /** @enum {string} */
+ status:
+ | "requested"
+ | "in_progress"
+ | "completed"
+ | "queued"
+ | "waiting"
+ | "pending";
+ /** User */
+ triggering_actor: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ workflow_id: number;
+ workflow_url?: string;
+ display_title: string;
+ } | null;
+ };
+ /** deployment_status created event */
+ "webhook-deployment-status-created": {
+ /** @enum {string} */
+ action: "created";
+ check_run?: {
+ /** Format: date-time */
+ completed_at: string | null;
+ /**
+ * @description The result of the completed check run. This value will be `null` until the check run has completed.
+ * @enum {string|null}
+ */
+ conclusion:
+ | "success"
+ | "failure"
+ | "neutral"
+ | "cancelled"
+ | "timed_out"
+ | "action_required"
+ | "stale"
+ | "skipped"
+ | null;
+ /** Format: uri */
+ details_url: string;
+ external_id: string;
+ /** @description The SHA of the commit that is being checked. */
+ head_sha: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description The id of the check. */
+ id: number;
+ /** @description The name of the check run. */
+ name: string;
+ node_id: string;
+ /** Format: date-time */
+ started_at: string;
+ /**
+ * @description The current status of the check run. Can be `queued`, `in_progress`, or `completed`.
+ * @enum {string}
+ */
+ status: "queued" | "in_progress" | "completed" | "waiting" | "pending";
+ /** Format: uri */
+ url: string;
+ } | null;
+ /**
+ * Deployment
+ * @description The [deployment](https://docs.github.com/rest/deployments/deployments#list-deployments).
+ */
+ deployment: {
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ environment: string;
+ id: number;
+ node_id: string;
+ original_environment: string;
+ payload: string | Record | null;
+ /**
+ * App
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ performed_via_github_app?: {
+ /** Format: date-time */
+ created_at: string | null;
+ description: string | null;
+ /** @description The list of events for the GitHub app */
+ events?: (
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "content_reference"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_review"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_dispatch"
+ | "secret_scanning_alert"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_dispatch"
+ | "workflow_run"
+ | "merge_queue_entry"
+ | "workflow_job"
+ | "pull_request_review_thread"
+ | "secret_scanning_alert_location"
+ | "merge_group"
+ )[];
+ /** Format: uri */
+ external_url: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the GitHub app */
+ id: number | null;
+ /** @description The name of the GitHub app */
+ name: string;
+ node_id: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The set of permissions for the GitHub app */
+ permissions?: {
+ /** @enum {string} */
+ actions?: "read" | "write";
+ /** @enum {string} */
+ administration?: "read" | "write";
+ /** @enum {string} */
+ checks?: "read" | "write";
+ /** @enum {string} */
+ content_references?: "read" | "write";
+ /** @enum {string} */
+ contents?: "read" | "write";
+ /** @enum {string} */
+ deployments?: "read" | "write";
+ /** @enum {string} */
+ discussions?: "read" | "write";
+ /** @enum {string} */
+ emails?: "read" | "write";
+ /** @enum {string} */
+ environments?: "read" | "write";
+ /** @enum {string} */
+ issues?: "read" | "write";
+ /** @enum {string} */
+ keys?: "read" | "write";
+ /** @enum {string} */
+ members?: "read" | "write";
+ /** @enum {string} */
+ metadata?: "read" | "write";
+ /** @enum {string} */
+ organization_administration?: "read" | "write";
+ /** @enum {string} */
+ organization_hooks?: "read" | "write";
+ /** @enum {string} */
+ organization_packages?: "read" | "write";
+ /** @enum {string} */
+ organization_plan?: "read" | "write";
+ /** @enum {string} */
+ organization_projects?: "read" | "write";
+ /** @enum {string} */
+ organization_secrets?: "read" | "write";
+ /** @enum {string} */
+ organization_self_hosted_runners?: "read" | "write";
+ /** @enum {string} */
+ organization_user_blocking?: "read" | "write";
+ /** @enum {string} */
+ packages?: "read" | "write";
+ /** @enum {string} */
+ pages?: "read" | "write";
+ /** @enum {string} */
+ pull_requests?: "read" | "write";
+ /** @enum {string} */
+ repository_hooks?: "read" | "write";
+ /** @enum {string} */
+ repository_projects?: "read" | "write";
+ /** @enum {string} */
+ secret_scanning_alerts?: "read" | "write";
+ /** @enum {string} */
+ secrets?: "read" | "write";
+ /** @enum {string} */
+ security_events?: "read" | "write";
+ /** @enum {string} */
+ security_scanning_alert?: "read" | "write";
+ /** @enum {string} */
+ single_file?: "read" | "write";
+ /** @enum {string} */
+ statuses?: "read" | "write";
+ /** @enum {string} */
+ team_discussions?: "read" | "write";
+ /** @enum {string} */
+ vulnerability_alerts?: "read" | "write";
+ /** @enum {string} */
+ workflows?: "read" | "write";
+ };
+ /** @description The slug name of the GitHub app */
+ slug?: string;
+ /** Format: date-time */
+ updated_at: string | null;
+ } | null;
+ production_environment?: boolean;
+ ref: string;
+ /** Format: uri */
+ repository_url: string;
+ sha: string;
+ /** Format: uri */
+ statuses_url: string;
+ task: string;
+ transient_environment?: boolean;
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ };
+ /** @description The [deployment status](https://docs.github.com/rest/deployments/statuses#list-deployment-statuses). */
+ deployment_status: {
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** Format: uri */
+ deployment_url: string;
+ /** @description The optional human-readable description added to the status. */
+ description: string;
+ environment: string;
+ /** Format: uri */
+ environment_url?: string;
+ id: number;
+ /** Format: uri */
+ log_url?: string;
+ node_id: string;
+ /**
+ * App
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ performed_via_github_app?: {
+ /** Format: date-time */
+ created_at: string | null;
+ description: string | null;
+ /** @description The list of events for the GitHub app */
+ events?: (
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "content_reference"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_review"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_dispatch"
+ | "secret_scanning_alert"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_dispatch"
+ | "workflow_run"
+ | "pull_request_review_thread"
+ | "merge_queue_entry"
+ | "workflow_job"
+ | "merge_group"
+ | "secret_scanning_alert_location"
+ )[];
+ /** Format: uri */
+ external_url: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the GitHub app */
+ id: number | null;
+ /** @description The name of the GitHub app */
+ name: string;
+ node_id: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The set of permissions for the GitHub app */
+ permissions?: {
+ /** @enum {string} */
+ actions?: "read" | "write";
+ /** @enum {string} */
+ administration?: "read" | "write";
+ /** @enum {string} */
+ checks?: "read" | "write";
+ /** @enum {string} */
+ content_references?: "read" | "write";
+ /** @enum {string} */
+ contents?: "read" | "write";
+ /** @enum {string} */
+ deployments?: "read" | "write";
+ /** @enum {string} */
+ discussions?: "read" | "write";
+ /** @enum {string} */
+ emails?: "read" | "write";
+ /** @enum {string} */
+ environments?: "read" | "write";
+ /** @enum {string} */
+ issues?: "read" | "write";
+ /** @enum {string} */
+ keys?: "read" | "write";
+ /** @enum {string} */
+ members?: "read" | "write";
+ /** @enum {string} */
+ metadata?: "read" | "write";
+ /** @enum {string} */
+ organization_administration?: "read" | "write";
+ /** @enum {string} */
+ organization_hooks?: "read" | "write";
+ /** @enum {string} */
+ organization_packages?: "read" | "write";
+ /** @enum {string} */
+ organization_plan?: "read" | "write";
+ /** @enum {string} */
+ organization_projects?: "read" | "write";
+ /** @enum {string} */
+ organization_secrets?: "read" | "write";
+ /** @enum {string} */
+ organization_self_hosted_runners?: "read" | "write";
+ /** @enum {string} */
+ organization_user_blocking?: "read" | "write";
+ /** @enum {string} */
+ packages?: "read" | "write";
+ /** @enum {string} */
+ pages?: "read" | "write";
+ /** @enum {string} */
+ pull_requests?: "read" | "write";
+ /** @enum {string} */
+ repository_hooks?: "read" | "write";
+ /** @enum {string} */
+ repository_projects?: "read" | "write";
+ /** @enum {string} */
+ secret_scanning_alerts?: "read" | "write";
+ /** @enum {string} */
+ secrets?: "read" | "write";
+ /** @enum {string} */
+ security_events?: "read" | "write";
+ /** @enum {string} */
+ security_scanning_alert?: "read" | "write";
+ /** @enum {string} */
+ single_file?: "read" | "write";
+ /** @enum {string} */
+ statuses?: "read" | "write";
+ /** @enum {string} */
+ team_discussions?: "read" | "write";
+ /** @enum {string} */
+ vulnerability_alerts?: "read" | "write";
+ /** @enum {string} */
+ workflows?: "read" | "write";
+ };
+ /** @description The slug name of the GitHub app */
+ slug?: string;
+ /** Format: date-time */
+ updated_at: string | null;
+ } | null;
+ /** Format: uri */
+ repository_url: string;
+ /** @description The new state. Can be `pending`, `success`, `failure`, or `error`. */
+ state: string;
+ /** @description The optional link added to the status. */
+ target_url: string;
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ workflow?: components["schemas"]["webhooks_workflow"];
+ /** Deployment Workflow Run */
+ workflow_run?: {
+ /** User */
+ actor: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ artifacts_url?: string;
+ cancel_url?: string;
+ check_suite_id: number;
+ check_suite_node_id: string;
+ check_suite_url?: string;
+ /** @enum {string|null} */
+ conclusion:
+ | "success"
+ | "failure"
+ | "neutral"
+ | "cancelled"
+ | "timed_out"
+ | "action_required"
+ | "stale"
+ | null
+ | "startup_failure";
+ /** Format: date-time */
+ created_at: string;
+ display_title: string;
+ event: string;
+ head_branch: string;
+ head_commit?: unknown;
+ head_repository?: {
+ archive_url?: string;
+ assignees_url?: string;
+ blobs_url?: string;
+ branches_url?: string;
+ collaborators_url?: string;
+ comments_url?: string;
+ commits_url?: string;
+ compare_url?: string;
+ contents_url?: string;
+ contributors_url?: string;
+ deployments_url?: string;
+ description?: unknown;
+ downloads_url?: string;
+ events_url?: string;
+ fork?: boolean;
+ forks_url?: string;
+ full_name?: string;
+ git_commits_url?: string;
+ git_refs_url?: string;
+ git_tags_url?: string;
+ hooks_url?: string;
+ html_url?: string;
+ id?: number;
+ issue_comment_url?: string;
+ issue_events_url?: string;
+ issues_url?: string;
+ keys_url?: string;
+ labels_url?: string;
+ languages_url?: string;
+ merges_url?: string;
+ milestones_url?: string;
+ name?: string;
+ node_id?: string;
+ notifications_url?: string;
+ owner?: {
+ avatar_url?: string;
+ events_url?: string;
+ followers_url?: string;
+ following_url?: string;
+ gists_url?: string;
+ gravatar_id?: string;
+ html_url?: string;
+ id?: number;
+ login?: string;
+ node_id?: string;
+ organizations_url?: string;
+ received_events_url?: string;
+ repos_url?: string;
+ site_admin?: boolean;
+ starred_url?: string;
+ subscriptions_url?: string;
+ type?: string;
+ url?: string;
+ };
+ private?: boolean;
+ pulls_url?: string;
+ releases_url?: string;
+ stargazers_url?: string;
+ statuses_url?: string;
+ subscribers_url?: string;
+ subscription_url?: string;
+ tags_url?: string;
+ teams_url?: string;
+ trees_url?: string;
+ url?: string;
+ };
+ head_sha: string;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ jobs_url?: string;
+ logs_url?: string;
+ name: string;
+ node_id: string;
+ path: string;
+ previous_attempt_url?: unknown;
+ pull_requests: {
+ base: {
+ ref: string;
+ /** Repo Ref */
+ repo: {
+ id: number;
+ name: string;
+ /** Format: uri */
+ url: string;
+ };
+ sha: string;
+ };
+ head: {
+ ref: string;
+ /** Repo Ref */
+ repo: {
+ id: number;
+ name: string;
+ /** Format: uri */
+ url: string;
+ };
+ sha: string;
+ };
+ id: number;
+ number: number;
+ /** Format: uri */
+ url: string;
+ }[];
+ referenced_workflows?:
+ | {
+ path: string;
+ ref?: string;
+ sha: string;
+ }[]
+ | null;
+ repository?: {
+ archive_url?: string;
+ assignees_url?: string;
+ blobs_url?: string;
+ branches_url?: string;
+ collaborators_url?: string;
+ comments_url?: string;
+ commits_url?: string;
+ compare_url?: string;
+ contents_url?: string;
+ contributors_url?: string;
+ deployments_url?: string;
+ description?: unknown;
+ downloads_url?: string;
+ events_url?: string;
+ fork?: boolean;
+ forks_url?: string;
+ full_name?: string;
+ git_commits_url?: string;
+ git_refs_url?: string;
+ git_tags_url?: string;
+ hooks_url?: string;
+ html_url?: string;
+ id?: number;
+ issue_comment_url?: string;
+ issue_events_url?: string;
+ issues_url?: string;
+ keys_url?: string;
+ labels_url?: string;
+ languages_url?: string;
+ merges_url?: string;
+ milestones_url?: string;
+ name?: string;
+ node_id?: string;
+ notifications_url?: string;
+ owner?: {
+ avatar_url?: string;
+ events_url?: string;
+ followers_url?: string;
+ following_url?: string;
+ gists_url?: string;
+ gravatar_id?: string;
+ html_url?: string;
+ id?: number;
+ login?: string;
+ node_id?: string;
+ organizations_url?: string;
+ received_events_url?: string;
+ repos_url?: string;
+ site_admin?: boolean;
+ starred_url?: string;
+ subscriptions_url?: string;
+ type?: string;
+ url?: string;
+ };
+ private?: boolean;
+ pulls_url?: string;
+ releases_url?: string;
+ stargazers_url?: string;
+ statuses_url?: string;
+ subscribers_url?: string;
+ subscription_url?: string;
+ tags_url?: string;
+ teams_url?: string;
+ trees_url?: string;
+ url?: string;
+ };
+ rerun_url?: string;
+ run_attempt: number;
+ run_number: number;
+ /** Format: date-time */
+ run_started_at: string;
+ /** @enum {string} */
+ status:
+ | "requested"
+ | "in_progress"
+ | "completed"
+ | "queued"
+ | "waiting"
+ | "pending";
+ /** User */
+ triggering_actor: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ workflow_id: number;
+ workflow_url?: string;
+ } | null;
+ };
+ /** discussion answered event */
+ "webhook-discussion-answered": {
+ /** @enum {string} */
+ action: "answered";
+ answer: components["schemas"]["webhooks_answer"];
+ discussion: components["schemas"]["discussion"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** discussion category changed event */
+ "webhook-discussion-category-changed": {
+ /** @enum {string} */
+ action: "category_changed";
+ changes: {
+ category: {
+ from: {
+ /** Format: date-time */
+ created_at: string;
+ description: string;
+ emoji: string;
+ id: number;
+ is_answerable: boolean;
+ name: string;
+ node_id?: string;
+ repository_id: number;
+ slug: string;
+ updated_at: string;
+ };
+ };
+ };
+ discussion: components["schemas"]["discussion"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** discussion closed event */
+ "webhook-discussion-closed": {
+ /** @enum {string} */
+ action: "closed";
+ discussion: components["schemas"]["discussion"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** discussion_comment created event */
+ "webhook-discussion-comment-created": {
+ /** @enum {string} */
+ action: "created";
+ comment: components["schemas"]["webhooks_comment"];
+ discussion: components["schemas"]["discussion"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** discussion_comment deleted event */
+ "webhook-discussion-comment-deleted": {
+ /** @enum {string} */
+ action: "deleted";
+ comment: components["schemas"]["webhooks_comment"];
+ discussion: components["schemas"]["discussion"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** discussion_comment edited event */
+ "webhook-discussion-comment-edited": {
+ /** @enum {string} */
+ action: "edited";
+ changes: {
+ body: {
+ from: string;
+ };
+ };
+ comment: components["schemas"]["webhooks_comment"];
+ discussion: components["schemas"]["discussion"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** discussion created event */
+ "webhook-discussion-created": {
+ /** @enum {string} */
+ action: "created";
+ discussion: components["schemas"]["discussion"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** discussion deleted event */
+ "webhook-discussion-deleted": {
+ /** @enum {string} */
+ action: "deleted";
+ discussion: components["schemas"]["discussion"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** discussion edited event */
+ "webhook-discussion-edited": {
+ /** @enum {string} */
+ action: "edited";
+ changes?: {
+ body?: {
+ from: string;
+ };
+ title?: {
+ from: string;
+ };
+ };
+ discussion: components["schemas"]["discussion"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** discussion labeled event */
+ "webhook-discussion-labeled": {
+ /** @enum {string} */
+ action: "labeled";
+ discussion: components["schemas"]["discussion"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ label: components["schemas"]["webhooks_label"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** discussion locked event */
+ "webhook-discussion-locked": {
+ /** @enum {string} */
+ action: "locked";
+ discussion: components["schemas"]["discussion"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** discussion pinned event */
+ "webhook-discussion-pinned": {
+ /** @enum {string} */
+ action: "pinned";
+ discussion: components["schemas"]["discussion"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** discussion reopened event */
+ "webhook-discussion-reopened": {
+ /** @enum {string} */
+ action: "reopened";
+ discussion: components["schemas"]["discussion"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** discussion transferred event */
+ "webhook-discussion-transferred": {
+ /** @enum {string} */
+ action: "transferred";
+ changes: {
+ new_discussion: components["schemas"]["discussion"];
+ new_repository: components["schemas"]["repository-webhooks"];
+ };
+ discussion: components["schemas"]["discussion"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** discussion unanswered event */
+ "webhook-discussion-unanswered": {
+ /** @enum {string} */
+ action: "unanswered";
+ discussion: components["schemas"]["discussion"];
+ old_answer: components["schemas"]["webhooks_answer"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender?: components["schemas"]["simple-user-webhooks"];
+ };
+ /** discussion unlabeled event */
+ "webhook-discussion-unlabeled": {
+ /** @enum {string} */
+ action: "unlabeled";
+ discussion: components["schemas"]["discussion"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ label: components["schemas"]["webhooks_label"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** discussion unlocked event */
+ "webhook-discussion-unlocked": {
+ /** @enum {string} */
+ action: "unlocked";
+ discussion: components["schemas"]["discussion"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** discussion unpinned event */
+ "webhook-discussion-unpinned": {
+ /** @enum {string} */
+ action: "unpinned";
+ discussion: components["schemas"]["discussion"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /**
+ * fork event
+ * @description A user forks a repository.
+ */
+ "webhook-fork": {
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ /** @description The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. */
+ forkee: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. */
+ custom_properties?: {
+ [key: string]: unknown;
+ };
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ } & {
+ allow_forking?: boolean;
+ archive_url?: string;
+ archived?: boolean;
+ assignees_url?: string;
+ blobs_url?: string;
+ branches_url?: string;
+ clone_url?: string;
+ collaborators_url?: string;
+ comments_url?: string;
+ commits_url?: string;
+ compare_url?: string;
+ contents_url?: string;
+ contributors_url?: string;
+ created_at?: string;
+ default_branch?: string;
+ deployments_url?: string;
+ description?: string | null;
+ disabled?: boolean;
+ downloads_url?: string;
+ events_url?: string;
+ /** @enum {boolean} */
+ fork?: true;
+ forks?: number;
+ forks_count?: number;
+ forks_url?: string;
+ full_name?: string;
+ git_commits_url?: string;
+ git_refs_url?: string;
+ git_tags_url?: string;
+ git_url?: string;
+ has_downloads?: boolean;
+ has_issues?: boolean;
+ has_pages?: boolean;
+ has_projects?: boolean;
+ has_wiki?: boolean;
+ homepage?: string | null;
+ hooks_url?: string;
+ html_url?: string;
+ id?: number;
+ is_template?: boolean;
+ issue_comment_url?: string;
+ issue_events_url?: string;
+ issues_url?: string;
+ keys_url?: string;
+ labels_url?: string;
+ language?: unknown;
+ languages_url?: string;
+ license?: Record | null;
+ merges_url?: string;
+ milestones_url?: string;
+ mirror_url?: unknown;
+ name?: string;
+ node_id?: string;
+ notifications_url?: string;
+ open_issues?: number;
+ open_issues_count?: number;
+ owner?: {
+ avatar_url?: string;
+ events_url?: string;
+ followers_url?: string;
+ following_url?: string;
+ gists_url?: string;
+ gravatar_id?: string;
+ html_url?: string;
+ id?: number;
+ login?: string;
+ node_id?: string;
+ organizations_url?: string;
+ received_events_url?: string;
+ repos_url?: string;
+ site_admin?: boolean;
+ starred_url?: string;
+ subscriptions_url?: string;
+ type?: string;
+ url?: string;
+ };
+ private?: boolean;
+ public?: boolean;
+ pulls_url?: string;
+ pushed_at?: string;
+ releases_url?: string;
+ size?: number;
+ ssh_url?: string;
+ stargazers_count?: number;
+ stargazers_url?: string;
+ statuses_url?: string;
+ subscribers_url?: string;
+ subscription_url?: string;
+ svn_url?: string;
+ tags_url?: string;
+ teams_url?: string;
+ topics?: unknown[];
+ trees_url?: string;
+ updated_at?: string;
+ url?: string;
+ visibility?: string;
+ watchers?: number;
+ watchers_count?: number;
+ };
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** github_app_authorization revoked event */
+ "webhook-github-app-authorization-revoked": {
+ /** @enum {string} */
+ action: "revoked";
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** gollum event */
+ "webhook-gollum": {
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** @description The pages that were updated. */
+ pages: {
+ /**
+ * @description The action that was performed on the page. Can be `created` or `edited`.
+ * @enum {string}
+ */
+ action: "created" | "edited";
+ /**
+ * Format: uri
+ * @description Points to the HTML wiki page.
+ */
+ html_url: string;
+ /** @description The name of the page. */
+ page_name: string;
+ /** @description The latest commit SHA of the page. */
+ sha: string;
+ summary: string | null;
+ /** @description The current page title. */
+ title: string;
+ }[];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** installation created event */
+ "webhook-installation-created": {
+ /** @enum {string} */
+ action: "created";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation: components["schemas"]["installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repositories?: components["schemas"]["webhooks_repositories"];
+ repository?: components["schemas"]["repository-webhooks"];
+ requester?: components["schemas"]["webhooks_user"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** installation deleted event */
+ "webhook-installation-deleted": {
+ /** @enum {string} */
+ action: "deleted";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation: components["schemas"]["installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repositories?: components["schemas"]["webhooks_repositories"];
+ repository?: components["schemas"]["repository-webhooks"];
+ requester?: unknown;
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** installation new_permissions_accepted event */
+ "webhook-installation-new-permissions-accepted": {
+ /** @enum {string} */
+ action: "new_permissions_accepted";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation: components["schemas"]["installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repositories?: components["schemas"]["webhooks_repositories"];
+ repository?: components["schemas"]["repository-webhooks"];
+ requester?: unknown;
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** installation_repositories added event */
+ "webhook-installation-repositories-added": {
+ /** @enum {string} */
+ action: "added";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation: components["schemas"]["installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repositories_added: components["schemas"]["webhooks_repositories_added"];
+ /** @description An array of repository objects, which were removed from the installation. */
+ repositories_removed: {
+ full_name?: string;
+ /** @description Unique identifier of the repository */
+ id?: number;
+ /** @description The name of the repository. */
+ name?: string;
+ node_id?: string;
+ /** @description Whether the repository is private or public. */
+ private?: boolean;
+ }[];
+ repository?: components["schemas"]["repository-webhooks"];
+ repository_selection: components["schemas"]["webhooks_repository_selection"];
+ requester: components["schemas"]["webhooks_user"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** installation_repositories removed event */
+ "webhook-installation-repositories-removed": {
+ /** @enum {string} */
+ action: "removed";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation: components["schemas"]["installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repositories_added: components["schemas"]["webhooks_repositories_added"];
+ /** @description An array of repository objects, which were removed from the installation. */
+ repositories_removed: {
+ full_name: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ }[];
+ repository?: components["schemas"]["repository-webhooks"];
+ repository_selection: components["schemas"]["webhooks_repository_selection"];
+ requester: components["schemas"]["webhooks_user"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** installation suspend event */
+ "webhook-installation-suspend": {
+ /** @enum {string} */
+ action: "suspend";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation: components["schemas"]["installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repositories?: components["schemas"]["webhooks_repositories"];
+ repository?: components["schemas"]["repository-webhooks"];
+ requester?: unknown;
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ "webhook-installation-target-renamed": {
+ account: {
+ archived_at?: string | null;
+ avatar_url: string;
+ created_at?: string;
+ description?: unknown;
+ events_url?: string;
+ followers?: number;
+ followers_url?: string;
+ following?: number;
+ following_url?: string;
+ gists_url?: string;
+ gravatar_id?: string;
+ has_organization_projects?: boolean;
+ has_repository_projects?: boolean;
+ hooks_url?: string;
+ html_url: string;
+ id: number;
+ is_verified?: boolean;
+ issues_url?: string;
+ login?: string;
+ members_url?: string;
+ name?: string;
+ node_id: string;
+ organizations_url?: string;
+ public_gists?: number;
+ public_members_url?: string;
+ public_repos?: number;
+ received_events_url?: string;
+ repos_url?: string;
+ site_admin?: boolean;
+ slug?: string;
+ starred_url?: string;
+ subscriptions_url?: string;
+ type?: string;
+ updated_at?: string;
+ url?: string;
+ website_url?: unknown;
+ };
+ /** @enum {string} */
+ action: "renamed";
+ changes: {
+ login?: {
+ from: string;
+ };
+ slug?: {
+ from: string;
+ };
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender?: components["schemas"]["simple-user-webhooks"];
+ target_type: string;
+ };
+ /** installation unsuspend event */
+ "webhook-installation-unsuspend": {
+ /** @enum {string} */
+ action: "unsuspend";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation: components["schemas"]["installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repositories?: components["schemas"]["webhooks_repositories"];
+ repository?: components["schemas"]["repository-webhooks"];
+ requester?: unknown;
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** issue_comment created event */
+ "webhook-issue-comment-created": {
+ /** @enum {string} */
+ action: "created";
+ /**
+ * issue comment
+ * @description The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself.
+ */
+ comment: {
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description Contents of the issue comment */
+ body: string;
+ /** Format: date-time */
+ created_at: string;
+ /** Format: uri */
+ html_url: string;
+ /**
+ * Format: int64
+ * @description Unique identifier of the issue comment
+ */
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ node_id: string;
+ performed_via_github_app: components["schemas"]["nullable-integration"];
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL for the issue comment
+ */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ /** @description The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. */
+ issue: {
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description Contents of the issue */
+ body: string | null;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments: number;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: date-time */
+ created_at: string;
+ draft?: boolean;
+ /** Format: uri */
+ events_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** Format: int64 */
+ id: number;
+ labels?: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ /** Format: uri-template */
+ labels_url: string;
+ locked?: boolean;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /**
+ * App
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ performed_via_github_app?: {
+ /** Format: date-time */
+ created_at: string | null;
+ description: string | null;
+ /** @description The list of events for the GitHub app */
+ events?: (
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "content_reference"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_review"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_dispatch"
+ | "secret_scanning_alert"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_dispatch"
+ | "workflow_run"
+ | "reminder"
+ | "pull_request_review_thread"
+ )[];
+ /** Format: uri */
+ external_url: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the GitHub app */
+ id: number | null;
+ /** @description The name of the GitHub app */
+ name: string;
+ node_id: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The set of permissions for the GitHub app */
+ permissions?: {
+ /** @enum {string} */
+ actions?: "read" | "write";
+ /** @enum {string} */
+ administration?: "read" | "write";
+ /** @enum {string} */
+ checks?: "read" | "write";
+ /** @enum {string} */
+ content_references?: "read" | "write";
+ /** @enum {string} */
+ contents?: "read" | "write";
+ /** @enum {string} */
+ deployments?: "read" | "write";
+ /** @enum {string} */
+ discussions?: "read" | "write";
+ /** @enum {string} */
+ emails?: "read" | "write";
+ /** @enum {string} */
+ environments?: "read" | "write";
+ /** @enum {string} */
+ issues?: "read" | "write";
+ /** @enum {string} */
+ keys?: "read" | "write";
+ /** @enum {string} */
+ members?: "read" | "write";
+ /** @enum {string} */
+ metadata?: "read" | "write";
+ /** @enum {string} */
+ organization_administration?: "read" | "write";
+ /** @enum {string} */
+ organization_hooks?: "read" | "write";
+ /** @enum {string} */
+ organization_packages?: "read" | "write";
+ /** @enum {string} */
+ organization_plan?: "read" | "write";
+ /** @enum {string} */
+ organization_projects?: "read" | "write" | "admin";
+ /** @enum {string} */
+ organization_secrets?: "read" | "write";
+ /** @enum {string} */
+ organization_self_hosted_runners?: "read" | "write";
+ /** @enum {string} */
+ organization_user_blocking?: "read" | "write";
+ /** @enum {string} */
+ packages?: "read" | "write";
+ /** @enum {string} */
+ pages?: "read" | "write";
+ /** @enum {string} */
+ pull_requests?: "read" | "write";
+ /** @enum {string} */
+ repository_hooks?: "read" | "write";
+ /** @enum {string} */
+ repository_projects?: "read" | "write" | "admin";
+ /** @enum {string} */
+ secret_scanning_alerts?: "read" | "write";
+ /** @enum {string} */
+ secrets?: "read" | "write";
+ /** @enum {string} */
+ security_events?: "read" | "write";
+ /** @enum {string} */
+ security_scanning_alert?: "read" | "write";
+ /** @enum {string} */
+ single_file?: "read" | "write";
+ /** @enum {string} */
+ statuses?: "read" | "write";
+ /** @enum {string} */
+ team_discussions?: "read" | "write";
+ /** @enum {string} */
+ vulnerability_alerts?: "read" | "write";
+ /** @enum {string} */
+ workflows?: "read" | "write";
+ };
+ /** @description The slug name of the GitHub app */
+ slug?: string;
+ /** Format: date-time */
+ updated_at: string | null;
+ } | null;
+ pull_request?: {
+ /** Format: uri */
+ diff_url?: string;
+ /** Format: uri */
+ html_url?: string;
+ /** Format: date-time */
+ merged_at?: string | null;
+ /** Format: uri */
+ patch_url?: string;
+ /** Format: uri */
+ url?: string;
+ };
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /** Format: uri */
+ repository_url: string;
+ /**
+ * @description State of the issue; either 'open' or 'closed'
+ * @enum {string}
+ */
+ state?: "open" | "closed";
+ state_reason?: string | null;
+ /** Format: uri */
+ timeline_url?: string;
+ /** @description Title of the issue */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL for the issue
+ */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ } & {
+ active_lock_reason?: string | null;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees?: (Record | null)[];
+ author_association?: string;
+ body?: string | null;
+ closed_at?: string | null;
+ comments?: number;
+ comments_url?: string;
+ created_at?: string;
+ events_url?: string;
+ html_url?: string;
+ id?: number;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ labels_url?: string;
+ locked: boolean;
+ milestone?: Record | null;
+ node_id?: string;
+ number?: number;
+ performed_via_github_app?: Record | null;
+ reactions?: {
+ "+1"?: number;
+ "-1"?: number;
+ confused?: number;
+ eyes?: number;
+ heart?: number;
+ hooray?: number;
+ laugh?: number;
+ rocket?: number;
+ total_count?: number;
+ url?: string;
+ };
+ repository_url?: string;
+ /**
+ * @description State of the issue; either 'open' or 'closed'
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ timeline_url?: string;
+ title?: string;
+ updated_at?: string;
+ url?: string;
+ user?: {
+ avatar_url?: string;
+ events_url?: string;
+ followers_url?: string;
+ following_url?: string;
+ gists_url?: string;
+ gravatar_id?: string;
+ html_url?: string;
+ id?: number;
+ login?: string;
+ node_id?: string;
+ organizations_url?: string;
+ received_events_url?: string;
+ repos_url?: string;
+ site_admin?: boolean;
+ starred_url?: string;
+ subscriptions_url?: string;
+ type?: string;
+ url?: string;
+ };
+ };
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** issue_comment deleted event */
+ "webhook-issue-comment-deleted": {
+ /** @enum {string} */
+ action: "deleted";
+ comment: components["schemas"]["webhooks_issue_comment"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ /** @description The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. */
+ issue: {
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description Contents of the issue */
+ body: string | null;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments: number;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: date-time */
+ created_at: string;
+ draft?: boolean;
+ /** Format: uri */
+ events_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** Format: int64 */
+ id: number;
+ labels?: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ /** Format: uri-template */
+ labels_url: string;
+ locked?: boolean;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /**
+ * App
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ performed_via_github_app?: {
+ /** Format: date-time */
+ created_at: string | null;
+ description: string | null;
+ /** @description The list of events for the GitHub app */
+ events?: (
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "content_reference"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_review"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_dispatch"
+ | "secret_scanning_alert"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_dispatch"
+ | "workflow_run"
+ )[];
+ /** Format: uri */
+ external_url: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the GitHub app */
+ id: number | null;
+ /** @description The name of the GitHub app */
+ name: string;
+ node_id: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The set of permissions for the GitHub app */
+ permissions?: {
+ /** @enum {string} */
+ actions?: "read" | "write";
+ /** @enum {string} */
+ administration?: "read" | "write";
+ /** @enum {string} */
+ checks?: "read" | "write";
+ /** @enum {string} */
+ content_references?: "read" | "write";
+ /** @enum {string} */
+ contents?: "read" | "write";
+ /** @enum {string} */
+ deployments?: "read" | "write";
+ /** @enum {string} */
+ discussions?: "read" | "write";
+ /** @enum {string} */
+ emails?: "read" | "write";
+ /** @enum {string} */
+ environments?: "read" | "write";
+ /** @enum {string} */
+ issues?: "read" | "write";
+ /** @enum {string} */
+ keys?: "read" | "write";
+ /** @enum {string} */
+ members?: "read" | "write";
+ /** @enum {string} */
+ metadata?: "read" | "write";
+ /** @enum {string} */
+ organization_administration?: "read" | "write";
+ /** @enum {string} */
+ organization_hooks?: "read" | "write";
+ /** @enum {string} */
+ organization_packages?: "read" | "write";
+ /** @enum {string} */
+ organization_plan?: "read" | "write";
+ /** @enum {string} */
+ organization_projects?: "read" | "write";
+ /** @enum {string} */
+ organization_secrets?: "read" | "write";
+ /** @enum {string} */
+ organization_self_hosted_runners?: "read" | "write";
+ /** @enum {string} */
+ organization_user_blocking?: "read" | "write";
+ /** @enum {string} */
+ packages?: "read" | "write";
+ /** @enum {string} */
+ pages?: "read" | "write";
+ /** @enum {string} */
+ pull_requests?: "read" | "write";
+ /** @enum {string} */
+ repository_hooks?: "read" | "write";
+ /** @enum {string} */
+ repository_projects?: "read" | "write";
+ /** @enum {string} */
+ secret_scanning_alerts?: "read" | "write";
+ /** @enum {string} */
+ secrets?: "read" | "write";
+ /** @enum {string} */
+ security_events?: "read" | "write";
+ /** @enum {string} */
+ security_scanning_alert?: "read" | "write";
+ /** @enum {string} */
+ single_file?: "read" | "write";
+ /** @enum {string} */
+ statuses?: "read" | "write";
+ /** @enum {string} */
+ team_discussions?: "read" | "write";
+ /** @enum {string} */
+ vulnerability_alerts?: "read" | "write";
+ /** @enum {string} */
+ workflows?: "read" | "write";
+ };
+ /** @description The slug name of the GitHub app */
+ slug?: string;
+ /** Format: date-time */
+ updated_at: string | null;
+ } | null;
+ pull_request?: {
+ /** Format: uri */
+ diff_url?: string;
+ /** Format: uri */
+ html_url?: string;
+ /** Format: date-time */
+ merged_at?: string | null;
+ /** Format: uri */
+ patch_url?: string;
+ /** Format: uri */
+ url?: string;
+ };
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /** Format: uri */
+ repository_url: string;
+ /**
+ * @description State of the issue; either 'open' or 'closed'
+ * @enum {string}
+ */
+ state?: "open" | "closed";
+ state_reason?: string | null;
+ /** Format: uri */
+ timeline_url?: string;
+ /** @description Title of the issue */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL for the issue
+ */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ } & {
+ active_lock_reason?: string | null;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees?: (Record | null)[];
+ author_association?: string;
+ body?: string | null;
+ closed_at?: string | null;
+ comments?: number;
+ comments_url?: string;
+ created_at?: string;
+ events_url?: string;
+ html_url?: string;
+ id?: number;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ labels_url?: string;
+ locked: boolean;
+ milestone?: Record | null;
+ node_id?: string;
+ number?: number;
+ performed_via_github_app?: Record | null;
+ reactions?: {
+ "+1"?: number;
+ "-1"?: number;
+ confused?: number;
+ eyes?: number;
+ heart?: number;
+ hooray?: number;
+ laugh?: number;
+ rocket?: number;
+ total_count?: number;
+ url?: string;
+ };
+ repository_url?: string;
+ /**
+ * @description State of the issue; either 'open' or 'closed'
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ timeline_url?: string;
+ title?: string;
+ updated_at?: string;
+ url?: string;
+ user?: {
+ avatar_url?: string;
+ events_url?: string;
+ followers_url?: string;
+ following_url?: string;
+ gists_url?: string;
+ gravatar_id?: string;
+ html_url?: string;
+ id?: number;
+ login?: string;
+ node_id?: string;
+ organizations_url?: string;
+ received_events_url?: string;
+ repos_url?: string;
+ site_admin?: boolean;
+ starred_url?: string;
+ subscriptions_url?: string;
+ type?: string;
+ url?: string;
+ };
+ };
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** issue_comment edited event */
+ "webhook-issue-comment-edited": {
+ /** @enum {string} */
+ action: "edited";
+ changes: components["schemas"]["webhooks_changes"];
+ comment: components["schemas"]["webhooks_issue_comment"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ /** @description The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. */
+ issue: {
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description Contents of the issue */
+ body: string | null;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments: number;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: date-time */
+ created_at: string;
+ draft?: boolean;
+ /** Format: uri */
+ events_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** Format: int64 */
+ id: number;
+ labels?: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ /** Format: uri-template */
+ labels_url: string;
+ locked?: boolean;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /**
+ * App
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ performed_via_github_app?: {
+ /** Format: date-time */
+ created_at: string | null;
+ description: string | null;
+ /** @description The list of events for the GitHub app */
+ events?: (
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "content_reference"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_review"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_dispatch"
+ | "secret_scanning_alert"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_dispatch"
+ | "workflow_run"
+ | "reminder"
+ | "pull_request_review_thread"
+ )[];
+ /** Format: uri */
+ external_url: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the GitHub app */
+ id: number | null;
+ /** @description The name of the GitHub app */
+ name: string;
+ node_id: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The set of permissions for the GitHub app */
+ permissions?: {
+ /** @enum {string} */
+ actions?: "read" | "write";
+ /** @enum {string} */
+ administration?: "read" | "write";
+ /** @enum {string} */
+ checks?: "read" | "write";
+ /** @enum {string} */
+ content_references?: "read" | "write";
+ /** @enum {string} */
+ contents?: "read" | "write";
+ /** @enum {string} */
+ deployments?: "read" | "write";
+ /** @enum {string} */
+ discussions?: "read" | "write";
+ /** @enum {string} */
+ emails?: "read" | "write";
+ /** @enum {string} */
+ environments?: "read" | "write";
+ /** @enum {string} */
+ issues?: "read" | "write";
+ /** @enum {string} */
+ keys?: "read" | "write";
+ /** @enum {string} */
+ members?: "read" | "write";
+ /** @enum {string} */
+ metadata?: "read" | "write";
+ /** @enum {string} */
+ organization_administration?: "read" | "write";
+ /** @enum {string} */
+ organization_hooks?: "read" | "write";
+ /** @enum {string} */
+ organization_packages?: "read" | "write";
+ /** @enum {string} */
+ organization_plan?: "read" | "write";
+ /** @enum {string} */
+ organization_projects?: "read" | "write" | "admin";
+ /** @enum {string} */
+ organization_secrets?: "read" | "write";
+ /** @enum {string} */
+ organization_self_hosted_runners?: "read" | "write";
+ /** @enum {string} */
+ organization_user_blocking?: "read" | "write";
+ /** @enum {string} */
+ packages?: "read" | "write";
+ /** @enum {string} */
+ pages?: "read" | "write";
+ /** @enum {string} */
+ pull_requests?: "read" | "write";
+ /** @enum {string} */
+ repository_hooks?: "read" | "write";
+ /** @enum {string} */
+ repository_projects?: "read" | "write";
+ /** @enum {string} */
+ secret_scanning_alerts?: "read" | "write";
+ /** @enum {string} */
+ secrets?: "read" | "write";
+ /** @enum {string} */
+ security_events?: "read" | "write";
+ /** @enum {string} */
+ security_scanning_alert?: "read" | "write";
+ /** @enum {string} */
+ single_file?: "read" | "write";
+ /** @enum {string} */
+ statuses?: "read" | "write";
+ /** @enum {string} */
+ team_discussions?: "read" | "write";
+ /** @enum {string} */
+ vulnerability_alerts?: "read" | "write";
+ /** @enum {string} */
+ workflows?: "read" | "write";
+ };
+ /** @description The slug name of the GitHub app */
+ slug?: string;
+ /** Format: date-time */
+ updated_at: string | null;
+ } | null;
+ pull_request?: {
+ /** Format: uri */
+ diff_url?: string;
+ /** Format: uri */
+ html_url?: string;
+ /** Format: date-time */
+ merged_at?: string | null;
+ /** Format: uri */
+ patch_url?: string;
+ /** Format: uri */
+ url?: string;
+ };
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /** Format: uri */
+ repository_url: string;
+ /**
+ * @description State of the issue; either 'open' or 'closed'
+ * @enum {string}
+ */
+ state?: "open" | "closed";
+ state_reason?: string | null;
+ /** Format: uri */
+ timeline_url?: string;
+ /** @description Title of the issue */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL for the issue
+ */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ } & {
+ active_lock_reason?: string | null;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees?: (Record | null)[];
+ author_association?: string;
+ body?: string | null;
+ closed_at?: string | null;
+ comments?: number;
+ comments_url?: string;
+ created_at?: string;
+ events_url?: string;
+ html_url?: string;
+ id?: number;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ labels_url?: string;
+ locked: boolean;
+ milestone?: Record | null;
+ node_id?: string;
+ number?: number;
+ performed_via_github_app?: Record | null;
+ reactions?: {
+ "+1"?: number;
+ "-1"?: number;
+ confused?: number;
+ eyes?: number;
+ heart?: number;
+ hooray?: number;
+ laugh?: number;
+ rocket?: number;
+ total_count?: number;
+ url?: string;
+ };
+ repository_url?: string;
+ /**
+ * @description State of the issue; either 'open' or 'closed'
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ timeline_url?: string;
+ title?: string;
+ updated_at?: string;
+ url?: string;
+ user?: {
+ avatar_url?: string;
+ events_url?: string;
+ followers_url?: string;
+ following_url?: string;
+ gists_url?: string;
+ gravatar_id?: string;
+ html_url?: string;
+ id?: number;
+ login?: string;
+ node_id?: string;
+ organizations_url?: string;
+ received_events_url?: string;
+ repos_url?: string;
+ site_admin?: boolean;
+ starred_url?: string;
+ subscriptions_url?: string;
+ type?: string;
+ url?: string;
+ };
+ };
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** issues assigned event */
+ "webhook-issues-assigned": {
+ /**
+ * @description The action that was performed.
+ * @enum {string}
+ */
+ action: "assigned";
+ assignee?: components["schemas"]["webhooks_user"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ issue: components["schemas"]["webhooks_issue"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** issues closed event */
+ "webhook-issues-closed": {
+ /**
+ * @description The action that was performed.
+ * @enum {string}
+ */
+ action: "closed";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ /** @description The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. */
+ issue: {
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description Contents of the issue */
+ body: string | null;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments: number;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: date-time */
+ created_at: string;
+ draft?: boolean;
+ /** Format: uri */
+ events_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** Format: int64 */
+ id: number;
+ labels?: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ /** Format: uri-template */
+ labels_url: string;
+ locked?: boolean;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /**
+ * App
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ performed_via_github_app?: {
+ /** Format: date-time */
+ created_at: string | null;
+ description: string | null;
+ /** @description The list of events for the GitHub app */
+ events?: (
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "content_reference"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_review"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_dispatch"
+ | "secret_scanning_alert"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_dispatch"
+ | "workflow_run"
+ | "security_and_analysis"
+ | "reminder"
+ | "pull_request_review_thread"
+ )[];
+ /** Format: uri */
+ external_url: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the GitHub app */
+ id: number | null;
+ /** @description The name of the GitHub app */
+ name: string;
+ node_id: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The set of permissions for the GitHub app */
+ permissions?: {
+ /** @enum {string} */
+ actions?: "read" | "write";
+ /** @enum {string} */
+ administration?: "read" | "write";
+ /** @enum {string} */
+ checks?: "read" | "write";
+ /** @enum {string} */
+ content_references?: "read" | "write";
+ /** @enum {string} */
+ contents?: "read" | "write";
+ /** @enum {string} */
+ deployments?: "read" | "write";
+ /** @enum {string} */
+ discussions?: "read" | "write";
+ /** @enum {string} */
+ emails?: "read" | "write";
+ /** @enum {string} */
+ environments?: "read" | "write";
+ /** @enum {string} */
+ issues?: "read" | "write";
+ /** @enum {string} */
+ keys?: "read" | "write";
+ /** @enum {string} */
+ members?: "read" | "write";
+ /** @enum {string} */
+ metadata?: "read" | "write";
+ /** @enum {string} */
+ organization_administration?: "read" | "write";
+ /** @enum {string} */
+ organization_hooks?: "read" | "write";
+ /** @enum {string} */
+ organization_packages?: "read" | "write";
+ /** @enum {string} */
+ organization_plan?: "read" | "write";
+ /** @enum {string} */
+ organization_projects?: "read" | "write" | "admin";
+ /** @enum {string} */
+ organization_secrets?: "read" | "write";
+ /** @enum {string} */
+ organization_self_hosted_runners?: "read" | "write";
+ /** @enum {string} */
+ organization_user_blocking?: "read" | "write";
+ /** @enum {string} */
+ packages?: "read" | "write";
+ /** @enum {string} */
+ pages?: "read" | "write";
+ /** @enum {string} */
+ pull_requests?: "read" | "write";
+ /** @enum {string} */
+ repository_hooks?: "read" | "write";
+ /** @enum {string} */
+ repository_projects?: "read" | "write";
+ /** @enum {string} */
+ secret_scanning_alerts?: "read" | "write";
+ /** @enum {string} */
+ secrets?: "read" | "write";
+ /** @enum {string} */
+ security_events?: "read" | "write";
+ /** @enum {string} */
+ security_scanning_alert?: "read" | "write";
+ /** @enum {string} */
+ single_file?: "read" | "write";
+ /** @enum {string} */
+ statuses?: "read" | "write";
+ /** @enum {string} */
+ team_discussions?: "read" | "write";
+ /** @enum {string} */
+ vulnerability_alerts?: "read" | "write";
+ /** @enum {string} */
+ workflows?: "read" | "write";
+ };
+ /** @description The slug name of the GitHub app */
+ slug?: string;
+ /** Format: date-time */
+ updated_at: string | null;
+ } | null;
+ pull_request?: {
+ /** Format: uri */
+ diff_url?: string;
+ /** Format: uri */
+ html_url?: string;
+ /** Format: date-time */
+ merged_at?: string | null;
+ /** Format: uri */
+ patch_url?: string;
+ /** Format: uri */
+ url?: string;
+ };
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /** Format: uri */
+ repository_url: string;
+ /**
+ * @description State of the issue; either 'open' or 'closed'
+ * @enum {string}
+ */
+ state?: "open" | "closed";
+ state_reason?: string | null;
+ /** Format: uri */
+ timeline_url?: string;
+ /** @description Title of the issue */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL for the issue
+ */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ } & {
+ active_lock_reason?: string | null;
+ assignee?: Record | null;
+ assignees?: (Record | null)[];
+ author_association?: string;
+ body?: string | null;
+ closed_at: string | null;
+ comments?: number;
+ comments_url?: string;
+ created_at?: string;
+ events_url?: string;
+ html_url?: string;
+ id?: number;
+ labels?: (Record | null)[];
+ labels_url?: string;
+ locked?: boolean;
+ milestone?: Record | null;
+ node_id?: string;
+ number?: number;
+ performed_via_github_app?: Record | null;
+ reactions?: {
+ "+1"?: number;
+ "-1"?: number;
+ confused?: number;
+ eyes?: number;
+ heart?: number;
+ hooray?: number;
+ laugh?: number;
+ rocket?: number;
+ total_count?: number;
+ url?: string;
+ };
+ repository_url?: string;
+ /** @enum {string} */
+ state: "closed" | "open";
+ timeline_url?: string;
+ title?: string;
+ updated_at?: string;
+ url?: string;
+ user?: {
+ avatar_url?: string;
+ events_url?: string;
+ followers_url?: string;
+ following_url?: string;
+ gists_url?: string;
+ gravatar_id?: string;
+ html_url?: string;
+ id?: number;
+ login?: string;
+ node_id?: string;
+ organizations_url?: string;
+ received_events_url?: string;
+ repos_url?: string;
+ site_admin?: boolean;
+ starred_url?: string;
+ subscriptions_url?: string;
+ type?: string;
+ url?: string;
+ };
+ };
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** issues deleted event */
+ "webhook-issues-deleted": {
+ /** @enum {string} */
+ action: "deleted";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ /**
+ * Issue
+ * @description The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself.
+ */
+ issue: {
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description Contents of the issue */
+ body: string | null;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments: number;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: date-time */
+ created_at: string;
+ draft?: boolean;
+ /** Format: uri */
+ events_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** Format: int64 */
+ id: number;
+ labels?: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ /** Format: uri-template */
+ labels_url: string;
+ locked?: boolean;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /**
+ * App
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ performed_via_github_app?: {
+ /** Format: date-time */
+ created_at: string | null;
+ description: string | null;
+ /** @description The list of events for the GitHub app */
+ events?: (
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "content_reference"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_review"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_dispatch"
+ | "secret_scanning_alert"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_dispatch"
+ | "workflow_run"
+ | "reminder"
+ )[];
+ /** Format: uri */
+ external_url: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the GitHub app */
+ id: number | null;
+ /** @description The name of the GitHub app */
+ name: string;
+ node_id: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The set of permissions for the GitHub app */
+ permissions?: {
+ /** @enum {string} */
+ actions?: "read" | "write";
+ /** @enum {string} */
+ administration?: "read" | "write";
+ /** @enum {string} */
+ checks?: "read" | "write";
+ /** @enum {string} */
+ content_references?: "read" | "write";
+ /** @enum {string} */
+ contents?: "read" | "write";
+ /** @enum {string} */
+ deployments?: "read" | "write";
+ /** @enum {string} */
+ discussions?: "read" | "write";
+ /** @enum {string} */
+ emails?: "read" | "write";
+ /** @enum {string} */
+ environments?: "read" | "write";
+ /** @enum {string} */
+ issues?: "read" | "write";
+ /** @enum {string} */
+ keys?: "read" | "write";
+ /** @enum {string} */
+ members?: "read" | "write";
+ /** @enum {string} */
+ metadata?: "read" | "write";
+ /** @enum {string} */
+ organization_administration?: "read" | "write";
+ /** @enum {string} */
+ organization_hooks?: "read" | "write";
+ /** @enum {string} */
+ organization_packages?: "read" | "write";
+ /** @enum {string} */
+ organization_plan?: "read" | "write";
+ /** @enum {string} */
+ organization_projects?: "read" | "write";
+ /** @enum {string} */
+ organization_secrets?: "read" | "write";
+ /** @enum {string} */
+ organization_self_hosted_runners?: "read" | "write";
+ /** @enum {string} */
+ organization_user_blocking?: "read" | "write";
+ /** @enum {string} */
+ packages?: "read" | "write";
+ /** @enum {string} */
+ pages?: "read" | "write";
+ /** @enum {string} */
+ pull_requests?: "read" | "write";
+ /** @enum {string} */
+ repository_hooks?: "read" | "write";
+ /** @enum {string} */
+ repository_projects?: "read" | "write";
+ /** @enum {string} */
+ secret_scanning_alerts?: "read" | "write";
+ /** @enum {string} */
+ secrets?: "read" | "write";
+ /** @enum {string} */
+ security_events?: "read" | "write";
+ /** @enum {string} */
+ security_scanning_alert?: "read" | "write";
+ /** @enum {string} */
+ single_file?: "read" | "write";
+ /** @enum {string} */
+ statuses?: "read" | "write";
+ /** @enum {string} */
+ team_discussions?: "read" | "write";
+ /** @enum {string} */
+ vulnerability_alerts?: "read" | "write";
+ /** @enum {string} */
+ workflows?: "read" | "write";
+ };
+ /** @description The slug name of the GitHub app */
+ slug?: string;
+ /** Format: date-time */
+ updated_at: string | null;
+ } | null;
+ pull_request?: {
+ /** Format: uri */
+ diff_url?: string;
+ /** Format: uri */
+ html_url?: string;
+ /** Format: date-time */
+ merged_at?: string | null;
+ /** Format: uri */
+ patch_url?: string;
+ /** Format: uri */
+ url?: string;
+ };
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /** Format: uri */
+ repository_url: string;
+ /**
+ * @description State of the issue; either 'open' or 'closed'
+ * @enum {string}
+ */
+ state?: "open" | "closed";
+ state_reason?: string | null;
+ /** Format: uri */
+ timeline_url?: string;
+ /** @description Title of the issue */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL for the issue
+ */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** issues demilestoned event */
+ "webhook-issues-demilestoned": {
+ /** @enum {string} */
+ action: "demilestoned";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ /**
+ * Issue
+ * @description The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself.
+ */
+ issue: {
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description Contents of the issue */
+ body: string | null;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments: number;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: date-time */
+ created_at: string;
+ draft?: boolean;
+ /** Format: uri */
+ events_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** Format: int64 */
+ id: number;
+ labels?: ({
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ } | null)[];
+ /** Format: uri-template */
+ labels_url: string;
+ locked?: boolean;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /**
+ * App
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ performed_via_github_app?: {
+ /** Format: date-time */
+ created_at: string | null;
+ description: string | null;
+ /** @description The list of events for the GitHub app */
+ events?: (
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "content_reference"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_review"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_dispatch"
+ | "secret_scanning_alert"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_dispatch"
+ | "workflow_run"
+ )[];
+ /** Format: uri */
+ external_url: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the GitHub app */
+ id: number | null;
+ /** @description The name of the GitHub app */
+ name: string;
+ node_id: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The set of permissions for the GitHub app */
+ permissions?: {
+ /** @enum {string} */
+ actions?: "read" | "write";
+ /** @enum {string} */
+ administration?: "read" | "write";
+ /** @enum {string} */
+ checks?: "read" | "write";
+ /** @enum {string} */
+ content_references?: "read" | "write";
+ /** @enum {string} */
+ contents?: "read" | "write";
+ /** @enum {string} */
+ deployments?: "read" | "write";
+ /** @enum {string} */
+ discussions?: "read" | "write";
+ /** @enum {string} */
+ emails?: "read" | "write";
+ /** @enum {string} */
+ environments?: "read" | "write";
+ /** @enum {string} */
+ issues?: "read" | "write";
+ /** @enum {string} */
+ keys?: "read" | "write";
+ /** @enum {string} */
+ members?: "read" | "write";
+ /** @enum {string} */
+ metadata?: "read" | "write";
+ /** @enum {string} */
+ organization_administration?: "read" | "write";
+ /** @enum {string} */
+ organization_hooks?: "read" | "write";
+ /** @enum {string} */
+ organization_packages?: "read" | "write";
+ /** @enum {string} */
+ organization_plan?: "read" | "write";
+ /** @enum {string} */
+ organization_projects?: "read" | "write" | "admin";
+ /** @enum {string} */
+ organization_secrets?: "read" | "write";
+ /** @enum {string} */
+ organization_self_hosted_runners?: "read" | "write";
+ /** @enum {string} */
+ organization_user_blocking?: "read" | "write";
+ /** @enum {string} */
+ packages?: "read" | "write";
+ /** @enum {string} */
+ pages?: "read" | "write";
+ /** @enum {string} */
+ pull_requests?: "read" | "write";
+ /** @enum {string} */
+ repository_hooks?: "read" | "write";
+ /** @enum {string} */
+ repository_projects?: "read" | "write";
+ /** @enum {string} */
+ secret_scanning_alerts?: "read" | "write";
+ /** @enum {string} */
+ secrets?: "read" | "write";
+ /** @enum {string} */
+ security_events?: "read" | "write";
+ /** @enum {string} */
+ security_scanning_alert?: "read" | "write";
+ /** @enum {string} */
+ single_file?: "read" | "write";
+ /** @enum {string} */
+ statuses?: "read" | "write";
+ /** @enum {string} */
+ team_discussions?: "read" | "write";
+ /** @enum {string} */
+ vulnerability_alerts?: "read" | "write";
+ /** @enum {string} */
+ workflows?: "read" | "write";
+ };
+ /** @description The slug name of the GitHub app */
+ slug?: string;
+ /** Format: date-time */
+ updated_at: string | null;
+ } | null;
+ pull_request?: {
+ /** Format: uri */
+ diff_url?: string;
+ /** Format: uri */
+ html_url?: string;
+ /** Format: date-time */
+ merged_at?: string | null;
+ /** Format: uri */
+ patch_url?: string;
+ /** Format: uri */
+ url?: string;
+ };
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /** Format: uri */
+ repository_url: string;
+ /**
+ * @description State of the issue; either 'open' or 'closed'
+ * @enum {string}
+ */
+ state?: "open" | "closed";
+ state_reason?: string | null;
+ /** Format: uri */
+ timeline_url?: string;
+ /** @description Title of the issue */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL for the issue
+ */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ milestone?: components["schemas"]["webhooks_milestone"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** issues edited event */
+ "webhook-issues-edited": {
+ /** @enum {string} */
+ action: "edited";
+ /** @description The changes to the issue. */
+ changes: {
+ body?: {
+ /** @description The previous version of the body. */
+ from: string;
+ };
+ title?: {
+ /** @description The previous version of the title. */
+ from: string;
+ };
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ /**
+ * Issue
+ * @description The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself.
+ */
+ issue: {
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description Contents of the issue */
+ body: string | null;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments: number;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: date-time */
+ created_at: string;
+ draft?: boolean;
+ /** Format: uri */
+ events_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** Format: int64 */
+ id: number;
+ labels?: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ /** Format: uri-template */
+ labels_url: string;
+ locked?: boolean;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /**
+ * App
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ performed_via_github_app?: {
+ /** Format: date-time */
+ created_at: string | null;
+ description: string | null;
+ /** @description The list of events for the GitHub app */
+ events?: (
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "content_reference"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_review"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_dispatch"
+ | "secret_scanning_alert"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_dispatch"
+ | "workflow_run"
+ | "security_and_analysis"
+ | "pull_request_review_thread"
+ | "reminder"
+ )[];
+ /** Format: uri */
+ external_url: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the GitHub app */
+ id: number | null;
+ /** @description The name of the GitHub app */
+ name: string;
+ node_id: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The set of permissions for the GitHub app */
+ permissions?: {
+ /** @enum {string} */
+ actions?: "read" | "write";
+ /** @enum {string} */
+ administration?: "read" | "write";
+ /** @enum {string} */
+ checks?: "read" | "write";
+ /** @enum {string} */
+ content_references?: "read" | "write";
+ /** @enum {string} */
+ contents?: "read" | "write";
+ /** @enum {string} */
+ deployments?: "read" | "write";
+ /** @enum {string} */
+ discussions?: "read" | "write";
+ /** @enum {string} */
+ emails?: "read" | "write";
+ /** @enum {string} */
+ environments?: "read" | "write";
+ /** @enum {string} */
+ issues?: "read" | "write";
+ /** @enum {string} */
+ keys?: "read" | "write";
+ /** @enum {string} */
+ members?: "read" | "write";
+ /** @enum {string} */
+ metadata?: "read" | "write";
+ /** @enum {string} */
+ organization_administration?: "read" | "write";
+ /** @enum {string} */
+ organization_hooks?: "read" | "write";
+ /** @enum {string} */
+ organization_packages?: "read" | "write";
+ /** @enum {string} */
+ organization_plan?: "read" | "write";
+ /** @enum {string} */
+ organization_projects?: "read" | "write" | "admin";
+ /** @enum {string} */
+ organization_secrets?: "read" | "write";
+ /** @enum {string} */
+ organization_self_hosted_runners?: "read" | "write";
+ /** @enum {string} */
+ organization_user_blocking?: "read" | "write";
+ /** @enum {string} */
+ packages?: "read" | "write";
+ /** @enum {string} */
+ pages?: "read" | "write";
+ /** @enum {string} */
+ pull_requests?: "read" | "write";
+ /** @enum {string} */
+ repository_hooks?: "read" | "write";
+ /** @enum {string} */
+ repository_projects?: "read" | "write";
+ /** @enum {string} */
+ secret_scanning_alerts?: "read" | "write";
+ /** @enum {string} */
+ secrets?: "read" | "write";
+ /** @enum {string} */
+ security_events?: "read" | "write";
+ /** @enum {string} */
+ security_scanning_alert?: "read" | "write";
+ /** @enum {string} */
+ single_file?: "read" | "write";
+ /** @enum {string} */
+ statuses?: "read" | "write";
+ /** @enum {string} */
+ team_discussions?: "read" | "write";
+ /** @enum {string} */
+ vulnerability_alerts?: "read" | "write";
+ /** @enum {string} */
+ workflows?: "read" | "write";
+ };
+ /** @description The slug name of the GitHub app */
+ slug?: string;
+ /** Format: date-time */
+ updated_at: string | null;
+ } | null;
+ pull_request?: {
+ /** Format: uri */
+ diff_url?: string;
+ /** Format: uri */
+ html_url?: string;
+ /** Format: date-time */
+ merged_at?: string | null;
+ /** Format: uri */
+ patch_url?: string;
+ /** Format: uri */
+ url?: string;
+ };
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /** Format: uri */
+ repository_url: string;
+ /**
+ * @description State of the issue; either 'open' or 'closed'
+ * @enum {string}
+ */
+ state?: "open" | "closed";
+ state_reason?: string | null;
+ /** Format: uri */
+ timeline_url?: string;
+ /** @description Title of the issue */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL for the issue
+ */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ label?: components["schemas"]["webhooks_label"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** issues labeled event */
+ "webhook-issues-labeled": {
+ /** @enum {string} */
+ action: "labeled";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ /**
+ * Issue
+ * @description The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself.
+ */
+ issue: {
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description Contents of the issue */
+ body: string | null;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments: number;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: date-time */
+ created_at: string;
+ draft?: boolean;
+ /** Format: uri */
+ events_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** Format: int64 */
+ id: number;
+ labels?: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ /** Format: uri-template */
+ labels_url: string;
+ locked?: boolean;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /**
+ * App
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ performed_via_github_app?: {
+ /** Format: date-time */
+ created_at: string | null;
+ description: string | null;
+ /** @description The list of events for the GitHub app */
+ events?: (
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "content_reference"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_review"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_dispatch"
+ | "secret_scanning_alert"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_dispatch"
+ | "workflow_run"
+ | "pull_request_review_thread"
+ | "reminder"
+ )[];
+ /** Format: uri */
+ external_url: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the GitHub app */
+ id: number | null;
+ /** @description The name of the GitHub app */
+ name: string;
+ node_id: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The set of permissions for the GitHub app */
+ permissions?: {
+ /** @enum {string} */
+ actions?: "read" | "write";
+ /** @enum {string} */
+ administration?: "read" | "write";
+ /** @enum {string} */
+ checks?: "read" | "write";
+ /** @enum {string} */
+ content_references?: "read" | "write";
+ /** @enum {string} */
+ contents?: "read" | "write";
+ /** @enum {string} */
+ deployments?: "read" | "write";
+ /** @enum {string} */
+ discussions?: "read" | "write";
+ /** @enum {string} */
+ emails?: "read" | "write";
+ /** @enum {string} */
+ environments?: "read" | "write";
+ /** @enum {string} */
+ issues?: "read" | "write";
+ /** @enum {string} */
+ keys?: "read" | "write";
+ /** @enum {string} */
+ members?: "read" | "write";
+ /** @enum {string} */
+ metadata?: "read" | "write";
+ /** @enum {string} */
+ organization_administration?: "read" | "write";
+ /** @enum {string} */
+ organization_hooks?: "read" | "write";
+ /** @enum {string} */
+ organization_packages?: "read" | "write";
+ /** @enum {string} */
+ organization_plan?: "read" | "write";
+ /** @enum {string} */
+ organization_projects?: "read" | "write" | "admin";
+ /** @enum {string} */
+ organization_secrets?: "read" | "write";
+ /** @enum {string} */
+ organization_self_hosted_runners?: "read" | "write";
+ /** @enum {string} */
+ organization_user_blocking?: "read" | "write";
+ /** @enum {string} */
+ packages?: "read" | "write";
+ /** @enum {string} */
+ pages?: "read" | "write";
+ /** @enum {string} */
+ pull_requests?: "read" | "write";
+ /** @enum {string} */
+ repository_hooks?: "read" | "write";
+ /** @enum {string} */
+ repository_projects?: "read" | "write";
+ /** @enum {string} */
+ secret_scanning_alerts?: "read" | "write";
+ /** @enum {string} */
+ secrets?: "read" | "write";
+ /** @enum {string} */
+ security_events?: "read" | "write";
+ /** @enum {string} */
+ security_scanning_alert?: "read" | "write";
+ /** @enum {string} */
+ single_file?: "read" | "write";
+ /** @enum {string} */
+ statuses?: "read" | "write";
+ /** @enum {string} */
+ team_discussions?: "read" | "write";
+ /** @enum {string} */
+ vulnerability_alerts?: "read" | "write";
+ /** @enum {string} */
+ workflows?: "read" | "write";
+ };
+ /** @description The slug name of the GitHub app */
+ slug?: string;
+ /** Format: date-time */
+ updated_at: string | null;
+ } | null;
+ pull_request?: {
+ /** Format: uri */
+ diff_url?: string;
+ /** Format: uri */
+ html_url?: string;
+ /** Format: date-time */
+ merged_at?: string | null;
+ /** Format: uri */
+ patch_url?: string;
+ /** Format: uri */
+ url?: string;
+ };
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /** Format: uri */
+ repository_url: string;
+ /**
+ * @description State of the issue; either 'open' or 'closed'
+ * @enum {string}
+ */
+ state?: "open" | "closed";
+ state_reason?: string | null;
+ /** Format: uri */
+ timeline_url?: string;
+ /** @description Title of the issue */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL for the issue
+ */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ label?: components["schemas"]["webhooks_label"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** issues locked event */
+ "webhook-issues-locked": {
+ /** @enum {string} */
+ action: "locked";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ /**
+ * Issue
+ * @description The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself.
+ */
+ issue: {
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description Contents of the issue */
+ body: string | null;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments: number;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: date-time */
+ created_at: string;
+ draft?: boolean;
+ /** Format: uri */
+ events_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** Format: int64 */
+ id: number;
+ labels?: ({
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ } | null)[];
+ /** Format: uri-template */
+ labels_url: string;
+ /** @enum {boolean} */
+ locked: true;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /**
+ * App
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ performed_via_github_app?: {
+ /** Format: date-time */
+ created_at: string | null;
+ description: string | null;
+ /** @description The list of events for the GitHub app */
+ events?: (
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "content_reference"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_review"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_dispatch"
+ | "secret_scanning_alert"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_dispatch"
+ | "workflow_run"
+ | "reminder"
+ | "security_and_analysis"
+ )[];
+ /** Format: uri */
+ external_url: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the GitHub app */
+ id: number | null;
+ /** @description The name of the GitHub app */
+ name: string;
+ node_id: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The set of permissions for the GitHub app */
+ permissions?: {
+ /** @enum {string} */
+ actions?: "read" | "write";
+ /** @enum {string} */
+ administration?: "read" | "write";
+ /** @enum {string} */
+ checks?: "read" | "write";
+ /** @enum {string} */
+ content_references?: "read" | "write";
+ /** @enum {string} */
+ contents?: "read" | "write";
+ /** @enum {string} */
+ deployments?: "read" | "write";
+ /** @enum {string} */
+ discussions?: "read" | "write";
+ /** @enum {string} */
+ emails?: "read" | "write";
+ /** @enum {string} */
+ environments?: "read" | "write";
+ /** @enum {string} */
+ issues?: "read" | "write";
+ /** @enum {string} */
+ keys?: "read" | "write";
+ /** @enum {string} */
+ members?: "read" | "write";
+ /** @enum {string} */
+ metadata?: "read" | "write";
+ /** @enum {string} */
+ organization_administration?: "read" | "write";
+ /** @enum {string} */
+ organization_hooks?: "read" | "write";
+ /** @enum {string} */
+ organization_packages?: "read" | "write";
+ /** @enum {string} */
+ organization_plan?: "read" | "write";
+ /** @enum {string} */
+ organization_projects?: "read" | "write";
+ /** @enum {string} */
+ organization_secrets?: "read" | "write";
+ /** @enum {string} */
+ organization_self_hosted_runners?: "read" | "write";
+ /** @enum {string} */
+ organization_user_blocking?: "read" | "write";
+ /** @enum {string} */
+ packages?: "read" | "write";
+ /** @enum {string} */
+ pages?: "read" | "write";
+ /** @enum {string} */
+ pull_requests?: "read" | "write";
+ /** @enum {string} */
+ repository_hooks?: "read" | "write";
+ /** @enum {string} */
+ repository_projects?: "read" | "write";
+ /** @enum {string} */
+ secret_scanning_alerts?: "read" | "write";
+ /** @enum {string} */
+ secrets?: "read" | "write";
+ /** @enum {string} */
+ security_events?: "read" | "write";
+ /** @enum {string} */
+ security_scanning_alert?: "read" | "write";
+ /** @enum {string} */
+ single_file?: "read" | "write";
+ /** @enum {string} */
+ statuses?: "read" | "write";
+ /** @enum {string} */
+ team_discussions?: "read" | "write";
+ /** @enum {string} */
+ vulnerability_alerts?: "read" | "write";
+ /** @enum {string} */
+ workflows?: "read" | "write";
+ };
+ /** @description The slug name of the GitHub app */
+ slug?: string;
+ /** Format: date-time */
+ updated_at: string | null;
+ } | null;
+ pull_request?: {
+ /** Format: uri */
+ diff_url?: string;
+ /** Format: uri */
+ html_url?: string;
+ /** Format: date-time */
+ merged_at?: string | null;
+ /** Format: uri */
+ patch_url?: string;
+ /** Format: uri */
+ url?: string;
+ };
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /** Format: uri */
+ repository_url: string;
+ /**
+ * @description State of the issue; either 'open' or 'closed'
+ * @enum {string}
+ */
+ state?: "open" | "closed";
+ state_reason?: string | null;
+ /** Format: uri */
+ timeline_url?: string;
+ /** @description Title of the issue */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL for the issue
+ */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** issues milestoned event */
+ "webhook-issues-milestoned": {
+ /** @enum {string} */
+ action: "milestoned";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ /**
+ * Issue
+ * @description The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself.
+ */
+ issue: {
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description Contents of the issue */
+ body: string | null;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments: number;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: date-time */
+ created_at: string;
+ draft?: boolean;
+ /** Format: uri */
+ events_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** Format: int64 */
+ id: number;
+ labels?: ({
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ } | null)[];
+ /** Format: uri-template */
+ labels_url: string;
+ locked?: boolean;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /**
+ * App
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ performed_via_github_app?: {
+ /** Format: date-time */
+ created_at: string | null;
+ description: string | null;
+ /** @description The list of events for the GitHub app */
+ events?: (
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "content_reference"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_review"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_dispatch"
+ | "secret_scanning_alert"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_dispatch"
+ | "workflow_run"
+ | "reminder"
+ )[];
+ /** Format: uri */
+ external_url: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the GitHub app */
+ id: number | null;
+ /** @description The name of the GitHub app */
+ name: string;
+ node_id: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The set of permissions for the GitHub app */
+ permissions?: {
+ /** @enum {string} */
+ actions?: "read" | "write";
+ /** @enum {string} */
+ administration?: "read" | "write";
+ /** @enum {string} */
+ checks?: "read" | "write";
+ /** @enum {string} */
+ content_references?: "read" | "write";
+ /** @enum {string} */
+ contents?: "read" | "write";
+ /** @enum {string} */
+ deployments?: "read" | "write";
+ /** @enum {string} */
+ discussions?: "read" | "write";
+ /** @enum {string} */
+ emails?: "read" | "write";
+ /** @enum {string} */
+ environments?: "read" | "write";
+ /** @enum {string} */
+ issues?: "read" | "write";
+ /** @enum {string} */
+ keys?: "read" | "write";
+ /** @enum {string} */
+ members?: "read" | "write";
+ /** @enum {string} */
+ metadata?: "read" | "write";
+ /** @enum {string} */
+ organization_administration?: "read" | "write";
+ /** @enum {string} */
+ organization_hooks?: "read" | "write";
+ /** @enum {string} */
+ organization_packages?: "read" | "write";
+ /** @enum {string} */
+ organization_plan?: "read" | "write";
+ /** @enum {string} */
+ organization_projects?: "read" | "write" | "admin";
+ /** @enum {string} */
+ organization_secrets?: "read" | "write";
+ /** @enum {string} */
+ organization_self_hosted_runners?: "read" | "write";
+ /** @enum {string} */
+ organization_user_blocking?: "read" | "write";
+ /** @enum {string} */
+ packages?: "read" | "write";
+ /** @enum {string} */
+ pages?: "read" | "write";
+ /** @enum {string} */
+ pull_requests?: "read" | "write";
+ /** @enum {string} */
+ repository_hooks?: "read" | "write";
+ /** @enum {string} */
+ repository_projects?: "read" | "write";
+ /** @enum {string} */
+ secret_scanning_alerts?: "read" | "write";
+ /** @enum {string} */
+ secrets?: "read" | "write";
+ /** @enum {string} */
+ security_events?: "read" | "write";
+ /** @enum {string} */
+ security_scanning_alert?: "read" | "write";
+ /** @enum {string} */
+ single_file?: "read" | "write";
+ /** @enum {string} */
+ statuses?: "read" | "write";
+ /** @enum {string} */
+ team_discussions?: "read" | "write";
+ /** @enum {string} */
+ vulnerability_alerts?: "read" | "write";
+ /** @enum {string} */
+ workflows?: "read" | "write";
+ };
+ /** @description The slug name of the GitHub app */
+ slug?: string;
+ /** Format: date-time */
+ updated_at: string | null;
+ } | null;
+ pull_request?: {
+ /** Format: uri */
+ diff_url?: string;
+ /** Format: uri */
+ html_url?: string;
+ /** Format: date-time */
+ merged_at?: string | null;
+ /** Format: uri */
+ patch_url?: string;
+ /** Format: uri */
+ url?: string;
+ };
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /** Format: uri */
+ repository_url: string;
+ /**
+ * @description State of the issue; either 'open' or 'closed'
+ * @enum {string}
+ */
+ state?: "open" | "closed";
+ state_reason?: string | null;
+ /** Format: uri */
+ timeline_url?: string;
+ /** @description Title of the issue */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL for the issue
+ */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ milestone: components["schemas"]["webhooks_milestone"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** issues opened event */
+ "webhook-issues-opened": {
+ /** @enum {string} */
+ action: "opened";
+ changes?: {
+ /**
+ * Issue
+ * @description The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself.
+ */
+ old_issue: {
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description Contents of the issue */
+ body: string | null;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments: number;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: date-time */
+ created_at: string;
+ draft?: boolean;
+ /** Format: uri */
+ events_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** Format: int64 */
+ id: number;
+ labels?: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ /** Format: uri-template */
+ labels_url: string;
+ locked?: boolean;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /**
+ * App
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ performed_via_github_app?: {
+ /** Format: date-time */
+ created_at: string | null;
+ description: string | null;
+ /** @description The list of events for the GitHub app */
+ events?: (
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "content_reference"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_review"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_dispatch"
+ | "secret_scanning_alert"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_dispatch"
+ | "workflow_run"
+ )[];
+ /** Format: uri */
+ external_url: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the GitHub app */
+ id: number | null;
+ /** @description The name of the GitHub app */
+ name: string;
+ node_id: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The set of permissions for the GitHub app */
+ permissions?: {
+ /** @enum {string} */
+ actions?: "read" | "write";
+ /** @enum {string} */
+ administration?: "read" | "write";
+ /** @enum {string} */
+ checks?: "read" | "write";
+ /** @enum {string} */
+ content_references?: "read" | "write";
+ /** @enum {string} */
+ contents?: "read" | "write";
+ /** @enum {string} */
+ deployments?: "read" | "write";
+ /** @enum {string} */
+ discussions?: "read" | "write";
+ /** @enum {string} */
+ emails?: "read" | "write";
+ /** @enum {string} */
+ environments?: "read" | "write";
+ /** @enum {string} */
+ issues?: "read" | "write";
+ /** @enum {string} */
+ keys?: "read" | "write";
+ /** @enum {string} */
+ members?: "read" | "write";
+ /** @enum {string} */
+ metadata?: "read" | "write";
+ /** @enum {string} */
+ organization_administration?: "read" | "write";
+ /** @enum {string} */
+ organization_hooks?: "read" | "write";
+ /** @enum {string} */
+ organization_packages?: "read" | "write";
+ /** @enum {string} */
+ organization_plan?: "read" | "write";
+ /** @enum {string} */
+ organization_projects?: "read" | "write";
+ /** @enum {string} */
+ organization_secrets?: "read" | "write";
+ /** @enum {string} */
+ organization_self_hosted_runners?: "read" | "write";
+ /** @enum {string} */
+ organization_user_blocking?: "read" | "write";
+ /** @enum {string} */
+ packages?: "read" | "write";
+ /** @enum {string} */
+ pages?: "read" | "write";
+ /** @enum {string} */
+ pull_requests?: "read" | "write";
+ /** @enum {string} */
+ repository_hooks?: "read" | "write";
+ /** @enum {string} */
+ repository_projects?: "read" | "write";
+ /** @enum {string} */
+ secret_scanning_alerts?: "read" | "write";
+ /** @enum {string} */
+ secrets?: "read" | "write";
+ /** @enum {string} */
+ security_events?: "read" | "write";
+ /** @enum {string} */
+ security_scanning_alert?: "read" | "write";
+ /** @enum {string} */
+ single_file?: "read" | "write";
+ /** @enum {string} */
+ statuses?: "read" | "write";
+ /** @enum {string} */
+ team_discussions?: "read" | "write";
+ /** @enum {string} */
+ vulnerability_alerts?: "read" | "write";
+ /** @enum {string} */
+ workflows?: "read" | "write";
+ };
+ /** @description The slug name of the GitHub app */
+ slug?: string;
+ /** Format: date-time */
+ updated_at: string | null;
+ } | null;
+ pull_request?: {
+ /** Format: uri */
+ diff_url?: string;
+ /** Format: uri */
+ html_url?: string;
+ /** Format: date-time */
+ merged_at?: string | null;
+ /** Format: uri */
+ patch_url?: string;
+ /** Format: uri */
+ url?: string;
+ };
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /** Format: uri */
+ repository_url: string;
+ /**
+ * @description State of the issue; either 'open' or 'closed'
+ * @enum {string}
+ */
+ state?: "open" | "closed";
+ state_reason?: string | null;
+ /** Format: uri */
+ timeline_url?: string;
+ /** @description Title of the issue */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL for the issue
+ */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ } | null;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ old_repository: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. */
+ custom_properties?: {
+ [key: string]: unknown;
+ };
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /** @description Whether the repository has discussions enabled. */
+ has_discussions?: boolean;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require commit signoff. */
+ web_commit_signoff_required?: boolean;
+ };
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ /**
+ * Issue
+ * @description The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself.
+ */
+ issue: {
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description Contents of the issue */
+ body: string | null;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments: number;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: date-time */
+ created_at: string;
+ draft?: boolean;
+ /** Format: uri */
+ events_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** Format: int64 */
+ id: number;
+ labels?: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ /** Format: uri-template */
+ labels_url: string;
+ locked?: boolean;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /**
+ * App
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ performed_via_github_app?: {
+ /** Format: date-time */
+ created_at: string | null;
+ description: string | null;
+ /** @description The list of events for the GitHub app */
+ events?: (
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "content_reference"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_review"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_dispatch"
+ | "secret_scanning_alert"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_dispatch"
+ | "workflow_run"
+ | "security_and_analysis"
+ | "pull_request_review_thread"
+ | "reminder"
+ )[];
+ /** Format: uri */
+ external_url: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the GitHub app */
+ id: number | null;
+ /** @description The name of the GitHub app */
+ name: string;
+ node_id: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The set of permissions for the GitHub app */
+ permissions?: {
+ /** @enum {string} */
+ actions?: "read" | "write";
+ /** @enum {string} */
+ administration?: "read" | "write";
+ /** @enum {string} */
+ checks?: "read" | "write";
+ /** @enum {string} */
+ content_references?: "read" | "write";
+ /** @enum {string} */
+ contents?: "read" | "write";
+ /** @enum {string} */
+ deployments?: "read" | "write";
+ /** @enum {string} */
+ discussions?: "read" | "write";
+ /** @enum {string} */
+ emails?: "read" | "write";
+ /** @enum {string} */
+ environments?: "read" | "write";
+ /** @enum {string} */
+ issues?: "read" | "write";
+ /** @enum {string} */
+ keys?: "read" | "write";
+ /** @enum {string} */
+ members?: "read" | "write";
+ /** @enum {string} */
+ metadata?: "read" | "write";
+ /** @enum {string} */
+ organization_administration?: "read" | "write";
+ /** @enum {string} */
+ organization_hooks?: "read" | "write";
+ /** @enum {string} */
+ organization_packages?: "read" | "write";
+ /** @enum {string} */
+ organization_plan?: "read" | "write";
+ /** @enum {string} */
+ organization_projects?: "read" | "write" | "admin";
+ /** @enum {string} */
+ organization_secrets?: "read" | "write";
+ /** @enum {string} */
+ organization_self_hosted_runners?: "read" | "write";
+ /** @enum {string} */
+ organization_user_blocking?: "read" | "write";
+ /** @enum {string} */
+ packages?: "read" | "write";
+ /** @enum {string} */
+ pages?: "read" | "write";
+ /** @enum {string} */
+ pull_requests?: "read" | "write";
+ /** @enum {string} */
+ repository_hooks?: "read" | "write";
+ /** @enum {string} */
+ repository_projects?: "read" | "write";
+ /** @enum {string} */
+ secret_scanning_alerts?: "read" | "write";
+ /** @enum {string} */
+ secrets?: "read" | "write";
+ /** @enum {string} */
+ security_events?: "read" | "write";
+ /** @enum {string} */
+ security_scanning_alert?: "read" | "write";
+ /** @enum {string} */
+ single_file?: "read" | "write";
+ /** @enum {string} */
+ statuses?: "read" | "write";
+ /** @enum {string} */
+ team_discussions?: "read" | "write";
+ /** @enum {string} */
+ vulnerability_alerts?: "read" | "write";
+ /** @enum {string} */
+ workflows?: "read" | "write";
+ };
+ /** @description The slug name of the GitHub app */
+ slug?: string;
+ /** Format: date-time */
+ updated_at: string | null;
+ } | null;
+ pull_request?: {
+ /** Format: uri */
+ diff_url?: string;
+ /** Format: uri */
+ html_url?: string;
+ /** Format: date-time */
+ merged_at?: string | null;
+ /** Format: uri */
+ patch_url?: string;
+ /** Format: uri */
+ url?: string;
+ };
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /** Format: uri */
+ repository_url: string;
+ /**
+ * @description State of the issue; either 'open' or 'closed'
+ * @enum {string}
+ */
+ state?: "open" | "closed";
+ state_reason?: string | null;
+ /** Format: uri */
+ timeline_url?: string;
+ /** @description Title of the issue */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL for the issue
+ */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** issues pinned event */
+ "webhook-issues-pinned": {
+ /** @enum {string} */
+ action: "pinned";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ issue: components["schemas"]["webhooks_issue_2"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** issues reopened event */
+ "webhook-issues-reopened": {
+ /** @enum {string} */
+ action: "reopened";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ /**
+ * Issue
+ * @description The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself.
+ */
+ issue: {
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description Contents of the issue */
+ body: string | null;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments: number;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: date-time */
+ created_at: string;
+ draft?: boolean;
+ /** Format: uri */
+ events_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** Format: int64 */
+ id: number;
+ labels?: ({
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ } | null)[];
+ /** Format: uri-template */
+ labels_url: string;
+ locked?: boolean;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /**
+ * App
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ performed_via_github_app?: {
+ /** Format: date-time */
+ created_at: string | null;
+ description: string | null;
+ /** @description The list of events for the GitHub app */
+ events?: (
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "content_reference"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_review"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_dispatch"
+ | "secret_scanning_alert"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_dispatch"
+ | "workflow_run"
+ | "pull_request_review_thread"
+ | "reminder"
+ )[];
+ /** Format: uri */
+ external_url: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the GitHub app */
+ id: number | null;
+ /** @description The name of the GitHub app */
+ name: string;
+ node_id: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The set of permissions for the GitHub app */
+ permissions?: {
+ /** @enum {string} */
+ actions?: "read" | "write";
+ /** @enum {string} */
+ administration?: "read" | "write";
+ /** @enum {string} */
+ checks?: "read" | "write";
+ /** @enum {string} */
+ content_references?: "read" | "write";
+ /** @enum {string} */
+ contents?: "read" | "write";
+ /** @enum {string} */
+ deployments?: "read" | "write";
+ /** @enum {string} */
+ discussions?: "read" | "write";
+ /** @enum {string} */
+ emails?: "read" | "write";
+ /** @enum {string} */
+ environments?: "read" | "write";
+ /** @enum {string} */
+ issues?: "read" | "write";
+ /** @enum {string} */
+ keys?: "read" | "write";
+ /** @enum {string} */
+ members?: "read" | "write";
+ /** @enum {string} */
+ metadata?: "read" | "write";
+ /** @enum {string} */
+ organization_administration?: "read" | "write";
+ /** @enum {string} */
+ organization_hooks?: "read" | "write";
+ /** @enum {string} */
+ organization_packages?: "read" | "write";
+ /** @enum {string} */
+ organization_plan?: "read" | "write";
+ /** @enum {string} */
+ organization_projects?: "read" | "write" | "admin";
+ /** @enum {string} */
+ organization_secrets?: "read" | "write";
+ /** @enum {string} */
+ organization_self_hosted_runners?: "read" | "write";
+ /** @enum {string} */
+ organization_user_blocking?: "read" | "write";
+ /** @enum {string} */
+ packages?: "read" | "write";
+ /** @enum {string} */
+ pages?: "read" | "write";
+ /** @enum {string} */
+ pull_requests?: "read" | "write";
+ /** @enum {string} */
+ repository_hooks?: "read" | "write";
+ /** @enum {string} */
+ repository_projects?: "read" | "write" | "admin";
+ /** @enum {string} */
+ secret_scanning_alerts?: "read" | "write";
+ /** @enum {string} */
+ secrets?: "read" | "write";
+ /** @enum {string} */
+ security_events?: "read" | "write";
+ /** @enum {string} */
+ security_scanning_alert?: "read" | "write";
+ /** @enum {string} */
+ single_file?: "read" | "write";
+ /** @enum {string} */
+ statuses?: "read" | "write";
+ /** @enum {string} */
+ team_discussions?: "read" | "write";
+ /** @enum {string} */
+ vulnerability_alerts?: "read" | "write";
+ /** @enum {string} */
+ workflows?: "read" | "write";
+ };
+ /** @description The slug name of the GitHub app */
+ slug?: string;
+ /** Format: date-time */
+ updated_at: string | null;
+ } | null;
+ pull_request?: {
+ /** Format: uri */
+ diff_url?: string;
+ /** Format: uri */
+ html_url?: string;
+ /** Format: date-time */
+ merged_at?: string | null;
+ /** Format: uri */
+ patch_url?: string;
+ /** Format: uri */
+ url?: string;
+ };
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /** Format: uri */
+ repository_url: string;
+ /**
+ * @description State of the issue; either 'open' or 'closed'
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ state_reason?: string | null;
+ /** Format: uri */
+ timeline_url?: string;
+ /** @description Title of the issue */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL for the issue
+ */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** issues transferred event */
+ "webhook-issues-transferred": {
+ /** @enum {string} */
+ action: "transferred";
+ changes: {
+ /**
+ * Issue
+ * @description The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself.
+ */
+ new_issue: {
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description Contents of the issue */
+ body: string | null;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments: number;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: date-time */
+ created_at: string;
+ draft?: boolean;
+ /** Format: uri */
+ events_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** Format: int64 */
+ id: number;
+ labels?: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ /** Format: uri-template */
+ labels_url: string;
+ locked?: boolean;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /**
+ * App
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ performed_via_github_app?: {
+ /** Format: date-time */
+ created_at: string | null;
+ description: string | null;
+ /** @description The list of events for the GitHub app */
+ events?: (
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "content_reference"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_review"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_dispatch"
+ | "secret_scanning_alert"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_dispatch"
+ | "workflow_run"
+ )[];
+ /** Format: uri */
+ external_url: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the GitHub app */
+ id: number | null;
+ /** @description The name of the GitHub app */
+ name: string;
+ node_id: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The set of permissions for the GitHub app */
+ permissions?: {
+ /** @enum {string} */
+ actions?: "read" | "write";
+ /** @enum {string} */
+ administration?: "read" | "write";
+ /** @enum {string} */
+ checks?: "read" | "write";
+ /** @enum {string} */
+ content_references?: "read" | "write";
+ /** @enum {string} */
+ contents?: "read" | "write";
+ /** @enum {string} */
+ deployments?: "read" | "write";
+ /** @enum {string} */
+ discussions?: "read" | "write";
+ /** @enum {string} */
+ emails?: "read" | "write";
+ /** @enum {string} */
+ environments?: "read" | "write";
+ /** @enum {string} */
+ issues?: "read" | "write";
+ /** @enum {string} */
+ keys?: "read" | "write";
+ /** @enum {string} */
+ members?: "read" | "write";
+ /** @enum {string} */
+ metadata?: "read" | "write";
+ /** @enum {string} */
+ organization_administration?: "read" | "write";
+ /** @enum {string} */
+ organization_hooks?: "read" | "write";
+ /** @enum {string} */
+ organization_packages?: "read" | "write";
+ /** @enum {string} */
+ organization_plan?: "read" | "write";
+ /** @enum {string} */
+ organization_projects?: "read" | "write";
+ /** @enum {string} */
+ organization_secrets?: "read" | "write";
+ /** @enum {string} */
+ organization_self_hosted_runners?: "read" | "write";
+ /** @enum {string} */
+ organization_user_blocking?: "read" | "write";
+ /** @enum {string} */
+ packages?: "read" | "write";
+ /** @enum {string} */
+ pages?: "read" | "write";
+ /** @enum {string} */
+ pull_requests?: "read" | "write";
+ /** @enum {string} */
+ repository_hooks?: "read" | "write";
+ /** @enum {string} */
+ repository_projects?: "read" | "write";
+ /** @enum {string} */
+ secret_scanning_alerts?: "read" | "write";
+ /** @enum {string} */
+ secrets?: "read" | "write";
+ /** @enum {string} */
+ security_events?: "read" | "write";
+ /** @enum {string} */
+ security_scanning_alert?: "read" | "write";
+ /** @enum {string} */
+ single_file?: "read" | "write";
+ /** @enum {string} */
+ statuses?: "read" | "write";
+ /** @enum {string} */
+ team_discussions?: "read" | "write";
+ /** @enum {string} */
+ vulnerability_alerts?: "read" | "write";
+ /** @enum {string} */
+ workflows?: "read" | "write";
+ };
+ /** @description The slug name of the GitHub app */
+ slug?: string;
+ /** Format: date-time */
+ updated_at: string | null;
+ } | null;
+ pull_request?: {
+ /** Format: uri */
+ diff_url?: string;
+ /** Format: uri */
+ html_url?: string;
+ /** Format: date-time */
+ merged_at?: string | null;
+ /** Format: uri */
+ patch_url?: string;
+ /** Format: uri */
+ url?: string;
+ };
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /** Format: uri */
+ repository_url: string;
+ /**
+ * @description State of the issue; either 'open' or 'closed'
+ * @enum {string}
+ */
+ state?: "open" | "closed";
+ state_reason?: string | null;
+ /** Format: uri */
+ timeline_url?: string;
+ /** @description Title of the issue */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL for the issue
+ */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /**
+ * Repository
+ * @description A git repository
+ */
+ new_repository: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. */
+ custom_properties?: {
+ [key: string]: unknown;
+ };
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ issue: components["schemas"]["webhooks_issue_2"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** issues unassigned event */
+ "webhook-issues-unassigned": {
+ /**
+ * @description The action that was performed.
+ * @enum {string}
+ */
+ action: "unassigned";
+ assignee?: components["schemas"]["webhooks_user_mannequin"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ issue: components["schemas"]["webhooks_issue"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** issues unlabeled event */
+ "webhook-issues-unlabeled": {
+ /** @enum {string} */
+ action: "unlabeled";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ issue: components["schemas"]["webhooks_issue"];
+ label?: components["schemas"]["webhooks_label"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** issues unlocked event */
+ "webhook-issues-unlocked": {
+ /** @enum {string} */
+ action: "unlocked";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ /**
+ * Issue
+ * @description The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself.
+ */
+ issue: {
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description Contents of the issue */
+ body: string | null;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments: number;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: date-time */
+ created_at: string;
+ draft?: boolean;
+ /** Format: uri */
+ events_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** Format: int64 */
+ id: number;
+ labels?: ({
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ } | null)[];
+ /** Format: uri-template */
+ labels_url: string;
+ /** @enum {boolean} */
+ locked: false;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /**
+ * App
+ * @description GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
+ */
+ performed_via_github_app?: {
+ /** Format: date-time */
+ created_at: string | null;
+ description: string | null;
+ /** @description The list of events for the GitHub app */
+ events?: (
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "content_reference"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_review"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_dispatch"
+ | "secret_scanning_alert"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_dispatch"
+ | "workflow_run"
+ )[];
+ /** Format: uri */
+ external_url: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the GitHub app */
+ id: number | null;
+ /** @description The name of the GitHub app */
+ name: string;
+ node_id: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The set of permissions for the GitHub app */
+ permissions?: {
+ /** @enum {string} */
+ actions?: "read" | "write";
+ /** @enum {string} */
+ administration?: "read" | "write";
+ /** @enum {string} */
+ checks?: "read" | "write";
+ /** @enum {string} */
+ content_references?: "read" | "write";
+ /** @enum {string} */
+ contents?: "read" | "write";
+ /** @enum {string} */
+ deployments?: "read" | "write";
+ /** @enum {string} */
+ discussions?: "read" | "write";
+ /** @enum {string} */
+ emails?: "read" | "write";
+ /** @enum {string} */
+ environments?: "read" | "write";
+ /** @enum {string} */
+ issues?: "read" | "write";
+ /** @enum {string} */
+ keys?: "read" | "write";
+ /** @enum {string} */
+ members?: "read" | "write";
+ /** @enum {string} */
+ metadata?: "read" | "write";
+ /** @enum {string} */
+ organization_administration?: "read" | "write";
+ /** @enum {string} */
+ organization_hooks?: "read" | "write";
+ /** @enum {string} */
+ organization_packages?: "read" | "write";
+ /** @enum {string} */
+ organization_plan?: "read" | "write";
+ /** @enum {string} */
+ organization_projects?: "read" | "write";
+ /** @enum {string} */
+ organization_secrets?: "read" | "write";
+ /** @enum {string} */
+ organization_self_hosted_runners?: "read" | "write";
+ /** @enum {string} */
+ organization_user_blocking?: "read" | "write";
+ /** @enum {string} */
+ packages?: "read" | "write";
+ /** @enum {string} */
+ pages?: "read" | "write";
+ /** @enum {string} */
+ pull_requests?: "read" | "write";
+ /** @enum {string} */
+ repository_hooks?: "read" | "write";
+ /** @enum {string} */
+ repository_projects?: "read" | "write";
+ /** @enum {string} */
+ secret_scanning_alerts?: "read" | "write";
+ /** @enum {string} */
+ secrets?: "read" | "write";
+ /** @enum {string} */
+ security_events?: "read" | "write";
+ /** @enum {string} */
+ security_scanning_alert?: "read" | "write";
+ /** @enum {string} */
+ single_file?: "read" | "write";
+ /** @enum {string} */
+ statuses?: "read" | "write";
+ /** @enum {string} */
+ team_discussions?: "read" | "write";
+ /** @enum {string} */
+ vulnerability_alerts?: "read" | "write";
+ /** @enum {string} */
+ workflows?: "read" | "write";
+ };
+ /** @description The slug name of the GitHub app */
+ slug?: string;
+ /** Format: date-time */
+ updated_at: string | null;
+ } | null;
+ pull_request?: {
+ /** Format: uri */
+ diff_url?: string;
+ /** Format: uri */
+ html_url?: string;
+ /** Format: date-time */
+ merged_at?: string | null;
+ /** Format: uri */
+ patch_url?: string;
+ /** Format: uri */
+ url?: string;
+ };
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /** Format: uri */
+ repository_url: string;
+ /**
+ * @description State of the issue; either 'open' or 'closed'
+ * @enum {string}
+ */
+ state?: "open" | "closed";
+ state_reason?: string | null;
+ /** Format: uri */
+ timeline_url?: string;
+ /** @description Title of the issue */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL for the issue
+ */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** issues unpinned event */
+ "webhook-issues-unpinned": {
+ /** @enum {string} */
+ action: "unpinned";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ issue: components["schemas"]["webhooks_issue_2"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** label created event */
+ "webhook-label-created": {
+ /** @enum {string} */
+ action: "created";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ label: components["schemas"]["webhooks_label"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender?: components["schemas"]["simple-user-webhooks"];
+ };
+ /** label deleted event */
+ "webhook-label-deleted": {
+ /** @enum {string} */
+ action: "deleted";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ label: components["schemas"]["webhooks_label"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** label edited event */
+ "webhook-label-edited": {
+ /** @enum {string} */
+ action: "edited";
+ /** @description The changes to the label if the action was `edited`. */
+ changes?: {
+ color?: {
+ /** @description The previous version of the color if the action was `edited`. */
+ from: string;
+ };
+ description?: {
+ /** @description The previous version of the description if the action was `edited`. */
+ from: string;
+ };
+ name?: {
+ /** @description The previous version of the name if the action was `edited`. */
+ from: string;
+ };
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ label: components["schemas"]["webhooks_label"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** marketplace_purchase cancelled event */
+ "webhook-marketplace-purchase-cancelled": {
+ /** @enum {string} */
+ action: "cancelled";
+ effective_date: string;
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ marketplace_purchase: components["schemas"]["webhooks_marketplace_purchase"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ previous_marketplace_purchase?: components["schemas"]["webhooks_previous_marketplace_purchase"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** marketplace_purchase changed event */
+ "webhook-marketplace-purchase-changed": {
+ /** @enum {string} */
+ action: "changed";
+ effective_date: string;
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ marketplace_purchase: components["schemas"]["webhooks_marketplace_purchase"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** Marketplace Purchase */
+ previous_marketplace_purchase?: {
+ account: {
+ id: number;
+ login: string;
+ node_id: string;
+ organization_billing_email: string | null;
+ type: string;
+ };
+ billing_cycle: string;
+ free_trial_ends_on: string | null;
+ next_billing_date?: string | null;
+ on_free_trial: boolean | null;
+ plan: {
+ bullets: string[];
+ description: string;
+ has_free_trial: boolean;
+ id: number;
+ monthly_price_in_cents: number;
+ name: string;
+ /** @enum {string} */
+ price_model: "FREE" | "FLAT_RATE" | "PER_UNIT";
+ unit_name: string | null;
+ yearly_price_in_cents: number;
+ };
+ unit_count: number;
+ };
+ repository?: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** marketplace_purchase pending_change event */
+ "webhook-marketplace-purchase-pending-change": {
+ /** @enum {string} */
+ action: "pending_change";
+ effective_date: string;
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ marketplace_purchase: components["schemas"]["webhooks_marketplace_purchase"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** Marketplace Purchase */
+ previous_marketplace_purchase?: {
+ account: {
+ id: number;
+ login: string;
+ node_id: string;
+ organization_billing_email: string | null;
+ type: string;
+ };
+ billing_cycle: string;
+ free_trial_ends_on: string | null;
+ next_billing_date?: string | null;
+ on_free_trial: boolean;
+ plan: {
+ bullets: string[];
+ description: string;
+ has_free_trial: boolean;
+ id: number;
+ monthly_price_in_cents: number;
+ name: string;
+ /** @enum {string} */
+ price_model: "FREE" | "FLAT_RATE" | "PER_UNIT";
+ unit_name: string | null;
+ yearly_price_in_cents: number;
+ };
+ unit_count: number;
+ };
+ repository?: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** marketplace_purchase pending_change_cancelled event */
+ "webhook-marketplace-purchase-pending-change-cancelled": {
+ /** @enum {string} */
+ action: "pending_change_cancelled";
+ effective_date: string;
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ /** Marketplace Purchase */
+ marketplace_purchase: {
+ account: {
+ id: number;
+ login: string;
+ node_id: string;
+ organization_billing_email: string | null;
+ type: string;
+ };
+ billing_cycle: string;
+ free_trial_ends_on: unknown;
+ next_billing_date: string | null;
+ on_free_trial: boolean;
+ plan: {
+ bullets: string[];
+ description: string;
+ has_free_trial: boolean;
+ id: number;
+ monthly_price_in_cents: number;
+ name: string;
+ /** @enum {string} */
+ price_model: "FREE" | "FLAT_RATE" | "PER_UNIT";
+ unit_name: string | null;
+ yearly_price_in_cents: number;
+ };
+ unit_count: number;
+ };
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ previous_marketplace_purchase?: components["schemas"]["webhooks_previous_marketplace_purchase"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** marketplace_purchase purchased event */
+ "webhook-marketplace-purchase-purchased": {
+ /** @enum {string} */
+ action: "purchased";
+ effective_date: string;
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ marketplace_purchase: components["schemas"]["webhooks_marketplace_purchase"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ previous_marketplace_purchase?: components["schemas"]["webhooks_previous_marketplace_purchase"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** member added event */
+ "webhook-member-added": {
+ /** @enum {string} */
+ action: "added";
+ changes?: {
+ /**
+ * @description This field is included for legacy purposes; use the `role_name` field instead. The `maintain`
+ * role is mapped to `write` and the `triage` role is mapped to `read`. To determine the role
+ * assigned to the collaborator, use the `role_name` field instead, which will provide the full
+ * role name, including custom roles.
+ */
+ permission?: {
+ /** @enum {string} */
+ to: "write" | "admin" | "read";
+ };
+ /** @description The role assigned to the collaborator. */
+ role_name?: {
+ to: string;
+ };
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ member: components["schemas"]["webhooks_user"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** member edited event */
+ "webhook-member-edited": {
+ /** @enum {string} */
+ action: "edited";
+ /** @description The changes to the collaborator permissions */
+ changes: {
+ old_permission?: {
+ /** @description The previous permissions of the collaborator if the action was edited. */
+ from: string;
+ };
+ permission?: {
+ from?: string | null;
+ to?: string | null;
+ };
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ member: components["schemas"]["webhooks_user"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** member removed event */
+ "webhook-member-removed": {
+ /** @enum {string} */
+ action: "removed";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ member: components["schemas"]["webhooks_user"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** membership added event */
+ "webhook-membership-added": {
+ /** @enum {string} */
+ action: "added";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ member: components["schemas"]["webhooks_user"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ repository?: components["schemas"]["repository-webhooks"];
+ /**
+ * @description The scope of the membership. Currently, can only be `team`.
+ * @enum {string}
+ */
+ scope: "team";
+ /** User */
+ sender: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ team: components["schemas"]["webhooks_team"];
+ };
+ /** membership removed event */
+ "webhook-membership-removed": {
+ /** @enum {string} */
+ action: "removed";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ member: components["schemas"]["webhooks_user"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ repository?: components["schemas"]["repository-webhooks"];
+ /**
+ * @description The scope of the membership. Currently, can only be `team`.
+ * @enum {string}
+ */
+ scope: "team" | "organization";
+ /** User */
+ sender: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ team: components["schemas"]["webhooks_team"];
+ };
+ "webhook-merge-group-checks-requested": {
+ /** @enum {string} */
+ action: "checks_requested";
+ installation?: components["schemas"]["simple-installation"];
+ merge_group: components["schemas"]["merge-group"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender?: components["schemas"]["simple-user-webhooks"];
+ };
+ "webhook-merge-group-destroyed": {
+ /** @enum {string} */
+ action: "destroyed";
+ /**
+ * @description Explains why the merge group is being destroyed. The group could have been merged, removed from the queue (dequeued), or invalidated by an earlier queue entry being dequeued (invalidated).
+ * @enum {string}
+ */
+ reason?: "merged" | "invalidated" | "dequeued";
+ installation?: components["schemas"]["simple-installation"];
+ merge_group: components["schemas"]["merge-group"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender?: components["schemas"]["simple-user-webhooks"];
+ };
+ /** meta deleted event */
+ "webhook-meta-deleted": {
+ /** @enum {string} */
+ action: "deleted";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ /** @description The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, business, app, or GitHub Marketplace. */
+ hook: {
+ active: boolean;
+ config: {
+ /** @enum {string} */
+ content_type: "json" | "form";
+ insecure_ssl: string;
+ secret?: string;
+ /** Format: uri */
+ url: string;
+ };
+ created_at: string;
+ events: (
+ | "*"
+ | "branch_protection_rule"
+ | "check_run"
+ | "check_suite"
+ | "code_scanning_alert"
+ | "commit_comment"
+ | "create"
+ | "delete"
+ | "deployment"
+ | "deployment_status"
+ | "deploy_key"
+ | "discussion"
+ | "discussion_comment"
+ | "fork"
+ | "gollum"
+ | "issues"
+ | "issue_comment"
+ | "label"
+ | "member"
+ | "membership"
+ | "meta"
+ | "milestone"
+ | "organization"
+ | "org_block"
+ | "package"
+ | "page_build"
+ | "project"
+ | "project_card"
+ | "project_column"
+ | "public"
+ | "pull_request"
+ | "pull_request_review"
+ | "pull_request_review_comment"
+ | "pull_request_review_thread"
+ | "push"
+ | "registry_package"
+ | "release"
+ | "repository"
+ | "repository_import"
+ | "repository_vulnerability_alert"
+ | "secret_scanning_alert"
+ | "secret_scanning_alert_location"
+ | "security_and_analysis"
+ | "star"
+ | "status"
+ | "team"
+ | "team_add"
+ | "watch"
+ | "workflow_job"
+ | "workflow_run"
+ | "repository_dispatch"
+ | "projects_v2_item"
+ )[];
+ id: number;
+ name: string;
+ type: string;
+ updated_at: string;
+ };
+ /** @description The id of the modified webhook. */
+ hook_id: number;
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository?: components["schemas"]["nullable-repository-webhooks"];
+ sender?: components["schemas"]["simple-user-webhooks"];
+ };
+ /** milestone closed event */
+ "webhook-milestone-closed": {
+ /** @enum {string} */
+ action: "closed";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ milestone: components["schemas"]["webhooks_milestone"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** milestone created event */
+ "webhook-milestone-created": {
+ /** @enum {string} */
+ action: "created";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ milestone: components["schemas"]["webhooks_milestone_3"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** milestone deleted event */
+ "webhook-milestone-deleted": {
+ /** @enum {string} */
+ action: "deleted";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ milestone: components["schemas"]["webhooks_milestone"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** milestone edited event */
+ "webhook-milestone-edited": {
+ /** @enum {string} */
+ action: "edited";
+ /** @description The changes to the milestone if the action was `edited`. */
+ changes: {
+ description?: {
+ /** @description The previous version of the description if the action was `edited`. */
+ from: string;
+ };
+ due_on?: {
+ /** @description The previous version of the due date if the action was `edited`. */
+ from: string;
+ };
+ title?: {
+ /** @description The previous version of the title if the action was `edited`. */
+ from: string;
+ };
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ milestone: components["schemas"]["webhooks_milestone"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** milestone opened event */
+ "webhook-milestone-opened": {
+ /** @enum {string} */
+ action: "opened";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ milestone: components["schemas"]["webhooks_milestone_3"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** org_block blocked event */
+ "webhook-org-block-blocked": {
+ /** @enum {string} */
+ action: "blocked";
+ blocked_user: components["schemas"]["webhooks_user"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** org_block unblocked event */
+ "webhook-org-block-unblocked": {
+ /** @enum {string} */
+ action: "unblocked";
+ blocked_user: components["schemas"]["webhooks_user"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** organization deleted event */
+ "webhook-organization-deleted": {
+ /** @enum {string} */
+ action: "deleted";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ membership?: components["schemas"]["webhooks_membership"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** organization member_added event */
+ "webhook-organization-member-added": {
+ /** @enum {string} */
+ action: "member_added";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ membership: components["schemas"]["webhooks_membership"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** organization member_invited event */
+ "webhook-organization-member-invited": {
+ /** @enum {string} */
+ action: "member_invited";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ /** @description The invitation for the user or email if the action is `member_invited`. */
+ invitation: {
+ /** Format: date-time */
+ created_at: string;
+ email: string | null;
+ /** Format: date-time */
+ failed_at: string | null;
+ failed_reason: string | null;
+ id: number;
+ /** Format: uri */
+ invitation_teams_url: string;
+ /** User */
+ inviter: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ login: string | null;
+ node_id: string;
+ role: string;
+ team_count: number;
+ invitation_source?: string;
+ };
+ organization: components["schemas"]["organization-simple-webhooks"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ user?: components["schemas"]["webhooks_user"];
+ };
+ /** organization member_removed event */
+ "webhook-organization-member-removed": {
+ /** @enum {string} */
+ action: "member_removed";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ membership: components["schemas"]["webhooks_membership"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** organization renamed event */
+ "webhook-organization-renamed": {
+ /** @enum {string} */
+ action: "renamed";
+ changes?: {
+ login?: {
+ from?: string;
+ };
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ membership?: components["schemas"]["webhooks_membership"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** Ruby Gems metadata */
+ "webhook-rubygems-metadata": {
+ name?: string;
+ description?: string;
+ readme?: string;
+ homepage?: string;
+ version_info?: {
+ version?: string;
+ };
+ platform?: string;
+ metadata?: {
+ [key: string]: string;
+ };
+ repo?: string;
+ dependencies?: {
+ [key: string]: string;
+ }[];
+ commit_oid?: string;
+ };
+ /** package published event */
+ "webhook-package-published": {
+ /** @enum {string} */
+ action: "published";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** @description Information about the package. */
+ package: {
+ created_at: string | null;
+ description: string | null;
+ ecosystem: string;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ name: string;
+ namespace: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ package_type: string;
+ package_version: {
+ /** User */
+ author?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ body?: string | Record;
+ body_html?: string;
+ container_metadata?: {
+ labels?: Record | null;
+ manifest?: Record | null;
+ tag?: {
+ digest?: string;
+ name?: string;
+ };
+ } | null;
+ created_at?: string;
+ description: string;
+ docker_metadata?: {
+ tags?: string[];
+ }[];
+ draft?: boolean;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ installation_command: string;
+ manifest?: string;
+ metadata: {
+ [key: string]: unknown;
+ }[];
+ name: string;
+ npm_metadata?: {
+ name?: string;
+ version?: string;
+ npm_user?: string;
+ author?: Record | null;
+ bugs?: Record | null;
+ dependencies?: Record;
+ dev_dependencies?: Record;
+ peer_dependencies?: Record;
+ optional_dependencies?: Record;
+ description?: string;
+ dist?: Record | null;
+ git_head?: string;
+ homepage?: string;
+ license?: string;
+ main?: string;
+ repository?: Record | null;
+ scripts?: Record;
+ id?: string;
+ node_version?: string;
+ npm_version?: string;
+ has_shrinkwrap?: boolean;
+ maintainers?: Record[];
+ contributors?: Record[];
+ engines?: Record;
+ keywords?: string[];
+ files?: string[];
+ bin?: Record;
+ man?: Record;
+ directories?: Record | null;
+ os?: string[];
+ cpu?: string[];
+ readme?: string;
+ installation_command?: string;
+ release_id?: number;
+ commit_oid?: string;
+ published_via_actions?: boolean;
+ deleted_by_id?: number;
+ } | null;
+ nuget_metadata?:
+ | {
+ id?: number | string;
+ name?: string;
+ value?: OneOf<
+ [
+ boolean,
+ string,
+ number,
+ {
+ url?: string;
+ branch?: string;
+ commit?: string;
+ type?: string;
+ },
+ ]
+ >;
+ }[]
+ | null;
+ package_files: {
+ content_type: string;
+ created_at: string;
+ /** Format: uri */
+ download_url: string;
+ id: number;
+ md5: string | null;
+ name: string;
+ sha1: string | null;
+ sha256: string | null;
+ size: number;
+ state: string | null;
+ updated_at: string;
+ }[];
+ package_url?: string;
+ prerelease?: boolean;
+ release?: {
+ /** User */
+ author: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ created_at: string;
+ draft: boolean;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ name: string | null;
+ prerelease: boolean;
+ published_at: string;
+ tag_name: string;
+ target_commitish: string;
+ /** Format: uri */
+ url: string;
+ };
+ rubygems_metadata?: components["schemas"]["webhook-rubygems-metadata"][];
+ source_url?: string;
+ summary: string;
+ tag_name?: string;
+ target_commitish?: string;
+ target_oid?: string;
+ updated_at?: string;
+ version: string;
+ } | null;
+ registry: {
+ /** Format: uri */
+ about_url: string;
+ name: string;
+ type: string;
+ /** Format: uri */
+ url: string;
+ vendor: string;
+ } | null;
+ updated_at: string | null;
+ };
+ repository?: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** package updated event */
+ "webhook-package-updated": {
+ /** @enum {string} */
+ action: "updated";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** @description Information about the package. */
+ package: {
+ created_at: string;
+ description: string | null;
+ ecosystem: string;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ name: string;
+ namespace: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ package_type: string;
+ package_version: {
+ /** User */
+ author: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ body: string;
+ body_html: string;
+ created_at: string;
+ description: string;
+ docker_metadata?: {
+ tags?: string[];
+ }[];
+ draft?: boolean;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ installation_command: string;
+ manifest?: string;
+ metadata: {
+ [key: string]: unknown;
+ }[];
+ name: string;
+ package_files: {
+ content_type: string;
+ created_at: string;
+ /** Format: uri */
+ download_url: string;
+ id: number;
+ md5: string | null;
+ name: string;
+ sha1: string | null;
+ sha256: string;
+ size: number;
+ state: string;
+ updated_at: string;
+ }[];
+ package_url?: string;
+ prerelease?: boolean;
+ release?: {
+ /** User */
+ author: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ created_at: string;
+ draft: boolean;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ name: string;
+ prerelease: boolean;
+ published_at: string;
+ tag_name: string;
+ target_commitish: string;
+ /** Format: uri */
+ url: string;
+ };
+ rubygems_metadata?: components["schemas"]["webhook-rubygems-metadata"][];
+ /** Format: uri */
+ source_url?: string;
+ summary: string;
+ tag_name?: string;
+ target_commitish: string;
+ target_oid: string;
+ updated_at: string;
+ version: string;
+ };
+ registry: {
+ /** Format: uri */
+ about_url: string;
+ name: string;
+ type: string;
+ /** Format: uri */
+ url: string;
+ vendor: string;
+ } | null;
+ updated_at: string;
+ };
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** page_build event */
+ "webhook-page-build": {
+ /** @description The [List GitHub Pages builds](https://docs.github.com/rest/pages/pages#list-github-pages-builds) itself. */
+ build: {
+ commit: string | null;
+ created_at: string;
+ duration: number;
+ error: {
+ message: string | null;
+ };
+ /** User */
+ pusher: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ status: string;
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ id: number;
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** personal_access_token_request approved event */
+ "webhook-personal-access-token-request-approved": {
+ /** @enum {string} */
+ action: "approved";
+ personal_access_token_request: components["schemas"]["personal-access-token-request"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ installation: components["schemas"]["simple-installation"];
+ };
+ /** personal_access_token_request cancelled event */
+ "webhook-personal-access-token-request-cancelled": {
+ /** @enum {string} */
+ action: "cancelled";
+ personal_access_token_request: components["schemas"]["personal-access-token-request"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ installation: components["schemas"]["simple-installation"];
+ };
+ /** personal_access_token_request created event */
+ "webhook-personal-access-token-request-created": {
+ /** @enum {string} */
+ action: "created";
+ personal_access_token_request: components["schemas"]["personal-access-token-request"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ installation: components["schemas"]["simple-installation"];
+ };
+ /** personal_access_token_request denied event */
+ "webhook-personal-access-token-request-denied": {
+ /** @enum {string} */
+ action: "denied";
+ personal_access_token_request: components["schemas"]["personal-access-token-request"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ installation: components["schemas"]["simple-installation"];
+ };
+ "webhook-ping": {
+ /**
+ * Webhook
+ * @description The webhook that is being pinged
+ */
+ hook?: {
+ /** @description Determines whether the hook is actually triggered for the events it subscribes to. */
+ active: boolean;
+ /** @description Only included for GitHub Apps. When you register a new GitHub App, GitHub sends a ping event to the webhook URL you specified during registration. The GitHub App ID sent in this field is required for authenticating an app. */
+ app_id?: number;
+ config: {
+ content_type?: components["schemas"]["webhook-config-content-type"];
+ insecure_ssl?: components["schemas"]["webhook-config-insecure-ssl"];
+ secret?: components["schemas"]["webhook-config-secret"];
+ url?: components["schemas"]["webhook-config-url"];
+ };
+ /** Format: date-time */
+ created_at: string;
+ /** Format: uri */
+ deliveries_url?: string;
+ /** @description Determines what events the hook is triggered for. Default: ['push']. */
+ events: string[];
+ /** @description Unique identifier of the webhook. */
+ id: number;
+ last_response?: components["schemas"]["hook-response"];
+ /**
+ * @description The type of webhook. The only valid value is 'web'.
+ * @enum {string}
+ */
+ name: "web";
+ /** Format: uri */
+ ping_url?: string;
+ /** Format: uri */
+ test_url?: string;
+ type: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url?: string;
+ };
+ /** @description The ID of the webhook that triggered the ping. */
+ hook_id?: number;
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender?: components["schemas"]["simple-user-webhooks"];
+ /** @description Random string of GitHub zen. */
+ zen?: string;
+ };
+ /** @description The webhooks ping payload encoded with URL encoding. */
+ "webhook-ping-form-encoded": {
+ /** @description A URL-encoded string of the ping JSON payload. The decoded payload is a JSON object. */
+ payload: string;
+ };
+ /** project_card converted event */
+ "webhook-project-card-converted": {
+ /** @enum {string} */
+ action: "converted";
+ changes: {
+ note: {
+ from: string;
+ };
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ project_card: components["schemas"]["webhooks_project_card"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** project_card created event */
+ "webhook-project-card-created": {
+ /** @enum {string} */
+ action: "created";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ project_card: components["schemas"]["webhooks_project_card"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** project_card deleted event */
+ "webhook-project-card-deleted": {
+ /** @enum {string} */
+ action: "deleted";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** Project Card */
+ project_card: {
+ after_id?: number | null;
+ /** @description Whether or not the card is archived */
+ archived: boolean;
+ column_id: number | null;
+ /** Format: uri */
+ column_url: string;
+ /** Format: uri */
+ content_url?: string;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The project card's ID */
+ id: number;
+ node_id: string;
+ note: string | null;
+ /** Format: uri */
+ project_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ };
+ repository?: components["schemas"]["nullable-repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** project_card edited event */
+ "webhook-project-card-edited": {
+ /** @enum {string} */
+ action: "edited";
+ changes: {
+ note: {
+ from: string | null;
+ };
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ project_card: components["schemas"]["webhooks_project_card"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** project_card moved event */
+ "webhook-project-card-moved": {
+ /** @enum {string} */
+ action: "moved";
+ changes?: {
+ column_id: {
+ from: number;
+ };
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ project_card: {
+ after_id?: number | null;
+ /** @description Whether or not the card is archived */
+ archived: boolean;
+ column_id: number;
+ /** Format: uri */
+ column_url: string;
+ /** Format: uri */
+ content_url?: string;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /** @description The project card's ID */
+ id: number;
+ node_id: string;
+ note: string | null;
+ /** Format: uri */
+ project_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } & {
+ after_id: number | null;
+ archived?: boolean;
+ column_id?: number;
+ column_url?: string;
+ created_at?: string;
+ creator?: {
+ avatar_url?: string;
+ events_url?: string;
+ followers_url?: string;
+ following_url?: string;
+ gists_url?: string;
+ gravatar_id?: string;
+ html_url?: string;
+ id?: number;
+ login?: string;
+ node_id?: string;
+ organizations_url?: string;
+ received_events_url?: string;
+ repos_url?: string;
+ site_admin?: boolean;
+ starred_url?: string;
+ subscriptions_url?: string;
+ type?: string;
+ url?: string;
+ } | null;
+ id?: number;
+ node_id?: string;
+ note?: string | null;
+ project_url?: string;
+ updated_at?: string;
+ url?: string;
+ };
+ repository?: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** project closed event */
+ "webhook-project-closed": {
+ /** @enum {string} */
+ action: "closed";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ project: components["schemas"]["webhooks_project"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** project_column created event */
+ "webhook-project-column-created": {
+ /** @enum {string} */
+ action: "created";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ project_column: components["schemas"]["webhooks_project_column"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender?: components["schemas"]["simple-user-webhooks"];
+ };
+ /** project_column deleted event */
+ "webhook-project-column-deleted": {
+ /** @enum {string} */
+ action: "deleted";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ project_column: components["schemas"]["webhooks_project_column"];
+ repository?: components["schemas"]["nullable-repository-webhooks"];
+ sender?: components["schemas"]["simple-user-webhooks"];
+ };
+ /** project_column edited event */
+ "webhook-project-column-edited": {
+ /** @enum {string} */
+ action: "edited";
+ changes: {
+ name?: {
+ from: string;
+ };
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ project_column: components["schemas"]["webhooks_project_column"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender?: components["schemas"]["simple-user-webhooks"];
+ };
+ /** project_column moved event */
+ "webhook-project-column-moved": {
+ /** @enum {string} */
+ action: "moved";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ project_column: components["schemas"]["webhooks_project_column"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** project created event */
+ "webhook-project-created": {
+ /** @enum {string} */
+ action: "created";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ project: components["schemas"]["webhooks_project"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** project deleted event */
+ "webhook-project-deleted": {
+ /** @enum {string} */
+ action: "deleted";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ project: components["schemas"]["webhooks_project"];
+ repository?: components["schemas"]["nullable-repository-webhooks"];
+ sender?: components["schemas"]["simple-user-webhooks"];
+ };
+ /** project edited event */
+ "webhook-project-edited": {
+ /** @enum {string} */
+ action: "edited";
+ /** @description The changes to the project if the action was `edited`. */
+ changes?: {
+ body?: {
+ /** @description The previous version of the body if the action was `edited`. */
+ from: string;
+ };
+ name?: {
+ /** @description The changes to the project if the action was `edited`. */
+ from: string;
+ };
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ project: components["schemas"]["webhooks_project"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender?: components["schemas"]["simple-user-webhooks"];
+ };
+ /** project reopened event */
+ "webhook-project-reopened": {
+ /** @enum {string} */
+ action: "reopened";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ project: components["schemas"]["webhooks_project"];
+ repository?: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** Projects v2 Project Closed Event */
+ "webhook-projects-v2-project-closed": {
+ /** @enum {string} */
+ action: "closed";
+ installation?: components["schemas"]["simple-installation"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ projects_v2: components["schemas"]["projects-v2"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** @description A project was created */
+ "webhook-projects-v2-project-created": {
+ /** @enum {string} */
+ action: "created";
+ installation?: components["schemas"]["simple-installation"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ projects_v2: components["schemas"]["projects-v2"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** Projects v2 Project Deleted Event */
+ "webhook-projects-v2-project-deleted": {
+ /** @enum {string} */
+ action: "deleted";
+ installation?: components["schemas"]["simple-installation"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ projects_v2: components["schemas"]["projects-v2"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** Projects v2 Project Edited Event */
+ "webhook-projects-v2-project-edited": {
+ /** @enum {string} */
+ action: "edited";
+ changes: {
+ description?: {
+ from?: string | null;
+ to?: string | null;
+ };
+ public?: {
+ from?: boolean;
+ to?: boolean;
+ };
+ short_description?: {
+ from?: string | null;
+ to?: string | null;
+ };
+ title?: {
+ from?: string;
+ to?: string;
+ };
+ };
+ installation?: components["schemas"]["simple-installation"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ projects_v2: components["schemas"]["projects-v2"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** Projects v2 Item Archived Event */
+ "webhook-projects-v2-item-archived": {
+ /** @enum {string} */
+ action: "archived";
+ changes: components["schemas"]["webhooks_project_changes"];
+ installation?: components["schemas"]["simple-installation"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ projects_v2_item: components["schemas"]["projects-v2-item"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** Projects v2 Item Converted Event */
+ "webhook-projects-v2-item-converted": {
+ /** @enum {string} */
+ action: "converted";
+ changes: {
+ content_type?: {
+ from?: string | null;
+ to?: string;
+ };
+ };
+ installation?: components["schemas"]["simple-installation"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ projects_v2_item: components["schemas"]["projects-v2-item"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** Projects v2 Item Created Event */
+ "webhook-projects-v2-item-created": {
+ /** @enum {string} */
+ action: "created";
+ installation?: components["schemas"]["simple-installation"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ projects_v2_item: components["schemas"]["projects-v2-item"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** Projects v2 Item Deleted Event */
+ "webhook-projects-v2-item-deleted": {
+ /** @enum {string} */
+ action: "deleted";
+ installation?: components["schemas"]["simple-installation"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ projects_v2_item: components["schemas"]["projects-v2-item"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** Projects v2 Item Edited Event */
+ "webhook-projects-v2-item-edited": {
+ /** @enum {string} */
+ action: "edited";
+ changes?: OneOf<
+ [
+ {
+ field_value: {
+ field_node_id?: string;
+ field_type?: string;
+ };
+ },
+ {
+ body: {
+ from?: string | null;
+ to?: string | null;
+ };
+ },
+ ]
+ >;
+ installation?: components["schemas"]["simple-installation"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ projects_v2_item: components["schemas"]["projects-v2-item"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** Projects v2 Item Reordered Event */
+ "webhook-projects-v2-item-reordered": {
+ /** @enum {string} */
+ action: "reordered";
+ changes: {
+ previous_projects_v2_item_node_id?: {
+ from?: string | null;
+ to?: string | null;
+ };
+ };
+ installation?: components["schemas"]["simple-installation"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ projects_v2_item: components["schemas"]["projects-v2-item"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** Projects v2 Item Restored Event */
+ "webhook-projects-v2-item-restored": {
+ /** @enum {string} */
+ action: "restored";
+ changes: components["schemas"]["webhooks_project_changes"];
+ installation?: components["schemas"]["simple-installation"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ projects_v2_item: components["schemas"]["projects-v2-item"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** Projects v2 Project Reopened Event */
+ "webhook-projects-v2-project-reopened": {
+ /** @enum {string} */
+ action: "reopened";
+ installation?: components["schemas"]["simple-installation"];
+ organization: components["schemas"]["organization-simple-webhooks"];
+ projects_v2: components["schemas"]["projects-v2"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** public event */
+ "webhook-public": {
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request assigned event */
+ "webhook-pull-request-assigned": {
+ /** @enum {string} */
+ action: "assigned";
+ assignee: components["schemas"]["webhooks_user"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ number: components["schemas"]["webhooks_number"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** Pull Request */
+ pull_request: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ additions?: number;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string | null;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ changed_files?: number;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments?: number;
+ /** Format: uri */
+ comments_url: string;
+ commits?: number;
+ /** Format: uri */
+ commits_url: string;
+ /** Format: date-time */
+ created_at: string;
+ deletions?: number;
+ /** Format: uri */
+ diff_url: string;
+ /** @description Indicates whether or not the pull request is a draft. */
+ draft: boolean;
+ head: {
+ label: string | null;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ } | null;
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ /** @description Indicates whether maintainers can modify the pull request. */
+ maintainer_can_modify?: boolean;
+ merge_commit_sha: string | null;
+ mergeable?: boolean | null;
+ mergeable_state?: string;
+ merged?: boolean | null;
+ /** Format: date-time */
+ merged_at: string | null;
+ /** User */
+ merged_by?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ /** @description Number uniquely identifying the pull request within its repository. */
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ rebaseable?: boolean | null;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ review_comments?: number;
+ /** Format: uri */
+ review_comments_url: string;
+ /**
+ * @description State of this Pull Request. Either `open` or `closed`.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ /** @description The title of the pull request. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request auto_merge_disabled event */
+ "webhook-pull-request-auto-merge-disabled": {
+ /** @enum {string} */
+ action: "auto_merge_disabled";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ number: number;
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** Pull Request */
+ pull_request: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ additions?: number;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string | null;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ changed_files?: number;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments?: number;
+ /** Format: uri */
+ comments_url: string;
+ commits?: number;
+ /** Format: uri */
+ commits_url: string;
+ /** Format: date-time */
+ created_at: string;
+ deletions?: number;
+ /** Format: uri */
+ diff_url: string;
+ /** @description Indicates whether or not the pull request is a draft. */
+ draft: boolean;
+ head: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ /** @description Indicates whether maintainers can modify the pull request. */
+ maintainer_can_modify?: boolean;
+ merge_commit_sha: string | null;
+ mergeable?: boolean | null;
+ mergeable_state?: string;
+ merged?: boolean | null;
+ /** Format: date-time */
+ merged_at: string | null;
+ /** User */
+ merged_by?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ /** @description Number uniquely identifying the pull request within its repository. */
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ rebaseable?: boolean | null;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ review_comments?: number;
+ /** Format: uri */
+ review_comments_url: string;
+ /**
+ * @description State of this Pull Request. Either `open` or `closed`.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ /** @description The title of the pull request. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ reason: string;
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request auto_merge_enabled event */
+ "webhook-pull-request-auto-merge-enabled": {
+ /** @enum {string} */
+ action: "auto_merge_enabled";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ number: number;
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** Pull Request */
+ pull_request: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ additions?: number;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string | null;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ changed_files?: number;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments?: number;
+ /** Format: uri */
+ comments_url: string;
+ commits?: number;
+ /** Format: uri */
+ commits_url: string;
+ /** Format: date-time */
+ created_at: string;
+ deletions?: number;
+ /** Format: uri */
+ diff_url: string;
+ /** @description Indicates whether or not the pull request is a draft. */
+ draft: boolean;
+ head: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ /** @description Indicates whether maintainers can modify the pull request. */
+ maintainer_can_modify?: boolean;
+ merge_commit_sha: string | null;
+ mergeable?: boolean | null;
+ mergeable_state?: string;
+ merged?: boolean | null;
+ /** Format: date-time */
+ merged_at: string | null;
+ /** User */
+ merged_by?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ /** @description Number uniquely identifying the pull request within its repository. */
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ rebaseable?: boolean | null;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ review_comments?: number;
+ /** Format: uri */
+ review_comments_url: string;
+ /**
+ * @description State of this Pull Request. Either `open` or `closed`.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ /** @description The title of the pull request. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ reason?: string;
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request closed event */
+ "webhook-pull-request-closed": {
+ /** @enum {string} */
+ action: "closed";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ number: components["schemas"]["webhooks_number"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ pull_request: components["schemas"]["pull-request-webhook"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request converted_to_draft event */
+ "webhook-pull-request-converted-to-draft": {
+ /** @enum {string} */
+ action: "converted_to_draft";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ number: components["schemas"]["webhooks_number"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ pull_request: components["schemas"]["pull-request-webhook"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request demilestoned event */
+ "webhook-pull-request-demilestoned": {
+ /** @enum {string} */
+ action: "demilestoned";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ milestone?: components["schemas"]["milestone"];
+ number: components["schemas"]["webhooks_number"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ pull_request: components["schemas"]["webhooks_pull_request_5"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender?: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request dequeued event */
+ "webhook-pull-request-dequeued": {
+ /** @enum {string} */
+ action: "dequeued";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ number: number;
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** Pull Request */
+ pull_request: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ additions?: number;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string | null;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ changed_files?: number;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments?: number;
+ /** Format: uri */
+ comments_url: string;
+ commits?: number;
+ /** Format: uri */
+ commits_url: string;
+ /** Format: date-time */
+ created_at: string;
+ deletions?: number;
+ /** Format: uri */
+ diff_url: string;
+ /** @description Indicates whether or not the pull request is a draft. */
+ draft: boolean;
+ head: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ /** @description Indicates whether maintainers can modify the pull request. */
+ maintainer_can_modify?: boolean;
+ merge_commit_sha: string | null;
+ mergeable?: boolean | null;
+ mergeable_state?: string;
+ merged?: boolean | null;
+ /** Format: date-time */
+ merged_at: string | null;
+ /** User */
+ merged_by?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ /** @description Number uniquely identifying the pull request within its repository. */
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ rebaseable?: boolean | null;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ review_comments?: number;
+ /** Format: uri */
+ review_comments_url: string;
+ /**
+ * @description State of this Pull Request. Either `open` or `closed`.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ /** @description The title of the pull request. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ reason: string;
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request edited event */
+ "webhook-pull-request-edited": {
+ /** @enum {string} */
+ action: "edited";
+ /** @description The changes to the comment if the action was `edited`. */
+ changes: {
+ base?: {
+ ref: {
+ from: string;
+ };
+ sha: {
+ from: string;
+ };
+ };
+ body?: {
+ /** @description The previous version of the body if the action was `edited`. */
+ from: string;
+ };
+ title?: {
+ /** @description The previous version of the title if the action was `edited`. */
+ from: string;
+ };
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ number: components["schemas"]["webhooks_number"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ pull_request: components["schemas"]["pull-request-webhook"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender?: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request enqueued event */
+ "webhook-pull-request-enqueued": {
+ /** @enum {string} */
+ action: "enqueued";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ number: number;
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** Pull Request */
+ pull_request: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ additions?: number;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string | null;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ changed_files?: number;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments?: number;
+ /** Format: uri */
+ comments_url: string;
+ commits?: number;
+ /** Format: uri */
+ commits_url: string;
+ /** Format: date-time */
+ created_at: string;
+ deletions?: number;
+ /** Format: uri */
+ diff_url: string;
+ /** @description Indicates whether or not the pull request is a draft. */
+ draft: boolean;
+ head: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ /** @description Indicates whether maintainers can modify the pull request. */
+ maintainer_can_modify?: boolean;
+ merge_commit_sha: string | null;
+ mergeable?: boolean | null;
+ mergeable_state?: string;
+ merged?: boolean | null;
+ /** Format: date-time */
+ merged_at: string | null;
+ /** User */
+ merged_by?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ /** @description Number uniquely identifying the pull request within its repository. */
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ rebaseable?: boolean | null;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ review_comments?: number;
+ /** Format: uri */
+ review_comments_url: string;
+ /**
+ * @description State of this Pull Request. Either `open` or `closed`.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ /** @description The title of the pull request. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request labeled event */
+ "webhook-pull-request-labeled": {
+ /** @enum {string} */
+ action: "labeled";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ label?: components["schemas"]["webhooks_label"];
+ number: components["schemas"]["webhooks_number"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** Pull Request */
+ pull_request: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ additions?: number;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string | null;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ changed_files?: number;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments?: number;
+ /** Format: uri */
+ comments_url: string;
+ commits?: number;
+ /** Format: uri */
+ commits_url: string;
+ /** Format: date-time */
+ created_at: string;
+ deletions?: number;
+ /** Format: uri */
+ diff_url: string;
+ /** @description Indicates whether or not the pull request is a draft. */
+ draft: boolean;
+ head: {
+ label: string | null;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ } | null;
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ /** @description Indicates whether maintainers can modify the pull request. */
+ maintainer_can_modify?: boolean;
+ merge_commit_sha: string | null;
+ mergeable?: boolean | null;
+ mergeable_state?: string;
+ merged?: boolean | null;
+ /** Format: date-time */
+ merged_at: string | null;
+ /** User */
+ merged_by?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ /** @description Number uniquely identifying the pull request within its repository. */
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ rebaseable?: boolean | null;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ review_comments?: number;
+ /** Format: uri */
+ review_comments_url: string;
+ /**
+ * @description State of this Pull Request. Either `open` or `closed`.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ /** @description The title of the pull request. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request locked event */
+ "webhook-pull-request-locked": {
+ /** @enum {string} */
+ action: "locked";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ number: components["schemas"]["webhooks_number"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** Pull Request */
+ pull_request: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ additions?: number;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string | null;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ changed_files?: number;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments?: number;
+ /** Format: uri */
+ comments_url: string;
+ commits?: number;
+ /** Format: uri */
+ commits_url: string;
+ /** Format: date-time */
+ created_at: string;
+ deletions?: number;
+ /** Format: uri */
+ diff_url: string;
+ /** @description Indicates whether or not the pull request is a draft. */
+ draft: boolean;
+ head: {
+ label: string | null;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ } | null;
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ /** @description Indicates whether maintainers can modify the pull request. */
+ maintainer_can_modify?: boolean;
+ merge_commit_sha: string | null;
+ mergeable?: boolean | null;
+ mergeable_state?: string;
+ merged?: boolean | null;
+ /** Format: date-time */
+ merged_at: string | null;
+ /** User */
+ merged_by?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ /** @description Number uniquely identifying the pull request within its repository. */
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ rebaseable?: boolean | null;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ review_comments?: number;
+ /** Format: uri */
+ review_comments_url: string;
+ /**
+ * @description State of this Pull Request. Either `open` or `closed`.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ /** @description The title of the pull request. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request milestoned event */
+ "webhook-pull-request-milestoned": {
+ /** @enum {string} */
+ action: "milestoned";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ milestone?: components["schemas"]["milestone"];
+ number: components["schemas"]["webhooks_number"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ pull_request: components["schemas"]["webhooks_pull_request_5"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender?: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request opened event */
+ "webhook-pull-request-opened": {
+ /** @enum {string} */
+ action: "opened";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ number: components["schemas"]["webhooks_number"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ pull_request: components["schemas"]["pull-request-webhook"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request ready_for_review event */
+ "webhook-pull-request-ready-for-review": {
+ /** @enum {string} */
+ action: "ready_for_review";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ number: components["schemas"]["webhooks_number"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ pull_request: components["schemas"]["pull-request-webhook"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request reopened event */
+ "webhook-pull-request-reopened": {
+ /** @enum {string} */
+ action: "reopened";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ number: components["schemas"]["webhooks_number"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ pull_request: components["schemas"]["pull-request-webhook"];
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request_review_comment created event */
+ "webhook-pull-request-review-comment-created": {
+ /** @enum {string} */
+ action: "created";
+ /**
+ * Pull Request Review Comment
+ * @description The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself.
+ */
+ comment: {
+ _links: {
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ pull_request: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description The text of the comment. */
+ body: string;
+ /** @description The SHA of the commit to which the comment applies. */
+ commit_id: string;
+ /** Format: date-time */
+ created_at: string;
+ /** @description The diff of the line that the comment refers to. */
+ diff_hunk: string;
+ /**
+ * Format: uri
+ * @description HTML URL for the pull request review comment.
+ */
+ html_url: string;
+ /** @description The ID of the pull request review comment. */
+ id: number;
+ /** @description The comment ID to reply to. */
+ in_reply_to_id?: number;
+ /** @description The line of the blob to which the comment applies. The last line of the range for a multi-line comment */
+ line: number | null;
+ /** @description The node ID of the pull request review comment. */
+ node_id: string;
+ /** @description The SHA of the original commit to which the comment applies. */
+ original_commit_id: string;
+ /** @description The line of the blob to which the comment applies. The last line of the range for a multi-line comment */
+ original_line: number | null;
+ /** @description The index of the original line in the diff to which the comment applies. */
+ original_position: number;
+ /** @description The first line of the range for a multi-line comment. */
+ original_start_line: number | null;
+ /** @description The relative path of the file to which the comment applies. */
+ path: string;
+ /** @description The line index in the diff to which the comment applies. */
+ position: number | null;
+ /** @description The ID of the pull request review to which the comment belongs. */
+ pull_request_review_id: number | null;
+ /**
+ * Format: uri
+ * @description URL for the pull request that the review comment belongs to.
+ */
+ pull_request_url: string;
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /**
+ * @description The side of the first line of the range for a multi-line comment.
+ * @enum {string}
+ */
+ side: "LEFT" | "RIGHT";
+ /** @description The first line of the range for a multi-line comment. */
+ start_line: number | null;
+ /**
+ * @description The side of the first line of the range for a multi-line comment.
+ * @default RIGHT
+ * @enum {string|null}
+ */
+ start_side: "LEFT" | "RIGHT" | null;
+ /**
+ * @description The level at which the comment is targeted, can be a diff line or a file.
+ * @enum {string}
+ */
+ subject_type?: "line" | "file";
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL for the pull request review comment
+ */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ pull_request: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge?: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string | null;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ closed_at: string | null;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: uri */
+ commits_url: string;
+ created_at: string;
+ /** Format: uri */
+ diff_url: string;
+ draft?: boolean;
+ head: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions?: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ } | null;
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ merge_commit_sha: string | null;
+ merged_at: string | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ /** Format: uri */
+ review_comments_url: string;
+ /** @enum {string} */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ title: string;
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request_review_comment deleted event */
+ "webhook-pull-request-review-comment-deleted": {
+ /** @enum {string} */
+ action: "deleted";
+ comment: components["schemas"]["webhooks_review_comment"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ pull_request: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge?: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string | null;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ closed_at: string | null;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: uri */
+ commits_url: string;
+ created_at: string;
+ /** Format: uri */
+ diff_url: string;
+ draft?: boolean;
+ head: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ } | null;
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ merge_commit_sha: string | null;
+ merged_at: string | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ /** Format: uri */
+ review_comments_url: string;
+ /** @enum {string} */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ title: string;
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request_review_comment edited event */
+ "webhook-pull-request-review-comment-edited": {
+ /** @enum {string} */
+ action: "edited";
+ changes: components["schemas"]["webhooks_changes"];
+ comment: components["schemas"]["webhooks_review_comment"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ pull_request: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge?: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string | null;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ closed_at: string | null;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: uri */
+ commits_url: string;
+ created_at: string;
+ /** Format: uri */
+ diff_url: string;
+ draft?: boolean;
+ head: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ } | null;
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ merge_commit_sha: string | null;
+ merged_at: string | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ /** Format: uri */
+ review_comments_url: string;
+ /** @enum {string} */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ title: string;
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request_review dismissed event */
+ "webhook-pull-request-review-dismissed": {
+ /** @enum {string} */
+ action: "dismissed";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** Simple Pull Request */
+ pull_request: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string | null;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ closed_at: string | null;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: uri */
+ commits_url: string;
+ created_at: string;
+ /** Format: uri */
+ diff_url: string;
+ draft: boolean;
+ head: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ } | null;
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ merge_commit_sha: string | null;
+ merged_at: string | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ /** Format: uri */
+ review_comments_url: string;
+ /** @enum {string} */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ title: string;
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ repository: components["schemas"]["repository-webhooks"];
+ /** @description The review that was affected. */
+ review: {
+ _links: {
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ pull_request: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description The text of the review. */
+ body: string | null;
+ /** @description A commit SHA for the review. */
+ commit_id: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the review */
+ id: number;
+ node_id: string;
+ /** Format: uri */
+ pull_request_url: string;
+ /** @enum {string} */
+ state: "dismissed" | "approved" | "changes_requested";
+ /** Format: date-time */
+ submitted_at: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request_review edited event */
+ "webhook-pull-request-review-edited": {
+ /** @enum {string} */
+ action: "edited";
+ changes: {
+ body?: {
+ /** @description The previous version of the body if the action was `edited`. */
+ from: string;
+ };
+ };
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** Simple Pull Request */
+ pull_request: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string | null;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ closed_at: string | null;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: uri */
+ commits_url: string;
+ created_at: string;
+ /** Format: uri */
+ diff_url: string;
+ draft: boolean;
+ head: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ } | null;
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ merge_commit_sha: string | null;
+ merged_at: string | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ /** Format: uri */
+ review_comments_url: string;
+ /** @enum {string} */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ title: string;
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ repository: components["schemas"]["repository-webhooks"];
+ review: components["schemas"]["webhooks_review"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request review_request_removed event */
+ "webhook-pull-request-review-request-removed": OneOf<
+ [
+ {
+ /** @enum {string} */
+ action: "review_request_removed";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ /** @description The pull request number. */
+ number: number;
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** Pull Request */
+ pull_request: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ additions?: number;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string | null;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title.
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ changed_files?: number;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments?: number;
+ /** Format: uri */
+ comments_url: string;
+ commits?: number;
+ /** Format: uri */
+ commits_url: string;
+ /** Format: date-time */
+ created_at: string;
+ deletions?: number;
+ /** Format: uri */
+ diff_url: string;
+ /** @description Indicates whether or not the pull request is a draft. */
+ draft: boolean;
+ head: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ /** @description Indicates whether maintainers can modify the pull request. */
+ maintainer_can_modify?: boolean;
+ merge_commit_sha: string | null;
+ mergeable?: boolean | null;
+ mergeable_state?: string;
+ merged?: boolean | null;
+ /** Format: date-time */
+ merged_at: string | null;
+ /** User */
+ merged_by?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ /** @description Number uniquely identifying the pull request within its repository. */
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ rebaseable?: boolean | null;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ review_comments?: number;
+ /** Format: uri */
+ review_comments_url: string;
+ /**
+ * @description State of this Pull Request. Either `open` or `closed`.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ /** @description The title of the pull request. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ repository: components["schemas"]["repository-webhooks"];
+ /** User */
+ requested_reviewer: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ sender: components["schemas"]["simple-user-webhooks"];
+ },
+ {
+ /** @enum {string} */
+ action: "review_request_removed";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ /** @description The pull request number. */
+ number: number;
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** Pull Request */
+ pull_request: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ additions?: number;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string | null;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ changed_files?: number;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments?: number;
+ /** Format: uri */
+ comments_url: string;
+ commits?: number;
+ /** Format: uri */
+ commits_url: string;
+ /** Format: date-time */
+ created_at: string;
+ deletions?: number;
+ /** Format: uri */
+ diff_url: string;
+ /** @description Indicates whether or not the pull request is a draft. */
+ draft: boolean;
+ head: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ /** @description Indicates whether maintainers can modify the pull request. */
+ maintainer_can_modify?: boolean;
+ merge_commit_sha: string | null;
+ mergeable?: boolean | null;
+ mergeable_state?: string;
+ merged?: boolean | null;
+ /** Format: date-time */
+ merged_at: string | null;
+ /** User */
+ merged_by?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ /** @description Number uniquely identifying the pull request within its repository. */
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ rebaseable?: boolean | null;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ review_comments?: number;
+ /** Format: uri */
+ review_comments_url: string;
+ /**
+ * @description State of this Pull Request. Either `open` or `closed`.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ /** @description The title of the pull request. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ repository: components["schemas"]["repository-webhooks"];
+ /**
+ * Team
+ * @description Groups of organization members that gives permissions on specified repositories.
+ */
+ requested_team: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ };
+ sender: components["schemas"]["simple-user-webhooks"];
+ },
+ ]
+ >;
+ /** pull_request review_requested event */
+ "webhook-pull-request-review-requested": OneOf<
+ [
+ {
+ /** @enum {string} */
+ action: "review_requested";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ /** @description The pull request number. */
+ number: number;
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** Pull Request */
+ pull_request: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ additions?: number;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string | null;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ changed_files?: number;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments?: number;
+ /** Format: uri */
+ comments_url: string;
+ commits?: number;
+ /** Format: uri */
+ commits_url: string;
+ /** Format: date-time */
+ created_at: string;
+ deletions?: number;
+ /** Format: uri */
+ diff_url: string;
+ /** @description Indicates whether or not the pull request is a draft. */
+ draft: boolean;
+ head: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ /** @description Indicates whether maintainers can modify the pull request. */
+ maintainer_can_modify?: boolean;
+ merge_commit_sha: string | null;
+ mergeable?: boolean | null;
+ mergeable_state?: string;
+ merged?: boolean | null;
+ /** Format: date-time */
+ merged_at: string | null;
+ /** User */
+ merged_by?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ /** @description Number uniquely identifying the pull request within its repository. */
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ rebaseable?: boolean | null;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ review_comments?: number;
+ /** Format: uri */
+ review_comments_url: string;
+ /**
+ * @description State of this Pull Request. Either `open` or `closed`.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ /** @description The title of the pull request. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ repository: components["schemas"]["repository-webhooks"];
+ /** User */
+ requested_reviewer: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ sender: components["schemas"]["simple-user-webhooks"];
+ },
+ {
+ /** @enum {string} */
+ action: "review_requested";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ /** @description The pull request number. */
+ number: number;
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** Pull Request */
+ pull_request: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ additions?: number;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string | null;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ changed_files?: number;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments?: number;
+ /** Format: uri */
+ comments_url: string;
+ commits?: number;
+ /** Format: uri */
+ commits_url: string;
+ /** Format: date-time */
+ created_at: string;
+ deletions?: number;
+ /** Format: uri */
+ diff_url: string;
+ /** @description Indicates whether or not the pull request is a draft. */
+ draft: boolean;
+ head: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ /** @description Indicates whether maintainers can modify the pull request. */
+ maintainer_can_modify?: boolean;
+ merge_commit_sha: string | null;
+ mergeable?: boolean | null;
+ mergeable_state?: string;
+ merged?: boolean | null;
+ /** Format: date-time */
+ merged_at: string | null;
+ /** User */
+ merged_by?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ /** @description Number uniquely identifying the pull request within its repository. */
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ rebaseable?: boolean | null;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ review_comments?: number;
+ /** Format: uri */
+ review_comments_url: string;
+ /**
+ * @description State of this Pull Request. Either `open` or `closed`.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ /** @description The title of the pull request. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ repository: components["schemas"]["repository-webhooks"];
+ /**
+ * Team
+ * @description Groups of organization members that gives permissions on specified repositories.
+ */
+ requested_team: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ };
+ sender: components["schemas"]["simple-user-webhooks"];
+ },
+ ]
+ >;
+ /** pull_request_review submitted event */
+ "webhook-pull-request-review-submitted": {
+ /** @enum {string} */
+ action: "submitted";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** Simple Pull Request */
+ pull_request: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string | null;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ closed_at: string | null;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: uri */
+ commits_url: string;
+ created_at: string;
+ /** Format: uri */
+ diff_url: string;
+ draft: boolean;
+ head: {
+ label: string | null;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ } | null;
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ merge_commit_sha: string | null;
+ merged_at: string | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ /** Format: uri */
+ review_comments_url: string;
+ /** @enum {string} */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ title: string;
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ repository: components["schemas"]["repository-webhooks"];
+ review: components["schemas"]["webhooks_review"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request_review_thread resolved event */
+ "webhook-pull-request-review-thread-resolved": {
+ /** @enum {string} */
+ action: "resolved";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** Simple Pull Request */
+ pull_request: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string | null;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ closed_at: string | null;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: uri */
+ commits_url: string;
+ created_at: string;
+ /** Format: uri */
+ diff_url: string;
+ draft: boolean;
+ head: {
+ label: string | null;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ } | null;
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ merge_commit_sha: string | null;
+ merged_at: string | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ /** Format: uri */
+ review_comments_url: string;
+ /** @enum {string} */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ title: string;
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ repository: components["schemas"]["repository-webhooks"];
+ sender?: components["schemas"]["simple-user-webhooks"];
+ thread: {
+ comments: {
+ _links: {
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ pull_request: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description The text of the comment. */
+ body: string;
+ /** @description The SHA of the commit to which the comment applies. */
+ commit_id: string;
+ /** Format: date-time */
+ created_at: string;
+ /** @description The diff of the line that the comment refers to. */
+ diff_hunk: string;
+ /**
+ * Format: uri
+ * @description HTML URL for the pull request review comment.
+ */
+ html_url: string;
+ /** @description The ID of the pull request review comment. */
+ id: number;
+ /** @description The comment ID to reply to. */
+ in_reply_to_id?: number;
+ /** @description The line of the blob to which the comment applies. The last line of the range for a multi-line comment */
+ line: number | null;
+ /** @description The node ID of the pull request review comment. */
+ node_id: string;
+ /** @description The SHA of the original commit to which the comment applies. */
+ original_commit_id: string;
+ /** @description The line of the blob to which the comment applies. The last line of the range for a multi-line comment */
+ original_line: number | null;
+ /** @description The index of the original line in the diff to which the comment applies. */
+ original_position: number;
+ /** @description The first line of the range for a multi-line comment. */
+ original_start_line: number | null;
+ /** @description The relative path of the file to which the comment applies. */
+ path: string;
+ /** @description The line index in the diff to which the comment applies. */
+ position: number | null;
+ /** @description The ID of the pull request review to which the comment belongs. */
+ pull_request_review_id: number | null;
+ /**
+ * Format: uri
+ * @description URL for the pull request that the review comment belongs to.
+ */
+ pull_request_url: string;
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /**
+ * @description The side of the first line of the range for a multi-line comment.
+ * @enum {string}
+ */
+ side: "LEFT" | "RIGHT";
+ /** @description The first line of the range for a multi-line comment. */
+ start_line: number | null;
+ /**
+ * @description The side of the first line of the range for a multi-line comment.
+ * @default RIGHT
+ * @enum {string|null}
+ */
+ start_side: "LEFT" | "RIGHT" | null;
+ /**
+ * @description The level at which the comment is targeted, can be a diff line or a file.
+ * @enum {string}
+ */
+ subject_type?: "line" | "file";
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL for the pull request review comment
+ */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ }[];
+ node_id: string;
+ };
+ };
+ /** pull_request_review_thread unresolved event */
+ "webhook-pull-request-review-thread-unresolved": {
+ /** @enum {string} */
+ action: "unresolved";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** Simple Pull Request */
+ pull_request: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ closed_at: string | null;
+ /** Format: uri */
+ comments_url: string;
+ /** Format: uri */
+ commits_url: string;
+ created_at: string;
+ /** Format: uri */
+ diff_url: string;
+ draft: boolean;
+ head: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ merge_commit_sha: string | null;
+ merged_at: string | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ /** Format: uri */
+ review_comments_url: string;
+ /** @enum {string} */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ title: string;
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ repository: components["schemas"]["repository-webhooks"];
+ sender?: components["schemas"]["simple-user-webhooks"];
+ thread: {
+ comments: {
+ _links: {
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ pull_request: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /** @description The text of the comment. */
+ body: string;
+ /** @description The SHA of the commit to which the comment applies. */
+ commit_id: string;
+ /** Format: date-time */
+ created_at: string;
+ /** @description The diff of the line that the comment refers to. */
+ diff_hunk: string;
+ /**
+ * Format: uri
+ * @description HTML URL for the pull request review comment.
+ */
+ html_url: string;
+ /** @description The ID of the pull request review comment. */
+ id: number;
+ /** @description The comment ID to reply to. */
+ in_reply_to_id?: number;
+ /** @description The line of the blob to which the comment applies. The last line of the range for a multi-line comment */
+ line: number | null;
+ /** @description The node ID of the pull request review comment. */
+ node_id: string;
+ /** @description The SHA of the original commit to which the comment applies. */
+ original_commit_id: string;
+ /** @description The line of the blob to which the comment applies. The last line of the range for a multi-line comment */
+ original_line: number;
+ /** @description The index of the original line in the diff to which the comment applies. */
+ original_position: number;
+ /** @description The first line of the range for a multi-line comment. */
+ original_start_line: number | null;
+ /** @description The relative path of the file to which the comment applies. */
+ path: string;
+ /** @description The line index in the diff to which the comment applies. */
+ position: number | null;
+ /** @description The ID of the pull request review to which the comment belongs. */
+ pull_request_review_id: number | null;
+ /**
+ * Format: uri
+ * @description URL for the pull request that the review comment belongs to.
+ */
+ pull_request_url: string;
+ /** Reactions */
+ reactions: {
+ "+1": number;
+ "-1": number;
+ confused: number;
+ eyes: number;
+ heart: number;
+ hooray: number;
+ laugh: number;
+ rocket: number;
+ total_count: number;
+ /** Format: uri */
+ url: string;
+ };
+ /**
+ * @description The side of the first line of the range for a multi-line comment.
+ * @enum {string}
+ */
+ side: "LEFT" | "RIGHT";
+ /** @description The first line of the range for a multi-line comment. */
+ start_line: number | null;
+ /**
+ * @description The side of the first line of the range for a multi-line comment.
+ * @default RIGHT
+ * @enum {string|null}
+ */
+ start_side: "LEFT" | "RIGHT" | null;
+ /**
+ * @description The level at which the comment is targeted, can be a diff line or a file.
+ * @enum {string}
+ */
+ subject_type?: "line" | "file";
+ /** Format: date-time */
+ updated_at: string;
+ /**
+ * Format: uri
+ * @description URL for the pull request review comment
+ */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ }[];
+ node_id: string;
+ };
+ };
+ /** pull_request synchronize event */
+ "webhook-pull-request-synchronize": {
+ /** @enum {string} */
+ action: "synchronize";
+ after: string;
+ before: string;
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ number: components["schemas"]["webhooks_number"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** Pull Request */
+ pull_request: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ additions?: number;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string | null;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ changed_files?: number;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments?: number;
+ /** Format: uri */
+ comments_url: string;
+ commits?: number;
+ /** Format: uri */
+ commits_url: string;
+ /** Format: date-time */
+ created_at: string;
+ deletions?: number;
+ /** Format: uri */
+ diff_url: string;
+ /** @description Indicates whether or not the pull request is a draft. */
+ draft: boolean;
+ head: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit message title.
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ /** @description Indicates whether maintainers can modify the pull request. */
+ maintainer_can_modify?: boolean;
+ merge_commit_sha: string | null;
+ mergeable?: boolean | null;
+ mergeable_state?: string;
+ merged?: boolean | null;
+ /** Format: date-time */
+ merged_at: string | null;
+ /** User */
+ merged_by?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ /** @description Number uniquely identifying the pull request within its repository. */
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ rebaseable?: boolean | null;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ review_comments?: number;
+ /** Format: uri */
+ review_comments_url: string;
+ /**
+ * @description State of this Pull Request. Either `open` or `closed`.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ /** @description The title of the pull request. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request unassigned event */
+ "webhook-pull-request-unassigned": {
+ /** @enum {string} */
+ action: "unassigned";
+ assignee?: components["schemas"]["webhooks_user_mannequin"];
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ number: components["schemas"]["webhooks_number"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** Pull Request */
+ pull_request: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ additions?: number;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string | null;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string | null;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ changed_files?: number;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments?: number;
+ /** Format: uri */
+ comments_url: string;
+ commits?: number;
+ /** Format: uri */
+ commits_url: string;
+ /** Format: date-time */
+ created_at: string;
+ deletions?: number;
+ /** Format: uri */
+ diff_url: string;
+ /** @description Indicates whether or not the pull request is a draft. */
+ draft: boolean;
+ head: {
+ label: string | null;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ } | null;
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ /** @description Indicates whether maintainers can modify the pull request. */
+ maintainer_can_modify?: boolean;
+ merge_commit_sha: string | null;
+ mergeable?: boolean | null;
+ mergeable_state?: string;
+ merged?: boolean | null;
+ /** Format: date-time */
+ merged_at: string | null;
+ /** User */
+ merged_by?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ /** @description Number uniquely identifying the pull request within its repository. */
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ rebaseable?: boolean | null;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ review_comments?: number;
+ /** Format: uri */
+ review_comments_url: string;
+ /**
+ * @description State of this Pull Request. Either `open` or `closed`.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ /** @description The title of the pull request. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ repository: components["schemas"]["repository-webhooks"];
+ sender?: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request unlabeled event */
+ "webhook-pull-request-unlabeled": {
+ /** @enum {string} */
+ action: "unlabeled";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ label?: components["schemas"]["webhooks_label"];
+ number: components["schemas"]["webhooks_number"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** Pull Request */
+ pull_request: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ additions?: number;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string | null;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ changed_files?: number;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments?: number;
+ /** Format: uri */
+ comments_url: string;
+ commits?: number;
+ /** Format: uri */
+ commits_url: string;
+ /** Format: date-time */
+ created_at: string;
+ deletions?: number;
+ /** Format: uri */
+ diff_url: string;
+ /** @description Indicates whether or not the pull request is a draft. */
+ draft: boolean;
+ head: {
+ label: string | null;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit message title.
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ } | null;
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ /** @description Indicates whether maintainers can modify the pull request. */
+ maintainer_can_modify?: boolean;
+ merge_commit_sha: string | null;
+ mergeable?: boolean | null;
+ mergeable_state?: string;
+ merged?: boolean | null;
+ /** Format: date-time */
+ merged_at: string | null;
+ /** User */
+ merged_by?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ /** @description Number uniquely identifying the pull request within its repository. */
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ rebaseable?: boolean | null;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ review_comments?: number;
+ /** Format: uri */
+ review_comments_url: string;
+ /**
+ * @description State of this Pull Request. Either `open` or `closed`.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ /** @description The title of the pull request. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization" | "Mannequin";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** pull_request unlocked event */
+ "webhook-pull-request-unlocked": {
+ /** @enum {string} */
+ action: "unlocked";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ number: components["schemas"]["webhooks_number"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /** Pull Request */
+ pull_request: {
+ _links: {
+ /** Link */
+ comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ commits: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ html: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ issue: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comment: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ review_comments: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ self: {
+ /** Format: uri-template */
+ href: string;
+ };
+ /** Link */
+ statuses: {
+ /** Format: uri-template */
+ href: string;
+ };
+ };
+ /** @enum {string|null} */
+ active_lock_reason:
+ | "resolved"
+ | "off-topic"
+ | "too heated"
+ | "spam"
+ | null;
+ additions?: number;
+ /** User */
+ assignee: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ assignees: ({
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null)[];
+ /**
+ * AuthorAssociation
+ * @description How the author is associated with the repository.
+ * @enum {string}
+ */
+ author_association:
+ | "COLLABORATOR"
+ | "CONTRIBUTOR"
+ | "FIRST_TIMER"
+ | "FIRST_TIME_CONTRIBUTOR"
+ | "MANNEQUIN"
+ | "MEMBER"
+ | "NONE"
+ | "OWNER";
+ /**
+ * PullRequestAutoMerge
+ * @description The status of auto merging a pull request.
+ */
+ auto_merge: {
+ /** @description Commit message for the merge commit. */
+ commit_message: string | null;
+ /** @description Title for the merge commit message. */
+ commit_title: string;
+ /** User */
+ enabled_by: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * @description The merge method to use.
+ * @enum {string}
+ */
+ merge_method: "merge" | "squash" | "rebase";
+ } | null;
+ base: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ body: string | null;
+ changed_files?: number;
+ /** Format: date-time */
+ closed_at: string | null;
+ comments?: number;
+ /** Format: uri */
+ comments_url: string;
+ commits?: number;
+ /** Format: uri */
+ commits_url: string;
+ /** Format: date-time */
+ created_at: string;
+ deletions?: number;
+ /** Format: uri */
+ diff_url: string;
+ /** @description Indicates whether or not the pull request is a draft. */
+ draft: boolean;
+ head: {
+ label: string;
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repo: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /**
+ * @description The default value for a merge commit message.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `PR_BODY` - default to the pull request's body.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
+ /**
+ * @description The default value for a merge commit title.
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name).
+ * @enum {string}
+ */
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ /**
+ * @description The default value for a squash merge commit message:
+ *
+ * - `PR_BODY` - default to the pull request's body.
+ * - `COMMIT_MESSAGES` - default to the branch's commit messages.
+ * - `BLANK` - default to a blank commit message.
+ * @enum {string}
+ */
+ squash_merge_commit_message?:
+ | "PR_BODY"
+ | "COMMIT_MESSAGES"
+ | "BLANK";
+ /**
+ * @description The default value for a squash merge commit title:
+ *
+ * - `PR_TITLE` - default to the pull request's title.
+ * - `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit).
+ * @enum {string}
+ */
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /**
+ * @description Whether a squash merge commit can use the pull request title as default. **This property has been deprecated. Please use `squash_merge_commit_title` instead.
+ * @default false
+ */
+ use_squash_pr_title_as_default?: boolean;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ } | null;
+ sha: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ issue_url: string;
+ labels: {
+ /** @description 6-character hex code, without the leading #, identifying the color */
+ color: string;
+ default: boolean;
+ description: string | null;
+ id: number;
+ /** @description The name of the label. */
+ name: string;
+ node_id: string;
+ /**
+ * Format: uri
+ * @description URL for the label
+ */
+ url: string;
+ }[];
+ locked: boolean;
+ /** @description Indicates whether maintainers can modify the pull request. */
+ maintainer_can_modify?: boolean;
+ merge_commit_sha: string | null;
+ mergeable?: boolean | null;
+ mergeable_state?: string;
+ merged?: boolean | null;
+ /** Format: date-time */
+ merged_at: string | null;
+ /** User */
+ merged_by?: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ /**
+ * Milestone
+ * @description A collection of related issues and pull requests.
+ */
+ milestone: {
+ /** Format: date-time */
+ closed_at: string | null;
+ closed_issues: number;
+ /** Format: date-time */
+ created_at: string;
+ /** User */
+ creator: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ description: string | null;
+ /** Format: date-time */
+ due_on: string | null;
+ /** Format: uri */
+ html_url: string;
+ id: number;
+ /** Format: uri */
+ labels_url: string;
+ node_id: string;
+ /** @description The number of the milestone. */
+ number: number;
+ open_issues: number;
+ /**
+ * @description The state of the milestone.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** @description The title of the milestone. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ } | null;
+ node_id: string;
+ /** @description Number uniquely identifying the pull request within its repository. */
+ number: number;
+ /** Format: uri */
+ patch_url: string;
+ rebaseable?: boolean | null;
+ requested_reviewers: OneOf<
+ [
+ {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null,
+ {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ },
+ ]
+ >[];
+ requested_teams: {
+ deleted?: boolean;
+ /** @description Description of the team */
+ description?: string | null;
+ /** Format: uri */
+ html_url?: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url?: string;
+ /** @description Name of the team */
+ name: string;
+ node_id?: string;
+ parent?: {
+ /** @description Description of the team */
+ description: string | null;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the team */
+ id: number;
+ /** Format: uri-template */
+ members_url: string;
+ /** @description Name of the team */
+ name: string;
+ node_id: string;
+ /** @description Permission that the team will have for its repositories */
+ permission: string;
+ /** @enum {string} */
+ privacy: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url: string;
+ slug: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url: string;
+ } | null;
+ /** @description Permission that the team will have for its repositories */
+ permission?: string;
+ /** @enum {string} */
+ privacy?: "open" | "closed" | "secret";
+ /** Format: uri */
+ repositories_url?: string;
+ slug?: string;
+ /**
+ * Format: uri
+ * @description URL for the team
+ */
+ url?: string;
+ }[];
+ /** Format: uri-template */
+ review_comment_url: string;
+ review_comments?: number;
+ /** Format: uri */
+ review_comments_url: string;
+ /**
+ * @description State of this Pull Request. Either `open` or `closed`.
+ * @enum {string}
+ */
+ state: "open" | "closed";
+ /** Format: uri */
+ statuses_url: string;
+ /** @description The title of the pull request. */
+ title: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** User */
+ user: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ };
+ repository: components["schemas"]["repository-webhooks"];
+ sender: components["schemas"]["simple-user-webhooks"];
+ };
+ /** push event */
+ "webhook-push": {
+ /** @description The SHA of the most recent commit on `ref` after the push. */
+ after: string;
+ base_ref: components["schemas"]["webhooks_nullable_string"];
+ /** @description The SHA of the most recent commit on `ref` before the push. */
+ before: string;
+ /** @description An array of commit objects describing the pushed commits. (Pushed commits are all commits that are included in the `compare` between the `before` commit and the `after` commit.) The array includes a maximum of 2048 commits. If necessary, you can use the [Commits API](https://docs.github.com/rest/commits) to fetch additional commits. */
+ commits: {
+ /** @description An array of files added in the commit. A maximum of 3000 changed files will be reported per commit. */
+ added?: string[];
+ /**
+ * Committer
+ * @description Metaproperties for Git author/committer information.
+ */
+ author: {
+ /** Format: date-time */
+ date?: string;
+ /** Format: email */
+ email: string | null;
+ /** @description The git author's name. */
+ name: string;
+ username?: string;
+ };
+ /**
+ * Committer
+ * @description Metaproperties for Git author/committer information.
+ */
+ committer: {
+ /** Format: date-time */
+ date?: string;
+ /** Format: email */
+ email: string | null;
+ /** @description The git author's name. */
+ name: string;
+ username?: string;
+ };
+ /** @description Whether this commit is distinct from any that have been pushed before. */
+ distinct: boolean;
+ id: string;
+ /** @description The commit message. */
+ message: string;
+ /** @description An array of files modified by the commit. A maximum of 3000 changed files will be reported per commit. */
+ modified?: string[];
+ /** @description An array of files removed in the commit. A maximum of 3000 changed files will be reported per commit. */
+ removed?: string[];
+ /**
+ * Format: date-time
+ * @description The ISO 8601 timestamp of the commit.
+ */
+ timestamp: string;
+ tree_id: string;
+ /**
+ * Format: uri
+ * @description URL that points to the commit API resource.
+ */
+ url: string;
+ }[];
+ /** @description URL that shows the changes in this `ref` update, from the `before` commit to the `after` commit. For a newly created `ref` that is directly based on the default branch, this is the comparison between the head of the default branch and the `after` commit. Otherwise, this shows all commits until the `after` commit. */
+ compare: string;
+ /** @description Whether this push created the `ref`. */
+ created: boolean;
+ /** @description Whether this push deleted the `ref`. */
+ deleted: boolean;
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ /** @description Whether this push was a force push of the `ref`. */
+ forced: boolean;
+ /** Commit */
+ head_commit: {
+ /** @description An array of files added in the commit. */
+ added?: string[];
+ /**
+ * Committer
+ * @description Metaproperties for Git author/committer information.
+ */
+ author: {
+ /** Format: date-time */
+ date?: string;
+ /** Format: email */
+ email: string | null;
+ /** @description The git author's name. */
+ name: string;
+ username?: string;
+ };
+ /**
+ * Committer
+ * @description Metaproperties for Git author/committer information.
+ */
+ committer: {
+ /** Format: date-time */
+ date?: string;
+ /** Format: email */
+ email: string | null;
+ /** @description The git author's name. */
+ name: string;
+ username?: string;
+ };
+ /** @description Whether this commit is distinct from any that have been pushed before. */
+ distinct: boolean;
+ id: string;
+ /** @description The commit message. */
+ message: string;
+ /** @description An array of files modified by the commit. */
+ modified?: string[];
+ /** @description An array of files removed in the commit. */
+ removed?: string[];
+ /**
+ * Format: date-time
+ * @description The ISO 8601 timestamp of the commit.
+ */
+ timestamp: string;
+ tree_id: string;
+ /**
+ * Format: uri
+ * @description URL that points to the commit API resource.
+ */
+ url: string;
+ } | null;
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ /**
+ * Committer
+ * @description Metaproperties for Git author/committer information.
+ */
+ pusher: {
+ /** Format: date-time */
+ date?: string;
+ /** Format: email */
+ email?: string | null;
+ /** @description The git author's name. */
+ name: string;
+ username?: string;
+ };
+ /** @description The full git ref that was pushed. Example: `refs/heads/main` or `refs/tags/v3.14.1`. */
+ ref: string;
+ /**
+ * Repository
+ * @description A git repository
+ */
+ repository: {
+ /**
+ * @description Whether to allow auto-merge for pull requests.
+ * @default false
+ */
+ allow_auto_merge?: boolean;
+ /** @description Whether to allow private forks */
+ allow_forking?: boolean;
+ /**
+ * @description Whether to allow merge commits for pull requests.
+ * @default true
+ */
+ allow_merge_commit?: boolean;
+ /**
+ * @description Whether to allow rebase merges for pull requests.
+ * @default true
+ */
+ allow_rebase_merge?: boolean;
+ /**
+ * @description Whether to allow squash merges for pull requests.
+ * @default true
+ */
+ allow_squash_merge?: boolean;
+ allow_update_branch?: boolean;
+ /** Format: uri-template */
+ archive_url: string;
+ /**
+ * @description Whether the repository is archived.
+ * @default false
+ */
+ archived: boolean;
+ /** Format: uri-template */
+ assignees_url: string;
+ /** Format: uri-template */
+ blobs_url: string;
+ /** Format: uri-template */
+ branches_url: string;
+ /** Format: uri */
+ clone_url: string;
+ /** Format: uri-template */
+ collaborators_url: string;
+ /** Format: uri-template */
+ comments_url: string;
+ /** Format: uri-template */
+ commits_url: string;
+ /** Format: uri-template */
+ compare_url: string;
+ /** Format: uri-template */
+ contents_url: string;
+ /** Format: uri */
+ contributors_url: string;
+ created_at: number | string;
+ /** @description The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. */
+ custom_properties?: {
+ [key: string]: unknown;
+ };
+ /** @description The default branch of the repository. */
+ default_branch: string;
+ /**
+ * @description Whether to delete head branches when pull requests are merged
+ * @default false
+ */
+ delete_branch_on_merge?: boolean;
+ /** Format: uri */
+ deployments_url: string;
+ description: string | null;
+ /** @description Returns whether or not this repository is disabled. */
+ disabled?: boolean;
+ /** Format: uri */
+ downloads_url: string;
+ /** Format: uri */
+ events_url: string;
+ fork: boolean;
+ forks: number;
+ forks_count: number;
+ /** Format: uri */
+ forks_url: string;
+ full_name: string;
+ /** Format: uri-template */
+ git_commits_url: string;
+ /** Format: uri-template */
+ git_refs_url: string;
+ /** Format: uri-template */
+ git_tags_url: string;
+ /** Format: uri */
+ git_url: string;
+ /**
+ * @description Whether downloads are enabled.
+ * @default true
+ */
+ has_downloads: boolean;
+ /**
+ * @description Whether issues are enabled.
+ * @default true
+ */
+ has_issues: boolean;
+ has_pages: boolean;
+ /**
+ * @description Whether projects are enabled.
+ * @default true
+ */
+ has_projects: boolean;
+ /**
+ * @description Whether the wiki is enabled.
+ * @default true
+ */
+ has_wiki: boolean;
+ /**
+ * @description Whether discussions are enabled.
+ * @default false
+ */
+ has_discussions: boolean;
+ homepage: string | null;
+ /** Format: uri */
+ hooks_url: string;
+ /** Format: uri */
+ html_url: string;
+ /** @description Unique identifier of the repository */
+ id: number;
+ is_template?: boolean;
+ /** Format: uri-template */
+ issue_comment_url: string;
+ /** Format: uri-template */
+ issue_events_url: string;
+ /** Format: uri-template */
+ issues_url: string;
+ /** Format: uri-template */
+ keys_url: string;
+ /** Format: uri-template */
+ labels_url: string;
+ language: string | null;
+ /** Format: uri */
+ languages_url: string;
+ /** License */
+ license: {
+ key: string;
+ name: string;
+ node_id: string;
+ spdx_id: string;
+ /** Format: uri */
+ url: string | null;
+ } | null;
+ master_branch?: string;
+ /** Format: uri */
+ merges_url: string;
+ /** Format: uri-template */
+ milestones_url: string;
+ /** Format: uri */
+ mirror_url: string | null;
+ /** @description The name of the repository. */
+ name: string;
+ node_id: string;
+ /** Format: uri-template */
+ notifications_url: string;
+ open_issues: number;
+ open_issues_count: number;
+ organization?: string;
+ /** User */
+ owner: {
+ /** Format: uri */
+ avatar_url?: string;
+ deleted?: boolean;
+ email?: string | null;
+ /** Format: uri-template */
+ events_url?: string;
+ /** Format: uri */
+ followers_url?: string;
+ /** Format: uri-template */
+ following_url?: string;
+ /** Format: uri-template */
+ gists_url?: string;
+ gravatar_id?: string;
+ /** Format: uri */
+ html_url?: string;
+ id: number;
+ login: string;
+ name?: string;
+ node_id?: string;
+ /** Format: uri */
+ organizations_url?: string;
+ /** Format: uri */
+ received_events_url?: string;
+ /** Format: uri */
+ repos_url?: string;
+ site_admin?: boolean;
+ /** Format: uri-template */
+ starred_url?: string;
+ /** Format: uri */
+ subscriptions_url?: string;
+ /** @enum {string} */
+ type?: "Bot" | "User" | "Organization";
+ /** Format: uri */
+ url?: string;
+ } | null;
+ permissions?: {
+ admin: boolean;
+ maintain?: boolean;
+ pull: boolean;
+ push: boolean;
+ triage?: boolean;
+ };
+ /** @description Whether the repository is private or public. */
+ private: boolean;
+ public?: boolean;
+ /** Format: uri-template */
+ pulls_url: string;
+ pushed_at: number | string | null;
+ /** Format: uri-template */
+ releases_url: string;
+ role_name?: string | null;
+ size: number;
+ ssh_url: string;
+ stargazers?: number;
+ stargazers_count: number;
+ /** Format: uri */
+ stargazers_url: string;
+ /** Format: uri-template */
+ statuses_url: string;
+ /** Format: uri */
+ subscribers_url: string;
+ /** Format: uri */
+ subscription_url: string;
+ /** Format: uri */
+ svn_url: string;
+ /** Format: uri */
+ tags_url: string;
+ /** Format: uri */
+ teams_url: string;
+ topics: string[];
+ /** Format: uri-template */
+ trees_url: string;
+ /** Format: date-time */
+ updated_at: string;
+ /** Format: uri */
+ url: string;
+ /** @enum {string} */
+ visibility: "public" | "private" | "internal";
+ watchers: number;
+ watchers_count: number;
+ /** @description Whether to require contributors to sign off on web-based commits */
+ web_commit_signoff_required?: boolean;
+ };
+ sender?: components["schemas"]["simple-user-webhooks"];
+ };
+ "webhook-registry-package-published": {
+ /** @enum {string} */
+ action: "published";
+ enterprise?: components["schemas"]["enterprise-webhooks"];
+ installation?: components["schemas"]["simple-installation"];
+ organization?: components["schemas"]["organization-simple-webhooks"];
+ registry_package: {
+ created_at: string | null;
+ description: string | null;
+ ecosystem: string;
+ html_url: string;
+ id: number;
+ name: string;
+ namespace: string;
+ owner: {
+ avatar_url: string;
+ events_url: string;
+ followers_url: string;
+ following_url: string;
+ gists_url: string;
+ gravatar_id: string;
+ html_url: string;
+ id: number;
+ login: string;
+ node_id: string;
+ organizations_url: string;
+ received_events_url: string;
+ repos_url: string;
+ site_admin: boolean;
+ starred_url: string;
+ subscriptions_url: string;
+ type: string;
+ url: string;
+ };
+ package_type: string;
+ package_version: {
+ author?: {
+ avatar_url: string;
+ events_url: string;
+ followers_url: string;
+ following_url: string;
+ gists_url: string;
+ gravatar_id: string;
+ html_url: string;
+ id: number;
+ login: string;
+ node_id: string;
+ organizations_url: string;
+ received_events_url: string;
+ repos_url: string;
+ site_admin: boolean;
+ starred_url: string;
+ subscriptions_url: string;
+ type: string;
+ url: string;
+ };
+ body?: string | Record;
+ body_html?: string;
+ container_metadata?: {
+ labels?: Record | null;
+ manifest?: Record | null;
+ tag?: {
+ digest?: string;
+ name?: string;
+ };
+ };
+ created_at?: string;
+ description: string;
+ docker_metadata?: {
+ tags?: string[];
+ }[];
+ draft?: boolean;
+ html_url: string;
+ id: number;
+ installation_command: string;
+ manifest?: string;
+ metadata: {
+ [key: string]: unknown;
+ }[];
+ name: string;
+ npm_metadata?: {
+ name?: string;
+ version?: string;
+ npm_user?: string;
+ author?: string | Record | null;
+ bugs?: string | Record | null;
+ dependencies?: Record;
+ dev_dependencies?: Record;
+ peer_dependencies?: Record;
+ optional_dependencies?: Record;
+ description?: string;
+ dist?: string | Record