@salesforce/lds-adapters-industries-explainability 1.260.0 → 1.262.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.
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
declare let getExplainabilityActionLogs: any;
|
|
2
2
|
declare let storeExplainabilityActionLog: any;
|
|
3
3
|
declare let getExplainabilityActionLogs_imperative: any;
|
|
4
|
-
export { getExplainabilityActionLogs, storeExplainabilityActionLog, getExplainabilityActionLogs_imperative };
|
|
4
|
+
export { getExplainabilityActionLogs, storeExplainabilityActionLog, getExplainabilityActionLogs_imperative, };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-explainability",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "API to fetch and post centralised explainability related meta data and transactional data",
|
|
6
6
|
"main": "dist/es/es2018/industries-explainability.js",
|
|
@@ -39,15 +39,14 @@
|
|
|
39
39
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-industries-explainability",
|
|
40
40
|
"release:corejar": "yarn build && packages/core-build/scripts/core.js --adapter=lds-adapters-industries-explainability",
|
|
41
41
|
"start": "nx build:karma && karma start",
|
|
42
|
-
"test": "nx build:karma && karma start --single-run"
|
|
43
|
-
"test:compat": "nx build:karma && karma start --single-run --compat"
|
|
42
|
+
"test": "nx build:karma && karma start --single-run"
|
|
44
43
|
},
|
|
45
44
|
"dependencies": {
|
|
46
|
-
"@salesforce/lds-bindings": "^1.
|
|
45
|
+
"@salesforce/lds-bindings": "^1.262.0"
|
|
47
46
|
},
|
|
48
47
|
"devDependencies": {
|
|
49
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
50
|
-
"@salesforce/lds-karma": "^1.
|
|
48
|
+
"@salesforce/lds-compiler-plugins": "^1.262.0",
|
|
49
|
+
"@salesforce/lds-karma": "^1.262.0"
|
|
51
50
|
},
|
|
52
51
|
"nx": {
|
|
53
52
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -614,28 +614,34 @@ let storeExplainabilityActionLog;
|
|
|
614
614
|
// Imperative GET Adapters
|
|
615
615
|
let getExplainabilityActionLogs_imperative;
|
|
616
616
|
// Adapter Metadata
|
|
617
|
-
const getExplainabilityActionLogsMetadata = {
|
|
617
|
+
const getExplainabilityActionLogsMetadata = {
|
|
618
|
+
apiFamily: 'explainability',
|
|
619
|
+
name: 'getExplainabilityActionLogs',
|
|
620
|
+
ttl: 10000,
|
|
621
|
+
};
|
|
622
|
+
// Notify Update Available
|
|
618
623
|
function bindExportsTo(luvio) {
|
|
619
624
|
// LDS Adapters
|
|
620
625
|
const getExplainabilityActionLogs_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getExplainabilityActionLogs', getExplainabilityActionLogsAdapterFactory), getExplainabilityActionLogsMetadata);
|
|
621
626
|
function unwrapSnapshotData(factory) {
|
|
622
627
|
const adapter = factory(luvio);
|
|
623
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
628
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
624
629
|
}
|
|
625
630
|
return {
|
|
626
631
|
getExplainabilityActionLogs: createWireAdapterConstructor(luvio, getExplainabilityActionLogs_ldsAdapter, getExplainabilityActionLogsMetadata),
|
|
627
632
|
storeExplainabilityActionLog: unwrapSnapshotData(storeExplainabilityActionLogAdapterFactory),
|
|
628
633
|
// Imperative GET Adapters
|
|
629
|
-
getExplainabilityActionLogs_imperative: createImperativeAdapter(luvio, getExplainabilityActionLogs_ldsAdapter, getExplainabilityActionLogsMetadata)
|
|
634
|
+
getExplainabilityActionLogs_imperative: createImperativeAdapter(luvio, getExplainabilityActionLogs_ldsAdapter, getExplainabilityActionLogsMetadata),
|
|
635
|
+
// Notify Update Availables
|
|
630
636
|
};
|
|
631
637
|
}
|
|
632
638
|
withDefaultLuvio((luvio) => {
|
|
633
639
|
({
|
|
634
640
|
getExplainabilityActionLogs,
|
|
635
641
|
storeExplainabilityActionLog,
|
|
636
|
-
getExplainabilityActionLogs_imperative
|
|
642
|
+
getExplainabilityActionLogs_imperative,
|
|
637
643
|
} = bindExportsTo(luvio));
|
|
638
644
|
});
|
|
639
645
|
|
|
640
646
|
export { getExplainabilityActionLogs, getExplainabilityActionLogs_imperative, storeExplainabilityActionLog };
|
|
641
|
-
// version: 1.
|
|
647
|
+
// version: 1.262.0-d3c071fdc
|