@platform-modules/civil-aviation-authority 2.3.121 → 2.3.123
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.
|
@@ -160,7 +160,7 @@ __decorate([
|
|
|
160
160
|
__metadata("design:type", Date)
|
|
161
161
|
], TemporaryAssignmentRequest.prototype, "start_date", void 0);
|
|
162
162
|
__decorate([
|
|
163
|
-
(0, typeorm_1.Column)({ type: "date", nullable:
|
|
163
|
+
(0, typeorm_1.Column)({ type: "date", nullable: true }),
|
|
164
164
|
__metadata("design:type", Date)
|
|
165
165
|
], TemporaryAssignmentRequest.prototype, "end_date", void 0);
|
|
166
166
|
__decorate([
|
package/dist/models/user.js
CHANGED
|
@@ -235,11 +235,11 @@ __decorate([
|
|
|
235
235
|
__metadata("design:type", String)
|
|
236
236
|
], User.prototype, "religion", void 0);
|
|
237
237
|
__decorate([
|
|
238
|
-
(0, typeorm_1.Column)({ type: "decimal", precision: 10, scale: 3, nullable:
|
|
238
|
+
(0, typeorm_1.Column)({ type: "decimal", precision: 10, scale: 3, nullable: true }),
|
|
239
239
|
__metadata("design:type", Number)
|
|
240
240
|
], User.prototype, "current_basic_salary", void 0);
|
|
241
241
|
__decorate([
|
|
242
|
-
(0, typeorm_1.Column)({ type: "decimal", precision: 10, scale: 3, nullable:
|
|
242
|
+
(0, typeorm_1.Column)({ type: "decimal", precision: 10, scale: 3, nullable: true }),
|
|
243
243
|
__metadata("design:type", Number)
|
|
244
244
|
], User.prototype, "previous_basic_salary", void 0);
|
|
245
245
|
exports.User = User = __decorate([
|
package/package.json
CHANGED
|
@@ -89,7 +89,7 @@ export class TemporaryAssignmentRequest extends BaseModel {
|
|
|
89
89
|
@Column({ type: "date", nullable: false })
|
|
90
90
|
start_date: Date;
|
|
91
91
|
|
|
92
|
-
@Column({ type: "date", nullable:
|
|
92
|
+
@Column({ type: "date", nullable: true })
|
|
93
93
|
end_date: Date;
|
|
94
94
|
|
|
95
95
|
@Column({ type: "varchar", length: 20, nullable: false })
|
package/src/models/user.ts
CHANGED
|
@@ -133,10 +133,10 @@ export class User extends BaseModel {
|
|
|
133
133
|
@Column({ nullable: true })
|
|
134
134
|
religion?: string;
|
|
135
135
|
|
|
136
|
-
@Column({ type: "decimal", precision: 10, scale: 3, nullable:
|
|
136
|
+
@Column({ type: "decimal", precision: 10, scale: 3, nullable: true })
|
|
137
137
|
current_basic_salary: number;
|
|
138
138
|
|
|
139
|
-
@Column({ type: "decimal", precision: 10, scale: 3, nullable:
|
|
139
|
+
@Column({ type: "decimal", precision: 10, scale: 3, nullable: true })
|
|
140
140
|
previous_basic_salary: number;
|
|
141
141
|
|
|
142
142
|
constructor(
|