web-manager 3.2.40 → 3.2.41

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 +8 -4
  2. package/package.json +3 -3
package/lib/account.js CHANGED
@@ -237,8 +237,8 @@ Account.prototype._resolveAccount = function (firebaseUser, account, options) {
237
237
  var timestampUNIXOld = 0;
238
238
 
239
239
  // TODO: ADD THESE THINGS: USAGE RESOVLER ETC
240
- console.log('++++++account', JSON.stringify(account, null, 2));
241
- console.log('++++++options', JSON.stringify(options, null, 2));
240
+ console.log('++++++account 1', JSON.stringify(account, null, 2));
241
+ console.log('++++++options 1', JSON.stringify(options, null, 2));
242
242
 
243
243
  // @@@DEVELOPER
244
244
  // account.plan = {};
@@ -477,8 +477,8 @@ Account.prototype._resolveAccount = function (firebaseUser, account, options) {
477
477
 
478
478
  billingUpdateBtn.setAttribute('hidden', true).setAttribute('href', updateURL.toString());
479
479
  billingSubscribeBtn.setAttribute('hidden', true);
480
- billingSuspendedMessageEl.setAttribute('hidden');
481
- billingTrialExpirationDateEl.setAttribute('hidden');
480
+ billingSuspendedMessageEl.setAttribute('hidden', true);
481
+ billingTrialExpirationDateEl.setAttribute('hidden', true);
482
482
 
483
483
  // Update active UI
484
484
  if (planIsActive) {
@@ -575,6 +575,10 @@ Account.prototype._resolveAccount = function (firebaseUser, account, options) {
575
575
  }
576
576
  })
577
577
 
578
+ // TODO: ADD THESE THINGS: USAGE RESOVLER ETC
579
+ console.log('++++++account 2', JSON.stringify(account, null, 2));
580
+ console.log('++++++options 2', JSON.stringify(options, null, 2));
581
+
578
582
  } catch (e) {
579
583
  if (typeof window !== 'undefined') {
580
584
  console.error('Unable to set DOM elements', e);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-manager",
3
- "version": "3.2.40",
3
+ "version": "3.2.41",
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": {
@@ -31,9 +31,9 @@
31
31
  }
32
32
  },
33
33
  "dependencies": {
34
- "@sentry/browser": "^7.98.0",
34
+ "@sentry/browser": "^7.108.0",
35
35
  "cookieconsent": "^3.1.1",
36
36
  "firebase": "^9.23.0",
37
37
  "lazysizes": "^5.3.2"
38
38
  }
39
- }
39
+ }