routex-client 0.4.3 → 0.4.4

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.
Files changed (3) hide show
  1. package/README.md +6 -0
  2. package/index.js +2 -2
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -4,6 +4,12 @@ A client for [YAXI](https://yaxi.tech/)'s Open Banking services.
4
4
 
5
5
  ## Changelog
6
6
 
7
+ ### [0.4.4] - 2025-11-09
8
+
9
+ #### Fixed
10
+
11
+ - Use production environment if no explicit URL is passed to `RoutexClient`
12
+
7
13
  ### [0.4.3] - 2025-11-06
8
14
 
9
15
  #### Fixed
package/index.js CHANGED
@@ -41,7 +41,7 @@ function bytesToUtf8(bytes) {
41
41
  });
42
42
  }
43
43
 
44
- var version = "0.4.3";
44
+ var version = "0.4.4";
45
45
 
46
46
  var AccountField;
47
47
  (function (AccountField) {
@@ -458,7 +458,7 @@ class RoutexClient {
458
458
  var _a;
459
459
  const url = options instanceof URL
460
460
  ? options
461
- : ((_a = options.url) !== null && _a !== void 0 ? _a : new URL("https://yaxi.tech"));
461
+ : ((_a = options.url) !== null && _a !== void 0 ? _a : new URL("https://api.yaxi.tech"));
462
462
  const retryPolicyFactory = options instanceof URL ? undefined : options.retryPolicyFactory;
463
463
  this._url = url;
464
464
  this._settlement = new KeySettlement(new URL("key-settlement", url), _responseError, (e) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "routex-client",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "YAXI routex client",
5
5
  "homepage": "https://yaxi.tech",
6
6
  "author": "YAXI GmbH",