@platform-modules/foreign-ministry 1.3.163 → 1.3.164
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.
|
@@ -31,4 +31,8 @@ export declare class LMSExternalCourseParticipationRequests extends BaseModel {
|
|
|
31
31
|
includePoliticalOpinion: string | null;
|
|
32
32
|
course_id: number | null;
|
|
33
33
|
is_exam_required: IsExamRequired | null;
|
|
34
|
+
travel_ticket_amount: number | null;
|
|
35
|
+
transportation_amount: number | null;
|
|
36
|
+
accommodation_amount: number | null;
|
|
37
|
+
perdiem_amount: number | null;
|
|
34
38
|
}
|
|
@@ -108,6 +108,22 @@ __decorate([
|
|
|
108
108
|
(0, typeorm_1.Column)({ type: 'enum', enum: IsExamRequired, nullable: true }),
|
|
109
109
|
__metadata("design:type", Object)
|
|
110
110
|
], LMSExternalCourseParticipationRequests.prototype, "is_exam_required", void 0);
|
|
111
|
+
__decorate([
|
|
112
|
+
(0, typeorm_1.Column)({ type: 'decimal', precision: 10, scale: 2, nullable: true }),
|
|
113
|
+
__metadata("design:type", Object)
|
|
114
|
+
], LMSExternalCourseParticipationRequests.prototype, "travel_ticket_amount", void 0);
|
|
115
|
+
__decorate([
|
|
116
|
+
(0, typeorm_1.Column)({ type: 'decimal', precision: 10, scale: 2, nullable: true }),
|
|
117
|
+
__metadata("design:type", Object)
|
|
118
|
+
], LMSExternalCourseParticipationRequests.prototype, "transportation_amount", void 0);
|
|
119
|
+
__decorate([
|
|
120
|
+
(0, typeorm_1.Column)({ type: 'decimal', precision: 10, scale: 2, nullable: true }),
|
|
121
|
+
__metadata("design:type", Object)
|
|
122
|
+
], LMSExternalCourseParticipationRequests.prototype, "accommodation_amount", void 0);
|
|
123
|
+
__decorate([
|
|
124
|
+
(0, typeorm_1.Column)({ type: 'decimal', precision: 10, scale: 2, nullable: true }),
|
|
125
|
+
__metadata("design:type", Object)
|
|
126
|
+
], LMSExternalCourseParticipationRequests.prototype, "perdiem_amount", void 0);
|
|
111
127
|
exports.LMSExternalCourseParticipationRequests = LMSExternalCourseParticipationRequests = __decorate([
|
|
112
128
|
(0, typeorm_1.Entity)({ name: 'lms_external_course_participation_requests' })
|
|
113
129
|
], LMSExternalCourseParticipationRequests);
|
package/package.json
CHANGED
|
@@ -77,4 +77,16 @@ export class LMSExternalCourseParticipationRequests extends BaseModel {
|
|
|
77
77
|
|
|
78
78
|
@Column({ type: 'enum', enum: IsExamRequired, nullable: true })
|
|
79
79
|
is_exam_required: IsExamRequired | null;
|
|
80
|
+
|
|
81
|
+
@Column({ type: 'decimal', precision: 10, scale: 2, nullable: true })
|
|
82
|
+
travel_ticket_amount: number | null;
|
|
83
|
+
|
|
84
|
+
@Column({ type: 'decimal', precision: 10, scale: 2, nullable: true })
|
|
85
|
+
transportation_amount: number | null;
|
|
86
|
+
|
|
87
|
+
@Column({ type: 'decimal', precision: 10, scale: 2, nullable: true })
|
|
88
|
+
accommodation_amount: number | null;
|
|
89
|
+
|
|
90
|
+
@Column({ type: 'decimal', precision: 10, scale: 2, nullable: true })
|
|
91
|
+
perdiem_amount: number | null;
|
|
80
92
|
}
|