@salesforce/lds-adapters-industries-materialityassessment 1.261.0 → 1.262.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.
@@ -1,2 +1,2 @@
1
1
  declare let postPerformCalculation: any;
2
- export { postPerformCalculation, };
2
+ export { postPerformCalculation };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-industries-materialityassessment",
3
- "version": "1.261.0",
3
+ "version": "1.262.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",
@@ -40,15 +40,14 @@
40
40
  "release:corejar": "yarn build && ../core-build/scripts/core.js --adapter=lds-adapters-industries-materialityassessment",
41
41
  "start": "nx build:karma && karma start",
42
42
  "test": "nx build:karma && karma start --single-run",
43
- "test:compat": "nx build:karma && karma start --single-run --compat",
44
43
  "test:unit": "jest"
45
44
  },
46
45
  "dependencies": {
47
- "@salesforce/lds-bindings": "^1.261.0"
46
+ "@salesforce/lds-bindings": "^1.262.0"
48
47
  },
49
48
  "devDependencies": {
50
- "@salesforce/lds-compiler-plugins": "^1.261.0",
51
- "@salesforce/lds-karma": "^1.261.0"
49
+ "@salesforce/lds-compiler-plugins": "^1.262.0",
50
+ "@salesforce/lds-karma": "^1.262.0"
52
51
  },
53
52
  "nx": {
54
53
  "targets": {
package/sfdc/index.js CHANGED
@@ -243,9 +243,10 @@ const postPerformCalculationAdapterFactory = (luvio) => {
243
243
  let postPerformCalculation;
244
244
  // Notify Update Available
245
245
  function bindExportsTo(luvio) {
246
+ // LDS Adapters
246
247
  function unwrapSnapshotData(factory) {
247
248
  const adapter = factory(luvio);
248
- return (config) => adapter(config).then(snapshot => snapshot.data);
249
+ return (config) => adapter(config).then((snapshot) => snapshot.data);
249
250
  }
250
251
  return {
251
252
  postPerformCalculation: unwrapSnapshotData(postPerformCalculationAdapterFactory),
@@ -254,10 +255,8 @@ function bindExportsTo(luvio) {
254
255
  };
255
256
  }
256
257
  withDefaultLuvio((luvio) => {
257
- ({
258
- postPerformCalculation,
259
- } = bindExportsTo(luvio));
258
+ ({ postPerformCalculation } = bindExportsTo(luvio));
260
259
  });
261
260
 
262
261
  export { postPerformCalculation };
263
- // version: 1.261.0-10ee630e7
262
+ // version: 1.262.0-d3c071fdc