@nine-lab/nine-mu 0.1.190 β†’ 0.1.192

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,21 @@ 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
+ {
13575
+ method: "notifications/logging/message"
13576
+ // πŸ‘ˆ 이 λ¦¬ν„°λŸ΄ 값이 정상 μΈμ‹λ˜μ–΄μ•Ό ν•©λ‹ˆλ‹€.
13577
+ },
13578
+ (notification) => {
13579
+ try {
13580
+ const logData = JSON.parse(notification.params.message);
13581
+ if (logData.type === "BRAIN_DECISION") {
13582
+ }
13583
+ } catch (e) {
13584
+ console.warn("μ•Œλ¦Ό 데이터 νŒŒμ‹± μ‹€νŒ¨:", e);
13577
13585
  }
13578
- } catch (e) {
13579
- console.warn("μ•Œλ¦Ό νŒŒμ‹± μ‹€νŒ¨:", e);
13580
13586
  }
13581
- });
13587
+ );
13582
13588
  }).catch((err) => {
13583
13589
  trace.error("❌ MCP μ—°κ²° μ‹€νŒ¨", err);
13584
13590
  __privateMethod(this, _NineChatManager_instances, updateStatus_fn).call(this, "❌ Connection Failed");
@@ -13803,7 +13809,7 @@ render_fn = function() {
13803
13809
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
13804
13810
  this.shadowRoot.innerHTML = `
13805
13811
  <style>
13806
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.189"}/dist/css/nine-mu.css";
13812
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.191"}/dist/css/nine-mu.css";
13807
13813
  ${customImport}
13808
13814
  </style>
13809
13815
  <div class="wrapper">
@@ -40022,7 +40028,7 @@ class NineDiff extends HTMLElement {
40022
40028
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
40023
40029
  this.shadowRoot.innerHTML = `
40024
40030
  <style>
40025
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.189"}/dist/css/nine-mu.css";
40031
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.191"}/dist/css/nine-mu.css";
40026
40032
  ${customImport}
40027
40033
  </style>
40028
40034
 
@@ -40132,7 +40138,7 @@ render_fn2 = function() {
40132
40138
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
40133
40139
  this.shadowRoot.innerHTML = `
40134
40140
  <style>
40135
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.189"}/dist/css/nine-mu.css";
40141
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.191"}/dist/css/nine-mu.css";
40136
40142
  ${customImport}
40137
40143
  </style>
40138
40144
 
@@ -40459,7 +40465,7 @@ class ChatMessageBody extends HTMLElement {
40459
40465
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
40460
40466
  this.shadowRoot.innerHTML = `
40461
40467
  <style>
40462
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.189"}/dist/css/nine-mu.css";
40468
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.191"}/dist/css/nine-mu.css";
40463
40469
  ${customImport}
40464
40470
  </style>
40465
40471
 
@@ -40553,7 +40559,7 @@ if (!customElements.get("nine-chat-progress")) {
40553
40559
  customElements.define("nine-chat-progress", ProgressMessage);
40554
40560
  }
40555
40561
  const NineMu = {
40556
- version: "0.1.189",
40562
+ version: "0.1.191",
40557
40563
  init: (config2) => {
40558
40564
  trace$1.log("πŸ› οΈ Nine-Mu Engine initialized", config2);
40559
40565
  }