@tudopz/model 2.27.19 → 2.27.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/package.json +1 -1
- package/src/constants.d.ts +17 -17
- package/src/constants.js +18 -68
- package/src/constants.js.map +1 -1
- package/src/model/lead-form.d.ts +1 -0
- package/src/model/lead-form.js +4 -0
- package/src/model/lead-form.js.map +1 -1
package/package.json
CHANGED
package/src/constants.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
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
|
|
1
|
+
export * from './constant/conversion-table';
|
|
2
|
+
export * from './constant/country';
|
|
3
|
+
export * from './constant/dimension';
|
|
4
|
+
export * from './constant/event';
|
|
5
|
+
export * from './constant/extracurricular-activity';
|
|
6
|
+
export * from './constant/guardian';
|
|
7
|
+
export * from './constant/nationality';
|
|
8
|
+
export * from './constant/lead-form';
|
|
9
|
+
export * from './constant/lead';
|
|
10
|
+
export * from './constant/location';
|
|
11
|
+
export * from './constant/sale';
|
|
12
|
+
export * from './constant/school';
|
|
13
|
+
export * from './constant/student-assignment';
|
|
14
|
+
export * from './constant/student-service';
|
|
15
|
+
export * from './constant/subject';
|
|
16
|
+
export * from './constant/university-preference';
|
|
17
|
+
export * from './constant/user';
|
package/src/constants.js
CHANGED
|
@@ -1,71 +1,21 @@
|
|
|
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
|
-
Object.defineProperty(exports, "GUARDIAN_RELATIONSHIP_VALUES", { enumerable: true, get: function () { return guardian_1.GUARDIAN_RELATIONSHIP_VALUES; } });
|
|
22
|
-
var nationality_1 = require("./constant/nationality");
|
|
23
|
-
Object.defineProperty(exports, "NATIONALITY_VALUES", { enumerable: true, get: function () { return nationality_1.NATIONALITY_VALUES; } });
|
|
24
|
-
var lead_form_1 = require("./constant/lead-form");
|
|
25
|
-
Object.defineProperty(exports, "LEAD_FORM_ASSIGNMENT_VALUES", { enumerable: true, get: function () { return lead_form_1.LEAD_FORM_ASSIGNMENT_VALUES; } });
|
|
26
|
-
Object.defineProperty(exports, "LEAD_FORM_FIELD_TYPE_VALUES", { enumerable: true, get: function () { return lead_form_1.LEAD_FORM_FIELD_TYPE_VALUES; } });
|
|
27
|
-
Object.defineProperty(exports, "LEAD_FORM_FIELD_VALIDATION_VALUES", { enumerable: true, get: function () { return lead_form_1.LEAD_FORM_FIELD_VALIDATION_VALUES; } });
|
|
28
|
-
var lead_1 = require("./constant/lead");
|
|
29
|
-
Object.defineProperty(exports, "LEAD_QUALITY_VALUES", { enumerable: true, get: function () { return lead_1.LEAD_QUALITY_VALUES; } });
|
|
30
|
-
var location_1 = require("./constant/location");
|
|
31
|
-
Object.defineProperty(exports, "OFFICE_VALUES", { enumerable: true, get: function () { return location_1.OFFICE_VALUES; } });
|
|
32
|
-
Object.defineProperty(exports, "ROOMS", { enumerable: true, get: function () { return location_1.ROOMS; } });
|
|
33
|
-
var sale_1 = require("./constant/sale");
|
|
34
|
-
Object.defineProperty(exports, "SALE_PAYMENT_MODE_VALUES", { enumerable: true, get: function () { return sale_1.SALE_PAYMENT_MODE_VALUES; } });
|
|
35
|
-
Object.defineProperty(exports, "SALE_PAYMENT_TYPE_VALUES", { enumerable: true, get: function () { return sale_1.SALE_PAYMENT_TYPE_VALUES; } });
|
|
36
|
-
Object.defineProperty(exports, "SALE_TYPE_VALUES", { enumerable: true, get: function () { return sale_1.SALE_TYPE_VALUES; } });
|
|
37
|
-
Object.defineProperty(exports, "SALE_SUB_TYPE_VALUES", { enumerable: true, get: function () { return sale_1.SALE_SUB_TYPE_VALUES; } });
|
|
38
|
-
var school_1 = require("./constant/school");
|
|
39
|
-
Object.defineProperty(exports, "EDUCATION_SYSTEM_VALUES", { enumerable: true, get: function () { return school_1.EDUCATION_SYSTEM_VALUES; } });
|
|
40
|
-
Object.defineProperty(exports, "SCHOOL_VALUES", { enumerable: true, get: function () { return school_1.SCHOOL_VALUES; } });
|
|
41
|
-
Object.defineProperty(exports, "COURSES", { enumerable: true, get: function () { return school_1.COURSES; } });
|
|
42
|
-
Object.defineProperty(exports, "COURSE_SUBJECTS", { enumerable: true, get: function () { return school_1.COURSE_SUBJECTS; } });
|
|
43
|
-
Object.defineProperty(exports, "AREA_OF_STUDIES", { enumerable: true, get: function () { return school_1.AREA_OF_STUDIES; } });
|
|
44
|
-
var student_assignment_1 = require("./constant/student-assignment");
|
|
45
|
-
Object.defineProperty(exports, "STUDENT_ASSIGNMENT_RELATIONSHIP_VALUES", { enumerable: true, get: function () { return student_assignment_1.STUDENT_ASSIGNMENT_RELATIONSHIP_VALUES; } });
|
|
46
|
-
var student_service_1 = require("./constant/student-service");
|
|
47
|
-
Object.defineProperty(exports, "STUDENT_SERVICE_VALUES", { enumerable: true, get: function () { return student_service_1.STUDENT_SERVICE_VALUES; } });
|
|
48
|
-
Object.defineProperty(exports, "UNDERGRAD_TEST_SERVICES", { enumerable: true, get: function () { return student_service_1.UNDERGRAD_TEST_SERVICES; } });
|
|
49
|
-
Object.defineProperty(exports, "UNDERGRAD_ADMISSIONS_SERVICES", { enumerable: true, get: function () { return student_service_1.UNDERGRAD_ADMISSIONS_SERVICES; } });
|
|
50
|
-
Object.defineProperty(exports, "POSTGRAD_TEST_SERVICES", { enumerable: true, get: function () { return student_service_1.POSTGRAD_TEST_SERVICES; } });
|
|
51
|
-
Object.defineProperty(exports, "POSTGRAD_ADMISSIONS_SERVICES", { enumerable: true, get: function () { return student_service_1.POSTGRAD_ADMISSIONS_SERVICES; } });
|
|
52
|
-
Object.defineProperty(exports, "SCHOOL_CURRICULUM_SERVICES", { enumerable: true, get: function () { return student_service_1.SCHOOL_CURRICULUM_SERVICES; } });
|
|
53
|
-
Object.defineProperty(exports, "ENGLISH_PROFICIENCY_SERVICES", { enumerable: true, get: function () { return student_service_1.ENGLISH_PROFICIENCY_SERVICES; } });
|
|
54
|
-
Object.defineProperty(exports, "ENRICHMENT_SERVICES", { enumerable: true, get: function () { return student_service_1.ENRICHMENT_SERVICES; } });
|
|
55
|
-
Object.defineProperty(exports, "NO_TARGETS", { enumerable: true, get: function () { return student_service_1.NO_TARGETS; } });
|
|
56
|
-
Object.defineProperty(exports, "TEST_PREP_TARGETS", { enumerable: true, get: function () { return student_service_1.TEST_PREP_TARGETS; } });
|
|
57
|
-
Object.defineProperty(exports, "ADMISSIONS_TARGETS", { enumerable: true, get: function () { return student_service_1.ADMISSIONS_TARGETS; } });
|
|
58
|
-
Object.defineProperty(exports, "UNDERGRAD_ALL_SERVICES", { enumerable: true, get: function () { return student_service_1.UNDERGRAD_ALL_SERVICES; } });
|
|
59
|
-
Object.defineProperty(exports, "POSTGRAD_ALL_SERVICES", { enumerable: true, get: function () { return student_service_1.POSTGRAD_ALL_SERVICES; } });
|
|
60
|
-
Object.defineProperty(exports, "ALL_ADMISSIONS_SERVICES", { enumerable: true, get: function () { return student_service_1.ALL_ADMISSIONS_SERVICES; } });
|
|
61
|
-
Object.defineProperty(exports, "ALL_TEST_PREPS_SERVICES", { enumerable: true, get: function () { return student_service_1.ALL_TEST_PREPS_SERVICES; } });
|
|
62
|
-
var subject_1 = require("./constant/subject");
|
|
63
|
-
Object.defineProperty(exports, "SUBJECT_VALUES", { enumerable: true, get: function () { return subject_1.SUBJECT_VALUES; } });
|
|
64
|
-
var university_preference_1 = require("./constant/university-preference");
|
|
65
|
-
Object.defineProperty(exports, "UNI_PREF_SIZES", { enumerable: true, get: function () { return university_preference_1.UNI_PREF_SIZES; } });
|
|
66
|
-
Object.defineProperty(exports, "UNI_PREF_SETTINGS", { enumerable: true, get: function () { return university_preference_1.UNI_PREF_SETTINGS; } });
|
|
67
|
-
Object.defineProperty(exports, "UNI_PREF_LOCATIONS", { enumerable: true, get: function () { return university_preference_1.UNI_PREF_LOCATIONS; } });
|
|
68
|
-
var user_1 = require("./constant/user");
|
|
69
|
-
Object.defineProperty(exports, "USER_STATUS_VALUES", { enumerable: true, get: function () { return user_1.USER_STATUS_VALUES; } });
|
|
70
|
-
Object.defineProperty(exports, "USER_ROLE_VALUES", { enumerable: true, get: function () { return user_1.USER_ROLE_VALUES; } });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./constant/conversion-table"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./constant/country"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./constant/dimension"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./constant/event"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./constant/extracurricular-activity"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./constant/guardian"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./constant/nationality"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./constant/lead-form"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./constant/lead"), exports);
|
|
13
|
+
tslib_1.__exportStar(require("./constant/location"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./constant/sale"), exports);
|
|
15
|
+
tslib_1.__exportStar(require("./constant/school"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./constant/student-assignment"), exports);
|
|
17
|
+
tslib_1.__exportStar(require("./constant/student-service"), exports);
|
|
18
|
+
tslib_1.__exportStar(require("./constant/subject"), exports);
|
|
19
|
+
tslib_1.__exportStar(require("./constant/university-preference"), exports);
|
|
20
|
+
tslib_1.__exportStar(require("./constant/user"), exports);
|
|
71
21
|
//# sourceMappingURL=constants.js.map
|
package/src/constants.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../../../libs/model/src/constants.ts"],"names":[],"mappings":";;;AAAA,
|
|
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"}
|
package/src/model/lead-form.d.ts
CHANGED
package/src/model/lead-form.js
CHANGED
|
@@ -45,6 +45,10 @@ tslib_1.__decorate([
|
|
|
45
45
|
(0, typeorm_1.Column)({ type: 'varchar', length: 500 }),
|
|
46
46
|
tslib_1.__metadata("design:type", String)
|
|
47
47
|
], LeadForm.prototype, "redirectUrl", void 0);
|
|
48
|
+
tslib_1.__decorate([
|
|
49
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 200 }),
|
|
50
|
+
tslib_1.__metadata("design:type", String)
|
|
51
|
+
], LeadForm.prototype, "targetPipelineId", void 0);
|
|
48
52
|
tslib_1.__decorate([
|
|
49
53
|
(0, typeorm_1.CreateDateColumn)(),
|
|
50
54
|
tslib_1.__metadata("design:type", Date)
|
|
@@ -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;
|
|
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,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;kDAChB;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"}
|