@nine-lab/nine-mu 0.1.188 → 0.1.189
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 +12 -10
- package/dist/nine-mu.js.map +1 -1
- package/dist/nine-mu.umd.js +1 -1
- package/dist/nine-mu.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/NineChatManager.js +12 -7
package/dist/nine-mu.js
CHANGED
|
@@ -13570,11 +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).
|
|
13574
|
-
|
|
13575
|
-
|
|
13576
|
-
|
|
13577
|
-
|
|
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") {
|
|
13577
|
+
}
|
|
13578
|
+
} catch (e) {
|
|
13579
|
+
console.warn("알림 파싱 실패:", e);
|
|
13578
13580
|
}
|
|
13579
13581
|
});
|
|
13580
13582
|
}).catch((err) => {
|
|
@@ -13801,7 +13803,7 @@ render_fn = function() {
|
|
|
13801
13803
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
13802
13804
|
this.shadowRoot.innerHTML = `
|
|
13803
13805
|
<style>
|
|
13804
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
13806
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.188"}/dist/css/nine-mu.css";
|
|
13805
13807
|
${customImport}
|
|
13806
13808
|
</style>
|
|
13807
13809
|
<div class="wrapper">
|
|
@@ -40020,7 +40022,7 @@ class NineDiff extends HTMLElement {
|
|
|
40020
40022
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40021
40023
|
this.shadowRoot.innerHTML = `
|
|
40022
40024
|
<style>
|
|
40023
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40025
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.188"}/dist/css/nine-mu.css";
|
|
40024
40026
|
${customImport}
|
|
40025
40027
|
</style>
|
|
40026
40028
|
|
|
@@ -40130,7 +40132,7 @@ render_fn2 = function() {
|
|
|
40130
40132
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40131
40133
|
this.shadowRoot.innerHTML = `
|
|
40132
40134
|
<style>
|
|
40133
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40135
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.188"}/dist/css/nine-mu.css";
|
|
40134
40136
|
${customImport}
|
|
40135
40137
|
</style>
|
|
40136
40138
|
|
|
@@ -40457,7 +40459,7 @@ class ChatMessageBody extends HTMLElement {
|
|
|
40457
40459
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
40458
40460
|
this.shadowRoot.innerHTML = `
|
|
40459
40461
|
<style>
|
|
40460
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
40462
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.188"}/dist/css/nine-mu.css";
|
|
40461
40463
|
${customImport}
|
|
40462
40464
|
</style>
|
|
40463
40465
|
|
|
@@ -40551,7 +40553,7 @@ if (!customElements.get("nine-chat-progress")) {
|
|
|
40551
40553
|
customElements.define("nine-chat-progress", ProgressMessage);
|
|
40552
40554
|
}
|
|
40553
40555
|
const NineMu = {
|
|
40554
|
-
version: "0.1.
|
|
40556
|
+
version: "0.1.188",
|
|
40555
40557
|
init: (config2) => {
|
|
40556
40558
|
trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
|
|
40557
40559
|
}
|