@indra.ai/deva 1.3.9 → 1.3.11
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 +0 -24
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -694,50 +694,26 @@ class Deva {
|
|
|
694
694
|
}).then(() => {
|
|
695
695
|
return this._assignListeners();
|
|
696
696
|
}).then(() => {
|
|
697
|
-
this.feature('init');
|
|
698
|
-
this.zone('init');
|
|
699
|
-
this.action('init');
|
|
700
|
-
this.state('init');
|
|
701
697
|
return this.Client(client, resolve, reject);
|
|
702
698
|
}).then(part => {
|
|
703
|
-
this.state('done', 'client');
|
|
704
|
-
this.action('done', 'client');
|
|
705
699
|
return this.Security(resolve, reject);
|
|
706
700
|
}).then(part => {
|
|
707
|
-
this.state('done', 'security');
|
|
708
|
-
this.action('done', 'security');
|
|
709
701
|
return this.Support(resolve, reject);
|
|
710
702
|
}).then(() => {
|
|
711
|
-
this.state('done', 'support');
|
|
712
|
-
this.action('done', 'support');
|
|
713
703
|
return this.Services(resolve, reject);
|
|
714
704
|
}).then(() => {
|
|
715
|
-
this.state('done', 'services');
|
|
716
|
-
this.action('done', 'services');
|
|
717
705
|
return this.Systems(resolve, reject);
|
|
718
706
|
}).then(() => {
|
|
719
|
-
this.state('done', 'systems');
|
|
720
|
-
this.action('done', 'systems');
|
|
721
707
|
return this.Networks(resolve, reject);
|
|
722
708
|
}).then(() => {
|
|
723
|
-
this.state('done', 'networks');
|
|
724
|
-
this.action('done', 'networks');
|
|
725
709
|
return this.Legal(resolve, reject);
|
|
726
710
|
}).then(() => {
|
|
727
|
-
this.state('done', 'legal');
|
|
728
|
-
this.action('done', 'legal');
|
|
729
711
|
return this.Authority(resolve, reject);
|
|
730
712
|
}).then(() => {
|
|
731
|
-
this.state('done', 'authority');
|
|
732
|
-
this.action('done', 'authority');
|
|
733
713
|
return this.Justice(resolve, reject);
|
|
734
714
|
}).then(() => {
|
|
735
|
-
this.state('done', 'justice');
|
|
736
|
-
this.action('done', 'justice');
|
|
737
715
|
return this.Defense(resolve, reject);
|
|
738
716
|
}).then(() => {
|
|
739
|
-
this.state('done', 'defense');
|
|
740
|
-
this.action('done', 'defense');
|
|
741
717
|
return this.Done(resolve, reject);
|
|
742
718
|
}).then(() => {
|
|
743
719
|
const hasOnInit = this.onInit && typeof this.onInit === 'function';
|