@platform-modules/civil-aviation-authority 2.3.222 → 2.3.223

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.
@@ -24,6 +24,8 @@ export declare class MultiPurposeHallRequests extends BaseModel {
24
24
  /** Physical hall (halls.id); stored for histories and slot checks when set. */
25
25
  hall_id: number | null;
26
26
  location_id: number | null;
27
+ /** Booking / organizational department (department.id); copied to histories on approval. */
28
+ department_id: number | null;
27
29
  user_id: number;
28
30
  event_type: MultiPurposeHallInternalExternal;
29
31
  request_type: MultiPurposeHallInternalExternal;
@@ -59,6 +59,10 @@ __decorate([
59
59
  (0, typeorm_1.Column)({ type: "integer", nullable: true }),
60
60
  __metadata("design:type", Object)
61
61
  ], MultiPurposeHallRequests.prototype, "location_id", void 0);
62
+ __decorate([
63
+ (0, typeorm_1.Column)({ type: "integer", nullable: true }),
64
+ __metadata("design:type", Object)
65
+ ], MultiPurposeHallRequests.prototype, "department_id", void 0);
62
66
  __decorate([
63
67
  (0, typeorm_1.Column)({ type: "integer", nullable: false }),
64
68
  __metadata("design:type", Number)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/civil-aviation-authority",
3
- "version": "2.3.222",
3
+ "version": "2.3.223",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -42,6 +42,10 @@ export class MultiPurposeHallRequests extends BaseModel {
42
42
  @Column({ type: "integer", nullable: true })
43
43
  location_id: number | null;
44
44
 
45
+ /** Booking / organizational department (department.id); copied to histories on approval. */
46
+ @Column({ type: "integer", nullable: true })
47
+ department_id: number | null;
48
+
45
49
  @Column({ type: "integer", nullable: false })
46
50
  user_id: number;
47
51