@nine-lab/nine-mu 0.1.191 → 0.1.193

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
@@ -4468,7 +4468,7 @@ const LoggingMessageNotificationParamsSchema = NotificationsParamsSchema.extend(
4468
4468
  */
4469
4469
  data: unknown()
4470
4470
  });
4471
- const LoggingMessageNotificationSchema = NotificationSchema.extend({
4471
+ const LoggingMessageNotificationSchema$1 = NotificationSchema.extend({
4472
4472
  method: literal$1("notifications/message"),
4473
4473
  params: LoggingMessageNotificationParamsSchema
4474
4474
  });
@@ -4905,7 +4905,7 @@ union([
4905
4905
  union([
4906
4906
  CancelledNotificationSchema,
4907
4907
  ProgressNotificationSchema,
4908
- LoggingMessageNotificationSchema,
4908
+ LoggingMessageNotificationSchema$1,
4909
4909
  ResourceUpdatedNotificationSchema,
4910
4910
  ResourceListChangedNotificationSchema,
4911
4911
  ToolListChangedNotificationSchema,
@@ -13571,14 +13571,15 @@ connect_fn = async function() {
13571
13571
  __privateGet(this, _mcpClient).connect(transport).then(() => {
13572
13572
  __privateMethod(this, _NineChatManager_instances, updateStatus_fn).call(this, "✅ MCP Connected");
13573
13573
  __privateGet(this, _mcpClient).setNotificationHandler(
13574
- { method: "notifications/logging/message" },
13574
+ LoggingMessageNotificationSchema,
13575
+ // 👈 검증기 통과 패스포트
13575
13576
  (notification) => {
13576
13577
  try {
13577
13578
  const logData = JSON.parse(notification.params.message);
13578
13579
  if (logData.type === "BRAIN_DECISION") {
13579
13580
  }
13580
13581
  } catch (e) {
13581
- console.warn("알림 데이터 파싱 실패:", e);
13582
+ console.warn("알림 파싱 실패:", e);
13582
13583
  }
13583
13584
  }
13584
13585
  );
@@ -13806,7 +13807,7 @@ render_fn = function() {
13806
13807
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
13807
13808
  this.shadowRoot.innerHTML = `
13808
13809
  <style>
13809
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.190"}/dist/css/nine-mu.css";
13810
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.192"}/dist/css/nine-mu.css";
13810
13811
  ${customImport}
13811
13812
  </style>
13812
13813
  <div class="wrapper">
@@ -40025,7 +40026,7 @@ class NineDiff extends HTMLElement {
40025
40026
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
40026
40027
  this.shadowRoot.innerHTML = `
40027
40028
  <style>
40028
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.190"}/dist/css/nine-mu.css";
40029
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.192"}/dist/css/nine-mu.css";
40029
40030
  ${customImport}
40030
40031
  </style>
40031
40032
 
@@ -40135,7 +40136,7 @@ render_fn2 = function() {
40135
40136
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
40136
40137
  this.shadowRoot.innerHTML = `
40137
40138
  <style>
40138
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.190"}/dist/css/nine-mu.css";
40139
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.192"}/dist/css/nine-mu.css";
40139
40140
  ${customImport}
40140
40141
  </style>
40141
40142
 
@@ -40462,7 +40463,7 @@ class ChatMessageBody extends HTMLElement {
40462
40463
  const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
40463
40464
  this.shadowRoot.innerHTML = `
40464
40465
  <style>
40465
- @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.190"}/dist/css/nine-mu.css";
40466
+ @import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.192"}/dist/css/nine-mu.css";
40466
40467
  ${customImport}
40467
40468
  </style>
40468
40469
 
@@ -40556,7 +40557,7 @@ if (!customElements.get("nine-chat-progress")) {
40556
40557
  customElements.define("nine-chat-progress", ProgressMessage);
40557
40558
  }
40558
40559
  const NineMu = {
40559
- version: "0.1.190",
40560
+ version: "0.1.192",
40560
40561
  init: (config2) => {
40561
40562
  trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
40562
40563
  }