coreum-js 2.5.13 → 2.5.14
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/dist/main/index.d.ts +2 -0
- package/dist/main/index.js +3 -1
- package/dist/module/index.d.ts +2 -0
- package/dist/module/index.js +3 -1
- package/package.json +2 -2
package/dist/main/index.d.ts
CHANGED
package/dist/main/index.js
CHANGED
|
@@ -20,4 +20,6 @@ Object.defineProperty(exports, "Client", { enumerable: true, get: function () {
|
|
|
20
20
|
__exportStar(require("./types"), exports);
|
|
21
21
|
__exportStar(require("./utils"), exports);
|
|
22
22
|
__exportStar(require("./coreum"), exports);
|
|
23
|
-
|
|
23
|
+
__exportStar(require("./cosmos"), exports);
|
|
24
|
+
__exportStar(require("./wasm/v1"), exports);
|
|
25
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQSx3Q0FBd0M7QUFBL0IsK0ZBQUEsTUFBTSxPQUFBO0FBQ2YsMENBQXdCO0FBQ3hCLDBDQUF3QjtBQUN4QiwyQ0FBeUI7QUFDekIsMkNBQXlCO0FBQ3pCLDRDQUEwQiJ9
|
package/dist/module/index.d.ts
CHANGED
package/dist/module/index.js
CHANGED
|
@@ -2,4 +2,6 @@ export { Client } from "./client/index";
|
|
|
2
2
|
export * from "./types";
|
|
3
3
|
export * from "./utils";
|
|
4
4
|
export * from "./coreum";
|
|
5
|
-
|
|
5
|
+
export * from "./cosmos";
|
|
6
|
+
export * from "./wasm/v1";
|
|
7
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLE1BQU0sRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQ3hDLGNBQWMsU0FBUyxDQUFDO0FBQ3hCLGNBQWMsU0FBUyxDQUFDO0FBQ3hCLGNBQWMsVUFBVSxDQUFDO0FBQ3pCLGNBQWMsVUFBVSxDQUFDO0FBQ3pCLGNBQWMsV0FBVyxDQUFDIn0=
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coreum-js",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.14",
|
|
4
4
|
"description": "JS/TS Library to to easily make use of the Coreum Blockchain",
|
|
5
5
|
"main": "dist/main/index.js",
|
|
6
6
|
"module": "dist/module/index.js",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"build:version": "npm run build && standard-version && git add -A",
|
|
11
11
|
"build:main": "npx tsc -p tsconfig.json",
|
|
12
12
|
"build:module": "npx tsc -p tsconfig.module.json",
|
|
13
|
-
"generate:docs": "npx typedoc --plugin typedoc-plugin-missing-exports src/index.ts
|
|
13
|
+
"generate:docs": "npx typedoc --plugin typedoc-plugin-missing-exports src/index.ts"
|
|
14
14
|
},
|
|
15
15
|
"pre-commit": [
|
|
16
16
|
"build:version"
|