UNPKG

@octokit/oauth-methods

Version:

Set of stateless request methods to create, check, reset, refresh, and delete user access tokens for OAuth and GitHub Apps

30 lines (29 loc) 1.23 kB
import type { RequestInterface, Endpoints } from "@octokit/types"; import type { GitHubAppAuthenticationWithExpirationEnabled, GitHubAppAuthenticationWithExpirationDisabled } from "./types.js"; type CommonOptions = { clientType: "github-app"; clientId: string; clientSecret: string; token: string; permissions?: Endpoint["parameters"]["permissions"]; request?: RequestInterface; }; type TargetOption = { target: string; }; type TargetIdOption = { target_id: number; }; type RepositoriesOption = { repositories?: string[]; }; type RepositoryIdsOption = { repository_ids?: number[]; }; type Endpoint = Endpoints["POST /applications/{client_id}/token/scoped"]; export type ScopeTokenOptions = (CommonOptions & TargetOption & RepositoriesOption) | (CommonOptions & TargetIdOption & RepositoriesOption) | (CommonOptions & TargetOption & RepositoryIdsOption) | (CommonOptions & TargetIdOption & RepositoryIdsOption); export type ScopeTokenResponse = Endpoint["response"] & { authentication: GitHubAppAuthenticationWithExpirationEnabled | GitHubAppAuthenticationWithExpirationDisabled; }; export declare function scopeToken(options: ScopeTokenOptions): Promise<ScopeTokenResponse>; export {};