@indra.ai/deva 1.1.11 → 1.1.12
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/index.js +30 -30
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -10,36 +10,36 @@ class Deva {
|
|
|
10
10
|
this._id = randomUUID(); // the unique id assigned to the agent at load
|
|
11
11
|
this._state = 'OFFLINE'; // current state of agent.
|
|
12
12
|
this._states = { // The available states to work with.
|
|
13
|
-
offline: 'OFFLINE',
|
|
14
|
-
online: 'ONLINE',
|
|
15
|
-
init: 'INIT',
|
|
16
|
-
start: 'START',
|
|
17
|
-
enter: 'ENTER',
|
|
18
|
-
stop: 'STOP',
|
|
19
|
-
exit: 'EXIT',
|
|
20
|
-
done: 'DONE',
|
|
21
|
-
devas_start: 'DEVAS
|
|
22
|
-
devas_ready: 'DEVAS READY',
|
|
23
|
-
devas_stop: 'DEVAS
|
|
24
|
-
devas_stopped: 'DEVAS STOPPED',
|
|
25
|
-
deva_load: 'DEVA LOAD',
|
|
26
|
-
deva_loaded: 'DEVA LOADED',
|
|
27
|
-
deva_unloaded: 'DEVA UNLOADED',
|
|
28
|
-
wait: 'WAITING',
|
|
29
|
-
data: 'DATA',
|
|
30
|
-
ask: 'ASK',
|
|
31
|
-
question: 'QUESTION',
|
|
32
|
-
answer: 'ANSWER',
|
|
33
|
-
talk: 'TALK',
|
|
34
|
-
listen: 'LISTEN',
|
|
35
|
-
error: 'ERROR',
|
|
36
|
-
story: 'STORY',
|
|
37
|
-
development: 'DEVELOPMENT',
|
|
38
|
-
security: 'SECURITY',
|
|
39
|
-
support: 'SUPPORT',
|
|
40
|
-
services: 'SERVICES',
|
|
41
|
-
systems: 'SYSTEMS',
|
|
42
|
-
solutions: 'SOLUTIONS',
|
|
13
|
+
offline: '👻 OFFLINE',
|
|
14
|
+
online: '📡 ONLINE',
|
|
15
|
+
init: '🚀 INIT',
|
|
16
|
+
start: '🎬 START',
|
|
17
|
+
enter: '🎪 ENTER',
|
|
18
|
+
stop: '🛑 STOP',
|
|
19
|
+
exit: '🚪 EXIT',
|
|
20
|
+
done: '🤝 DONE',
|
|
21
|
+
devas_start: '✨ DEVAS START',
|
|
22
|
+
devas_ready: '📸 DEVAS READY',
|
|
23
|
+
devas_stop: '🙈 DEVAS STOP',
|
|
24
|
+
devas_stopped: '🛑 DEVAS STOPPED',
|
|
25
|
+
deva_load: '✅ DEVA LOAD',
|
|
26
|
+
deva_loaded: '✅ DEVA LOADED',
|
|
27
|
+
deva_unloaded: '✅ DEVA UNLOADED',
|
|
28
|
+
wait: '😵💫 WAITING',
|
|
29
|
+
data: '📀 DATA',
|
|
30
|
+
ask: '🙋♀️ ASK',
|
|
31
|
+
question: '🙋♂️ QUESTION',
|
|
32
|
+
answer: '🔮 ANSWER',
|
|
33
|
+
talk: '🎙️ TALK',
|
|
34
|
+
listen: '🎧 LISTEN',
|
|
35
|
+
error: '❌ ERROR',
|
|
36
|
+
story: '📓 STORY',
|
|
37
|
+
development: '👨💻 DEVELOPMENT',
|
|
38
|
+
security: '🚨 SECURITY',
|
|
39
|
+
support: '🎗️ SUPPORT',
|
|
40
|
+
services: '🎖️ SERVICES',
|
|
41
|
+
systems: '👽 SYSTEMS',
|
|
42
|
+
solutions: '🔬 SOLUTIONS',
|
|
43
43
|
};
|
|
44
44
|
this._active = false; // the active/birth date.
|
|
45
45
|
this.security = false; // inherited Security features.
|