From 769b5fe7ac429ada52b3a6c4535353065859ec6f Mon Sep 17 00:00:00 2001 From: Andrew Kirillov Date: Thu, 12 Feb 2026 09:57:55 -0800 Subject: [PATCH] fix(external-match): correct artifact paths for CommonJS bundlers --- examples/external-match/exact-output/package.json | 2 +- packages/external-match/CHANGELOG.md | 6 ++++++ packages/external-match/package.json | 8 ++++---- packages/external-match/src/types/index.ts | 1 + 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/examples/external-match/exact-output/package.json b/examples/external-match/exact-output/package.json index 9b6c5015..24d6bf02 100644 --- a/examples/external-match/exact-output/package.json +++ b/examples/external-match/exact-output/package.json @@ -13,4 +13,4 @@ "tsx": "^4", "typescript": "^5" } -} +} \ No newline at end of file diff --git a/packages/external-match/CHANGELOG.md b/packages/external-match/CHANGELOG.md index 06ac2f12..ac72ef7e 100644 --- a/packages/external-match/CHANGELOG.md +++ b/packages/external-match/CHANGELOG.md @@ -1,5 +1,11 @@ # @renegade-fi/renegade-sdk +## 1.0.2 + +### Patch Changes + +- Fix build artifact paths for older bundler + ## 1.0.1 ### Patch Changes diff --git a/packages/external-match/package.json b/packages/external-match/package.json index 36e740d5..d60df3e6 100644 --- a/packages/external-match/package.json +++ b/packages/external-match/package.json @@ -1,6 +1,6 @@ { "name": "@renegade-fi/renegade-sdk", - "version": "1.0.1", + "version": "1.0.2", "description": "A TypeScript client for interacting with the Renegade Darkpool API", "repository": { "type": "git", @@ -16,9 +16,9 @@ ], "sideEffects": false, "type": "module", - "main": "./dist/esm/exports/index.js", - "types": "./dist/types/exports/index.d.ts", - "typings": "./dist/types/exports/index.d.ts", + "main": "./dist/index.js", + "types": "./dist/types/index.d.ts", + "typings": "./dist/types/index.d.ts", "exports": { ".": { "types": "./dist/types/index.d.ts", diff --git a/packages/external-match/src/types/index.ts b/packages/external-match/src/types/index.ts index 0d05fafb..b4fc6f99 100644 --- a/packages/external-match/src/types/index.ts +++ b/packages/external-match/src/types/index.ts @@ -147,6 +147,7 @@ export interface SettlementTransaction { to: string; data: string; value: string; + gas?: string; } export interface AtomicMatchApiBundle {