@salesforce/lds-adapters-sales-eci 1.259.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 +4 -4
- package/sfdc/index.js +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-sales-eci",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"description": "Einstein Conversation Insights",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/sales-eci.js",
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
"test:unit": "jest"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@salesforce/lds-bindings": "^1.
|
|
48
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
52
|
-
"@salesforce/lds-karma": "^1.
|
|
51
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
52
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
53
53
|
},
|
|
54
54
|
"nx": {
|
|
55
55
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -1002,6 +1002,7 @@ let getConversationSummaryRelatedList_imperative;
|
|
|
1002
1002
|
let getTranscript_imperative;
|
|
1003
1003
|
const getConversationSummaryRelatedListMetadata = { apiFamily: 'eci', name: 'getConversationSummaryRelatedList', ttl: 60000 };
|
|
1004
1004
|
const getTranscriptMetadata = { apiFamily: 'eci', name: 'getTranscript', ttl: 2592000000 };
|
|
1005
|
+
// Notify Update Available
|
|
1005
1006
|
function bindExportsTo(luvio) {
|
|
1006
1007
|
// LDS Adapters
|
|
1007
1008
|
const getConversationSummaryRelatedList_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getConversationSummaryRelatedList', getConversationSummaryRelatedListAdapterFactory), getConversationSummaryRelatedListMetadata);
|
|
@@ -1017,7 +1018,8 @@ function bindExportsTo(luvio) {
|
|
|
1017
1018
|
getTranscript: createWireAdapterConstructor(luvio, getTranscript_ldsAdapter, getTranscriptMetadata),
|
|
1018
1019
|
// Imperative GET Adapters
|
|
1019
1020
|
getConversationSummaryRelatedList_imperative: createImperativeAdapter(luvio, getConversationSummaryRelatedList_ldsAdapter, getConversationSummaryRelatedListMetadata),
|
|
1020
|
-
getTranscript_imperative: createImperativeAdapter(luvio, getTranscript_ldsAdapter, getTranscriptMetadata)
|
|
1021
|
+
getTranscript_imperative: createImperativeAdapter(luvio, getTranscript_ldsAdapter, getTranscriptMetadata),
|
|
1022
|
+
// Notify Update Availables
|
|
1021
1023
|
};
|
|
1022
1024
|
}
|
|
1023
1025
|
withDefaultLuvio((luvio) => {
|
|
@@ -1027,9 +1029,9 @@ withDefaultLuvio((luvio) => {
|
|
|
1027
1029
|
getConversationSummaryRelatedListNotifyChange,
|
|
1028
1030
|
getTranscript,
|
|
1029
1031
|
getConversationSummaryRelatedList_imperative,
|
|
1030
|
-
getTranscript_imperative
|
|
1032
|
+
getTranscript_imperative,
|
|
1031
1033
|
} = bindExportsTo(luvio));
|
|
1032
1034
|
});
|
|
1033
1035
|
|
|
1034
1036
|
export { generateConversationSummary, getConversationSummaryRelatedList, getConversationSummaryRelatedListNotifyChange, getConversationSummaryRelatedList_imperative, getTranscript, getTranscript_imperative };
|
|
1035
|
-
// version: 1.
|
|
1037
|
+
// version: 1.261.0-10ee630e7
|