@salesforce/lds-adapters-industries-education 1.360.0 → 1.361.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.
|
@@ -9807,7 +9807,7 @@ function validate(obj, path = 'AptsTasksPlansOutputRepresentation') {
|
|
|
9807
9807
|
for (let i = 0; i < obj_tasks.length; i++) {
|
|
9808
9808
|
const obj_tasks_item = obj_tasks[i];
|
|
9809
9809
|
const path_tasks_item = path_tasks + '[' + i + ']';
|
|
9810
|
-
if (typeof obj_tasks_item !== 'object') {
|
|
9810
|
+
if (typeof obj_tasks_item !== 'object' || Array.isArray(obj_tasks_item)) {
|
|
9811
9811
|
return new TypeError('Expected "object" but received "' + typeof obj_tasks_item + '" (at "' + path_tasks_item + '")');
|
|
9812
9812
|
}
|
|
9813
9813
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-education",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.361.0",
|
|
4
4
|
"description": "Education Cloud related actions",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/es/es2018/industries-education.js",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"test:unit": "jest --config=./jest.config.js"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@salesforce/lds-bindings": "^1.
|
|
49
|
+
"@salesforce/lds-bindings": "^1.361.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
53
|
-
"@salesforce/lds-karma": "^1.
|
|
52
|
+
"@salesforce/lds-compiler-plugins": "^1.361.0",
|
|
53
|
+
"@salesforce/lds-karma": "^1.361.0"
|
|
54
54
|
},
|
|
55
55
|
"nx": {
|
|
56
56
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -3936,7 +3936,7 @@ function validate$J(obj, path = 'AptsTasksPlansOutputRepresentation') {
|
|
|
3936
3936
|
for (let i = 0; i < obj_tasks.length; i++) {
|
|
3937
3937
|
const obj_tasks_item = obj_tasks[i];
|
|
3938
3938
|
const path_tasks_item = path_tasks + '[' + i + ']';
|
|
3939
|
-
if (typeof obj_tasks_item !== 'object') {
|
|
3939
|
+
if (typeof obj_tasks_item !== 'object' || Array.isArray(obj_tasks_item)) {
|
|
3940
3940
|
return new TypeError('Expected "object" but received "' + typeof obj_tasks_item + '" (at "' + path_tasks_item + '")');
|
|
3941
3941
|
}
|
|
3942
3942
|
}
|
|
@@ -10295,4 +10295,4 @@ withDefaultLuvio((luvio) => {
|
|
|
10295
10295
|
});
|
|
10296
10296
|
|
|
10297
10297
|
export { createCarePlans, createLearnings, createPreliminaryApplicationReferences, createTask, getAcademicTerms, getAcademicTerms_imperative, getApplicationDetails, getApplicationDetails_imperative, getApplications, getApplications_imperative, getAptsTasksPlans, getAptsTasksPlans_imperative, getAvailableTimeSlots, getAvailableTimeSlots_imperative, getAvailableTopics, getAvailableTopics_imperative, getIndividualApplicationTask, getIndividualApplicationTask_imperative, getLearnerProgress, getLearnerProgress_imperative, getLearning, getLearning_imperative, getNewApplicationPreliminaryData, getNewApplicationPreliminaryData_imperative, getPersonPublicProfile, getPersonPublicProfile_imperative, getPicklistValues, getPicklistValues_imperative, getPreviewLearningProgramPlan, getPreviewLearningProgramPlan_imperative, getProgramTermApplicationTimelines, getProgramTermApplicationTimelines_imperative, getSuccessTeam, getSuccessTeam_imperative, postBenefitAssignment, postMatchingSelector, postMatchingSelector_imperative, postPublishLearningProgramPlan, postValidateLearningFoundationList, postValidateLearningFoundationList_imperative, updateLearnings, updateTaskStatus };
|
|
10298
|
-
// version: 1.
|
|
10298
|
+
// version: 1.361.0-eb406138cb
|