@thzero/library_server 0.17.2 → 0.17.4

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.
Files changed (2) hide show
  1. package/boot/index.js +2 -2
  2. package/package.json +8 -11
package/boot/index.js CHANGED
@@ -362,7 +362,7 @@ class BootMain {
362
362
  if (!this.mdnsDiscoveryServiceI)
363
363
  return;
364
364
 
365
- await this.mdnsDiscoveryServiceI.initialize(LibraryCommonUtility.generateId(), await this._initServerDiscoveryOptsMdns(opts));
365
+ await this.mdnsDiscoveryServiceI.initialize(LibraryCommonUtility.correlationId(), await this._initServerDiscoveryOptsMdns(opts));
366
366
  }
367
367
 
368
368
  async _initServerDiscoveryOpts() {
@@ -400,7 +400,7 @@ class BootMain {
400
400
  if (!this.resourceDiscoveryServiceI)
401
401
  return;
402
402
 
403
- await this.resourceDiscoveryServiceI.initialize(LibraryCommonUtility.generateId(), await this._initServerDiscoveryOptsResources(opts));
403
+ await this.resourceDiscoveryServiceI.initialize(LibraryCommonUtility.correlationId(), await this._initServerDiscoveryOptsResources(opts));
404
404
  }
405
405
 
406
406
  _injectRepository(key, repository) {
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@thzero/library_server",
3
3
  "type": "module",
4
- "version": "0.17.2",
4
+ "version": "0.17.4",
5
5
  "version_major": 0,
6
6
  "version_minor": 17,
7
- "version_patch": 2,
8
- "version_date": "02/02/2023",
7
+ "version_patch": 4,
8
+ "version_date": "03/19/2023",
9
9
  "description": "An opinionated library of common functionality to bootstrap an API application using MongoDb and Firebase. Currently either Fastify or Koa can be used as the web server.",
10
10
  "author": "thZero",
11
11
  "license": "MIT",
@@ -25,13 +25,10 @@
25
25
  "test": "echo \"Error: no test specified\" && exit 1"
26
26
  },
27
27
  "dependencies": {
28
- "@thzero/library_common": "^0.17",
29
- "@thzero/library_common_service": "^0.17",
30
- "@godaddy/terminus": "^4.11.2",
31
- "async-mutex": "^0.4.0",
32
- "config": "^3.3.8",
33
- "default-gateway": "^6.0.3",
34
- "easy-rbac": "^3.2.0",
35
- "ipaddr.js": "^2.0.1"
28
+ "@thzero/library_client_firebase": "^0.17"
29
+ },
30
+ "peerDependencies": {
31
+ "@thzero/library_client": "^0.17",
32
+ "@thzero/library_common": "^0.17"
36
33
  }
37
34
  }