weavedb-node-client 0.13.0 → 0.13.2

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 (2) hide show
  1. package/index.js +15 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -28,6 +28,9 @@ const reads = [
28
28
  "getEvolve",
29
29
  "getVersion",
30
30
  "getRelayerJob",
31
+ "listCollections",
32
+ "getInfo",
33
+ ,
31
34
  ]
32
35
 
33
36
  class SDK extends Base {
@@ -150,6 +153,18 @@ class SDK extends Base {
150
153
  async getIds(tx) {
151
154
  return this.request("getIds", tx)
152
155
  }
156
+
157
+ async getAddressLink(address) {
158
+ return this.request("getAddressLink", address)
159
+ }
160
+
161
+ async getVersion() {
162
+ return this.request("getAddressLink")
163
+ }
164
+
165
+ async getEvolve() {
166
+ return this.request("getEvolve")
167
+ }
153
168
  }
154
169
 
155
170
  module.exports = SDK
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "weavedb-node-client",
3
- "version": "0.13.0",
3
+ "version": "0.13.2",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "engines": {