sendit-sdk
Version:
Sendit sdk for integrating to sendit system
18 lines (16 loc) • 368 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var grantType = exports.grantType = {
CODE: 'authorization_code',
CLIENT: 'client_credentials',
PASSWORD: 'password',
REFRESH_TOKEN: 'refresh_token'
};
var reponseType = exports.reponseType = {
CODE: 'code',
CLIENT: 'client',
IMPLICIT: 'implicit',
PASSWORD: 'password'
};