@salesforce/lds-adapters-industries-materialityassessment 1.259.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-materialityassessment",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"description": "connect endpoints for materiality assessment",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/industries-materialityassessment.js",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"test:unit": "jest"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@salesforce/lds-bindings": "^1.
|
|
47
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
51
|
-
"@salesforce/lds-karma": "^1.
|
|
50
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
51
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
52
52
|
},
|
|
53
53
|
"nx": {
|
|
54
54
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -241,6 +241,7 @@ const postPerformCalculationAdapterFactory = (luvio) => {
|
|
|
241
241
|
};
|
|
242
242
|
|
|
243
243
|
let postPerformCalculation;
|
|
244
|
+
// Notify Update Available
|
|
244
245
|
function bindExportsTo(luvio) {
|
|
245
246
|
function unwrapSnapshotData(factory) {
|
|
246
247
|
const adapter = factory(luvio);
|
|
@@ -249,6 +250,7 @@ function bindExportsTo(luvio) {
|
|
|
249
250
|
return {
|
|
250
251
|
postPerformCalculation: unwrapSnapshotData(postPerformCalculationAdapterFactory),
|
|
251
252
|
// Imperative GET Adapters
|
|
253
|
+
// Notify Update Availables
|
|
252
254
|
};
|
|
253
255
|
}
|
|
254
256
|
withDefaultLuvio((luvio) => {
|
|
@@ -258,4 +260,4 @@ withDefaultLuvio((luvio) => {
|
|
|
258
260
|
});
|
|
259
261
|
|
|
260
262
|
export { postPerformCalculation };
|
|
261
|
-
// version: 1.
|
|
263
|
+
// version: 1.261.0-10ee630e7
|