@salesforce/lds-adapters-industries-eri 1.261.0 → 1.262.1
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.
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
declare let getERIDigest: any;
|
|
2
|
-
export { getERIDigest
|
|
2
|
+
export { getERIDigest };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-eri",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.1",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Einstein relationship insights",
|
|
6
6
|
"main": "dist/es/es2018/industries-eri.js",
|
|
@@ -39,15 +39,14 @@
|
|
|
39
39
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-industries-eri",
|
|
40
40
|
"release:corejar": "yarn build && packages/core-build/scripts/core.js --adapter=lds-adapters-industries-eri",
|
|
41
41
|
"start": "nx build:karma && karma start",
|
|
42
|
-
"test": "nx build:karma && karma start --single-run"
|
|
43
|
-
"test:compat": "nx build:karma && karma start --single-run --compat"
|
|
42
|
+
"test": "nx build:karma && karma start --single-run"
|
|
44
43
|
},
|
|
45
44
|
"dependencies": {
|
|
46
|
-
"@salesforce/lds-bindings": "^1.
|
|
45
|
+
"@salesforce/lds-bindings": "^1.262.1"
|
|
47
46
|
},
|
|
48
47
|
"devDependencies": {
|
|
49
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
50
|
-
"@salesforce/lds-karma": "^1.
|
|
48
|
+
"@salesforce/lds-compiler-plugins": "^1.262.1",
|
|
49
|
+
"@salesforce/lds-karma": "^1.262.1"
|
|
51
50
|
},
|
|
52
51
|
"nx": {
|
|
53
52
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -479,9 +479,10 @@ const getERIDigestAdapterFactory = (luvio) => {
|
|
|
479
479
|
let getERIDigest;
|
|
480
480
|
// Notify Update Available
|
|
481
481
|
function bindExportsTo(luvio) {
|
|
482
|
+
// LDS Adapters
|
|
482
483
|
function unwrapSnapshotData(factory) {
|
|
483
484
|
const adapter = factory(luvio);
|
|
484
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
485
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
485
486
|
}
|
|
486
487
|
return {
|
|
487
488
|
getERIDigest: unwrapSnapshotData(getERIDigestAdapterFactory),
|
|
@@ -490,10 +491,8 @@ function bindExportsTo(luvio) {
|
|
|
490
491
|
};
|
|
491
492
|
}
|
|
492
493
|
withDefaultLuvio((luvio) => {
|
|
493
|
-
({
|
|
494
|
-
getERIDigest,
|
|
495
|
-
} = bindExportsTo(luvio));
|
|
494
|
+
({ getERIDigest } = bindExportsTo(luvio));
|
|
496
495
|
});
|
|
497
496
|
|
|
498
497
|
export { getERIDigest };
|
|
499
|
-
// version: 1.
|
|
498
|
+
// version: 1.262.1-9a1924e93
|