@daeda/mcp-pro 0.1.19 → 0.1.20
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.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3539,7 +3539,7 @@ var WebSocketLive = Layer5.effect(
|
|
|
3539
3539
|
})
|
|
3540
3540
|
),
|
|
3541
3541
|
Effect40.timeoutFail({
|
|
3542
|
-
duration: Duration.seconds(
|
|
3542
|
+
duration: Duration.seconds(120),
|
|
3543
3543
|
onTimeout: () => new WebSocketError({ url: WS_URL, cause: new Error("Plan create request timed out") })
|
|
3544
3544
|
})
|
|
3545
3545
|
),
|
|
@@ -13335,7 +13335,7 @@ var buildDispatcher = (handlers) => {
|
|
|
13335
13335
|
Effect96.forEach(
|
|
13336
13336
|
operations,
|
|
13337
13337
|
(op, i) => validateOperationEffectful2(op, i),
|
|
13338
|
-
{ concurrency:
|
|
13338
|
+
{ concurrency: 5 }
|
|
13339
13339
|
),
|
|
13340
13340
|
Effect96.map((results) => results.flat())
|
|
13341
13341
|
);
|
|
@@ -13343,7 +13343,7 @@ var buildDispatcher = (handlers) => {
|
|
|
13343
13343
|
Effect96.forEach(
|
|
13344
13344
|
operations,
|
|
13345
13345
|
(op, i) => preCheckOperation2(op, i),
|
|
13346
|
-
{ concurrency:
|
|
13346
|
+
{ concurrency: 5 }
|
|
13347
13347
|
),
|
|
13348
13348
|
Effect96.map((results) => results.flat())
|
|
13349
13349
|
);
|