@platform-modules/civil-aviation-authority 2.3.122 → 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: false }),
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/civil-aviation-authority",
3
- "version": "2.3.122",
3
+ "version": "2.3.123",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -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: false })
92
+ @Column({ type: "date", nullable: true })
93
93
  end_date: Date;
94
94
 
95
95
  @Column({ type: "varchar", length: 20, nullable: false })