@tudopz/model 3.0.0-dev.2 → 3.0.0-dev.21
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/README.md +4 -0
- package/package.json +1 -1
- package/src/constant/audience-list.d.ts +2 -0
- package/src/constant/audience-list.js +6 -0
- package/src/constant/audience-list.js.map +1 -0
- package/src/constant/campaign.d.ts +2 -0
- package/src/constant/campaign.js +6 -0
- package/src/constant/campaign.js.map +1 -0
- package/src/constant/event.d.ts +155 -0
- package/src/constant/event.js +203 -5
- package/src/constant/event.js.map +1 -1
- package/src/constant/lead-form.d.ts +4 -0
- package/src/constant/lead-form.js +14 -1
- package/src/constant/lead-form.js.map +1 -1
- package/src/constant/lead.js +1 -0
- package/src/constant/lead.js.map +1 -1
- package/src/constant/neo-test.d.ts +6 -1
- package/src/constant/neo-test.js +7 -2
- package/src/constant/neo-test.js.map +1 -1
- package/src/constant/sale.d.ts +1 -0
- package/src/constant/sale.js +2 -1
- package/src/constant/sale.js.map +1 -1
- package/src/constant/service-course.d.ts +1 -0
- package/src/constant/service-course.js +5 -0
- package/src/constant/service-course.js.map +1 -0
- package/src/constant/student-assignment.d.ts +1 -0
- package/src/constant/student-assignment.js +5 -0
- package/src/constant/student-assignment.js.map +1 -0
- package/src/constant/student-service.js +4 -2
- package/src/constant/student-service.js.map +1 -1
- package/src/constant/subject.d.ts +2 -0
- package/src/constant/subject.js +4 -6
- package/src/constant/subject.js.map +1 -1
- package/src/constants.d.ts +21 -17
- package/src/constants.js +22 -66
- package/src/constants.js.map +1 -1
- package/src/index.d.ts +0 -1
- package/src/index.js +0 -2
- package/src/index.js.map +1 -1
- package/src/model/audience-list.d.ts +24 -0
- package/src/model/audience-list.js +69 -0
- package/src/model/audience-list.js.map +1 -0
- package/src/model/audit-log.d.ts +12 -0
- package/src/model/audit-log.js +50 -0
- package/src/model/audit-log.js.map +1 -0
- package/src/model/campaign-signature.d.ts +9 -0
- package/src/model/campaign-signature.js +37 -0
- package/src/model/campaign-signature.js.map +1 -0
- package/src/model/campaign.d.ts +29 -0
- package/src/model/campaign.js +94 -0
- package/src/model/campaign.js.map +1 -0
- package/src/model/event-registration.d.ts +10 -0
- package/src/model/event-registration.js +41 -0
- package/src/model/event-registration.js.map +1 -0
- package/src/model/event.d.ts +19 -1
- package/src/model/event.js +41 -0
- package/src/model/event.js.map +1 -1
- package/src/model/gmail-message-email-index.d.ts +15 -0
- package/src/model/gmail-message-email-index.js +47 -0
- package/src/model/gmail-message-email-index.js.map +1 -0
- package/src/model/gmail-message.d.ts +17 -0
- package/src/model/gmail-message.js +69 -0
- package/src/model/gmail-message.js.map +1 -0
- package/src/model/google-user.d.ts +9 -0
- package/src/model/google-user.js +40 -0
- package/src/model/google-user.js.map +1 -0
- package/src/model/high-school-record.d.ts +9 -7
- package/src/model/high-school-record.js +13 -5
- package/src/model/high-school-record.js.map +1 -1
- package/src/model/holiday.d.ts +9 -0
- package/src/model/holiday.js +38 -0
- package/src/model/holiday.js.map +1 -0
- package/src/model/lead-form-field.d.ts +3 -1
- package/src/model/lead-form-field.js +5 -0
- package/src/model/lead-form-field.js.map +1 -1
- package/src/model/lead-form.d.ts +23 -0
- package/src/model/lead-form.js +51 -1
- package/src/model/lead-form.js.map +1 -1
- package/src/model/lead-ip-ban.d.ts +6 -0
- package/src/model/lead-ip-ban.js +28 -0
- package/src/model/lead-ip-ban.js.map +1 -0
- package/src/model/lead.d.ts +2 -1
- package/src/model/lead.js +1 -0
- package/src/model/lead.js.map +1 -1
- package/src/model/{neo-skill.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/profile.d.ts +1 -0
- package/src/model/profile.js +4 -0
- package/src/model/profile.js.map +1 -1
- package/src/model/pup-lead.d.ts +35 -5
- package/src/model/pup-lead.js +97 -6
- package/src/model/pup-lead.js.map +1 -1
- package/src/model/sale.d.ts +4 -0
- package/src/model/sale.js +16 -0
- package/src/model/sale.js.map +1 -1
- package/src/model/service-course-session.d.ts +21 -0
- package/src/model/service-course-session.js +69 -0
- package/src/model/service-course-session.js.map +1 -0
- package/src/model/service-course.d.ts +12 -0
- package/src/model/service-course.js +49 -0
- package/src/model/service-course.js.map +1 -0
- package/src/model/service-rate.d.ts +8 -0
- package/src/model/service-rate.js +36 -0
- package/src/model/service-rate.js.map +1 -0
- package/src/model/staff-availability.d.ts +15 -0
- package/src/model/staff-availability.js +45 -0
- package/src/model/staff-availability.js.map +1 -0
- package/src/model/staff-hour-log.d.ts +2 -1
- package/src/model/staff-hour-log.js +1 -0
- package/src/model/staff-hour-log.js.map +1 -1
- package/src/model/staff-hour.d.ts +10 -0
- package/src/model/staff-hour.js +50 -0
- package/src/model/staff-hour.js.map +1 -1
- package/src/model/student-assignment.d.ts +15 -0
- package/src/model/student-assignment.js +46 -0
- package/src/model/student-assignment.js.map +1 -0
- package/src/model/student-service-deadline.d.ts +8 -0
- package/src/model/student-service-deadline.js +33 -0
- package/src/model/student-service-deadline.js.map +1 -0
- package/src/model/student-service-membership-log.d.ts +2 -1
- package/src/model/student-service-membership-log.js +1 -0
- package/src/model/student-service-membership-log.js.map +1 -1
- package/src/model/student-service.d.ts +4 -1
- package/src/model/student-service.js +6 -0
- package/src/model/student-service.js.map +1 -1
- package/src/model/student-session-attendance.d.ts +17 -0
- package/src/model/student-session-attendance.js +64 -0
- package/src/model/student-session-attendance.js.map +1 -0
- package/src/model/timeline.d.ts +24 -0
- package/src/model/timeline.js +10 -0
- package/src/model/timeline.js.map +1 -0
- package/src/model/user.d.ts +9 -2
- package/src/model/user.js +22 -3
- package/src/model/user.js.map +1 -1
- package/src/model/wa-message.d.ts +21 -0
- package/src/model/wa-message.js +74 -0
- package/src/model/wa-message.js.map +1 -0
- package/src/models.d.ts +84 -63
- package/src/models.js +85 -138
- package/src/models.js.map +1 -1
- package/src/enums.d.ts +0 -20
- package/src/enums.js +0 -57
- package/src/enums.js.map +0 -1
- package/src/model/neo-domain.d.ts +0 -7
- package/src/model/neo-domain.js +0 -29
- package/src/model/neo-domain.js.map +0 -1
- package/src/model/neo-skill.js +0 -29
- package/src/model/neo-skill.js.map +0 -1
- package/src/model/part-time-assignment.d.ts +0 -7
- package/src/model/part-time-assignment.js +0 -29
- package/src/model/part-time-assignment.js.map +0 -1
package/src/model/user.js
CHANGED
|
@@ -10,7 +10,7 @@ const guardian_1 = require("./guardian");
|
|
|
10
10
|
const high_school_record_1 = require("./high-school-record");
|
|
11
11
|
const journey_1 = require("./journey");
|
|
12
12
|
const journey_to_student_1 = require("./journey-to-student");
|
|
13
|
-
const
|
|
13
|
+
const student_assignment_1 = require("./student-assignment");
|
|
14
14
|
const profile_1 = require("./profile");
|
|
15
15
|
const staff_hour_1 = require("./staff-hour");
|
|
16
16
|
const student_extra_1 = require("./student-extra");
|
|
@@ -29,6 +29,9 @@ const extracurricular_activity_1 = require("./extracurricular-activity");
|
|
|
29
29
|
const test_score_1 = require("./test-score");
|
|
30
30
|
const pd_user_1 = require("./pd-user");
|
|
31
31
|
const staff_subject_tag_1 = require("./staff-subject-tag");
|
|
32
|
+
const staff_availability_1 = require("./staff-availability");
|
|
33
|
+
const student_session_attendance_1 = require("./student-session-attendance");
|
|
34
|
+
const holiday_1 = require("./holiday");
|
|
32
35
|
var USER_ROLE;
|
|
33
36
|
(function (USER_ROLE) {
|
|
34
37
|
USER_ROLE[USER_ROLE["SUPER_ADMIN"] = 1] = "SUPER_ADMIN";
|
|
@@ -189,9 +192,13 @@ tslib_1.__decorate([
|
|
|
189
192
|
tslib_1.__metadata("design:type", Array)
|
|
190
193
|
], User.prototype, "userPreferences", void 0);
|
|
191
194
|
tslib_1.__decorate([
|
|
192
|
-
(0, typeorm_1.OneToMany)(() =>
|
|
195
|
+
(0, typeorm_1.OneToMany)(() => student_assignment_1.StudentAssignment, (pta) => pta.staff),
|
|
193
196
|
tslib_1.__metadata("design:type", Array)
|
|
194
|
-
], User.prototype, "
|
|
197
|
+
], User.prototype, "studentsAssigned", void 0);
|
|
198
|
+
tslib_1.__decorate([
|
|
199
|
+
(0, typeorm_1.OneToMany)(() => student_assignment_1.StudentAssignment, (pta) => pta.student),
|
|
200
|
+
tslib_1.__metadata("design:type", Array)
|
|
201
|
+
], User.prototype, "staffsAssigned", void 0);
|
|
195
202
|
tslib_1.__decorate([
|
|
196
203
|
(0, typeorm_1.OneToOne)(() => high_school_record_1.HighSchoolRecord, (h) => h.user),
|
|
197
204
|
tslib_1.__metadata("design:type", high_school_record_1.HighSchoolRecord)
|
|
@@ -216,6 +223,18 @@ tslib_1.__decorate([
|
|
|
216
223
|
(0, typeorm_1.OneToMany)(() => staff_subject_tag_1.StaffSubjectTag, (tag) => tag.staff),
|
|
217
224
|
tslib_1.__metadata("design:type", Array)
|
|
218
225
|
], User.prototype, "staffSubjectTags", void 0);
|
|
226
|
+
tslib_1.__decorate([
|
|
227
|
+
(0, typeorm_1.OneToMany)(() => staff_availability_1.StaffAvailability, (a) => a.staff),
|
|
228
|
+
tslib_1.__metadata("design:type", Array)
|
|
229
|
+
], User.prototype, "staffAvailabilities", void 0);
|
|
230
|
+
tslib_1.__decorate([
|
|
231
|
+
(0, typeorm_1.OneToMany)(() => student_session_attendance_1.StudentSessionAttendance, (a) => a.student),
|
|
232
|
+
tslib_1.__metadata("design:type", Array)
|
|
233
|
+
], User.prototype, "sessionAttendances", void 0);
|
|
234
|
+
tslib_1.__decorate([
|
|
235
|
+
(0, typeorm_1.OneToMany)(() => holiday_1.Holiday, (h) => h.staff),
|
|
236
|
+
tslib_1.__metadata("design:type", Array)
|
|
237
|
+
], User.prototype, "holidays", void 0);
|
|
219
238
|
User = tslib_1.__decorate([
|
|
220
239
|
(0, typeorm_1.Entity)({ name: 'users' }),
|
|
221
240
|
tslib_1.__metadata("design:paramtypes", [Object])
|
package/src/model/user.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.js","sourceRoot":"","sources":["../../../../../libs/model/src/model/user.ts"],"names":[],"mappings":";;;;AAAA,qCASiB;AACjB,4DAA4B;AAE5B,iDAA6C;AAC7C,+CAA2C;AAC3C,yCAAsC;AACtC,6DAAwD;AACxD,uCAAoC;AACpC,6DAAwD;AACxD,
|
|
1
|
+
{"version":3,"file":"user.js","sourceRoot":"","sources":["../../../../../libs/model/src/model/user.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export declare enum WA_MESSAGE_TYPE {
|
|
2
|
+
TEXT = 1,
|
|
3
|
+
STICKER = 2,
|
|
4
|
+
ATTACHMENT = 3
|
|
5
|
+
}
|
|
6
|
+
export declare class WAMessage {
|
|
7
|
+
id: number;
|
|
8
|
+
messageId: string;
|
|
9
|
+
contactId: string;
|
|
10
|
+
channelId: string;
|
|
11
|
+
traffic: string;
|
|
12
|
+
timestamp: number;
|
|
13
|
+
fullName?: string;
|
|
14
|
+
phoneNumber?: string;
|
|
15
|
+
email?: string;
|
|
16
|
+
type: WA_MESSAGE_TYPE;
|
|
17
|
+
text?: string;
|
|
18
|
+
url?: string;
|
|
19
|
+
mimeType?: string;
|
|
20
|
+
date?: string;
|
|
21
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.WAMessage = exports.WA_MESSAGE_TYPE = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const typeorm_1 = require("typeorm");
|
|
6
|
+
var WA_MESSAGE_TYPE;
|
|
7
|
+
(function (WA_MESSAGE_TYPE) {
|
|
8
|
+
WA_MESSAGE_TYPE[WA_MESSAGE_TYPE["TEXT"] = 1] = "TEXT";
|
|
9
|
+
WA_MESSAGE_TYPE[WA_MESSAGE_TYPE["STICKER"] = 2] = "STICKER";
|
|
10
|
+
WA_MESSAGE_TYPE[WA_MESSAGE_TYPE["ATTACHMENT"] = 3] = "ATTACHMENT";
|
|
11
|
+
})(WA_MESSAGE_TYPE = exports.WA_MESSAGE_TYPE || (exports.WA_MESSAGE_TYPE = {}));
|
|
12
|
+
let WAMessage = class WAMessage {
|
|
13
|
+
};
|
|
14
|
+
tslib_1.__decorate([
|
|
15
|
+
(0, typeorm_1.PrimaryGeneratedColumn)(),
|
|
16
|
+
tslib_1.__metadata("design:type", Number)
|
|
17
|
+
], WAMessage.prototype, "id", void 0);
|
|
18
|
+
tslib_1.__decorate([
|
|
19
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 100 }),
|
|
20
|
+
tslib_1.__metadata("design:type", String)
|
|
21
|
+
], WAMessage.prototype, "messageId", void 0);
|
|
22
|
+
tslib_1.__decorate([
|
|
23
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 100 }),
|
|
24
|
+
tslib_1.__metadata("design:type", String)
|
|
25
|
+
], WAMessage.prototype, "contactId", void 0);
|
|
26
|
+
tslib_1.__decorate([
|
|
27
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 100 }),
|
|
28
|
+
tslib_1.__metadata("design:type", String)
|
|
29
|
+
], WAMessage.prototype, "channelId", void 0);
|
|
30
|
+
tslib_1.__decorate([
|
|
31
|
+
(0, typeorm_1.Column)({ type: 'enum', enum: ['incoming', 'outgoing'] }),
|
|
32
|
+
tslib_1.__metadata("design:type", String)
|
|
33
|
+
], WAMessage.prototype, "traffic", void 0);
|
|
34
|
+
tslib_1.__decorate([
|
|
35
|
+
(0, typeorm_1.Column)({ type: 'bigint' }),
|
|
36
|
+
tslib_1.__metadata("design:type", Number)
|
|
37
|
+
], WAMessage.prototype, "timestamp", void 0);
|
|
38
|
+
tslib_1.__decorate([
|
|
39
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
|
|
40
|
+
tslib_1.__metadata("design:type", String)
|
|
41
|
+
], WAMessage.prototype, "fullName", void 0);
|
|
42
|
+
tslib_1.__decorate([
|
|
43
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
|
|
44
|
+
tslib_1.__metadata("design:type", String)
|
|
45
|
+
], WAMessage.prototype, "phoneNumber", void 0);
|
|
46
|
+
tslib_1.__decorate([
|
|
47
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
|
|
48
|
+
tslib_1.__metadata("design:type", String)
|
|
49
|
+
], WAMessage.prototype, "email", void 0);
|
|
50
|
+
tslib_1.__decorate([
|
|
51
|
+
(0, typeorm_1.Column)({ type: 'int' }),
|
|
52
|
+
tslib_1.__metadata("design:type", Number)
|
|
53
|
+
], WAMessage.prototype, "type", void 0);
|
|
54
|
+
tslib_1.__decorate([
|
|
55
|
+
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
56
|
+
tslib_1.__metadata("design:type", String)
|
|
57
|
+
], WAMessage.prototype, "text", void 0);
|
|
58
|
+
tslib_1.__decorate([
|
|
59
|
+
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
60
|
+
tslib_1.__metadata("design:type", String)
|
|
61
|
+
], WAMessage.prototype, "url", void 0);
|
|
62
|
+
tslib_1.__decorate([
|
|
63
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
|
|
64
|
+
tslib_1.__metadata("design:type", String)
|
|
65
|
+
], WAMessage.prototype, "mimeType", void 0);
|
|
66
|
+
tslib_1.__decorate([
|
|
67
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
|
|
68
|
+
tslib_1.__metadata("design:type", String)
|
|
69
|
+
], WAMessage.prototype, "date", void 0);
|
|
70
|
+
WAMessage = tslib_1.__decorate([
|
|
71
|
+
(0, typeorm_1.Entity)({ name: 'wa_messages' })
|
|
72
|
+
], WAMessage);
|
|
73
|
+
exports.WAMessage = WAMessage;
|
|
74
|
+
//# sourceMappingURL=wa-message.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"wa-message.js","sourceRoot":"","sources":["../../../../../libs/model/src/model/wa-message.ts"],"names":[],"mappings":";;;;AAAA,qCAAiE;AAEjE,IAAY,eAIX;AAJD,WAAY,eAAe;IACzB,qDAAQ,CAAA;IACR,2DAAO,CAAA;IACP,iEAAU,CAAA;AACZ,CAAC,EAJW,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAI1B;AAGM,IAAM,SAAS,GAAf,MAAM,SAAS;CA0CrB,CAAA;AAzCC;IAAC,IAAA,gCAAsB,GAAE;;qCACd;AAEX;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;4CACvB;AAElB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;4CACvB;AAElB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;4CACvB;AAElB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC;;0CACzC;AAEhB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC;;4CACT;AAElB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;2CACvC;AAElB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8CACpC;AAErB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wCAC1C;AAEf;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;uCACF;AAEtB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uCAC3B;AAEd;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;sCAC5B;AAEb;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;2CACvC;AAElB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uCAC3C;AAzCH,SAAS;IADrB,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;GACnB,SAAS,CA0CrB;AA1CY,8BAAS"}
|
package/src/models.d.ts
CHANGED
|
@@ -1,63 +1,84 @@
|
|
|
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
|
|
60
|
-
export
|
|
61
|
-
export
|
|
62
|
-
export
|
|
63
|
-
export
|
|
1
|
+
export * from './model/access-token';
|
|
2
|
+
export * from './model/audit-log';
|
|
3
|
+
export * from './model/audience-list';
|
|
4
|
+
export * from './model/campaign-signature';
|
|
5
|
+
export * from './model/campaign';
|
|
6
|
+
export * from './model/answer-key';
|
|
7
|
+
export * from './model/case-study';
|
|
8
|
+
export * from './model/conversion-table';
|
|
9
|
+
export * from './model/course-template-event';
|
|
10
|
+
export * from './model/course-template';
|
|
11
|
+
export * from './model/dimension';
|
|
12
|
+
export * from './model/education-system';
|
|
13
|
+
export * from './model/event-log';
|
|
14
|
+
export * from './model/event-registration';
|
|
15
|
+
export * from './model/event-to-user';
|
|
16
|
+
export * from './model/event';
|
|
17
|
+
export * from './model/extracurricular-activity';
|
|
18
|
+
export * from './model/file-access';
|
|
19
|
+
export * from './model/file-category';
|
|
20
|
+
export * from './model/file';
|
|
21
|
+
export * from './model/gmail-message-email-index';
|
|
22
|
+
export * from './model/gmail-message';
|
|
23
|
+
export * from './model/google-user';
|
|
24
|
+
export * from './model/log';
|
|
25
|
+
export * from './model/guardian';
|
|
26
|
+
export * from './model/high-school-record';
|
|
27
|
+
export * from './model/holiday';
|
|
28
|
+
export * from './model/journey-stage';
|
|
29
|
+
export * from './model/journey-to-student';
|
|
30
|
+
export * from './model/journey';
|
|
31
|
+
export * from './model/lead-assignment';
|
|
32
|
+
export * from './model/lead-form-field';
|
|
33
|
+
export * from './model/lead-form';
|
|
34
|
+
export * from './model/lead-ip-ban';
|
|
35
|
+
export * from './model/lead-queue';
|
|
36
|
+
export * from './model/lead';
|
|
37
|
+
export * from './model/neo-tag';
|
|
38
|
+
export * from './model/neo-test-flow';
|
|
39
|
+
export * from './model/neo-test-question-answer';
|
|
40
|
+
export * from './model/neo-test-question-category';
|
|
41
|
+
export * from './model/neo-test-question';
|
|
42
|
+
export * from './model/neo-test-section-to-question';
|
|
43
|
+
export * from './model/neo-test-section';
|
|
44
|
+
export * from './model/neo-test';
|
|
45
|
+
export * from './model/pd-pipeline';
|
|
46
|
+
export * from './model/pd-user';
|
|
47
|
+
export * from './model/profile';
|
|
48
|
+
export * from './model/pup-lead';
|
|
49
|
+
export * from './model/sale-split';
|
|
50
|
+
export * from './model/sale';
|
|
51
|
+
export * from './model/school';
|
|
52
|
+
export * from './model/service-course-session';
|
|
53
|
+
export * from './model/service-course';
|
|
54
|
+
export * from './model/service-rate';
|
|
55
|
+
export * from './model/staff-availability';
|
|
56
|
+
export * from './model/staff-hour';
|
|
57
|
+
export * from './model/staff-subject-tag';
|
|
58
|
+
export * from './model/staff-hour-log';
|
|
59
|
+
export * from './model/student-answer';
|
|
60
|
+
export * from './model/student-assignment';
|
|
61
|
+
export * from './model/student-extra';
|
|
62
|
+
export * from './model/student-goal';
|
|
63
|
+
export * from './model/student-note-checklist-item';
|
|
64
|
+
export * from './model/student-note';
|
|
65
|
+
export * from './model/student-service-deadline';
|
|
66
|
+
export * from './model/student-service-membership-log';
|
|
67
|
+
export * from './model/student-service-membership';
|
|
68
|
+
export * from './model/student-service';
|
|
69
|
+
export * from './model/student-session-attendance';
|
|
70
|
+
export * from './model/student-target';
|
|
71
|
+
export * from './model/test-attempt';
|
|
72
|
+
export * from './model/test-category';
|
|
73
|
+
export * from './model/test-question';
|
|
74
|
+
export * from './model/test-report';
|
|
75
|
+
export * from './model/test-score';
|
|
76
|
+
export * from './model/test-section';
|
|
77
|
+
export * from './model/test';
|
|
78
|
+
export * from './model/timeline';
|
|
79
|
+
export * from './model/university-preference';
|
|
80
|
+
export * from './model/user-preference';
|
|
81
|
+
export * from './model/user-to-guardian';
|
|
82
|
+
export * from './model/user';
|
|
83
|
+
export * from './model/wa-message';
|
|
84
|
+
export * from './model/zoom-info';
|
package/src/models.js
CHANGED
|
@@ -1,141 +1,88 @@
|
|
|
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
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
Object.defineProperty(exports, "StaffHourLog", { enumerable: true, get: function () { return staff_hour_log_1.StaffHourLog; } });
|
|
89
|
-
var student_answer_1 = require("./model/student-answer");
|
|
90
|
-
Object.defineProperty(exports, "StudentAnswer", { enumerable: true, get: function () { return student_answer_1.StudentAnswer; } });
|
|
91
|
-
var student_extra_1 = require("./model/student-extra");
|
|
92
|
-
Object.defineProperty(exports, "StudentExtra", { enumerable: true, get: function () { return student_extra_1.StudentExtra; } });
|
|
93
|
-
var student_goal_1 = require("./model/student-goal");
|
|
94
|
-
Object.defineProperty(exports, "StudentGoal", { enumerable: true, get: function () { return student_goal_1.StudentGoal; } });
|
|
95
|
-
var student_note_checklist_item_1 = require("./model/student-note-checklist-item");
|
|
96
|
-
Object.defineProperty(exports, "StudentNoteChecklistItem", { enumerable: true, get: function () { return student_note_checklist_item_1.StudentNoteChecklistItem; } });
|
|
97
|
-
var student_note_1 = require("./model/student-note");
|
|
98
|
-
Object.defineProperty(exports, "StudentNote", { enumerable: true, get: function () { return student_note_1.StudentNote; } });
|
|
99
|
-
var student_service_membership_log_1 = require("./model/student-service-membership-log");
|
|
100
|
-
Object.defineProperty(exports, "StudentServiceMembershipLog", { enumerable: true, get: function () { return student_service_membership_log_1.StudentServiceMembershipLog; } });
|
|
101
|
-
var student_service_membership_1 = require("./model/student-service-membership");
|
|
102
|
-
Object.defineProperty(exports, "StudentServiceMembership", { enumerable: true, get: function () { return student_service_membership_1.StudentServiceMembership; } });
|
|
103
|
-
var student_service_1 = require("./model/student-service");
|
|
104
|
-
Object.defineProperty(exports, "StudentService", { enumerable: true, get: function () { return student_service_1.StudentService; } });
|
|
105
|
-
var student_target_1 = require("./model/student-target");
|
|
106
|
-
Object.defineProperty(exports, "StudentTarget", { enumerable: true, get: function () { return student_target_1.StudentTarget; } });
|
|
107
|
-
var test_attempt_1 = require("./model/test-attempt");
|
|
108
|
-
Object.defineProperty(exports, "TestAttempt", { enumerable: true, get: function () { return test_attempt_1.TestAttempt; } });
|
|
109
|
-
var test_category_1 = require("./model/test-category");
|
|
110
|
-
Object.defineProperty(exports, "TestCategory", { enumerable: true, get: function () { return test_category_1.TestCategory; } });
|
|
111
|
-
var test_question_1 = require("./model/test-question");
|
|
112
|
-
Object.defineProperty(exports, "TestQuestion", { enumerable: true, get: function () { return test_question_1.TestQuestion; } });
|
|
113
|
-
var test_report_1 = require("./model/test-report");
|
|
114
|
-
Object.defineProperty(exports, "BaseReport", { enumerable: true, get: function () { return test_report_1.BaseReport; } });
|
|
115
|
-
Object.defineProperty(exports, "SATReport", { enumerable: true, get: function () { return test_report_1.SATReport; } });
|
|
116
|
-
Object.defineProperty(exports, "ACTReport", { enumerable: true, get: function () { return test_report_1.ACTReport; } });
|
|
117
|
-
Object.defineProperty(exports, "GMATReport", { enumerable: true, get: function () { return test_report_1.GMATReport; } });
|
|
118
|
-
Object.defineProperty(exports, "UCATReport", { enumerable: true, get: function () { return test_report_1.UCATReport; } });
|
|
119
|
-
Object.defineProperty(exports, "LSATReport", { enumerable: true, get: function () { return test_report_1.LSATReport; } });
|
|
120
|
-
Object.defineProperty(exports, "MCATReport", { enumerable: true, get: function () { return test_report_1.MCATReport; } });
|
|
121
|
-
Object.defineProperty(exports, "ISATReport", { enumerable: true, get: function () { return test_report_1.ISATReport; } });
|
|
122
|
-
Object.defineProperty(exports, "BMATReport", { enumerable: true, get: function () { return test_report_1.BMATReport; } });
|
|
123
|
-
Object.defineProperty(exports, "IEATReport", { enumerable: true, get: function () { return test_report_1.IEATReport; } });
|
|
124
|
-
Object.defineProperty(exports, "TempSATReport", { enumerable: true, get: function () { return test_report_1.TempSATReport; } });
|
|
125
|
-
var test_score_1 = require("./model/test-score");
|
|
126
|
-
Object.defineProperty(exports, "TestScore", { enumerable: true, get: function () { return test_score_1.TestScore; } });
|
|
127
|
-
var test_section_1 = require("./model/test-section");
|
|
128
|
-
Object.defineProperty(exports, "TestSection", { enumerable: true, get: function () { return test_section_1.TestSection; } });
|
|
129
|
-
var test_1 = require("./model/test");
|
|
130
|
-
Object.defineProperty(exports, "Test", { enumerable: true, get: function () { return test_1.Test; } });
|
|
131
|
-
var university_preference_1 = require("./model/university-preference");
|
|
132
|
-
Object.defineProperty(exports, "UniversityPreference", { enumerable: true, get: function () { return university_preference_1.UniversityPreference; } });
|
|
133
|
-
var user_preference_1 = require("./model/user-preference");
|
|
134
|
-
Object.defineProperty(exports, "UserPreference", { enumerable: true, get: function () { return user_preference_1.UserPreference; } });
|
|
135
|
-
var user_to_guardian_1 = require("./model/user-to-guardian");
|
|
136
|
-
Object.defineProperty(exports, "UserToGuardian", { enumerable: true, get: function () { return user_to_guardian_1.UserToGuardian; } });
|
|
137
|
-
var user_1 = require("./model/user");
|
|
138
|
-
Object.defineProperty(exports, "User", { enumerable: true, get: function () { return user_1.User; } });
|
|
139
|
-
var zoom_info_1 = require("./model/zoom-info");
|
|
140
|
-
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/audit-log"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./model/audience-list"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./model/campaign-signature"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./model/campaign"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./model/answer-key"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./model/case-study"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./model/conversion-table"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./model/course-template-event"), exports);
|
|
13
|
+
tslib_1.__exportStar(require("./model/course-template"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./model/dimension"), exports);
|
|
15
|
+
tslib_1.__exportStar(require("./model/education-system"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./model/event-log"), exports);
|
|
17
|
+
tslib_1.__exportStar(require("./model/event-registration"), exports);
|
|
18
|
+
tslib_1.__exportStar(require("./model/event-to-user"), exports);
|
|
19
|
+
tslib_1.__exportStar(require("./model/event"), exports);
|
|
20
|
+
tslib_1.__exportStar(require("./model/extracurricular-activity"), exports);
|
|
21
|
+
tslib_1.__exportStar(require("./model/file-access"), exports);
|
|
22
|
+
tslib_1.__exportStar(require("./model/file-category"), exports);
|
|
23
|
+
tslib_1.__exportStar(require("./model/file"), exports);
|
|
24
|
+
tslib_1.__exportStar(require("./model/gmail-message-email-index"), exports);
|
|
25
|
+
tslib_1.__exportStar(require("./model/gmail-message"), exports);
|
|
26
|
+
tslib_1.__exportStar(require("./model/google-user"), exports);
|
|
27
|
+
tslib_1.__exportStar(require("./model/log"), 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/holiday"), exports);
|
|
31
|
+
tslib_1.__exportStar(require("./model/journey-stage"), exports);
|
|
32
|
+
tslib_1.__exportStar(require("./model/journey-to-student"), exports);
|
|
33
|
+
tslib_1.__exportStar(require("./model/journey"), exports);
|
|
34
|
+
tslib_1.__exportStar(require("./model/lead-assignment"), exports);
|
|
35
|
+
tslib_1.__exportStar(require("./model/lead-form-field"), exports);
|
|
36
|
+
tslib_1.__exportStar(require("./model/lead-form"), exports);
|
|
37
|
+
tslib_1.__exportStar(require("./model/lead-ip-ban"), exports);
|
|
38
|
+
tslib_1.__exportStar(require("./model/lead-queue"), exports);
|
|
39
|
+
tslib_1.__exportStar(require("./model/lead"), exports);
|
|
40
|
+
tslib_1.__exportStar(require("./model/neo-tag"), exports);
|
|
41
|
+
tslib_1.__exportStar(require("./model/neo-test-flow"), exports);
|
|
42
|
+
tslib_1.__exportStar(require("./model/neo-test-question-answer"), exports);
|
|
43
|
+
tslib_1.__exportStar(require("./model/neo-test-question-category"), exports);
|
|
44
|
+
tslib_1.__exportStar(require("./model/neo-test-question"), exports);
|
|
45
|
+
tslib_1.__exportStar(require("./model/neo-test-section-to-question"), exports);
|
|
46
|
+
tslib_1.__exportStar(require("./model/neo-test-section"), exports);
|
|
47
|
+
tslib_1.__exportStar(require("./model/neo-test"), exports);
|
|
48
|
+
tslib_1.__exportStar(require("./model/pd-pipeline"), exports);
|
|
49
|
+
tslib_1.__exportStar(require("./model/pd-user"), exports);
|
|
50
|
+
tslib_1.__exportStar(require("./model/profile"), exports);
|
|
51
|
+
tslib_1.__exportStar(require("./model/pup-lead"), exports);
|
|
52
|
+
tslib_1.__exportStar(require("./model/sale-split"), exports);
|
|
53
|
+
tslib_1.__exportStar(require("./model/sale"), exports);
|
|
54
|
+
tslib_1.__exportStar(require("./model/school"), exports);
|
|
55
|
+
tslib_1.__exportStar(require("./model/service-course-session"), exports);
|
|
56
|
+
tslib_1.__exportStar(require("./model/service-course"), exports);
|
|
57
|
+
tslib_1.__exportStar(require("./model/service-rate"), exports);
|
|
58
|
+
tslib_1.__exportStar(require("./model/staff-availability"), exports);
|
|
59
|
+
tslib_1.__exportStar(require("./model/staff-hour"), exports);
|
|
60
|
+
tslib_1.__exportStar(require("./model/staff-subject-tag"), exports);
|
|
61
|
+
tslib_1.__exportStar(require("./model/staff-hour-log"), exports);
|
|
62
|
+
tslib_1.__exportStar(require("./model/student-answer"), exports);
|
|
63
|
+
tslib_1.__exportStar(require("./model/student-assignment"), exports);
|
|
64
|
+
tslib_1.__exportStar(require("./model/student-extra"), exports);
|
|
65
|
+
tslib_1.__exportStar(require("./model/student-goal"), exports);
|
|
66
|
+
tslib_1.__exportStar(require("./model/student-note-checklist-item"), exports);
|
|
67
|
+
tslib_1.__exportStar(require("./model/student-note"), exports);
|
|
68
|
+
tslib_1.__exportStar(require("./model/student-service-deadline"), exports);
|
|
69
|
+
tslib_1.__exportStar(require("./model/student-service-membership-log"), exports);
|
|
70
|
+
tslib_1.__exportStar(require("./model/student-service-membership"), exports);
|
|
71
|
+
tslib_1.__exportStar(require("./model/student-service"), exports);
|
|
72
|
+
tslib_1.__exportStar(require("./model/student-session-attendance"), exports);
|
|
73
|
+
tslib_1.__exportStar(require("./model/student-target"), exports);
|
|
74
|
+
tslib_1.__exportStar(require("./model/test-attempt"), exports);
|
|
75
|
+
tslib_1.__exportStar(require("./model/test-category"), exports);
|
|
76
|
+
tslib_1.__exportStar(require("./model/test-question"), exports);
|
|
77
|
+
tslib_1.__exportStar(require("./model/test-report"), exports);
|
|
78
|
+
tslib_1.__exportStar(require("./model/test-score"), exports);
|
|
79
|
+
tslib_1.__exportStar(require("./model/test-section"), exports);
|
|
80
|
+
tslib_1.__exportStar(require("./model/test"), exports);
|
|
81
|
+
tslib_1.__exportStar(require("./model/timeline"), exports);
|
|
82
|
+
tslib_1.__exportStar(require("./model/university-preference"), exports);
|
|
83
|
+
tslib_1.__exportStar(require("./model/user-preference"), exports);
|
|
84
|
+
tslib_1.__exportStar(require("./model/user-to-guardian"), exports);
|
|
85
|
+
tslib_1.__exportStar(require("./model/user"), exports);
|
|
86
|
+
tslib_1.__exportStar(require("./model/wa-message"), exports);
|
|
87
|
+
tslib_1.__exportStar(require("./model/zoom-info"), exports);
|
|
141
88
|
//# sourceMappingURL=models.js.map
|