@docbrasil/api-systemmanager 1.0.96 → 1.0.98

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 CHANGED
@@ -8,6 +8,7 @@ import Login from './api/login.js';
8
8
  import General from './api/general/index.js';
9
9
  import User from './api/user/index.js';
10
10
  import Admin from './api/admin/index.js';
11
+ import External from './api/external.js';
11
12
 
12
13
  /**
13
14
  * Class API
@@ -79,6 +80,7 @@ class API {
79
80
  self.general = new General({parent: self});
80
81
  self.user = new User({parent: self});
81
82
  self.admin = new Admin({parent: self});
83
+ self.external = new External({parent: self});
82
84
  }
83
85
  }
84
86
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@docbrasil/api-systemmanager",
3
3
  "description": "Module API System Manager",
4
- "version": "1.0.96",
4
+ "version": "1.0.98",
5
5
  "scripts": {
6
6
  "doc": "rm -f doc/api.md && jsdoc2md api/**/** > doc/api.md",
7
7
  "doc:w": "rimraf doc/api.md && jsdoc2md api/**/** > doc/api.md",