mirror of
https://github.com/Minionguyjpro/Inno-Setup-Action
synced 2026-02-18 17:41:18 +01:00
19 lines
539 B
JavaScript
19 lines
539 B
JavaScript
import ENDPOINTS from "./generated/endpoints";
|
|
import { VERSION } from "./version";
|
|
import { endpointsToMethods } from "./endpoints-to-methods";
|
|
export function restEndpointMethods(octokit) {
|
|
const api = endpointsToMethods(octokit, ENDPOINTS);
|
|
return {
|
|
rest: api,
|
|
};
|
|
}
|
|
restEndpointMethods.VERSION = VERSION;
|
|
export function legacyRestEndpointMethods(octokit) {
|
|
const api = endpointsToMethods(octokit, ENDPOINTS);
|
|
return {
|
|
...api,
|
|
rest: api,
|
|
};
|
|
}
|
|
legacyRestEndpointMethods.VERSION = VERSION;
|