@salesforce/lds-adapters-industries-decisiontable 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 +3 -3
- package/sfdc/index.js +10 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-decisiontable",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"description": "Industries BRE DecisionTable",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/industries-decisiontable.js",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"test:unit": "jest --config=./jest.config.js"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.
|
|
43
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -584,22 +584,25 @@ let getDecisionTable;
|
|
|
584
584
|
// Imperative GET Adapters
|
|
585
585
|
let getDecisionTable_imperative;
|
|
586
586
|
// Adapter Metadata
|
|
587
|
-
const getDecisionTableMetadata = {
|
|
587
|
+
const getDecisionTableMetadata = {
|
|
588
|
+
apiFamily: 'DecisionTable',
|
|
589
|
+
name: 'getDecisionTable',
|
|
590
|
+
ttl: 1000,
|
|
591
|
+
};
|
|
592
|
+
// Notify Update Available
|
|
588
593
|
function bindExportsTo(luvio) {
|
|
589
594
|
// LDS Adapters
|
|
590
595
|
const getDecisionTable_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getDecisionTable', getDecisionTableAdapterFactory), getDecisionTableMetadata);
|
|
591
596
|
return {
|
|
592
597
|
getDecisionTable: createWireAdapterConstructor(luvio, getDecisionTable_ldsAdapter, getDecisionTableMetadata),
|
|
593
598
|
// Imperative GET Adapters
|
|
594
|
-
getDecisionTable_imperative: createImperativeAdapter(luvio, getDecisionTable_ldsAdapter, getDecisionTableMetadata)
|
|
599
|
+
getDecisionTable_imperative: createImperativeAdapter(luvio, getDecisionTable_ldsAdapter, getDecisionTableMetadata),
|
|
600
|
+
// Notify Update Availables
|
|
595
601
|
};
|
|
596
602
|
}
|
|
597
603
|
withDefaultLuvio((luvio) => {
|
|
598
|
-
({
|
|
599
|
-
getDecisionTable,
|
|
600
|
-
getDecisionTable_imperative
|
|
601
|
-
} = bindExportsTo(luvio));
|
|
604
|
+
({ getDecisionTable, getDecisionTable_imperative } = bindExportsTo(luvio));
|
|
602
605
|
});
|
|
603
606
|
|
|
604
607
|
export { getDecisionTable, getDecisionTable_imperative };
|
|
605
|
-
// version: 1.
|
|
608
|
+
// version: 1.261.0-10ee630e7
|