docs: add quixzoom-auth-core product to AAMOS
- Product documentation in docs/products/ - Updated MEMORY.md with product info - quiXzoom Auth Core as AAMOS Identity product
This commit is contained in:
+3
@@ -0,0 +1,3 @@
|
||||
import type { ProxyAgentConfigurationInputType } from '../types';
|
||||
declare const _default: (configurationInput?: ProxyAgentConfigurationInputType) => boolean;
|
||||
export default _default;
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
"use strict";
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const globalthis_1 = __importDefault(require("globalthis"));
|
||||
const Logger_1 = require("../Logger");
|
||||
const factories_1 = require("../factories");
|
||||
const globalThis = (0, globalthis_1.default)();
|
||||
const log = Logger_1.logger.child({
|
||||
namespace: 'bootstrap',
|
||||
});
|
||||
exports.default = (configurationInput) => {
|
||||
if (globalThis.GLOBAL_AGENT) {
|
||||
log.warn('found globalThis.GLOBAL_AGENT; second attempt to bootstrap global-agent was ignored');
|
||||
return false;
|
||||
}
|
||||
globalThis.GLOBAL_AGENT = (0, factories_1.createGlobalProxyAgent)(configurationInput);
|
||||
return true;
|
||||
};
|
||||
+1
@@ -0,0 +1 @@
|
||||
export { default as bootstrap, } from './bootstrap';
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
"use strict";
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.bootstrap = void 0;
|
||||
var bootstrap_1 = require("./bootstrap");
|
||||
Object.defineProperty(exports, "bootstrap", { enumerable: true, get: function () { return __importDefault(bootstrap_1).default; } });
|
||||
Reference in New Issue
Block a user