@nine-lab/nine-mu 0.1.187 → 0.1.188

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,17 +13570,17 @@ 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).onNotification((notification) => {
13574
+ trace.log(notification);
13575
+ if (notification.method === "notifications/logging/message") {
13576
+ const data = JSON.parse(notification.params.message);
13577
+ if (data.type === "BRAIN_DECISION") ;
13578
+ }
13579
+ });
13573
13580
  }).catch((err) => {
13574
13581
  trace.error("❌ MCP 연결 실패", err);
13575
13582
  __privateMethod(this, _NineChatManager_instances, updateStatus_fn).call(this, "❌ Connection Failed");
13576
13583
  });
13577
- __privateGet(this, _mcpClient).onNotification((notification) => {
13578
- console.log(notification);
13579
- if (notification.method === "notifications/logging/message") {
13580
- const data = JSON.parse(notification.params.message);
13581
- if (data.type === "BRAIN_DECISION") ;
13582
- }
13583
- });
13584
13584
  };
13585
13585
  updateStatus_fn = function(msg) {
13586
13586
  if (__privateGet(this, _onStatus)) __privateGet(this, _onStatus).call(this, msg);
@@ -13801,7 +13801,7 @@ render_fn = function() {
13801
13801
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
13802
13802
  this.shadowRoot.innerHTML = `
13803
13803
  <style>
13804
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.186"}/dist/css/nine-mu.css";
13804
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.187"}/dist/css/nine-mu.css";
13805
13805
  ${customImport}
13806
13806
  </style>
13807
13807
  <div class="wrapper">
@@ -40020,7 +40020,7 @@ class NineDiff extends HTMLElement {
40020
40020
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
40021
40021
  this.shadowRoot.innerHTML = `
40022
40022
  <style>
40023
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.186"}/dist/css/nine-mu.css";
40023
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.187"}/dist/css/nine-mu.css";
40024
40024
  ${customImport}
40025
40025
  </style>
40026
40026
 
@@ -40130,7 +40130,7 @@ render_fn2 = function() {
40130
40130
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
40131
40131
  this.shadowRoot.innerHTML = `
40132
40132
  <style>
40133
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.186"}/dist/css/nine-mu.css";
40133
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.187"}/dist/css/nine-mu.css";
40134
40134
  ${customImport}
40135
40135
  </style>
40136
40136
 
@@ -40457,7 +40457,7 @@ class ChatMessageBody extends HTMLElement {
40457
40457
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
40458
40458
  this.shadowRoot.innerHTML = `
40459
40459
  <style>
40460
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.186"}/dist/css/nine-mu.css";
40460
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.187"}/dist/css/nine-mu.css";
40461
40461
  ${customImport}
40462
40462
  </style>
40463
40463
 
@@ -40551,7 +40551,7 @@ if (!customElements.get("nine-chat-progress")) {
40551
40551
  customElements.define("nine-chat-progress", ProgressMessage);
40552
40552
  }
40553
40553
  const NineMu = {
40554
- version: "0.1.186",
40554
+ version: "0.1.187",
40555
40555
  init: (config2) => {
40556
40556
  trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
40557
40557
  }