planning
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s

This commit is contained in:
2024-10-14 09:15:30 +02:00
parent bcba00a730
commit 6e64e138e2
21059 changed files with 2317811 additions and 1 deletions

33
node_modules/decap-cms-lib-auth/dist/esm/index.js generated vendored Normal file
View File

@@ -0,0 +1,33 @@
"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
};