@indra.ai/deva.security 0.0.4 → 0.0.6

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 +3 -1
  2. package/package.json +2 -1
package/index.js CHANGED
@@ -26,7 +26,6 @@ const info = {
26
26
  copyright: pkg.copyright,
27
27
  };
28
28
 
29
-
30
29
  const SECURITY = new Deva({
31
30
  info,
32
31
  agent,
@@ -54,5 +53,8 @@ const SECURITY = new Deva({
54
53
  sec_answer(packet) {return;},
55
54
  },
56
55
  methods: {},
56
+ onError(err) {
57
+ console.log('ERR', err);
58
+ }
57
59
  });
58
60
  export default SECURITY
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "id": 6507120243760,
3
3
  "name": "@indra.ai/deva.security",
4
- "version": "0.0.4",
4
+ "version": "0.0.6",
5
5
  "author": "Quinn Michaels",
6
6
  "license": "MIT",
7
7
  "copyright": "2025",
8
8
  "description": "The Security Deva the Security for Deva.space, Deva.cloud, and Deva.world.",
9
9
  "main": "index.js",
10
+ "type": "module",
10
11
  "scripts": {
11
12
  "test": "echo \"Error: no test specified\" && exit 1"
12
13
  },