First upload version 0.0.1
This commit is contained in:
36
node_modules/@octokit/oauth-app/dist-src/methods/delete-token.js
generated
vendored
Normal file
36
node_modules/@octokit/oauth-app/dist-src/methods/delete-token.js
generated
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
import * as OAuthMethods from "@octokit/oauth-methods";
|
||||
import { createUnauthenticatedAuth } from "@octokit/auth-unauthenticated";
|
||||
import { emitEvent } from "../emit-event.js";
|
||||
async function deleteTokenWithState(state, options) {
|
||||
const optionsWithDefaults = {
|
||||
clientId: state.clientId,
|
||||
clientSecret: state.clientSecret,
|
||||
request: state.octokit.request,
|
||||
...options
|
||||
};
|
||||
const response = state.clientType === "oauth-app" ? await OAuthMethods.deleteToken({
|
||||
clientType: "oauth-app",
|
||||
...optionsWithDefaults
|
||||
}) : (
|
||||
/* v8 ignore next 4 */
|
||||
await OAuthMethods.deleteToken({
|
||||
clientType: "github-app",
|
||||
...optionsWithDefaults
|
||||
})
|
||||
);
|
||||
await emitEvent(state, {
|
||||
name: "token",
|
||||
action: "deleted",
|
||||
token: options.token,
|
||||
octokit: new state.Octokit({
|
||||
authStrategy: createUnauthenticatedAuth,
|
||||
auth: {
|
||||
reason: `Handling "token.deleted" event. The access for the token has been revoked.`
|
||||
}
|
||||
})
|
||||
});
|
||||
return response;
|
||||
}
|
||||
export {
|
||||
deleteTokenWithState
|
||||
};
|
||||
Reference in New Issue
Block a user