@tudopz/model 3.0.0-dev.1 → 3.0.0-dev.13
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/package.json +5 -5
- package/src/constant/neo-test.d.ts +7 -0
- package/src/constant/neo-test.js +11 -0
- package/src/constant/neo-test.js.map +1 -0
- package/src/constant/student-service.js +2 -0
- package/src/constant/student-service.js.map +1 -1
- package/src/constants.d.ts +17 -16
- package/src/constants.js +18 -63
- package/src/constants.js.map +1 -1
- package/src/enums.d.ts +22 -19
- package/src/enums.js +23 -51
- package/src/enums.js.map +1 -1
- package/src/model/{neo-domain.d.ts → neo-tag.d.ts} +6 -1
- package/src/model/neo-tag.js +38 -0
- package/src/model/neo-tag.js.map +1 -0
- package/src/model/neo-test-flow.d.ts +28 -0
- package/src/model/neo-test-flow.js +17 -0
- package/src/model/neo-test-flow.js.map +1 -0
- package/src/model/neo-test-question-answer.d.ts +2 -1
- package/src/model/neo-test-question-answer.js +6 -2
- package/src/model/neo-test-question-answer.js.map +1 -1
- package/src/model/neo-test-question.d.ts +4 -4
- package/src/model/neo-test-question.js +10 -21
- package/src/model/neo-test-question.js.map +1 -1
- package/src/model/neo-test-section-to-question.d.ts +9 -0
- package/src/model/neo-test-section-to-question.js +36 -0
- package/src/model/neo-test-section-to-question.js.map +1 -0
- package/src/model/neo-test-section.d.ts +10 -0
- package/src/model/neo-test-section.js +39 -0
- package/src/model/neo-test-section.js.map +1 -0
- package/src/model/neo-test.d.ts +19 -0
- package/src/model/neo-test.js +59 -0
- package/src/model/neo-test.js.map +1 -0
- package/src/model/student-service.d.ts +2 -1
- package/src/model/student-service.js +1 -0
- package/src/model/student-service.js.map +1 -1
- package/src/models.d.ts +66 -58
- package/src/models.js +67 -128
- package/src/models.js.map +1 -1
- package/src/model/neo-domain.js +0 -29
- package/src/model/neo-domain.js.map +0 -1
- package/src/model/neo-skill.d.ts +0 -7
- package/src/model/neo-skill.js +0 -29
- package/src/model/neo-skill.js.map +0 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { NeoTestQuestion } from './neo-test-question';
|
|
2
|
+
import { NeoTestSection } from './neo-test-section';
|
|
3
|
+
export declare class NeoTestSectionToQuestion {
|
|
4
|
+
sectionId: number;
|
|
5
|
+
questionId: number;
|
|
6
|
+
order: number;
|
|
7
|
+
section: NeoTestSection;
|
|
8
|
+
question: NeoTestQuestion;
|
|
9
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.NeoTestSectionToQuestion = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const typeorm_1 = require("typeorm");
|
|
6
|
+
const neo_test_question_1 = require("./neo-test-question");
|
|
7
|
+
const neo_test_section_1 = require("./neo-test-section");
|
|
8
|
+
let NeoTestSectionToQuestion = class NeoTestSectionToQuestion {
|
|
9
|
+
};
|
|
10
|
+
tslib_1.__decorate([
|
|
11
|
+
(0, typeorm_1.PrimaryColumn)({ type: 'int', nullable: false }),
|
|
12
|
+
tslib_1.__metadata("design:type", Number)
|
|
13
|
+
], NeoTestSectionToQuestion.prototype, "sectionId", void 0);
|
|
14
|
+
tslib_1.__decorate([
|
|
15
|
+
(0, typeorm_1.PrimaryColumn)({ type: 'int', nullable: false }),
|
|
16
|
+
tslib_1.__metadata("design:type", Number)
|
|
17
|
+
], NeoTestSectionToQuestion.prototype, "questionId", void 0);
|
|
18
|
+
tslib_1.__decorate([
|
|
19
|
+
(0, typeorm_1.Column)({ type: 'int', nullable: false }),
|
|
20
|
+
tslib_1.__metadata("design:type", Number)
|
|
21
|
+
], NeoTestSectionToQuestion.prototype, "order", void 0);
|
|
22
|
+
tslib_1.__decorate([
|
|
23
|
+
(0, typeorm_1.ManyToOne)(() => neo_test_section_1.NeoTestSection, (section) => section.questions),
|
|
24
|
+
(0, typeorm_1.JoinColumn)(),
|
|
25
|
+
tslib_1.__metadata("design:type", neo_test_section_1.NeoTestSection)
|
|
26
|
+
], NeoTestSectionToQuestion.prototype, "section", void 0);
|
|
27
|
+
tslib_1.__decorate([
|
|
28
|
+
(0, typeorm_1.ManyToOne)(() => neo_test_question_1.NeoTestQuestion, (question) => question.sections),
|
|
29
|
+
(0, typeorm_1.JoinColumn)(),
|
|
30
|
+
tslib_1.__metadata("design:type", neo_test_question_1.NeoTestQuestion)
|
|
31
|
+
], NeoTestSectionToQuestion.prototype, "question", void 0);
|
|
32
|
+
NeoTestSectionToQuestion = tslib_1.__decorate([
|
|
33
|
+
(0, typeorm_1.Entity)({ name: 'neo_test_sections_to_questions' })
|
|
34
|
+
], NeoTestSectionToQuestion);
|
|
35
|
+
exports.NeoTestSectionToQuestion = NeoTestSectionToQuestion;
|
|
36
|
+
//# sourceMappingURL=neo-test-section-to-question.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"neo-test-section-to-question.js","sourceRoot":"","sources":["../../../../../libs/model/src/model/neo-test-section-to-question.ts"],"names":[],"mappings":";;;;AAAA,qCAA+E;AAE/E,2DAAsD;AACtD,yDAAoD;AAG7C,IAAM,wBAAwB,GAA9B,MAAM,wBAAwB;CAiBpC,CAAA;AAhBC;IAAC,IAAA,uBAAa,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;;2DAC9B;AAElB;IAAC,IAAA,uBAAa,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;;4DAC7B;AAEnB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;;uDAC3B;AAEd;IAAC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,iCAAc,EAAE,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,SAAS,CAAC;IAC/D,IAAA,oBAAU,GAAE;sCACJ,iCAAc;yDAAC;AAExB;IAAC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,mCAAe,EAAE,CAAC,QAAQ,EAAE,EAAE,CAAC,QAAQ,CAAC,QAAQ,CAAC;IACjE,IAAA,oBAAU,GAAE;sCACH,mCAAe;0DAAC;AAhBf,wBAAwB;IADpC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,gCAAgC,EAAE,CAAC;GACtC,wBAAwB,CAiBpC;AAjBY,4DAAwB"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { NeoTest } from './neo-test';
|
|
2
|
+
import { NeoTestSectionToQuestion } from './neo-test-section-to-question';
|
|
3
|
+
export declare class NeoTestSection {
|
|
4
|
+
id: number;
|
|
5
|
+
name: string;
|
|
6
|
+
duration: number;
|
|
7
|
+
testId: number;
|
|
8
|
+
test: NeoTest;
|
|
9
|
+
questions: NeoTestSectionToQuestion[];
|
|
10
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.NeoTestSection = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const typeorm_1 = require("typeorm");
|
|
6
|
+
const neo_test_1 = require("./neo-test");
|
|
7
|
+
const neo_test_section_to_question_1 = require("./neo-test-section-to-question");
|
|
8
|
+
let NeoTestSection = class NeoTestSection {
|
|
9
|
+
};
|
|
10
|
+
tslib_1.__decorate([
|
|
11
|
+
(0, typeorm_1.PrimaryGeneratedColumn)(),
|
|
12
|
+
tslib_1.__metadata("design:type", Number)
|
|
13
|
+
], NeoTestSection.prototype, "id", void 0);
|
|
14
|
+
tslib_1.__decorate([
|
|
15
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 100 }),
|
|
16
|
+
tslib_1.__metadata("design:type", String)
|
|
17
|
+
], NeoTestSection.prototype, "name", void 0);
|
|
18
|
+
tslib_1.__decorate([
|
|
19
|
+
(0, typeorm_1.Column)({ type: 'int' }),
|
|
20
|
+
tslib_1.__metadata("design:type", Number)
|
|
21
|
+
], NeoTestSection.prototype, "duration", void 0);
|
|
22
|
+
tslib_1.__decorate([
|
|
23
|
+
(0, typeorm_1.Column)({ type: 'int' }),
|
|
24
|
+
tslib_1.__metadata("design:type", Number)
|
|
25
|
+
], NeoTestSection.prototype, "testId", void 0);
|
|
26
|
+
tslib_1.__decorate([
|
|
27
|
+
(0, typeorm_1.ManyToOne)(() => neo_test_1.NeoTest, (test) => test.sections),
|
|
28
|
+
(0, typeorm_1.JoinColumn)(),
|
|
29
|
+
tslib_1.__metadata("design:type", neo_test_1.NeoTest)
|
|
30
|
+
], NeoTestSection.prototype, "test", void 0);
|
|
31
|
+
tslib_1.__decorate([
|
|
32
|
+
(0, typeorm_1.OneToMany)(() => neo_test_section_to_question_1.NeoTestSectionToQuestion, (question) => question.section),
|
|
33
|
+
tslib_1.__metadata("design:type", Array)
|
|
34
|
+
], NeoTestSection.prototype, "questions", void 0);
|
|
35
|
+
NeoTestSection = tslib_1.__decorate([
|
|
36
|
+
(0, typeorm_1.Entity)({ name: 'neo_test_sections' })
|
|
37
|
+
], NeoTestSection);
|
|
38
|
+
exports.NeoTestSection = NeoTestSection;
|
|
39
|
+
//# sourceMappingURL=neo-test-section.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"neo-test-section.js","sourceRoot":"","sources":["../../../../../libs/model/src/model/neo-test-section.ts"],"names":[],"mappings":";;;;AAAA,qCAAmG;AAEnG,yCAAqC;AACrC,iFAA0E;AAGnE,IAAM,cAAc,GAApB,MAAM,cAAc;CAmB1B,CAAA;AAlBC;IAAC,IAAA,gCAAsB,GAAE;;0CACd;AAEX;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;4CAC5B;AAEb;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;gDACP;AAEjB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;8CACT;AAEf;IAAC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,kBAAO,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC;IACjD,IAAA,oBAAU,GAAE;sCACP,kBAAO;4CAAC;AAEd;IAAC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,uDAAwB,EAAE,CAAC,QAAQ,EAAE,EAAE,CAAC,QAAQ,CAAC,OAAO,CAAC;;iDACpC;AAlB3B,cAAc;IAD1B,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,mBAAmB,EAAE,CAAC;GACzB,cAAc,CAmB1B;AAnBY,wCAAc"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { NeoTestFlow } from './neo-test-flow';
|
|
2
|
+
import { NeoTestSection } from './neo-test-section';
|
|
3
|
+
export declare enum NEO_TEST_STATUS {
|
|
4
|
+
DRAFT = 1,
|
|
5
|
+
PUBLISHED = 2,
|
|
6
|
+
INACTIVE = 3
|
|
7
|
+
}
|
|
8
|
+
export declare class NeoTest {
|
|
9
|
+
id: number;
|
|
10
|
+
service: number;
|
|
11
|
+
name: string;
|
|
12
|
+
description: string;
|
|
13
|
+
isDiagnostic: boolean;
|
|
14
|
+
flow?: NeoTestFlow;
|
|
15
|
+
status: number;
|
|
16
|
+
createdAt: Date;
|
|
17
|
+
updatedAt: Date;
|
|
18
|
+
sections: NeoTestSection[];
|
|
19
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.NeoTest = exports.NEO_TEST_STATUS = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const typeorm_1 = require("typeorm");
|
|
6
|
+
const neo_test_section_1 = require("./neo-test-section");
|
|
7
|
+
var NEO_TEST_STATUS;
|
|
8
|
+
(function (NEO_TEST_STATUS) {
|
|
9
|
+
NEO_TEST_STATUS[NEO_TEST_STATUS["DRAFT"] = 1] = "DRAFT";
|
|
10
|
+
NEO_TEST_STATUS[NEO_TEST_STATUS["PUBLISHED"] = 2] = "PUBLISHED";
|
|
11
|
+
NEO_TEST_STATUS[NEO_TEST_STATUS["INACTIVE"] = 3] = "INACTIVE";
|
|
12
|
+
})(NEO_TEST_STATUS = exports.NEO_TEST_STATUS || (exports.NEO_TEST_STATUS = {}));
|
|
13
|
+
let NeoTest = class NeoTest {
|
|
14
|
+
};
|
|
15
|
+
tslib_1.__decorate([
|
|
16
|
+
(0, typeorm_1.PrimaryGeneratedColumn)(),
|
|
17
|
+
tslib_1.__metadata("design:type", Number)
|
|
18
|
+
], NeoTest.prototype, "id", void 0);
|
|
19
|
+
tslib_1.__decorate([
|
|
20
|
+
(0, typeorm_1.Column)({ type: 'int' }),
|
|
21
|
+
tslib_1.__metadata("design:type", Number)
|
|
22
|
+
], NeoTest.prototype, "service", void 0);
|
|
23
|
+
tslib_1.__decorate([
|
|
24
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 100 }),
|
|
25
|
+
tslib_1.__metadata("design:type", String)
|
|
26
|
+
], NeoTest.prototype, "name", void 0);
|
|
27
|
+
tslib_1.__decorate([
|
|
28
|
+
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
29
|
+
tslib_1.__metadata("design:type", String)
|
|
30
|
+
], NeoTest.prototype, "description", void 0);
|
|
31
|
+
tslib_1.__decorate([
|
|
32
|
+
(0, typeorm_1.Column)({ type: 'boolean', default: false }),
|
|
33
|
+
tslib_1.__metadata("design:type", Boolean)
|
|
34
|
+
], NeoTest.prototype, "isDiagnostic", void 0);
|
|
35
|
+
tslib_1.__decorate([
|
|
36
|
+
(0, typeorm_1.Column)({ type: 'json', nullable: true }),
|
|
37
|
+
tslib_1.__metadata("design:type", Object)
|
|
38
|
+
], NeoTest.prototype, "flow", void 0);
|
|
39
|
+
tslib_1.__decorate([
|
|
40
|
+
(0, typeorm_1.Column)({ type: 'int', default: NEO_TEST_STATUS.DRAFT }),
|
|
41
|
+
tslib_1.__metadata("design:type", Number)
|
|
42
|
+
], NeoTest.prototype, "status", void 0);
|
|
43
|
+
tslib_1.__decorate([
|
|
44
|
+
(0, typeorm_1.CreateDateColumn)(),
|
|
45
|
+
tslib_1.__metadata("design:type", Date)
|
|
46
|
+
], NeoTest.prototype, "createdAt", void 0);
|
|
47
|
+
tslib_1.__decorate([
|
|
48
|
+
(0, typeorm_1.UpdateDateColumn)(),
|
|
49
|
+
tslib_1.__metadata("design:type", Date)
|
|
50
|
+
], NeoTest.prototype, "updatedAt", void 0);
|
|
51
|
+
tslib_1.__decorate([
|
|
52
|
+
(0, typeorm_1.OneToMany)(() => neo_test_section_1.NeoTestSection, (section) => section.test),
|
|
53
|
+
tslib_1.__metadata("design:type", Array)
|
|
54
|
+
], NeoTest.prototype, "sections", void 0);
|
|
55
|
+
NeoTest = tslib_1.__decorate([
|
|
56
|
+
(0, typeorm_1.Entity)({ name: 'neo_tests' })
|
|
57
|
+
], NeoTest);
|
|
58
|
+
exports.NeoTest = NeoTest;
|
|
59
|
+
//# sourceMappingURL=neo-test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"neo-test.js","sourceRoot":"","sources":["../../../../../libs/model/src/model/neo-test.ts"],"names":[],"mappings":";;;;AAAA,qCAOiB;AAGjB,yDAAoD;AAEpD,IAAY,eAIX;AAJD,WAAY,eAAe;IACzB,uDAAS,CAAA;IACT,+DAAa,CAAA;IACb,6DAAY,CAAA;AACd,CAAC,EAJW,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAI1B;AAGM,IAAM,OAAO,GAAb,MAAM,OAAO;CA8BnB,CAAA;AA7BC;IAAC,IAAA,gCAAsB,GAAE;;mCACd;AAEX;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;wCACR;AAEhB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;qCAC5B;AAEb;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4CACrB;AAEpB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;6CACtB;AAEtB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;qCACtB;AAEnB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,eAAe,CAAC,KAAK,EAAE,CAAC;;uCACzC;AAEf;IAAC,IAAA,0BAAgB,GAAE;sCACR,IAAI;0CAAC;AAEhB;IAAC,IAAA,0BAAgB,GAAE;sCACR,IAAI;0CAAC;AAEhB;IAAC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,iCAAc,EAAE,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC;;yCAChC;AA7BhB,OAAO;IADnB,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;GACjB,OAAO,CA8BnB;AA9BY,0BAAO"}
|
|
@@ -104,5 +104,6 @@ var STUDENT_SERVICE;
|
|
|
104
104
|
STUDENT_SERVICE[STUDENT_SERVICE["IB_SPECIALISED"] = 40] = "IB_SPECIALISED";
|
|
105
105
|
STUDENT_SERVICE[STUDENT_SERVICE["INSEAD_EMBA_ADMISSIONS"] = 41] = "INSEAD_EMBA_ADMISSIONS";
|
|
106
106
|
STUDENT_SERVICE[STUDENT_SERVICE["TEMP_SAT"] = 42] = "TEMP_SAT";
|
|
107
|
+
STUDENT_SERVICE[STUDENT_SERVICE["SECONDARY"] = 43] = "SECONDARY";
|
|
107
108
|
})(STUDENT_SERVICE = exports.STUDENT_SERVICE || (exports.STUDENT_SERVICE = {}));
|
|
108
109
|
//# sourceMappingURL=student-service.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"student-service.js","sourceRoot":"","sources":["../../../../../libs/model/src/model/student-service.ts"],"names":[],"mappings":";;;;AAAA,qCASiB;AAEjB,iCAA8B;AAC9B,iCAA8B;AAC9B,6EAAwE;AACxE,qDAAiD;AAG1C,IAAM,cAAc,GAApB,MAAM,cAAc;IAkCzB,YAAmB,OAAY,EAAE;QAC/B,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;QAC1B,IAAI,IAAI,CAAC,KAAK,EAAE;YACd,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,IAAI,WAAI,CAAC,CAAC,CAAC,CAAC,CAAC;SACjD;IACH,CAAC;CACF,CAAA;AAvCC;IAAC,IAAA,gCAAsB,GAAE;;0CACd;AAEX;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;4CACF;AAEtB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;;iDACT;AAEnB;IAAC,IAAA,0BAAgB,GAAE;sCACR,IAAI;iDAAC;AAEhB;IAAC,IAAA,0BAAgB,GAAE;sCACR,IAAI;iDAAC;AAEhB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;8CACT;AAEf;IAAC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,WAAI,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC;sCAChD,WAAI;4CAAC;AAEX;IAAC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,WAAI,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC;;6CAChC;AAEd;IAAC,IAAA,kBAAQ,EAAC,GAAG,EAAE,CAAC,8BAAa,EAAE,CAAC,aAAa,EAAE,EAAE,CAAC,aAAa,CAAC,cAAc,CAAC;sCAChE,8BAAa;qDAAC;AAE7B;IAAC,IAAA,kBAAQ,EACP,GAAG,EAAE,CAAC,qDAAwB,EAC9B,CAAC,wBAAwB,EAAE,EAAE,CAAC,wBAAwB,CAAC,cAAc,CACtE;sCACyB,qDAAwB;gEAAC;AAhCxC,cAAc;IAD1B,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,kBAAkB,EAAE,CAAC;;GACxB,cAAc,CAwC1B;AAxCY,wCAAc;AA0C3B,IAAY,
|
|
1
|
+
{"version":3,"file":"student-service.js","sourceRoot":"","sources":["../../../../../libs/model/src/model/student-service.ts"],"names":[],"mappings":";;;;AAAA,qCASiB;AAEjB,iCAA8B;AAC9B,iCAA8B;AAC9B,6EAAwE;AACxE,qDAAiD;AAG1C,IAAM,cAAc,GAApB,MAAM,cAAc;IAkCzB,YAAmB,OAAY,EAAE;QAC/B,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;QAC1B,IAAI,IAAI,CAAC,KAAK,EAAE;YACd,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,IAAI,WAAI,CAAC,CAAC,CAAC,CAAC,CAAC;SACjD;IACH,CAAC;CACF,CAAA;AAvCC;IAAC,IAAA,gCAAsB,GAAE;;0CACd;AAEX;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;4CACF;AAEtB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;;iDACT;AAEnB;IAAC,IAAA,0BAAgB,GAAE;sCACR,IAAI;iDAAC;AAEhB;IAAC,IAAA,0BAAgB,GAAE;sCACR,IAAI;iDAAC;AAEhB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;8CACT;AAEf;IAAC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,WAAI,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC;sCAChD,WAAI;4CAAC;AAEX;IAAC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,WAAI,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC;;6CAChC;AAEd;IAAC,IAAA,kBAAQ,EAAC,GAAG,EAAE,CAAC,8BAAa,EAAE,CAAC,aAAa,EAAE,EAAE,CAAC,aAAa,CAAC,cAAc,CAAC;sCAChE,8BAAa;qDAAC;AAE7B;IAAC,IAAA,kBAAQ,EACP,GAAG,EAAE,CAAC,qDAAwB,EAC9B,CAAC,wBAAwB,EAAE,EAAE,CAAC,wBAAwB,CAAC,cAAc,CACtE;sCACyB,qDAAwB;gEAAC;AAhCxC,cAAc;IAD1B,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,kBAAkB,EAAE,CAAC;;GACxB,cAAc,CAwC1B;AAxCY,wCAAc;AA0C3B,IAAY,eA4CX;AA5CD,WAAY,eAAe;IACzB,mDAAO,CAAA;IACP,yDAAM,CAAA;IACN,qDAAI,CAAA;IACJ,mDAAG,CAAA;IACH,qDAAI,CAAA;IACJ,qDAAI,CAAA;IACJ,qDAAI,CAAA;IACJ,6DAAQ,CAAA;IACR,qDAAI,CAAA;IACJ,sDAAI,CAAA;IACJ,oDAAG,CAAA;IACH,sDAAI,CAAA;IACJ,oDAAG,CAAA;IACH,4DAAO,CAAA;IACP,4DAAO,CAAA;IACP,oDAAG,CAAA;IACH,kDAAE,CAAA;IACF,0DAAM,CAAA;IACN,sDAAI,CAAA;IACJ,sDAAI,CAAA;IACJ,oDAAG,CAAA;IACH,sDAAI,CAAA;IACJ,sDAAI,CAAA;IACJ,oDAAG,CAAA;IACH,wDAAK,CAAA;IACL,8DAAQ,CAAA;IACR,kDAAE,CAAA;IACF,kDAAE,CAAA;IACF,wDAAK,CAAA;IACL,wDAAK,CAAA;IACL,wDAAK,CAAA;IACL,kEAAU,CAAA;IACV,0EAAc,CAAA;IACd,4EAAe,CAAA;IACf,oEAAW,CAAA;IACX,sDAAI,CAAA;IACJ,kEAAU,CAAA;IACV,4DAAO,CAAA;IACP,oDAAG,CAAA;IACH,0EAAc,CAAA;IACd,0FAAsB,CAAA;IACtB,8DAAQ,CAAA;IACR,gEAAS,CAAA;AACX,CAAC,EA5CW,eAAe,GAAf,uBAAe,KAAf,uBAAe,QA4C1B"}
|
package/src/models.d.ts
CHANGED
|
@@ -1,58 +1,66 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export
|
|
11
|
-
export
|
|
12
|
-
export
|
|
13
|
-
export
|
|
14
|
-
export
|
|
15
|
-
export
|
|
16
|
-
export
|
|
17
|
-
export
|
|
18
|
-
export
|
|
19
|
-
export
|
|
20
|
-
export
|
|
21
|
-
export
|
|
22
|
-
export
|
|
23
|
-
export
|
|
24
|
-
export
|
|
25
|
-
export
|
|
26
|
-
export
|
|
27
|
-
export
|
|
28
|
-
export
|
|
29
|
-
export
|
|
30
|
-
export
|
|
31
|
-
export
|
|
32
|
-
export
|
|
33
|
-
export
|
|
34
|
-
export
|
|
35
|
-
export
|
|
36
|
-
export
|
|
37
|
-
export
|
|
38
|
-
export
|
|
39
|
-
export
|
|
40
|
-
export
|
|
41
|
-
export
|
|
42
|
-
export
|
|
43
|
-
export
|
|
44
|
-
export
|
|
45
|
-
export
|
|
46
|
-
export
|
|
47
|
-
export
|
|
48
|
-
export
|
|
49
|
-
export
|
|
50
|
-
export
|
|
51
|
-
export
|
|
52
|
-
export
|
|
53
|
-
export
|
|
54
|
-
export
|
|
55
|
-
export
|
|
56
|
-
export
|
|
57
|
-
export
|
|
58
|
-
export
|
|
1
|
+
export * from './model/access-token';
|
|
2
|
+
export * from './model/answer-key';
|
|
3
|
+
export * from './model/case-study';
|
|
4
|
+
export * from './model/conversion-table';
|
|
5
|
+
export * from './model/course-template-event';
|
|
6
|
+
export * from './model/course-template';
|
|
7
|
+
export * from './model/dimension';
|
|
8
|
+
export * from './model/education-system';
|
|
9
|
+
export * from './model/event-log';
|
|
10
|
+
export * from './model/event-to-user';
|
|
11
|
+
export * from './model/event';
|
|
12
|
+
export * from './model/extracurricular-activity';
|
|
13
|
+
export * from './model/file-access';
|
|
14
|
+
export * from './model/file-category';
|
|
15
|
+
export * from './model/file';
|
|
16
|
+
export * from './model/log';
|
|
17
|
+
export * from './model/neo-tag';
|
|
18
|
+
export * from './model/neo-test-flow';
|
|
19
|
+
export * from './model/neo-test-question-answer';
|
|
20
|
+
export * from './model/neo-test-question-category';
|
|
21
|
+
export * from './model/neo-test-question';
|
|
22
|
+
export * from './model/neo-test-section-to-question';
|
|
23
|
+
export * from './model/neo-test-section';
|
|
24
|
+
export * from './model/neo-test';
|
|
25
|
+
export * from './model/guardian';
|
|
26
|
+
export * from './model/high-school-record';
|
|
27
|
+
export * from './model/journey-stage';
|
|
28
|
+
export * from './model/journey-to-student';
|
|
29
|
+
export * from './model/journey';
|
|
30
|
+
export * from './model/lead-assignment';
|
|
31
|
+
export * from './model/lead-form-field';
|
|
32
|
+
export * from './model/lead-form';
|
|
33
|
+
export * from './model/lead-queue';
|
|
34
|
+
export * from './model/lead';
|
|
35
|
+
export * from './model/part-time-assignment';
|
|
36
|
+
export * from './model/pd-pipeline';
|
|
37
|
+
export * from './model/pd-user';
|
|
38
|
+
export * from './model/profile';
|
|
39
|
+
export * from './model/pup-lead';
|
|
40
|
+
export * from './model/sale-split';
|
|
41
|
+
export * from './model/sale';
|
|
42
|
+
export * from './model/school';
|
|
43
|
+
export * from './model/staff-hour';
|
|
44
|
+
export * from './model/staff-subject-tag';
|
|
45
|
+
export * from './model/staff-hour-log';
|
|
46
|
+
export * from './model/student-answer';
|
|
47
|
+
export * from './model/student-extra';
|
|
48
|
+
export * from './model/student-goal';
|
|
49
|
+
export * from './model/student-note-checklist-item';
|
|
50
|
+
export * from './model/student-note';
|
|
51
|
+
export * from './model/student-service-membership-log';
|
|
52
|
+
export * from './model/student-service-membership';
|
|
53
|
+
export * from './model/student-service';
|
|
54
|
+
export * from './model/student-target';
|
|
55
|
+
export * from './model/test-attempt';
|
|
56
|
+
export * from './model/test-category';
|
|
57
|
+
export * from './model/test-question';
|
|
58
|
+
export * from './model/test-report';
|
|
59
|
+
export * from './model/test-score';
|
|
60
|
+
export * from './model/test-section';
|
|
61
|
+
export * from './model/test';
|
|
62
|
+
export * from './model/university-preference';
|
|
63
|
+
export * from './model/user-preference';
|
|
64
|
+
export * from './model/user-to-guardian';
|
|
65
|
+
export * from './model/user';
|
|
66
|
+
export * from './model/zoom-info';
|
package/src/models.js
CHANGED
|
@@ -1,131 +1,70 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
Object.defineProperty(exports, "Sale", { enumerable: true, get: function () { return sale_1.Sale; } });
|
|
71
|
-
var school_1 = require("./model/school");
|
|
72
|
-
Object.defineProperty(exports, "School", { enumerable: true, get: function () { return school_1.School; } });
|
|
73
|
-
var staff_hour_1 = require("./model/staff-hour");
|
|
74
|
-
Object.defineProperty(exports, "StaffHour", { enumerable: true, get: function () { return staff_hour_1.StaffHour; } });
|
|
75
|
-
var staff_subject_tag_1 = require("./model/staff-subject-tag");
|
|
76
|
-
Object.defineProperty(exports, "StaffSubjectTag", { enumerable: true, get: function () { return staff_subject_tag_1.StaffSubjectTag; } });
|
|
77
|
-
var staff_hour_log_1 = require("./model/staff-hour-log");
|
|
78
|
-
Object.defineProperty(exports, "StaffHourLog", { enumerable: true, get: function () { return staff_hour_log_1.StaffHourLog; } });
|
|
79
|
-
var student_answer_1 = require("./model/student-answer");
|
|
80
|
-
Object.defineProperty(exports, "StudentAnswer", { enumerable: true, get: function () { return student_answer_1.StudentAnswer; } });
|
|
81
|
-
var student_extra_1 = require("./model/student-extra");
|
|
82
|
-
Object.defineProperty(exports, "StudentExtra", { enumerable: true, get: function () { return student_extra_1.StudentExtra; } });
|
|
83
|
-
var student_goal_1 = require("./model/student-goal");
|
|
84
|
-
Object.defineProperty(exports, "StudentGoal", { enumerable: true, get: function () { return student_goal_1.StudentGoal; } });
|
|
85
|
-
var student_note_checklist_item_1 = require("./model/student-note-checklist-item");
|
|
86
|
-
Object.defineProperty(exports, "StudentNoteChecklistItem", { enumerable: true, get: function () { return student_note_checklist_item_1.StudentNoteChecklistItem; } });
|
|
87
|
-
var student_note_1 = require("./model/student-note");
|
|
88
|
-
Object.defineProperty(exports, "StudentNote", { enumerable: true, get: function () { return student_note_1.StudentNote; } });
|
|
89
|
-
var student_service_membership_log_1 = require("./model/student-service-membership-log");
|
|
90
|
-
Object.defineProperty(exports, "StudentServiceMembershipLog", { enumerable: true, get: function () { return student_service_membership_log_1.StudentServiceMembershipLog; } });
|
|
91
|
-
var student_service_membership_1 = require("./model/student-service-membership");
|
|
92
|
-
Object.defineProperty(exports, "StudentServiceMembership", { enumerable: true, get: function () { return student_service_membership_1.StudentServiceMembership; } });
|
|
93
|
-
var student_service_1 = require("./model/student-service");
|
|
94
|
-
Object.defineProperty(exports, "StudentService", { enumerable: true, get: function () { return student_service_1.StudentService; } });
|
|
95
|
-
var student_target_1 = require("./model/student-target");
|
|
96
|
-
Object.defineProperty(exports, "StudentTarget", { enumerable: true, get: function () { return student_target_1.StudentTarget; } });
|
|
97
|
-
var test_attempt_1 = require("./model/test-attempt");
|
|
98
|
-
Object.defineProperty(exports, "TestAttempt", { enumerable: true, get: function () { return test_attempt_1.TestAttempt; } });
|
|
99
|
-
var test_category_1 = require("./model/test-category");
|
|
100
|
-
Object.defineProperty(exports, "TestCategory", { enumerable: true, get: function () { return test_category_1.TestCategory; } });
|
|
101
|
-
var test_question_1 = require("./model/test-question");
|
|
102
|
-
Object.defineProperty(exports, "TestQuestion", { enumerable: true, get: function () { return test_question_1.TestQuestion; } });
|
|
103
|
-
var test_report_1 = require("./model/test-report");
|
|
104
|
-
Object.defineProperty(exports, "BaseReport", { enumerable: true, get: function () { return test_report_1.BaseReport; } });
|
|
105
|
-
Object.defineProperty(exports, "SATReport", { enumerable: true, get: function () { return test_report_1.SATReport; } });
|
|
106
|
-
Object.defineProperty(exports, "ACTReport", { enumerable: true, get: function () { return test_report_1.ACTReport; } });
|
|
107
|
-
Object.defineProperty(exports, "GMATReport", { enumerable: true, get: function () { return test_report_1.GMATReport; } });
|
|
108
|
-
Object.defineProperty(exports, "UCATReport", { enumerable: true, get: function () { return test_report_1.UCATReport; } });
|
|
109
|
-
Object.defineProperty(exports, "LSATReport", { enumerable: true, get: function () { return test_report_1.LSATReport; } });
|
|
110
|
-
Object.defineProperty(exports, "MCATReport", { enumerable: true, get: function () { return test_report_1.MCATReport; } });
|
|
111
|
-
Object.defineProperty(exports, "ISATReport", { enumerable: true, get: function () { return test_report_1.ISATReport; } });
|
|
112
|
-
Object.defineProperty(exports, "BMATReport", { enumerable: true, get: function () { return test_report_1.BMATReport; } });
|
|
113
|
-
Object.defineProperty(exports, "IEATReport", { enumerable: true, get: function () { return test_report_1.IEATReport; } });
|
|
114
|
-
Object.defineProperty(exports, "TempSATReport", { enumerable: true, get: function () { return test_report_1.TempSATReport; } });
|
|
115
|
-
var test_score_1 = require("./model/test-score");
|
|
116
|
-
Object.defineProperty(exports, "TestScore", { enumerable: true, get: function () { return test_score_1.TestScore; } });
|
|
117
|
-
var test_section_1 = require("./model/test-section");
|
|
118
|
-
Object.defineProperty(exports, "TestSection", { enumerable: true, get: function () { return test_section_1.TestSection; } });
|
|
119
|
-
var test_1 = require("./model/test");
|
|
120
|
-
Object.defineProperty(exports, "Test", { enumerable: true, get: function () { return test_1.Test; } });
|
|
121
|
-
var university_preference_1 = require("./model/university-preference");
|
|
122
|
-
Object.defineProperty(exports, "UniversityPreference", { enumerable: true, get: function () { return university_preference_1.UniversityPreference; } });
|
|
123
|
-
var user_preference_1 = require("./model/user-preference");
|
|
124
|
-
Object.defineProperty(exports, "UserPreference", { enumerable: true, get: function () { return user_preference_1.UserPreference; } });
|
|
125
|
-
var user_to_guardian_1 = require("./model/user-to-guardian");
|
|
126
|
-
Object.defineProperty(exports, "UserToGuardian", { enumerable: true, get: function () { return user_to_guardian_1.UserToGuardian; } });
|
|
127
|
-
var user_1 = require("./model/user");
|
|
128
|
-
Object.defineProperty(exports, "User", { enumerable: true, get: function () { return user_1.User; } });
|
|
129
|
-
var zoom_info_1 = require("./model/zoom-info");
|
|
130
|
-
Object.defineProperty(exports, "ZoomInfo", { enumerable: true, get: function () { return zoom_info_1.ZoomInfo; } });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./model/access-token"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./model/answer-key"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./model/case-study"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./model/conversion-table"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./model/course-template-event"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./model/course-template"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./model/dimension"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./model/education-system"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./model/event-log"), exports);
|
|
13
|
+
tslib_1.__exportStar(require("./model/event-to-user"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./model/event"), exports);
|
|
15
|
+
tslib_1.__exportStar(require("./model/extracurricular-activity"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./model/file-access"), exports);
|
|
17
|
+
tslib_1.__exportStar(require("./model/file-category"), exports);
|
|
18
|
+
tslib_1.__exportStar(require("./model/file"), exports);
|
|
19
|
+
tslib_1.__exportStar(require("./model/log"), exports);
|
|
20
|
+
tslib_1.__exportStar(require("./model/neo-tag"), exports);
|
|
21
|
+
tslib_1.__exportStar(require("./model/neo-test-flow"), exports);
|
|
22
|
+
tslib_1.__exportStar(require("./model/neo-test-question-answer"), exports);
|
|
23
|
+
tslib_1.__exportStar(require("./model/neo-test-question-category"), exports);
|
|
24
|
+
tslib_1.__exportStar(require("./model/neo-test-question"), exports);
|
|
25
|
+
tslib_1.__exportStar(require("./model/neo-test-section-to-question"), exports);
|
|
26
|
+
tslib_1.__exportStar(require("./model/neo-test-section"), exports);
|
|
27
|
+
tslib_1.__exportStar(require("./model/neo-test"), exports);
|
|
28
|
+
tslib_1.__exportStar(require("./model/guardian"), exports);
|
|
29
|
+
tslib_1.__exportStar(require("./model/high-school-record"), exports);
|
|
30
|
+
tslib_1.__exportStar(require("./model/journey-stage"), exports);
|
|
31
|
+
tslib_1.__exportStar(require("./model/journey-to-student"), exports);
|
|
32
|
+
tslib_1.__exportStar(require("./model/journey"), exports);
|
|
33
|
+
tslib_1.__exportStar(require("./model/lead-assignment"), exports);
|
|
34
|
+
tslib_1.__exportStar(require("./model/lead-form-field"), exports);
|
|
35
|
+
tslib_1.__exportStar(require("./model/lead-form"), exports);
|
|
36
|
+
tslib_1.__exportStar(require("./model/lead-queue"), exports);
|
|
37
|
+
tslib_1.__exportStar(require("./model/lead"), exports);
|
|
38
|
+
tslib_1.__exportStar(require("./model/part-time-assignment"), exports);
|
|
39
|
+
tslib_1.__exportStar(require("./model/pd-pipeline"), exports);
|
|
40
|
+
tslib_1.__exportStar(require("./model/pd-user"), exports);
|
|
41
|
+
tslib_1.__exportStar(require("./model/profile"), exports);
|
|
42
|
+
tslib_1.__exportStar(require("./model/pup-lead"), exports);
|
|
43
|
+
tslib_1.__exportStar(require("./model/sale-split"), exports);
|
|
44
|
+
tslib_1.__exportStar(require("./model/sale"), exports);
|
|
45
|
+
tslib_1.__exportStar(require("./model/school"), exports);
|
|
46
|
+
tslib_1.__exportStar(require("./model/staff-hour"), exports);
|
|
47
|
+
tslib_1.__exportStar(require("./model/staff-subject-tag"), exports);
|
|
48
|
+
tslib_1.__exportStar(require("./model/staff-hour-log"), exports);
|
|
49
|
+
tslib_1.__exportStar(require("./model/student-answer"), exports);
|
|
50
|
+
tslib_1.__exportStar(require("./model/student-extra"), exports);
|
|
51
|
+
tslib_1.__exportStar(require("./model/student-goal"), exports);
|
|
52
|
+
tslib_1.__exportStar(require("./model/student-note-checklist-item"), exports);
|
|
53
|
+
tslib_1.__exportStar(require("./model/student-note"), exports);
|
|
54
|
+
tslib_1.__exportStar(require("./model/student-service-membership-log"), exports);
|
|
55
|
+
tslib_1.__exportStar(require("./model/student-service-membership"), exports);
|
|
56
|
+
tslib_1.__exportStar(require("./model/student-service"), exports);
|
|
57
|
+
tslib_1.__exportStar(require("./model/student-target"), exports);
|
|
58
|
+
tslib_1.__exportStar(require("./model/test-attempt"), exports);
|
|
59
|
+
tslib_1.__exportStar(require("./model/test-category"), exports);
|
|
60
|
+
tslib_1.__exportStar(require("./model/test-question"), exports);
|
|
61
|
+
tslib_1.__exportStar(require("./model/test-report"), exports);
|
|
62
|
+
tslib_1.__exportStar(require("./model/test-score"), exports);
|
|
63
|
+
tslib_1.__exportStar(require("./model/test-section"), exports);
|
|
64
|
+
tslib_1.__exportStar(require("./model/test"), exports);
|
|
65
|
+
tslib_1.__exportStar(require("./model/university-preference"), exports);
|
|
66
|
+
tslib_1.__exportStar(require("./model/user-preference"), exports);
|
|
67
|
+
tslib_1.__exportStar(require("./model/user-to-guardian"), exports);
|
|
68
|
+
tslib_1.__exportStar(require("./model/user"), exports);
|
|
69
|
+
tslib_1.__exportStar(require("./model/zoom-info"), exports);
|
|
131
70
|
//# sourceMappingURL=models.js.map
|
package/src/models.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"models.js","sourceRoot":"","sources":["../../../../libs/model/src/models.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"models.js","sourceRoot":"","sources":["../../../../libs/model/src/models.ts"],"names":[],"mappings":";;;AAAA,+DAAqC;AACrC,6DAAmC;AACnC,6DAAmC;AACnC,mEAAyC;AACzC,wEAA8C;AAC9C,kEAAwC;AACxC,4DAAkC;AAClC,mEAAyC;AACzC,4DAAkC;AAClC,gEAAsC;AACtC,wDAA8B;AAC9B,2EAAiD;AACjD,8DAAoC;AACpC,gEAAsC;AACtC,uDAA6B;AAC7B,sDAA4B;AAC5B,0DAAgC;AAChC,gEAAsC;AACtC,2EAAiD;AACjD,6EAAmD;AACnD,oEAA0C;AAC1C,+EAAqD;AACrD,mEAAyC;AACzC,2DAAiC;AACjC,2DAAiC;AACjC,qEAA2C;AAC3C,gEAAsC;AACtC,qEAA2C;AAC3C,0DAAgC;AAChC,kEAAwC;AACxC,kEAAwC;AACxC,4DAAkC;AAClC,6DAAmC;AACnC,uDAA6B;AAC7B,uEAA6C;AAC7C,8DAAoC;AACpC,0DAAgC;AAChC,0DAAgC;AAChC,2DAAiC;AACjC,6DAAmC;AACnC,uDAA6B;AAC7B,yDAA+B;AAC/B,6DAAmC;AACnC,oEAA0C;AAC1C,iEAAuC;AACvC,iEAAuC;AACvC,gEAAsC;AACtC,+DAAqC;AACrC,8EAAoD;AACpD,+DAAqC;AACrC,iFAAuD;AACvD,6EAAmD;AACnD,kEAAwC;AACxC,iEAAuC;AACvC,+DAAqC;AACrC,gEAAsC;AACtC,gEAAsC;AACtC,8DAAoC;AACpC,6DAAmC;AACnC,+DAAqC;AACrC,uDAA6B;AAC7B,wEAA8C;AAC9C,kEAAwC;AACxC,mEAAyC;AACzC,uDAA6B;AAC7B,4DAAkC"}
|