@tudopz/model 2.27.75 → 2.27.77
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/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/service-course-session.d.ts +0 -2
- package/src/model/service-course-session.js +0 -5
- package/src/model/service-course-session.js.map +1 -1
- package/src/model/service-course.d.ts +0 -2
- package/src/model/service-course.js +0 -5
- package/src/model/service-course.js.map +1 -1
- package/src/model/student-session-attendance.js +3 -3
- package/src/model/student-session-attendance.js.map +1 -1
- package/src/models.d.ts +1 -0
- package/src/models.js +1 -0
- package/src/models.js.map +1 -1
package/package.json
CHANGED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LeadIpBan = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const typeorm_1 = require("typeorm");
|
|
6
|
+
let LeadIpBan = class LeadIpBan {
|
|
7
|
+
};
|
|
8
|
+
tslib_1.__decorate([
|
|
9
|
+
(0, typeorm_1.PrimaryGeneratedColumn)(),
|
|
10
|
+
tslib_1.__metadata("design:type", Number)
|
|
11
|
+
], LeadIpBan.prototype, "id", void 0);
|
|
12
|
+
tslib_1.__decorate([
|
|
13
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: '20' }),
|
|
14
|
+
tslib_1.__metadata("design:type", String)
|
|
15
|
+
], LeadIpBan.prototype, "address", void 0);
|
|
16
|
+
tslib_1.__decorate([
|
|
17
|
+
(0, typeorm_1.CreateDateColumn)(),
|
|
18
|
+
tslib_1.__metadata("design:type", Date)
|
|
19
|
+
], LeadIpBan.prototype, "createdAt", void 0);
|
|
20
|
+
tslib_1.__decorate([
|
|
21
|
+
(0, typeorm_1.Column)({ type: 'int', nullable: true }),
|
|
22
|
+
tslib_1.__metadata("design:type", Number)
|
|
23
|
+
], LeadIpBan.prototype, "originLeadId", void 0);
|
|
24
|
+
LeadIpBan = tslib_1.__decorate([
|
|
25
|
+
(0, typeorm_1.Entity)({ name: 'lead_ip_bans' })
|
|
26
|
+
], LeadIpBan);
|
|
27
|
+
exports.LeadIpBan = LeadIpBan;
|
|
28
|
+
//# sourceMappingURL=lead-ip-ban.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lead-ip-ban.js","sourceRoot":"","sources":["../../../../../libs/model/src/model/lead-ip-ban.ts"],"names":[],"mappings":";;;;AAAA,qCAAmF;AAG5E,IAAM,SAAS,GAAf,MAAM,SAAS;CAYrB,CAAA;AAXC;IAAC,IAAA,gCAAsB,GAAE;;qCACd;AAEX;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;;0CAC1B;AAEhB;IAAC,IAAA,0BAAgB,GAAE;sCACR,IAAI;4CAAC;AAEhB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CAClB;AAXX,SAAS;IADrB,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,cAAc,EAAE,CAAC;GACpB,SAAS,CAYrB;AAZY,8BAAS"}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { ServiceCourse } from './service-course';
|
|
2
|
-
import { StudentSessionAttendance } from './student-session-attendance';
|
|
3
2
|
export declare class ServiceCourseSession {
|
|
4
3
|
id: number;
|
|
5
4
|
order: number;
|
|
@@ -9,5 +8,4 @@ export declare class ServiceCourseSession {
|
|
|
9
8
|
createdAt: Date;
|
|
10
9
|
updatedAt: Date;
|
|
11
10
|
course: ServiceCourse;
|
|
12
|
-
sessionAttendances: StudentSessionAttendance[];
|
|
13
11
|
}
|
|
@@ -4,7 +4,6 @@ exports.ServiceCourseSession = void 0;
|
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const typeorm_1 = require("typeorm");
|
|
6
6
|
const service_course_1 = require("./service-course");
|
|
7
|
-
const student_session_attendance_1 = require("./student-session-attendance");
|
|
8
7
|
let ServiceCourseSession = class ServiceCourseSession {
|
|
9
8
|
};
|
|
10
9
|
tslib_1.__decorate([
|
|
@@ -40,10 +39,6 @@ tslib_1.__decorate([
|
|
|
40
39
|
(0, typeorm_1.JoinColumn)(),
|
|
41
40
|
tslib_1.__metadata("design:type", service_course_1.ServiceCourse)
|
|
42
41
|
], ServiceCourseSession.prototype, "course", void 0);
|
|
43
|
-
tslib_1.__decorate([
|
|
44
|
-
(0, typeorm_1.OneToMany)(() => student_session_attendance_1.StudentSessionAttendance, (a) => a.session),
|
|
45
|
-
tslib_1.__metadata("design:type", Array)
|
|
46
|
-
], ServiceCourseSession.prototype, "sessionAttendances", void 0);
|
|
47
42
|
ServiceCourseSession = tslib_1.__decorate([
|
|
48
43
|
(0, typeorm_1.Entity)({ name: 'service_course_sessions' })
|
|
49
44
|
], ServiceCourseSession);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"service-course-session.js","sourceRoot":"","sources":["../../../../../libs/model/src/model/service-course-session.ts"],"names":[],"mappings":";;;;AAAA,
|
|
1
|
+
{"version":3,"file":"service-course-session.js","sourceRoot":"","sources":["../../../../../libs/model/src/model/service-course-session.ts"],"names":[],"mappings":";;;;AAAA,qCAQiB;AAEjB,qDAAiD;AAG1C,IAAM,oBAAoB,GAA1B,MAAM,oBAAoB;CAyBhC,CAAA;AAxBC;IAAC,IAAA,gCAAsB,GAAE;;gDACd;AAEX;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;mDACV;AAEd;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;kDAC5B;AAEb;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;yDACL;AAEpB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;sDACP;AAEjB;IAAC,IAAA,0BAAgB,GAAE;sCACR,IAAI;uDAAC;AAEhB;IAAC,IAAA,0BAAgB,GAAE;sCACR,IAAI;uDAAC;AAEhB;IAAC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,8BAAa,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC;IACjD,IAAA,oBAAU,GAAE;sCACL,8BAAa;oDAAC;AAxBX,oBAAoB;IADhC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,yBAAyB,EAAE,CAAC;GAC/B,oBAAoB,CAyBhC;AAzBY,oDAAoB"}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { ServiceCourseSession } from './service-course-session';
|
|
2
|
-
import { StudentSessionAttendance } from './student-session-attendance';
|
|
3
2
|
export declare class ServiceCourse {
|
|
4
3
|
id: number;
|
|
5
4
|
service: number;
|
|
@@ -10,5 +9,4 @@ export declare class ServiceCourse {
|
|
|
10
9
|
createdAt: Date;
|
|
11
10
|
updatedAt: Date;
|
|
12
11
|
sessions: ServiceCourseSession[];
|
|
13
|
-
sessionAttendances: StudentSessionAttendance[];
|
|
14
12
|
}
|
|
@@ -4,7 +4,6 @@ exports.ServiceCourse = void 0;
|
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const typeorm_1 = require("typeorm");
|
|
6
6
|
const service_course_session_1 = require("./service-course-session");
|
|
7
|
-
const student_session_attendance_1 = require("./student-session-attendance");
|
|
8
7
|
let ServiceCourse = class ServiceCourse {
|
|
9
8
|
};
|
|
10
9
|
tslib_1.__decorate([
|
|
@@ -43,10 +42,6 @@ tslib_1.__decorate([
|
|
|
43
42
|
(0, typeorm_1.OneToMany)(() => service_course_session_1.ServiceCourseSession, (s) => s.course),
|
|
44
43
|
tslib_1.__metadata("design:type", Array)
|
|
45
44
|
], ServiceCourse.prototype, "sessions", void 0);
|
|
46
|
-
tslib_1.__decorate([
|
|
47
|
-
(0, typeorm_1.OneToMany)(() => student_session_attendance_1.StudentSessionAttendance, (a) => a.course),
|
|
48
|
-
tslib_1.__metadata("design:type", Array)
|
|
49
|
-
], ServiceCourse.prototype, "sessionAttendances", void 0);
|
|
50
45
|
ServiceCourse = tslib_1.__decorate([
|
|
51
46
|
(0, typeorm_1.Entity)({ name: 'service_courses' })
|
|
52
47
|
], ServiceCourse);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"service-course.js","sourceRoot":"","sources":["../../../../../libs/model/src/model/service-course.ts"],"names":[],"mappings":";;;;AAAA,qCAOiB;AAEjB,qEAAgE;
|
|
1
|
+
{"version":3,"file":"service-course.js","sourceRoot":"","sources":["../../../../../libs/model/src/model/service-course.ts"],"names":[],"mappings":";;;;AAAA,qCAOiB;AAEjB,qEAAgE;AAGzD,IAAM,aAAa,GAAnB,MAAM,aAAa;CA2BzB,CAAA;AA1BC;IAAC,IAAA,gCAAsB,GAAE;;yCACd;AAEX;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;8CACR;AAEhB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;2CAC5B;AAEb;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;kDACL;AAEpB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;gDACN;AAEnB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;gDACN;AAEnB;IAAC,IAAA,0BAAgB,GAAE;sCACR,IAAI;gDAAC;AAEhB;IAAC,IAAA,0BAAgB,GAAE;sCACR,IAAI;gDAAC;AAEhB;IAAC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,6CAAoB,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC;;+CACtB;AA1BtB,aAAa;IADzB,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,iBAAiB,EAAE,CAAC;GACvB,aAAa,CA2BzB;AA3BY,sCAAa"}
|
|
@@ -38,12 +38,12 @@ tslib_1.__decorate([
|
|
|
38
38
|
tslib_1.__metadata("design:type", Date)
|
|
39
39
|
], StudentSessionAttendance.prototype, "updatedAt", void 0);
|
|
40
40
|
tslib_1.__decorate([
|
|
41
|
-
(0, typeorm_1.ManyToOne)(() => user_1.User
|
|
41
|
+
(0, typeorm_1.ManyToOne)(() => user_1.User),
|
|
42
42
|
(0, typeorm_1.JoinColumn)(),
|
|
43
43
|
tslib_1.__metadata("design:type", user_1.User)
|
|
44
44
|
], StudentSessionAttendance.prototype, "student", void 0);
|
|
45
45
|
tslib_1.__decorate([
|
|
46
|
-
(0, typeorm_1.ManyToOne)(() => service_course_1.ServiceCourse
|
|
46
|
+
(0, typeorm_1.ManyToOne)(() => service_course_1.ServiceCourse),
|
|
47
47
|
(0, typeorm_1.JoinColumn)(),
|
|
48
48
|
tslib_1.__metadata("design:type", service_course_1.ServiceCourse)
|
|
49
49
|
], StudentSessionAttendance.prototype, "course", void 0);
|
|
@@ -53,7 +53,7 @@ tslib_1.__decorate([
|
|
|
53
53
|
tslib_1.__metadata("design:type", service_course_session_1.ServiceCourseSession)
|
|
54
54
|
], StudentSessionAttendance.prototype, "session", void 0);
|
|
55
55
|
tslib_1.__decorate([
|
|
56
|
-
(0, typeorm_1.ManyToOne)(() => event_1.Event
|
|
56
|
+
(0, typeorm_1.ManyToOne)(() => event_1.Event),
|
|
57
57
|
(0, typeorm_1.JoinColumn)(),
|
|
58
58
|
tslib_1.__metadata("design:type", event_1.Event)
|
|
59
59
|
], StudentSessionAttendance.prototype, "event", void 0);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"student-session-attendance.js","sourceRoot":"","sources":["../../../../../libs/model/src/model/student-session-attendance.ts"],"names":[],"mappings":";;;;AAAA,qCAQiB;AAEjB,iCAA8B;AAC9B,qEAAgE;AAChE,mCAAgC;AAChC,qDAAiD;AAG1C,IAAM,wBAAwB,GAA9B,MAAM,wBAAwB;CAqCpC,CAAA;AApCC;IAAC,IAAA,gCAAsB,GAAE;;oDACd;AAEX;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;2DACN;AAElB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;0DACP;AAEjB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;yDACR;AAEhB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;2DACN;AAElB;IAAC,IAAA,0BAAgB,GAAE;sCACR,IAAI;2DAAC;AAEhB;IAAC,IAAA,0BAAgB,GAAE;sCACR,IAAI;2DAAC;AAEhB;IAAC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,WAAI,
|
|
1
|
+
{"version":3,"file":"student-session-attendance.js","sourceRoot":"","sources":["../../../../../libs/model/src/model/student-session-attendance.ts"],"names":[],"mappings":";;;;AAAA,qCAQiB;AAEjB,iCAA8B;AAC9B,qEAAgE;AAChE,mCAAgC;AAChC,qDAAiD;AAG1C,IAAM,wBAAwB,GAA9B,MAAM,wBAAwB;CAqCpC,CAAA;AApCC;IAAC,IAAA,gCAAsB,GAAE;;oDACd;AAEX;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;2DACN;AAElB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;0DACP;AAEjB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;yDACR;AAEhB;IAAC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;2DACN;AAElB;IAAC,IAAA,0BAAgB,GAAE;sCACR,IAAI;2DAAC;AAEhB;IAAC,IAAA,0BAAgB,GAAE;sCACR,IAAI;2DAAC;AAEhB;IAAC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,WAAI,CAAC;IACrB,IAAA,oBAAU,GAAE;sCACJ,WAAI;yDAAC;AAEd;IAAC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,8BAAa,CAAC;IAC9B,IAAA,oBAAU,GAAE;sCACL,8BAAa;wDAAC;AAEtB;IAAC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,6CAAoB,CAAC;IACrC,IAAA,oBAAU,GAAE;sCACJ,6CAAoB;yDAAC;AAE9B;IAAC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,aAAK,CAAC;IACtB,IAAA,oBAAU,GAAE;sCACN,aAAK;uDAAC;AApCF,wBAAwB;IADpC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,6BAA6B,EAAE,CAAC;GACnC,wBAAwB,CAqCpC;AArCY,4DAAwB"}
|
package/src/models.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ export * from './model/journey';
|
|
|
27
27
|
export * from './model/lead-assignment';
|
|
28
28
|
export * from './model/lead-form-field';
|
|
29
29
|
export * from './model/lead-form';
|
|
30
|
+
export * from './model/lead-ip-ban';
|
|
30
31
|
export * from './model/lead-queue';
|
|
31
32
|
export * from './model/lead';
|
|
32
33
|
export * from './model/pd-pipeline';
|
package/src/models.js
CHANGED
|
@@ -30,6 +30,7 @@ tslib_1.__exportStar(require("./model/journey"), exports);
|
|
|
30
30
|
tslib_1.__exportStar(require("./model/lead-assignment"), exports);
|
|
31
31
|
tslib_1.__exportStar(require("./model/lead-form-field"), exports);
|
|
32
32
|
tslib_1.__exportStar(require("./model/lead-form"), exports);
|
|
33
|
+
tslib_1.__exportStar(require("./model/lead-ip-ban"), exports);
|
|
33
34
|
tslib_1.__exportStar(require("./model/lead-queue"), exports);
|
|
34
35
|
tslib_1.__exportStar(require("./model/lead"), exports);
|
|
35
36
|
tslib_1.__exportStar(require("./model/pd-pipeline"), exports);
|
package/src/models.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"models.js","sourceRoot":"","sources":["../../../../libs/model/src/models.ts"],"names":[],"mappings":";;;AAAA,+DAAqC;AACrC,4DAAkC;AAClC,6DAAmC;AACnC,6DAAmC;AACnC,mEAAyC;AACzC,wEAA8C;AAC9C,kEAAwC;AACxC,4DAAkC;AAClC,mEAAyC;AACzC,4DAAkC;AAClC,qEAA2C;AAC3C,gEAAsC;AACtC,wDAA8B;AAC9B,2EAAiD;AACjD,8DAAoC;AACpC,gEAAsC;AACtC,uDAA6B;AAC7B,4EAAkD;AAClD,gEAAsC;AACtC,8DAAoC;AACpC,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,yEAA+C;AAC/C,iEAAuC;AACvC,qEAA2C;AAC3C,6DAAmC;AACnC,oEAA0C;AAC1C,iEAAuC;AACvC,iEAAuC;AACvC,qEAA2C;AAC3C,gEAAsC;AACtC,+DAAqC;AACrC,8EAAoD;AACpD,+DAAqC;AACrC,2EAAiD;AACjD,iFAAuD;AACvD,6EAAmD;AACnD,kEAAwC;AACxC,6EAAmD;AACnD,iEAAuC;AACvC,+DAAqC;AACrC,gEAAsC;AACtC,gEAAsC;AACtC,8DAAoC;AACpC,6DAAmC;AACnC,+DAAqC;AACrC,uDAA6B;AAC7B,2DAAiC;AACjC,wEAA8C;AAC9C,kEAAwC;AACxC,mEAAyC;AACzC,uDAA6B;AAC7B,6DAAmC;AACnC,4DAAkC"}
|
|
1
|
+
{"version":3,"file":"models.js","sourceRoot":"","sources":["../../../../libs/model/src/models.ts"],"names":[],"mappings":";;;AAAA,+DAAqC;AACrC,4DAAkC;AAClC,6DAAmC;AACnC,6DAAmC;AACnC,mEAAyC;AACzC,wEAA8C;AAC9C,kEAAwC;AACxC,4DAAkC;AAClC,mEAAyC;AACzC,4DAAkC;AAClC,qEAA2C;AAC3C,gEAAsC;AACtC,wDAA8B;AAC9B,2EAAiD;AACjD,8DAAoC;AACpC,gEAAsC;AACtC,uDAA6B;AAC7B,4EAAkD;AAClD,gEAAsC;AACtC,8DAAoC;AACpC,sDAA4B;AAC5B,2DAAiC;AACjC,qEAA2C;AAC3C,gEAAsC;AACtC,qEAA2C;AAC3C,0DAAgC;AAChC,kEAAwC;AACxC,kEAAwC;AACxC,4DAAkC;AAClC,8DAAoC;AACpC,6DAAmC;AACnC,uDAA6B;AAC7B,8DAAoC;AACpC,0DAAgC;AAChC,0DAAgC;AAChC,2DAAiC;AACjC,6DAAmC;AACnC,uDAA6B;AAC7B,yDAA+B;AAC/B,yEAA+C;AAC/C,iEAAuC;AACvC,qEAA2C;AAC3C,6DAAmC;AACnC,oEAA0C;AAC1C,iEAAuC;AACvC,iEAAuC;AACvC,qEAA2C;AAC3C,gEAAsC;AACtC,+DAAqC;AACrC,8EAAoD;AACpD,+DAAqC;AACrC,2EAAiD;AACjD,iFAAuD;AACvD,6EAAmD;AACnD,kEAAwC;AACxC,6EAAmD;AACnD,iEAAuC;AACvC,+DAAqC;AACrC,gEAAsC;AACtC,gEAAsC;AACtC,8DAAoC;AACpC,6DAAmC;AACnC,+DAAqC;AACrC,uDAA6B;AAC7B,2DAAiC;AACjC,wEAA8C;AAC9C,kEAAwC;AACxC,mEAAyC;AACzC,uDAA6B;AAC7B,6DAAmC;AACnC,4DAAkC"}
|