@tudopz/model 2.27.21 → 2.27.23
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 +1 -1
- package/src/constant/activity-log.d.ts +327 -0
- package/src/constant/activity-log.js +336 -0
- package/src/constant/activity-log.js.map +1 -0
- package/src/constants.d.ts +1 -0
- package/src/constants.js +1 -0
- package/src/constants.js.map +1 -1
- package/src/enums.d.ts +21 -21
- package/src/enums.js +22 -55
- package/src/enums.js.map +1 -1
- package/src/model/activity-log.d.ts +10 -0
- package/src/model/activity-log.js +42 -0
- package/src/model/activity-log.js.map +1 -0
- package/src/model/lead-form.d.ts +1 -1
- package/src/model/lead-form.js +2 -2
- package/src/model/lead-form.js.map +1 -1
- package/src/models.d.ts +60 -59
- package/src/models.js +61 -130
- package/src/models.js.map +1 -1
package/src/constants.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../../../libs/model/src/constants.ts"],"names":[],"mappings":";;;AAAA,sEAA4C;AAC5C,6DAAmC;AACnC,+DAAqC;AACrC,2DAAiC;AACjC,8EAAoD;AACpD,8DAAoC;AACpC,iEAAuC;AACvC,+DAAqC;AACrC,0DAAgC;AAChC,8DAAoC;AACpC,0DAAgC;AAChC,4DAAkC;AAClC,wEAA8C;AAC9C,qEAA2C;AAC3C,6DAAmC;AACnC,2EAAiD;AACjD,0DAAgC"}
|
|
1
|
+
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../../../libs/model/src/constants.ts"],"names":[],"mappings":";;;AAAA,kEAAwC;AACxC,sEAA4C;AAC5C,6DAAmC;AACnC,+DAAqC;AACrC,2DAAiC;AACjC,8EAAoD;AACpD,8DAAoC;AACpC,iEAAuC;AACvC,+DAAqC;AACrC,0DAAgC;AAChC,8DAAoC;AACpC,0DAAgC;AAChC,4DAAkC;AAClC,wEAA8C;AAC9C,qEAA2C;AAC3C,6DAAmC;AACnC,2EAAiD;AACjD,0DAAgC"}
|
package/src/enums.d.ts
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
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
|
|
1
|
+
export * from './model/conversion-table';
|
|
2
|
+
export * from './model/dimension';
|
|
3
|
+
export * from './model/event';
|
|
4
|
+
export * from './model/extracurricular-activity';
|
|
5
|
+
export * from './model/log';
|
|
6
|
+
export * from './model/lead-form-field';
|
|
7
|
+
export * from './model/lead-form';
|
|
8
|
+
export * from './model/lead';
|
|
9
|
+
export * from './model/profile';
|
|
10
|
+
export * from './model/sale';
|
|
11
|
+
export * from './model/school';
|
|
12
|
+
export * from './model/staff-availability';
|
|
13
|
+
export * from './model/staff-hour-log';
|
|
14
|
+
export * from './model/student-assignment';
|
|
15
|
+
export * from './model/student-note';
|
|
16
|
+
export * from './model/student-service-membership-log';
|
|
17
|
+
export * from './model/student-service';
|
|
18
|
+
export * from './model/test-attempt';
|
|
19
|
+
export * from './model/test-question';
|
|
20
|
+
export * from './model/user-to-guardian';
|
|
21
|
+
export * from './model/user';
|
package/src/enums.js
CHANGED
|
@@ -1,58 +1,25 @@
|
|
|
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
|
-
Object.defineProperty(exports, "LEAD_QUALITY", { enumerable: true, get: function () { return lead_1.LEAD_QUALITY; } });
|
|
26
|
-
var profile_1 = require("./model/profile");
|
|
27
|
-
Object.defineProperty(exports, "GENDER", { enumerable: true, get: function () { return profile_1.GENDER; } });
|
|
28
|
-
Object.defineProperty(exports, "NATIONALITY", { enumerable: true, get: function () { return profile_1.NATIONALITY; } });
|
|
29
|
-
Object.defineProperty(exports, "COUNTRY", { enumerable: true, get: function () { return profile_1.COUNTRY; } });
|
|
30
|
-
var sale_1 = require("./model/sale");
|
|
31
|
-
Object.defineProperty(exports, "SALE_PAYMENT_MODE", { enumerable: true, get: function () { return sale_1.SALE_PAYMENT_MODE; } });
|
|
32
|
-
Object.defineProperty(exports, "SALE_PAYMENT_TYPE", { enumerable: true, get: function () { return sale_1.SALE_PAYMENT_TYPE; } });
|
|
33
|
-
Object.defineProperty(exports, "SALE_TYPE", { enumerable: true, get: function () { return sale_1.SALE_TYPE; } });
|
|
34
|
-
Object.defineProperty(exports, "SALE_SUB_TYPE", { enumerable: true, get: function () { return sale_1.SALE_SUB_TYPE; } });
|
|
35
|
-
var school_1 = require("./model/school");
|
|
36
|
-
Object.defineProperty(exports, "SCHOOL_LEVEL", { enumerable: true, get: function () { return school_1.SCHOOL_LEVEL; } });
|
|
37
|
-
var staff_availability_1 = require("./model/staff-availability");
|
|
38
|
-
Object.defineProperty(exports, "STAFF_AVAILABILITY_LOCATION", { enumerable: true, get: function () { return staff_availability_1.STAFF_AVAILABILITY_LOCATION; } });
|
|
39
|
-
var staff_hour_log_1 = require("./model/staff-hour-log");
|
|
40
|
-
Object.defineProperty(exports, "STAFF_HOUR_LOG_TYPE", { enumerable: true, get: function () { return staff_hour_log_1.STAFF_HOUR_LOG_TYPE; } });
|
|
41
|
-
var student_assignment_1 = require("./model/student-assignment");
|
|
42
|
-
Object.defineProperty(exports, "STUDENT_ASSIGNMENT_RELATIONSHIP", { enumerable: true, get: function () { return student_assignment_1.STUDENT_ASSIGNMENT_RELATIONSHIP; } });
|
|
43
|
-
var student_note_1 = require("./model/student-note");
|
|
44
|
-
Object.defineProperty(exports, "STUDENT_NOTE_VISIBILITY", { enumerable: true, get: function () { return student_note_1.STUDENT_NOTE_VISIBILITY; } });
|
|
45
|
-
var student_service_membership_log_1 = require("./model/student-service-membership-log");
|
|
46
|
-
Object.defineProperty(exports, "MEMBERSHIP_LOG_TYPE", { enumerable: true, get: function () { return student_service_membership_log_1.MEMBERSHIP_LOG_TYPE; } });
|
|
47
|
-
var student_service_1 = require("./model/student-service");
|
|
48
|
-
Object.defineProperty(exports, "STUDENT_SERVICE", { enumerable: true, get: function () { return student_service_1.STUDENT_SERVICE; } });
|
|
49
|
-
var test_attempt_1 = require("./model/test-attempt");
|
|
50
|
-
Object.defineProperty(exports, "TEST_ATTEMPT_STATUS", { enumerable: true, get: function () { return test_attempt_1.TEST_ATTEMPT_STATUS; } });
|
|
51
|
-
var test_question_1 = require("./model/test-question");
|
|
52
|
-
Object.defineProperty(exports, "TEST_QUESTION_TYPE", { enumerable: true, get: function () { return test_question_1.TEST_QUESTION_TYPE; } });
|
|
53
|
-
var user_to_guardian_1 = require("./model/user-to-guardian");
|
|
54
|
-
Object.defineProperty(exports, "GUARDIAN_RELATIONSHIP", { enumerable: true, get: function () { return user_to_guardian_1.GUARDIAN_RELATIONSHIP; } });
|
|
55
|
-
var user_1 = require("./model/user");
|
|
56
|
-
Object.defineProperty(exports, "USER_ROLE", { enumerable: true, get: function () { return user_1.USER_ROLE; } });
|
|
57
|
-
Object.defineProperty(exports, "USER_STATUS", { enumerable: true, get: function () { return user_1.USER_STATUS; } });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./model/conversion-table"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./model/dimension"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./model/event"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./model/extracurricular-activity"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./model/log"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./model/lead-form-field"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./model/lead-form"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./model/lead"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./model/profile"), exports);
|
|
13
|
+
tslib_1.__exportStar(require("./model/sale"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./model/school"), exports);
|
|
15
|
+
tslib_1.__exportStar(require("./model/staff-availability"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./model/staff-hour-log"), exports);
|
|
17
|
+
tslib_1.__exportStar(require("./model/student-assignment"), exports);
|
|
18
|
+
tslib_1.__exportStar(require("./model/student-note"), exports);
|
|
19
|
+
tslib_1.__exportStar(require("./model/student-service-membership-log"), exports);
|
|
20
|
+
tslib_1.__exportStar(require("./model/student-service"), exports);
|
|
21
|
+
tslib_1.__exportStar(require("./model/test-attempt"), exports);
|
|
22
|
+
tslib_1.__exportStar(require("./model/test-question"), exports);
|
|
23
|
+
tslib_1.__exportStar(require("./model/user-to-guardian"), exports);
|
|
24
|
+
tslib_1.__exportStar(require("./model/user"), exports);
|
|
58
25
|
//# sourceMappingURL=enums.js.map
|
package/src/enums.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"enums.js","sourceRoot":"","sources":["../../../../libs/model/src/enums.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"enums.js","sourceRoot":"","sources":["../../../../libs/model/src/enums.ts"],"names":[],"mappings":";;;AAAA,mEAAyC;AACzC,4DAAkC;AAClC,wDAA8B;AAC9B,2EAAiD;AACjD,sDAA4B;AAC5B,kEAAwC;AACxC,4DAAkC;AAClC,uDAA6B;AAC7B,0DAAgC;AAChC,uDAA6B;AAC7B,yDAA+B;AAC/B,qEAA2C;AAC3C,iEAAuC;AACvC,qEAA2C;AAC3C,+DAAqC;AACrC,iFAAuD;AACvD,kEAAwC;AACxC,+DAAqC;AACrC,gEAAsC;AACtC,mEAAyC;AACzC,uDAA6B"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ActivityLog = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const typeorm_1 = require("typeorm");
|
|
6
|
+
const user_1 = require("./user");
|
|
7
|
+
let ActivityLog = class ActivityLog {
|
|
8
|
+
};
|
|
9
|
+
tslib_1.__decorate([
|
|
10
|
+
(0, typeorm_1.PrimaryGeneratedColumn)(),
|
|
11
|
+
tslib_1.__metadata("design:type", Number)
|
|
12
|
+
], ActivityLog.prototype, "id", void 0);
|
|
13
|
+
tslib_1.__decorate([
|
|
14
|
+
(0, typeorm_1.Column)({ type: 'json' }),
|
|
15
|
+
tslib_1.__metadata("design:type", Object)
|
|
16
|
+
], ActivityLog.prototype, "data", void 0);
|
|
17
|
+
tslib_1.__decorate([
|
|
18
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 200 }),
|
|
19
|
+
tslib_1.__metadata("design:type", String)
|
|
20
|
+
], ActivityLog.prototype, "action", void 0);
|
|
21
|
+
tslib_1.__decorate([
|
|
22
|
+
(0, typeorm_1.CreateDateColumn)(),
|
|
23
|
+
tslib_1.__metadata("design:type", Date)
|
|
24
|
+
], ActivityLog.prototype, "createdAt", void 0);
|
|
25
|
+
tslib_1.__decorate([
|
|
26
|
+
(0, typeorm_1.Column)({ type: 'int', nullable: true }),
|
|
27
|
+
tslib_1.__metadata("design:type", Number)
|
|
28
|
+
], ActivityLog.prototype, "targetId", void 0);
|
|
29
|
+
tslib_1.__decorate([
|
|
30
|
+
(0, typeorm_1.Column)({ type: 'int', nullable: true }),
|
|
31
|
+
tslib_1.__metadata("design:type", Number)
|
|
32
|
+
], ActivityLog.prototype, "actorId", void 0);
|
|
33
|
+
tslib_1.__decorate([
|
|
34
|
+
(0, typeorm_1.ManyToOne)(() => user_1.User),
|
|
35
|
+
(0, typeorm_1.JoinColumn)(),
|
|
36
|
+
tslib_1.__metadata("design:type", user_1.User)
|
|
37
|
+
], ActivityLog.prototype, "actor", void 0);
|
|
38
|
+
ActivityLog = tslib_1.__decorate([
|
|
39
|
+
(0, typeorm_1.Entity)({ name: 'activity_logs' })
|
|
40
|
+
], ActivityLog);
|
|
41
|
+
exports.ActivityLog = ActivityLog;
|
|
42
|
+
//# sourceMappingURL=activity-log.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"activity-log.js","sourceRoot":"","sources":["../../../../../libs/model/src/model/activity-log.ts"],"names":[],"mappings":";;;;AAAA,qCAOiB;AAEjB,iCAA8B;AAGvB,IAAM,WAAW,GAAjB,MAAM,WAAW;CAsBvB,CAAA;AArBC;IAAC,IAAA,gCAAsB,GAAE;;uCACd;AAEX;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;yCACf;AAEV;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;2CAC1B;AAEf;IAAC,IAAA,0BAAgB,GAAE;sCACR,IAAI;8CAAC;AAEhB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CACvB;AAEjB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4CACxB;AAEhB;IAAC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,WAAI,CAAC;IACrB,IAAA,oBAAU,GAAE;sCACN,WAAI;0CAAC;AArBD,WAAW;IADvB,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,eAAe,EAAE,CAAC;GACrB,WAAW,CAsBvB;AAtBY,kCAAW"}
|
package/src/model/lead-form.d.ts
CHANGED
package/src/model/lead-form.js
CHANGED
|
@@ -46,8 +46,8 @@ tslib_1.__decorate([
|
|
|
46
46
|
tslib_1.__metadata("design:type", String)
|
|
47
47
|
], LeadForm.prototype, "redirectUrl", void 0);
|
|
48
48
|
tslib_1.__decorate([
|
|
49
|
-
(0, typeorm_1.Column)({ type: '
|
|
50
|
-
tslib_1.__metadata("design:type",
|
|
49
|
+
(0, typeorm_1.Column)({ type: 'int' }),
|
|
50
|
+
tslib_1.__metadata("design:type", Number)
|
|
51
51
|
], LeadForm.prototype, "targetPipelineId", void 0);
|
|
52
52
|
tslib_1.__decorate([
|
|
53
53
|
(0, typeorm_1.CreateDateColumn)(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lead-form.js","sourceRoot":"","sources":["../../../../../libs/model/src/model/lead-form.ts"],"names":[],"mappings":";;;;AAAA,qCASiB;AAEjB,uDAAoD;AACpD,iCAA8B;AAC9B,uDAAkD;AAElD,IAAY,oBAGX;AAHD,WAAY,oBAAoB;IAC9B,qEAAW,CAAA;IACX,mEAAM,CAAA;AACR,CAAC,EAHW,oBAAoB,GAApB,4BAAoB,KAApB,4BAAoB,QAG/B;AAGM,IAAM,QAAQ,GAAd,MAAM,QAAQ;CAwCpB,CAAA;AAvCC;IAAC,IAAA,gCAAsB,GAAE;;oCACd;AAEX;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;sCAC5B;AAEb;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;wCAC1B;AAEf;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;6CACL;AAEpB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;yCACC;AAEzB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;4CACS;AAEjC;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4CACpB;AAEpB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;6CACrB;AAEpB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"lead-form.js","sourceRoot":"","sources":["../../../../../libs/model/src/model/lead-form.ts"],"names":[],"mappings":";;;;AAAA,qCASiB;AAEjB,uDAAoD;AACpD,iCAA8B;AAC9B,uDAAkD;AAElD,IAAY,oBAGX;AAHD,WAAY,oBAAoB;IAC9B,qEAAW,CAAA;IACX,mEAAM,CAAA;AACR,CAAC,EAHW,oBAAoB,GAApB,4BAAoB,KAApB,4BAAoB,QAG/B;AAGM,IAAM,QAAQ,GAAd,MAAM,QAAQ;CAwCpB,CAAA;AAvCC;IAAC,IAAA,gCAAsB,GAAE;;oCACd;AAEX;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;sCAC5B;AAEb;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;wCAC1B;AAEf;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;6CACL;AAEpB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;yCACC;AAEzB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;4CACS;AAEjC;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4CACpB;AAEpB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;6CACrB;AAEpB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;kDACC;AAEzB;IAAC,IAAA,0BAAgB,GAAE;sCACR,IAAI;2CAAC;AAEhB;IAAC,IAAA,0BAAgB,GAAE;sCACR,IAAI;2CAAC;AAEhB;IAAC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,WAAI,CAAC;IACrB,IAAA,oBAAU,GAAE;sCACF,WAAI;0CAAC;AAEhB;IAAC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,+BAAa,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC;;wCAC9B;AAvCb,QAAQ;IADpB,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,YAAY,EAAE,CAAC;GAClB,QAAQ,CAwCpB;AAxCY,4BAAQ"}
|
package/src/models.d.ts
CHANGED
|
@@ -1,59 +1,60 @@
|
|
|
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
|
|
59
|
-
export
|
|
1
|
+
export * from './model/access-token';
|
|
2
|
+
export * from './model/activity-log';
|
|
3
|
+
export * from './model/answer-key';
|
|
4
|
+
export * from './model/case-study';
|
|
5
|
+
export * from './model/conversion-table';
|
|
6
|
+
export * from './model/course-template-event';
|
|
7
|
+
export * from './model/course-template';
|
|
8
|
+
export * from './model/dimension';
|
|
9
|
+
export * from './model/education-system';
|
|
10
|
+
export * from './model/event-log';
|
|
11
|
+
export * from './model/event-to-user';
|
|
12
|
+
export * from './model/event';
|
|
13
|
+
export * from './model/extracurricular-activity';
|
|
14
|
+
export * from './model/file-access';
|
|
15
|
+
export * from './model/file-category';
|
|
16
|
+
export * from './model/file';
|
|
17
|
+
export * from './model/log';
|
|
18
|
+
export * from './model/guardian';
|
|
19
|
+
export * from './model/high-school-record';
|
|
20
|
+
export * from './model/journey-stage';
|
|
21
|
+
export * from './model/journey-to-student';
|
|
22
|
+
export * from './model/journey';
|
|
23
|
+
export * from './model/lead-assignment';
|
|
24
|
+
export * from './model/lead-form-field';
|
|
25
|
+
export * from './model/lead-form';
|
|
26
|
+
export * from './model/lead-queue';
|
|
27
|
+
export * from './model/lead';
|
|
28
|
+
export * from './model/pd-pipeline';
|
|
29
|
+
export * from './model/pd-user';
|
|
30
|
+
export * from './model/profile';
|
|
31
|
+
export * from './model/pup-lead';
|
|
32
|
+
export * from './model/sale-split';
|
|
33
|
+
export * from './model/sale';
|
|
34
|
+
export * from './model/school';
|
|
35
|
+
export * from './model/staff-availability';
|
|
36
|
+
export * from './model/staff-hour';
|
|
37
|
+
export * from './model/staff-subject-tag';
|
|
38
|
+
export * from './model/staff-hour-log';
|
|
39
|
+
export * from './model/student-answer';
|
|
40
|
+
export * from './model/student-assignment';
|
|
41
|
+
export * from './model/student-extra';
|
|
42
|
+
export * from './model/student-goal';
|
|
43
|
+
export * from './model/student-note-checklist-item';
|
|
44
|
+
export * from './model/student-note';
|
|
45
|
+
export * from './model/student-service-membership-log';
|
|
46
|
+
export * from './model/student-service-membership';
|
|
47
|
+
export * from './model/student-service';
|
|
48
|
+
export * from './model/student-target';
|
|
49
|
+
export * from './model/test-attempt';
|
|
50
|
+
export * from './model/test-category';
|
|
51
|
+
export * from './model/test-question';
|
|
52
|
+
export * from './model/test-report';
|
|
53
|
+
export * from './model/test-score';
|
|
54
|
+
export * from './model/test-section';
|
|
55
|
+
export * from './model/test';
|
|
56
|
+
export * from './model/university-preference';
|
|
57
|
+
export * from './model/user-preference';
|
|
58
|
+
export * from './model/user-to-guardian';
|
|
59
|
+
export * from './model/user';
|
|
60
|
+
export * from './model/zoom-info';
|
package/src/models.js
CHANGED
|
@@ -1,133 +1,64 @@
|
|
|
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
|
-
Object.defineProperty(exports, "PupLead", { enumerable: true, get: function () { return pup_lead_1.PupLead; } });
|
|
65
|
-
var sale_split_1 = require("./model/sale-split");
|
|
66
|
-
Object.defineProperty(exports, "SaleSplit", { enumerable: true, get: function () { return sale_split_1.SaleSplit; } });
|
|
67
|
-
var sale_1 = require("./model/sale");
|
|
68
|
-
Object.defineProperty(exports, "Sale", { enumerable: true, get: function () { return sale_1.Sale; } });
|
|
69
|
-
var school_1 = require("./model/school");
|
|
70
|
-
Object.defineProperty(exports, "School", { enumerable: true, get: function () { return school_1.School; } });
|
|
71
|
-
var staff_availability_1 = require("./model/staff-availability");
|
|
72
|
-
Object.defineProperty(exports, "StaffAvailability", { enumerable: true, get: function () { return staff_availability_1.StaffAvailability; } });
|
|
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_assignment_1 = require("./model/student-assignment");
|
|
82
|
-
Object.defineProperty(exports, "StudentAssignment", { enumerable: true, get: function () { return student_assignment_1.StudentAssignment; } });
|
|
83
|
-
var student_extra_1 = require("./model/student-extra");
|
|
84
|
-
Object.defineProperty(exports, "StudentExtra", { enumerable: true, get: function () { return student_extra_1.StudentExtra; } });
|
|
85
|
-
var student_goal_1 = require("./model/student-goal");
|
|
86
|
-
Object.defineProperty(exports, "StudentGoal", { enumerable: true, get: function () { return student_goal_1.StudentGoal; } });
|
|
87
|
-
var student_note_checklist_item_1 = require("./model/student-note-checklist-item");
|
|
88
|
-
Object.defineProperty(exports, "StudentNoteChecklistItem", { enumerable: true, get: function () { return student_note_checklist_item_1.StudentNoteChecklistItem; } });
|
|
89
|
-
var student_note_1 = require("./model/student-note");
|
|
90
|
-
Object.defineProperty(exports, "StudentNote", { enumerable: true, get: function () { return student_note_1.StudentNote; } });
|
|
91
|
-
var student_service_membership_log_1 = require("./model/student-service-membership-log");
|
|
92
|
-
Object.defineProperty(exports, "StudentServiceMembershipLog", { enumerable: true, get: function () { return student_service_membership_log_1.StudentServiceMembershipLog; } });
|
|
93
|
-
var student_service_membership_1 = require("./model/student-service-membership");
|
|
94
|
-
Object.defineProperty(exports, "StudentServiceMembership", { enumerable: true, get: function () { return student_service_membership_1.StudentServiceMembership; } });
|
|
95
|
-
var student_service_1 = require("./model/student-service");
|
|
96
|
-
Object.defineProperty(exports, "StudentService", { enumerable: true, get: function () { return student_service_1.StudentService; } });
|
|
97
|
-
var student_target_1 = require("./model/student-target");
|
|
98
|
-
Object.defineProperty(exports, "StudentTarget", { enumerable: true, get: function () { return student_target_1.StudentTarget; } });
|
|
99
|
-
var test_attempt_1 = require("./model/test-attempt");
|
|
100
|
-
Object.defineProperty(exports, "TestAttempt", { enumerable: true, get: function () { return test_attempt_1.TestAttempt; } });
|
|
101
|
-
var test_category_1 = require("./model/test-category");
|
|
102
|
-
Object.defineProperty(exports, "TestCategory", { enumerable: true, get: function () { return test_category_1.TestCategory; } });
|
|
103
|
-
var test_question_1 = require("./model/test-question");
|
|
104
|
-
Object.defineProperty(exports, "TestQuestion", { enumerable: true, get: function () { return test_question_1.TestQuestion; } });
|
|
105
|
-
var test_report_1 = require("./model/test-report");
|
|
106
|
-
Object.defineProperty(exports, "BaseReport", { enumerable: true, get: function () { return test_report_1.BaseReport; } });
|
|
107
|
-
Object.defineProperty(exports, "SATReport", { enumerable: true, get: function () { return test_report_1.SATReport; } });
|
|
108
|
-
Object.defineProperty(exports, "ACTReport", { enumerable: true, get: function () { return test_report_1.ACTReport; } });
|
|
109
|
-
Object.defineProperty(exports, "GMATReport", { enumerable: true, get: function () { return test_report_1.GMATReport; } });
|
|
110
|
-
Object.defineProperty(exports, "UCATReport", { enumerable: true, get: function () { return test_report_1.UCATReport; } });
|
|
111
|
-
Object.defineProperty(exports, "LSATReport", { enumerable: true, get: function () { return test_report_1.LSATReport; } });
|
|
112
|
-
Object.defineProperty(exports, "MCATReport", { enumerable: true, get: function () { return test_report_1.MCATReport; } });
|
|
113
|
-
Object.defineProperty(exports, "ISATReport", { enumerable: true, get: function () { return test_report_1.ISATReport; } });
|
|
114
|
-
Object.defineProperty(exports, "BMATReport", { enumerable: true, get: function () { return test_report_1.BMATReport; } });
|
|
115
|
-
Object.defineProperty(exports, "IEATReport", { enumerable: true, get: function () { return test_report_1.IEATReport; } });
|
|
116
|
-
Object.defineProperty(exports, "TempSATReport", { enumerable: true, get: function () { return test_report_1.TempSATReport; } });
|
|
117
|
-
var test_score_1 = require("./model/test-score");
|
|
118
|
-
Object.defineProperty(exports, "TestScore", { enumerable: true, get: function () { return test_score_1.TestScore; } });
|
|
119
|
-
var test_section_1 = require("./model/test-section");
|
|
120
|
-
Object.defineProperty(exports, "TestSection", { enumerable: true, get: function () { return test_section_1.TestSection; } });
|
|
121
|
-
var test_1 = require("./model/test");
|
|
122
|
-
Object.defineProperty(exports, "Test", { enumerable: true, get: function () { return test_1.Test; } });
|
|
123
|
-
var university_preference_1 = require("./model/university-preference");
|
|
124
|
-
Object.defineProperty(exports, "UniversityPreference", { enumerable: true, get: function () { return university_preference_1.UniversityPreference; } });
|
|
125
|
-
var user_preference_1 = require("./model/user-preference");
|
|
126
|
-
Object.defineProperty(exports, "UserPreference", { enumerable: true, get: function () { return user_preference_1.UserPreference; } });
|
|
127
|
-
var user_to_guardian_1 = require("./model/user-to-guardian");
|
|
128
|
-
Object.defineProperty(exports, "UserToGuardian", { enumerable: true, get: function () { return user_to_guardian_1.UserToGuardian; } });
|
|
129
|
-
var user_1 = require("./model/user");
|
|
130
|
-
Object.defineProperty(exports, "User", { enumerable: true, get: function () { return user_1.User; } });
|
|
131
|
-
var zoom_info_1 = require("./model/zoom-info");
|
|
132
|
-
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/activity-log"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./model/answer-key"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./model/case-study"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./model/conversion-table"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./model/course-template-event"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./model/course-template"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./model/dimension"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./model/education-system"), exports);
|
|
13
|
+
tslib_1.__exportStar(require("./model/event-log"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./model/event-to-user"), exports);
|
|
15
|
+
tslib_1.__exportStar(require("./model/event"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./model/extracurricular-activity"), exports);
|
|
17
|
+
tslib_1.__exportStar(require("./model/file-access"), exports);
|
|
18
|
+
tslib_1.__exportStar(require("./model/file-category"), exports);
|
|
19
|
+
tslib_1.__exportStar(require("./model/file"), exports);
|
|
20
|
+
tslib_1.__exportStar(require("./model/log"), exports);
|
|
21
|
+
tslib_1.__exportStar(require("./model/guardian"), exports);
|
|
22
|
+
tslib_1.__exportStar(require("./model/high-school-record"), exports);
|
|
23
|
+
tslib_1.__exportStar(require("./model/journey-stage"), exports);
|
|
24
|
+
tslib_1.__exportStar(require("./model/journey-to-student"), exports);
|
|
25
|
+
tslib_1.__exportStar(require("./model/journey"), exports);
|
|
26
|
+
tslib_1.__exportStar(require("./model/lead-assignment"), exports);
|
|
27
|
+
tslib_1.__exportStar(require("./model/lead-form-field"), exports);
|
|
28
|
+
tslib_1.__exportStar(require("./model/lead-form"), exports);
|
|
29
|
+
tslib_1.__exportStar(require("./model/lead-queue"), exports);
|
|
30
|
+
tslib_1.__exportStar(require("./model/lead"), exports);
|
|
31
|
+
tslib_1.__exportStar(require("./model/pd-pipeline"), exports);
|
|
32
|
+
tslib_1.__exportStar(require("./model/pd-user"), exports);
|
|
33
|
+
tslib_1.__exportStar(require("./model/profile"), exports);
|
|
34
|
+
tslib_1.__exportStar(require("./model/pup-lead"), exports);
|
|
35
|
+
tslib_1.__exportStar(require("./model/sale-split"), exports);
|
|
36
|
+
tslib_1.__exportStar(require("./model/sale"), exports);
|
|
37
|
+
tslib_1.__exportStar(require("./model/school"), exports);
|
|
38
|
+
tslib_1.__exportStar(require("./model/staff-availability"), exports);
|
|
39
|
+
tslib_1.__exportStar(require("./model/staff-hour"), exports);
|
|
40
|
+
tslib_1.__exportStar(require("./model/staff-subject-tag"), exports);
|
|
41
|
+
tslib_1.__exportStar(require("./model/staff-hour-log"), exports);
|
|
42
|
+
tslib_1.__exportStar(require("./model/student-answer"), exports);
|
|
43
|
+
tslib_1.__exportStar(require("./model/student-assignment"), exports);
|
|
44
|
+
tslib_1.__exportStar(require("./model/student-extra"), exports);
|
|
45
|
+
tslib_1.__exportStar(require("./model/student-goal"), exports);
|
|
46
|
+
tslib_1.__exportStar(require("./model/student-note-checklist-item"), exports);
|
|
47
|
+
tslib_1.__exportStar(require("./model/student-note"), exports);
|
|
48
|
+
tslib_1.__exportStar(require("./model/student-service-membership-log"), exports);
|
|
49
|
+
tslib_1.__exportStar(require("./model/student-service-membership"), exports);
|
|
50
|
+
tslib_1.__exportStar(require("./model/student-service"), exports);
|
|
51
|
+
tslib_1.__exportStar(require("./model/student-target"), exports);
|
|
52
|
+
tslib_1.__exportStar(require("./model/test-attempt"), exports);
|
|
53
|
+
tslib_1.__exportStar(require("./model/test-category"), exports);
|
|
54
|
+
tslib_1.__exportStar(require("./model/test-question"), exports);
|
|
55
|
+
tslib_1.__exportStar(require("./model/test-report"), exports);
|
|
56
|
+
tslib_1.__exportStar(require("./model/test-score"), exports);
|
|
57
|
+
tslib_1.__exportStar(require("./model/test-section"), exports);
|
|
58
|
+
tslib_1.__exportStar(require("./model/test"), exports);
|
|
59
|
+
tslib_1.__exportStar(require("./model/university-preference"), exports);
|
|
60
|
+
tslib_1.__exportStar(require("./model/user-preference"), exports);
|
|
61
|
+
tslib_1.__exportStar(require("./model/user-to-guardian"), exports);
|
|
62
|
+
tslib_1.__exportStar(require("./model/user"), exports);
|
|
63
|
+
tslib_1.__exportStar(require("./model/zoom-info"), exports);
|
|
133
64
|
//# 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,+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,2DAAiC;AACjC,qEAA2C;AAC3C,gEAAsC;AACtC,qEAA2C;AAC3C,0DAAgC;AAChC,kEAAwC;AACxC,kEAAwC;AACxC,4DAAkC;AAClC,6DAAmC;AACnC,uDAA6B;AAC7B,8DAAoC;AACpC,0DAAgC;AAChC,0DAAgC;AAChC,2DAAiC;AACjC,6DAAmC;AACnC,uDAA6B;AAC7B,yDAA+B;AAC/B,qEAA2C;AAC3C,6DAAmC;AACnC,oEAA0C;AAC1C,iEAAuC;AACvC,iEAAuC;AACvC,qEAA2C;AAC3C,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"}
|