Files
release-action/node_modules/@octokit/plugin-rest-endpoint-methods/dist-src/index.js
Nick Cipollo 7c50463644
Some checks failed
Test / check_pr (push) Has been cancelled
Prepare 1.8.4 release
2021-04-15 13:30:45 -04:00

18 lines
727 B
JavaScript

import ENDPOINTS from "./generated/endpoints";
import { VERSION } from "./version";
import { endpointsToMethods } from "./endpoints-to-methods";
/**
* This plugin is a 1:1 copy of internal @octokit/rest plugins. The primary
* goal is to rebuild @octokit/rest on top of @octokit/core. Once that is
* done, we will remove the registerEndpoints methods and return the methods
* directly as with the other plugins. At that point we will also remove the
* legacy workarounds and deprecations.
*
* See the plan at
* https://github.com/octokit/plugin-rest-endpoint-methods.js/pull/1
*/
export function restEndpointMethods(octokit) {
return endpointsToMethods(octokit, ENDPOINTS);
}
restEndpointMethods.VERSION = VERSION;