@salesforce/lds-adapters-industries-explainability 1.261.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,14 +614,18 @@ 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
|
+
};
|
|
618
622
|
// Notify Update Available
|
|
619
623
|
function bindExportsTo(luvio) {
|
|
620
624
|
// LDS Adapters
|
|
621
625
|
const getExplainabilityActionLogs_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getExplainabilityActionLogs', getExplainabilityActionLogsAdapterFactory), getExplainabilityActionLogsMetadata);
|
|
622
626
|
function unwrapSnapshotData(factory) {
|
|
623
627
|
const adapter = factory(luvio);
|
|
624
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
628
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
625
629
|
}
|
|
626
630
|
return {
|
|
627
631
|
getExplainabilityActionLogs: createWireAdapterConstructor(luvio, getExplainabilityActionLogs_ldsAdapter, getExplainabilityActionLogsMetadata),
|
|
@@ -640,4 +644,4 @@ withDefaultLuvio((luvio) => {
|
|
|
640
644
|
});
|
|
641
645
|
|
|
642
646
|
export { getExplainabilityActionLogs, getExplainabilityActionLogs_imperative, storeExplainabilityActionLog };
|
|
643
|
-
// version: 1.
|
|
647
|
+
// version: 1.262.0-d3c071fdc
|