First upload version 0.0.1
This commit is contained in:
16
node_modules/@octokit/oauth-app/dist-src/methods/check-token.js
generated
vendored
Normal file
16
node_modules/@octokit/oauth-app/dist-src/methods/check-token.js
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
import * as OAuthMethods from "@octokit/oauth-methods";
|
||||
async function checkTokenWithState(state, options) {
|
||||
const result = await OAuthMethods.checkToken({
|
||||
// @ts-expect-error not worth the extra code to appease TS
|
||||
clientType: state.clientType,
|
||||
clientId: state.clientId,
|
||||
clientSecret: state.clientSecret,
|
||||
request: state.octokit.request,
|
||||
...options
|
||||
});
|
||||
Object.assign(result.authentication, { type: "token", tokenType: "oauth" });
|
||||
return result;
|
||||
}
|
||||
export {
|
||||
checkTokenWithState
|
||||
};
|
||||
Reference in New Issue
Block a user