@indra.ai/deva.support 0.0.6 → 0.0.8

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.
@@ -1,4 +1,4 @@
1
- module.exports = {
1
+ export default {
2
2
  /**************
3
3
  method: support
4
4
  params: packet
@@ -47,7 +47,7 @@ module.exports = {
47
47
  describe: Return the current info for the deva.
48
48
  ***************/
49
49
  info(packet) {
50
- return Promise.resolve(this.info);
50
+ return Promise.resolve(this.info());
51
51
  },
52
52
  /**************
53
53
  method: help
package/index.js CHANGED
@@ -53,6 +53,10 @@ const SUPPORT = new Deva({
53
53
  sup_answer(packet) {return;},
54
54
  },
55
55
  methods: {},
56
+ onReady(data, resolve) {
57
+ this.prompt('ready');
58
+ return resolve(data);
59
+ },
56
60
  onError(err) {
57
61
  console.log('ERR', err);
58
62
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": 4077391632050,
3
3
  "name": "@indra.ai/deva.support",
4
- "version": "0.0.6",
4
+ "version": "0.0.8",
5
5
  "author": "Quinn Michaels",
6
6
  "license": "MIT",
7
7
  "copyright": "(c) 2025 Quinn Michaels",
@@ -28,6 +28,6 @@
28
28
  },
29
29
  "homepage": "https://deva.space/devas/support",
30
30
  "devDependencies": {
31
- "@indra.ai/deva": "^1.2.28"
31
+ "@indra.ai/deva": "^1.3.1"
32
32
  }
33
33
  }