@indra.ai/deva 1.5.46 → 1.5.48
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 +12 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -810,6 +810,8 @@ class Deva {
|
|
|
810
810
|
return this.Defense(resolve, reject);
|
|
811
811
|
}).then(() => {
|
|
812
812
|
return this.Wall(resolve, reject);
|
|
813
|
+
}).then(() => {
|
|
814
|
+
return this.Shield(resolve, reject);
|
|
813
815
|
}).then(() => {
|
|
814
816
|
return this.Proxy(resolve, reject);
|
|
815
817
|
}).then(() => {
|
|
@@ -1513,6 +1515,16 @@ class Deva {
|
|
|
1513
1515
|
return this._getFeature('wall', this._wall);
|
|
1514
1516
|
}
|
|
1515
1517
|
|
|
1518
|
+
/**************
|
|
1519
|
+
func: shield
|
|
1520
|
+
params: none
|
|
1521
|
+
describe: basic shield features available in a Deva.
|
|
1522
|
+
usage: this.shield()
|
|
1523
|
+
***************/
|
|
1524
|
+
shield() {
|
|
1525
|
+
return this._getFeature('shield', this._shield);
|
|
1526
|
+
}
|
|
1527
|
+
|
|
1516
1528
|
/**************
|
|
1517
1529
|
func: proxy
|
|
1518
1530
|
params: none
|