@bsv/sdk 1.6.14 → 1.6.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bsv/sdk",
3
- "version": "1.6.14",
3
+ "version": "1.6.15",
4
4
  "type": "module",
5
5
  "description": "BSV Blockchain Software Development Kit",
6
6
  "main": "dist/cjs/mod.js",
@@ -23,6 +23,8 @@ export interface HttpClientRequestOptions<Data = any> {
23
23
  headers?: Record<string, string>
24
24
  /** An object or null to set request's body. */
25
25
  data?: Data
26
+ /** An optional AbortSignal to cancel the request, including by explicit timeout. */
27
+ signal?: AbortSignal
26
28
  }
27
29
 
28
30
  /**