easy-social-auth
Version:
A flexible, standalone package for social authentication using Google, Facebook & Twitter
13 lines (12 loc) • 537 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GrantType = void 0;
var GrantType;
(function (GrantType) {
GrantType["AUTHORIZATION_CODE"] = "authorization_code";
GrantType["REFRESH_TOKEN"] = "refresh_token";
GrantType["PASSWORD"] = "password";
GrantType["CLIENT_CREDENTIALS"] = "client_credentials";
GrantType["INSTAGRAM_EXCHANGE_TOKEN"] = "ig_exchange_token";
GrantType["INSTAGRAM_REFRESH_TOKEN"] = "ig_refresh_token";
})(GrantType || (exports.GrantType = GrantType = {}));