@ic-reactor/core 1.6.1 → 1.6.3

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/README.md CHANGED
@@ -19,7 +19,7 @@ yarn add @ic-reactor/core
19
19
  or you can use the UMD version:
20
20
 
21
21
  ```html
22
- <script src="https://github.com/B3Pay/ic-reactor/releases/download/v1.6.0-beta.7/ic-reactor-core.min.js"></script>
22
+ <script src="https://github.com/B3Pay/ic-reactor/releases/download/v1.6.2/ic-reactor-core.min.js"></script>
23
23
  ```
24
24
 
25
25
  ### Using `createReactorCore`
@@ -11,4 +11,4 @@ export interface CandidDefenition {
11
11
  idl: typeof IDL;
12
12
  }) => never[];
13
13
  }
14
- export type ReactorParser = typeof import("@ic-reactor/parser") | typeof import("@ic-reactor/parser/dist/node") | typeof import("@ic-reactor/parser/dist/bundler");
14
+ export type ReactorParser = typeof import("@ic-reactor/parser") | typeof import("@ic-reactor/parser/dist/nodejs") | typeof import("@ic-reactor/parser/dist/bundler");
@@ -201,7 +201,6 @@ class AgentManager {
201
201
  name: "Reactor-Agent",
202
202
  store: "auth",
203
203
  });
204
- console.log(process.env.DFX_NETWORK, window.location);
205
204
  this._agent = new agent_1.HttpAgent(agentOptions);
206
205
  this.initializeAgent();
207
206
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ic-reactor/core",
3
- "version": "1.6.1",
3
+ "version": "1.6.3",
4
4
  "description": "A library for intracting with the Internet Computer canisters",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -41,7 +41,7 @@
41
41
  "zustand": "^4.5"
42
42
  },
43
43
  "devDependencies": {
44
- "@ic-reactor/parser": "^0.1.0"
44
+ "@ic-reactor/parser": "^0.1.1"
45
45
  },
46
46
  "scripts": {
47
47
  "test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
@@ -56,5 +56,5 @@
56
56
  "engines": {
57
57
  "node": ">=10"
58
58
  },
59
- "gitHead": "aed7847793f07e0361747a565a65a17dbc20bc12"
59
+ "gitHead": "1837563a23d243a72a7979e09dd89a128ac23e16"
60
60
  }