@vtex/api
Version:
VTEX I/O API client
13 lines (12 loc) • 384 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AuthType = void 0;
var AuthType;
(function (AuthType) {
AuthType["basic"] = "Basic";
AuthType["bearer"] = "Bearer";
/**
* Supported for legacy reasons - this is not spec compliant!
*/
AuthType["token"] = "token";
})(AuthType = exports.AuthType || (exports.AuthType = {}));