@salesforce/lds-adapters-industries-sustainability-reference-data-v3 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.
- package/package.json +3 -3
- package/sfdc/index.js +9 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-sustainability-reference-data-v3",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.1",
|
|
4
4
|
"description": "refreence data v3",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/industries-sustainability-reference-data-v3.js",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"test:unit": "jest"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.
|
|
43
|
+
"@salesforce/lds-bindings": "^1.262.1"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.262.1"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -672,14 +672,18 @@ let postUploadDataset;
|
|
|
672
672
|
// Imperative GET Adapters
|
|
673
673
|
let getSCGetDatasetMetaResource_imperative;
|
|
674
674
|
// Adapter Metadata
|
|
675
|
-
const getSCGetDatasetMetaResourceMetadata = {
|
|
675
|
+
const getSCGetDatasetMetaResourceMetadata = {
|
|
676
|
+
apiFamily: 'sustainabilityreference-data-v3',
|
|
677
|
+
name: 'getSCGetDatasetMetaResource',
|
|
678
|
+
ttl: 10000,
|
|
679
|
+
};
|
|
676
680
|
// Notify Update Available
|
|
677
681
|
function bindExportsTo(luvio) {
|
|
678
682
|
// LDS Adapters
|
|
679
683
|
const getSCGetDatasetMetaResource_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getSCGetDatasetMetaResource', getSCGetDatasetMetaResourceAdapterFactory), getSCGetDatasetMetaResourceMetadata);
|
|
680
684
|
function unwrapSnapshotData(factory) {
|
|
681
685
|
const adapter = factory(luvio);
|
|
682
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
686
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
683
687
|
}
|
|
684
688
|
return {
|
|
685
689
|
getSCGetDatasetMetaResource: createWireAdapterConstructor(luvio, getSCGetDatasetMetaResource_ldsAdapter, getSCGetDatasetMetaResourceMetadata),
|
|
@@ -690,12 +694,9 @@ function bindExportsTo(luvio) {
|
|
|
690
694
|
};
|
|
691
695
|
}
|
|
692
696
|
withDefaultLuvio((luvio) => {
|
|
693
|
-
({
|
|
694
|
-
|
|
695
|
-
postUploadDataset,
|
|
696
|
-
getSCGetDatasetMetaResource_imperative,
|
|
697
|
-
} = bindExportsTo(luvio));
|
|
697
|
+
({ getSCGetDatasetMetaResource, postUploadDataset, getSCGetDatasetMetaResource_imperative } =
|
|
698
|
+
bindExportsTo(luvio));
|
|
698
699
|
});
|
|
699
700
|
|
|
700
701
|
export { getSCGetDatasetMetaResource, getSCGetDatasetMetaResource_imperative, postUploadDataset };
|
|
701
|
-
// version: 1.
|
|
702
|
+
// version: 1.262.1-9a1924e93
|