weavedb-node-client 0.19.1 → 0.19.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.
Files changed (2) hide show
  1. package/index.js +9 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -137,6 +137,15 @@ class SDK extends Base {
137
137
  async getNonce(addr) {
138
138
  return this.readQuery("getNonce", addr, true)
139
139
  }
140
+ async getVersion(nocache) {
141
+ return this.readQuery("getVersion", null, nocache)
142
+ }
143
+ async getIds(tx, nocache) {
144
+ return this.readQuery("getIds", tx, nocache)
145
+ }
146
+ async getAddressLink(address, nocache) {
147
+ return this.readQuery("getAddressLink", address, nocache)
148
+ }
140
149
 
141
150
  async admin(op, opt) {
142
151
  return this._write2("admin", op, opt)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "weavedb-node-client",
3
- "version": "0.19.1",
3
+ "version": "0.19.3",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "engines": {