@salesforce/lds-adapters-industries-education 1.365.0 → 1.366.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 +52 -7
- package/dist/es/es2018/types/src/generated/types/LearningEquivalency.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/LearningStatus.d.ts +5 -1
- package/package.json +4 -4
- package/sfdc/index.js +146 -101
- package/src/raml/api.raml +21 -0
|
@@ -173,7 +173,7 @@ var DiscriminatorValues;
|
|
|
173
173
|
DiscriminatorValues["LearningCourse"] = "LearningCourse";
|
|
174
174
|
DiscriminatorValues["LearningProgram"] = "LearningProgram";
|
|
175
175
|
})(DiscriminatorValues || (DiscriminatorValues = {}));
|
|
176
|
-
function validate$
|
|
176
|
+
function validate$1h(obj, path = 'LearningOutput') {
|
|
177
177
|
const v_error = (() => {
|
|
178
178
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
179
179
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -267,7 +267,7 @@ function validate$1g(obj, path = 'LearningOutput') {
|
|
|
267
267
|
return v_error === undefined ? null : v_error;
|
|
268
268
|
}
|
|
269
269
|
|
|
270
|
-
function validate$
|
|
270
|
+
function validate$1g(obj, path = 'LearningOutcomeItemOutput') {
|
|
271
271
|
const v_error = (() => {
|
|
272
272
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
273
273
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -331,6 +331,36 @@ function validate$1f(obj, path = 'LearningOutcomeItemOutput') {
|
|
|
331
331
|
return v_error === undefined ? null : v_error;
|
|
332
332
|
}
|
|
333
333
|
|
|
334
|
+
function validate$1f(obj, path = 'LearningEquivalency') {
|
|
335
|
+
const v_error = (() => {
|
|
336
|
+
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
337
|
+
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
338
|
+
}
|
|
339
|
+
if (obj.equivalencyId !== undefined) {
|
|
340
|
+
const obj_equivalencyId = obj.equivalencyId;
|
|
341
|
+
const path_equivalencyId = path + '.equivalencyId';
|
|
342
|
+
if (typeof obj_equivalencyId !== 'string') {
|
|
343
|
+
return new TypeError('Expected "string" but received "' + typeof obj_equivalencyId + '" (at "' + path_equivalencyId + '")');
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
if (obj.equivalencyName !== undefined) {
|
|
347
|
+
const obj_equivalencyName = obj.equivalencyName;
|
|
348
|
+
const path_equivalencyName = path + '.equivalencyName';
|
|
349
|
+
if (typeof obj_equivalencyName !== 'string') {
|
|
350
|
+
return new TypeError('Expected "string" but received "' + typeof obj_equivalencyName + '" (at "' + path_equivalencyName + '")');
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
if (obj.typeLabel !== undefined) {
|
|
354
|
+
const obj_typeLabel = obj.typeLabel;
|
|
355
|
+
const path_typeLabel = path + '.typeLabel';
|
|
356
|
+
if (typeof obj_typeLabel !== 'string') {
|
|
357
|
+
return new TypeError('Expected "string" but received "' + typeof obj_typeLabel + '" (at "' + path_typeLabel + '")');
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
})();
|
|
361
|
+
return v_error === undefined ? null : v_error;
|
|
362
|
+
}
|
|
363
|
+
|
|
334
364
|
function validate$1e(obj, path = 'LearningStatus') {
|
|
335
365
|
const v_error = (() => {
|
|
336
366
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -378,6 +408,21 @@ function validate$1e(obj, path = 'LearningStatus') {
|
|
|
378
408
|
return new TypeError('Expected "string" but received "' + typeof obj_durationUnit + '" (at "' + path_durationUnit + '")');
|
|
379
409
|
}
|
|
380
410
|
}
|
|
411
|
+
const obj_equivalency = obj.equivalency;
|
|
412
|
+
const path_equivalency = path + '.equivalency';
|
|
413
|
+
if (!ArrayIsArray(obj_equivalency)) {
|
|
414
|
+
return new TypeError('Expected "array" but received "' + typeof obj_equivalency + '" (at "' + path_equivalency + '")');
|
|
415
|
+
}
|
|
416
|
+
for (let i = 0; i < obj_equivalency.length; i++) {
|
|
417
|
+
const obj_equivalency_item = obj_equivalency[i];
|
|
418
|
+
const path_equivalency_item = path_equivalency + '[' + i + ']';
|
|
419
|
+
const referencepath_equivalency_itemValidationError = validate$1f(obj_equivalency_item, path_equivalency_item);
|
|
420
|
+
if (referencepath_equivalency_itemValidationError !== null) {
|
|
421
|
+
let message = 'Object doesn\'t match LearningEquivalency (at "' + path_equivalency_item + '")\n';
|
|
422
|
+
message += referencepath_equivalency_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
423
|
+
return new TypeError(message);
|
|
424
|
+
}
|
|
425
|
+
}
|
|
381
426
|
if (obj.learningId !== undefined) {
|
|
382
427
|
const obj_learningId = obj.learningId;
|
|
383
428
|
const path_learningId = path + '.learningId';
|
|
@@ -448,7 +493,7 @@ function validate$1d(obj, path = 'LearningFulfiller') {
|
|
|
448
493
|
if (obj.learning !== undefined) {
|
|
449
494
|
const obj_learning = obj.learning;
|
|
450
495
|
const path_learning = path + '.learning';
|
|
451
|
-
const referencepath_learningValidationError = validate$
|
|
496
|
+
const referencepath_learningValidationError = validate$1h(obj_learning, path_learning);
|
|
452
497
|
if (referencepath_learningValidationError !== null) {
|
|
453
498
|
let message = 'Object doesn\'t match LearningOutput (at "' + path_learning + '")\n';
|
|
454
499
|
message += referencepath_learningValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -458,7 +503,7 @@ function validate$1d(obj, path = 'LearningFulfiller') {
|
|
|
458
503
|
if (obj.learningOutcomeItem !== undefined) {
|
|
459
504
|
const obj_learningOutcomeItem = obj.learningOutcomeItem;
|
|
460
505
|
const path_learningOutcomeItem = path + '.learningOutcomeItem';
|
|
461
|
-
const referencepath_learningOutcomeItemValidationError = validate$
|
|
506
|
+
const referencepath_learningOutcomeItemValidationError = validate$1g(obj_learningOutcomeItem, path_learningOutcomeItem);
|
|
462
507
|
if (referencepath_learningOutcomeItemValidationError !== null) {
|
|
463
508
|
let message = 'Object doesn\'t match LearningOutcomeItemOutput (at "' + path_learningOutcomeItem + '")\n';
|
|
464
509
|
message += referencepath_learningOutcomeItemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -700,7 +745,7 @@ function validate$19(obj, path = 'GetLearningOutputRepresentation') {
|
|
|
700
745
|
if (obj.learning !== undefined) {
|
|
701
746
|
const obj_learning = obj.learning;
|
|
702
747
|
const path_learning = path + '.learning';
|
|
703
|
-
const referencepath_learningValidationError = validate$
|
|
748
|
+
const referencepath_learningValidationError = validate$1h(obj_learning, path_learning);
|
|
704
749
|
if (referencepath_learningValidationError !== null) {
|
|
705
750
|
let message = 'Object doesn\'t match LearningOutput (at "' + path_learning + '")\n';
|
|
706
751
|
message += referencepath_learningValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -750,7 +795,7 @@ function validate$19(obj, path = 'GetLearningOutputRepresentation') {
|
|
|
750
795
|
for (let i = 0; i < obj_outcomes.length; i++) {
|
|
751
796
|
const obj_outcomes_item = obj_outcomes[i];
|
|
752
797
|
const path_outcomes_item = path_outcomes + '[' + i + ']';
|
|
753
|
-
const referencepath_outcomes_itemValidationError = validate$
|
|
798
|
+
const referencepath_outcomes_itemValidationError = validate$1g(obj_outcomes_item, path_outcomes_item);
|
|
754
799
|
if (referencepath_outcomes_itemValidationError !== null) {
|
|
755
800
|
let message = 'Object doesn\'t match LearningOutcomeItemOutput (at "' + path_outcomes_item + '")\n';
|
|
756
801
|
message += referencepath_outcomes_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -3273,7 +3318,7 @@ function validate$S(obj, path = 'LearnerProgram') {
|
|
|
3273
3318
|
if (obj.learningOutcomeItem !== undefined) {
|
|
3274
3319
|
const obj_learningOutcomeItem = obj.learningOutcomeItem;
|
|
3275
3320
|
const path_learningOutcomeItem = path + '.learningOutcomeItem';
|
|
3276
|
-
const referencepath_learningOutcomeItemValidationError = validate$
|
|
3321
|
+
const referencepath_learningOutcomeItemValidationError = validate$1g(obj_learningOutcomeItem, path_learningOutcomeItem);
|
|
3277
3322
|
if (referencepath_learningOutcomeItemValidationError !== null) {
|
|
3278
3323
|
let message = 'Object doesn\'t match LearningOutcomeItemOutput (at "' + path_learningOutcomeItem + '")\n';
|
|
3279
3324
|
message += referencepath_learningOutcomeItemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -0,0 +1,34 @@
|
|
|
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 = "6641e60371a60a64b33d973a6073a3bf";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: LearningEquivalency, existing: LearningEquivalencyNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): LearningEquivalencyNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: LearningEquivalencyNormalized, incoming: LearningEquivalencyNormalized): 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: LearningEquivalency, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Equivalency like Transfer credit, Work Equivalency, etc.
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface LearningEquivalencyNormalized {
|
|
17
|
+
/** ID of the Equivalency */
|
|
18
|
+
equivalencyId?: string;
|
|
19
|
+
/** Name of the Equivalency */
|
|
20
|
+
equivalencyName?: string;
|
|
21
|
+
/** type of the Equivalency */
|
|
22
|
+
typeLabel?: string;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Equivalency like Transfer credit, Work Equivalency, etc.
|
|
26
|
+
*
|
|
27
|
+
* Keys:
|
|
28
|
+
* (none)
|
|
29
|
+
*/
|
|
30
|
+
export interface LearningEquivalency {
|
|
31
|
+
equivalencyId?: string;
|
|
32
|
+
equivalencyName?: string;
|
|
33
|
+
typeLabel?: string;
|
|
34
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { LearningEquivalency as LearningEquivalency_LearningEquivalency } from './LearningEquivalency';
|
|
1
2
|
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 = "
|
|
3
|
+
export declare const VERSION = "5eca04ba460f4fede6472c81d60c2e34";
|
|
3
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
5
|
export declare const RepresentationType: string;
|
|
5
6
|
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;
|
|
@@ -26,6 +27,8 @@ export interface LearningStatusNormalized {
|
|
|
26
27
|
academicYear?: string;
|
|
27
28
|
/** The unit of measurement for completion of the course */
|
|
28
29
|
durationUnit?: string;
|
|
30
|
+
/** List of equivalencies like Transfer credit, Work Equivalency, etc. */
|
|
31
|
+
equivalency: Array<LearningEquivalency_LearningEquivalency>;
|
|
29
32
|
/** Learning Id */
|
|
30
33
|
learningId?: string;
|
|
31
34
|
/** The letter grade awarded to the learner for completing the course */
|
|
@@ -56,6 +59,7 @@ export interface LearningStatus {
|
|
|
56
59
|
academicTermId?: string;
|
|
57
60
|
academicYear?: string;
|
|
58
61
|
durationUnit?: string;
|
|
62
|
+
equivalency: Array<LearningEquivalency_LearningEquivalency>;
|
|
59
63
|
learningId?: string;
|
|
60
64
|
letterGrade?: string;
|
|
61
65
|
mappedStatusDefinition: Array<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.366.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.366.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
53
|
-
"@salesforce/lds-karma": "^1.
|
|
52
|
+
"@salesforce/lds-compiler-plugins": "^1.366.0",
|
|
53
|
+
"@salesforce/lds-karma": "^1.366.0"
|
|
54
54
|
},
|
|
55
55
|
"nx": {
|
|
56
56
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -178,7 +178,7 @@ function createLink(ref) {
|
|
|
178
178
|
};
|
|
179
179
|
}
|
|
180
180
|
|
|
181
|
-
function validate$
|
|
181
|
+
function validate$1h(obj, path = 'CarePlanTaskInputRepresentation') {
|
|
182
182
|
const v_error = (() => {
|
|
183
183
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
184
184
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -243,7 +243,7 @@ function validate$1g(obj, path = 'CarePlanTaskInputRepresentation') {
|
|
|
243
243
|
return v_error === undefined ? null : v_error;
|
|
244
244
|
}
|
|
245
245
|
|
|
246
|
-
function validate$
|
|
246
|
+
function validate$1g(obj, path = 'BenefitDisbursementForBenefitSessionInputRepresentation') {
|
|
247
247
|
const v_error = (() => {
|
|
248
248
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
249
249
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -297,7 +297,7 @@ function validate$1f(obj, path = 'BenefitDisbursementForBenefitSessionInputRepre
|
|
|
297
297
|
return v_error === undefined ? null : v_error;
|
|
298
298
|
}
|
|
299
299
|
|
|
300
|
-
function validate$
|
|
300
|
+
function validate$1f(obj, path = 'BenefitDisbursementListInputRepresentation') {
|
|
301
301
|
const v_error = (() => {
|
|
302
302
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
303
303
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -310,7 +310,7 @@ function validate$1e(obj, path = 'BenefitDisbursementListInputRepresentation') {
|
|
|
310
310
|
for (let i = 0; i < obj_records.length; i++) {
|
|
311
311
|
const obj_records_item = obj_records[i];
|
|
312
312
|
const path_records_item = path_records + '[' + i + ']';
|
|
313
|
-
const referencepath_records_itemValidationError = validate$
|
|
313
|
+
const referencepath_records_itemValidationError = validate$1g(obj_records_item, path_records_item);
|
|
314
314
|
if (referencepath_records_itemValidationError !== null) {
|
|
315
315
|
let message = 'Object doesn\'t match BenefitDisbursementForBenefitSessionInputRepresentation (at "' + path_records_item + '")\n';
|
|
316
316
|
message += referencepath_records_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -321,7 +321,7 @@ function validate$1e(obj, path = 'BenefitDisbursementListInputRepresentation') {
|
|
|
321
321
|
return v_error === undefined ? null : v_error;
|
|
322
322
|
}
|
|
323
323
|
|
|
324
|
-
function validate$
|
|
324
|
+
function validate$1e(obj, path = 'CustomFieldInputRepresentation') {
|
|
325
325
|
const v_error = (() => {
|
|
326
326
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
327
327
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -347,7 +347,7 @@ function validate$1d(obj, path = 'CustomFieldInputRepresentation') {
|
|
|
347
347
|
return v_error === undefined ? null : v_error;
|
|
348
348
|
}
|
|
349
349
|
|
|
350
|
-
function validate$
|
|
350
|
+
function validate$1d(obj, path = 'CustomFieldListInputRepresentation') {
|
|
351
351
|
const v_error = (() => {
|
|
352
352
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
353
353
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -360,7 +360,7 @@ function validate$1c(obj, path = 'CustomFieldListInputRepresentation') {
|
|
|
360
360
|
for (let i = 0; i < obj_records.length; i++) {
|
|
361
361
|
const obj_records_item = obj_records[i];
|
|
362
362
|
const path_records_item = path_records + '[' + i + ']';
|
|
363
|
-
const referencepath_records_itemValidationError = validate$
|
|
363
|
+
const referencepath_records_itemValidationError = validate$1e(obj_records_item, path_records_item);
|
|
364
364
|
if (referencepath_records_itemValidationError !== null) {
|
|
365
365
|
let message = 'Object doesn\'t match CustomFieldInputRepresentation (at "' + path_records_item + '")\n';
|
|
366
366
|
message += referencepath_records_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -371,7 +371,7 @@ function validate$1c(obj, path = 'CustomFieldListInputRepresentation') {
|
|
|
371
371
|
return v_error === undefined ? null : v_error;
|
|
372
372
|
}
|
|
373
373
|
|
|
374
|
-
function validate$
|
|
374
|
+
function validate$1c(obj, path = 'BenefitAssignmentInputRepresentation') {
|
|
375
375
|
const v_error = (() => {
|
|
376
376
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
377
377
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -379,7 +379,7 @@ function validate$1b(obj, path = 'BenefitAssignmentInputRepresentation') {
|
|
|
379
379
|
if (obj.benefitAssignmentTasks !== undefined) {
|
|
380
380
|
const obj_benefitAssignmentTasks = obj.benefitAssignmentTasks;
|
|
381
381
|
const path_benefitAssignmentTasks = path + '.benefitAssignmentTasks';
|
|
382
|
-
const referencepath_benefitAssignmentTasksValidationError = validate$
|
|
382
|
+
const referencepath_benefitAssignmentTasksValidationError = validate$1h(obj_benefitAssignmentTasks, path_benefitAssignmentTasks);
|
|
383
383
|
if (referencepath_benefitAssignmentTasksValidationError !== null) {
|
|
384
384
|
let message = 'Object doesn\'t match CarePlanTaskInputRepresentation (at "' + path_benefitAssignmentTasks + '")\n';
|
|
385
385
|
message += referencepath_benefitAssignmentTasksValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -389,7 +389,7 @@ function validate$1b(obj, path = 'BenefitAssignmentInputRepresentation') {
|
|
|
389
389
|
if (obj.benefitDisbursements !== undefined) {
|
|
390
390
|
const obj_benefitDisbursements = obj.benefitDisbursements;
|
|
391
391
|
const path_benefitDisbursements = path + '.benefitDisbursements';
|
|
392
|
-
const referencepath_benefitDisbursementsValidationError = validate$
|
|
392
|
+
const referencepath_benefitDisbursementsValidationError = validate$1f(obj_benefitDisbursements, path_benefitDisbursements);
|
|
393
393
|
if (referencepath_benefitDisbursementsValidationError !== null) {
|
|
394
394
|
let message = 'Object doesn\'t match BenefitDisbursementListInputRepresentation (at "' + path_benefitDisbursements + '")\n';
|
|
395
395
|
message += referencepath_benefitDisbursementsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -411,7 +411,7 @@ function validate$1b(obj, path = 'BenefitAssignmentInputRepresentation') {
|
|
|
411
411
|
if (obj.customFields !== undefined) {
|
|
412
412
|
const obj_customFields = obj.customFields;
|
|
413
413
|
const path_customFields = path + '.customFields';
|
|
414
|
-
const referencepath_customFieldsValidationError = validate$
|
|
414
|
+
const referencepath_customFieldsValidationError = validate$1d(obj_customFields, path_customFields);
|
|
415
415
|
if (referencepath_customFieldsValidationError !== null) {
|
|
416
416
|
let message = 'Object doesn\'t match CustomFieldListInputRepresentation (at "' + path_customFields + '")\n';
|
|
417
417
|
message += referencepath_customFieldsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -482,7 +482,7 @@ function validate$1b(obj, path = 'BenefitAssignmentInputRepresentation') {
|
|
|
482
482
|
return v_error === undefined ? null : v_error;
|
|
483
483
|
}
|
|
484
484
|
|
|
485
|
-
function validate$
|
|
485
|
+
function validate$1b(obj, path = 'BenefitAssignmentListInputRepresentation') {
|
|
486
486
|
const v_error = (() => {
|
|
487
487
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
488
488
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -495,7 +495,7 @@ function validate$1a(obj, path = 'BenefitAssignmentListInputRepresentation') {
|
|
|
495
495
|
for (let i = 0; i < obj_records.length; i++) {
|
|
496
496
|
const obj_records_item = obj_records[i];
|
|
497
497
|
const path_records_item = path_records + '[' + i + ']';
|
|
498
|
-
const referencepath_records_itemValidationError = validate$
|
|
498
|
+
const referencepath_records_itemValidationError = validate$1c(obj_records_item, path_records_item);
|
|
499
499
|
if (referencepath_records_itemValidationError !== null) {
|
|
500
500
|
let message = 'Object doesn\'t match BenefitAssignmentInputRepresentation (at "' + path_records_item + '")\n';
|
|
501
501
|
message += referencepath_records_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -506,7 +506,7 @@ function validate$1a(obj, path = 'BenefitAssignmentListInputRepresentation') {
|
|
|
506
506
|
return v_error === undefined ? null : v_error;
|
|
507
507
|
}
|
|
508
508
|
|
|
509
|
-
function validate$
|
|
509
|
+
function validate$1a(obj, path = 'GoalAssignmentInputRepresentation') {
|
|
510
510
|
const v_error = (() => {
|
|
511
511
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
512
512
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -514,7 +514,7 @@ function validate$19(obj, path = 'GoalAssignmentInputRepresentation') {
|
|
|
514
514
|
if (obj.associatedBenefitAssignments !== undefined) {
|
|
515
515
|
const obj_associatedBenefitAssignments = obj.associatedBenefitAssignments;
|
|
516
516
|
const path_associatedBenefitAssignments = path + '.associatedBenefitAssignments';
|
|
517
|
-
const referencepath_associatedBenefitAssignmentsValidationError = validate$
|
|
517
|
+
const referencepath_associatedBenefitAssignmentsValidationError = validate$1b(obj_associatedBenefitAssignments, path_associatedBenefitAssignments);
|
|
518
518
|
if (referencepath_associatedBenefitAssignmentsValidationError !== null) {
|
|
519
519
|
let message = 'Object doesn\'t match BenefitAssignmentListInputRepresentation (at "' + path_associatedBenefitAssignments + '")\n';
|
|
520
520
|
message += referencepath_associatedBenefitAssignmentsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -524,7 +524,7 @@ function validate$19(obj, path = 'GoalAssignmentInputRepresentation') {
|
|
|
524
524
|
if (obj.associatedSubGoalAssignments !== undefined) {
|
|
525
525
|
const obj_associatedSubGoalAssignments = obj.associatedSubGoalAssignments;
|
|
526
526
|
const path_associatedSubGoalAssignments = path + '.associatedSubGoalAssignments';
|
|
527
|
-
const referencepath_associatedSubGoalAssignmentsValidationError = validate$
|
|
527
|
+
const referencepath_associatedSubGoalAssignmentsValidationError = validate$19(obj_associatedSubGoalAssignments, path_associatedSubGoalAssignments);
|
|
528
528
|
if (referencepath_associatedSubGoalAssignmentsValidationError !== null) {
|
|
529
529
|
let message = 'Object doesn\'t match GoalAssignmentListInputRepresentation (at "' + path_associatedSubGoalAssignments + '")\n';
|
|
530
530
|
message += referencepath_associatedSubGoalAssignmentsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -544,7 +544,7 @@ function validate$19(obj, path = 'GoalAssignmentInputRepresentation') {
|
|
|
544
544
|
if (obj.customFields !== undefined) {
|
|
545
545
|
const obj_customFields = obj.customFields;
|
|
546
546
|
const path_customFields = path + '.customFields';
|
|
547
|
-
const referencepath_customFieldsValidationError = validate$
|
|
547
|
+
const referencepath_customFieldsValidationError = validate$1d(obj_customFields, path_customFields);
|
|
548
548
|
if (referencepath_customFieldsValidationError !== null) {
|
|
549
549
|
let message = 'Object doesn\'t match CustomFieldListInputRepresentation (at "' + path_customFields + '")\n';
|
|
550
550
|
message += referencepath_customFieldsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -568,7 +568,7 @@ function validate$19(obj, path = 'GoalAssignmentInputRepresentation') {
|
|
|
568
568
|
if (obj.goalAssignmentTasks !== undefined) {
|
|
569
569
|
const obj_goalAssignmentTasks = obj.goalAssignmentTasks;
|
|
570
570
|
const path_goalAssignmentTasks = path + '.goalAssignmentTasks';
|
|
571
|
-
const referencepath_goalAssignmentTasksValidationError = validate$
|
|
571
|
+
const referencepath_goalAssignmentTasksValidationError = validate$1h(obj_goalAssignmentTasks, path_goalAssignmentTasks);
|
|
572
572
|
if (referencepath_goalAssignmentTasksValidationError !== null) {
|
|
573
573
|
let message = 'Object doesn\'t match CarePlanTaskInputRepresentation (at "' + path_goalAssignmentTasks + '")\n';
|
|
574
574
|
message += referencepath_goalAssignmentTasksValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -619,7 +619,7 @@ function validate$19(obj, path = 'GoalAssignmentInputRepresentation') {
|
|
|
619
619
|
return v_error === undefined ? null : v_error;
|
|
620
620
|
}
|
|
621
621
|
|
|
622
|
-
function validate$
|
|
622
|
+
function validate$19(obj, path = 'GoalAssignmentListInputRepresentation') {
|
|
623
623
|
const v_error = (() => {
|
|
624
624
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
625
625
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -632,7 +632,7 @@ function validate$18(obj, path = 'GoalAssignmentListInputRepresentation') {
|
|
|
632
632
|
for (let i = 0; i < obj_records.length; i++) {
|
|
633
633
|
const obj_records_item = obj_records[i];
|
|
634
634
|
const path_records_item = path_records + '[' + i + ']';
|
|
635
|
-
const referencepath_records_itemValidationError = validate$
|
|
635
|
+
const referencepath_records_itemValidationError = validate$1a(obj_records_item, path_records_item);
|
|
636
636
|
if (referencepath_records_itemValidationError !== null) {
|
|
637
637
|
let message = 'Object doesn\'t match GoalAssignmentInputRepresentation (at "' + path_records_item + '")\n';
|
|
638
638
|
message += referencepath_records_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -643,7 +643,7 @@ function validate$18(obj, path = 'GoalAssignmentListInputRepresentation') {
|
|
|
643
643
|
return v_error === undefined ? null : v_error;
|
|
644
644
|
}
|
|
645
645
|
|
|
646
|
-
function validate$
|
|
646
|
+
function validate$18(obj, path = 'CarePlanInputRepresentation') {
|
|
647
647
|
const v_error = (() => {
|
|
648
648
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
649
649
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -651,7 +651,7 @@ function validate$17(obj, path = 'CarePlanInputRepresentation') {
|
|
|
651
651
|
if (obj.benefitAssignments !== undefined) {
|
|
652
652
|
const obj_benefitAssignments = obj.benefitAssignments;
|
|
653
653
|
const path_benefitAssignments = path + '.benefitAssignments';
|
|
654
|
-
const referencepath_benefitAssignmentsValidationError = validate$
|
|
654
|
+
const referencepath_benefitAssignmentsValidationError = validate$1b(obj_benefitAssignments, path_benefitAssignments);
|
|
655
655
|
if (referencepath_benefitAssignmentsValidationError !== null) {
|
|
656
656
|
let message = 'Object doesn\'t match BenefitAssignmentListInputRepresentation (at "' + path_benefitAssignments + '")\n';
|
|
657
657
|
message += referencepath_benefitAssignmentsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -661,7 +661,7 @@ function validate$17(obj, path = 'CarePlanInputRepresentation') {
|
|
|
661
661
|
if (obj.carePlanTasks !== undefined) {
|
|
662
662
|
const obj_carePlanTasks = obj.carePlanTasks;
|
|
663
663
|
const path_carePlanTasks = path + '.carePlanTasks';
|
|
664
|
-
const referencepath_carePlanTasksValidationError = validate$
|
|
664
|
+
const referencepath_carePlanTasksValidationError = validate$1h(obj_carePlanTasks, path_carePlanTasks);
|
|
665
665
|
if (referencepath_carePlanTasksValidationError !== null) {
|
|
666
666
|
let message = 'Object doesn\'t match CarePlanTaskInputRepresentation (at "' + path_carePlanTasks + '")\n';
|
|
667
667
|
message += referencepath_carePlanTasksValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -683,7 +683,7 @@ function validate$17(obj, path = 'CarePlanInputRepresentation') {
|
|
|
683
683
|
if (obj.customFields !== undefined) {
|
|
684
684
|
const obj_customFields = obj.customFields;
|
|
685
685
|
const path_customFields = path + '.customFields';
|
|
686
|
-
const referencepath_customFieldsValidationError = validate$
|
|
686
|
+
const referencepath_customFieldsValidationError = validate$1d(obj_customFields, path_customFields);
|
|
687
687
|
if (referencepath_customFieldsValidationError !== null) {
|
|
688
688
|
let message = 'Object doesn\'t match CustomFieldListInputRepresentation (at "' + path_customFields + '")\n';
|
|
689
689
|
message += referencepath_customFieldsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -707,7 +707,7 @@ function validate$17(obj, path = 'CarePlanInputRepresentation') {
|
|
|
707
707
|
if (obj.goalAssignments !== undefined) {
|
|
708
708
|
const obj_goalAssignments = obj.goalAssignments;
|
|
709
709
|
const path_goalAssignments = path + '.goalAssignments';
|
|
710
|
-
const referencepath_goalAssignmentsValidationError = validate$
|
|
710
|
+
const referencepath_goalAssignmentsValidationError = validate$19(obj_goalAssignments, path_goalAssignments);
|
|
711
711
|
if (referencepath_goalAssignmentsValidationError !== null) {
|
|
712
712
|
let message = 'Object doesn\'t match GoalAssignmentListInputRepresentation (at "' + path_goalAssignments + '")\n';
|
|
713
713
|
message += referencepath_goalAssignmentsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -754,7 +754,7 @@ function validate$17(obj, path = 'CarePlanInputRepresentation') {
|
|
|
754
754
|
return v_error === undefined ? null : v_error;
|
|
755
755
|
}
|
|
756
756
|
|
|
757
|
-
function validate$
|
|
757
|
+
function validate$17(obj, path = 'CarePlanListInputRepresentation') {
|
|
758
758
|
const v_error = (() => {
|
|
759
759
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
760
760
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -767,7 +767,7 @@ function validate$16(obj, path = 'CarePlanListInputRepresentation') {
|
|
|
767
767
|
for (let i = 0; i < obj_records.length; i++) {
|
|
768
768
|
const obj_records_item = obj_records[i];
|
|
769
769
|
const path_records_item = path_records + '[' + i + ']';
|
|
770
|
-
const referencepath_records_itemValidationError = validate$
|
|
770
|
+
const referencepath_records_itemValidationError = validate$18(obj_records_item, path_records_item);
|
|
771
771
|
if (referencepath_records_itemValidationError !== null) {
|
|
772
772
|
let message = 'Object doesn\'t match CarePlanInputRepresentation (at "' + path_records_item + '")\n';
|
|
773
773
|
message += referencepath_records_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -778,14 +778,14 @@ function validate$16(obj, path = 'CarePlanListInputRepresentation') {
|
|
|
778
778
|
return v_error === undefined ? null : v_error;
|
|
779
779
|
}
|
|
780
780
|
|
|
781
|
-
function validate$
|
|
781
|
+
function validate$16(obj, path = 'CarePlanBulkInputRepresentation') {
|
|
782
782
|
const v_error = (() => {
|
|
783
783
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
784
784
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
785
785
|
}
|
|
786
786
|
const obj_carePlans = obj.carePlans;
|
|
787
787
|
const path_carePlans = path + '.carePlans';
|
|
788
|
-
const referencepath_carePlansValidationError = validate$
|
|
788
|
+
const referencepath_carePlansValidationError = validate$17(obj_carePlans, path_carePlans);
|
|
789
789
|
if (referencepath_carePlansValidationError !== null) {
|
|
790
790
|
let message = 'Object doesn\'t match CarePlanListInputRepresentation (at "' + path_carePlans + '")\n';
|
|
791
791
|
message += referencepath_carePlansValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -797,7 +797,7 @@ function validate$15(obj, path = 'CarePlanBulkInputRepresentation') {
|
|
|
797
797
|
|
|
798
798
|
const TTL$8 = 100;
|
|
799
799
|
const VERSION$C = "83a45266096a71720e9049cb0f0477d6";
|
|
800
|
-
function validate$
|
|
800
|
+
function validate$15(obj, path = 'CarePlanBulkOutputRepresentation') {
|
|
801
801
|
const v_error = (() => {
|
|
802
802
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
803
803
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -853,7 +853,7 @@ function equals$C(existing, incoming) {
|
|
|
853
853
|
}
|
|
854
854
|
const ingest$m = function CarePlanBulkOutputRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
855
855
|
if (process.env.NODE_ENV !== 'production') {
|
|
856
|
-
const validateError = validate$
|
|
856
|
+
const validateError = validate$15(input);
|
|
857
857
|
if (validateError !== null) {
|
|
858
858
|
throw validateError;
|
|
859
859
|
}
|
|
@@ -919,7 +919,7 @@ const createResourceParams$o = /*#__PURE__*/ createResourceParams$p(createCarePl
|
|
|
919
919
|
function typeCheckConfig$o(untrustedConfig) {
|
|
920
920
|
const config = {};
|
|
921
921
|
const untrustedConfig_carePlanBulkRecord = untrustedConfig.carePlanBulkRecord;
|
|
922
|
-
const referenceCarePlanBulkInputRepresentationValidationError = validate$
|
|
922
|
+
const referenceCarePlanBulkInputRepresentationValidationError = validate$16(untrustedConfig_carePlanBulkRecord);
|
|
923
923
|
if (referenceCarePlanBulkInputRepresentationValidationError === null) {
|
|
924
924
|
config.carePlanBulkRecord = untrustedConfig_carePlanBulkRecord;
|
|
925
925
|
}
|
|
@@ -967,7 +967,7 @@ const createCarePlansAdapterFactory = (luvio) => {
|
|
|
967
967
|
};
|
|
968
968
|
};
|
|
969
969
|
|
|
970
|
-
function validate$
|
|
970
|
+
function validate$14(obj, path = 'EducationApiErrorDetails') {
|
|
971
971
|
const v_error = (() => {
|
|
972
972
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
973
973
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -986,7 +986,7 @@ function validate$13(obj, path = 'EducationApiErrorDetails') {
|
|
|
986
986
|
return v_error === undefined ? null : v_error;
|
|
987
987
|
}
|
|
988
988
|
|
|
989
|
-
function validate$
|
|
989
|
+
function validate$13(obj, path = 'CreateLearningOutputRepresentation') {
|
|
990
990
|
const v_error = (() => {
|
|
991
991
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
992
992
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1000,7 +1000,7 @@ function validate$12(obj, path = 'CreateLearningOutputRepresentation') {
|
|
|
1000
1000
|
for (let i = 0; i < obj_errors.length; i++) {
|
|
1001
1001
|
const obj_errors_item = obj_errors[i];
|
|
1002
1002
|
const path_errors_item = path_errors + '[' + i + ']';
|
|
1003
|
-
const referencepath_errors_itemValidationError = validate$
|
|
1003
|
+
const referencepath_errors_itemValidationError = validate$14(obj_errors_item, path_errors_item);
|
|
1004
1004
|
if (referencepath_errors_itemValidationError !== null) {
|
|
1005
1005
|
let message = 'Object doesn\'t match EducationApiErrorDetails (at "' + path_errors_item + '")\n';
|
|
1006
1006
|
message += referencepath_errors_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1084,7 +1084,7 @@ function validate$12(obj, path = 'CreateLearningOutputRepresentation') {
|
|
|
1084
1084
|
|
|
1085
1085
|
const TTL$7 = 100;
|
|
1086
1086
|
const VERSION$B = "ff34ed5afbde8f8c0e3ba4441dd19c08";
|
|
1087
|
-
function validate$
|
|
1087
|
+
function validate$12(obj, path = 'CreateLearningsOutputRepresentation') {
|
|
1088
1088
|
const v_error = (() => {
|
|
1089
1089
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1090
1090
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1098,7 +1098,7 @@ function validate$11(obj, path = 'CreateLearningsOutputRepresentation') {
|
|
|
1098
1098
|
for (let i = 0; i < obj_details.length; i++) {
|
|
1099
1099
|
const obj_details_item = obj_details[i];
|
|
1100
1100
|
const path_details_item = path_details + '[' + i + ']';
|
|
1101
|
-
const referencepath_details_itemValidationError = validate$
|
|
1101
|
+
const referencepath_details_itemValidationError = validate$13(obj_details_item, path_details_item);
|
|
1102
1102
|
if (referencepath_details_itemValidationError !== null) {
|
|
1103
1103
|
let message = 'Object doesn\'t match CreateLearningOutputRepresentation (at "' + path_details_item + '")\n';
|
|
1104
1104
|
message += referencepath_details_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1157,7 +1157,7 @@ function equals$B(existing, incoming) {
|
|
|
1157
1157
|
}
|
|
1158
1158
|
const ingest$l = function CreateLearningsOutputRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
1159
1159
|
if (process.env.NODE_ENV !== 'production') {
|
|
1160
|
-
const validateError = validate$
|
|
1160
|
+
const validateError = validate$12(input);
|
|
1161
1161
|
if (validateError !== null) {
|
|
1162
1162
|
throw validateError;
|
|
1163
1163
|
}
|
|
@@ -1275,7 +1275,7 @@ const createLearningsAdapterFactory = (luvio) => {
|
|
|
1275
1275
|
};
|
|
1276
1276
|
};
|
|
1277
1277
|
|
|
1278
|
-
function validate$
|
|
1278
|
+
function validate$11(obj, path = 'PreliminaryApplicationReferencesInputRepresentation') {
|
|
1279
1279
|
const v_error = (() => {
|
|
1280
1280
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1281
1281
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1303,7 +1303,7 @@ function validate$10(obj, path = 'PreliminaryApplicationReferencesInputRepresent
|
|
|
1303
1303
|
|
|
1304
1304
|
const TTL$6 = 100;
|
|
1305
1305
|
const VERSION$A = "99c70aaad84edf6fe13e82411117c732";
|
|
1306
|
-
function validate
|
|
1306
|
+
function validate$10(obj, path = 'PreliminaryApplicationReferencesOutputRepresentation') {
|
|
1307
1307
|
const v_error = (() => {
|
|
1308
1308
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1309
1309
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1366,7 +1366,7 @@ function equals$A(existing, incoming) {
|
|
|
1366
1366
|
}
|
|
1367
1367
|
const ingest$k = function PreliminaryApplicationReferencesOutputRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
1368
1368
|
if (process.env.NODE_ENV !== 'production') {
|
|
1369
|
-
const validateError = validate
|
|
1369
|
+
const validateError = validate$10(input);
|
|
1370
1370
|
if (validateError !== null) {
|
|
1371
1371
|
throw validateError;
|
|
1372
1372
|
}
|
|
@@ -1432,7 +1432,7 @@ const createResourceParams$m = /*#__PURE__*/ createResourceParams$p(createPrelim
|
|
|
1432
1432
|
function typeCheckConfig$m(untrustedConfig) {
|
|
1433
1433
|
const config = {};
|
|
1434
1434
|
const untrustedConfig_preliminaryAppRefInput = untrustedConfig.preliminaryAppRefInput;
|
|
1435
|
-
const referencePreliminaryApplicationReferencesInputRepresentationValidationError = validate$
|
|
1435
|
+
const referencePreliminaryApplicationReferencesInputRepresentationValidationError = validate$11(untrustedConfig_preliminaryAppRefInput);
|
|
1436
1436
|
if (referencePreliminaryApplicationReferencesInputRepresentationValidationError === null) {
|
|
1437
1437
|
config.preliminaryAppRefInput = untrustedConfig_preliminaryAppRefInput;
|
|
1438
1438
|
}
|
|
@@ -1481,7 +1481,7 @@ const createPreliminaryApplicationReferencesAdapterFactory = (luvio) => {
|
|
|
1481
1481
|
};
|
|
1482
1482
|
|
|
1483
1483
|
const VERSION$z = "d60c44c1e6c3976a0b3d975dcfb0b0d4";
|
|
1484
|
-
function validate
|
|
1484
|
+
function validate$$(obj, path = 'Task') {
|
|
1485
1485
|
const v_error = (() => {
|
|
1486
1486
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1487
1487
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1586,7 +1586,7 @@ function equals$z(existing, incoming) {
|
|
|
1586
1586
|
}
|
|
1587
1587
|
const ingest$j = function TaskIngest(input, path, luvio, store, timestamp) {
|
|
1588
1588
|
if (process.env.NODE_ENV !== 'production') {
|
|
1589
|
-
const validateError = validate
|
|
1589
|
+
const validateError = validate$$(input);
|
|
1590
1590
|
if (validateError !== null) {
|
|
1591
1591
|
throw validateError;
|
|
1592
1592
|
}
|
|
@@ -1703,7 +1703,7 @@ const createTaskAdapterFactory = (luvio) => {
|
|
|
1703
1703
|
};
|
|
1704
1704
|
|
|
1705
1705
|
const VERSION$y = "fdcd849a355e544faed0b81e213a2b9d";
|
|
1706
|
-
function validate$
|
|
1706
|
+
function validate$_(obj, path = 'AcademicTerm') {
|
|
1707
1707
|
const v_error = (() => {
|
|
1708
1708
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1709
1709
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1800,7 +1800,7 @@ function equals$y(existing, incoming) {
|
|
|
1800
1800
|
}
|
|
1801
1801
|
|
|
1802
1802
|
const VERSION$x = "365c75faef31409025131431fe4cd5e5";
|
|
1803
|
-
function validate$
|
|
1803
|
+
function validate$Z(obj, path = 'AcademicTermsOutputRepresentation') {
|
|
1804
1804
|
const v_error = (() => {
|
|
1805
1805
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1806
1806
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1814,7 +1814,7 @@ function validate$Y(obj, path = 'AcademicTermsOutputRepresentation') {
|
|
|
1814
1814
|
for (let i = 0; i < obj_academicTerms.length; i++) {
|
|
1815
1815
|
const obj_academicTerms_item = obj_academicTerms[i];
|
|
1816
1816
|
const path_academicTerms_item = path_academicTerms + '[' + i + ']';
|
|
1817
|
-
const referencepath_academicTerms_itemValidationError = validate$
|
|
1817
|
+
const referencepath_academicTerms_itemValidationError = validate$_(obj_academicTerms_item, path_academicTerms_item);
|
|
1818
1818
|
if (referencepath_academicTerms_itemValidationError !== null) {
|
|
1819
1819
|
let message = 'Object doesn\'t match AcademicTerm (at "' + path_academicTerms_item + '")\n';
|
|
1820
1820
|
message += referencepath_academicTerms_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1869,7 +1869,7 @@ function equals$x(existing, incoming) {
|
|
|
1869
1869
|
}
|
|
1870
1870
|
const ingest$i = function AcademicTermsOutputRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
1871
1871
|
if (process.env.NODE_ENV !== 'production') {
|
|
1872
|
-
const validateError = validate$
|
|
1872
|
+
const validateError = validate$Z(input);
|
|
1873
1873
|
if (validateError !== null) {
|
|
1874
1874
|
throw validateError;
|
|
1875
1875
|
}
|
|
@@ -2022,7 +2022,7 @@ const getAcademicTermsAdapterFactory = (luvio) => function education__getAcademi
|
|
|
2022
2022
|
};
|
|
2023
2023
|
|
|
2024
2024
|
const VERSION$w = "25644bb9c14397ee2eee2a59a6de4b8c";
|
|
2025
|
-
function validate$
|
|
2025
|
+
function validate$Y(obj, path = 'Applicant') {
|
|
2026
2026
|
const v_error = (() => {
|
|
2027
2027
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2028
2028
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2118,7 +2118,7 @@ function equals$w(existing, incoming) {
|
|
|
2118
2118
|
return true;
|
|
2119
2119
|
}
|
|
2120
2120
|
|
|
2121
|
-
function validate$
|
|
2121
|
+
function validate$X(obj, path = 'ApplicationRenderMethod') {
|
|
2122
2122
|
const v_error = (() => {
|
|
2123
2123
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2124
2124
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2155,7 +2155,7 @@ function validate$W(obj, path = 'ApplicationRenderMethod') {
|
|
|
2155
2155
|
return v_error === undefined ? null : v_error;
|
|
2156
2156
|
}
|
|
2157
2157
|
|
|
2158
|
-
function validate$
|
|
2158
|
+
function validate$W(obj, path = 'IndividualApplicationTask') {
|
|
2159
2159
|
const v_error = (() => {
|
|
2160
2160
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2161
2161
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2169,7 +2169,7 @@ function validate$V(obj, path = 'IndividualApplicationTask') {
|
|
|
2169
2169
|
for (let i = 0; i < obj_applicationRenderMethods.length; i++) {
|
|
2170
2170
|
const obj_applicationRenderMethods_item = obj_applicationRenderMethods[i];
|
|
2171
2171
|
const path_applicationRenderMethods_item = path_applicationRenderMethods + '[' + i + ']';
|
|
2172
|
-
const referencepath_applicationRenderMethods_itemValidationError = validate$
|
|
2172
|
+
const referencepath_applicationRenderMethods_itemValidationError = validate$X(obj_applicationRenderMethods_item, path_applicationRenderMethods_item);
|
|
2173
2173
|
if (referencepath_applicationRenderMethods_itemValidationError !== null) {
|
|
2174
2174
|
let message = 'Object doesn\'t match ApplicationRenderMethod (at "' + path_applicationRenderMethods_item + '")\n';
|
|
2175
2175
|
message += referencepath_applicationRenderMethods_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2258,7 +2258,7 @@ function validate$V(obj, path = 'IndividualApplicationTask') {
|
|
|
2258
2258
|
return v_error === undefined ? null : v_error;
|
|
2259
2259
|
}
|
|
2260
2260
|
|
|
2261
|
-
function validate$
|
|
2261
|
+
function validate$V(obj, path = 'Submitter') {
|
|
2262
2262
|
const v_error = (() => {
|
|
2263
2263
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2264
2264
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2281,7 +2281,7 @@ function validate$U(obj, path = 'Submitter') {
|
|
|
2281
2281
|
return v_error === undefined ? null : v_error;
|
|
2282
2282
|
}
|
|
2283
2283
|
|
|
2284
|
-
function validate$
|
|
2284
|
+
function validate$U(obj, path = 'GetApplicationDetailsResult') {
|
|
2285
2285
|
const v_error = (() => {
|
|
2286
2286
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2287
2287
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2296,7 +2296,7 @@ function validate$T(obj, path = 'GetApplicationDetailsResult') {
|
|
|
2296
2296
|
if (obj.applicant !== undefined) {
|
|
2297
2297
|
const obj_applicant = obj.applicant;
|
|
2298
2298
|
const path_applicant = path + '.applicant';
|
|
2299
|
-
const referencepath_applicantValidationError = validate$
|
|
2299
|
+
const referencepath_applicantValidationError = validate$Y(obj_applicant, path_applicant);
|
|
2300
2300
|
if (referencepath_applicantValidationError !== null) {
|
|
2301
2301
|
let message = 'Object doesn\'t match Applicant (at "' + path_applicant + '")\n';
|
|
2302
2302
|
message += referencepath_applicantValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2340,7 +2340,7 @@ function validate$T(obj, path = 'GetApplicationDetailsResult') {
|
|
|
2340
2340
|
for (let i = 0; i < obj_individualApplicationTasks.length; i++) {
|
|
2341
2341
|
const obj_individualApplicationTasks_item = obj_individualApplicationTasks[i];
|
|
2342
2342
|
const path_individualApplicationTasks_item = path_individualApplicationTasks + '[' + i + ']';
|
|
2343
|
-
const referencepath_individualApplicationTasks_itemValidationError = validate$
|
|
2343
|
+
const referencepath_individualApplicationTasks_itemValidationError = validate$W(obj_individualApplicationTasks_item, path_individualApplicationTasks_item);
|
|
2344
2344
|
if (referencepath_individualApplicationTasks_itemValidationError !== null) {
|
|
2345
2345
|
let message = 'Object doesn\'t match IndividualApplicationTask (at "' + path_individualApplicationTasks_item + '")\n';
|
|
2346
2346
|
message += referencepath_individualApplicationTasks_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2379,7 +2379,7 @@ function validate$T(obj, path = 'GetApplicationDetailsResult') {
|
|
|
2379
2379
|
if (obj.submitter !== undefined) {
|
|
2380
2380
|
const obj_submitter = obj.submitter;
|
|
2381
2381
|
const path_submitter = path + '.submitter';
|
|
2382
|
-
const referencepath_submitterValidationError = validate$
|
|
2382
|
+
const referencepath_submitterValidationError = validate$V(obj_submitter, path_submitter);
|
|
2383
2383
|
if (referencepath_submitterValidationError !== null) {
|
|
2384
2384
|
let message = 'Object doesn\'t match Submitter (at "' + path_submitter + '")\n';
|
|
2385
2385
|
message += referencepath_submitterValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2406,7 +2406,7 @@ function validate$T(obj, path = 'GetApplicationDetailsResult') {
|
|
|
2406
2406
|
|
|
2407
2407
|
const TTL$5 = 100;
|
|
2408
2408
|
const VERSION$v = "20a50ee9f09ba0dc956412cc14d5b6d5";
|
|
2409
|
-
function validate$
|
|
2409
|
+
function validate$T(obj, path = 'ApplicationDetailsOutputRepresentation') {
|
|
2410
2410
|
const v_error = (() => {
|
|
2411
2411
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2412
2412
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2414,7 +2414,7 @@ function validate$S(obj, path = 'ApplicationDetailsOutputRepresentation') {
|
|
|
2414
2414
|
if (obj.result !== undefined) {
|
|
2415
2415
|
const obj_result = obj.result;
|
|
2416
2416
|
const path_result = path + '.result';
|
|
2417
|
-
const referencepath_resultValidationError = validate$
|
|
2417
|
+
const referencepath_resultValidationError = validate$U(obj_result, path_result);
|
|
2418
2418
|
if (referencepath_resultValidationError !== null) {
|
|
2419
2419
|
let message = 'Object doesn\'t match GetApplicationDetailsResult (at "' + path_result + '")\n';
|
|
2420
2420
|
message += referencepath_resultValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2444,7 +2444,7 @@ function equals$v(existing, incoming) {
|
|
|
2444
2444
|
}
|
|
2445
2445
|
const ingest$h = function ApplicationDetailsOutputRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
2446
2446
|
if (process.env.NODE_ENV !== 'production') {
|
|
2447
|
-
const validateError = validate$
|
|
2447
|
+
const validateError = validate$T(input);
|
|
2448
2448
|
if (validateError !== null) {
|
|
2449
2449
|
throw validateError;
|
|
2450
2450
|
}
|
|
@@ -2602,7 +2602,7 @@ const getApplicationDetailsAdapterFactory = (luvio) => function education__getAp
|
|
|
2602
2602
|
buildCachedSnapshotCachePolicy$f, buildNetworkSnapshotCachePolicy$f);
|
|
2603
2603
|
};
|
|
2604
2604
|
|
|
2605
|
-
function validate$
|
|
2605
|
+
function validate$S(obj, path = 'Application') {
|
|
2606
2606
|
const v_error = (() => {
|
|
2607
2607
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2608
2608
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2617,7 +2617,7 @@ function validate$R(obj, path = 'Application') {
|
|
|
2617
2617
|
if (obj.applicant !== undefined) {
|
|
2618
2618
|
const obj_applicant = obj.applicant;
|
|
2619
2619
|
const path_applicant = path + '.applicant';
|
|
2620
|
-
const referencepath_applicantValidationError = validate$
|
|
2620
|
+
const referencepath_applicantValidationError = validate$Y(obj_applicant, path_applicant);
|
|
2621
2621
|
if (referencepath_applicantValidationError !== null) {
|
|
2622
2622
|
let message = 'Object doesn\'t match Applicant (at "' + path_applicant + '")\n';
|
|
2623
2623
|
message += referencepath_applicantValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2683,7 +2683,7 @@ function validate$R(obj, path = 'Application') {
|
|
|
2683
2683
|
if (obj.submitter !== undefined) {
|
|
2684
2684
|
const obj_submitter = obj.submitter;
|
|
2685
2685
|
const path_submitter = path + '.submitter';
|
|
2686
|
-
const referencepath_submitterValidationError = validate$
|
|
2686
|
+
const referencepath_submitterValidationError = validate$V(obj_submitter, path_submitter);
|
|
2687
2687
|
if (referencepath_submitterValidationError !== null) {
|
|
2688
2688
|
let message = 'Object doesn\'t match Submitter (at "' + path_submitter + '")\n';
|
|
2689
2689
|
message += referencepath_submitterValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2708,7 +2708,7 @@ function validate$R(obj, path = 'Application') {
|
|
|
2708
2708
|
return v_error === undefined ? null : v_error;
|
|
2709
2709
|
}
|
|
2710
2710
|
|
|
2711
|
-
function validate$
|
|
2711
|
+
function validate$R(obj, path = 'GetApplicationsResult') {
|
|
2712
2712
|
const v_error = (() => {
|
|
2713
2713
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2714
2714
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2722,7 +2722,7 @@ function validate$Q(obj, path = 'GetApplicationsResult') {
|
|
|
2722
2722
|
for (let i = 0; i < obj_applications.length; i++) {
|
|
2723
2723
|
const obj_applications_item = obj_applications[i];
|
|
2724
2724
|
const path_applications_item = path_applications + '[' + i + ']';
|
|
2725
|
-
const referencepath_applications_itemValidationError = validate$
|
|
2725
|
+
const referencepath_applications_itemValidationError = validate$S(obj_applications_item, path_applications_item);
|
|
2726
2726
|
if (referencepath_applications_itemValidationError !== null) {
|
|
2727
2727
|
let message = 'Object doesn\'t match Application (at "' + path_applications_item + '")\n';
|
|
2728
2728
|
message += referencepath_applications_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2736,7 +2736,7 @@ function validate$Q(obj, path = 'GetApplicationsResult') {
|
|
|
2736
2736
|
|
|
2737
2737
|
const TTL$4 = 100;
|
|
2738
2738
|
const VERSION$u = "1947ca622740f63d1812cfa7d4dd5989";
|
|
2739
|
-
function validate$
|
|
2739
|
+
function validate$Q(obj, path = 'ApplicationsOutputRepresentation') {
|
|
2740
2740
|
const v_error = (() => {
|
|
2741
2741
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2742
2742
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2744,7 +2744,7 @@ function validate$P(obj, path = 'ApplicationsOutputRepresentation') {
|
|
|
2744
2744
|
if (obj.result !== undefined) {
|
|
2745
2745
|
const obj_result = obj.result;
|
|
2746
2746
|
const path_result = path + '.result';
|
|
2747
|
-
const referencepath_resultValidationError = validate$
|
|
2747
|
+
const referencepath_resultValidationError = validate$R(obj_result, path_result);
|
|
2748
2748
|
if (referencepath_resultValidationError !== null) {
|
|
2749
2749
|
let message = 'Object doesn\'t match GetApplicationsResult (at "' + path_result + '")\n';
|
|
2750
2750
|
message += referencepath_resultValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2774,7 +2774,7 @@ function equals$u(existing, incoming) {
|
|
|
2774
2774
|
}
|
|
2775
2775
|
const ingest$g = function ApplicationsOutputRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
2776
2776
|
if (process.env.NODE_ENV !== 'production') {
|
|
2777
|
-
const validateError = validate$
|
|
2777
|
+
const validateError = validate$Q(input);
|
|
2778
2778
|
if (validateError !== null) {
|
|
2779
2779
|
throw validateError;
|
|
2780
2780
|
}
|
|
@@ -2930,7 +2930,7 @@ const getApplicationsAdapterFactory = (luvio) => function education__getApplicat
|
|
|
2930
2930
|
};
|
|
2931
2931
|
|
|
2932
2932
|
const VERSION$t = "3816f003ea6c9a084462f5e361862312";
|
|
2933
|
-
function validate$
|
|
2933
|
+
function validate$P(obj, path = 'ActionPlanTemplateItem') {
|
|
2934
2934
|
const v_error = (() => {
|
|
2935
2935
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2936
2936
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -3164,7 +3164,7 @@ function equals$t(existing, incoming) {
|
|
|
3164
3164
|
}
|
|
3165
3165
|
|
|
3166
3166
|
const VERSION$s = "c8b590315fbee209b190d8d74f322b3b";
|
|
3167
|
-
function validate$
|
|
3167
|
+
function validate$O(obj, path = 'ActionPlanTemplate') {
|
|
3168
3168
|
const v_error = (() => {
|
|
3169
3169
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
3170
3170
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -3234,7 +3234,7 @@ function validate$N(obj, path = 'ActionPlanTemplate') {
|
|
|
3234
3234
|
for (let i = 0; i < obj_templateItems.length; i++) {
|
|
3235
3235
|
const obj_templateItems_item = obj_templateItems[i];
|
|
3236
3236
|
const path_templateItems_item = path_templateItems + '[' + i + ']';
|
|
3237
|
-
const referencepath_templateItems_itemValidationError = validate$
|
|
3237
|
+
const referencepath_templateItems_itemValidationError = validate$P(obj_templateItems_item, path_templateItems_item);
|
|
3238
3238
|
if (referencepath_templateItems_itemValidationError !== null) {
|
|
3239
3239
|
let message = 'Object doesn\'t match ActionPlanTemplateItem (at "' + path_templateItems_item + '")\n';
|
|
3240
3240
|
message += referencepath_templateItems_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -3429,7 +3429,7 @@ function equals$s(existing, incoming) {
|
|
|
3429
3429
|
}
|
|
3430
3430
|
|
|
3431
3431
|
const VERSION$r = "4bda33c8cdd9d9cad9262f01ed1a862c";
|
|
3432
|
-
function validate$
|
|
3432
|
+
function validate$N(obj, path = 'ActionPlan') {
|
|
3433
3433
|
const v_error = (() => {
|
|
3434
3434
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
3435
3435
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -3651,7 +3651,7 @@ function equals$r(existing, incoming) {
|
|
|
3651
3651
|
}
|
|
3652
3652
|
|
|
3653
3653
|
const VERSION$q = "3f93db932ee740da5879bb51ec3bcea1";
|
|
3654
|
-
function validate$
|
|
3654
|
+
function validate$M(obj, path = 'CarePlan') {
|
|
3655
3655
|
const v_error = (() => {
|
|
3656
3656
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
3657
3657
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -3873,7 +3873,7 @@ function equals$q(existing, incoming) {
|
|
|
3873
3873
|
}
|
|
3874
3874
|
|
|
3875
3875
|
const VERSION$p = "2cf32f553e0200589184bb83500c474b";
|
|
3876
|
-
function validate$
|
|
3876
|
+
function validate$L(obj, path = 'AptsTasksPlansOutputRepresentation') {
|
|
3877
3877
|
const v_error = (() => {
|
|
3878
3878
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
3879
3879
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -3886,7 +3886,7 @@ function validate$K(obj, path = 'AptsTasksPlansOutputRepresentation') {
|
|
|
3886
3886
|
for (let i = 0; i < obj_actionPlanTemplates.length; i++) {
|
|
3887
3887
|
const obj_actionPlanTemplates_item = obj_actionPlanTemplates[i];
|
|
3888
3888
|
const path_actionPlanTemplates_item = path_actionPlanTemplates + '[' + i + ']';
|
|
3889
|
-
const referencepath_actionPlanTemplates_itemValidationError = validate$
|
|
3889
|
+
const referencepath_actionPlanTemplates_itemValidationError = validate$O(obj_actionPlanTemplates_item, path_actionPlanTemplates_item);
|
|
3890
3890
|
if (referencepath_actionPlanTemplates_itemValidationError !== null) {
|
|
3891
3891
|
let message = 'Object doesn\'t match ActionPlanTemplate (at "' + path_actionPlanTemplates_item + '")\n';
|
|
3892
3892
|
message += referencepath_actionPlanTemplates_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -3901,7 +3901,7 @@ function validate$K(obj, path = 'AptsTasksPlansOutputRepresentation') {
|
|
|
3901
3901
|
for (let i = 0; i < obj_actionPlans.length; i++) {
|
|
3902
3902
|
const obj_actionPlans_item = obj_actionPlans[i];
|
|
3903
3903
|
const path_actionPlans_item = path_actionPlans + '[' + i + ']';
|
|
3904
|
-
const referencepath_actionPlans_itemValidationError = validate$
|
|
3904
|
+
const referencepath_actionPlans_itemValidationError = validate$N(obj_actionPlans_item, path_actionPlans_item);
|
|
3905
3905
|
if (referencepath_actionPlans_itemValidationError !== null) {
|
|
3906
3906
|
let message = 'Object doesn\'t match ActionPlan (at "' + path_actionPlans_item + '")\n';
|
|
3907
3907
|
message += referencepath_actionPlans_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -3916,7 +3916,7 @@ function validate$K(obj, path = 'AptsTasksPlansOutputRepresentation') {
|
|
|
3916
3916
|
for (let i = 0; i < obj_carePlans.length; i++) {
|
|
3917
3917
|
const obj_carePlans_item = obj_carePlans[i];
|
|
3918
3918
|
const path_carePlans_item = path_carePlans + '[' + i + ']';
|
|
3919
|
-
const referencepath_carePlans_itemValidationError = validate$
|
|
3919
|
+
const referencepath_carePlans_itemValidationError = validate$M(obj_carePlans_item, path_carePlans_item);
|
|
3920
3920
|
if (referencepath_carePlans_itemValidationError !== null) {
|
|
3921
3921
|
let message = 'Object doesn\'t match CarePlan (at "' + path_carePlans_item + '")\n';
|
|
3922
3922
|
message += referencepath_carePlans_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -4053,7 +4053,7 @@ function equals$p(existing, incoming) {
|
|
|
4053
4053
|
}
|
|
4054
4054
|
const ingest$f = function AptsTasksPlansOutputRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
4055
4055
|
if (process.env.NODE_ENV !== 'production') {
|
|
4056
|
-
const validateError = validate$
|
|
4056
|
+
const validateError = validate$L(input);
|
|
4057
4057
|
if (validateError !== null) {
|
|
4058
4058
|
throw validateError;
|
|
4059
4059
|
}
|
|
@@ -4210,7 +4210,7 @@ const getAptsTasksPlansAdapterFactory = (luvio) => function education__getAptsTa
|
|
|
4210
4210
|
buildCachedSnapshotCachePolicy$d, buildNetworkSnapshotCachePolicy$d);
|
|
4211
4211
|
};
|
|
4212
4212
|
|
|
4213
|
-
function validate$
|
|
4213
|
+
function validate$K(obj, path = 'AvailableTimeSlotsInputRepresentation') {
|
|
4214
4214
|
const v_error = (() => {
|
|
4215
4215
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
4216
4216
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -4282,7 +4282,7 @@ function validate$J(obj, path = 'AvailableTimeSlotsInputRepresentation') {
|
|
|
4282
4282
|
}
|
|
4283
4283
|
|
|
4284
4284
|
const VERSION$o = "d144e25bec059139dfc7c8e6b35f69e9";
|
|
4285
|
-
function validate$
|
|
4285
|
+
function validate$J(obj, path = 'TimeSlot') {
|
|
4286
4286
|
const v_error = (() => {
|
|
4287
4287
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
4288
4288
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -4429,7 +4429,7 @@ function equals$o(existing, incoming) {
|
|
|
4429
4429
|
}
|
|
4430
4430
|
|
|
4431
4431
|
const VERSION$n = "9c2ef94b89ee532c50c8423528617441";
|
|
4432
|
-
function validate$
|
|
4432
|
+
function validate$I(obj, path = 'AvailableTimeSlotsOuputRepresentation') {
|
|
4433
4433
|
const v_error = (() => {
|
|
4434
4434
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
4435
4435
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -4442,7 +4442,7 @@ function validate$H(obj, path = 'AvailableTimeSlotsOuputRepresentation') {
|
|
|
4442
4442
|
for (let i = 0; i < obj_timeSlots.length; i++) {
|
|
4443
4443
|
const obj_timeSlots_item = obj_timeSlots[i];
|
|
4444
4444
|
const path_timeSlots_item = path_timeSlots + '[' + i + ']';
|
|
4445
|
-
const referencepath_timeSlots_itemValidationError = validate$
|
|
4445
|
+
const referencepath_timeSlots_itemValidationError = validate$J(obj_timeSlots_item, path_timeSlots_item);
|
|
4446
4446
|
if (referencepath_timeSlots_itemValidationError !== null) {
|
|
4447
4447
|
let message = 'Object doesn\'t match TimeSlot (at "' + path_timeSlots_item + '")\n';
|
|
4448
4448
|
message += referencepath_timeSlots_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -4487,7 +4487,7 @@ function equals$n(existing, incoming) {
|
|
|
4487
4487
|
}
|
|
4488
4488
|
const ingest$e = function AvailableTimeSlotsOuputRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
4489
4489
|
if (process.env.NODE_ENV !== 'production') {
|
|
4490
|
-
const validateError = validate$
|
|
4490
|
+
const validateError = validate$I(input);
|
|
4491
4491
|
if (validateError !== null) {
|
|
4492
4492
|
throw validateError;
|
|
4493
4493
|
}
|
|
@@ -4566,7 +4566,7 @@ function keyBuilder$q(luvio, config) {
|
|
|
4566
4566
|
function typeCheckConfig$g(untrustedConfig) {
|
|
4567
4567
|
const config = {};
|
|
4568
4568
|
const untrustedConfig_availableTimeSlotsInput = untrustedConfig.availableTimeSlotsInput;
|
|
4569
|
-
const referenceAvailableTimeSlotsInputRepresentationValidationError = validate$
|
|
4569
|
+
const referenceAvailableTimeSlotsInputRepresentationValidationError = validate$K(untrustedConfig_availableTimeSlotsInput);
|
|
4570
4570
|
if (referenceAvailableTimeSlotsInputRepresentationValidationError === null) {
|
|
4571
4571
|
config.availableTimeSlotsInput = untrustedConfig_availableTimeSlotsInput;
|
|
4572
4572
|
}
|
|
@@ -4644,7 +4644,7 @@ const getAvailableTimeSlotsAdapterFactory = (luvio) => function education__getAv
|
|
|
4644
4644
|
};
|
|
4645
4645
|
|
|
4646
4646
|
const VERSION$m = "c470aba735607497dd11c1fcd34489d1";
|
|
4647
|
-
function validate$
|
|
4647
|
+
function validate$H(obj, path = 'AvailableTopic') {
|
|
4648
4648
|
const v_error = (() => {
|
|
4649
4649
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
4650
4650
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -4780,7 +4780,7 @@ function equals$m(existing, incoming) {
|
|
|
4780
4780
|
}
|
|
4781
4781
|
|
|
4782
4782
|
const VERSION$l = "3cb0110faf688dc57056aa83be527181";
|
|
4783
|
-
function validate$
|
|
4783
|
+
function validate$G(obj, path = 'AvailableTopicsOutputRepresentation') {
|
|
4784
4784
|
const v_error = (() => {
|
|
4785
4785
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
4786
4786
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -4793,7 +4793,7 @@ function validate$F(obj, path = 'AvailableTopicsOutputRepresentation') {
|
|
|
4793
4793
|
for (let i = 0; i < obj_topics.length; i++) {
|
|
4794
4794
|
const obj_topics_item = obj_topics[i];
|
|
4795
4795
|
const path_topics_item = path_topics + '[' + i + ']';
|
|
4796
|
-
const referencepath_topics_itemValidationError = validate$
|
|
4796
|
+
const referencepath_topics_itemValidationError = validate$H(obj_topics_item, path_topics_item);
|
|
4797
4797
|
if (referencepath_topics_itemValidationError !== null) {
|
|
4798
4798
|
let message = 'Object doesn\'t match AvailableTopic (at "' + path_topics_item + '")\n';
|
|
4799
4799
|
message += referencepath_topics_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -4838,7 +4838,7 @@ function equals$l(existing, incoming) {
|
|
|
4838
4838
|
}
|
|
4839
4839
|
const ingest$d = function AvailableTopicsOutputRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
4840
4840
|
if (process.env.NODE_ENV !== 'production') {
|
|
4841
|
-
const validateError = validate$
|
|
4841
|
+
const validateError = validate$G(input);
|
|
4842
4842
|
if (validateError !== null) {
|
|
4843
4843
|
throw validateError;
|
|
4844
4844
|
}
|
|
@@ -4989,7 +4989,7 @@ const getAvailableTopicsAdapterFactory = (luvio) => function education__getAvail
|
|
|
4989
4989
|
|
|
4990
4990
|
const TTL$3 = 100;
|
|
4991
4991
|
const VERSION$k = "51a57763ac92bf86b3c62c32e17dbd49";
|
|
4992
|
-
function validate$
|
|
4992
|
+
function validate$F(obj, path = 'IndividualApplicationTaskOutputRepresentation') {
|
|
4993
4993
|
const v_error = (() => {
|
|
4994
4994
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
4995
4995
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -4997,7 +4997,7 @@ function validate$E(obj, path = 'IndividualApplicationTaskOutputRepresentation')
|
|
|
4997
4997
|
if (obj.result !== undefined) {
|
|
4998
4998
|
const obj_result = obj.result;
|
|
4999
4999
|
const path_result = path + '.result';
|
|
5000
|
-
const referencepath_resultValidationError = validate$
|
|
5000
|
+
const referencepath_resultValidationError = validate$W(obj_result, path_result);
|
|
5001
5001
|
if (referencepath_resultValidationError !== null) {
|
|
5002
5002
|
let message = 'Object doesn\'t match IndividualApplicationTask (at "' + path_result + '")\n';
|
|
5003
5003
|
message += referencepath_resultValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -5027,7 +5027,7 @@ function equals$k(existing, incoming) {
|
|
|
5027
5027
|
}
|
|
5028
5028
|
const ingest$c = function IndividualApplicationTaskOutputRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
5029
5029
|
if (process.env.NODE_ENV !== 'production') {
|
|
5030
|
-
const validateError = validate$
|
|
5030
|
+
const validateError = validate$F(input);
|
|
5031
5031
|
if (validateError !== null) {
|
|
5032
5032
|
throw validateError;
|
|
5033
5033
|
}
|
|
@@ -5185,7 +5185,7 @@ const getIndividualApplicationTaskAdapterFactory = (luvio) => function education
|
|
|
5185
5185
|
buildCachedSnapshotCachePolicy$a, buildNetworkSnapshotCachePolicy$a);
|
|
5186
5186
|
};
|
|
5187
5187
|
|
|
5188
|
-
function validate$
|
|
5188
|
+
function validate$E(obj, path = 'LearningOutcomeItemOutput') {
|
|
5189
5189
|
const v_error = (() => {
|
|
5190
5190
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
5191
5191
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -5254,7 +5254,7 @@ var DiscriminatorValues;
|
|
|
5254
5254
|
DiscriminatorValues["LearningCourse"] = "LearningCourse";
|
|
5255
5255
|
DiscriminatorValues["LearningProgram"] = "LearningProgram";
|
|
5256
5256
|
})(DiscriminatorValues || (DiscriminatorValues = {}));
|
|
5257
|
-
function validate$
|
|
5257
|
+
function validate$D(obj, path = 'LearningOutput') {
|
|
5258
5258
|
const v_error = (() => {
|
|
5259
5259
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
5260
5260
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -5348,6 +5348,36 @@ function validate$C(obj, path = 'LearningOutput') {
|
|
|
5348
5348
|
return v_error === undefined ? null : v_error;
|
|
5349
5349
|
}
|
|
5350
5350
|
|
|
5351
|
+
function validate$C(obj, path = 'LearningEquivalency') {
|
|
5352
|
+
const v_error = (() => {
|
|
5353
|
+
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
5354
|
+
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
5355
|
+
}
|
|
5356
|
+
if (obj.equivalencyId !== undefined) {
|
|
5357
|
+
const obj_equivalencyId = obj.equivalencyId;
|
|
5358
|
+
const path_equivalencyId = path + '.equivalencyId';
|
|
5359
|
+
if (typeof obj_equivalencyId !== 'string') {
|
|
5360
|
+
return new TypeError('Expected "string" but received "' + typeof obj_equivalencyId + '" (at "' + path_equivalencyId + '")');
|
|
5361
|
+
}
|
|
5362
|
+
}
|
|
5363
|
+
if (obj.equivalencyName !== undefined) {
|
|
5364
|
+
const obj_equivalencyName = obj.equivalencyName;
|
|
5365
|
+
const path_equivalencyName = path + '.equivalencyName';
|
|
5366
|
+
if (typeof obj_equivalencyName !== 'string') {
|
|
5367
|
+
return new TypeError('Expected "string" but received "' + typeof obj_equivalencyName + '" (at "' + path_equivalencyName + '")');
|
|
5368
|
+
}
|
|
5369
|
+
}
|
|
5370
|
+
if (obj.typeLabel !== undefined) {
|
|
5371
|
+
const obj_typeLabel = obj.typeLabel;
|
|
5372
|
+
const path_typeLabel = path + '.typeLabel';
|
|
5373
|
+
if (typeof obj_typeLabel !== 'string') {
|
|
5374
|
+
return new TypeError('Expected "string" but received "' + typeof obj_typeLabel + '" (at "' + path_typeLabel + '")');
|
|
5375
|
+
}
|
|
5376
|
+
}
|
|
5377
|
+
})();
|
|
5378
|
+
return v_error === undefined ? null : v_error;
|
|
5379
|
+
}
|
|
5380
|
+
|
|
5351
5381
|
function validate$B(obj, path = 'LearningStatus') {
|
|
5352
5382
|
const v_error = (() => {
|
|
5353
5383
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -5395,6 +5425,21 @@ function validate$B(obj, path = 'LearningStatus') {
|
|
|
5395
5425
|
return new TypeError('Expected "string" but received "' + typeof obj_durationUnit + '" (at "' + path_durationUnit + '")');
|
|
5396
5426
|
}
|
|
5397
5427
|
}
|
|
5428
|
+
const obj_equivalency = obj.equivalency;
|
|
5429
|
+
const path_equivalency = path + '.equivalency';
|
|
5430
|
+
if (!ArrayIsArray(obj_equivalency)) {
|
|
5431
|
+
return new TypeError('Expected "array" but received "' + typeof obj_equivalency + '" (at "' + path_equivalency + '")');
|
|
5432
|
+
}
|
|
5433
|
+
for (let i = 0; i < obj_equivalency.length; i++) {
|
|
5434
|
+
const obj_equivalency_item = obj_equivalency[i];
|
|
5435
|
+
const path_equivalency_item = path_equivalency + '[' + i + ']';
|
|
5436
|
+
const referencepath_equivalency_itemValidationError = validate$C(obj_equivalency_item, path_equivalency_item);
|
|
5437
|
+
if (referencepath_equivalency_itemValidationError !== null) {
|
|
5438
|
+
let message = 'Object doesn\'t match LearningEquivalency (at "' + path_equivalency_item + '")\n';
|
|
5439
|
+
message += referencepath_equivalency_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
5440
|
+
return new TypeError(message);
|
|
5441
|
+
}
|
|
5442
|
+
}
|
|
5398
5443
|
if (obj.learningId !== undefined) {
|
|
5399
5444
|
const obj_learningId = obj.learningId;
|
|
5400
5445
|
const path_learningId = path + '.learningId';
|
|
@@ -5465,7 +5510,7 @@ function validate$A(obj, path = 'LearningFulfiller') {
|
|
|
5465
5510
|
if (obj.learning !== undefined) {
|
|
5466
5511
|
const obj_learning = obj.learning;
|
|
5467
5512
|
const path_learning = path + '.learning';
|
|
5468
|
-
const referencepath_learningValidationError = validate$
|
|
5513
|
+
const referencepath_learningValidationError = validate$D(obj_learning, path_learning);
|
|
5469
5514
|
if (referencepath_learningValidationError !== null) {
|
|
5470
5515
|
let message = 'Object doesn\'t match LearningOutput (at "' + path_learning + '")\n';
|
|
5471
5516
|
message += referencepath_learningValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -5475,7 +5520,7 @@ function validate$A(obj, path = 'LearningFulfiller') {
|
|
|
5475
5520
|
if (obj.learningOutcomeItem !== undefined) {
|
|
5476
5521
|
const obj_learningOutcomeItem = obj.learningOutcomeItem;
|
|
5477
5522
|
const path_learningOutcomeItem = path + '.learningOutcomeItem';
|
|
5478
|
-
const referencepath_learningOutcomeItemValidationError = validate$
|
|
5523
|
+
const referencepath_learningOutcomeItemValidationError = validate$E(obj_learningOutcomeItem, path_learningOutcomeItem);
|
|
5479
5524
|
if (referencepath_learningOutcomeItemValidationError !== null) {
|
|
5480
5525
|
let message = 'Object doesn\'t match LearningOutcomeItemOutput (at "' + path_learningOutcomeItem + '")\n';
|
|
5481
5526
|
message += referencepath_learningOutcomeItemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -5721,7 +5766,7 @@ function validate$x(obj, path = 'LearnerProgram') {
|
|
|
5721
5766
|
if (obj.learningOutcomeItem !== undefined) {
|
|
5722
5767
|
const obj_learningOutcomeItem = obj.learningOutcomeItem;
|
|
5723
5768
|
const path_learningOutcomeItem = path + '.learningOutcomeItem';
|
|
5724
|
-
const referencepath_learningOutcomeItemValidationError = validate$
|
|
5769
|
+
const referencepath_learningOutcomeItemValidationError = validate$E(obj_learningOutcomeItem, path_learningOutcomeItem);
|
|
5725
5770
|
if (referencepath_learningOutcomeItemValidationError !== null) {
|
|
5726
5771
|
let message = 'Object doesn\'t match LearningOutcomeItemOutput (at "' + path_learningOutcomeItem + '")\n';
|
|
5727
5772
|
message += referencepath_learningOutcomeItemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -6223,7 +6268,7 @@ function validate$t(obj, path = 'GetLearningOutputRepresentation') {
|
|
|
6223
6268
|
for (let i = 0; i < obj_errors.length; i++) {
|
|
6224
6269
|
const obj_errors_item = obj_errors[i];
|
|
6225
6270
|
const path_errors_item = path_errors + '[' + i + ']';
|
|
6226
|
-
const referencepath_errors_itemValidationError = validate$
|
|
6271
|
+
const referencepath_errors_itemValidationError = validate$14(obj_errors_item, path_errors_item);
|
|
6227
6272
|
if (referencepath_errors_itemValidationError !== null) {
|
|
6228
6273
|
let message = 'Object doesn\'t match EducationApiErrorDetails (at "' + path_errors_item + '")\n';
|
|
6229
6274
|
message += referencepath_errors_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -6234,7 +6279,7 @@ function validate$t(obj, path = 'GetLearningOutputRepresentation') {
|
|
|
6234
6279
|
if (obj.learning !== undefined) {
|
|
6235
6280
|
const obj_learning = obj.learning;
|
|
6236
6281
|
const path_learning = path + '.learning';
|
|
6237
|
-
const referencepath_learningValidationError = validate$
|
|
6282
|
+
const referencepath_learningValidationError = validate$D(obj_learning, path_learning);
|
|
6238
6283
|
if (referencepath_learningValidationError !== null) {
|
|
6239
6284
|
let message = 'Object doesn\'t match LearningOutput (at "' + path_learning + '")\n';
|
|
6240
6285
|
message += referencepath_learningValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -6284,7 +6329,7 @@ function validate$t(obj, path = 'GetLearningOutputRepresentation') {
|
|
|
6284
6329
|
for (let i = 0; i < obj_outcomes.length; i++) {
|
|
6285
6330
|
const obj_outcomes_item = obj_outcomes[i];
|
|
6286
6331
|
const path_outcomes_item = path_outcomes + '[' + i + ']';
|
|
6287
|
-
const referencepath_outcomes_itemValidationError = validate$
|
|
6332
|
+
const referencepath_outcomes_itemValidationError = validate$E(obj_outcomes_item, path_outcomes_item);
|
|
6288
6333
|
if (referencepath_outcomes_itemValidationError !== null) {
|
|
6289
6334
|
let message = 'Object doesn\'t match LearningOutcomeItemOutput (at "' + path_outcomes_item + '")\n';
|
|
6290
6335
|
message += referencepath_outcomes_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -6631,7 +6676,7 @@ function validate$r(obj, path = 'GetNewApplicationPreliminaryDataResult') {
|
|
|
6631
6676
|
for (let i = 0; i < obj_applicants.length; i++) {
|
|
6632
6677
|
const obj_applicants_item = obj_applicants[i];
|
|
6633
6678
|
const path_applicants_item = path_applicants + '[' + i + ']';
|
|
6634
|
-
const referencepath_applicants_itemValidationError = validate$
|
|
6679
|
+
const referencepath_applicants_itemValidationError = validate$Y(obj_applicants_item, path_applicants_item);
|
|
6635
6680
|
if (referencepath_applicants_itemValidationError !== null) {
|
|
6636
6681
|
let message = 'Object doesn\'t match Applicant (at "' + path_applicants_item + '")\n';
|
|
6637
6682
|
message += referencepath_applicants_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -10396,4 +10441,4 @@ withDefaultLuvio((luvio) => {
|
|
|
10396
10441
|
});
|
|
10397
10442
|
|
|
10398
10443
|
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 };
|
|
10399
|
-
// version: 1.
|
|
10444
|
+
// version: 1.366.0-bf15f04cce
|
package/src/raml/api.raml
CHANGED
|
@@ -2322,6 +2322,11 @@ types:
|
|
|
2322
2322
|
description: Learning Id
|
|
2323
2323
|
type: string
|
|
2324
2324
|
required: false
|
|
2325
|
+
equivalency:
|
|
2326
|
+
description: List of equivalencies like Transfer credit, Work Equivalency, etc.
|
|
2327
|
+
type: array
|
|
2328
|
+
items:
|
|
2329
|
+
type: LearningEquivalency
|
|
2325
2330
|
letterGrade:
|
|
2326
2331
|
description: The letter grade awarded to the learner for completing the course
|
|
2327
2332
|
type: string
|
|
@@ -2353,6 +2358,22 @@ types:
|
|
|
2353
2358
|
format: double
|
|
2354
2359
|
type: number
|
|
2355
2360
|
required: false
|
|
2361
|
+
LearningEquivalency:
|
|
2362
|
+
description: Equivalency like Transfer credit, Work Equivalency, etc.
|
|
2363
|
+
type: object
|
|
2364
|
+
properties:
|
|
2365
|
+
equivalencyName:
|
|
2366
|
+
description: Name of the Equivalency
|
|
2367
|
+
type: string
|
|
2368
|
+
required: false
|
|
2369
|
+
equivalencyId:
|
|
2370
|
+
description: ID of the Equivalency
|
|
2371
|
+
type: string
|
|
2372
|
+
required: false
|
|
2373
|
+
typeLabel:
|
|
2374
|
+
description: type of the Equivalency
|
|
2375
|
+
type: string
|
|
2376
|
+
required: false
|
|
2356
2377
|
MentoringBenefitAssignment:
|
|
2357
2378
|
description: Representation of the benefit assignment record updated with provider information.
|
|
2358
2379
|
type: object
|