@salesforce/lds-adapters-industries-sustainability-reference-data-v2 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 +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-sustainability-reference-data-v2",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "sustainability-reference-data-v2",
|
|
6
6
|
"main": "dist/es/es2018/industries-sustainability-reference-data-v2.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
|
@@ -649,6 +649,7 @@ let uploadEntityVersion;
|
|
|
649
649
|
let getEntityVersion_imperative;
|
|
650
650
|
// Adapter Metadata
|
|
651
651
|
const getEntityVersionMetadata = { apiFamily: 'sustainabilityreference-data-v2', name: 'getEntityVersion', ttl: 300 };
|
|
652
|
+
// Notify Update Available
|
|
652
653
|
function bindExportsTo(luvio) {
|
|
653
654
|
// LDS Adapters
|
|
654
655
|
const getEntityVersion_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getEntityVersion', getEntityVersionAdapterFactory), getEntityVersionMetadata);
|
|
@@ -660,16 +661,17 @@ function bindExportsTo(luvio) {
|
|
|
660
661
|
getEntityVersion: createWireAdapterConstructor(luvio, getEntityVersion_ldsAdapter, getEntityVersionMetadata),
|
|
661
662
|
uploadEntityVersion: unwrapSnapshotData(uploadEntityVersionAdapterFactory),
|
|
662
663
|
// Imperative GET Adapters
|
|
663
|
-
getEntityVersion_imperative: createImperativeAdapter(luvio, getEntityVersion_ldsAdapter, getEntityVersionMetadata)
|
|
664
|
+
getEntityVersion_imperative: createImperativeAdapter(luvio, getEntityVersion_ldsAdapter, getEntityVersionMetadata),
|
|
665
|
+
// Notify Update Availables
|
|
664
666
|
};
|
|
665
667
|
}
|
|
666
668
|
withDefaultLuvio((luvio) => {
|
|
667
669
|
({
|
|
668
670
|
getEntityVersion,
|
|
669
671
|
uploadEntityVersion,
|
|
670
|
-
getEntityVersion_imperative
|
|
672
|
+
getEntityVersion_imperative,
|
|
671
673
|
} = bindExportsTo(luvio));
|
|
672
674
|
});
|
|
673
675
|
|
|
674
676
|
export { getEntityVersion, getEntityVersion_imperative, uploadEntityVersion };
|
|
675
|
-
// version: 1.
|
|
677
|
+
// version: 1.261.0-10ee630e7
|