@salesforce/lds-adapters-sales-eci 1.360.1 → 1.362.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/dist/es/es2018/sales-eci.js +1 -1
- package/package.json +4 -4
- package/sfdc/index.js +2 -2
|
@@ -1231,7 +1231,7 @@ function validate$1(obj, path = 'ConversationSummaryListRepresentation') {
|
|
|
1231
1231
|
for (let i = 0; i < obj_conversationSummaryList.length; i++) {
|
|
1232
1232
|
const obj_conversationSummaryList_item = obj_conversationSummaryList[i];
|
|
1233
1233
|
const path_conversationSummaryList_item = path_conversationSummaryList + '[' + i + ']';
|
|
1234
|
-
if (typeof obj_conversationSummaryList_item !== 'object') {
|
|
1234
|
+
if (typeof obj_conversationSummaryList_item !== 'object' || Array.isArray(obj_conversationSummaryList_item)) {
|
|
1235
1235
|
return new TypeError('Expected "object" but received "' + typeof obj_conversationSummaryList_item + '" (at "' + path_conversationSummaryList_item + '")');
|
|
1236
1236
|
}
|
|
1237
1237
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-sales-eci",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.362.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.362.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
52
|
-
"@salesforce/lds-karma": "^1.
|
|
51
|
+
"@salesforce/lds-compiler-plugins": "^1.362.0",
|
|
52
|
+
"@salesforce/lds-karma": "^1.362.0"
|
|
53
53
|
},
|
|
54
54
|
"nx": {
|
|
55
55
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -833,7 +833,7 @@ function validate$4(obj, path = 'ConversationSummaryListRepresentation') {
|
|
|
833
833
|
for (let i = 0; i < obj_conversationSummaryList.length; i++) {
|
|
834
834
|
const obj_conversationSummaryList_item = obj_conversationSummaryList[i];
|
|
835
835
|
const path_conversationSummaryList_item = path_conversationSummaryList + '[' + i + ']';
|
|
836
|
-
if (typeof obj_conversationSummaryList_item !== 'object') {
|
|
836
|
+
if (typeof obj_conversationSummaryList_item !== 'object' || Array.isArray(obj_conversationSummaryList_item)) {
|
|
837
837
|
return new TypeError('Expected "object" but received "' + typeof obj_conversationSummaryList_item + '" (at "' + path_conversationSummaryList_item + '")');
|
|
838
838
|
}
|
|
839
839
|
}
|
|
@@ -1899,4 +1899,4 @@ withDefaultLuvio((luvio) => {
|
|
|
1899
1899
|
});
|
|
1900
1900
|
|
|
1901
1901
|
export { generateConversationSummary, getConversationGenerativeInsight, getConversationGenerativeInsightNotifyChange, getConversationGenerativeInsight_imperative, getConversationSummaryRelatedList, getConversationSummaryRelatedListNotifyChange, getConversationSummaryRelatedList_imperative, getTranscript, getTranscript_imperative, initiateMeeting, terminateMeeting };
|
|
1902
|
-
// version: 1.
|
|
1902
|
+
// version: 1.362.0-d2e818ae61
|