backend-manager 2.5.98 → 2.5.99

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "backend-manager",
3
- "version": "2.5.98",
3
+ "version": "2.5.99",
4
4
  "description": "Quick tools for developing Firebase functions",
5
5
  "main": "src/manager/index.js",
6
6
  "bin": {
@@ -32,7 +32,7 @@
32
32
  "@google-cloud/storage": "^5.20.5",
33
33
  "@sendgrid/mail": "^7.7.0",
34
34
  "@sentry/node": "^6.19.7",
35
- "backend-assistant": "^1.0.6",
35
+ "backend-assistant": "^1.0.7",
36
36
  "busboy": "^1.6.0",
37
37
  "chalk": "^4.1.2",
38
38
  "cors": "^2.8.5",
@@ -82,7 +82,7 @@ Module.prototype.signUp = function (payload) {
82
82
 
83
83
  payload = payload || {};
84
84
 
85
- assistant.log(`SignUp(): payload`, payload, {environment: 'production'})
85
+ assistant.log(`signUp(): payload`, payload, {environment: 'production'})
86
86
 
87
87
  // Check if the user has a UID and email
88
88
  if (!_.get(payload, 'auth.uid', null) || !_.get(payload, 'auth.email', null)) {
@@ -128,7 +128,7 @@ Module.prototype.signUp = function (payload) {
128
128
  metadata: Manager.Metadata().set({tag: 'user:sign-up'}),
129
129
  }
130
130
 
131
- assistant.log(`updateReferral(): appending referrals...`, referrals, {environment: 'production'})
131
+ assistant.log(`signUp(): user`, user, {environment: 'production'})
132
132
 
133
133
  // Set the user
134
134
  self.libraries.admin.firestore().doc(`users/${payload.auth.uid}`)