@salesforce/lds-adapters-industries-sustainability-reference-data 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-sustainability-reference-data",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
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",
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
"test:compat": "nx build:karma && karma start --single-run --compat"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@salesforce/lds-bindings": "^1.
|
|
42
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
-
"@salesforce/lds-karma": "^1.
|
|
45
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
46
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -242,6 +242,7 @@ const uploadReferenceDataAdapterFactory = (luvio) => {
|
|
|
242
242
|
};
|
|
243
243
|
|
|
244
244
|
let uploadReferenceData;
|
|
245
|
+
// Notify Update Available
|
|
245
246
|
function bindExportsTo(luvio) {
|
|
246
247
|
function unwrapSnapshotData(factory) {
|
|
247
248
|
const adapter = factory(luvio);
|
|
@@ -250,6 +251,7 @@ function bindExportsTo(luvio) {
|
|
|
250
251
|
return {
|
|
251
252
|
uploadReferenceData: unwrapSnapshotData(uploadReferenceDataAdapterFactory),
|
|
252
253
|
// Imperative GET Adapters
|
|
254
|
+
// Notify Update Availables
|
|
253
255
|
};
|
|
254
256
|
}
|
|
255
257
|
withDefaultLuvio((luvio) => {
|
|
@@ -259,4 +261,4 @@ withDefaultLuvio((luvio) => {
|
|
|
259
261
|
});
|
|
260
262
|
|
|
261
263
|
export { uploadReferenceData };
|
|
262
|
-
// version: 1.
|
|
264
|
+
// version: 1.261.0-10ee630e7
|