@nine-lab/nine-mu 0.1.189 → 0.1.191

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 CHANGED
@@ -13570,15 +13570,18 @@ connect_fn = async function() {
13570
13570
  trace.log(__privateGet(this, _mcpClient));
13571
13571
  __privateGet(this, _mcpClient).connect(transport).then(() => {
13572
13572
  __privateMethod(this, _NineChatManager_instances, updateStatus_fn).call(this, "✅ MCP Connected");
13573
- __privateGet(this, _mcpClient).notificationHandlers.set("notifications/logging/message", (notification) => {
13574
- try {
13575
- const logData = JSON.parse(notification.params.message);
13576
- if (logData.type === "BRAIN_DECISION") {
13573
+ __privateGet(this, _mcpClient).setNotificationHandler(
13574
+ { method: "notifications/logging/message" },
13575
+ (notification) => {
13576
+ try {
13577
+ const logData = JSON.parse(notification.params.message);
13578
+ if (logData.type === "BRAIN_DECISION") {
13579
+ }
13580
+ } catch (e) {
13581
+ console.warn("알림 데이터 파싱 실패:", e);
13577
13582
  }
13578
- } catch (e) {
13579
- console.warn("알림 파싱 실패:", e);
13580
13583
  }
13581
- });
13584
+ );
13582
13585
  }).catch((err) => {
13583
13586
  trace.error("❌ MCP 연결 실패", err);
13584
13587
  __privateMethod(this, _NineChatManager_instances, updateStatus_fn).call(this, "❌ Connection Failed");
@@ -13803,7 +13806,7 @@ render_fn = function() {
13803
13806
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
13804
13807
  this.shadowRoot.innerHTML = `
13805
13808
  <style>
13806
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.188"}/dist/css/nine-mu.css";
13809
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.190"}/dist/css/nine-mu.css";
13807
13810
  ${customImport}
13808
13811
  </style>
13809
13812
  <div class="wrapper">
@@ -40022,7 +40025,7 @@ class NineDiff extends HTMLElement {
40022
40025
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
40023
40026
  this.shadowRoot.innerHTML = `
40024
40027
  <style>
40025
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.188"}/dist/css/nine-mu.css";
40028
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.190"}/dist/css/nine-mu.css";
40026
40029
  ${customImport}
40027
40030
  </style>
40028
40031
 
@@ -40132,7 +40135,7 @@ render_fn2 = function() {
40132
40135
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
40133
40136
  this.shadowRoot.innerHTML = `
40134
40137
  <style>
40135
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.188"}/dist/css/nine-mu.css";
40138
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.190"}/dist/css/nine-mu.css";
40136
40139
  ${customImport}
40137
40140
  </style>
40138
40141
 
@@ -40459,7 +40462,7 @@ class ChatMessageBody extends HTMLElement {
40459
40462
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
40460
40463
  this.shadowRoot.innerHTML = `
40461
40464
  <style>
40462
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.188"}/dist/css/nine-mu.css";
40465
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.190"}/dist/css/nine-mu.css";
40463
40466
  ${customImport}
40464
40467
  </style>
40465
40468
 
@@ -40553,7 +40556,7 @@ if (!customElements.get("nine-chat-progress")) {
40553
40556
  customElements.define("nine-chat-progress", ProgressMessage);
40554
40557
  }
40555
40558
  const NineMu = {
40556
- version: "0.1.188",
40559
+ version: "0.1.190",
40557
40560
  init: (config2) => {
40558
40561
  trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
40559
40562
  }