web-manager 3.2.37 → 3.2.38

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/lib/account.js +2 -0
  2. package/package.json +2 -2
package/lib/account.js CHANGED
@@ -236,6 +236,7 @@ Account.prototype._resolveAccount = function (firebaseUser, account, options) {
236
236
  var timestampOld = '1970-01-01T00:00:00.000Z';
237
237
  var timestampUNIXOld = 0;
238
238
 
239
+ // TODO: ADD THESE THINGS: USAGE RESOVLER ETC
239
240
  console.log('++++++account', JSON.stringify(account, null, 2));
240
241
  console.log('++++++options', JSON.stringify(options, null, 2));
241
242
 
@@ -398,6 +399,7 @@ Account.prototype._resolveAccount = function (firebaseUser, account, options) {
398
399
  account.personal.location = account.personal.location || {};
399
400
  account.personal.location.city = account.personal.location.city || '';
400
401
  account.personal.location.country = account.personal.location.country || '';
402
+ account.personal.location.region = account.personal.location.region || '';
401
403
 
402
404
  account.personal.name = account.personal.name || {};
403
405
  account.personal.name.first = account.personal.name.first || '';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-manager",
3
- "version": "3.2.37",
3
+ "version": "3.2.38",
4
4
  "description": "Easily access important variables such as the query string, current domain, and current page in a single object.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -36,4 +36,4 @@
36
36
  "firebase": "^9.23.0",
37
37
  "lazysizes": "^5.3.2"
38
38
  }
39
- }
39
+ }