diff --git a/node_modules/.package-lock.json b/node_modules/.package-lock.json
index c49897752b..24d44f79b6 100644
--- a/node_modules/.package-lock.json
+++ b/node_modules/.package-lock.json
@@ -390,21 +390,14 @@
}
},
"node_modules/@octokit/plugin-retry": {
- "version": "3.0.3",
- "license": "MIT",
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-3.0.9.tgz",
+ "integrity": "sha512-r+fArdP5+TG6l1Rv/C9hVoty6tldw6cE2pRHNGmFPdyfrc696R6JjrQ3d7HdVqGwuzfyrcaLAKD7K8TX8aehUQ==",
"dependencies": {
- "@octokit/types": "^5.0.0",
+ "@octokit/types": "^6.0.3",
"bottleneck": "^2.15.3"
}
},
- "node_modules/@octokit/plugin-retry/node_modules/@octokit/types": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/@octokit/types/-/types-5.5.0.tgz",
- "integrity": "sha512-UZ1pErDue6bZNjYOotCNveTXArOMZQFG6hKJfOnGnulVCMcVVi7YIIuuR4WfBhjo7zgpmzn/BkPDnUXtNx+PcQ==",
- "dependencies": {
- "@types/node": ">= 8"
- }
- },
"node_modules/@octokit/request": {
"version": "5.4.9",
"license": "MIT",
diff --git a/node_modules/@octokit/plugin-retry/README.md b/node_modules/@octokit/plugin-retry/README.md
index 46ec98982b..77103252f8 100644
--- a/node_modules/@octokit/plugin-retry/README.md
+++ b/node_modules/@octokit/plugin-retry/README.md
@@ -13,12 +13,12 @@
Browsers
-Load `@octokit/plugin-retry` and [`@octokit/core`](https://github.com/octokit/core.js) (or core-compatible module) directly from [cdn.pika.dev](https://cdn.pika.dev)
+Load `@octokit/plugin-retry` and [`@octokit/core`](https://github.com/octokit/core.js) (or core-compatible module) directly from [cdn.skypack.dev](https://cdn.skypack.dev)
```html
```
@@ -38,8 +38,6 @@ const { retry } = require("@octokit/plugin-retry");
-**Note**: If you use it with `@octokit/rest` v16, install `@octokit/core` as a devDependency. This is only temporary and will no longer be necessary with `@octokit/rest` v17.
-
```js
const MyOctokit = Octokit.plugin(retry);
const octokit = new MyOctokit({ auth: "secret123" });
diff --git a/node_modules/@octokit/plugin-retry/dist-node/index.js b/node_modules/@octokit/plugin-retry/dist-node/index.js
index 674e2c3285..c4c8c1972a 100644
--- a/node_modules/@octokit/plugin-retry/dist-node/index.js
+++ b/node_modules/@octokit/plugin-retry/dist-node/index.js
@@ -43,30 +43,31 @@ async function wrapRequest(state, request, options) {
return limiter.schedule(request, options);
}
-const VERSION = "3.0.3";
-function retry(octokit, octokitOptions = {}) {
+const VERSION = "3.0.9";
+function retry(octokit, octokitOptions) {
const state = Object.assign({
enabled: true,
retryAfterBaseValue: 1000,
doNotRetry: [400, 401, 403, 404, 422],
retries: 3
}, octokitOptions.retry);
- octokit.retry = {
- retryRequest: (error, retries, retryAfter) => {
- error.request.request = Object.assign({}, error.request.request, {
- retries: retries,
- retryAfter: retryAfter
- });
- return error;
- }
- };
- if (!state.enabled) {
- return;
+ if (state.enabled) {
+ octokit.hook.error("request", errorRequest.bind(null, octokit, state));
+ octokit.hook.wrap("request", wrapRequest.bind(null, state));
}
- octokit.hook.error("request", errorRequest.bind(null, octokit, state));
- octokit.hook.wrap("request", wrapRequest.bind(null, state));
+ return {
+ retry: {
+ retryRequest: (error, retries, retryAfter) => {
+ error.request.request = Object.assign({}, error.request.request, {
+ retries: retries,
+ retryAfter: retryAfter
+ });
+ return error;
+ }
+ }
+ };
}
retry.VERSION = VERSION;
diff --git a/node_modules/@octokit/plugin-retry/dist-node/index.js.map b/node_modules/@octokit/plugin-retry/dist-node/index.js.map
index e0c9041f24..d060e4b70c 100644
--- a/node_modules/@octokit/plugin-retry/dist-node/index.js.map
+++ b/node_modules/@octokit/plugin-retry/dist-node/index.js.map
@@ -1 +1 @@
-{"version":3,"file":"index.js","sources":["../dist-src/error-request.js","../dist-src/wrap-request.js","../dist-src/index.js"],"sourcesContent":["// @ts-ignore\nexport async function errorRequest(octokit, state, error, options) {\n if (!error.request || !error.request.request) {\n // address https://github.com/octokit/plugin-retry.js/issues/8\n throw error;\n }\n // retry all >= 400 && not doNotRetry\n if (error.status >= 400 && !state.doNotRetry.includes(error.status)) {\n const retries = options.request.retries != null ? options.request.retries : state.retries;\n const retryAfter = Math.pow((options.request.retryCount || 0) + 1, 2);\n throw octokit.retry.retryRequest(error, retries, retryAfter);\n }\n // Maybe eventually there will be more cases here\n throw error;\n}\n","// @ts-ignore\nimport Bottleneck from \"bottleneck/light\";\n// @ts-ignore\nexport async function wrapRequest(state, request, options) {\n const limiter = new Bottleneck();\n // @ts-ignore\n limiter.on(\"failed\", function (error, info) {\n const maxRetries = ~~error.request.request.retries;\n const after = ~~error.request.request.retryAfter;\n options.request.retryCount = info.retryCount + 1;\n if (maxRetries > info.retryCount) {\n // Returning a number instructs the limiter to retry\n // the request after that number of milliseconds have passed\n return after * state.retryAfterBaseValue;\n }\n });\n return limiter.schedule(request, options);\n}\n","import { errorRequest } from \"./error-request\";\nimport { wrapRequest } from \"./wrap-request\";\nexport const VERSION = \"3.0.3\";\nexport function retry(octokit, octokitOptions = {}) {\n const state = Object.assign({\n enabled: true,\n retryAfterBaseValue: 1000,\n doNotRetry: [400, 401, 403, 404, 422],\n retries: 3,\n }, octokitOptions.retry);\n octokit.retry = {\n retryRequest: (error, retries, retryAfter) => {\n error.request.request = Object.assign({}, error.request.request, {\n retries: retries,\n retryAfter: retryAfter,\n });\n return error;\n },\n };\n if (!state.enabled) {\n return;\n }\n octokit.hook.error(\"request\", errorRequest.bind(null, octokit, state));\n octokit.hook.wrap(\"request\", wrapRequest.bind(null, state));\n}\nretry.VERSION = VERSION;\n"],"names":["errorRequest","octokit","state","error","options","request","status","doNotRetry","includes","retries","retryAfter","Math","pow","retryCount","retry","retryRequest","wrapRequest","limiter","Bottleneck","on","info","maxRetries","after","retryAfterBaseValue","schedule","VERSION","octokitOptions","Object","assign","enabled","hook","bind","wrap"],"mappings":"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"}
\ No newline at end of file
+{"version":3,"file":"index.js","sources":["../dist-src/error-request.js","../dist-src/wrap-request.js","../dist-src/index.js"],"sourcesContent":["// @ts-ignore\nexport async function errorRequest(octokit, state, error, options) {\n if (!error.request || !error.request.request) {\n // address https://github.com/octokit/plugin-retry.js/issues/8\n throw error;\n }\n // retry all >= 400 && not doNotRetry\n if (error.status >= 400 && !state.doNotRetry.includes(error.status)) {\n const retries = options.request.retries != null ? options.request.retries : state.retries;\n const retryAfter = Math.pow((options.request.retryCount || 0) + 1, 2);\n throw octokit.retry.retryRequest(error, retries, retryAfter);\n }\n // Maybe eventually there will be more cases here\n throw error;\n}\n","// @ts-ignore\nimport Bottleneck from \"bottleneck/light\";\n// @ts-ignore\nexport async function wrapRequest(state, request, options) {\n const limiter = new Bottleneck();\n // @ts-ignore\n limiter.on(\"failed\", function (error, info) {\n const maxRetries = ~~error.request.request.retries;\n const after = ~~error.request.request.retryAfter;\n options.request.retryCount = info.retryCount + 1;\n if (maxRetries > info.retryCount) {\n // Returning a number instructs the limiter to retry\n // the request after that number of milliseconds have passed\n return after * state.retryAfterBaseValue;\n }\n });\n return limiter.schedule(request, options);\n}\n","import { errorRequest } from \"./error-request\";\nimport { wrapRequest } from \"./wrap-request\";\nexport const VERSION = \"3.0.9\";\nexport function retry(octokit, octokitOptions) {\n const state = Object.assign({\n enabled: true,\n retryAfterBaseValue: 1000,\n doNotRetry: [400, 401, 403, 404, 422],\n retries: 3,\n }, octokitOptions.retry);\n if (state.enabled) {\n octokit.hook.error(\"request\", errorRequest.bind(null, octokit, state));\n octokit.hook.wrap(\"request\", wrapRequest.bind(null, state));\n }\n return {\n retry: {\n retryRequest: (error, retries, retryAfter) => {\n error.request.request = Object.assign({}, error.request.request, {\n retries: retries,\n retryAfter: retryAfter,\n });\n return error;\n },\n },\n };\n}\nretry.VERSION = VERSION;\n"],"names":["errorRequest","octokit","state","error","options","request","status","doNotRetry","includes","retries","retryAfter","Math","pow","retryCount","retry","retryRequest","wrapRequest","limiter","Bottleneck","on","info","maxRetries","after","retryAfterBaseValue","schedule","VERSION","octokitOptions","Object","assign","enabled","hook","bind","wrap"],"mappings":"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"}
\ No newline at end of file
diff --git a/node_modules/@octokit/plugin-retry/dist-src/index.js b/node_modules/@octokit/plugin-retry/dist-src/index.js
index 7849095ef9..3bf05b5252 100644
--- a/node_modules/@octokit/plugin-retry/dist-src/index.js
+++ b/node_modules/@octokit/plugin-retry/dist-src/index.js
@@ -1,26 +1,27 @@
import { errorRequest } from "./error-request";
import { wrapRequest } from "./wrap-request";
export const VERSION = "0.0.0-development";
-export function retry(octokit, octokitOptions = {}) {
+export function retry(octokit, octokitOptions) {
const state = Object.assign({
enabled: true,
retryAfterBaseValue: 1000,
doNotRetry: [400, 401, 403, 404, 422],
retries: 3,
}, octokitOptions.retry);
- octokit.retry = {
- retryRequest: (error, retries, retryAfter) => {
- error.request.request = Object.assign({}, error.request.request, {
- retries: retries,
- retryAfter: retryAfter,
- });
- return error;
+ if (state.enabled) {
+ octokit.hook.error("request", errorRequest.bind(null, octokit, state));
+ octokit.hook.wrap("request", wrapRequest.bind(null, state));
+ }
+ return {
+ retry: {
+ retryRequest: (error, retries, retryAfter) => {
+ error.request.request = Object.assign({}, error.request.request, {
+ retries: retries,
+ retryAfter: retryAfter,
+ });
+ return error;
+ },
},
};
- if (!state.enabled) {
- return;
- }
- octokit.hook.error("request", errorRequest.bind(null, octokit, state));
- octokit.hook.wrap("request", wrapRequest.bind(null, state));
}
retry.VERSION = VERSION;
diff --git a/node_modules/@octokit/plugin-retry/dist-src/version.js b/node_modules/@octokit/plugin-retry/dist-src/version.js
index 9350c15e0b..ef0392c7db 100644
--- a/node_modules/@octokit/plugin-retry/dist-src/version.js
+++ b/node_modules/@octokit/plugin-retry/dist-src/version.js
@@ -1 +1 @@
-export const VERSION = "3.0.3";
+export const VERSION = "3.0.9";
diff --git a/node_modules/@octokit/plugin-retry/dist-types/index.d.ts b/node_modules/@octokit/plugin-retry/dist-types/index.d.ts
index 92d5e4f314..015f69452b 100644
--- a/node_modules/@octokit/plugin-retry/dist-types/index.d.ts
+++ b/node_modules/@octokit/plugin-retry/dist-types/index.d.ts
@@ -1,6 +1,11 @@
import { Octokit } from "@octokit/core";
+import { RequestError } from "@octokit/request-error";
export declare const VERSION = "0.0.0-development";
-export declare function retry(octokit: Octokit, octokitOptions?: ConstructorParameters[0]): void;
+export declare function retry(octokit: Octokit, octokitOptions: any): {
+ retry: {
+ retryRequest: (error: RequestError, retries: number, retryAfter: number) => RequestError;
+ };
+};
export declare namespace retry {
var VERSION: string;
}
diff --git a/node_modules/@octokit/plugin-retry/dist-types/version.d.ts b/node_modules/@octokit/plugin-retry/dist-types/version.d.ts
index 09c2448d38..106efe20b7 100644
--- a/node_modules/@octokit/plugin-retry/dist-types/version.d.ts
+++ b/node_modules/@octokit/plugin-retry/dist-types/version.d.ts
@@ -1 +1 @@
-export declare const VERSION = "3.0.3";
+export declare const VERSION = "3.0.9";
diff --git a/node_modules/@octokit/plugin-retry/dist-web/index.js b/node_modules/@octokit/plugin-retry/dist-web/index.js
index bbeea9bf88..151a348e5d 100644
--- a/node_modules/@octokit/plugin-retry/dist-web/index.js
+++ b/node_modules/@octokit/plugin-retry/dist-web/index.js
@@ -34,28 +34,29 @@ async function wrapRequest(state, request, options) {
return limiter.schedule(request, options);
}
-const VERSION = "3.0.3";
-function retry(octokit, octokitOptions = {}) {
+const VERSION = "3.0.9";
+function retry(octokit, octokitOptions) {
const state = Object.assign({
enabled: true,
retryAfterBaseValue: 1000,
doNotRetry: [400, 401, 403, 404, 422],
retries: 3,
}, octokitOptions.retry);
- octokit.retry = {
- retryRequest: (error, retries, retryAfter) => {
- error.request.request = Object.assign({}, error.request.request, {
- retries: retries,
- retryAfter: retryAfter,
- });
- return error;
+ if (state.enabled) {
+ octokit.hook.error("request", errorRequest.bind(null, octokit, state));
+ octokit.hook.wrap("request", wrapRequest.bind(null, state));
+ }
+ return {
+ retry: {
+ retryRequest: (error, retries, retryAfter) => {
+ error.request.request = Object.assign({}, error.request.request, {
+ retries: retries,
+ retryAfter: retryAfter,
+ });
+ return error;
+ },
},
};
- if (!state.enabled) {
- return;
- }
- octokit.hook.error("request", errorRequest.bind(null, octokit, state));
- octokit.hook.wrap("request", wrapRequest.bind(null, state));
}
retry.VERSION = VERSION;
diff --git a/node_modules/@octokit/plugin-retry/dist-web/index.js.map b/node_modules/@octokit/plugin-retry/dist-web/index.js.map
index 94a012fa63..e03fe812ee 100644
--- a/node_modules/@octokit/plugin-retry/dist-web/index.js.map
+++ b/node_modules/@octokit/plugin-retry/dist-web/index.js.map
@@ -1 +1 @@
-{"version":3,"file":"index.js","sources":["../dist-src/error-request.js","../dist-src/wrap-request.js","../dist-src/index.js"],"sourcesContent":["// @ts-ignore\nexport async function errorRequest(octokit, state, error, options) {\n if (!error.request || !error.request.request) {\n // address https://github.com/octokit/plugin-retry.js/issues/8\n throw error;\n }\n // retry all >= 400 && not doNotRetry\n if (error.status >= 400 && !state.doNotRetry.includes(error.status)) {\n const retries = options.request.retries != null ? options.request.retries : state.retries;\n const retryAfter = Math.pow((options.request.retryCount || 0) + 1, 2);\n throw octokit.retry.retryRequest(error, retries, retryAfter);\n }\n // Maybe eventually there will be more cases here\n throw error;\n}\n","// @ts-ignore\nimport Bottleneck from \"bottleneck/light\";\n// @ts-ignore\nexport async function wrapRequest(state, request, options) {\n const limiter = new Bottleneck();\n // @ts-ignore\n limiter.on(\"failed\", function (error, info) {\n const maxRetries = ~~error.request.request.retries;\n const after = ~~error.request.request.retryAfter;\n options.request.retryCount = info.retryCount + 1;\n if (maxRetries > info.retryCount) {\n // Returning a number instructs the limiter to retry\n // the request after that number of milliseconds have passed\n return after * state.retryAfterBaseValue;\n }\n });\n return limiter.schedule(request, options);\n}\n","import { errorRequest } from \"./error-request\";\nimport { wrapRequest } from \"./wrap-request\";\nexport const VERSION = \"3.0.3\";\nexport function retry(octokit, octokitOptions = {}) {\n const state = Object.assign({\n enabled: true,\n retryAfterBaseValue: 1000,\n doNotRetry: [400, 401, 403, 404, 422],\n retries: 3,\n }, octokitOptions.retry);\n octokit.retry = {\n retryRequest: (error, retries, retryAfter) => {\n error.request.request = Object.assign({}, error.request.request, {\n retries: retries,\n retryAfter: retryAfter,\n });\n return error;\n },\n };\n if (!state.enabled) {\n return;\n }\n octokit.hook.error(\"request\", errorRequest.bind(null, octokit, state));\n octokit.hook.wrap(\"request\", wrapRequest.bind(null, state));\n}\nretry.VERSION = VERSION;\n"],"names":[],"mappings":"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"}
\ No newline at end of file
+{"version":3,"file":"index.js","sources":["../dist-src/error-request.js","../dist-src/wrap-request.js","../dist-src/index.js"],"sourcesContent":["// @ts-ignore\nexport async function errorRequest(octokit, state, error, options) {\n if (!error.request || !error.request.request) {\n // address https://github.com/octokit/plugin-retry.js/issues/8\n throw error;\n }\n // retry all >= 400 && not doNotRetry\n if (error.status >= 400 && !state.doNotRetry.includes(error.status)) {\n const retries = options.request.retries != null ? options.request.retries : state.retries;\n const retryAfter = Math.pow((options.request.retryCount || 0) + 1, 2);\n throw octokit.retry.retryRequest(error, retries, retryAfter);\n }\n // Maybe eventually there will be more cases here\n throw error;\n}\n","// @ts-ignore\nimport Bottleneck from \"bottleneck/light\";\n// @ts-ignore\nexport async function wrapRequest(state, request, options) {\n const limiter = new Bottleneck();\n // @ts-ignore\n limiter.on(\"failed\", function (error, info) {\n const maxRetries = ~~error.request.request.retries;\n const after = ~~error.request.request.retryAfter;\n options.request.retryCount = info.retryCount + 1;\n if (maxRetries > info.retryCount) {\n // Returning a number instructs the limiter to retry\n // the request after that number of milliseconds have passed\n return after * state.retryAfterBaseValue;\n }\n });\n return limiter.schedule(request, options);\n}\n","import { errorRequest } from \"./error-request\";\nimport { wrapRequest } from \"./wrap-request\";\nexport const VERSION = \"3.0.9\";\nexport function retry(octokit, octokitOptions) {\n const state = Object.assign({\n enabled: true,\n retryAfterBaseValue: 1000,\n doNotRetry: [400, 401, 403, 404, 422],\n retries: 3,\n }, octokitOptions.retry);\n if (state.enabled) {\n octokit.hook.error(\"request\", errorRequest.bind(null, octokit, state));\n octokit.hook.wrap(\"request\", wrapRequest.bind(null, state));\n }\n return {\n retry: {\n retryRequest: (error, retries, retryAfter) => {\n error.request.request = Object.assign({}, error.request.request, {\n retries: retries,\n retryAfter: retryAfter,\n });\n return error;\n },\n },\n };\n}\nretry.VERSION = VERSION;\n"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/LICENSE b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/LICENSE
deleted file mode 100644
index 57bee5f182..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/LICENSE
+++ /dev/null
@@ -1,7 +0,0 @@
-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 (including the next paragraph) 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/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/README.md b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/README.md
deleted file mode 100644
index 7078945661..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/README.md
+++ /dev/null
@@ -1,64 +0,0 @@
-# types.ts
-
-> Shared TypeScript definitions for Octokit projects
-
-[](https://www.npmjs.com/package/@octokit/types)
-[](https://github.com/octokit/types.ts/actions?workflow=Test)
-
-
-
-- [Usage](#usage)
-- [Examples](#examples)
- - [Get parameter and response data types for a REST API endpoint](#get-parameter-and-response-data-types-for-a-rest-api-endpoint)
- - [Get response types from endpoint methods](#get-response-types-from-endpoint-methods)
-- [Contributing](#contributing)
-- [License](#license)
-
-
-
-## Usage
-
-See all exported types at https://octokit.github.io/types.ts
-
-## Examples
-
-### Get parameter and response data types for a REST API endpoint
-
-```ts
-import { Endpoints } from "@octokit/types";
-
-type listUserReposParameters = Endpoints["GET /repos/:owner/:repo"]["parameters"];
-type listUserReposResponse = Endpoints["GET /repos/:owner/:repo"]["response"];
-
-async function listRepos(
- options: listUserReposParameters
-): listUserReposResponse["data"] {
- // ...
-}
-```
-
-### Get response types from endpoint methods
-
-```ts
-import {
- GetResponseTypeFromEndpointMethod,
- GetResponseDataTypeFromEndpointMethod,
-} from "@octokit/types";
-import { Octokit } from "@octokit/rest";
-
-const octokit = new Octokit();
-type CreateLabelResponseType = GetResponseTypeFromEndpointMethod<
- typeof octokit.issues.createLabel
->;
-type CreateLabelResponseDataType = GetResponseDataTypeFromEndpointMethod<
- typeof octokit.issues.createLabel
->;
-```
-
-## Contributing
-
-See [CONTRIBUTING.md](CONTRIBUTING.md)
-
-## License
-
-[MIT](LICENSE)
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-node/index.js b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-node/index.js
deleted file mode 100644
index 52f7b68a8b..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-node/index.js
+++ /dev/null
@@ -1,8 +0,0 @@
-'use strict';
-
-Object.defineProperty(exports, '__esModule', { value: true });
-
-const VERSION = "5.5.0";
-
-exports.VERSION = VERSION;
-//# sourceMappingURL=index.js.map
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-node/index.js.map b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-node/index.js.map
deleted file mode 100644
index 2d148d3b95..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-node/index.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"index.js","sources":["../dist-src/VERSION.js"],"sourcesContent":["export const VERSION = \"0.0.0-development\";\n"],"names":["VERSION"],"mappings":";;;;MAAaA,OAAO,GAAG;;;;"}
\ No newline at end of file
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/AuthInterface.js b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/AuthInterface.js
deleted file mode 100644
index cb0ff5c3b5..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/AuthInterface.js
+++ /dev/null
@@ -1 +0,0 @@
-export {};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/EndpointDefaults.js b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/EndpointDefaults.js
deleted file mode 100644
index cb0ff5c3b5..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/EndpointDefaults.js
+++ /dev/null
@@ -1 +0,0 @@
-export {};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/EndpointInterface.js b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/EndpointInterface.js
deleted file mode 100644
index cb0ff5c3b5..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/EndpointInterface.js
+++ /dev/null
@@ -1 +0,0 @@
-export {};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/EndpointOptions.js b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/EndpointOptions.js
deleted file mode 100644
index cb0ff5c3b5..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/EndpointOptions.js
+++ /dev/null
@@ -1 +0,0 @@
-export {};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/Fetch.js b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/Fetch.js
deleted file mode 100644
index cb0ff5c3b5..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/Fetch.js
+++ /dev/null
@@ -1 +0,0 @@
-export {};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/GetResponseTypeFromEndpointMethod.js b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/GetResponseTypeFromEndpointMethod.js
deleted file mode 100644
index cb0ff5c3b5..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/GetResponseTypeFromEndpointMethod.js
+++ /dev/null
@@ -1 +0,0 @@
-export {};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/OctokitResponse.js b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/OctokitResponse.js
deleted file mode 100644
index cb0ff5c3b5..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/OctokitResponse.js
+++ /dev/null
@@ -1 +0,0 @@
-export {};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/RequestError.js b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/RequestError.js
deleted file mode 100644
index cb0ff5c3b5..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/RequestError.js
+++ /dev/null
@@ -1 +0,0 @@
-export {};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/RequestHeaders.js b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/RequestHeaders.js
deleted file mode 100644
index cb0ff5c3b5..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/RequestHeaders.js
+++ /dev/null
@@ -1 +0,0 @@
-export {};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/RequestInterface.js b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/RequestInterface.js
deleted file mode 100644
index cb0ff5c3b5..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/RequestInterface.js
+++ /dev/null
@@ -1 +0,0 @@
-export {};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/RequestMethod.js b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/RequestMethod.js
deleted file mode 100644
index cb0ff5c3b5..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/RequestMethod.js
+++ /dev/null
@@ -1 +0,0 @@
-export {};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/RequestOptions.js b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/RequestOptions.js
deleted file mode 100644
index cb0ff5c3b5..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/RequestOptions.js
+++ /dev/null
@@ -1 +0,0 @@
-export {};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/RequestParameters.js b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/RequestParameters.js
deleted file mode 100644
index cb0ff5c3b5..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/RequestParameters.js
+++ /dev/null
@@ -1 +0,0 @@
-export {};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/RequestRequestOptions.js b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/RequestRequestOptions.js
deleted file mode 100644
index cb0ff5c3b5..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/RequestRequestOptions.js
+++ /dev/null
@@ -1 +0,0 @@
-export {};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/ResponseHeaders.js b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/ResponseHeaders.js
deleted file mode 100644
index cb0ff5c3b5..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/ResponseHeaders.js
+++ /dev/null
@@ -1 +0,0 @@
-export {};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/Route.js b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/Route.js
deleted file mode 100644
index cb0ff5c3b5..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/Route.js
+++ /dev/null
@@ -1 +0,0 @@
-export {};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/Signal.js b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/Signal.js
deleted file mode 100644
index cb0ff5c3b5..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/Signal.js
+++ /dev/null
@@ -1 +0,0 @@
-export {};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/StrategyInterface.js b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/StrategyInterface.js
deleted file mode 100644
index cb0ff5c3b5..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/StrategyInterface.js
+++ /dev/null
@@ -1 +0,0 @@
-export {};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/Url.js b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/Url.js
deleted file mode 100644
index cb0ff5c3b5..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/Url.js
+++ /dev/null
@@ -1 +0,0 @@
-export {};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/VERSION.js b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/VERSION.js
deleted file mode 100644
index b3b230cdb4..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/VERSION.js
+++ /dev/null
@@ -1 +0,0 @@
-export const VERSION = "5.5.0";
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/generated/Endpoints.js b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/generated/Endpoints.js
deleted file mode 100644
index cb0ff5c3b5..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/generated/Endpoints.js
+++ /dev/null
@@ -1 +0,0 @@
-export {};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/index.js b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/index.js
deleted file mode 100644
index 004ae9b220..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-src/index.js
+++ /dev/null
@@ -1,21 +0,0 @@
-export * from "./AuthInterface";
-export * from "./EndpointDefaults";
-export * from "./EndpointInterface";
-export * from "./EndpointOptions";
-export * from "./Fetch";
-export * from "./OctokitResponse";
-export * from "./RequestError";
-export * from "./RequestHeaders";
-export * from "./RequestInterface";
-export * from "./RequestMethod";
-export * from "./RequestOptions";
-export * from "./RequestParameters";
-export * from "./RequestRequestOptions";
-export * from "./ResponseHeaders";
-export * from "./Route";
-export * from "./Signal";
-export * from "./StrategyInterface";
-export * from "./Url";
-export * from "./VERSION";
-export * from "./GetResponseTypeFromEndpointMethod";
-export * from "./generated/Endpoints";
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/AuthInterface.d.ts b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/AuthInterface.d.ts
deleted file mode 100644
index 0c19b50d2d..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/AuthInterface.d.ts
+++ /dev/null
@@ -1,31 +0,0 @@
-import { EndpointOptions } from "./EndpointOptions";
-import { OctokitResponse } from "./OctokitResponse";
-import { RequestInterface } from "./RequestInterface";
-import { RequestParameters } from "./RequestParameters";
-import { Route } from "./Route";
-/**
- * Interface to implement complex authentication strategies for Octokit.
- * An object Implementing the AuthInterface can directly be passed as the
- * `auth` option in the Octokit constructor.
- *
- * For the official implementations of the most common authentication
- * strategies, see https://github.com/octokit/auth.js
- */
-export interface AuthInterface {
- (...args: AuthOptions): Promise;
- hook: {
- /**
- * Sends a request using the passed `request` instance
- *
- * @param {object} endpoint Must set `method` and `url`. Plus URL, query or body parameters, as well as `headers`, `mediaType.{format|previews}`, `request`, or `baseUrl`.
- */
- (request: RequestInterface, options: EndpointOptions): Promise>;
- /**
- * Sends a request using the passed `request` instance
- *
- * @param {string} route Request method + URL. Example: `'GET /orgs/:org'`
- * @param {object} [parameters] URL, query or body parameters, as well as `headers`, `mediaType.{format|previews}`, `request`, or `baseUrl`.
- */
- (request: RequestInterface, route: Route, parameters?: RequestParameters): Promise>;
- };
-}
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/EndpointDefaults.d.ts b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/EndpointDefaults.d.ts
deleted file mode 100644
index a2c2307829..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/EndpointDefaults.d.ts
+++ /dev/null
@@ -1,21 +0,0 @@
-import { RequestHeaders } from "./RequestHeaders";
-import { RequestMethod } from "./RequestMethod";
-import { RequestParameters } from "./RequestParameters";
-import { Url } from "./Url";
-/**
- * The `.endpoint()` method is guaranteed to set all keys defined by RequestParameters
- * as well as the method property.
- */
-export declare type EndpointDefaults = RequestParameters & {
- baseUrl: Url;
- method: RequestMethod;
- url?: Url;
- headers: RequestHeaders & {
- accept: string;
- "user-agent": string;
- };
- mediaType: {
- format: string;
- previews: string[];
- };
-};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/EndpointInterface.d.ts b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/EndpointInterface.d.ts
deleted file mode 100644
index df585bef1d..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/EndpointInterface.d.ts
+++ /dev/null
@@ -1,65 +0,0 @@
-import { EndpointDefaults } from "./EndpointDefaults";
-import { RequestOptions } from "./RequestOptions";
-import { RequestParameters } from "./RequestParameters";
-import { Route } from "./Route";
-import { Endpoints } from "./generated/Endpoints";
-export interface EndpointInterface {
- /**
- * Transforms a GitHub REST API endpoint into generic request options
- *
- * @param {object} endpoint Must set `url` unless it's set defaults. Plus URL, query or body parameters, as well as `headers`, `mediaType.{format|previews}`, `request`, or `baseUrl`.
- */
- (options: O & {
- method?: string;
- } & ("url" extends keyof D ? {
- url?: string;
- } : {
- url: string;
- })): RequestOptions & Pick;
- /**
- * Transforms a GitHub REST API endpoint into generic request options
- *
- * @param {string} route Request method + URL. Example: `'GET /orgs/:org'`
- * @param {object} [parameters] URL, query or body parameters, as well as `headers`, `mediaType.{format|previews}`, `request`, or `baseUrl`.
- */
- (route: keyof Endpoints | R, parameters?: P): (R extends keyof Endpoints ? Endpoints[R]["request"] : RequestOptions) & Pick ;
- /**
- * Object with current default route and parameters
- */
- DEFAULTS: D & EndpointDefaults;
- /**
- * Returns a new `endpoint` interface with new defaults
- */
- defaults: (newDefaults: O) => EndpointInterface;
- merge: {
- /**
- * Merges current endpoint defaults with passed route and parameters,
- * without transforming them into request options.
- *
- * @param {string} route Request method + URL. Example: `'GET /orgs/:org'`
- * @param {object} [parameters] URL, query or body parameters, as well as `headers`, `mediaType.{format|previews}`, `request`, or `baseUrl`.
- *
- */
- (route: keyof Endpoints | R, parameters?: P): D & (R extends keyof Endpoints ? Endpoints[R]["request"] & Endpoints[R]["parameters"] : EndpointDefaults) & P;
- /**
- * Merges current endpoint defaults with passed route and parameters,
- * without transforming them into request 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: P): EndpointDefaults & D & P;
- /**
- * Returns current default options.
- *
- * @deprecated use endpoint.DEFAULTS instead
- */
- (): D & EndpointDefaults;
- };
- /**
- * Stateless method to turn endpoint options into request options.
- * Calling `endpoint(options)` is the same as calling `endpoint.parse(endpoint.merge(options))`.
- *
- * @param {object} options `method`, `url`. Plus URL, query or body parameters, as well as `headers`, `mediaType.{format|previews}`, `request`, or `baseUrl`.
- */
- parse: (options: O) => RequestOptions & Pick;
-}
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/EndpointOptions.d.ts b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/EndpointOptions.d.ts
deleted file mode 100644
index b1b91f11f3..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/EndpointOptions.d.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-import { RequestMethod } from "./RequestMethod";
-import { Url } from "./Url";
-import { RequestParameters } from "./RequestParameters";
-export declare type EndpointOptions = RequestParameters & {
- method: RequestMethod;
- url: Url;
-};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/Fetch.d.ts b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/Fetch.d.ts
deleted file mode 100644
index cbbd5e8fa9..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/Fetch.d.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-/**
- * Browser's fetch method (or compatible such as fetch-mock)
- */
-export declare type Fetch = any;
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/GetResponseTypeFromEndpointMethod.d.ts b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/GetResponseTypeFromEndpointMethod.d.ts
deleted file mode 100644
index 70e1a8d466..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/GetResponseTypeFromEndpointMethod.d.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-declare type Unwrap = T extends Promise ? U : T;
-declare type AnyFunction = (...args: any[]) => any;
-export declare type GetResponseTypeFromEndpointMethod = Unwrap>;
-export declare type GetResponseDataTypeFromEndpointMethod = Unwrap>["data"];
-export {};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/OctokitResponse.d.ts b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/OctokitResponse.d.ts
deleted file mode 100644
index 9a2dd7f658..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/OctokitResponse.d.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-import { ResponseHeaders } from "./ResponseHeaders";
-import { Url } from "./Url";
-export declare type OctokitResponse = {
- headers: ResponseHeaders;
- /**
- * http response code
- */
- status: number;
- /**
- * URL of response after all redirects
- */
- url: Url;
- /**
- * This is the data you would see in https://developer.Octokit.com/v3/
- */
- data: T;
-};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/RequestError.d.ts b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/RequestError.d.ts
deleted file mode 100644
index 89174e6ee9..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/RequestError.d.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-export declare type RequestError = {
- name: string;
- status: number;
- documentation_url: string;
- errors?: Array<{
- resource: string;
- code: string;
- field: string;
- message?: string;
- }>;
-};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/RequestHeaders.d.ts b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/RequestHeaders.d.ts
deleted file mode 100644
index ac5aae0a57..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/RequestHeaders.d.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-export declare type RequestHeaders = {
- /**
- * Avoid setting `headers.accept`, use `mediaType.{format|previews}` option instead.
- */
- accept?: string;
- /**
- * Use `authorization` to send authenticated request, remember `token ` / `bearer ` prefixes. Example: `token 1234567890abcdef1234567890abcdef12345678`
- */
- authorization?: string;
- /**
- * `user-agent` is set do a default and can be overwritten as needed.
- */
- "user-agent"?: string;
- [header: string]: string | number | undefined;
-};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/RequestInterface.d.ts b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/RequestInterface.d.ts
deleted file mode 100644
index ef4d8d3a86..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/RequestInterface.d.ts
+++ /dev/null
@@ -1,34 +0,0 @@
-import { EndpointInterface } from "./EndpointInterface";
-import { OctokitResponse } from "./OctokitResponse";
-import { RequestParameters } from "./RequestParameters";
-import { Route } from "./Route";
-import { Endpoints } from "./generated/Endpoints";
-export interface RequestInterface {
- /**
- * Sends a request based on endpoint 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: O & {
- method?: string;
- } & ("url" extends keyof D ? {
- url?: string;
- } : {
- url: string;
- })): Promise>;
- /**
- * Sends a request based on endpoint options
- *
- * @param {string} route Request method + URL. Example: `'GET /orgs/:org'`
- * @param {object} [parameters] URL, query or body parameters, as well as `headers`, `mediaType.{format|previews}`, `request`, or `baseUrl`.
- */
- (route: keyof Endpoints | R, options?: R extends keyof Endpoints ? Endpoints[R]["parameters"] & RequestParameters : RequestParameters): R extends keyof Endpoints ? Promise : Promise>;
- /**
- * Returns a new `request` with updated route and parameters
- */
- defaults: (newDefaults: O) => RequestInterface;
- /**
- * Octokit endpoint API, see {@link https://github.com/octokit/endpoint.js|@octokit/endpoint}
- */
- endpoint: EndpointInterface;
-}
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/RequestMethod.d.ts b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/RequestMethod.d.ts
deleted file mode 100644
index e999c8d96c..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/RequestMethod.d.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-/**
- * HTTP Verb supported by GitHub's REST API
- */
-export declare type RequestMethod = "DELETE" | "GET" | "HEAD" | "PATCH" | "POST" | "PUT";
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/RequestOptions.d.ts b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/RequestOptions.d.ts
deleted file mode 100644
index 97e2181ca7..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/RequestOptions.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import { RequestHeaders } from "./RequestHeaders";
-import { RequestMethod } from "./RequestMethod";
-import { RequestRequestOptions } from "./RequestRequestOptions";
-import { Url } from "./Url";
-/**
- * Generic request options as they are returned by the `endpoint()` method
- */
-export declare type RequestOptions = {
- method: RequestMethod;
- url: Url;
- headers: RequestHeaders;
- body?: any;
- request?: RequestRequestOptions;
-};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/RequestParameters.d.ts b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/RequestParameters.d.ts
deleted file mode 100644
index 692d193b43..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/RequestParameters.d.ts
+++ /dev/null
@@ -1,45 +0,0 @@
-import { RequestRequestOptions } from "./RequestRequestOptions";
-import { RequestHeaders } from "./RequestHeaders";
-import { Url } from "./Url";
-/**
- * Parameters that can be passed into `request(route, parameters)` or `endpoint(route, parameters)` methods
- */
-export declare type RequestParameters = {
- /**
- * Base URL to be used when a relative URL is passed, such as `/orgs/:org`.
- * If `baseUrl` is `https://enterprise.acme-inc.com/api/v3`, then the request
- * will be sent to `https://enterprise.acme-inc.com/api/v3/orgs/:org`.
- */
- baseUrl?: Url;
- /**
- * HTTP headers. Use lowercase keys.
- */
- headers?: RequestHeaders;
- /**
- * Media type options, see {@link https://developer.github.com/v3/media/|GitHub Developer Guide}
- */
- mediaType?: {
- /**
- * `json` by default. Can be `raw`, `text`, `html`, `full`, `diff`, `patch`, `sha`, `base64`. Depending on endpoint
- */
- format?: string;
- /**
- * Custom media type names of {@link https://developer.github.com/v3/media/|API Previews} without the `-preview` suffix.
- * Example for single preview: `['squirrel-girl']`.
- * Example for multiple previews: `['squirrel-girl', 'mister-fantastic']`.
- */
- previews?: string[];
- };
- /**
- * Pass custom meta information for the request. The `request` object will be returned as is.
- */
- request?: RequestRequestOptions;
- /**
- * Any additional parameter will be passed as follows
- * 1. URL parameter if `':parameter'` or `{parameter}` is part of `url`
- * 2. Query parameter if `method` is `'GET'` or `'HEAD'`
- * 3. Request body if `parameter` is `'data'`
- * 4. JSON in the request body in the form of `body[parameter]` unless `parameter` key is `'data'`
- */
- [parameter: string]: unknown;
-};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/RequestRequestOptions.d.ts b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/RequestRequestOptions.d.ts
deleted file mode 100644
index 4482a8a45b..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/RequestRequestOptions.d.ts
+++ /dev/null
@@ -1,26 +0,0 @@
-///
-import { Agent } from "http";
-import { Fetch } from "./Fetch";
-import { Signal } from "./Signal";
-/**
- * Octokit-specific request options which are ignored for the actual request, but can be used by Octokit or plugins to manipulate how the request is sent or how a response is handled
- */
-export declare type RequestRequestOptions = {
- /**
- * Node only. Useful for custom proxy, certificate, or dns lookup.
- */
- agent?: Agent;
- /**
- * Custom replacement for built-in fetch method. Useful for testing or request hooks.
- */
- fetch?: Fetch;
- /**
- * Use an `AbortController` instance to cancel a request. In node you can only cancel streamed requests.
- */
- signal?: Signal;
- /**
- * Node only. Request/response timeout in ms, it resets on redirect. 0 to disable (OS limit applies). `options.request.signal` is recommended instead.
- */
- timeout?: number;
- [option: string]: any;
-};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/ResponseHeaders.d.ts b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/ResponseHeaders.d.ts
deleted file mode 100644
index c8fbe43f3d..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/ResponseHeaders.d.ts
+++ /dev/null
@@ -1,20 +0,0 @@
-export declare type ResponseHeaders = {
- "cache-control"?: string;
- "content-length"?: number;
- "content-type"?: string;
- date?: string;
- etag?: string;
- "last-modified"?: string;
- link?: string;
- location?: string;
- server?: string;
- status?: string;
- vary?: string;
- "x-github-mediatype"?: string;
- "x-github-request-id"?: string;
- "x-oauth-scopes"?: string;
- "x-ratelimit-limit"?: string;
- "x-ratelimit-remaining"?: string;
- "x-ratelimit-reset"?: string;
- [header: string]: string | number | undefined;
-};
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/Route.d.ts b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/Route.d.ts
deleted file mode 100644
index 807904440a..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/Route.d.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-/**
- * String consisting of an optional HTTP method and relative path or absolute URL. Examples: `'/orgs/:org'`, `'PUT /orgs/:org'`, `GET https://example.com/foo/bar`
- */
-export declare type Route = string;
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/Signal.d.ts b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/Signal.d.ts
deleted file mode 100644
index 4ebcf24e6c..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/Signal.d.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-/**
- * Abort signal
- *
- * @see https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal
- */
-export declare type Signal = any;
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/StrategyInterface.d.ts b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/StrategyInterface.d.ts
deleted file mode 100644
index 405cbd2353..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/StrategyInterface.d.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-import { AuthInterface } from "./AuthInterface";
-export interface StrategyInterface {
- (...args: StrategyOptions): AuthInterface;
-}
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/Url.d.ts b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/Url.d.ts
deleted file mode 100644
index acaad63364..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/Url.d.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-/**
- * Relative or absolute URL. Examples: `'/orgs/:org'`, `https://example.com/foo/bar`
- */
-export declare type Url = string;
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/VERSION.d.ts b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/VERSION.d.ts
deleted file mode 100644
index 6c6f30da8f..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/VERSION.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export declare const VERSION = "5.5.0";
diff --git a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/generated/Endpoints.d.ts b/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/generated/Endpoints.d.ts
deleted file mode 100644
index 9ef8471b5e..0000000000
--- a/node_modules/@octokit/plugin-retry/node_modules/@octokit/types/dist-types/generated/Endpoints.d.ts
+++ /dev/null
@@ -1,39835 +0,0 @@
-///
-import { OctokitResponse } from "../OctokitResponse";
-import { RequestHeaders } from "../RequestHeaders";
-import { RequestRequestOptions } from "../RequestRequestOptions";
-declare type RequiredPreview = {
- mediaType: {
- previews: [T, ...string[]];
- };
-};
-export interface Endpoints {
- /**
- * @see https://developer.github.com/v3/apps/#delete-an-installation-for-the-authenticated-app
- */
- "DELETE /app/installations/:installation_id": {
- parameters: AppsDeleteInstallationEndpoint;
- request: AppsDeleteInstallationRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/apps/#unsuspend-an-app-installation
- */
- "DELETE /app/installations/:installation_id/suspended": {
- parameters: AppsUnsuspendInstallationEndpoint;
- request: AppsUnsuspendInstallationRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/apps/oauth_applications/#delete-an-app-authorization
- */
- "DELETE /applications/:client_id/grant": {
- parameters: AppsDeleteAuthorizationEndpoint;
- request: AppsDeleteAuthorizationRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/apps/oauth_applications/#revoke-a-grant-for-an-application
- */
- "DELETE /applications/:client_id/grants/:access_token": {
- parameters: AppsRevokeGrantForApplicationEndpoint;
- request: AppsRevokeGrantForApplicationRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/apps/oauth_applications/#delete-an-app-token
- */
- "DELETE /applications/:client_id/token": {
- parameters: AppsDeleteTokenEndpoint;
- request: AppsDeleteTokenRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/apps/oauth_applications/#revoke-an-authorization-for-an-application
- */
- "DELETE /applications/:client_id/tokens/:access_token": {
- parameters: AppsRevokeAuthorizationForApplicationEndpoint;
- request: AppsRevokeAuthorizationForApplicationRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/oauth_authorizations/#delete-a-grant
- */
- "DELETE /applications/grants/:grant_id": {
- parameters: OauthAuthorizationsDeleteGrantEndpoint;
- request: OauthAuthorizationsDeleteGrantRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/oauth_authorizations/#delete-an-authorization
- */
- "DELETE /authorizations/:authorization_id": {
- parameters: OauthAuthorizationsDeleteAuthorizationEndpoint;
- request: OauthAuthorizationsDeleteAuthorizationRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/enterprise-admin/actions/#delete-a-self-hosted-runner-group-from-an-enterprise
- */
- "DELETE /enterprises/:enterprise/actions/runner-groups/:runner_group_id": {
- parameters: EnterpriseAdminDeleteSelfHostedRunnerGroupFromEnterpriseEndpoint;
- request: EnterpriseAdminDeleteSelfHostedRunnerGroupFromEnterpriseRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/enterprise-admin/actions/#remove-organization-access-to-a-self-hosted-runner-group-in-an-enterprise
- */
- "DELETE /enterprises/:enterprise/actions/runner-groups/:runner_group_id/organizations/:org_id": {
- parameters: EnterpriseAdminRemoveOrgAccessToSelfHostedRunnerGroupInEnterpriseEndpoint;
- request: EnterpriseAdminRemoveOrgAccessToSelfHostedRunnerGroupInEnterpriseRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/enterprise-admin/actions/#remove-a-self-hosted-runner-from-a-group-for-an-enterprise
- */
- "DELETE /enterprises/:enterprise/actions/runner-groups/:runner_group_id/runners/:runner_id": {
- parameters: EnterpriseAdminRemoveSelfHostedRunnerFromGroupForEnterpriseEndpoint;
- request: EnterpriseAdminRemoveSelfHostedRunnerFromGroupForEnterpriseRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/enterprise-admin/actions/#delete-self-hosted-runner-from-an-enterprise
- */
- "DELETE /enterprises/:enterprise/actions/runners/:runner_id": {
- parameters: EnterpriseAdminDeleteSelfHostedRunnerFromEnterpriseEndpoint;
- request: EnterpriseAdminDeleteSelfHostedRunnerFromEnterpriseRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/gists/#delete-a-gist
- */
- "DELETE /gists/:gist_id": {
- parameters: GistsDeleteEndpoint;
- request: GistsDeleteRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/gists/comments/#delete-a-gist-comment
- */
- "DELETE /gists/:gist_id/comments/:comment_id": {
- parameters: GistsDeleteCommentEndpoint;
- request: GistsDeleteCommentRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/gists/#unstar-a-gist
- */
- "DELETE /gists/:gist_id/star": {
- parameters: GistsUnstarEndpoint;
- request: GistsUnstarRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/apps/installations/#revoke-an-installation-access-token
- */
- "DELETE /installation/token": {
- parameters: AppsRevokeInstallationAccessTokenEndpoint;
- request: AppsRevokeInstallationAccessTokenRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/activity/notifications/#delete-a-thread-subscription
- */
- "DELETE /notifications/threads/:thread_id/subscription": {
- parameters: ActivityDeleteThreadSubscriptionEndpoint;
- request: ActivityDeleteThreadSubscriptionRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/actions/self-hosted-runner-groups/#delete-a-self-hosted-runner-group-from-an-organization
- */
- "DELETE /orgs/:org/actions/runner-groups/:runner_group_id": {
- parameters: ActionsDeleteSelfHostedRunnerGroupFromOrgEndpoint;
- request: ActionsDeleteSelfHostedRunnerGroupFromOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/actions/self-hosted-runner-groups/#remove-repository-access-to-a-self-hosted-runner-group-in-an-organization
- */
- "DELETE /orgs/:org/actions/runner-groups/:runner_group_id/repositories/:repository_id": {
- parameters: ActionsRemoveRepoAccessToSelfHostedRunnerGroupInOrgEndpoint;
- request: ActionsRemoveRepoAccessToSelfHostedRunnerGroupInOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/actions/self-hosted-runner-groups/#remove-a-self-hosted-runner-from-a-group-for-an-organization
- */
- "DELETE /orgs/:org/actions/runner-groups/:runner_group_id/runners/:runner_id": {
- parameters: ActionsRemoveSelfHostedRunnerFromGroupForOrgEndpoint;
- request: ActionsRemoveSelfHostedRunnerFromGroupForOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/actions/self-hosted-runners/#delete-a-self-hosted-runner-from-an-organization
- */
- "DELETE /orgs/:org/actions/runners/:runner_id": {
- parameters: ActionsDeleteSelfHostedRunnerFromOrgEndpoint;
- request: ActionsDeleteSelfHostedRunnerFromOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/actions/secrets/#delete-an-organization-secret
- */
- "DELETE /orgs/:org/actions/secrets/:secret_name": {
- parameters: ActionsDeleteOrgSecretEndpoint;
- request: ActionsDeleteOrgSecretRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/actions/secrets/#remove-selected-repository-from-an-organization-secret
- */
- "DELETE /orgs/:org/actions/secrets/:secret_name/repositories/:repository_id": {
- parameters: ActionsRemoveSelectedRepoFromOrgSecretEndpoint;
- request: ActionsRemoveSelectedRepoFromOrgSecretRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/orgs/blocking/#unblock-a-user-from-an-organization
- */
- "DELETE /orgs/:org/blocks/:username": {
- parameters: OrgsUnblockUserEndpoint;
- request: OrgsUnblockUserRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/orgs/#remove-a-saml-sso-authorization-for-an-organization
- */
- "DELETE /orgs/:org/credential-authorizations/:credential_id": {
- parameters: OrgsRemoveSamlSsoAuthorizationEndpoint;
- request: OrgsRemoveSamlSsoAuthorizationRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/orgs/hooks/#delete-an-organization-webhook
- */
- "DELETE /orgs/:org/hooks/:hook_id": {
- parameters: OrgsDeleteWebhookEndpoint;
- request: OrgsDeleteWebhookRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/interactions/orgs/#remove-interaction-restrictions-for-an-organization
- */
- "DELETE /orgs/:org/interaction-limits": {
- parameters: InteractionsRemoveRestrictionsForOrgEndpoint;
- request: InteractionsRemoveRestrictionsForOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/orgs/members/#remove-an-organization-member
- */
- "DELETE /orgs/:org/members/:username": {
- parameters: OrgsRemoveMemberEndpoint;
- request: OrgsRemoveMemberRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/orgs/members/#remove-organization-membership-for-a-user
- */
- "DELETE /orgs/:org/memberships/:username": {
- parameters: OrgsRemoveMembershipForUserEndpoint;
- request: OrgsRemoveMembershipForUserRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/migrations/orgs/#delete-an-organization-migration-archive
- */
- "DELETE /orgs/:org/migrations/:migration_id/archive": {
- parameters: MigrationsDeleteArchiveForOrgEndpoint;
- request: MigrationsDeleteArchiveForOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/migrations/orgs/#unlock-an-organization-repository
- */
- "DELETE /orgs/:org/migrations/:migration_id/repos/:repo_name/lock": {
- parameters: MigrationsUnlockRepoForOrgEndpoint;
- request: MigrationsUnlockRepoForOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/orgs/outside_collaborators/#remove-outside-collaborator-from-an-organization
- */
- "DELETE /orgs/:org/outside_collaborators/:username": {
- parameters: OrgsRemoveOutsideCollaboratorEndpoint;
- request: OrgsRemoveOutsideCollaboratorRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/orgs/members/#remove-public-organization-membership-for-the-authenticated-user
- */
- "DELETE /orgs/:org/public_members/:username": {
- parameters: OrgsRemovePublicMembershipForAuthenticatedUserEndpoint;
- request: OrgsRemovePublicMembershipForAuthenticatedUserRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/teams/#delete-a-team
- */
- "DELETE /orgs/:org/teams/:team_slug": {
- parameters: TeamsDeleteInOrgEndpoint;
- request: TeamsDeleteInOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/teams/discussions/#delete-a-discussion
- */
- "DELETE /orgs/:org/teams/:team_slug/discussions/:discussion_number": {
- parameters: TeamsDeleteDiscussionInOrgEndpoint;
- request: TeamsDeleteDiscussionInOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/teams/discussion_comments/#delete-a-discussion-comment
- */
- "DELETE /orgs/:org/teams/:team_slug/discussions/:discussion_number/comments/:comment_number": {
- parameters: TeamsDeleteDiscussionCommentInOrgEndpoint;
- request: TeamsDeleteDiscussionCommentInOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/reactions/#delete-team-discussion-comment-reaction
- */
- "DELETE /orgs/:org/teams/:team_slug/discussions/:discussion_number/comments/:comment_number/reactions/:reaction_id": {
- parameters: ReactionsDeleteForTeamDiscussionCommentEndpoint;
- request: ReactionsDeleteForTeamDiscussionCommentRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/reactions/#delete-team-discussion-reaction
- */
- "DELETE /orgs/:org/teams/:team_slug/discussions/:discussion_number/reactions/:reaction_id": {
- parameters: ReactionsDeleteForTeamDiscussionEndpoint;
- request: ReactionsDeleteForTeamDiscussionRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/teams/members/#remove-team-membership-for-a-user
- */
- "DELETE /orgs/:org/teams/:team_slug/memberships/:username": {
- parameters: TeamsRemoveMembershipForUserInOrgEndpoint;
- request: TeamsRemoveMembershipForUserInOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/teams/#remove-a-project-from-a-team
- */
- "DELETE /orgs/:org/teams/:team_slug/projects/:project_id": {
- parameters: TeamsRemoveProjectInOrgEndpoint;
- request: TeamsRemoveProjectInOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/teams/#remove-a-repository-from-a-team
- */
- "DELETE /orgs/:org/teams/:team_slug/repos/:owner/:repo": {
- parameters: TeamsRemoveRepoInOrgEndpoint;
- request: TeamsRemoveRepoInOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/projects/#delete-a-project
- */
- "DELETE /projects/:project_id": {
- parameters: ProjectsDeleteEndpoint;
- request: ProjectsDeleteRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/projects/collaborators/#remove-project-collaborator
- */
- "DELETE /projects/:project_id/collaborators/:username": {
- parameters: ProjectsRemoveCollaboratorEndpoint;
- request: ProjectsRemoveCollaboratorRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/projects/columns/#delete-a-project-column
- */
- "DELETE /projects/columns/:column_id": {
- parameters: ProjectsDeleteColumnEndpoint;
- request: ProjectsDeleteColumnRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/projects/cards/#delete-a-project-card
- */
- "DELETE /projects/columns/cards/:card_id": {
- parameters: ProjectsDeleteCardEndpoint;
- request: ProjectsDeleteCardRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/reactions/#delete-a-reaction-legacy
- */
- "DELETE /reactions/:reaction_id": {
- parameters: ReactionsDeleteLegacyEndpoint;
- request: ReactionsDeleteLegacyRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/#delete-a-repository
- */
- "DELETE /repos/:owner/:repo": {
- parameters: ReposDeleteEndpoint;
- request: ReposDeleteRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/actions/artifacts/#delete-an-artifact
- */
- "DELETE /repos/:owner/:repo/actions/artifacts/:artifact_id": {
- parameters: ActionsDeleteArtifactEndpoint;
- request: ActionsDeleteArtifactRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/actions/self-hosted-runners/#delete-a-self-hosted-runner-from-a-repository
- */
- "DELETE /repos/:owner/:repo/actions/runners/:runner_id": {
- parameters: ActionsDeleteSelfHostedRunnerFromRepoEndpoint;
- request: ActionsDeleteSelfHostedRunnerFromRepoRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/actions/workflow-runs/#delete-a-workflow-run
- */
- "DELETE /repos/:owner/:repo/actions/runs/:run_id": {
- parameters: ActionsDeleteWorkflowRunEndpoint;
- request: ActionsDeleteWorkflowRunRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/actions/workflow-runs/#delete-workflow-run-logs
- */
- "DELETE /repos/:owner/:repo/actions/runs/:run_id/logs": {
- parameters: ActionsDeleteWorkflowRunLogsEndpoint;
- request: ActionsDeleteWorkflowRunLogsRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/actions/secrets/#delete-a-repository-secret
- */
- "DELETE /repos/:owner/:repo/actions/secrets/:secret_name": {
- parameters: ActionsDeleteRepoSecretEndpoint;
- request: ActionsDeleteRepoSecretRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/#disable-automated-security-fixes
- */
- "DELETE /repos/:owner/:repo/automated-security-fixes": {
- parameters: ReposDisableAutomatedSecurityFixesEndpoint;
- request: ReposDisableAutomatedSecurityFixesRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/branches/#delete-branch-protection
- */
- "DELETE /repos/:owner/:repo/branches/:branch/protection": {
- parameters: ReposDeleteBranchProtectionEndpoint;
- request: ReposDeleteBranchProtectionRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/branches/#delete-admin-branch-protection
- */
- "DELETE /repos/:owner/:repo/branches/:branch/protection/enforce_admins": {
- parameters: ReposDeleteAdminBranchProtectionEndpoint;
- request: ReposDeleteAdminBranchProtectionRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/branches/#delete-pull-request-review-protection
- */
- "DELETE /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews": {
- parameters: ReposDeletePullRequestReviewProtectionEndpoint;
- request: ReposDeletePullRequestReviewProtectionRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/branches/#delete-commit-signature-protection
- */
- "DELETE /repos/:owner/:repo/branches/:branch/protection/required_signatures": {
- parameters: ReposDeleteCommitSignatureProtectionEndpoint;
- request: ReposDeleteCommitSignatureProtectionRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/branches/#remove-status-check-protection
- */
- "DELETE /repos/:owner/:repo/branches/:branch/protection/required_status_checks": {
- parameters: ReposRemoveStatusCheckProtectionEndpoint;
- request: ReposRemoveStatusCheckProtectionRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/branches/#remove-status-check-contexts
- */
- "DELETE /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts": {
- parameters: ReposRemoveStatusCheckContextsEndpoint;
- request: ReposRemoveStatusCheckContextsRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/branches/#delete-access-restrictions
- */
- "DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions": {
- parameters: ReposDeleteAccessRestrictionsEndpoint;
- request: ReposDeleteAccessRestrictionsRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/branches/#remove-app-access-restrictions
- */
- "DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/apps": {
- parameters: ReposRemoveAppAccessRestrictionsEndpoint;
- request: ReposRemoveAppAccessRestrictionsRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/branches/#remove-team-access-restrictions
- */
- "DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/teams": {
- parameters: ReposRemoveTeamAccessRestrictionsEndpoint;
- request: ReposRemoveTeamAccessRestrictionsRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/branches/#remove-user-access-restrictions
- */
- "DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/users": {
- parameters: ReposRemoveUserAccessRestrictionsEndpoint;
- request: ReposRemoveUserAccessRestrictionsRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/collaborators/#remove-a-repository-collaborator
- */
- "DELETE /repos/:owner/:repo/collaborators/:username": {
- parameters: ReposRemoveCollaboratorEndpoint;
- request: ReposRemoveCollaboratorRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/comments/#delete-a-commit-comment
- */
- "DELETE /repos/:owner/:repo/comments/:comment_id": {
- parameters: ReposDeleteCommitCommentEndpoint;
- request: ReposDeleteCommitCommentRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/reactions/#delete-a-commit-comment-reaction
- */
- "DELETE /repos/:owner/:repo/comments/:comment_id/reactions/:reaction_id": {
- parameters: ReactionsDeleteForCommitCommentEndpoint;
- request: ReactionsDeleteForCommitCommentRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/contents/#delete-a-file
- */
- "DELETE /repos/:owner/:repo/contents/:path": {
- parameters: ReposDeleteFileEndpoint;
- request: ReposDeleteFileRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/deployments/#delete-a-deployment
- */
- "DELETE /repos/:owner/:repo/deployments/:deployment_id": {
- parameters: ReposDeleteDeploymentEndpoint;
- request: ReposDeleteDeploymentRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/git/refs/#delete-a-reference
- */
- "DELETE /repos/:owner/:repo/git/refs/:ref": {
- parameters: GitDeleteRefEndpoint;
- request: GitDeleteRefRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/hooks/#delete-a-repository-webhook
- */
- "DELETE /repos/:owner/:repo/hooks/:hook_id": {
- parameters: ReposDeleteWebhookEndpoint;
- request: ReposDeleteWebhookRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/migrations/source_imports/#cancel-an-import
- */
- "DELETE /repos/:owner/:repo/import": {
- parameters: MigrationsCancelImportEndpoint;
- request: MigrationsCancelImportRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/interactions/repos/#remove-interaction-restrictions-for-a-repository
- */
- "DELETE /repos/:owner/:repo/interaction-limits": {
- parameters: InteractionsRemoveRestrictionsForRepoEndpoint;
- request: InteractionsRemoveRestrictionsForRepoRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/invitations/#delete-a-repository-invitation
- */
- "DELETE /repos/:owner/:repo/invitations/:invitation_id": {
- parameters: ReposDeleteInvitationEndpoint;
- request: ReposDeleteInvitationRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/issues/assignees/#remove-assignees-from-an-issue
- */
- "DELETE /repos/:owner/:repo/issues/:issue_number/assignees": {
- parameters: IssuesRemoveAssigneesEndpoint;
- request: IssuesRemoveAssigneesRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/issues/labels/#remove-all-labels-from-an-issue
- */
- "DELETE /repos/:owner/:repo/issues/:issue_number/labels": {
- parameters: IssuesRemoveAllLabelsEndpoint;
- request: IssuesRemoveAllLabelsRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue
- */
- "DELETE /repos/:owner/:repo/issues/:issue_number/labels/:name": {
- parameters: IssuesRemoveLabelEndpoint;
- request: IssuesRemoveLabelRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/issues/#unlock-an-issue
- */
- "DELETE /repos/:owner/:repo/issues/:issue_number/lock": {
- parameters: IssuesUnlockEndpoint;
- request: IssuesUnlockRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/reactions/#delete-an-issue-reaction
- */
- "DELETE /repos/:owner/:repo/issues/:issue_number/reactions/:reaction_id": {
- parameters: ReactionsDeleteForIssueEndpoint;
- request: ReactionsDeleteForIssueRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/issues/comments/#delete-an-issue-comment
- */
- "DELETE /repos/:owner/:repo/issues/comments/:comment_id": {
- parameters: IssuesDeleteCommentEndpoint;
- request: IssuesDeleteCommentRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/reactions/#delete-an-issue-comment-reaction
- */
- "DELETE /repos/:owner/:repo/issues/comments/:comment_id/reactions/:reaction_id": {
- parameters: ReactionsDeleteForIssueCommentEndpoint;
- request: ReactionsDeleteForIssueCommentRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/keys/#delete-a-deploy-key
- */
- "DELETE /repos/:owner/:repo/keys/:key_id": {
- parameters: ReposDeleteDeployKeyEndpoint;
- request: ReposDeleteDeployKeyRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/issues/labels/#delete-a-label
- */
- "DELETE /repos/:owner/:repo/labels/:name": {
- parameters: IssuesDeleteLabelEndpoint;
- request: IssuesDeleteLabelRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/issues/milestones/#delete-a-milestone
- */
- "DELETE /repos/:owner/:repo/milestones/:milestone_number": {
- parameters: IssuesDeleteMilestoneEndpoint;
- request: IssuesDeleteMilestoneRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/pages/#delete-a-github-pages-site
- */
- "DELETE /repos/:owner/:repo/pages": {
- parameters: ReposDeletePagesSiteEndpoint;
- request: ReposDeletePagesSiteRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/pulls/review_requests/#remove-requested-reviewers-from-a-pull-request
- */
- "DELETE /repos/:owner/:repo/pulls/:pull_number/requested_reviewers": {
- parameters: PullsRemoveRequestedReviewersEndpoint;
- request: PullsRemoveRequestedReviewersRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/pulls/reviews/#delete-a-pending-review-for-a-pull-request
- */
- "DELETE /repos/:owner/:repo/pulls/:pull_number/reviews/:review_id": {
- parameters: PullsDeletePendingReviewEndpoint;
- request: PullsDeletePendingReviewRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/pulls/comments/#delete-a-review-comment-for-a-pull-request
- */
- "DELETE /repos/:owner/:repo/pulls/comments/:comment_id": {
- parameters: PullsDeleteReviewCommentEndpoint;
- request: PullsDeleteReviewCommentRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/reactions/#delete-a-pull-request-comment-reaction
- */
- "DELETE /repos/:owner/:repo/pulls/comments/:comment_id/reactions/:reaction_id": {
- parameters: ReactionsDeleteForPullRequestCommentEndpoint;
- request: ReactionsDeleteForPullRequestCommentRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/releases/#delete-a-release
- */
- "DELETE /repos/:owner/:repo/releases/:release_id": {
- parameters: ReposDeleteReleaseEndpoint;
- request: ReposDeleteReleaseRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/releases/#delete-a-release-asset
- */
- "DELETE /repos/:owner/:repo/releases/assets/:asset_id": {
- parameters: ReposDeleteReleaseAssetEndpoint;
- request: ReposDeleteReleaseAssetRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/activity/watching/#delete-a-repository-subscription
- */
- "DELETE /repos/:owner/:repo/subscription": {
- parameters: ActivityDeleteRepoSubscriptionEndpoint;
- request: ActivityDeleteRepoSubscriptionRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/#disable-vulnerability-alerts
- */
- "DELETE /repos/:owner/:repo/vulnerability-alerts": {
- parameters: ReposDisableVulnerabilityAlertsEndpoint;
- request: ReposDisableVulnerabilityAlertsRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/enterprise-admin/scim/#delete-a-scim-group-from-an-enterprise
- */
- "DELETE /scim/v2/enterprises/:enterprise/Groups/:scim_group_id": {
- parameters: EnterpriseAdminDeleteScimGroupFromEnterpriseEndpoint;
- request: EnterpriseAdminDeleteScimGroupFromEnterpriseRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/enterprise-admin/scim/#delete-a-scim-user-from-an-enterprise
- */
- "DELETE /scim/v2/enterprises/:enterprise/Users/:scim_user_id": {
- parameters: EnterpriseAdminDeleteUserFromEnterpriseEndpoint;
- request: EnterpriseAdminDeleteUserFromEnterpriseRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/scim/#delete-a-scim-user-from-an-organization
- */
- "DELETE /scim/v2/organizations/:org/Users/:scim_user_id": {
- parameters: ScimDeleteUserFromOrgEndpoint;
- request: ScimDeleteUserFromOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/teams/#delete-a-team-legacy
- */
- "DELETE /teams/:team_id": {
- parameters: TeamsDeleteLegacyEndpoint;
- request: TeamsDeleteLegacyRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/teams/discussions/#delete-a-discussion-legacy
- */
- "DELETE /teams/:team_id/discussions/:discussion_number": {
- parameters: TeamsDeleteDiscussionLegacyEndpoint;
- request: TeamsDeleteDiscussionLegacyRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/teams/discussion_comments/#delete-a-discussion-comment-legacy
- */
- "DELETE /teams/:team_id/discussions/:discussion_number/comments/:comment_number": {
- parameters: TeamsDeleteDiscussionCommentLegacyEndpoint;
- request: TeamsDeleteDiscussionCommentLegacyRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/teams/members/#remove-team-member-legacy
- */
- "DELETE /teams/:team_id/members/:username": {
- parameters: TeamsRemoveMemberLegacyEndpoint;
- request: TeamsRemoveMemberLegacyRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/teams/members/#remove-team-membership-for-a-user-legacy
- */
- "DELETE /teams/:team_id/memberships/:username": {
- parameters: TeamsRemoveMembershipForUserLegacyEndpoint;
- request: TeamsRemoveMembershipForUserLegacyRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/teams/#remove-a-project-from-a-team-legacy
- */
- "DELETE /teams/:team_id/projects/:project_id": {
- parameters: TeamsRemoveProjectLegacyEndpoint;
- request: TeamsRemoveProjectLegacyRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/teams/#remove-a-repository-from-a-team-legacy
- */
- "DELETE /teams/:team_id/repos/:owner/:repo": {
- parameters: TeamsRemoveRepoLegacyEndpoint;
- request: TeamsRemoveRepoLegacyRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/users/blocking/#unblock-a-user
- */
- "DELETE /user/blocks/:username": {
- parameters: UsersUnblockEndpoint;
- request: UsersUnblockRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/users/emails/#delete-an-email-address-for-the-authenticated-user
- */
- "DELETE /user/emails": {
- parameters: UsersDeleteEmailForAuthenticatedEndpoint;
- request: UsersDeleteEmailForAuthenticatedRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/users/followers/#unfollow-a-user
- */
- "DELETE /user/following/:username": {
- parameters: UsersUnfollowEndpoint;
- request: UsersUnfollowRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/users/gpg_keys/#delete-a-gpg-key-for-the-authenticated-user
- */
- "DELETE /user/gpg_keys/:gpg_key_id": {
- parameters: UsersDeleteGpgKeyForAuthenticatedEndpoint;
- request: UsersDeleteGpgKeyForAuthenticatedRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/apps/installations/#remove-a-repository-from-an-app-installation
- */
- "DELETE /user/installations/:installation_id/repositories/:repository_id": {
- parameters: AppsRemoveRepoFromInstallationEndpoint;
- request: AppsRemoveRepoFromInstallationRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/users/keys/#delete-a-public-ssh-key-for-the-authenticated-user
- */
- "DELETE /user/keys/:key_id": {
- parameters: UsersDeletePublicSshKeyForAuthenticatedEndpoint;
- request: UsersDeletePublicSshKeyForAuthenticatedRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/migrations/users/#delete-a-user-migration-archive
- */
- "DELETE /user/migrations/:migration_id/archive": {
- parameters: MigrationsDeleteArchiveForAuthenticatedUserEndpoint;
- request: MigrationsDeleteArchiveForAuthenticatedUserRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/migrations/users/#unlock-a-user-repository
- */
- "DELETE /user/migrations/:migration_id/repos/:repo_name/lock": {
- parameters: MigrationsUnlockRepoForAuthenticatedUserEndpoint;
- request: MigrationsUnlockRepoForAuthenticatedUserRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/invitations/#decline-a-repository-invitation
- */
- "DELETE /user/repository_invitations/:invitation_id": {
- parameters: ReposDeclineInvitationEndpoint;
- request: ReposDeclineInvitationRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/activity/starring/#unstar-a-repository-for-the-authenticated-user
- */
- "DELETE /user/starred/:owner/:repo": {
- parameters: ActivityUnstarRepoForAuthenticatedUserEndpoint;
- request: ActivityUnstarRepoForAuthenticatedUserRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/apps/#get-the-authenticated-app
- */
- "GET /app": {
- parameters: AppsGetAuthenticatedEndpoint;
- request: AppsGetAuthenticatedRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/apps/#list-installations-for-the-authenticated-app
- */
- "GET /app/installations": {
- parameters: AppsListInstallationsEndpoint;
- request: AppsListInstallationsRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/apps/#get-an-installation-for-the-authenticated-app
- */
- "GET /app/installations/:installation_id": {
- parameters: AppsGetInstallationEndpoint;
- request: AppsGetInstallationRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/apps/oauth_applications/#check-an-authorization
- */
- "GET /applications/:client_id/tokens/:access_token": {
- parameters: AppsCheckAuthorizationEndpoint;
- request: AppsCheckAuthorizationRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/oauth_authorizations/#list-your-grants
- */
- "GET /applications/grants": {
- parameters: OauthAuthorizationsListGrantsEndpoint;
- request: OauthAuthorizationsListGrantsRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/oauth_authorizations/#get-a-single-grant
- */
- "GET /applications/grants/:grant_id": {
- parameters: OauthAuthorizationsGetGrantEndpoint;
- request: OauthAuthorizationsGetGrantRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/apps/#get-an-app
- */
- "GET /apps/:app_slug": {
- parameters: AppsGetBySlugEndpoint;
- request: AppsGetBySlugRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/oauth_authorizations/#list-your-authorizations
- */
- "GET /authorizations": {
- parameters: OauthAuthorizationsListAuthorizationsEndpoint;
- request: OauthAuthorizationsListAuthorizationsRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/oauth_authorizations/#get-a-single-authorization
- */
- "GET /authorizations/:authorization_id": {
- parameters: OauthAuthorizationsGetAuthorizationEndpoint;
- request: OauthAuthorizationsGetAuthorizationRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/codes_of_conduct/#get-all-codes-of-conduct
- */
- "GET /codes_of_conduct": {
- parameters: CodesOfConductGetAllCodesOfConductEndpoint;
- request: CodesOfConductGetAllCodesOfConductRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/codes_of_conduct/#get-a-code-of-conduct
- */
- "GET /codes_of_conduct/:key": {
- parameters: CodesOfConductGetConductCodeEndpoint;
- request: CodesOfConductGetConductCodeRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/emojis/#get-emojis
- */
- "GET /emojis": {
- parameters: EmojisGetEndpoint;
- request: EmojisGetRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/enterprise-admin/actions/#list-self-hosted-runner-groups-for-an-enterprise
- */
- "GET /enterprises/:enterprise/actions/runner-groups": {
- parameters: EnterpriseAdminListSelfHostedRunnerGroupsForEnterpriseEndpoint;
- request: EnterpriseAdminListSelfHostedRunnerGroupsForEnterpriseRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/enterprise-admin/actions/#get-a-self-hosted-runner-group-for-an-enterprise
- */
- "GET /enterprises/:enterprise/actions/runner-groups/:runner_group_id": {
- parameters: EnterpriseAdminGetSelfHostedRunnerGroupForEnterpriseEndpoint;
- request: EnterpriseAdminGetSelfHostedRunnerGroupForEnterpriseRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/enterprise-admin/actions/#list-organization-access-to-a-self-hosted-runner-group-in-a-enterprise
- */
- "GET /enterprises/:enterprise/actions/runner-groups/:runner_group_id/organizations": {
- parameters: EnterpriseAdminListOrgAccessToSelfHostedRunnerGroupInEnterpriseEndpoint;
- request: EnterpriseAdminListOrgAccessToSelfHostedRunnerGroupInEnterpriseRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/enterprise-admin/actions/#list-self-hosted-runners-in-a-group-for-an-enterprise
- */
- "GET /enterprises/:enterprise/actions/runner-groups/:runner_group_id/runners": {
- parameters: EnterpriseAdminListSelfHostedRunnersInGroupForEnterpriseEndpoint;
- request: EnterpriseAdminListSelfHostedRunnersInGroupForEnterpriseRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/enterprise-admin/actions/#list-self-hosted-runners-for-an-enterprise
- */
- "GET /enterprises/:enterprise/actions/runners": {
- parameters: EnterpriseAdminListSelfHostedRunnersForEnterpriseEndpoint;
- request: EnterpriseAdminListSelfHostedRunnersForEnterpriseRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/enterprise-admin/actions/#get-a-self-hosted-runner-for-an-enterprise
- */
- "GET /enterprises/:enterprise/actions/runners/:runner_id": {
- parameters: EnterpriseAdminGetSelfHostedRunnerForEnterpriseEndpoint;
- request: EnterpriseAdminGetSelfHostedRunnerForEnterpriseRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/enterprise-admin/actions/#list-runner-applications-for-an-enterprise
- */
- "GET /enterprises/:enterprise/actions/runners/downloads": {
- parameters: EnterpriseAdminListRunnerApplicationsForEnterpriseEndpoint;
- request: EnterpriseAdminListRunnerApplicationsForEnterpriseRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/enterprise-admin/billing/#get-github-actions-billing-for-an-enterprise
- */
- "GET /enterprises/:enterprise/settings/billing/actions": {
- parameters: EnterpriseAdminGetGithubActionsBillingGheEndpoint;
- request: EnterpriseAdminGetGithubActionsBillingGheRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/enterprise-admin/billing/#get-github-packages-billing-for-an-enterprise
- */
- "GET /enterprises/:enterprise/settings/billing/packages": {
- parameters: EnterpriseAdminGetGithubPackagesBillingGheEndpoint;
- request: EnterpriseAdminGetGithubPackagesBillingGheRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/enterprise-admin/billing/#get-shared-storage-billing-for-an-enterprise
- */
- "GET /enterprises/:enterprise/settings/billing/shared-storage": {
- parameters: EnterpriseAdminGetSharedStorageBillingGheEndpoint;
- request: EnterpriseAdminGetSharedStorageBillingGheRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/enterprise-admin/billing/#get-github-actions-billing-for-an-enterprise
- * @deprecated "enterprise_id" is deprecated, use "enterprise" instead
- */
- "GET /enterprises/:enterprise_id/settings/billing/actions": {
- parameters: EnterpriseAdminGetGithubActionsBillingGheDeprecatedEnterpriseIdEndpoint;
- request: EnterpriseAdminGetGithubActionsBillingGheRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/enterprise-admin/billing/#get-github-packages-billing-for-an-enterprise
- * @deprecated "enterprise_id" is deprecated, use "enterprise" instead
- */
- "GET /enterprises/:enterprise_id/settings/billing/packages": {
- parameters: EnterpriseAdminGetGithubPackagesBillingGheDeprecatedEnterpriseIdEndpoint;
- request: EnterpriseAdminGetGithubPackagesBillingGheRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/enterprise-admin/billing/#get-shared-storage-billing-for-an-enterprise
- * @deprecated "enterprise_id" is deprecated, use "enterprise" instead
- */
- "GET /enterprises/:enterprise_id/settings/billing/shared-storage": {
- parameters: EnterpriseAdminGetSharedStorageBillingGheDeprecatedEnterpriseIdEndpoint;
- request: EnterpriseAdminGetSharedStorageBillingGheRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/activity/events/#list-public-events
- */
- "GET /events": {
- parameters: ActivityListPublicEventsEndpoint;
- request: ActivityListPublicEventsRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/activity/feeds/#get-feeds
- */
- "GET /feeds": {
- parameters: ActivityGetFeedsEndpoint;
- request: ActivityGetFeedsRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/gists/#list-gists-for-the-authenticated-user
- */
- "GET /gists": {
- parameters: GistsListEndpoint;
- request: GistsListRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/gists/#get-a-gist
- */
- "GET /gists/:gist_id": {
- parameters: GistsGetEndpoint;
- request: GistsGetRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/gists/#get-a-gist-revision
- */
- "GET /gists/:gist_id/:sha": {
- parameters: GistsGetRevisionEndpoint;
- request: GistsGetRevisionRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/gists/comments/#list-gist-comments
- */
- "GET /gists/:gist_id/comments": {
- parameters: GistsListCommentsEndpoint;
- request: GistsListCommentsRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/gists/comments/#get-a-gist-comment
- */
- "GET /gists/:gist_id/comments/:comment_id": {
- parameters: GistsGetCommentEndpoint;
- request: GistsGetCommentRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/gists/#list-gist-commits
- */
- "GET /gists/:gist_id/commits": {
- parameters: GistsListCommitsEndpoint;
- request: GistsListCommitsRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/gists/#list-gist-forks
- */
- "GET /gists/:gist_id/forks": {
- parameters: GistsListForksEndpoint;
- request: GistsListForksRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/gists/#check-if-a-gist-is-starred
- */
- "GET /gists/:gist_id/star": {
- parameters: GistsCheckIsStarredEndpoint;
- request: GistsCheckIsStarredRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/gists/#list-public-gists
- */
- "GET /gists/public": {
- parameters: GistsListPublicEndpoint;
- request: GistsListPublicRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/gists/#list-starred-gists
- */
- "GET /gists/starred": {
- parameters: GistsListStarredEndpoint;
- request: GistsListStarredRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/gitignore/#get-all-gitignore-templates
- */
- "GET /gitignore/templates": {
- parameters: GitignoreGetAllTemplatesEndpoint;
- request: GitignoreGetAllTemplatesRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/gitignore/#get-a-gitignore-template
- */
- "GET /gitignore/templates/:name": {
- parameters: GitignoreGetTemplateEndpoint;
- request: GitignoreGetTemplateRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/apps/installations/#list-repositories-accessible-to-the-app-installation
- */
- "GET /installation/repositories": {
- parameters: AppsListReposAccessibleToInstallationEndpoint;
- request: AppsListReposAccessibleToInstallationRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/issues/#list-issues-assigned-to-the-authenticated-user
- */
- "GET /issues": {
- parameters: IssuesListEndpoint;
- request: IssuesListRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/licenses/#get-all-commonly-used-licenses
- */
- "GET /licenses": {
- parameters: LicensesGetAllCommonlyUsedEndpoint;
- request: LicensesGetAllCommonlyUsedRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/licenses/#get-a-license
- */
- "GET /licenses/:license": {
- parameters: LicensesGetEndpoint;
- request: LicensesGetRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/apps/marketplace/#get-a-subscription-plan-for-an-account
- */
- "GET /marketplace_listing/accounts/:account_id": {
- parameters: AppsGetSubscriptionPlanForAccountEndpoint;
- request: AppsGetSubscriptionPlanForAccountRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/apps/marketplace/#list-plans
- */
- "GET /marketplace_listing/plans": {
- parameters: AppsListPlansEndpoint;
- request: AppsListPlansRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/apps/marketplace/#list-accounts-for-a-plan
- */
- "GET /marketplace_listing/plans/:plan_id/accounts": {
- parameters: AppsListAccountsForPlanEndpoint;
- request: AppsListAccountsForPlanRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/apps/marketplace/#get-a-subscription-plan-for-an-account-stubbed
- */
- "GET /marketplace_listing/stubbed/accounts/:account_id": {
- parameters: AppsGetSubscriptionPlanForAccountStubbedEndpoint;
- request: AppsGetSubscriptionPlanForAccountStubbedRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/apps/marketplace/#list-plans-stubbed
- */
- "GET /marketplace_listing/stubbed/plans": {
- parameters: AppsListPlansStubbedEndpoint;
- request: AppsListPlansStubbedRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/apps/marketplace/#list-accounts-for-a-plan-stubbed
- */
- "GET /marketplace_listing/stubbed/plans/:plan_id/accounts": {
- parameters: AppsListAccountsForPlanStubbedEndpoint;
- request: AppsListAccountsForPlanStubbedRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/meta/#get-github-meta-information
- */
- "GET /meta": {
- parameters: MetaGetEndpoint;
- request: MetaGetRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/activity/events/#list-public-events-for-a-network-of-repositories
- */
- "GET /networks/:owner/:repo/events": {
- parameters: ActivityListPublicEventsForRepoNetworkEndpoint;
- request: ActivityListPublicEventsForRepoNetworkRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/activity/notifications/#list-notifications-for-the-authenticated-user
- */
- "GET /notifications": {
- parameters: ActivityListNotificationsForAuthenticatedUserEndpoint;
- request: ActivityListNotificationsForAuthenticatedUserRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/activity/notifications/#get-a-thread
- */
- "GET /notifications/threads/:thread_id": {
- parameters: ActivityGetThreadEndpoint;
- request: ActivityGetThreadRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/activity/notifications/#get-a-thread-subscription-for-the-authenticated-user
- */
- "GET /notifications/threads/:thread_id/subscription": {
- parameters: ActivityGetThreadSubscriptionForAuthenticatedUserEndpoint;
- request: ActivityGetThreadSubscriptionForAuthenticatedUserRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/orgs/#list-organizations
- */
- "GET /organizations": {
- parameters: OrgsListEndpoint;
- request: OrgsListRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/orgs/#get-an-organization
- */
- "GET /orgs/:org": {
- parameters: OrgsGetEndpoint;
- request: OrgsGetRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/actions/self-hosted-runner-groups/#list-self-hosted-runner-groups-for-an-organization
- */
- "GET /orgs/:org/actions/runner-groups": {
- parameters: ActionsListSelfHostedRunnerGroupsForOrgEndpoint;
- request: ActionsListSelfHostedRunnerGroupsForOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/actions/self-hosted-runner-groups/#get-a-self-hosted-runner-group-for-an-organization
- */
- "GET /orgs/:org/actions/runner-groups/:runner_group_id": {
- parameters: ActionsGetSelfHostedRunnerGroupForOrgEndpoint;
- request: ActionsGetSelfHostedRunnerGroupForOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/actions/self-hosted-runner-groups/#list-repository-access-to-a-self-hosted-runner-group-in-an-organization
- */
- "GET /orgs/:org/actions/runner-groups/:runner_group_id/repositories": {
- parameters: ActionsListRepoAccessToSelfHostedRunnerGroupInOrgEndpoint;
- request: ActionsListRepoAccessToSelfHostedRunnerGroupInOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/actions/self-hosted-runner-groups/#list-self-hosted-runners-in-a-group-for-an-organization
- */
- "GET /orgs/:org/actions/runner-groups/:runner_group_id/runners": {
- parameters: ActionsListSelfHostedRunnersInGroupForOrgEndpoint;
- request: ActionsListSelfHostedRunnersInGroupForOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/actions/self-hosted-runners/#list-self-hosted-runners-for-an-organization
- */
- "GET /orgs/:org/actions/runners": {
- parameters: ActionsListSelfHostedRunnersForOrgEndpoint;
- request: ActionsListSelfHostedRunnersForOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/actions/self-hosted-runners/#get-a-self-hosted-runner-for-an-organization
- */
- "GET /orgs/:org/actions/runners/:runner_id": {
- parameters: ActionsGetSelfHostedRunnerForOrgEndpoint;
- request: ActionsGetSelfHostedRunnerForOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/actions/self-hosted-runners/#list-runner-applications-for-an-organization
- */
- "GET /orgs/:org/actions/runners/downloads": {
- parameters: ActionsListRunnerApplicationsForOrgEndpoint;
- request: ActionsListRunnerApplicationsForOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/actions/secrets/#list-organization-secrets
- */
- "GET /orgs/:org/actions/secrets": {
- parameters: ActionsListOrgSecretsEndpoint;
- request: ActionsListOrgSecretsRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/actions/secrets/#get-an-organization-secret
- */
- "GET /orgs/:org/actions/secrets/:secret_name": {
- parameters: ActionsGetOrgSecretEndpoint;
- request: ActionsGetOrgSecretRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/actions/secrets/#list-selected-repositories-for-an-organization-secret
- */
- "GET /orgs/:org/actions/secrets/:secret_name/repositories": {
- parameters: ActionsListSelectedReposForOrgSecretEndpoint;
- request: ActionsListSelectedReposForOrgSecretRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/actions/secrets/#get-an-organization-public-key
- */
- "GET /orgs/:org/actions/secrets/public-key": {
- parameters: ActionsGetOrgPublicKeyEndpoint;
- request: ActionsGetOrgPublicKeyRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/orgs/blocking/#list-users-blocked-by-an-organization
- */
- "GET /orgs/:org/blocks": {
- parameters: OrgsListBlockedUsersEndpoint;
- request: OrgsListBlockedUsersRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/orgs/blocking/#check-if-a-user-is-blocked-by-an-organization
- */
- "GET /orgs/:org/blocks/:username": {
- parameters: OrgsCheckBlockedUserEndpoint;
- request: OrgsCheckBlockedUserRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/orgs/#list-saml-sso-authorizations-for-an-organization
- */
- "GET /orgs/:org/credential-authorizations": {
- parameters: OrgsListSamlSsoAuthorizationsEndpoint;
- request: OrgsListSamlSsoAuthorizationsRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/activity/events/#list-public-organization-events
- */
- "GET /orgs/:org/events": {
- parameters: ActivityListPublicOrgEventsEndpoint;
- request: ActivityListPublicOrgEventsRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/orgs/hooks/#list-organization-webhooks
- */
- "GET /orgs/:org/hooks": {
- parameters: OrgsListWebhooksEndpoint;
- request: OrgsListWebhooksRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/orgs/hooks/#get-an-organization-webhook
- */
- "GET /orgs/:org/hooks/:hook_id": {
- parameters: OrgsGetWebhookEndpoint;
- request: OrgsGetWebhookRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/apps/#get-an-organization-installation-for-the-authenticated-app
- */
- "GET /orgs/:org/installation": {
- parameters: AppsGetOrgInstallationEndpoint;
- request: AppsGetOrgInstallationRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/orgs/#list-app-installations-for-an-organization
- */
- "GET /orgs/:org/installations": {
- parameters: OrgsListAppInstallationsEndpoint;
- request: OrgsListAppInstallationsRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/interactions/orgs/#get-interaction-restrictions-for-an-organization
- */
- "GET /orgs/:org/interaction-limits": {
- parameters: InteractionsGetRestrictionsForOrgEndpoint;
- request: InteractionsGetRestrictionsForOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/orgs/members/#list-pending-organization-invitations
- */
- "GET /orgs/:org/invitations": {
- parameters: OrgsListPendingInvitationsEndpoint;
- request: OrgsListPendingInvitationsRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/orgs/members/#list-organization-invitation-teams
- */
- "GET /orgs/:org/invitations/:invitation_id/teams": {
- parameters: OrgsListInvitationTeamsEndpoint;
- request: OrgsListInvitationTeamsRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/issues/#list-organization-issues-assigned-to-the-authenticated-user
- */
- "GET /orgs/:org/issues": {
- parameters: IssuesListForOrgEndpoint;
- request: IssuesListForOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/orgs/members/#list-organization-members
- */
- "GET /orgs/:org/members": {
- parameters: OrgsListMembersEndpoint;
- request: OrgsListMembersRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/orgs/members/#check-organization-membership-for-a-user
- */
- "GET /orgs/:org/members/:username": {
- parameters: OrgsCheckMembershipForUserEndpoint;
- request: OrgsCheckMembershipForUserRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/orgs/members/#get-organization-membership-for-a-user
- */
- "GET /orgs/:org/memberships/:username": {
- parameters: OrgsGetMembershipForUserEndpoint;
- request: OrgsGetMembershipForUserRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/migrations/orgs/#list-organization-migrations
- */
- "GET /orgs/:org/migrations": {
- parameters: MigrationsListForOrgEndpoint;
- request: MigrationsListForOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/migrations/orgs/#get-an-organization-migration-status
- */
- "GET /orgs/:org/migrations/:migration_id": {
- parameters: MigrationsGetStatusForOrgEndpoint;
- request: MigrationsGetStatusForOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/migrations/orgs/#download-an-organization-migration-archive
- */
- "GET /orgs/:org/migrations/:migration_id/archive": {
- parameters: MigrationsDownloadArchiveForOrgEndpoint;
- request: MigrationsDownloadArchiveForOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/migrations/orgs/#list-repositories-in-an-organization-migration
- */
- "GET /orgs/:org/migrations/:migration_id/repositories": {
- parameters: MigrationsListReposForOrgEndpoint;
- request: MigrationsListReposForOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/orgs/outside_collaborators/#list-outside-collaborators-for-an-organization
- */
- "GET /orgs/:org/outside_collaborators": {
- parameters: OrgsListOutsideCollaboratorsEndpoint;
- request: OrgsListOutsideCollaboratorsRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/projects/#list-organization-projects
- */
- "GET /orgs/:org/projects": {
- parameters: ProjectsListForOrgEndpoint;
- request: ProjectsListForOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/orgs/members/#list-public-organization-members
- */
- "GET /orgs/:org/public_members": {
- parameters: OrgsListPublicMembersEndpoint;
- request: OrgsListPublicMembersRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/orgs/members/#check-public-organization-membership-for-a-user
- */
- "GET /orgs/:org/public_members/:username": {
- parameters: OrgsCheckPublicMembershipForUserEndpoint;
- request: OrgsCheckPublicMembershipForUserRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/repos/#list-organization-repositories
- */
- "GET /orgs/:org/repos": {
- parameters: ReposListForOrgEndpoint;
- request: ReposListForOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/billing/#get-github-actions-billing-for-an-organization
- */
- "GET /orgs/:org/settings/billing/actions": {
- parameters: BillingGetGithubActionsBillingOrgEndpoint;
- request: BillingGetGithubActionsBillingOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/billing/#get-github-packages-billing-for-an-organization
- */
- "GET /orgs/:org/settings/billing/packages": {
- parameters: BillingGetGithubPackagesBillingOrgEndpoint;
- request: BillingGetGithubPackagesBillingOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/billing/#get-shared-storage-billing-for-an-organization
- */
- "GET /orgs/:org/settings/billing/shared-storage": {
- parameters: BillingGetSharedStorageBillingOrgEndpoint;
- request: BillingGetSharedStorageBillingOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/teams/team_sync/#list-idp-groups-for-an-organization
- */
- "GET /orgs/:org/team-sync/groups": {
- parameters: TeamsListIdPGroupsForOrgEndpoint;
- request: TeamsListIdPGroupsForOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/teams/#list-teams
- */
- "GET /orgs/:org/teams": {
- parameters: TeamsListEndpoint;
- request: TeamsListRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/teams/#get-a-team-by-name
- */
- "GET /orgs/:org/teams/:team_slug": {
- parameters: TeamsGetByNameEndpoint;
- request: TeamsGetByNameRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/teams/discussions/#list-discussions
- */
- "GET /orgs/:org/teams/:team_slug/discussions": {
- parameters: TeamsListDiscussionsInOrgEndpoint;
- request: TeamsListDiscussionsInOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/teams/discussions/#get-a-discussion
- */
- "GET /orgs/:org/teams/:team_slug/discussions/:discussion_number": {
- parameters: TeamsGetDiscussionInOrgEndpoint;
- request: TeamsGetDiscussionInOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/teams/discussion_comments/#list-discussion-comments
- */
- "GET /orgs/:org/teams/:team_slug/discussions/:discussion_number/comments": {
- parameters: TeamsListDiscussionCommentsInOrgEndpoint;
- request: TeamsListDiscussionCommentsInOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/teams/discussion_comments/#get-a-discussion-comment
- */
- "GET /orgs/:org/teams/:team_slug/discussions/:discussion_number/comments/:comment_number": {
- parameters: TeamsGetDiscussionCommentInOrgEndpoint;
- request: TeamsGetDiscussionCommentInOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/reactions/#list-reactions-for-a-team-discussion-comment
- */
- "GET /orgs/:org/teams/:team_slug/discussions/:discussion_number/comments/:comment_number/reactions": {
- parameters: ReactionsListForTeamDiscussionCommentInOrgEndpoint;
- request: ReactionsListForTeamDiscussionCommentInOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/reactions/#list-reactions-for-a-team-discussion
- */
- "GET /orgs/:org/teams/:team_slug/discussions/:discussion_number/reactions": {
- parameters: ReactionsListForTeamDiscussionInOrgEndpoint;
- request: ReactionsListForTeamDiscussionInOrgRequestOptions;
- response: OctokitResponse;
- };
- /**
- * @see https://developer.github.com/v3/teams/members/#list-pending-team-invitations
- */
- "GET /orgs/:org/teams/:team_slug/invitations": {
- parameters: TeamsListPendingInvitationsInOrgEndpoint;
- request: TeamsListPendingInvitationsInOrgRequestOptions;
- response: OctokitResponse |