x402-proxy 0.5.1 → 0.5.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
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.5.2] - 2026-03-19
11
+
12
+ ### Fixed
13
+ - Package exports missing top-level `types` condition - TypeScript with `moduleResolution: "bundler"` could not resolve type declarations
14
+
10
15
  ## [0.5.1] - 2026-03-19
11
16
 
12
17
  ### Fixed
@@ -147,7 +152,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
147
152
  - `appendHistory` / `readHistory` / `calcSpend` - JSONL transaction history
148
153
  - Re-exports from `@x402/fetch`, `@x402/svm`, `@x402/evm`
149
154
 
150
- [Unreleased]: https://github.com/cascade-protocol/x402-proxy/compare/v0.5.1...HEAD
155
+ [Unreleased]: https://github.com/cascade-protocol/x402-proxy/compare/v0.5.2...HEAD
156
+ [0.5.2]: https://github.com/cascade-protocol/x402-proxy/compare/v0.5.1...v0.5.2
151
157
  [0.5.1]: https://github.com/cascade-protocol/x402-proxy/compare/v0.5.0...v0.5.1
152
158
  [0.5.0]: https://github.com/cascade-protocol/x402-proxy/compare/v0.4.2...v0.5.0
153
159
  [0.4.2]: https://github.com/cascade-protocol/x402-proxy/compare/v0.4.1...v0.4.2
package/dist/bin/cli.js CHANGED
@@ -403,7 +403,7 @@ Add to your MCP client config (Claude, Cursor, etc.):
403
403
  const { x402MCPClient } = await import("@x402/mcp");
404
404
  const remoteClient = new Client({
405
405
  name: "x402-proxy",
406
- version: "0.5.1"
406
+ version: "0.5.2"
407
407
  });
408
408
  const x402Mcp = new x402MCPClient(remoteClient, x402PaymentClient, {
409
409
  autoPayment: true,
@@ -458,7 +458,7 @@ Add to your MCP client config (Claude, Cursor, etc.):
458
458
  }
459
459
  const localServer = new Server({
460
460
  name: "x402-proxy",
461
- version: "0.5.1"
461
+ version: "0.5.2"
462
462
  }, { capabilities: {
463
463
  tools: tools.length > 0 ? {} : void 0,
464
464
  resources: remoteResources.length > 0 ? {} : void 0
@@ -635,7 +635,7 @@ const routes = buildRouteMap({
635
635
  });
636
636
  const app = buildApplication(routes, {
637
637
  name: "x402-proxy",
638
- versionInfo: { currentVersion: "0.5.1" },
638
+ versionInfo: { currentVersion: "0.5.2" },
639
639
  scanner: { caseStyle: "allow-kebab-for-camel" }
640
640
  });
641
641
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "x402-proxy",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "description": "curl for x402 paid APIs. Auto-pays any endpoint on Base and Solana.",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -8,10 +8,8 @@
8
8
  "types": "./dist/index.d.ts",
9
9
  "exports": {
10
10
  ".": {
11
- "import": {
12
- "types": "./dist/index.d.ts",
13
- "default": "./dist/index.js"
14
- }
11
+ "types": "./dist/index.d.ts",
12
+ "default": "./dist/index.js"
15
13
  },
16
14
  "./package.json": "./package.json"
17
15
  },