@indra.ai/deva 1.4.22 → 1.4.23
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 +1 -0
- package/package.json +3 -2
package/index.js
CHANGED
|
@@ -530,6 +530,7 @@ class Deva {
|
|
|
530
530
|
|
|
531
531
|
if (isAsk) { // isAsk check if the question isAsk and talk
|
|
532
532
|
// if: isAsk wait for the once event which is key'd to the packet ID for specified responses
|
|
533
|
+
this.zone('ask', key);
|
|
533
534
|
this.action('talk', `${key}:ask`);
|
|
534
535
|
this.talk(`${key}:ask`, packet);
|
|
535
536
|
this.once(`${key}:ask:${packet.id}`, answer => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@indra.ai/deva",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.23",
|
|
4
4
|
"description": "The Deva Core",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"copyright": "(c)2025 Quinn Michaels; All rights reserved.",
|
|
@@ -82,7 +82,8 @@
|
|
|
82
82
|
"zone": "deva",
|
|
83
83
|
"zones": {
|
|
84
84
|
"question": "🙋♂️ Question",
|
|
85
|
-
"answer": "👨🏫
|
|
85
|
+
"answer": "👨🏫 Answer",
|
|
86
|
+
"ask": "📣 Ask",
|
|
86
87
|
"load": "🚛 Load",
|
|
87
88
|
"unload": "🛻 Unload",
|
|
88
89
|
"init": "🚀 Init",
|