@salesforce/lds-adapters-industries-education 1.354.0 → 1.355.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/industries-education.js +10 -10
- package/dist/es/es2018/types/src/generated/types/PreliminaryApplicationReferencesInputListWrapper.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/types/PreliminaryApplicationReferencesInputRepresentation.d.ts +3 -3
- package/package.json +4 -4
- package/sfdc/index.js +10 -10
- package/src/raml/api.raml +11 -1
|
@@ -6161,16 +6161,16 @@ function validate$o(obj, path = 'PreliminaryApplicationReferencesInputRepresenta
|
|
|
6161
6161
|
if (typeof obj_applicantId !== 'string') {
|
|
6162
6162
|
return new TypeError('Expected "string" but received "' + typeof obj_applicantId + '" (at "' + path_applicantId + '")');
|
|
6163
6163
|
}
|
|
6164
|
-
const
|
|
6165
|
-
const
|
|
6166
|
-
if (!ArrayIsArray(
|
|
6167
|
-
return new TypeError('Expected "array" but received "' + typeof
|
|
6168
|
-
}
|
|
6169
|
-
for (let i = 0; i <
|
|
6170
|
-
const
|
|
6171
|
-
const
|
|
6172
|
-
if (typeof
|
|
6173
|
-
return new TypeError('Expected "string" but received "' + typeof
|
|
6164
|
+
const obj_programTrmAppTmlnListWrapper = obj.programTrmAppTmlnListWrapper;
|
|
6165
|
+
const path_programTrmAppTmlnListWrapper = path + '.programTrmAppTmlnListWrapper';
|
|
6166
|
+
if (!ArrayIsArray(obj_programTrmAppTmlnListWrapper)) {
|
|
6167
|
+
return new TypeError('Expected "array" but received "' + typeof obj_programTrmAppTmlnListWrapper + '" (at "' + path_programTrmAppTmlnListWrapper + '")');
|
|
6168
|
+
}
|
|
6169
|
+
for (let i = 0; i < obj_programTrmAppTmlnListWrapper.length; i++) {
|
|
6170
|
+
const obj_programTrmAppTmlnListWrapper_item = obj_programTrmAppTmlnListWrapper[i];
|
|
6171
|
+
const path_programTrmAppTmlnListWrapper_item = path_programTrmAppTmlnListWrapper + '[' + i + ']';
|
|
6172
|
+
if (typeof obj_programTrmAppTmlnListWrapper_item !== 'string') {
|
|
6173
|
+
return new TypeError('Expected "string" but received "' + typeof obj_programTrmAppTmlnListWrapper_item + '" (at "' + path_programTrmAppTmlnListWrapper_item + '")');
|
|
6174
6174
|
}
|
|
6175
6175
|
}
|
|
6176
6176
|
})();
|
|
@@ -0,0 +1,28 @@
|
|
|
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 = "1de91e1e9c1f0129d0fadefcfd6e1357";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: PreliminaryApplicationReferencesInputListWrapper, existing: PreliminaryApplicationReferencesInputListWrapperNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PreliminaryApplicationReferencesInputListWrapperNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: PreliminaryApplicationReferencesInputListWrapperNormalized, incoming: PreliminaryApplicationReferencesInputListWrapperNormalized): boolean;
|
|
8
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: PreliminaryApplicationReferencesInputListWrapper, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* List Wrapper of program term application timeline Ids.
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface PreliminaryApplicationReferencesInputListWrapperNormalized {
|
|
17
|
+
/** List of IDs for the program term application timelines associated with the preliminary application references. */
|
|
18
|
+
programTrmAppTmlnIds: Array<string>;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* List Wrapper of program term application timeline Ids.
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* (none)
|
|
25
|
+
*/
|
|
26
|
+
export interface PreliminaryApplicationReferencesInputListWrapper {
|
|
27
|
+
programTrmAppTmlnIds: Array<string>;
|
|
28
|
+
}
|
|
@@ -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 = "eb42bc99d8353c75f4cf8a0089b6c4b9";
|
|
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: PreliminaryApplicationReferencesInputRepresentation, existing: PreliminaryApplicationReferencesInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PreliminaryApplicationReferencesInputRepresentationNormalized;
|
|
@@ -17,7 +17,7 @@ export interface PreliminaryApplicationReferencesInputRepresentationNormalized {
|
|
|
17
17
|
/** The ID of the contact record associated with the applicant. */
|
|
18
18
|
applicantId: string;
|
|
19
19
|
/** List of IDs for the program term application timelines associated with the preliminary application references. */
|
|
20
|
-
|
|
20
|
+
programTrmAppTmlnListWrapper: Array<string>;
|
|
21
21
|
}
|
|
22
22
|
/**
|
|
23
23
|
* Representation of the input for the save preliminary application reference request.
|
|
@@ -27,5 +27,5 @@ export interface PreliminaryApplicationReferencesInputRepresentationNormalized {
|
|
|
27
27
|
*/
|
|
28
28
|
export interface PreliminaryApplicationReferencesInputRepresentation {
|
|
29
29
|
applicantId: string;
|
|
30
|
-
|
|
30
|
+
programTrmAppTmlnListWrapper: Array<string>;
|
|
31
31
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-education",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.355.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.355.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
53
|
-
"@salesforce/lds-karma": "^1.
|
|
52
|
+
"@salesforce/lds-compiler-plugins": "^1.355.0",
|
|
53
|
+
"@salesforce/lds-karma": "^1.355.0"
|
|
54
54
|
},
|
|
55
55
|
"nx": {
|
|
56
56
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -1285,16 +1285,16 @@ function validate$$(obj, path = 'PreliminaryApplicationReferencesInputRepresenta
|
|
|
1285
1285
|
if (typeof obj_applicantId !== 'string') {
|
|
1286
1286
|
return new TypeError('Expected "string" but received "' + typeof obj_applicantId + '" (at "' + path_applicantId + '")');
|
|
1287
1287
|
}
|
|
1288
|
-
const
|
|
1289
|
-
const
|
|
1290
|
-
if (!ArrayIsArray(
|
|
1291
|
-
return new TypeError('Expected "array" but received "' + typeof
|
|
1288
|
+
const obj_programTrmAppTmlnListWrapper = obj.programTrmAppTmlnListWrapper;
|
|
1289
|
+
const path_programTrmAppTmlnListWrapper = path + '.programTrmAppTmlnListWrapper';
|
|
1290
|
+
if (!ArrayIsArray(obj_programTrmAppTmlnListWrapper)) {
|
|
1291
|
+
return new TypeError('Expected "array" but received "' + typeof obj_programTrmAppTmlnListWrapper + '" (at "' + path_programTrmAppTmlnListWrapper + '")');
|
|
1292
1292
|
}
|
|
1293
|
-
for (let i = 0; i <
|
|
1294
|
-
const
|
|
1295
|
-
const
|
|
1296
|
-
if (typeof
|
|
1297
|
-
return new TypeError('Expected "string" but received "' + typeof
|
|
1293
|
+
for (let i = 0; i < obj_programTrmAppTmlnListWrapper.length; i++) {
|
|
1294
|
+
const obj_programTrmAppTmlnListWrapper_item = obj_programTrmAppTmlnListWrapper[i];
|
|
1295
|
+
const path_programTrmAppTmlnListWrapper_item = path_programTrmAppTmlnListWrapper + '[' + i + ']';
|
|
1296
|
+
if (typeof obj_programTrmAppTmlnListWrapper_item !== 'string') {
|
|
1297
|
+
return new TypeError('Expected "string" but received "' + typeof obj_programTrmAppTmlnListWrapper_item + '" (at "' + path_programTrmAppTmlnListWrapper_item + '")');
|
|
1298
1298
|
}
|
|
1299
1299
|
}
|
|
1300
1300
|
})();
|
|
@@ -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.355.0-df8576becd
|
package/src/raml/api.raml
CHANGED
|
@@ -2454,6 +2454,16 @@ types:
|
|
|
2454
2454
|
description: Description provided by the user for their profile.
|
|
2455
2455
|
type: string
|
|
2456
2456
|
required: false
|
|
2457
|
+
PreliminaryApplicationReferencesInputListWrapper:
|
|
2458
|
+
description: List Wrapper of program term application timeline Ids.
|
|
2459
|
+
type: object
|
|
2460
|
+
properties:
|
|
2461
|
+
programTrmAppTmlnIds:
|
|
2462
|
+
description: List of IDs for the program term application timelines associated
|
|
2463
|
+
with the preliminary application references.
|
|
2464
|
+
type: array
|
|
2465
|
+
items:
|
|
2466
|
+
type: string
|
|
2457
2467
|
PreliminaryApplicationReferencesInputRepresentation:
|
|
2458
2468
|
description: Representation of the input for the save preliminary application
|
|
2459
2469
|
reference request.
|
|
@@ -2462,7 +2472,7 @@ types:
|
|
|
2462
2472
|
applicantId:
|
|
2463
2473
|
description: The ID of the contact record associated with the applicant.
|
|
2464
2474
|
type: string
|
|
2465
|
-
|
|
2475
|
+
programTrmAppTmlnListWrapper:
|
|
2466
2476
|
description: List of IDs for the program term application timelines associated
|
|
2467
2477
|
with the preliminary application references.
|
|
2468
2478
|
type: array
|