All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
33 lines
1.0 KiB
JavaScript
33 lines
1.0 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.DecapCmsLibAuth = void 0;
|
|
Object.defineProperty(exports, "ImplicitAuthenticator", {
|
|
enumerable: true,
|
|
get: function () {
|
|
return _implicitOauth.default;
|
|
}
|
|
});
|
|
Object.defineProperty(exports, "NetlifyAuthenticator", {
|
|
enumerable: true,
|
|
get: function () {
|
|
return _netlifyAuth.default;
|
|
}
|
|
});
|
|
Object.defineProperty(exports, "PkceAuthenticator", {
|
|
enumerable: true,
|
|
get: function () {
|
|
return _pkceOauth.default;
|
|
}
|
|
});
|
|
var _netlifyAuth = _interopRequireDefault(require("./netlify-auth"));
|
|
var _implicitOauth = _interopRequireDefault(require("./implicit-oauth"));
|
|
var _pkceOauth = _interopRequireDefault(require("./pkce-oauth"));
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
const DecapCmsLibAuth = exports.DecapCmsLibAuth = {
|
|
NetlifyAuthenticator: _netlifyAuth.default,
|
|
ImplicitAuthenticator: _implicitOauth.default,
|
|
PkceAuthenticator: _pkceOauth.default
|
|
}; |