web-manager 3.2.65 → 3.2.66

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/lib/account.js +4 -0
  2. package/package.json +1 -1
package/lib/account.js CHANGED
@@ -478,6 +478,10 @@ Account.prototype._resolveAccount = function (firebaseUser, account, options) {
478
478
  account.personal.telephone.countryCode = account.personal.telephone.countryCode || 0;
479
479
  account.personal.telephone.national = account.personal.telephone.national || 0;
480
480
 
481
+ account.personal.company = account.personal.company || {};
482
+ account.personal.company.name = account.personal.company.name || '';
483
+ account.personal.company.position = account.personal.company.position || '';
484
+
481
485
  // Set UI elements
482
486
  // In a try/catch because this lib is used in node sometimes
483
487
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-manager",
3
- "version": "3.2.65",
3
+ "version": "3.2.66",
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": {