fastmcp 3.30.0 → 3.30.1
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/FastMCP.cjs +2 -0
- package/dist/FastMCP.cjs.map +1 -1
- package/dist/FastMCP.js +2 -0
- package/dist/FastMCP.js.map +1 -1
- package/package.json +1 -1
package/dist/FastMCP.cjs
CHANGED
|
@@ -1929,10 +1929,12 @@ var FastMCP = class extends FastMCPEventEmitter {
|
|
|
1929
1929
|
const endpoint = _optionalChain([overrides, 'optionalAccess', _63 => _63.httpStream, 'optionalAccess', _64 => _64.endpoint]) || endpointArg || envEndpoint || "/mcp";
|
|
1930
1930
|
const enableJsonResponse = _optionalChain([overrides, 'optionalAccess', _65 => _65.httpStream, 'optionalAccess', _66 => _66.enableJsonResponse]) || false;
|
|
1931
1931
|
const stateless = _optionalChain([overrides, 'optionalAccess', _67 => _67.httpStream, 'optionalAccess', _68 => _68.stateless]) || statelessArg === "true" || envStateless === "true" || false;
|
|
1932
|
+
const eventStore = _optionalChain([overrides, 'optionalAccess', _69 => _69.httpStream, 'optionalAccess', _70 => _70.eventStore]);
|
|
1932
1933
|
return {
|
|
1933
1934
|
httpStream: {
|
|
1934
1935
|
enableJsonResponse,
|
|
1935
1936
|
endpoint,
|
|
1937
|
+
eventStore,
|
|
1936
1938
|
host,
|
|
1937
1939
|
port,
|
|
1938
1940
|
stateless
|