@adactive/adsum-utils
Advanced tools
Comparing version 0.0.2-y.44.43 to 0.0.2-y.44.44
{ | ||
"name": "@adactive/adsum-utils", | ||
"version": "0.0.2-y.44.43", | ||
"version": "0.0.2-y.44.44", | ||
"description": "Adsum Component utils", | ||
@@ -24,3 +24,4 @@ "main": "index.js", | ||
"redux" | ||
] | ||
], | ||
"gitHead": "0c26c3be05d7c2f7dbe82d8d6f68b6ec1c528e0f" | ||
} |
@@ -13,17 +13,25 @@ // @flow | ||
async init(config, fallbackOnlineApi=false) { | ||
const { | ||
endpoint, key, site, username | ||
} = config; | ||
async init(config) { | ||
const { endpoint, key, site, username } = config; | ||
const entityManagerOptions = { | ||
endpoint, | ||
site, | ||
username, | ||
key | ||
}; | ||
if (!fallbackOnlineApi) { | ||
entityManagerOptions.cacheManager = new DistCacheManager('//localhost:9001/local'); | ||
this.entityManager = new EntityManager({ | ||
endpoint, | ||
site, | ||
username, | ||
key, | ||
cacheManager: new DistCacheManager('/local'), | ||
}); | ||
} | ||
async load(cacheFirst = true, allowOutdatedCache = true) { | ||
if (cacheFirst) { | ||
return this.entityManager.loadFromCache(allowOutdatedCache) | ||
.catch(() => { | ||
console.warn('ClientAPI: no cache, failling back on live API'); | ||
return this.entityManager.load(); | ||
}); | ||
} | ||
this.entityManager = new EntityManager(entityManagerOptions); | ||
return this.entityManager.load(); | ||
} | ||
@@ -30,0 +38,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10119
11
221
1