2.8.0 • Published 1 month ago

@octokit-next/types-rest-api-ghes-3.5-compatible v2.8.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

@octokit-next/types-rest-api-ghes-3.5-compatible

Types for GHES 3.5 (compatible) REST API requests and responses

🚫⚠️ This package is part of an experimental Octokit SDK for testing purpose only - DO NOT USE

learn more

The goal for this package is to enable developers to build code that will work in both environments: github.com and GHES 3.5. Only endpoints and properties that exist in both have types by default.

The version can be overwritten on a per-request basis as needed.

Usage

const octokit = new Octokit({
  version: "ghes-3.5-compatible",
});
const response = await octokit.request("GET /");

The routes suggested for octokit.request(route) are only the ones that exist for version: "github.com" and have no overrides for version: "ghes-3.5". The same is true for response.headers.

To override the version specified in the constructor it can be set using the request.version option

const ghesOnlyResponse = await octokit.request("GET /admins/users", {
  request: {
    version: "ghes-3.5",
  },
});