@salesforce/lds-adapters-industries-eri 1.260.0 → 1.261.0
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/package.json +4 -4
- package/sfdc/index.js +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-eri",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Einstein relationship insights",
|
|
6
6
|
"main": "dist/es/es2018/industries-eri.js",
|
|
@@ -43,11 +43,11 @@
|
|
|
43
43
|
"test:compat": "nx build:karma && karma start --single-run --compat"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@salesforce/lds-bindings": "^1.
|
|
46
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
50
|
-
"@salesforce/lds-karma": "^1.
|
|
49
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
50
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
51
51
|
},
|
|
52
52
|
"nx": {
|
|
53
53
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -477,6 +477,7 @@ const getERIDigestAdapterFactory = (luvio) => {
|
|
|
477
477
|
};
|
|
478
478
|
|
|
479
479
|
let getERIDigest;
|
|
480
|
+
// Notify Update Available
|
|
480
481
|
function bindExportsTo(luvio) {
|
|
481
482
|
function unwrapSnapshotData(factory) {
|
|
482
483
|
const adapter = factory(luvio);
|
|
@@ -485,6 +486,7 @@ function bindExportsTo(luvio) {
|
|
|
485
486
|
return {
|
|
486
487
|
getERIDigest: unwrapSnapshotData(getERIDigestAdapterFactory),
|
|
487
488
|
// Imperative GET Adapters
|
|
489
|
+
// Notify Update Availables
|
|
488
490
|
};
|
|
489
491
|
}
|
|
490
492
|
withDefaultLuvio((luvio) => {
|
|
@@ -494,4 +496,4 @@ withDefaultLuvio((luvio) => {
|
|
|
494
496
|
});
|
|
495
497
|
|
|
496
498
|
export { getERIDigest };
|
|
497
|
-
// version: 1.
|
|
499
|
+
// version: 1.261.0-10ee630e7
|