@dollhousemcp/mcp-server 2.0.12-rc.8 → 2.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +54 -0
- package/README.md +4 -4
- package/README.md.backup +5 -5
- package/README.npm.md +4 -4
- package/dist/di/Container.d.ts +14 -0
- package/dist/di/Container.d.ts.map +1 -1
- package/dist/di/Container.js +43 -26
- package/dist/elements/agents/AgentManager.d.ts +11 -4
- package/dist/elements/agents/AgentManager.d.ts.map +1 -1
- package/dist/elements/agents/AgentManager.js +38 -11
- package/dist/elements/base/BaseElementManager.d.ts +10 -0
- package/dist/elements/base/BaseElementManager.d.ts.map +1 -1
- package/dist/elements/base/BaseElementManager.js +26 -1
- package/dist/elements/ensembles/EnsembleManager.d.ts +1 -0
- package/dist/elements/ensembles/EnsembleManager.d.ts.map +1 -1
- package/dist/elements/ensembles/EnsembleManager.js +13 -2
- package/dist/elements/templates/Template.d.ts +33 -1
- package/dist/elements/templates/Template.d.ts.map +1 -1
- package/dist/elements/templates/Template.js +74 -15
- package/dist/elements/templates/TemplateManager.d.ts.map +1 -1
- package/dist/elements/templates/TemplateManager.js +8 -1
- package/dist/generated/version.d.ts +2 -2
- package/dist/generated/version.d.ts.map +1 -1
- package/dist/generated/version.js +3 -3
- package/dist/handlers/element-crud/createElement.js +2 -2
- package/dist/handlers/mcp-aql/SchemaDispatcher.d.ts.map +1 -1
- package/dist/handlers/mcp-aql/SchemaDispatcher.js +8 -1
- package/dist/handlers/strategies/EnsembleActivationStrategy.d.ts +3 -0
- package/dist/handlers/strategies/EnsembleActivationStrategy.d.ts.map +1 -1
- package/dist/handlers/strategies/EnsembleActivationStrategy.js +48 -9
- package/dist/index.js +19 -13
- package/dist/utils/TemplateRenderer.d.ts +9 -0
- package/dist/utils/TemplateRenderer.d.ts.map +1 -1
- package/dist/utils/TemplateRenderer.js +21 -1
- package/dist/web/console/IngestRoutes.d.ts.map +1 -1
- package/dist/web/console/IngestRoutes.js +193 -59
- package/dist/web/console/SessionNames.d.ts +18 -5
- package/dist/web/console/SessionNames.d.ts.map +1 -1
- package/dist/web/console/SessionNames.js +63 -8
- package/dist/web/console/StaleProcessRecovery.d.ts.map +1 -1
- package/dist/web/console/StaleProcessRecovery.js +5 -4
- package/dist/web/console/UnifiedConsole.js +3 -3
- package/dist/web/console/consoleToken.js +3 -3
- package/dist/web/portDiscovery.d.ts +1 -1
- package/dist/web/portDiscovery.d.ts.map +1 -1
- package/dist/web/portDiscovery.js +2 -2
- package/dist/web/public/app.js +65 -11
- package/dist/web/public/index.html +2 -0
- package/dist/web/public/logs.js +24 -2
- package/dist/web/public/metrics.js +22 -4
- package/dist/web/public/sessions.js +55 -8
- package/dist/web/public/setup.js +18 -3
- package/dist/web/public/styles.css +12 -0
- package/dist/web/routes/permissionRoutes.js +2 -2
- package/dist/web/routes/setupRoutes.d.ts +67 -1
- package/dist/web/routes/setupRoutes.d.ts.map +1 -1
- package/dist/web/routes/setupRoutes.js +298 -6
- package/dist/web/routes.d.ts.map +1 -1
- package/dist/web/routes.js +4 -2
- package/dist/web/server.d.ts.map +1 -1
- package/dist/web/server.js +14 -5
- package/package.json +4 -2
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,59 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.12] - 2026-04-12
|
|
4
|
+
|
|
5
|
+
### Authenticated Web Console
|
|
6
|
+
|
|
7
|
+
The management console at `http://dollhouse.localhost:41715` now requires authentication. Console sessions are issued signed tokens; TOTP enrollment provides a second factor for sensitive operations such as token rotation.
|
|
8
|
+
|
|
9
|
+
- **Session token auth** — console issues a signed bearer token on first connect; subsequent requests require it (#1787)
|
|
10
|
+
- **TOTP enrollment** — Phase 2 interactive TOTP setup with QR code, ±60s validation window, rate limiting (#1794)
|
|
11
|
+
- **Auth tab** — dedicated tab surfaces the active token, enrollment flow, and session event log (#1807)
|
|
12
|
+
- **CLI token commands** — `dollhousemcp token show/rotate/revoke` manage the console token from the terminal (#1790)
|
|
13
|
+
- **Browser 401 recovery** — expired-session toast with one-click re-auth, no full-page reload (#1792)
|
|
14
|
+
- **Token rotation** — TOTP-confirmed rotation endpoint; HTML cache auto-invalidates on rotation (#1795, #1804)
|
|
15
|
+
- **Permanent port 41715** — "AILIS" on a phone keypad; env-var overridable (#1798)
|
|
16
|
+
|
|
17
|
+
### Setup Tab & Install Experience
|
|
18
|
+
|
|
19
|
+
- **Release channel selector** — switch between Stable, RC, and Beta channels; config snippets update live (#1835)
|
|
20
|
+
- **License selector** — commercial license activation with email verification on the Setup tab (#1826, #1831)
|
|
21
|
+
- **Setup tab per-version** — tab reopens once per new version so users see what changed, then stays out of the way (#1905)
|
|
22
|
+
- **NVM-aware launcher** — install script auto-detects and wires NVM so `node` is always in PATH on restart (#1902)
|
|
23
|
+
- **Cleaner install UX** — channel label, button state clears on channel change, current config refreshes after install (#1850, #1862, #1864)
|
|
24
|
+
|
|
25
|
+
### Permission Server
|
|
26
|
+
|
|
27
|
+
- **Hook-based agent permissioning** — `dollhousemcp-permission-server` evaluates Gatekeeper policies for external hooks, enabling autonomous agent approval flows outside the MCP session (#1777)
|
|
28
|
+
|
|
29
|
+
### Element Reliability Fixes
|
|
30
|
+
|
|
31
|
+
- **Template variable auto-derive** — `{{placeholder}}` tokens in template content are automatically registered as variable schema entries on save; renders never silently return unfilled text (#1896)
|
|
32
|
+
- **Ghost session cleanup** — sessions that return 404 on kill are now reaped from the active list; permanent kill + pending kill flows unified (#1870)
|
|
33
|
+
- **Ensemble stale cache** — LRU cache flushed on ensemble activation so newly added members appear immediately (#1895)
|
|
34
|
+
- **Agent storage index** — index updated correctly after create, fixing stale list after first agent add (#1877)
|
|
35
|
+
- **Ensemble member deactivation** — members deactivate cleanly without leaving orphaned state (#1878)
|
|
36
|
+
- **Template variable routing** — normalization hardened so variables survive round-trip edits (#1879)
|
|
37
|
+
- **Memory addEntry transport** — transport-layer regression for memory entries resolved (#1880)
|
|
38
|
+
- **Content-only agent creation** — agents can now be created with content only, without requiring all metadata fields (#1893)
|
|
39
|
+
|
|
40
|
+
### Security
|
|
41
|
+
|
|
42
|
+
- **NFC normalization on web routes** — all route `name` and `file` parameters are NFC-normalized before path traversal checks, closing a Unicode homograph bypass (#1736)
|
|
43
|
+
- **Hono CVE** — pinned hono 4.12.12 and @hono/node-server 1.19.13 via npm overrides (#1908)
|
|
44
|
+
- **Startup error sanitization** — production startup failures no longer leak stack traces or internal paths (#1848)
|
|
45
|
+
- **Vulnerability triage** — osv-scanner.toml, GHSA reclassification monitor, Dependabot alert triage tooling (#1800)
|
|
46
|
+
|
|
47
|
+
### Developer Experience
|
|
48
|
+
|
|
49
|
+
- **Console discovery hints** — element list/search/activate operations surface the console URL so LLMs can direct users there (#1849)
|
|
50
|
+
- **Session auth status indicators** — two-dimension status badge in session dropdown shows auth state at a glance (#1805)
|
|
51
|
+
- **Web console regressions** — comprehensive fix pass covering tabs, sinks, Auth panel init, and leader/follower edge cases (#1881)
|
|
52
|
+
|
|
53
|
+
### Breaking Change
|
|
54
|
+
|
|
55
|
+
The web console default port moved **3939 → 41715**. Update bookmarks and any scripts referencing `localhost:3939`. The old port continues to work if a legacy (pre-auth) DollhouseMCP process is running there.
|
|
56
|
+
|
|
3
57
|
## [2.0.11-rc.1] - 2026-04-08
|
|
4
58
|
|
|
5
59
|
Release candidate for v2.0.11 — console auth, permissions, licensing, port 41715, channel selector
|
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
|
|
34
34
|
"Create a skill for 📁 ~/.dollhouse/portfolio/ "Activate the Dollhouse
|
|
35
35
|
writing blog posts" Expert ensemble"
|
|
36
|
-
|
|
36
|
+
37 starter elements:
|
|
37
37
|
"Edit the code review ──▶ personas · skills · ──▶ Your AI now has
|
|
38
38
|
persona to add security" templates · agents · new behavior,
|
|
39
39
|
memories · ensembles capabilities, and
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
- **Edit** any existing element to refine it
|
|
49
49
|
- **Browse** the [community collection](https://dollhousemcp.github.io/collection/) and install elements made by other users
|
|
50
50
|
|
|
51
|
-
Your **portfolio** (`~/.dollhouse/portfolio/`) is a local folder that holds all your Dollhouse elements. It ships with
|
|
51
|
+
Your **portfolio** (`~/.dollhouse/portfolio/`) is a local folder that holds all your Dollhouse elements. It ships with 37 starters — including the **dollhouse-expert-suite** ensemble (persona + knowledge base) you can activate for guided help. Everything you create or install lands here. Share back to the community or sync to GitHub whenever you're ready.
|
|
52
52
|
|
|
53
53
|
---
|
|
54
54
|
|
|
@@ -100,7 +100,7 @@ Dollhouse elements are modular building blocks that customize your AI. When you
|
|
|
100
100
|
|---|---|
|
|
101
101
|
| **Dollhouse Personas** | Shape behavior, tone, expertise, and priorities. <br> Act as security principals with permission policies that control what the AI can do. |
|
|
102
102
|
| **Dollhouse Skills*** | Add discrete capabilities the AI can activate on demand. <br> Code review, data analysis, penetration testing, translation, and more. |
|
|
103
|
-
| **Dollhouse Templates** | Standardize outputs with variable substitution. <br> Reports, emails, briefs, documentation — consistent structure every time. |
|
|
103
|
+
| **Dollhouse Templates** | Standardize outputs with variable substitution. <br> Reports, emails, briefs, documentation — consistent structure every time. Variables are auto-derived from `{{placeholder}}` tokens in content — no manual schema needed. |
|
|
104
104
|
| **Dollhouse Agents** | Execute multi-step goals autonomously. <br> State tracking, resilience policies, autonomy evaluation, and an execution lifecycle. |
|
|
105
105
|
| **Dollhouse Memories** | Persist structured context across sessions. <br> Facts, preferences, project state. Can auto-load on startup. |
|
|
106
106
|
| **Dollhouse Ensembles** | Bundle multiple elements into one activatable unit. <br> Activation strategies, conflict resolution, and coordinated permission policies. |
|
|
@@ -220,7 +220,7 @@ Your Dollhouse elements live in a local portfolio at `~/.dollhouse/portfolio/`.
|
|
|
220
220
|
</div>
|
|
221
221
|
|
|
222
222
|
- **Local-first** — Everything works offline. No account required.
|
|
223
|
-
- **
|
|
223
|
+
- **37 bundled elements** — 7 personas, 7 skills, 8 templates, 7 agents, 3 memories, 5 ensembles ship with the server as starter content. Includes the **dollhouse-expert-suite** ensemble (persona + knowledge base memory) for guided help, and a **Session Monitor** agent that keeps your LLM synchronized with server state changes.
|
|
224
224
|
- **GitHub sync** — Optionally back up your portfolio to a GitHub repository and share elements with others.
|
|
225
225
|
- **Community Collection** — [Browse the collection](https://dollhousemcp.github.io/collection/) to see what's available, then install elements directly from your AI. Or [submit your own](https://github.com/DollhouseMCP/collection).
|
|
226
226
|
|
package/README.md.backup
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
|
|
34
34
|
"Create a skill for 📁 ~/.dollhouse/portfolio/ "Activate the Dollhouse
|
|
35
35
|
writing blog posts" Expert ensemble"
|
|
36
|
-
|
|
36
|
+
37 starter elements:
|
|
37
37
|
"Edit the code review ──▶ personas · skills · ──▶ Your AI now has
|
|
38
38
|
persona to add security" templates · agents · new behavior,
|
|
39
39
|
memories · ensembles capabilities, and
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
- **Edit** any existing element to refine it
|
|
49
49
|
- **Browse** the [community collection](https://dollhousemcp.github.io/collection/) and install elements made by other users
|
|
50
50
|
|
|
51
|
-
Your **portfolio** (`~/.dollhouse/portfolio/`) is a local folder that holds all your Dollhouse elements. It ships with
|
|
51
|
+
Your **portfolio** (`~/.dollhouse/portfolio/` on macOS/Linux, `%USERPROFILE%\.dollhouse\portfolio\` on Windows) is a local folder that holds all your Dollhouse elements. It ships with 37 starters — including the **dollhouse-expert-suite** ensemble (persona + knowledge base) you can activate for guided help. Everything you create or install lands here. Share back to the community or sync to GitHub whenever you're ready.
|
|
52
52
|
|
|
53
53
|
---
|
|
54
54
|
|
|
@@ -100,7 +100,7 @@ Dollhouse elements are modular building blocks that customize your AI. When you
|
|
|
100
100
|
|---|---|
|
|
101
101
|
| **Dollhouse Personas** | Shape behavior, tone, expertise, and priorities. <br> Act as security principals with permission policies that control what the AI can do. |
|
|
102
102
|
| **Dollhouse Skills*** | Add discrete capabilities the AI can activate on demand. <br> Code review, data analysis, penetration testing, translation, and more. |
|
|
103
|
-
| **Dollhouse Templates** | Standardize outputs with variable substitution. <br> Reports, emails, briefs, documentation — consistent structure every time. |
|
|
103
|
+
| **Dollhouse Templates** | Standardize outputs with variable substitution. <br> Reports, emails, briefs, documentation — consistent structure every time. Variables are auto-derived from `{{placeholder}}` tokens in content — no manual schema needed. |
|
|
104
104
|
| **Dollhouse Agents** | Execute multi-step goals autonomously. <br> State tracking, resilience policies, autonomy evaluation, and an execution lifecycle. |
|
|
105
105
|
| **Dollhouse Memories** | Persist structured context across sessions. <br> Facts, preferences, project state. Can auto-load on startup. |
|
|
106
106
|
| **Dollhouse Ensembles** | Bundle multiple elements into one activatable unit. <br> Activation strategies, conflict resolution, and coordinated permission policies. |
|
|
@@ -213,14 +213,14 @@ Policies stack across all active elements. If one persona allows an operation bu
|
|
|
213
213
|
|
|
214
214
|
## Portfolio
|
|
215
215
|
|
|
216
|
-
Your Dollhouse elements live in a local portfolio at `~/.dollhouse/portfolio
|
|
216
|
+
Your Dollhouse elements live in a local portfolio at `~/.dollhouse/portfolio/` (macOS/Linux) or `%USERPROFILE%\.dollhouse\portfolio\` (Windows). Ask your AI to "open the portfolio browser" (or call `open_portfolio_browser` via MCP-AQL) to browse them visually. Activation is done through the LLM — ask it to "activate the Dollhouse code review persona" and it handles the rest.
|
|
217
217
|
|
|
218
218
|
<div align="center">
|
|
219
219
|
<img src="docs/assets/portfolio-browser.png" alt="DollhouseMCP Portfolio Browser" width="700" />
|
|
220
220
|
</div>
|
|
221
221
|
|
|
222
222
|
- **Local-first** — Everything works offline. No account required.
|
|
223
|
-
- **
|
|
223
|
+
- **37 bundled elements** — 7 personas, 7 skills, 8 templates, 7 agents, 3 memories, 5 ensembles ship with the server as starter content. Includes the **dollhouse-expert-suite** ensemble (persona + knowledge base memory) for guided help, and a **Session Monitor** agent that keeps your LLM synchronized with server state changes.
|
|
224
224
|
- **GitHub sync** — Optionally back up your portfolio to a GitHub repository and share elements with others.
|
|
225
225
|
- **Community Collection** — [Browse the collection](https://dollhousemcp.github.io/collection/) to see what's available, then install elements directly from your AI. Or [submit your own](https://github.com/DollhouseMCP/collection).
|
|
226
226
|
|
package/README.npm.md
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
|
|
34
34
|
"Create a skill for 📁 ~/.dollhouse/portfolio/ "Activate the Dollhouse
|
|
35
35
|
writing blog posts" Expert ensemble"
|
|
36
|
-
|
|
36
|
+
37 starter elements:
|
|
37
37
|
"Edit the code review ──▶ personas · skills · ──▶ Your AI now has
|
|
38
38
|
persona to add security" templates · agents · new behavior,
|
|
39
39
|
memories · ensembles capabilities, and
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
- **Edit** any existing element to refine it
|
|
49
49
|
- **Browse** the [community collection](https://dollhousemcp.github.io/collection/) and install elements made by other users
|
|
50
50
|
|
|
51
|
-
Your **portfolio** (`~/.dollhouse/portfolio/`) is a local folder that holds all your Dollhouse elements. It ships with
|
|
51
|
+
Your **portfolio** (`~/.dollhouse/portfolio/`) is a local folder that holds all your Dollhouse elements. It ships with 37 starters — including the **dollhouse-expert-suite** ensemble (persona + knowledge base) you can activate for guided help. Everything you create or install lands here. Share back to the community or sync to GitHub whenever you're ready.
|
|
52
52
|
|
|
53
53
|
---
|
|
54
54
|
|
|
@@ -100,7 +100,7 @@ Dollhouse elements are modular building blocks that customize your AI. When you
|
|
|
100
100
|
|---|---|
|
|
101
101
|
| **Dollhouse Personas** | Shape behavior, tone, expertise, and priorities. <br> Act as security principals with permission policies that control what the AI can do. |
|
|
102
102
|
| **Dollhouse Skills*** | Add discrete capabilities the AI can activate on demand. <br> Code review, data analysis, penetration testing, translation, and more. |
|
|
103
|
-
| **Dollhouse Templates** | Standardize outputs with variable substitution. <br> Reports, emails, briefs, documentation — consistent structure every time. |
|
|
103
|
+
| **Dollhouse Templates** | Standardize outputs with variable substitution. <br> Reports, emails, briefs, documentation — consistent structure every time. Variables are auto-derived from `{{placeholder}}` tokens in content — no manual schema needed. |
|
|
104
104
|
| **Dollhouse Agents** | Execute multi-step goals autonomously. <br> State tracking, resilience policies, autonomy evaluation, and an execution lifecycle. |
|
|
105
105
|
| **Dollhouse Memories** | Persist structured context across sessions. <br> Facts, preferences, project state. Can auto-load on startup. |
|
|
106
106
|
| **Dollhouse Ensembles** | Bundle multiple elements into one activatable unit. <br> Activation strategies, conflict resolution, and coordinated permission policies. |
|
|
@@ -220,7 +220,7 @@ Your Dollhouse elements live in a local portfolio at `~/.dollhouse/portfolio/`.
|
|
|
220
220
|
</div>
|
|
221
221
|
|
|
222
222
|
- **Local-first** — Everything works offline. No account required.
|
|
223
|
-
- **
|
|
223
|
+
- **37 bundled elements** — 7 personas, 7 skills, 8 templates, 7 agents, 3 memories, 5 ensembles ship with the server as starter content. Includes the **dollhouse-expert-suite** ensemble (persona + knowledge base memory) for guided help, and a **Session Monitor** agent that keeps your LLM synchronized with server state changes.
|
|
224
224
|
- **GitHub sync** — Optionally back up your portfolio to a GitHub repository and share elements with others.
|
|
225
225
|
- **Community Collection** — [Browse the collection](https://dollhousemcp.github.io/collection/) to see what's available, then install elements directly from your AI. Or [submit your own](https://github.com/DollhouseMCP/collection).
|
|
226
226
|
|
package/dist/di/Container.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ import { IdentityHandler } from "../handlers/IdentityHandler.js";
|
|
|
11
11
|
import { ConfigHandler } from "../handlers/ConfigHandler.js";
|
|
12
12
|
import { SyncHandler } from "../handlers/SyncHandlerV2.js";
|
|
13
13
|
import { ToolRegistry } from "../handlers/ToolRegistry.js";
|
|
14
|
+
import { StartupTimer } from "../telemetry/StartupTimer.js";
|
|
14
15
|
export interface HandlerBundle {
|
|
15
16
|
personaHandler: PersonaHandler;
|
|
16
17
|
elementCrudHandler: ElementCRUDHandler;
|
|
@@ -80,6 +81,19 @@ export declare class DollhouseContainer {
|
|
|
80
81
|
* This shrinks the critical path by 1000-3700ms.
|
|
81
82
|
*/
|
|
82
83
|
completeDeferredSetup(): Promise<void>;
|
|
84
|
+
/**
|
|
85
|
+
* Wire sinks, hooks, collectors, and security — everything EXCEPT
|
|
86
|
+
* the web console leader election and permission server.
|
|
87
|
+
*
|
|
88
|
+
* Called by completeDeferredSetup() in MCP stdio mode, and directly
|
|
89
|
+
* by the --web standalone path which IS the server (#1866).
|
|
90
|
+
*/
|
|
91
|
+
completeSinkSetup(timer?: StartupTimer): Promise<void>;
|
|
92
|
+
/**
|
|
93
|
+
* Leader election, web console server, and permission server.
|
|
94
|
+
* Only called in MCP stdio mode — --web standalone mode IS the server (#1866).
|
|
95
|
+
*/
|
|
96
|
+
completeConsoleSetup(timer?: StartupTimer): Promise<void>;
|
|
83
97
|
private deferredMemoryAutoload;
|
|
84
98
|
private deferredActivationRestore;
|
|
85
99
|
private deferredPolicyExport;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Container.d.ts","sourceRoot":"","sources":["../../src/di/Container.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,MAAM,EAAE,MAAM,2CAA2C,CAAC;AAkBnE,OAAO,EAAE,oBAAoB,EAAE,MAAM,qCAAqC,CAAC;AAC3E,OAAO,EAAE,aAAa,EAAwB,MAAM,sCAAsC,CAAC;AAa3F,OAAO,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAC/D,OAAO,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAC;AACvE,OAAO,EAAE,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAC;AAEnE,OAAO,EAAE,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AACrE,OAAO,EAAE,oBAAoB,EAAE,MAAM,qCAAqC,CAAC;AAC3E,OAAO,EAAE,eAAe,EAAE,MAAM,gCAAgC,CAAC;AACjE,OAAO,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AAC7D,OAAO,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAC3D,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;
|
|
1
|
+
{"version":3,"file":"Container.d.ts","sourceRoot":"","sources":["../../src/di/Container.ts"],"names":[],"mappings":"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"}
|