@nine-lab/nine-mu 0.1.198 → 0.1.199
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 +16 -6
- 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 +11 -1
package/dist/nine-mu.js
CHANGED
|
@@ -13573,8 +13573,18 @@ connect_fn = async function() {
|
|
|
13573
13573
|
}
|
|
13574
13574
|
}));
|
|
13575
13575
|
trace.log(__privateGet(this, _mcpClient));
|
|
13576
|
-
__privateGet(this, _mcpClient).connect(transport).then(() => {
|
|
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
|
+
}
|
|
13578
13588
|
__privateGet(this, _mcpClient).onnotification = (notification) => {
|
|
13579
13589
|
trace.log("🔔 실시간 알림 도착:", notification);
|
|
13580
13590
|
if ((notification == null ? void 0 : notification.method) === "notifications/logging/message") {
|
|
@@ -13812,7 +13822,7 @@ render_fn = function() {
|
|
|
13812
13822
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
13813
13823
|
this.shadowRoot.innerHTML = `
|
|
13814
13824
|
<style>
|
|
13815
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
13825
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.198"}/dist/css/nine-mu.css";
|
|
13816
13826
|
${customImport}
|
|
13817
13827
|
</style>
|
|
13818
13828
|
<div class="wrapper">
|
|
@@ -40031,7 +40041,7 @@ class NineDiff extends HTMLElement {
|
|
|
40031
40041
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40032
40042
|
this.shadowRoot.innerHTML = `
|
|
40033
40043
|
<style>
|
|
40034
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40044
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.198"}/dist/css/nine-mu.css";
|
|
40035
40045
|
${customImport}
|
|
40036
40046
|
</style>
|
|
40037
40047
|
|
|
@@ -40141,7 +40151,7 @@ render_fn2 = function() {
|
|
|
40141
40151
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40142
40152
|
this.shadowRoot.innerHTML = `
|
|
40143
40153
|
<style>
|
|
40144
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40154
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.198"}/dist/css/nine-mu.css";
|
|
40145
40155
|
${customImport}
|
|
40146
40156
|
</style>
|
|
40147
40157
|
|
|
@@ -40468,7 +40478,7 @@ class ChatMessageBody extends HTMLElement {
|
|
|
40468
40478
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40469
40479
|
this.shadowRoot.innerHTML = `
|
|
40470
40480
|
<style>
|
|
40471
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40481
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.198"}/dist/css/nine-mu.css";
|
|
40472
40482
|
${customImport}
|
|
40473
40483
|
</style>
|
|
40474
40484
|
|
|
@@ -40562,7 +40572,7 @@ if (!customElements.get("nine-chat-progress")) {
|
|
|
40562
40572
|
customElements.define("nine-chat-progress", ProgressMessage);
|
|
40563
40573
|
}
|
|
40564
40574
|
const NineMu = {
|
|
40565
|
-
version: "0.1.
|
|
40575
|
+
version: "0.1.198",
|
|
40566
40576
|
init: (config2) => {
|
|
40567
40577
|
trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
|
|
40568
40578
|
}
|