@platform-modules/civil-aviation-authority 2.3.56 → 2.3.57

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.
@@ -101,7 +101,7 @@ __decorate([
101
101
  __metadata("design:type", Number)
102
102
  ], HotelReservation.prototype, "user_id", void 0);
103
103
  __decorate([
104
- (0, typeorm_1.Column)({ type: 'varchar', length: 255 }),
104
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
105
105
  __metadata("design:type", String)
106
106
  ], HotelReservation.prototype, "type_of_accommodation", void 0);
107
107
  __decorate([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/civil-aviation-authority",
3
- "version": "2.3.56",
3
+ "version": "2.3.57",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -52,7 +52,7 @@ export class HotelReservation extends BaseModel {
52
52
  user_id: number;
53
53
 
54
54
  // Hotel reservation specific fields
55
- @Column({ type: 'varchar', length: 255 })
55
+ @Column({ type: 'varchar', length: 255, nullable: true })
56
56
  type_of_accommodation: string;
57
57
 
58
58
  @Column({ type: 'decimal', precision: 10, scale: 2, nullable: false })