3.0.0 • Published 6 months ago
@octokit-next/types-rest-api-ghes-3.3-compatible v3.0.0
@octokit-next/types-rest-api-ghes-3.3-compatible
Types for GHES 3.3 (compatible) REST API requests and responses
🚫⚠️ This package is part of an experimental Octokit SDK for testing purpose only - DO NOT USE
The goal for this package is to enable developers to build code that will work in both environments: github.com and GHES 3.3. 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.3-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.3". 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.3",
},
});