@thzero/library_server 0.17.5 → 0.17.7

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/boot/index.js CHANGED
@@ -207,7 +207,7 @@ class BootMain {
207
207
  async _initAppPost(app, args) {
208
208
  }
209
209
 
210
- async _initIdGenerator() {
210
+ _initIdGenerator() {
211
211
  return null;
212
212
  }
213
213
 
package/openSource.js CHANGED
@@ -23,10 +23,10 @@ export default () => {
23
23
  },
24
24
  {
25
25
  category: 'server',
26
- name: '@thzero/library_service',
27
- url: 'https://github.com/thzero/library_service',
26
+ name: '@thzero/library_server',
27
+ url: 'https://github.com/thzero/library_server',
28
28
  licenseName: 'MIT',
29
- licenseUrl: 'https://github.com/thzero/library_service/blob/master/license.md'
29
+ licenseUrl: 'https://github.com/thzero/library_server/blob/master/license.md'
30
30
  },
31
31
  {
32
32
  category: 'server',
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@thzero/library_server",
3
3
  "type": "module",
4
- "version": "0.17.5",
4
+ "version": "0.17.7",
5
5
  "version_major": 0,
6
6
  "version_minor": 17,
7
- "version_patch": 5,
7
+ "version_patch": 7,
8
8
  "version_date": "03/19/2023",
9
9
  "description": "An opinionated library of common functionality to bootstrap an API using either Fastify or Koa as the web server.",
10
10
  "author": "thZero",
@@ -25,11 +25,16 @@
25
25
  "test": "echo \"Error: no test specified\" && exit 1"
26
26
  },
27
27
  "dependencies": {
28
- "@godaddy/terminus": "^4.11.2"
28
+ "@godaddy/terminus": "^4.11.2",
29
+ "async-mutex": "^0.4.0",
30
+ "config": "^3.3.9",
31
+ "default-gateway": "^6.0.3",
32
+ "easy-rbac": "^3.2.0",
33
+ "ipaddr.js": "^2.0.1"
29
34
  },
30
35
  "peerDependencies": {
31
- "@thzero/library_server": "^0.17",
36
+ "@thzero/library_common": "^0.17",
32
37
  "@thzero/library_common_service": "^0.17",
33
- "@thzero/library_common": "^0.17"
38
+ "@thzero/library_server": "^0.17"
34
39
  }
35
40
  }