@pioneer-platform/ripple-network 8.4.0 → 8.5.0

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,5 +1,24 @@
1
1
  # @pioneer-platform/ripple-network
2
2
 
3
+ ## 8.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Automated minor version bump for all packages
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @pioneer-platform/loggerdog@8.5.0
13
+
14
+ ## 8.4.1
15
+
16
+ ### Patch Changes
17
+
18
+ - Automated patch version bump for all packages
19
+ - Updated dependencies
20
+ - @pioneer-platform/loggerdog@8.4.1
21
+
3
22
  ## 8.4.0
4
23
 
5
24
  ### Minor Changes
package/lib/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  declare const TAG = " | ripple-network | ";
2
+ declare const axiosLib: any;
2
3
  declare const Axios: any;
3
4
  declare const https: any;
4
5
  declare const log: any;
package/lib/index.js CHANGED
@@ -47,7 +47,8 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
47
47
  };
48
48
  var TAG = " | ripple-network | ";
49
49
  require("dotenv").config({ path: '../../../../.env' });
50
- var Axios = require('axios');
50
+ var axiosLib = require('axios');
51
+ var Axios = axiosLib.default || axiosLib;
51
52
  var https = require('https');
52
53
  var log = require('@pioneer-platform/loggerdog')();
53
54
  // NowNodes configuration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pioneer-platform/ripple-network",
3
- "version": "8.4.0",
3
+ "version": "8.5.0",
4
4
  "main": "./lib/index.js",
5
5
  "types": "./lib/index.d.ts",
6
6
  "description": "Pioneer Platform Ripple Network module with NowNodes integration",
@@ -11,20 +11,20 @@
11
11
  "nownodes",
12
12
  "pioneer"
13
13
  ],
14
+ "scripts": {
15
+ "create": "pnpm run build && pnpm run test",
16
+ "build": "tsc -p .",
17
+ "test": "pnpm run build && node __tests__/test-module.js",
18
+ "prepublish": "rm -R lib && pnpm run build",
19
+ "refresh": "rm -rf ./node_modules ./package-lock.json && pnpm install"
20
+ },
14
21
  "dependencies": {
15
- "@pioneer-platform/loggerdog": "^8.4.0",
22
+ "@pioneer-platform/loggerdog": "^8.5.0",
16
23
  "axios": "^1.6.0",
17
24
  "dotenv": "^16.0.0",
18
25
  "prettyjson": "^1.2.1",
19
26
  "ts-node": "^10.9.0",
20
27
  "typescript": "^5.0.4"
21
28
  },
22
- "gitHead": "aeae28273014ab69b42f22abec159c6693a56c40",
23
- "scripts": {
24
- "create": "pnpm run build && pnpm run test",
25
- "build": "tsc -p .",
26
- "test": "pnpm run build && node __tests__/test-module.js",
27
- "prepublish": "rm -R lib && pnpm run build",
28
- "refresh": "rm -rf ./node_modules ./package-lock.json && pnpm install"
29
- }
30
- }
29
+ "gitHead": "aeae28273014ab69b42f22abec159c6693a56c40"
30
+ }