Files
sgauthier 6e64e138e2
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
planning
2024-10-14 09:15:30 +02:00

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
};