@nine-lab/nine-mu 0.1.234 → 0.1.235
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
|
@@ -17186,7 +17186,13 @@ updateStatus_fn = function(msg) {
|
|
|
17186
17186
|
trace.log(`[Status]: ${msg}`);
|
|
17187
17187
|
};
|
|
17188
17188
|
callTool_fn = async function(toolName, args = {}) {
|
|
17189
|
-
return __privateGet(this, _mcpClient).callTool(
|
|
17189
|
+
return __privateGet(this, _mcpClient).callTool(
|
|
17190
|
+
{ name: toolName, arguments: args },
|
|
17191
|
+
void 0,
|
|
17192
|
+
// 필요 시 extra 변수 자리 (기본값 undefined)
|
|
17193
|
+
{ timeout: 3e5 }
|
|
17194
|
+
// 💡 개별 요청 타임아웃을 5분으로 확장
|
|
17195
|
+
);
|
|
17190
17196
|
};
|
|
17191
17197
|
class NineMuService {
|
|
17192
17198
|
constructor(connectorUrl) {
|
|
@@ -17420,7 +17426,7 @@ render_fn = function() {
|
|
|
17420
17426
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
17421
17427
|
this.shadowRoot.innerHTML = `
|
|
17422
17428
|
<style>
|
|
17423
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
17429
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.234"}/dist/css/nine-mu.css";
|
|
17424
17430
|
${customImport}
|
|
17425
17431
|
</style>
|
|
17426
17432
|
<div class="wrapper">
|
|
@@ -43637,7 +43643,7 @@ class NineDiff extends HTMLElement {
|
|
|
43637
43643
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
43638
43644
|
this.shadowRoot.innerHTML = `
|
|
43639
43645
|
<style>
|
|
43640
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
43646
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.234"}/dist/css/nine-mu.css";
|
|
43641
43647
|
${customImport}
|
|
43642
43648
|
</style>
|
|
43643
43649
|
|
|
@@ -43747,7 +43753,7 @@ render_fn2 = function() {
|
|
|
43747
43753
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
43748
43754
|
this.shadowRoot.innerHTML = `
|
|
43749
43755
|
<style>
|
|
43750
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
43756
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.234"}/dist/css/nine-mu.css";
|
|
43751
43757
|
${customImport}
|
|
43752
43758
|
</style>
|
|
43753
43759
|
|
|
@@ -44073,7 +44079,7 @@ class ChatMessageBody extends HTMLElement {
|
|
|
44073
44079
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
44074
44080
|
this.shadowRoot.innerHTML = `
|
|
44075
44081
|
<style>
|
|
44076
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
44082
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.234"}/dist/css/nine-mu.css";
|
|
44077
44083
|
${customImport}
|
|
44078
44084
|
</style>
|
|
44079
44085
|
|
|
@@ -44167,7 +44173,7 @@ if (!customElements.get("nine-chat-progress")) {
|
|
|
44167
44173
|
customElements.define("nine-chat-progress", ProgressMessage);
|
|
44168
44174
|
}
|
|
44169
44175
|
const NineMu = {
|
|
44170
|
-
version: "0.1.
|
|
44176
|
+
version: "0.1.234",
|
|
44171
44177
|
init: (config2) => {
|
|
44172
44178
|
trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
|
|
44173
44179
|
}
|