@sideboard-ai/core 0.1.59 → 0.1.61
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/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/mcp/run-stdio.cjs +1 -1
- package/dist/mcp/run-stdio.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -13632,7 +13632,7 @@ async function startMcpServer() {
|
|
|
13632
13632
|
parent = null;
|
|
13633
13633
|
}
|
|
13634
13634
|
if (parentId) {
|
|
13635
|
-
const children = orch.getThreads(
|
|
13635
|
+
const children = orch.getThreads(false).filter((t) => t.parentThreadId === parentId);
|
|
13636
13636
|
if (children.length >= MAX_ORCH_THREADS) {
|
|
13637
13637
|
return {
|
|
13638
13638
|
content: [
|
package/dist/index.js
CHANGED
|
@@ -6286,7 +6286,7 @@ async function startMcpServer() {
|
|
|
6286
6286
|
parent = null;
|
|
6287
6287
|
}
|
|
6288
6288
|
if (parentId) {
|
|
6289
|
-
const children = orch.getThreads(
|
|
6289
|
+
const children = orch.getThreads(false).filter((t) => t.parentThreadId === parentId);
|
|
6290
6290
|
if (children.length >= MAX_ORCH_THREADS) {
|
|
6291
6291
|
return {
|
|
6292
6292
|
content: [
|
package/dist/mcp/run-stdio.cjs
CHANGED
|
@@ -12482,7 +12482,7 @@ async function startMcpServer() {
|
|
|
12482
12482
|
parent = null;
|
|
12483
12483
|
}
|
|
12484
12484
|
if (parentId) {
|
|
12485
|
-
const children = orch.getThreads(
|
|
12485
|
+
const children = orch.getThreads(false).filter((t) => t.parentThreadId === parentId);
|
|
12486
12486
|
if (children.length >= MAX_ORCH_THREADS) {
|
|
12487
12487
|
return {
|
|
12488
12488
|
content: [
|
package/dist/mcp/run-stdio.js
CHANGED
|
@@ -5725,7 +5725,7 @@ async function startMcpServer() {
|
|
|
5725
5725
|
parent = null;
|
|
5726
5726
|
}
|
|
5727
5727
|
if (parentId) {
|
|
5728
|
-
const children = orch.getThreads(
|
|
5728
|
+
const children = orch.getThreads(false).filter((t) => t.parentThreadId === parentId);
|
|
5729
5729
|
if (children.length >= MAX_ORCH_THREADS) {
|
|
5730
5730
|
return {
|
|
5731
5731
|
content: [
|