@indra.ai/deva 1.3.7 → 1.3.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.
package/config.json CHANGED
@@ -45,6 +45,7 @@
45
45
  "support": "🚑 Support",
46
46
  "services": "🚚 Services",
47
47
  "systems": "🚛 Systems",
48
+ "networks": "🛰️ Networks",
48
49
  "legal": "🏛️ Legal",
49
50
  "authority": "🚔 Authority",
50
51
  "justice": "⚖️ Justice",
@@ -176,7 +177,8 @@
176
177
  "security": "🔐 Security",
177
178
  "support": "🩹 Support",
178
179
  "services": "🛠️ Services",
179
- "systems": "📡 Systems",
180
+ "systems": "🖥️ Systems",
181
+ "networks": "📡 Networks",
180
182
  "legal": "🗃️ Legal",
181
183
  "justice": "🗄️ Justice",
182
184
  "authority": "👮 Authority",
@@ -209,6 +211,7 @@
209
211
  "support": "💼 Support",
210
212
  "services": "🛠️ Services",
211
213
  "systems": "🖥️️ Systems",
214
+ "networks": "🛜️️ Networks",
212
215
  "legal": "🗂️️️ Legal",
213
216
  "justice": "🏛️️ Justice",
214
217
  "authority": "🚓️️ Authority",
package/index.js CHANGED
@@ -21,6 +21,7 @@ class Deva {
21
21
  this._support = false; // inherited Support features.
22
22
  this._services = false; // inherited Service features.
23
23
  this._systems = false; // inherited Systems features.
24
+ this._networks = false; // inherited Systems features.
24
25
  this._legal = false; // inherited Legal features.
25
26
  this._justice = false; // inherited Justice features.
26
27
  this._authority = false; // inherited Justice features.
@@ -297,6 +298,17 @@ class Deva {
297
298
  return this.Feature('systems', resolve, reject);
298
299
  }
299
300
 
301
+ /**************
302
+ func: Networks
303
+ params: resolve, reject
304
+ describe:
305
+ The Networks feature sets the correct variables and necessary rules for the
306
+ client presented data.
307
+ ***************/
308
+ Networks(resolve, reject) {
309
+ return this.Feature('networks', resolve, reject);
310
+ }
311
+
300
312
  /**************
301
313
  func: Legal
302
314
  params: client: false
@@ -682,6 +694,8 @@ class Deva {
682
694
  return this.Services(resolve, reject);
683
695
  }).then(() => {
684
696
  return this.Systems(resolve, reject);
697
+ }).then(() => {
698
+ return this.Networks(resolve, reject);
685
699
  }).then(() => {
686
700
  return this.Legal(resolve, reject);
687
701
  }).then(() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indra.ai/deva",
3
- "version": "1.3.7",
3
+ "version": "1.3.8",
4
4
  "description": "The Deva Core",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/tests/agent.json CHANGED
@@ -58,6 +58,12 @@
58
58
  "tag": "#SYSTEMS",
59
59
  "loc": "$SYSTEMS"
60
60
  },
61
+ "networks": {
62
+ "label": "📡NETWORKS",
63
+ "name": "@NETWORKS",
64
+ "tag": "#NETWORKS",
65
+ "loc": "$NETWORKS"
66
+ },
61
67
  "legal": {
62
68
  "label": "🏛️LEGAL",
63
69
  "name": "@LEGAL",
package/tests/client.json CHANGED
@@ -42,44 +42,49 @@
42
42
  "password": "generic password for encryption test"
43
43
  },
44
44
  "concerns": [],
45
- "global": {},
45
+ "global": [],
46
46
  "devas": {}
47
47
  },
48
48
  "support": {
49
49
  "concerns": [],
50
- "global": {},
50
+ "global": [],
51
51
  "devas": {}
52
52
  },
53
53
  "services": {
54
54
  "concerns": [],
55
- "global": {
56
- "indra": "https://indra.ai",
57
- "world": "https://deva.world",
58
- "space": "https://deva.space",
59
- "cloud": "https://deva.cloud"
60
- },
55
+ "global": [
56
+ {"indra": "https://indra.ai"},
57
+ {"world": "https://deva.world"},
58
+ {"space": "https://deva.space"},
59
+ {"cloud": "https://deva.cloud"}
60
+ ],
61
61
  "devas": {
62
62
  "hello": {}
63
63
  }
64
64
  },
65
65
  "systems": {
66
66
  "concerns": [],
67
- "global": {},
67
+ "global": [],
68
+ "devas": {}
69
+ },
70
+ "networks": {
71
+ "concerns": [],
72
+ "global": [],
68
73
  "devas": {}
69
74
  },
70
75
  "legal": {
71
76
  "concerns": [],
72
- "global": {},
77
+ "global": [],
73
78
  "devas": {}
74
79
  },
75
80
  "justice": {
76
81
  "concerns": [],
77
- "global": {},
82
+ "global": [],
78
83
  "devas": {}
79
84
  },
80
85
  "authority": {
81
86
  "concerns": [],
82
- "global": {},
87
+ "global": [],
83
88
  "devas": {}
84
89
  }
85
90
  }