theprogrammablemind 8.0.0-beta.3 → 8.0.0-beta.5
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/package.json +1 -2
- package/src/config.js +4 -0
package/package.json
CHANGED
@@ -61,10 +61,9 @@
|
|
61
61
|
"sort-json": "^2.0.0",
|
62
62
|
"readline": "^1.3.0",
|
63
63
|
"scriptjs": "^2.5.9",
|
64
|
-
"underscore": "^1.13.1",
|
65
64
|
"json-stable-stringify": "^1.0.1",
|
66
65
|
"node-fetch": "^2.6.1"
|
67
66
|
},
|
68
|
-
"version": "8.0.0-beta.
|
67
|
+
"version": "8.0.0-beta.5",
|
69
68
|
"license": "UNLICENSED"
|
70
69
|
}
|
package/src/config.js
CHANGED
@@ -1620,6 +1620,10 @@ class Config {
|
|
1620
1620
|
return client.process(this, query, options)
|
1621
1621
|
}
|
1622
1622
|
|
1623
|
+
query (query, options) {
|
1624
|
+
return this.process(query, options)
|
1625
|
+
}
|
1626
|
+
|
1623
1627
|
processQuery (query, options) {
|
1624
1628
|
return this.process(query, options)
|
1625
1629
|
}
|