@nine-lab/nine-mu 0.1.186 → 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,6 +13570,13 @@ 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");
@@ -13794,7 +13801,7 @@ render_fn = function() {
13794
13801
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
13795
13802
  this.shadowRoot.innerHTML = `
13796
13803
  <style>
13797
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.185"}/dist/css/nine-mu.css";
13804
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.187"}/dist/css/nine-mu.css";
13798
13805
  ${customImport}
13799
13806
  </style>
13800
13807
  <div class="wrapper">
@@ -40013,7 +40020,7 @@ class NineDiff extends HTMLElement {
40013
40020
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
40014
40021
  this.shadowRoot.innerHTML = `
40015
40022
  <style>
40016
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.185"}/dist/css/nine-mu.css";
40023
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.187"}/dist/css/nine-mu.css";
40017
40024
  ${customImport}
40018
40025
  </style>
40019
40026
 
@@ -40123,7 +40130,7 @@ render_fn2 = function() {
40123
40130
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
40124
40131
  this.shadowRoot.innerHTML = `
40125
40132
  <style>
40126
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.185"}/dist/css/nine-mu.css";
40133
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.187"}/dist/css/nine-mu.css";
40127
40134
  ${customImport}
40128
40135
  </style>
40129
40136
 
@@ -40450,7 +40457,7 @@ class ChatMessageBody extends HTMLElement {
40450
40457
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
40451
40458
  this.shadowRoot.innerHTML = `
40452
40459
  <style>
40453
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.185"}/dist/css/nine-mu.css";
40460
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.187"}/dist/css/nine-mu.css";
40454
40461
  ${customImport}
40455
40462
  </style>
40456
40463
 
@@ -40544,7 +40551,7 @@ if (!customElements.get("nine-chat-progress")) {
40544
40551
  customElements.define("nine-chat-progress", ProgressMessage);
40545
40552
  }
40546
40553
  const NineMu = {
40547
- version: "0.1.185",
40554
+ version: "0.1.187",
40548
40555
  init: (config2) => {
40549
40556
  trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
40550
40557
  }