web-manager 3.2.67 → 3.2.68
Sign up to get free protection for your applications and to get access to all the features.
- package/index.js +1 -1
- package/lib/account.js +1 -1
- package/package.json +1 -1
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.
|
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