@nine-lab/nine-mu 0.1.199 → 0.1.201
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/dist/nine-mu.js +5 -16
- package/dist/nine-mu.js.map +1 -1
- package/dist/nine-mu.umd.js +3 -3
- package/dist/nine-mu.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/NineChatManager.js +22 -0
package/dist/nine-mu.js
CHANGED
|
@@ -13575,21 +13575,10 @@ connect_fn = async function() {
|
|
|
13575
13575
|
trace.log(__privateGet(this, _mcpClient));
|
|
13576
13576
|
__privateGet(this, _mcpClient).connect(transport).then(async () => {
|
|
13577
13577
|
__privateMethod(this, _NineChatManager_instances, updateStatus_fn).call(this, "✅ MCP Connected");
|
|
13578
|
-
try {
|
|
13579
|
-
await __privateGet(this, _mcpClient).request(
|
|
13580
|
-
{ method: "logging/setLevel", params: { level: "info" } },
|
|
13581
|
-
z.object({})
|
|
13582
|
-
// 빈 응답 스키마 객체 검증
|
|
13583
|
-
);
|
|
13584
|
-
trace.log("🚀 MCP 로깅 세션 활성화 완료 (Level: info)");
|
|
13585
|
-
} catch (linkErr) {
|
|
13586
|
-
trace.error("❌ 로깅 세션 활성화 실패:", linkErr);
|
|
13587
|
-
}
|
|
13588
13578
|
__privateGet(this, _mcpClient).onnotification = (notification) => {
|
|
13589
13579
|
trace.log("🔔 실시간 알림 도착:", notification);
|
|
13590
13580
|
if ((notification == null ? void 0 : notification.method) === "notifications/logging/message") {
|
|
13591
13581
|
try {
|
|
13592
|
-
trace.log("🔔 실시간 알림 도착:", notification);
|
|
13593
13582
|
const logData = JSON.parse(notification.params.message);
|
|
13594
13583
|
if (logData.type === "BRAIN_DECISION") {
|
|
13595
13584
|
}
|
|
@@ -13822,7 +13811,7 @@ render_fn = function() {
|
|
|
13822
13811
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
13823
13812
|
this.shadowRoot.innerHTML = `
|
|
13824
13813
|
<style>
|
|
13825
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
13814
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.200"}/dist/css/nine-mu.css";
|
|
13826
13815
|
${customImport}
|
|
13827
13816
|
</style>
|
|
13828
13817
|
<div class="wrapper">
|
|
@@ -40041,7 +40030,7 @@ class NineDiff extends HTMLElement {
|
|
|
40041
40030
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40042
40031
|
this.shadowRoot.innerHTML = `
|
|
40043
40032
|
<style>
|
|
40044
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40033
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.200"}/dist/css/nine-mu.css";
|
|
40045
40034
|
${customImport}
|
|
40046
40035
|
</style>
|
|
40047
40036
|
|
|
@@ -40151,7 +40140,7 @@ render_fn2 = function() {
|
|
|
40151
40140
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40152
40141
|
this.shadowRoot.innerHTML = `
|
|
40153
40142
|
<style>
|
|
40154
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40143
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.200"}/dist/css/nine-mu.css";
|
|
40155
40144
|
${customImport}
|
|
40156
40145
|
</style>
|
|
40157
40146
|
|
|
@@ -40478,7 +40467,7 @@ class ChatMessageBody extends HTMLElement {
|
|
|
40478
40467
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40479
40468
|
this.shadowRoot.innerHTML = `
|
|
40480
40469
|
<style>
|
|
40481
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40470
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.200"}/dist/css/nine-mu.css";
|
|
40482
40471
|
${customImport}
|
|
40483
40472
|
</style>
|
|
40484
40473
|
|
|
@@ -40572,7 +40561,7 @@ if (!customElements.get("nine-chat-progress")) {
|
|
|
40572
40561
|
customElements.define("nine-chat-progress", ProgressMessage);
|
|
40573
40562
|
}
|
|
40574
40563
|
const NineMu = {
|
|
40575
|
-
version: "0.1.
|
|
40564
|
+
version: "0.1.200",
|
|
40576
40565
|
init: (config2) => {
|
|
40577
40566
|
trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
|
|
40578
40567
|
}
|