@salesforce/lds-adapters-industries-education 1.324.0 → 1.326.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.
|
@@ -336,6 +336,13 @@ function validate$1d(obj, path = 'LearningStatus') {
|
|
|
336
336
|
return new TypeError('Expected "string" but received "' + typeof obj_academicSeason + '" (at "' + path_academicSeason + '")');
|
|
337
337
|
}
|
|
338
338
|
}
|
|
339
|
+
if (obj.academicSessionId !== undefined) {
|
|
340
|
+
const obj_academicSessionId = obj.academicSessionId;
|
|
341
|
+
const path_academicSessionId = path + '.academicSessionId';
|
|
342
|
+
if (typeof obj_academicSessionId !== 'string') {
|
|
343
|
+
return new TypeError('Expected "string" but received "' + typeof obj_academicSessionId + '" (at "' + path_academicSessionId + '")');
|
|
344
|
+
}
|
|
345
|
+
}
|
|
339
346
|
if (obj.academicTermEnrollmentId !== undefined) {
|
|
340
347
|
const obj_academicTermEnrollmentId = obj.academicTermEnrollmentId;
|
|
341
348
|
const path_academicTermEnrollmentId = path + '.academicTermEnrollmentId';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "
|
|
2
|
+
export declare const VERSION = "dc0281943504f859c97796f295576dbb";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
5
5
|
export declare function normalize(input: LearningStatus, existing: LearningStatusNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): LearningStatusNormalized;
|
|
@@ -16,6 +16,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
16
16
|
export interface LearningStatusNormalized {
|
|
17
17
|
/** The season in which this learning is taken or will be taken */
|
|
18
18
|
academicSeason?: string;
|
|
19
|
+
/** Academic Session Id */
|
|
20
|
+
academicSessionId?: string;
|
|
19
21
|
/** Specifies the ID for academic term enrollment. */
|
|
20
22
|
academicTermEnrollmentId?: string;
|
|
21
23
|
/** Specifies the ID for academic term. */
|
|
@@ -49,6 +51,7 @@ export interface LearningStatusNormalized {
|
|
|
49
51
|
*/
|
|
50
52
|
export interface LearningStatus {
|
|
51
53
|
academicSeason?: string;
|
|
54
|
+
academicSessionId?: string;
|
|
52
55
|
academicTermEnrollmentId?: string;
|
|
53
56
|
academicTermId?: string;
|
|
54
57
|
academicYear?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-education",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.326.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.326.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
53
|
-
"@salesforce/lds-karma": "^1.
|
|
52
|
+
"@salesforce/lds-compiler-plugins": "^1.326.0",
|
|
53
|
+
"@salesforce/lds-karma": "^1.326.0"
|
|
54
54
|
},
|
|
55
55
|
"nx": {
|
|
56
56
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -5332,6 +5332,13 @@ function validate$A(obj, path = 'LearningStatus') {
|
|
|
5332
5332
|
return new TypeError('Expected "string" but received "' + typeof obj_academicSeason + '" (at "' + path_academicSeason + '")');
|
|
5333
5333
|
}
|
|
5334
5334
|
}
|
|
5335
|
+
if (obj.academicSessionId !== undefined) {
|
|
5336
|
+
const obj_academicSessionId = obj.academicSessionId;
|
|
5337
|
+
const path_academicSessionId = path + '.academicSessionId';
|
|
5338
|
+
if (typeof obj_academicSessionId !== 'string') {
|
|
5339
|
+
return new TypeError('Expected "string" but received "' + typeof obj_academicSessionId + '" (at "' + path_academicSessionId + '")');
|
|
5340
|
+
}
|
|
5341
|
+
}
|
|
5335
5342
|
if (obj.academicTermEnrollmentId !== undefined) {
|
|
5336
5343
|
const obj_academicTermEnrollmentId = obj.academicTermEnrollmentId;
|
|
5337
5344
|
const path_academicTermEnrollmentId = path + '.academicTermEnrollmentId';
|
|
@@ -10241,4 +10248,4 @@ withDefaultLuvio((luvio) => {
|
|
|
10241
10248
|
});
|
|
10242
10249
|
|
|
10243
10250
|
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 };
|
|
10244
|
-
// version: 1.
|
|
10251
|
+
// version: 1.326.0-c4e3f37efd
|
package/src/raml/api.raml
CHANGED
|
@@ -2164,6 +2164,10 @@ types:
|
|
|
2164
2164
|
description: The season in which this learning is taken or will be taken
|
|
2165
2165
|
type: string
|
|
2166
2166
|
required: false
|
|
2167
|
+
academicSessionId:
|
|
2168
|
+
description: Academic Session Id
|
|
2169
|
+
type: string
|
|
2170
|
+
required: false
|
|
2167
2171
|
academicTermEnrollmentId:
|
|
2168
2172
|
description: Specifies the ID for academic term enrollment.
|
|
2169
2173
|
type: string
|