@thzero/library_server_firebase 0.16.6 → 0.17.2

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/auth/index.js +2 -2
  2. package/package.json +8 -8
package/auth/index.js CHANGED
@@ -3,7 +3,7 @@ import path from 'path';
3
3
 
4
4
  import admin from 'firebase-admin';
5
5
 
6
- import LibraryConstants from '@thzero/library_server/constants.js';
6
+ import LibraryServerConstants from '@thzero/library_server/constants.js';
7
7
 
8
8
  import NotImplementedError from '@thzero/library_common/errors/notImplemented.js';
9
9
 
@@ -31,7 +31,7 @@ class FirebaseAuthAdminService extends Service {
31
31
  databaseURL: serviceAccount.database_url
32
32
  });
33
33
 
34
- this._serviceUsers = this._injector.getService(LibraryConstants.InjectorKeys.SERVICE_USERS);
34
+ this._serviceUsers = this._injector.getService(LibraryServerConstants.InjectorKeys.SERVICE_USERS);
35
35
  }
36
36
 
37
37
  async deleteUser(correlationId, uid) {
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@thzero/library_server_firebase",
3
3
  "type": "module",
4
- "version": "0.16.6",
4
+ "version": "0.17.2",
5
5
  "version_major": 0,
6
- "version_minor": 16,
7
- "version_patch": 6,
8
- "version_date": "01/11/2023",
6
+ "version_minor": 17,
7
+ "version_patch": 2,
8
+ "version_date": "02/03/2023",
9
9
  "author": "thZero",
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -24,11 +24,11 @@
24
24
  "test": "echo \"Error: no test specified\" && exit 1"
25
25
  },
26
26
  "dependencies": {
27
- "firebase-admin": "^11.4.1"
27
+ "firebase-admin": "^11.5.0"
28
28
  },
29
29
  "peerDependencies": {
30
- "@thzero/library_common": "^0.16",
31
- "@thzero/library_common_service": "^0.16",
32
- "@thzero/library_server": "^0.16"
30
+ "@thzero/library_common": "^0.17",
31
+ "@thzero/library_common_service": "^0.17",
32
+ "@thzero/library_server": "^0.17"
33
33
  }
34
34
  }