@salesforce/lds-adapters-industries-sustainability-reference-data 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 uploadReferenceData: any;
2
- export { uploadReferenceData, };
2
+ export { uploadReferenceData };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-industries-sustainability-reference-data",
3
- "version": "1.261.0",
3
+ "version": "1.262.1",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "Sustainability Reference Data",
6
6
  "main": "dist/es/es2018/industries-sustainability-reference-data.js",
@@ -35,15 +35,14 @@
35
35
  "release:core": "../../scripts/release/core.js --adapter=lds-adapters-industries-sustainability-reference-data",
36
36
  "release:corejar": "yarn build && packages/core-build/scripts/core.js --adapter=lds-adapters-industries-sustainability-reference-data",
37
37
  "start": "nx build:karma && karma start",
38
- "test": "nx build:karma && karma start --single-run",
39
- "test:compat": "nx build:karma && karma start --single-run --compat"
38
+ "test": "nx build:karma && karma start --single-run"
40
39
  },
41
40
  "dependencies": {
42
- "@salesforce/lds-bindings": "^1.261.0"
41
+ "@salesforce/lds-bindings": "^1.262.1"
43
42
  },
44
43
  "devDependencies": {
45
- "@salesforce/lds-compiler-plugins": "^1.261.0",
46
- "@salesforce/lds-karma": "^1.261.0"
44
+ "@salesforce/lds-compiler-plugins": "^1.262.1",
45
+ "@salesforce/lds-karma": "^1.262.1"
47
46
  },
48
47
  "nx": {
49
48
  "targets": {
package/sfdc/index.js CHANGED
@@ -244,9 +244,10 @@ const uploadReferenceDataAdapterFactory = (luvio) => {
244
244
  let uploadReferenceData;
245
245
  // Notify Update Available
246
246
  function bindExportsTo(luvio) {
247
+ // LDS Adapters
247
248
  function unwrapSnapshotData(factory) {
248
249
  const adapter = factory(luvio);
249
- return (config) => adapter(config).then(snapshot => snapshot.data);
250
+ return (config) => adapter(config).then((snapshot) => snapshot.data);
250
251
  }
251
252
  return {
252
253
  uploadReferenceData: unwrapSnapshotData(uploadReferenceDataAdapterFactory),
@@ -255,10 +256,8 @@ function bindExportsTo(luvio) {
255
256
  };
256
257
  }
257
258
  withDefaultLuvio((luvio) => {
258
- ({
259
- uploadReferenceData,
260
- } = bindExportsTo(luvio));
259
+ ({ uploadReferenceData } = bindExportsTo(luvio));
261
260
  });
262
261
 
263
262
  export { uploadReferenceData };
264
- // version: 1.261.0-10ee630e7
263
+ // version: 1.262.1-9a1924e93