@salesforce/lds-adapters-industries-actionablelist 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.
|
@@ -2143,7 +2143,7 @@ function validate$g(obj, path = 'ActionableListFilterTemplateListOutputRepresent
|
|
|
2143
2143
|
for (let i = 0; i < obj_filterTemplates.length; i++) {
|
|
2144
2144
|
const obj_filterTemplates_item = obj_filterTemplates[i];
|
|
2145
2145
|
const path_filterTemplates_item = path_filterTemplates + '[' + i + ']';
|
|
2146
|
-
if (typeof obj_filterTemplates_item !== 'object') {
|
|
2146
|
+
if (typeof obj_filterTemplates_item !== 'object' || Array.isArray(obj_filterTemplates_item)) {
|
|
2147
2147
|
return new TypeError('Expected "object" but received "' + typeof obj_filterTemplates_item + '" (at "' + path_filterTemplates_item + '")');
|
|
2148
2148
|
}
|
|
2149
2149
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-actionablelist",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.362.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Wire adapter for actionable list connect APIs",
|
|
6
6
|
"main": "dist/es/es2018/industries-actionablelist.js",
|
|
@@ -42,11 +42,11 @@
|
|
|
42
42
|
"test": "nx build:karma && karma start --single-run"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@salesforce/lds-bindings": "^1.
|
|
45
|
+
"@salesforce/lds-bindings": "^1.362.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
49
|
-
"@salesforce/lds-karma": "^1.
|
|
48
|
+
"@salesforce/lds-compiler-plugins": "^1.362.0",
|
|
49
|
+
"@salesforce/lds-karma": "^1.362.0"
|
|
50
50
|
},
|
|
51
51
|
"nx": {
|
|
52
52
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -3786,7 +3786,7 @@ function validate$a(obj, path = 'ActionableListFilterTemplateListOutputRepresent
|
|
|
3786
3786
|
for (let i = 0; i < obj_filterTemplates.length; i++) {
|
|
3787
3787
|
const obj_filterTemplates_item = obj_filterTemplates[i];
|
|
3788
3788
|
const path_filterTemplates_item = path_filterTemplates + '[' + i + ']';
|
|
3789
|
-
if (typeof obj_filterTemplates_item !== 'object') {
|
|
3789
|
+
if (typeof obj_filterTemplates_item !== 'object' || Array.isArray(obj_filterTemplates_item)) {
|
|
3790
3790
|
return new TypeError('Expected "object" but received "' + typeof obj_filterTemplates_item + '" (at "' + path_filterTemplates_item + '")');
|
|
3791
3791
|
}
|
|
3792
3792
|
}
|
|
@@ -5925,4 +5925,4 @@ withDefaultLuvio((luvio) => {
|
|
|
5925
5925
|
});
|
|
5926
5926
|
|
|
5927
5927
|
export { createActionableListDefinition, createBulkActionPlans, deleteFilterTemplate, getActionableListDatasetInfo, getActionableListDatasetInfo_imperative, getActionableListDefinitions, getActionableListDefinitions_imperative, getActionableListMembers, getActionableListMembers_imperative, getDatasetColumnValues, getDatasetColumnValues_imperative, getFilterTemplate, getFilterTemplateNotifyChange, getFilterTemplate_imperative, getFilterTemplatesForListDefinition, getFilterTemplatesForListDefinition_imperative, upsertActionableList, upsertActionableListDatasetColumnUser, upsertActionableListFilterTemplate, upsertActionableListRefreshFilter };
|
|
5928
|
-
// version: 1.
|
|
5928
|
+
// version: 1.362.0-d2e818ae61
|