@pioneer-platform/cosmos-network 8.4.0 → 8.4.1

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,15 @@
1
1
  # @pioneer-platform/cosmos-network
2
2
 
3
+ ## 8.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Automated patch version bump for all packages
8
+ - Updated dependencies
9
+ - @pioneer-platform/cosmos-tx-encoder@0.3.1
10
+ - @pioneer-platform/loggerdog@8.4.1
11
+ - @pioneer-platform/nodes@8.4.1
12
+
3
13
  ## 8.4.0
4
14
 
5
15
  ### Minor Changes
package/lib/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  declare const TAG = " | cosmos-api | ";
2
+ declare const axiosLib: any;
2
3
  declare const Axios: any;
3
4
  declare const https: any;
4
5
  declare const axios: any;
package/lib/index.js CHANGED
@@ -101,7 +101,8 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
101
101
 
102
102
  */
103
103
  var TAG = " | cosmos-api | ";
104
- var Axios = require('axios');
104
+ var axiosLib = require('axios');
105
+ var Axios = axiosLib.default || axiosLib;
105
106
  var https = require('https');
106
107
  var axios = Axios.create({
107
108
  httpsAgent: new https.Agent({
package/package.json CHANGED
@@ -1,10 +1,17 @@
1
1
  {
2
2
  "name": "@pioneer-platform/cosmos-network",
3
- "version": "8.4.0",
3
+ "version": "8.4.1",
4
+ "scripts": {
5
+ "create": "pnpm run build && pnpm run test",
6
+ "build": "tsc -p .",
7
+ "test": "pnpm run build && node __tests__/test-module.js",
8
+ "prepublish": "rm -R lib && pnpm run build",
9
+ "refresh": "rm -rf ./node_modules ./package-lock.json && pnpm install"
10
+ },
4
11
  "dependencies": {
5
- "@pioneer-platform/cosmos-tx-encoder": "^0.3.0",
6
- "@pioneer-platform/loggerdog": "^8.4.0",
7
- "@pioneer-platform/nodes": "^8.4.0",
12
+ "@pioneer-platform/cosmos-tx-encoder": "^0.3.1",
13
+ "@pioneer-platform/loggerdog": "^8.4.1",
14
+ "@pioneer-platform/nodes": "^8.4.1",
8
15
  "axios": "^1.6.0",
9
16
  "dotenv": "^8.2.0",
10
17
  "https": "^1.0.0",
@@ -23,12 +30,5 @@
23
30
  },
24
31
  "author": "Bithighlander <pioneer@gmail.com>",
25
32
  "license": "ISC",
26
- "gitHead": "aeae28273014ab69b42f22abec159c6693a56c40",
27
- "scripts": {
28
- "create": "pnpm run build && pnpm run test",
29
- "build": "tsc -p .",
30
- "test": "pnpm run build && node __tests__/test-module.js",
31
- "prepublish": "rm -R lib && pnpm run build",
32
- "refresh": "rm -rf ./node_modules ./package-lock.json && pnpm install"
33
- }
33
+ "gitHead": "aeae28273014ab69b42f22abec159c6693a56c40"
34
34
  }