@ccci/micro-server 1.0.111 → 1.0.113
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/dist/index.js +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -250955,9 +250955,10 @@ class PushNotifier {
|
|
|
250955
250955
|
if (!PushNotifier.instance) {
|
|
250956
250956
|
console.log("configPath :>> ", configPath);
|
|
250957
250957
|
import(configPath).then((FirebaseServiceAccount) => {
|
|
250958
|
-
console.log("FirebaseServiceAccount :>> ", FirebaseServiceAccount
|
|
250958
|
+
console.log("FirebaseServiceAccount :>> ", FirebaseServiceAccount);
|
|
250959
|
+
console.log("FirebaseServiceAccount :>> ", FirebaseServiceAccount.default);
|
|
250959
250960
|
PushNotifier.FirebaseAdmin.initializeApp({
|
|
250960
|
-
credential: import_firebase_admin.default.credential.cert(FirebaseServiceAccount
|
|
250961
|
+
credential: import_firebase_admin.default.credential.cert(FirebaseServiceAccount)
|
|
250961
250962
|
});
|
|
250962
250963
|
PushNotifier.instance = PushNotifier.FirebaseAdmin.app.length;
|
|
250963
250964
|
});
|