web-manager 3.2.67 → 3.2.68

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/index.js CHANGED
@@ -627,7 +627,7 @@ Manager.prototype.init = function(configuration, callback) {
627
627
  self.properties.global.app = configuration.global.app;
628
628
  self.properties.global.version = configuration.global.version;
629
629
  self.properties.global.url = configuration.global.url;
630
- self.properties.global.buildTime = new Date((+configuration.global.buildTime * 1000) || new Date())
630
+ self.properties.global.buildTime = new Date((+configuration.global.buildTime * 1000) || new Date());
631
631
  self.properties.global.cacheBreaker = configuration.global.cacheBreaker;
632
632
 
633
633
  self.properties.global.brand = configuration.global.brand;
package/lib/account.js CHANGED
@@ -70,7 +70,7 @@ Account.prototype.delete = function (options) {
70
70
  } else {
71
71
  user.getIdToken(false)
72
72
  .then(function(token) {
73
- fetch(self.Manager.properties.properties.global.functionsUrl + '/bm_api', {
73
+ fetch(self.Manager.properties.global.functionsUrl + '/bm_api', {
74
74
  // fetch('http://localhost:5001/optiic-api/us-central1/bm_api', {
75
75
  method: 'POST',
76
76
  headers: { 'Content-Type': 'application/json' },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-manager",
3
- "version": "3.2.67",
3
+ "version": "3.2.68",
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": {