@nine-lab/nine-mu 0.1.206 → 0.1.207

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
@@ -17155,6 +17155,20 @@ connect_fn = async function() {
17155
17155
  } catch (e) {
17156
17156
  trace.warn("로깅 채널 초기화 패스 (커스텀 스트림 대응):", e);
17157
17157
  }
17158
+ __privateGet(this, _mcpClient).setNotificationHandler(
17159
+ LoggingMessageNotificationSchema,
17160
+ // 👈 외부 임포트한 정식 Zod 스키마 객체
17161
+ (notification) => {
17162
+ try {
17163
+ trace.log("🔔 [MCP 정식 엔진 수신 성공]:", notification);
17164
+ const logData = JSON.parse(notification.params.message);
17165
+ if (logData.type === "BRAIN_DECISION") {
17166
+ }
17167
+ } catch (e) {
17168
+ trace.warn("알림 내부 데이터 파싱 실패:", e);
17169
+ }
17170
+ }
17171
+ );
17158
17172
  }).catch((err) => {
17159
17173
  trace.error("❌ MCP 연결 실패", err);
17160
17174
  __privateMethod(this, _NineChatManager_instances, updateStatus_fn).call(this, "❌ Connection Failed");
@@ -17379,7 +17393,7 @@ render_fn = function() {
17379
17393
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
17380
17394
  this.shadowRoot.innerHTML = `
17381
17395
  <style>
17382
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.205"}/dist/css/nine-mu.css";
17396
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.206"}/dist/css/nine-mu.css";
17383
17397
  ${customImport}
17384
17398
  </style>
17385
17399
  <div class="wrapper">
@@ -43598,7 +43612,7 @@ class NineDiff extends HTMLElement {
43598
43612
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
43599
43613
  this.shadowRoot.innerHTML = `
43600
43614
  <style>
43601
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.205"}/dist/css/nine-mu.css";
43615
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.206"}/dist/css/nine-mu.css";
43602
43616
  ${customImport}
43603
43617
  </style>
43604
43618
 
@@ -43708,7 +43722,7 @@ render_fn2 = function() {
43708
43722
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
43709
43723
  this.shadowRoot.innerHTML = `
43710
43724
  <style>
43711
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.205"}/dist/css/nine-mu.css";
43725
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.206"}/dist/css/nine-mu.css";
43712
43726
  ${customImport}
43713
43727
  </style>
43714
43728
 
@@ -44035,7 +44049,7 @@ class ChatMessageBody extends HTMLElement {
44035
44049
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
44036
44050
  this.shadowRoot.innerHTML = `
44037
44051
  <style>
44038
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.205"}/dist/css/nine-mu.css";
44052
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.206"}/dist/css/nine-mu.css";
44039
44053
  ${customImport}
44040
44054
  </style>
44041
44055
 
@@ -44129,7 +44143,7 @@ if (!customElements.get("nine-chat-progress")) {
44129
44143
  customElements.define("nine-chat-progress", ProgressMessage);
44130
44144
  }
44131
44145
  const NineMu = {
44132
- version: "0.1.205",
44146
+ version: "0.1.206",
44133
44147
  init: (config2) => {
44134
44148
  trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
44135
44149
  }