mcp-from-openapi 2.1.0 → 2.1.2

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/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ ## [2.1.2] - 2025-12-27
2
+
3
+ ### Changed
4
+
5
+ - Added `publish-alpha` Nx target to enable alpha publishing flow using common script.
6
+
7
+ ## [2.1.1] - 2025-12-24
8
+
9
+ ### Fixed
10
+
11
+ - Revised build setup to emit CJS and ESM bundles with corrected export map and sideEffects flag to improve tree shaking.
12
+ - Synced package entry points and type outputs with the new build artifacts while preserving the public API surface.
13
+
1
14
  ## [2.1.0] - 2025-12-19
2
15
 
3
16
  ### Added
package/README.md CHANGED
@@ -589,7 +589,7 @@ class ToolCache {
589
589
  private cache = new Map<string, McpOpenAPITool[]>();
590
590
 
591
591
  async getTools(apiUrl: string): Promise<McpOpenAPITool[]> {
592
- if (this.cache.has(apiUrl)) {
592
+ if (this.cache has(apiUrl)) {
593
593
  return this.cache.get(apiUrl)!;
594
594
  }
595
595