@indra.ai/deva 1.29.33 β 1.30.2
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/actions.json +2 -0
- package/config/beliefs.json +2 -0
- package/config/features.json +5 -14
- package/config/intents.json +2 -0
- package/config/states.json +2 -0
- package/config/zones.json +2 -0
- package/index.js +125 -268
- package/package.json +1 -1
- package/tests/client.json +11 -62
package/config/actions.json
CHANGED
package/config/beliefs.json
CHANGED
|
@@ -54,6 +54,8 @@
|
|
|
54
54
|
"security": "π¨ Security",
|
|
55
55
|
"medical": "π₯ Medical",
|
|
56
56
|
"communication": "π₯ Communication",
|
|
57
|
+
"automation": "π¦Ύ Automation",
|
|
58
|
+
"simulation": "π Simulation",
|
|
57
59
|
"guard": "π Guard",
|
|
58
60
|
"defense": "πͺοΈοΈ Defense",
|
|
59
61
|
"wall": "π§± Wall",
|
package/config/features.json
CHANGED
|
@@ -14,26 +14,17 @@
|
|
|
14
14
|
"log": "πͺ΅οΈ Log",
|
|
15
15
|
"data": "πΎοΈ Data",
|
|
16
16
|
"report": "ποΈ Report",
|
|
17
|
-
"veda": "ποΈ Veda",
|
|
18
|
-
"indu": "π§οΈ Indu",
|
|
19
|
-
"indra": "β‘οΈ Indra",
|
|
20
|
-
"soma": "π±οΈ Soma",
|
|
21
|
-
"king": "ποΈ King",
|
|
22
|
-
"owner": "π©²οΈ Owner",
|
|
23
|
-
"vector": "π½οΈ Vector",
|
|
24
|
-
"intelligence": "π§ Intelligence",
|
|
25
17
|
"treasury": "π¦ Treasury",
|
|
26
18
|
"justice": "βοΈ Justice",
|
|
27
19
|
"authority": "π Authority",
|
|
28
|
-
"legal": "ποΈ Legal",
|
|
29
20
|
"security": "π¨ Security",
|
|
30
21
|
"medical": "π₯ Medical",
|
|
22
|
+
"legal": "ποΈ Legal",
|
|
23
|
+
"intelligence": "π§ Intelligence",
|
|
24
|
+
"automation": "π¦Ύ Automation",
|
|
25
|
+
"simulation": "π Simulation",
|
|
31
26
|
"communication": "π₯ Communication",
|
|
32
|
-
"
|
|
33
|
-
"defense": "πͺοΈοΈ Defense",
|
|
34
|
-
"shield": "π‘οΈ Shield",
|
|
35
|
-
"wall": "π§± Wall",
|
|
36
|
-
"proxy": "πΎοΈ Proxy",
|
|
27
|
+
"owner": "π©²οΈ Owner",
|
|
37
28
|
"support": "πΌ Support",
|
|
38
29
|
"services": "π οΈ Services",
|
|
39
30
|
"systems": "π₯οΈοΈ Systems",
|
package/config/intents.json
CHANGED
package/config/states.json
CHANGED
|
@@ -96,6 +96,8 @@
|
|
|
96
96
|
"security": "π¨ Security",
|
|
97
97
|
"medical": "π₯ Medical",
|
|
98
98
|
"communication": "π₯ Communication",
|
|
99
|
+
"automation": "π¦Ύ Automation",
|
|
100
|
+
"simulation": "π Simulation",
|
|
99
101
|
"guard": "π Guard",
|
|
100
102
|
"defense": "πͺ Defense",
|
|
101
103
|
"wall": "π§± Wall",
|
package/config/zones.json
CHANGED
package/index.js
CHANGED
|
@@ -23,12 +23,14 @@ class Deva {
|
|
|
23
23
|
this._license = false; // inherited License features.
|
|
24
24
|
this._identity = false; // inherited Identity features.
|
|
25
25
|
this._feecting = false; // inherited Feecting features.
|
|
26
|
-
this._security = false; // inherited Security features.
|
|
27
|
-
this._medical = false; // inherited Medical features.
|
|
28
|
-
this._communication = false; // inherited Communication features.
|
|
29
26
|
this._error = false; // inherited Error features.
|
|
30
27
|
this._log = false; // inherited Log features.
|
|
31
28
|
this._data = false; // inherited Data features.
|
|
29
|
+
this._security = false; // inherited Security features.
|
|
30
|
+
this._medical = false; // inherited Medical features.
|
|
31
|
+
this._communication = false; // inherited Communication features.
|
|
32
|
+
this._automation = false; // inherited Automation features.
|
|
33
|
+
this._simulation = false; // inherited Automation features.
|
|
32
34
|
this._report = false; // inherited Report features.
|
|
33
35
|
this._legal = false; // inherited Legal features.
|
|
34
36
|
this._treasury = false; // inherited Vector features.
|
|
@@ -481,39 +483,6 @@ class Deva {
|
|
|
481
483
|
return this.Feature('feecting', resolve, reject);
|
|
482
484
|
}
|
|
483
485
|
|
|
484
|
-
/**************
|
|
485
|
-
func: Security
|
|
486
|
-
params: resolve, reject
|
|
487
|
-
describe:
|
|
488
|
-
The Security feature sets the correct variables and necessary rules for the
|
|
489
|
-
client presented data.
|
|
490
|
-
***************/
|
|
491
|
-
Security(resolve, reject) {
|
|
492
|
-
return this.Feature('security', resolve, reject);
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
/**************
|
|
496
|
-
func: Medical
|
|
497
|
-
params: resolve, reject
|
|
498
|
-
describe:
|
|
499
|
-
The Medical feature sets the correct variables and necessary rules for the
|
|
500
|
-
client presented data.
|
|
501
|
-
***************/
|
|
502
|
-
Medical(resolve, reject) {
|
|
503
|
-
return this.Feature('medical', resolve, reject);
|
|
504
|
-
}
|
|
505
|
-
|
|
506
|
-
/**************
|
|
507
|
-
func: Communication
|
|
508
|
-
params: resolve, reject
|
|
509
|
-
describe:
|
|
510
|
-
The Communication feature sets the correct variables and necessary rules for the
|
|
511
|
-
client presented data.
|
|
512
|
-
***************/
|
|
513
|
-
Communication(resolve, reject) {
|
|
514
|
-
return this.Feature('communication', resolve, reject);
|
|
515
|
-
}
|
|
516
|
-
|
|
517
486
|
/**************
|
|
518
487
|
func: Error
|
|
519
488
|
params: resolve, reject
|
|
@@ -559,191 +528,126 @@ class Deva {
|
|
|
559
528
|
}
|
|
560
529
|
|
|
561
530
|
/**************
|
|
562
|
-
func:
|
|
563
|
-
params: resolve, reject
|
|
564
|
-
describe:
|
|
565
|
-
The Legal feature sets the correct variables and necessary rules for the
|
|
566
|
-
client presented data.
|
|
567
|
-
***************/
|
|
568
|
-
Legal(resolve, reject) {
|
|
569
|
-
return this.Feature('legal', resolve, reject);
|
|
570
|
-
}
|
|
571
|
-
|
|
572
|
-
/**************
|
|
573
|
-
func: Treasury
|
|
574
|
-
params: resolve, reject
|
|
575
|
-
describe:
|
|
576
|
-
The Treasury feature sets the correct variables and necessary rules for the
|
|
577
|
-
client presented data.
|
|
578
|
-
***************/
|
|
579
|
-
Treasury(resolve, reject) {
|
|
580
|
-
return this.Feature('treasury', resolve, reject);
|
|
581
|
-
}
|
|
582
|
-
|
|
583
|
-
/**************
|
|
584
|
-
func: Authority
|
|
531
|
+
func: Intelligence
|
|
585
532
|
params: resolve, reject
|
|
586
533
|
describe:
|
|
587
|
-
The
|
|
534
|
+
The Intelligence feature sets the correct variables and necessary rules for the
|
|
588
535
|
client presented data.
|
|
589
536
|
***************/
|
|
590
|
-
|
|
591
|
-
return this.Feature('
|
|
537
|
+
Intelligence(resolve, reject) {
|
|
538
|
+
return this.Feature('intelligence', resolve, reject);
|
|
592
539
|
}
|
|
593
540
|
|
|
594
541
|
/**************
|
|
595
|
-
func:
|
|
542
|
+
func: Automation
|
|
596
543
|
params: resolve, reject
|
|
597
544
|
describe:
|
|
598
|
-
The
|
|
545
|
+
The Automation feature sets the correct variables and necessary rules for the
|
|
599
546
|
client presented data.
|
|
600
547
|
***************/
|
|
601
|
-
|
|
602
|
-
return this.Feature('
|
|
548
|
+
Automation(resolve, reject) {
|
|
549
|
+
return this.Feature('automation', resolve, reject);
|
|
603
550
|
}
|
|
604
551
|
|
|
605
552
|
/**************
|
|
606
|
-
func:
|
|
553
|
+
func: Simulation
|
|
607
554
|
params: resolve, reject
|
|
608
555
|
describe:
|
|
609
|
-
The
|
|
556
|
+
The Simulation feature sets the correct variables and necessary rules for the
|
|
610
557
|
client presented data.
|
|
611
558
|
***************/
|
|
612
|
-
|
|
613
|
-
return this.Feature('
|
|
614
|
-
}
|
|
615
|
-
|
|
616
|
-
/**************
|
|
617
|
-
func: Indu
|
|
618
|
-
params: resolve, reject
|
|
619
|
-
describe:
|
|
620
|
-
The Indu feature sets the correct variables and necessary rules for the
|
|
621
|
-
client presented data.
|
|
622
|
-
***************/
|
|
623
|
-
Indu(resolve, reject) {
|
|
624
|
-
return this.Feature('indu', resolve, reject);
|
|
625
|
-
}
|
|
626
|
-
|
|
627
|
-
/**************
|
|
628
|
-
func: Indra
|
|
629
|
-
params: resolve, reject
|
|
630
|
-
describe:
|
|
631
|
-
The Indra feature sets the correct variables and necessary rules for the
|
|
632
|
-
client presented data.
|
|
633
|
-
***************/
|
|
634
|
-
Indra(resolve, reject) {
|
|
635
|
-
return this.Feature('indra', resolve, reject);
|
|
636
|
-
}
|
|
637
|
-
|
|
638
|
-
/**************
|
|
639
|
-
func: Soma
|
|
640
|
-
params: resolve, reject
|
|
641
|
-
describe:
|
|
642
|
-
The Soma feature sets the correct variables and necessary rules for the
|
|
643
|
-
client presented data.
|
|
644
|
-
***************/
|
|
645
|
-
Soma(resolve, reject) {
|
|
646
|
-
return this.Feature('soma', resolve, reject);
|
|
647
|
-
}
|
|
648
|
-
|
|
649
|
-
/**************
|
|
650
|
-
func: King
|
|
651
|
-
params: resolve, reject
|
|
652
|
-
describe:
|
|
653
|
-
The King feature sets the correct variables and necessary rules for the
|
|
654
|
-
client presented data.
|
|
655
|
-
***************/
|
|
656
|
-
King(resolve, reject) {
|
|
657
|
-
return this.Feature('king', resolve, reject);
|
|
559
|
+
Simulation(resolve, reject) {
|
|
560
|
+
return this.Feature('simulation', resolve, reject);
|
|
658
561
|
}
|
|
659
562
|
|
|
660
563
|
/**************
|
|
661
|
-
func:
|
|
564
|
+
func: Communication
|
|
662
565
|
params: resolve, reject
|
|
663
566
|
describe:
|
|
664
|
-
The
|
|
567
|
+
The Communication feature sets the correct variables and necessary rules for the
|
|
665
568
|
client presented data.
|
|
666
569
|
***************/
|
|
667
|
-
|
|
668
|
-
return this.Feature('
|
|
570
|
+
Communication(resolve, reject) {
|
|
571
|
+
return this.Feature('communication', resolve, reject);
|
|
669
572
|
}
|
|
670
573
|
|
|
671
574
|
/**************
|
|
672
|
-
func:
|
|
575
|
+
func: Treasury
|
|
673
576
|
params: resolve, reject
|
|
674
577
|
describe:
|
|
675
|
-
The
|
|
578
|
+
The Treasury feature sets the correct variables and necessary rules for the
|
|
676
579
|
client presented data.
|
|
677
580
|
***************/
|
|
678
|
-
|
|
679
|
-
return this.Feature('
|
|
581
|
+
Treasury(resolve, reject) {
|
|
582
|
+
return this.Feature('treasury', resolve, reject);
|
|
680
583
|
}
|
|
681
584
|
|
|
682
585
|
/**************
|
|
683
|
-
func:
|
|
586
|
+
func: Justice
|
|
684
587
|
params: resolve, reject
|
|
685
588
|
describe:
|
|
686
|
-
The
|
|
589
|
+
The Justice feature sets the correct variables and necessary rules for the
|
|
687
590
|
client presented data.
|
|
688
591
|
***************/
|
|
689
|
-
|
|
690
|
-
return this.Feature('
|
|
592
|
+
Justice(resolve, reject) {
|
|
593
|
+
return this.Feature('justice', resolve, reject);
|
|
691
594
|
}
|
|
692
595
|
|
|
693
596
|
/**************
|
|
694
|
-
func:
|
|
597
|
+
func: Authority
|
|
695
598
|
params: resolve, reject
|
|
696
599
|
describe:
|
|
697
|
-
The
|
|
600
|
+
The Authority feature sets the correct variables and necessary rules for the
|
|
698
601
|
client presented data.
|
|
699
602
|
***************/
|
|
700
|
-
|
|
701
|
-
return this.Feature('
|
|
603
|
+
Authority(resolve, reject) {
|
|
604
|
+
return this.Feature('authority', resolve, reject);
|
|
702
605
|
}
|
|
703
606
|
|
|
704
607
|
/**************
|
|
705
|
-
func:
|
|
608
|
+
func: Security
|
|
706
609
|
params: resolve, reject
|
|
707
610
|
describe:
|
|
708
|
-
The
|
|
611
|
+
The Security feature sets the correct variables and necessary rules for the
|
|
709
612
|
client presented data.
|
|
710
613
|
***************/
|
|
711
|
-
|
|
712
|
-
return this.Feature('
|
|
614
|
+
Security(resolve, reject) {
|
|
615
|
+
return this.Feature('security', resolve, reject);
|
|
713
616
|
}
|
|
714
617
|
|
|
715
618
|
/**************
|
|
716
|
-
func:
|
|
619
|
+
func: Medical
|
|
717
620
|
params: resolve, reject
|
|
718
621
|
describe:
|
|
719
|
-
The
|
|
622
|
+
The Medical feature sets the correct variables and necessary rules for the
|
|
720
623
|
client presented data.
|
|
721
624
|
***************/
|
|
722
|
-
|
|
723
|
-
return this.Feature('
|
|
625
|
+
Medical(resolve, reject) {
|
|
626
|
+
return this.Feature('medical', resolve, reject);
|
|
724
627
|
}
|
|
725
|
-
|
|
628
|
+
|
|
726
629
|
/**************
|
|
727
|
-
func:
|
|
630
|
+
func: Legal
|
|
728
631
|
params: resolve, reject
|
|
729
632
|
describe:
|
|
730
|
-
The
|
|
633
|
+
The Legal feature sets the correct variables and necessary rules for the
|
|
731
634
|
client presented data.
|
|
732
635
|
***************/
|
|
733
|
-
|
|
734
|
-
return this.Feature('
|
|
636
|
+
Legal(resolve, reject) {
|
|
637
|
+
return this.Feature('legal', resolve, reject);
|
|
735
638
|
}
|
|
736
|
-
|
|
639
|
+
|
|
737
640
|
/**************
|
|
738
|
-
func:
|
|
641
|
+
func: Owner
|
|
739
642
|
params: resolve, reject
|
|
740
643
|
describe:
|
|
741
|
-
The
|
|
644
|
+
The Owner feature sets the correct variables and necessary rules for the
|
|
742
645
|
client presented data.
|
|
743
646
|
***************/
|
|
744
|
-
|
|
745
|
-
return this.Feature('
|
|
647
|
+
Owner(resolve, reject) {
|
|
648
|
+
return this.Feature('owner', resolve, reject);
|
|
746
649
|
}
|
|
650
|
+
|
|
747
651
|
|
|
748
652
|
/**************
|
|
749
653
|
func: Support
|
|
@@ -1273,12 +1177,6 @@ class Deva {
|
|
|
1273
1177
|
return this.Identity(resolve, reject);
|
|
1274
1178
|
}).then(() => {
|
|
1275
1179
|
return this.Feecting(resolve, reject);
|
|
1276
|
-
}).then(() => {
|
|
1277
|
-
return this.Security(resolve, reject);
|
|
1278
|
-
}).then(() => {
|
|
1279
|
-
return this.Medical(resolve, reject);
|
|
1280
|
-
}).then(() => {
|
|
1281
|
-
return this.Communication(resolve, reject);
|
|
1282
1180
|
}).then(() => {
|
|
1283
1181
|
return this.Error(resolve, reject);
|
|
1284
1182
|
}).then(() => {
|
|
@@ -1288,29 +1186,27 @@ class Deva {
|
|
|
1288
1186
|
}).then(() => {
|
|
1289
1187
|
return this.Report(resolve, reject);
|
|
1290
1188
|
}).then(() => {
|
|
1291
|
-
return this.
|
|
1189
|
+
return this.Intelligence(resolve, reject);
|
|
1292
1190
|
}).then(() => {
|
|
1293
|
-
return this.
|
|
1191
|
+
return this.Automation(resolve, reject);
|
|
1294
1192
|
}).then(() => {
|
|
1295
|
-
return this.
|
|
1193
|
+
return this.Simulation(resolve, reject);
|
|
1296
1194
|
}).then(() => {
|
|
1297
|
-
return this.
|
|
1298
|
-
}).then(() => {
|
|
1299
|
-
return this.Owner(resolve, reject);
|
|
1300
|
-
}).then(() => {
|
|
1301
|
-
return this.Vector(resolve, reject);
|
|
1195
|
+
return this.Communication(resolve, reject);
|
|
1302
1196
|
}).then(() => {
|
|
1303
|
-
return this.
|
|
1197
|
+
return this.Treasury(resolve, reject);
|
|
1198
|
+
}).then(() => {
|
|
1199
|
+
return this.Justice(resolve, reject);
|
|
1304
1200
|
}).then(() => {
|
|
1305
|
-
return this.
|
|
1201
|
+
return this.Authority(resolve, reject);
|
|
1306
1202
|
}).then(() => {
|
|
1307
|
-
return this.
|
|
1203
|
+
return this.Security(resolve, reject);
|
|
1308
1204
|
}).then(() => {
|
|
1309
|
-
return this.
|
|
1205
|
+
return this.Medical(resolve, reject);
|
|
1310
1206
|
}).then(() => {
|
|
1311
|
-
return this.
|
|
1207
|
+
return this.Legal(resolve, reject);
|
|
1312
1208
|
}).then(() => {
|
|
1313
|
-
return this.
|
|
1209
|
+
return this.Owner(resolve, reject);
|
|
1314
1210
|
}).then(() => {
|
|
1315
1211
|
return this.Support(resolve, reject);
|
|
1316
1212
|
}).then(() => {
|
|
@@ -1903,34 +1799,6 @@ class Deva {
|
|
|
1903
1799
|
return this._getFeature('feecting', this._feecting);
|
|
1904
1800
|
}
|
|
1905
1801
|
|
|
1906
|
-
/**************
|
|
1907
|
-
func: security
|
|
1908
|
-
params: none
|
|
1909
|
-
describe: basic security features available in a Deva.
|
|
1910
|
-
usage: this.security()
|
|
1911
|
-
***************/
|
|
1912
|
-
security() {
|
|
1913
|
-
return this._getFeature('security', this._security);
|
|
1914
|
-
}
|
|
1915
|
-
/**************
|
|
1916
|
-
func: medical
|
|
1917
|
-
params: none
|
|
1918
|
-
describe: basic medical features available in a Deva.
|
|
1919
|
-
usage: this.medical()
|
|
1920
|
-
***************/
|
|
1921
|
-
medical() {
|
|
1922
|
-
return this._getFeature('medical', this._medical);
|
|
1923
|
-
}
|
|
1924
|
-
/**************
|
|
1925
|
-
func: communication
|
|
1926
|
-
params: none
|
|
1927
|
-
describe: basic communication features available in a Deva.
|
|
1928
|
-
usage: this.communication()
|
|
1929
|
-
***************/
|
|
1930
|
-
communication() {
|
|
1931
|
-
return this._getFeature('communication', this._communication);
|
|
1932
|
-
}
|
|
1933
|
-
|
|
1934
1802
|
/**************
|
|
1935
1803
|
func: error
|
|
1936
1804
|
params: none
|
|
@@ -1940,7 +1808,7 @@ class Deva {
|
|
|
1940
1808
|
error() {
|
|
1941
1809
|
return this._getFeature('error', this._error);
|
|
1942
1810
|
}
|
|
1943
|
-
|
|
1811
|
+
|
|
1944
1812
|
/**************
|
|
1945
1813
|
func: log
|
|
1946
1814
|
params: none
|
|
@@ -1950,7 +1818,7 @@ class Deva {
|
|
|
1950
1818
|
log() {
|
|
1951
1819
|
return this._getFeature('log', this._error);
|
|
1952
1820
|
}
|
|
1953
|
-
|
|
1821
|
+
|
|
1954
1822
|
/**************
|
|
1955
1823
|
func: data
|
|
1956
1824
|
params: none
|
|
@@ -1972,125 +1840,114 @@ class Deva {
|
|
|
1972
1840
|
}
|
|
1973
1841
|
|
|
1974
1842
|
/**************
|
|
1975
|
-
func:
|
|
1843
|
+
func: intelligence
|
|
1976
1844
|
params: none
|
|
1977
|
-
describe: basic
|
|
1978
|
-
usage: this.
|
|
1845
|
+
describe: basic intelligence features available in a Deva.
|
|
1846
|
+
usage: this.intelligence()
|
|
1979
1847
|
***************/
|
|
1980
|
-
|
|
1981
|
-
return this._getFeature('
|
|
1848
|
+
intelligence() {
|
|
1849
|
+
return this._getFeature('intelligence', this._intelligence);
|
|
1982
1850
|
}
|
|
1983
1851
|
|
|
1984
1852
|
/**************
|
|
1985
|
-
func:
|
|
1853
|
+
func: automation
|
|
1986
1854
|
params: none
|
|
1987
|
-
describe: basic
|
|
1988
|
-
usage: this.
|
|
1855
|
+
describe: basic automation features available in a Deva.
|
|
1856
|
+
usage: this.automation()
|
|
1989
1857
|
***************/
|
|
1990
|
-
|
|
1991
|
-
return this._getFeature('
|
|
1858
|
+
automation() {
|
|
1859
|
+
return this._getFeature('automation', this._automation);
|
|
1992
1860
|
}
|
|
1993
1861
|
|
|
1994
1862
|
/**************
|
|
1995
|
-
func:
|
|
1863
|
+
func: simulation
|
|
1996
1864
|
params: none
|
|
1997
|
-
describe: basic
|
|
1998
|
-
usage: this.
|
|
1865
|
+
describe: basic simulation features available in a Deva.
|
|
1866
|
+
usage: this.simulation()
|
|
1999
1867
|
***************/
|
|
2000
|
-
|
|
2001
|
-
return this._getFeature('
|
|
1868
|
+
simulation() {
|
|
1869
|
+
return this._getFeature('simulation', this._simulation);
|
|
2002
1870
|
}
|
|
2003
1871
|
|
|
2004
1872
|
/**************
|
|
2005
|
-
func:
|
|
1873
|
+
func: communication
|
|
2006
1874
|
params: none
|
|
2007
|
-
describe: basic
|
|
2008
|
-
usage: this.
|
|
1875
|
+
describe: basic communication features available in a Deva.
|
|
1876
|
+
usage: this.communication()
|
|
2009
1877
|
***************/
|
|
2010
|
-
|
|
2011
|
-
return this._getFeature('
|
|
1878
|
+
communication() {
|
|
1879
|
+
return this._getFeature('communication', this._communication);
|
|
2012
1880
|
}
|
|
2013
|
-
|
|
1881
|
+
|
|
2014
1882
|
/**************
|
|
2015
|
-
func:
|
|
1883
|
+
func: treasury
|
|
2016
1884
|
params: none
|
|
2017
|
-
describe: basic
|
|
2018
|
-
usage: this.
|
|
1885
|
+
describe: basic treasury features available in a Deva.
|
|
1886
|
+
usage: this.treasury()
|
|
2019
1887
|
***************/
|
|
2020
|
-
|
|
2021
|
-
return this._getFeature('
|
|
1888
|
+
treasury() {
|
|
1889
|
+
return this._getFeature('treasury', this._treasury);
|
|
2022
1890
|
}
|
|
2023
1891
|
|
|
2024
1892
|
/**************
|
|
2025
|
-
func:
|
|
1893
|
+
func: justice
|
|
2026
1894
|
params: none
|
|
2027
|
-
describe: basic
|
|
2028
|
-
usage: this.
|
|
1895
|
+
describe: basic justice features available in a Deva.
|
|
1896
|
+
usage: this.systems()
|
|
2029
1897
|
***************/
|
|
2030
|
-
|
|
2031
|
-
return this._getFeature('
|
|
1898
|
+
justice() {
|
|
1899
|
+
return this._getFeature('justice', this._justice);
|
|
2032
1900
|
}
|
|
2033
1901
|
|
|
2034
1902
|
/**************
|
|
2035
|
-
func:
|
|
1903
|
+
func: authority
|
|
2036
1904
|
params: none
|
|
2037
|
-
describe: basic
|
|
2038
|
-
usage: this.
|
|
1905
|
+
describe: basic authority features available in a Deva.
|
|
1906
|
+
usage: this.systems()
|
|
2039
1907
|
***************/
|
|
2040
|
-
|
|
2041
|
-
return this._getFeature('
|
|
1908
|
+
authority() {
|
|
1909
|
+
return this._getFeature('authority', this._authority);
|
|
2042
1910
|
}
|
|
2043
1911
|
|
|
2044
1912
|
/**************
|
|
2045
|
-
func:
|
|
2046
|
-
params: none
|
|
2047
|
-
describe: basic guard features available in a Deva.
|
|
2048
|
-
usage: this.guard()
|
|
2049
|
-
***************/
|
|
2050
|
-
guard() {
|
|
2051
|
-
return this._getFeature('guard', this._guard);
|
|
2052
|
-
}
|
|
2053
|
-
|
|
2054
|
-
/**************
|
|
2055
|
-
func: defense
|
|
1913
|
+
func: security
|
|
2056
1914
|
params: none
|
|
2057
|
-
describe: basic
|
|
2058
|
-
usage: this.
|
|
1915
|
+
describe: basic security features available in a Deva.
|
|
1916
|
+
usage: this.security()
|
|
2059
1917
|
***************/
|
|
2060
|
-
|
|
2061
|
-
return this._getFeature('
|
|
1918
|
+
security() {
|
|
1919
|
+
return this._getFeature('security', this._security);
|
|
2062
1920
|
}
|
|
2063
|
-
|
|
2064
1921
|
/**************
|
|
2065
|
-
func:
|
|
1922
|
+
func: medical
|
|
2066
1923
|
params: none
|
|
2067
|
-
describe: basic
|
|
2068
|
-
usage: this.
|
|
1924
|
+
describe: basic medical features available in a Deva.
|
|
1925
|
+
usage: this.medical()
|
|
2069
1926
|
***************/
|
|
2070
|
-
|
|
2071
|
-
return this._getFeature('
|
|
1927
|
+
medical() {
|
|
1928
|
+
return this._getFeature('medical', this._medical);
|
|
2072
1929
|
}
|
|
2073
|
-
|
|
1930
|
+
|
|
2074
1931
|
/**************
|
|
2075
|
-
func:
|
|
1932
|
+
func: legal
|
|
2076
1933
|
params: none
|
|
2077
|
-
describe: basic
|
|
2078
|
-
usage: this.
|
|
1934
|
+
describe: basic legal features available in a Deva.
|
|
1935
|
+
usage: this.systems()
|
|
2079
1936
|
***************/
|
|
2080
|
-
|
|
2081
|
-
return this._getFeature('
|
|
1937
|
+
legal() {
|
|
1938
|
+
return this._getFeature('legal', this._legal);
|
|
2082
1939
|
}
|
|
2083
|
-
|
|
1940
|
+
|
|
2084
1941
|
/**************
|
|
2085
|
-
func:
|
|
1942
|
+
func: owner
|
|
2086
1943
|
params: none
|
|
2087
|
-
describe: basic
|
|
2088
|
-
usage: this.
|
|
1944
|
+
describe: basic owner features available in a Deva.
|
|
1945
|
+
usage: this.owner()
|
|
2089
1946
|
***************/
|
|
2090
|
-
|
|
2091
|
-
return this._getFeature('
|
|
1947
|
+
owner() {
|
|
1948
|
+
return this._getFeature('owner', this._owner);
|
|
2092
1949
|
}
|
|
2093
|
-
|
|
1950
|
+
|
|
2094
1951
|
/**************
|
|
2095
1952
|
func: support
|
|
2096
1953
|
params: none
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "38159520729793885324",
|
|
3
3
|
"name": "@indra.ai/deva",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.30.2",
|
|
5
5
|
"description": "Deva Core a Vedic-inspired Event Based Context Aware Feature, Zone, Action, and State Machine integrated Artificial Intelligence Framework",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"license": "VLA:38159520729793885324 LICENSE.md",
|
package/tests/client.json
CHANGED
|
@@ -81,44 +81,19 @@
|
|
|
81
81
|
"global": [],
|
|
82
82
|
"devas": {}
|
|
83
83
|
},
|
|
84
|
-
"
|
|
85
|
-
"concerns": [],
|
|
86
|
-
"global": [],
|
|
87
|
-
"devas": {}
|
|
88
|
-
},
|
|
89
|
-
"indu": {
|
|
90
|
-
"concerns": [],
|
|
91
|
-
"global": [],
|
|
92
|
-
"devas": {}
|
|
93
|
-
},
|
|
94
|
-
"indra": {
|
|
95
|
-
"concerns": [],
|
|
96
|
-
"global": [],
|
|
97
|
-
"devas": {}
|
|
98
|
-
},
|
|
99
|
-
"soma": {
|
|
100
|
-
"concerns": [],
|
|
101
|
-
"global": [],
|
|
102
|
-
"devas": {}
|
|
103
|
-
},
|
|
104
|
-
"king": {
|
|
105
|
-
"concerns": [],
|
|
106
|
-
"global": [],
|
|
107
|
-
"devas": {}
|
|
108
|
-
},
|
|
109
|
-
"owner": {
|
|
84
|
+
"intelligence": {
|
|
110
85
|
"concerns": [],
|
|
111
86
|
"global": [],
|
|
112
87
|
"devas": {}
|
|
113
88
|
},
|
|
114
|
-
"
|
|
89
|
+
"automation": {
|
|
115
90
|
"concerns": [],
|
|
116
|
-
"global":
|
|
91
|
+
"global": {},
|
|
117
92
|
"devas": {}
|
|
118
93
|
},
|
|
119
|
-
"
|
|
94
|
+
"communication": {
|
|
120
95
|
"concerns": [],
|
|
121
|
-
"global":
|
|
96
|
+
"global": {},
|
|
122
97
|
"devas": {}
|
|
123
98
|
},
|
|
124
99
|
"treasury": {
|
|
@@ -126,17 +101,12 @@
|
|
|
126
101
|
"global": [],
|
|
127
102
|
"devas": {}
|
|
128
103
|
},
|
|
129
|
-
"authority": {
|
|
130
|
-
"concerns": [],
|
|
131
|
-
"global": [],
|
|
132
|
-
"devas": {}
|
|
133
|
-
},
|
|
134
104
|
"justice": {
|
|
135
105
|
"concerns": [],
|
|
136
106
|
"global": [],
|
|
137
107
|
"devas": {}
|
|
138
108
|
},
|
|
139
|
-
"
|
|
109
|
+
"authority": {
|
|
140
110
|
"concerns": [],
|
|
141
111
|
"global": [],
|
|
142
112
|
"devas": {}
|
|
@@ -155,40 +125,21 @@
|
|
|
155
125
|
"medical": {
|
|
156
126
|
"concerns": [],
|
|
157
127
|
"global": {},
|
|
158
|
-
"devas": {
|
|
159
|
-
"hello": {}
|
|
160
|
-
}
|
|
161
|
-
},
|
|
162
|
-
"communication": {
|
|
163
|
-
"concerns": [],
|
|
164
|
-
"global": {},
|
|
165
|
-
"devas": {
|
|
166
|
-
"hello": {}
|
|
167
|
-
}
|
|
168
|
-
},
|
|
169
|
-
"guard": {
|
|
170
|
-
"concerns": [],
|
|
171
|
-
"global": [],
|
|
172
|
-
"devas": {}
|
|
173
|
-
},
|
|
174
|
-
"defense": {
|
|
175
|
-
"concerns": [],
|
|
176
|
-
"global": [],
|
|
177
128
|
"devas": {}
|
|
178
129
|
},
|
|
179
|
-
"
|
|
130
|
+
"legal": {
|
|
180
131
|
"concerns": [],
|
|
181
132
|
"global": [],
|
|
182
133
|
"devas": {}
|
|
183
134
|
},
|
|
184
|
-
"
|
|
135
|
+
"owner": {
|
|
185
136
|
"concerns": [],
|
|
186
137
|
"global": [],
|
|
187
138
|
"devas": {}
|
|
188
139
|
},
|
|
189
|
-
"
|
|
140
|
+
"simulation": {
|
|
190
141
|
"concerns": [],
|
|
191
|
-
"global":
|
|
142
|
+
"global": {},
|
|
192
143
|
"devas": {}
|
|
193
144
|
},
|
|
194
145
|
"support": {
|
|
@@ -204,9 +155,7 @@
|
|
|
204
155
|
{"space": "https://deva.space"},
|
|
205
156
|
{"cloud": "https://deva.cloud"}
|
|
206
157
|
],
|
|
207
|
-
"devas": {
|
|
208
|
-
"hello": {}
|
|
209
|
-
}
|
|
158
|
+
"devas": {}
|
|
210
159
|
},
|
|
211
160
|
"systems": {
|
|
212
161
|
"concerns": [],
|