@indra.ai/deva 1.2.25 → 1.2.27
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/LICENSE.md +4 -4
- package/config.json +21 -3
- package/index.js +2 -2
- package/package.json +1 -1
package/LICENSE.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Deva Restricted License Agreement
|
|
2
2
|
|
|
3
|
-
Version 1.
|
|
4
|
-
Effective Date: Tuesday- January
|
|
3
|
+
Version 1.1
|
|
4
|
+
Effective Date: Tuesday- January 28, 2025
|
|
5
5
|
|
|
6
6
|
This license agreement (“Agreement”) governs the use of the Deva (“Software”). By accessing or using the Software, you agree to the terms and conditions set forth below. If you do not agree, you are prohibited from using the Software.
|
|
7
7
|
|
|
@@ -17,7 +17,7 @@ The Owner grants you a non-exclusive, non-transferable, revocable license to use
|
|
|
17
17
|
|
|
18
18
|
You are expressly prohibited from:
|
|
19
19
|
1. Modifying, distributing, sub-licensing, or creating derivative works based on the Software without prior written consent.
|
|
20
|
-
2. Using the Software for commercial purposes, unless expressly authorized by the Owner.
|
|
20
|
+
2. Using the Software for official or commercial purposes, unless expressly authorized by the Owner.
|
|
21
21
|
3. Reverse engineering, decompiling, or disassembling the Software.
|
|
22
22
|
4. Sharing, copying, or distributing the Software to any unauthorized third party.
|
|
23
23
|
|
|
@@ -35,7 +35,7 @@ To the maximum extent permitted by law, the Owner shall not be liable for any da
|
|
|
35
35
|
|
|
36
36
|
7. Governing Law
|
|
37
37
|
|
|
38
|
-
This Agreement shall be governed by and construed in accordance with the laws of
|
|
38
|
+
This Agreement shall be governed by and construed in accordance with the laws of United States of America and it's Authorized Official Governing Authority.
|
|
39
39
|
|
|
40
40
|
8. Entire Agreement
|
|
41
41
|
|
package/config.json
CHANGED
|
@@ -44,6 +44,8 @@
|
|
|
44
44
|
"security": "🔐 Security",
|
|
45
45
|
"support": "💼 Support",
|
|
46
46
|
"services": "🛠️ Services",
|
|
47
|
+
"legal": "👨⚖️️ Legal",
|
|
48
|
+
"authority": "👮♂️ Authority",
|
|
47
49
|
"help": "💚 Help",
|
|
48
50
|
"error": "❌ Error!"
|
|
49
51
|
},
|
|
@@ -99,7 +101,7 @@
|
|
|
99
101
|
"pull": "👉 Pull",
|
|
100
102
|
"search": "🔎 Search",
|
|
101
103
|
"memory": "💭 Memory",
|
|
102
|
-
"
|
|
104
|
+
"signature": "⛑️ Response",
|
|
103
105
|
"invalid": "👎 INVALID!",
|
|
104
106
|
"valid": "👍 VALID!",
|
|
105
107
|
"abort": "💔 ABORT!",
|
|
@@ -107,7 +109,15 @@
|
|
|
107
109
|
"help": "💙 Help",
|
|
108
110
|
"authorized": "🔐 authorized",
|
|
109
111
|
"unauthorized": "🏴☠️ unauthorized",
|
|
110
|
-
"Done": "☑️ Done"
|
|
112
|
+
"Done": "☑️ Done",
|
|
113
|
+
"glitch": "😡 Glitch",
|
|
114
|
+
"intruder": "🦹♂️ Intruder",
|
|
115
|
+
"snooper": "👀 Snooper",
|
|
116
|
+
"scam": "🙅♂️ Scam",
|
|
117
|
+
"fraud": "‼️ Fraud",
|
|
118
|
+
"crime": "🚔 Crime",
|
|
119
|
+
"official": "🫡 Official",
|
|
120
|
+
"unofficial": "🤥 Unofficial"
|
|
111
121
|
},
|
|
112
122
|
"action": false,
|
|
113
123
|
"actions": {
|
|
@@ -176,7 +186,15 @@
|
|
|
176
186
|
"features": "🎥 Getting features",
|
|
177
187
|
"contexts": "🌈 Getting contexts",
|
|
178
188
|
"help": "💜 Help",
|
|
179
|
-
"error": "🔴 ERROR!"
|
|
189
|
+
"error": "🔴 ERROR!",
|
|
190
|
+
"lawful": "🚓 Lawful",
|
|
191
|
+
"unlawful": "👿 Unlawful",
|
|
192
|
+
"audio": "👂 Audio",
|
|
193
|
+
"text": "📕 Text",
|
|
194
|
+
"image": "🌄 Image",
|
|
195
|
+
"image": "📽️ Video",
|
|
196
|
+
"signature": "✍️ Signature",
|
|
197
|
+
"orders": "🪖 Orders"
|
|
180
198
|
},
|
|
181
199
|
"feature": false,
|
|
182
200
|
"features": {
|
package/index.js
CHANGED
|
@@ -621,8 +621,8 @@ class Deva {
|
|
|
621
621
|
The main init interface where the chain begins. Where the states fire for
|
|
622
622
|
each process of setting:
|
|
623
623
|
1. Set the Max listeners to control event memory buffer.
|
|
624
|
-
2. Assign the
|
|
625
|
-
3. Assign binding functions and methods to 'this'
|
|
624
|
+
2. Assign the Inherited Properties
|
|
625
|
+
3. Assign binding functions and methods to 'this' scope.
|
|
626
626
|
4. Assign any listeners for additional functionality.
|
|
627
627
|
5. run the onInit custom function if preset or the start function.
|
|
628
628
|
6. The start function will create a chain reaction of states that load.
|