@salesforce/lds-adapters-sales-eci 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.
|
@@ -4,4 +4,4 @@ declare let getConversationSummaryRelatedListNotifyChange: any;
|
|
|
4
4
|
declare let getTranscript: any;
|
|
5
5
|
declare let getConversationSummaryRelatedList_imperative: any;
|
|
6
6
|
declare let getTranscript_imperative: any;
|
|
7
|
-
export { generateConversationSummary, getConversationSummaryRelatedList, getConversationSummaryRelatedListNotifyChange, getTranscript, getConversationSummaryRelatedList_imperative, getTranscript_imperative };
|
|
7
|
+
export { generateConversationSummary, getConversationSummaryRelatedList, getConversationSummaryRelatedListNotifyChange, getTranscript, getConversationSummaryRelatedList_imperative, getTranscript_imperative, };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-sales-eci",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.0",
|
|
4
4
|
"description": "Einstein Conversation Insights",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/sales-eci.js",
|
|
@@ -41,15 +41,14 @@
|
|
|
41
41
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --adapter=lds-adapters-sales-eci",
|
|
42
42
|
"start": "nx build:karma && karma start",
|
|
43
43
|
"test": "nx build:karma && karma start --single-run",
|
|
44
|
-
"test:compat": "nx build:karma && karma start --single-run --compat",
|
|
45
44
|
"test:unit": "jest"
|
|
46
45
|
},
|
|
47
46
|
"dependencies": {
|
|
48
|
-
"@salesforce/lds-bindings": "^1.
|
|
47
|
+
"@salesforce/lds-bindings": "^1.262.0"
|
|
49
48
|
},
|
|
50
49
|
"devDependencies": {
|
|
51
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
52
|
-
"@salesforce/lds-karma": "^1.
|
|
50
|
+
"@salesforce/lds-compiler-plugins": "^1.262.0",
|
|
51
|
+
"@salesforce/lds-karma": "^1.262.0"
|
|
53
52
|
},
|
|
54
53
|
"nx": {
|
|
55
54
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -1000,15 +1000,20 @@ let getTranscript;
|
|
|
1000
1000
|
// Imperative GET Adapters
|
|
1001
1001
|
let getConversationSummaryRelatedList_imperative;
|
|
1002
1002
|
let getTranscript_imperative;
|
|
1003
|
-
const getConversationSummaryRelatedListMetadata = {
|
|
1003
|
+
const getConversationSummaryRelatedListMetadata = {
|
|
1004
|
+
apiFamily: 'eci',
|
|
1005
|
+
name: 'getConversationSummaryRelatedList',
|
|
1006
|
+
ttl: 60000,
|
|
1007
|
+
};
|
|
1004
1008
|
const getTranscriptMetadata = { apiFamily: 'eci', name: 'getTranscript', ttl: 2592000000 };
|
|
1009
|
+
// Notify Update Available
|
|
1005
1010
|
function bindExportsTo(luvio) {
|
|
1006
1011
|
// LDS Adapters
|
|
1007
1012
|
const getConversationSummaryRelatedList_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getConversationSummaryRelatedList', getConversationSummaryRelatedListAdapterFactory), getConversationSummaryRelatedListMetadata);
|
|
1008
1013
|
const getTranscript_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getTranscript', getTranscriptAdapterFactory), getTranscriptMetadata);
|
|
1009
1014
|
function unwrapSnapshotData(factory) {
|
|
1010
1015
|
const adapter = factory(luvio);
|
|
1011
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
1016
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
1012
1017
|
}
|
|
1013
1018
|
return {
|
|
1014
1019
|
generateConversationSummary: unwrapSnapshotData(generateConversationSummaryAdapterFactory),
|
|
@@ -1017,7 +1022,8 @@ function bindExportsTo(luvio) {
|
|
|
1017
1022
|
getTranscript: createWireAdapterConstructor(luvio, getTranscript_ldsAdapter, getTranscriptMetadata),
|
|
1018
1023
|
// Imperative GET Adapters
|
|
1019
1024
|
getConversationSummaryRelatedList_imperative: createImperativeAdapter(luvio, getConversationSummaryRelatedList_ldsAdapter, getConversationSummaryRelatedListMetadata),
|
|
1020
|
-
getTranscript_imperative: createImperativeAdapter(luvio, getTranscript_ldsAdapter, getTranscriptMetadata)
|
|
1025
|
+
getTranscript_imperative: createImperativeAdapter(luvio, getTranscript_ldsAdapter, getTranscriptMetadata),
|
|
1026
|
+
// Notify Update Availables
|
|
1021
1027
|
};
|
|
1022
1028
|
}
|
|
1023
1029
|
withDefaultLuvio((luvio) => {
|
|
@@ -1027,9 +1033,9 @@ withDefaultLuvio((luvio) => {
|
|
|
1027
1033
|
getConversationSummaryRelatedListNotifyChange,
|
|
1028
1034
|
getTranscript,
|
|
1029
1035
|
getConversationSummaryRelatedList_imperative,
|
|
1030
|
-
getTranscript_imperative
|
|
1036
|
+
getTranscript_imperative,
|
|
1031
1037
|
} = bindExportsTo(luvio));
|
|
1032
1038
|
});
|
|
1033
1039
|
|
|
1034
1040
|
export { generateConversationSummary, getConversationSummaryRelatedList, getConversationSummaryRelatedListNotifyChange, getConversationSummaryRelatedList_imperative, getTranscript, getTranscript_imperative };
|
|
1035
|
-
// version: 1.
|
|
1041
|
+
// version: 1.262.0-d3c071fdc
|