@platform-modules/civil-aviation-authority 2.2.89 → 2.2.91

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.
@@ -0,0 +1,253 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.AirportEntryPermit = exports.AirportEntryPermitStatus = exports.AirportEntryPermitArea = exports.AirportEntryPermitLocation = exports.AirportEntryPermitType = exports.AirportEntryPermitCategory = void 0;
13
+ const typeorm_1 = require("typeorm");
14
+ const BaseModel_1 = require("./BaseModel");
15
+ var AirportEntryPermitCategory;
16
+ (function (AirportEntryPermitCategory) {
17
+ AirportEntryPermitCategory["ISSUING_NEW_PERMIT"] = "Issuing New Permit";
18
+ AirportEntryPermitCategory["RENEWAL_OF_PERMIT"] = "Renewal of Permit";
19
+ AirportEntryPermitCategory["AMENDING"] = "Amending";
20
+ AirportEntryPermitCategory["REPLACING_LOST"] = "Replacing lost";
21
+ AirportEntryPermitCategory["CANCELLING_AIRPORT_SECURITY_PERMITS"] = "Cancelling airport security permits";
22
+ })(AirportEntryPermitCategory || (exports.AirportEntryPermitCategory = AirportEntryPermitCategory = {}));
23
+ var AirportEntryPermitType;
24
+ (function (AirportEntryPermitType) {
25
+ AirportEntryPermitType["PERMANENT"] = "Permanent";
26
+ AirportEntryPermitType["TEMPORARY"] = "Temporary";
27
+ })(AirportEntryPermitType || (exports.AirportEntryPermitType = AirportEntryPermitType = {}));
28
+ var AirportEntryPermitLocation;
29
+ (function (AirportEntryPermitLocation) {
30
+ AirportEntryPermitLocation["MUSCAT"] = "Muscat";
31
+ AirportEntryPermitLocation["SALALAH"] = "Salalah";
32
+ AirportEntryPermitLocation["MARMUL"] = "Marmul";
33
+ AirportEntryPermitLocation["DURUM"] = "Durum";
34
+ AirportEntryPermitLocation["SOHAR"] = "Sohar";
35
+ AirportEntryPermitLocation["FUHUD"] = "Fuhud";
36
+ AirportEntryPermitLocation["MUKHAZINA"] = "Mukhazina";
37
+ })(AirportEntryPermitLocation || (exports.AirportEntryPermitLocation = AirportEntryPermitLocation = {}));
38
+ var AirportEntryPermitArea;
39
+ (function (AirportEntryPermitArea) {
40
+ AirportEntryPermitArea["PURPLE"] = "VIP building";
41
+ AirportEntryPermitArea["HEAVENLY"] = "Cargo Building with import and export sections";
42
+ AirportEntryPermitArea["ORANGE"] = "[ Arrivals Hall] and Arrivals building";
43
+ AirportEntryPermitArea["GREEN"] = "[departures Hall ] and departures building";
44
+ AirportEntryPermitArea["YELLOW"] = "Information centre and control tower building";
45
+ AirportEntryPermitArea["BLUE"] = "Vehicle, Aircraft building, Aircraft parking area, fire station and fuel filling stations, repair shop";
46
+ AirportEntryPermitArea["PINK"] = "Baggage sorting area";
47
+ AirportEntryPermitArea["GRAY"] = "Supply building";
48
+ AirportEntryPermitArea["ALL_CIVIL_AIRPORTS"] = "All Civil Airports";
49
+ })(AirportEntryPermitArea || (exports.AirportEntryPermitArea = AirportEntryPermitArea = {}));
50
+ var AirportEntryPermitStatus;
51
+ (function (AirportEntryPermitStatus) {
52
+ AirportEntryPermitStatus["PENDING"] = "Pending";
53
+ AirportEntryPermitStatus["APPROVED"] = "Approved";
54
+ AirportEntryPermitStatus["REJECTED"] = "Rejected";
55
+ AirportEntryPermitStatus["IN_PROGRESS"] = "In Progress";
56
+ })(AirportEntryPermitStatus || (exports.AirportEntryPermitStatus = AirportEntryPermitStatus = {}));
57
+ let AirportEntryPermit = class AirportEntryPermit extends BaseModel_1.BaseModel {
58
+ constructor(name_full_family_name, nationality, dob, place, passport_id_card_no, category_of_permit, date_of_submission, phone_number, location, type_of_permit, permission_to_required_areas, details, occupation_staff, requested_by, user_id, status = AirportEntryPermitStatus.PENDING, service_id, sub_service_id, service_type, workflow_execution_id, req_user_department_id, req_user_section_id, attachment_url, temporary_start_time, temporary_duration, visitor_visa_type, visitor_visa_no, visitor_visa_expiry_date, acknowledge_security_policies = false, acknowledge_disciplinary_action = false, consent_approve_to_issue_permit = false, consent_do_not_approve_to_issue_permit = false, consent_justification, request_id) {
59
+ super();
60
+ this.name_full_family_name = name_full_family_name;
61
+ this.nationality = nationality;
62
+ this.dob = dob;
63
+ this.place = place;
64
+ this.passport_id_card_no = passport_id_card_no;
65
+ this.category_of_permit = category_of_permit;
66
+ this.date_of_submission = date_of_submission;
67
+ this.phone_number = phone_number;
68
+ this.location = location;
69
+ this.type_of_permit = type_of_permit;
70
+ this.permission_to_required_areas = permission_to_required_areas;
71
+ this.details = details;
72
+ this.occupation_staff = occupation_staff;
73
+ this.requested_by = requested_by;
74
+ this.user_id = user_id;
75
+ this.status = status;
76
+ this.service_id = service_id ?? null;
77
+ this.sub_service_id = sub_service_id ?? null;
78
+ this.service_type = service_type ?? null;
79
+ this.workflow_execution_id = workflow_execution_id ?? null;
80
+ this.req_user_department_id = req_user_department_id ?? null;
81
+ this.req_user_section_id = req_user_section_id ?? null;
82
+ this.attachment_url = attachment_url ?? null;
83
+ this.temporary_start_time = temporary_start_time ?? null;
84
+ this.temporary_duration = temporary_duration ?? null;
85
+ this.visitor_visa_type = visitor_visa_type ?? null;
86
+ this.visitor_visa_no = visitor_visa_no ?? null;
87
+ this.visitor_visa_expiry_date = visitor_visa_expiry_date ?? null;
88
+ this.acknowledge_security_policies = acknowledge_security_policies;
89
+ this.acknowledge_disciplinary_action = acknowledge_disciplinary_action;
90
+ this.consent_approve_to_issue_permit = consent_approve_to_issue_permit;
91
+ this.consent_do_not_approve_to_issue_permit = consent_do_not_approve_to_issue_permit;
92
+ this.consent_justification = consent_justification ?? null;
93
+ this.request_id = request_id ?? null;
94
+ }
95
+ };
96
+ exports.AirportEntryPermit = AirportEntryPermit;
97
+ __decorate([
98
+ (0, typeorm_1.Column)({ type: 'int', nullable: true }),
99
+ __metadata("design:type", Object)
100
+ ], AirportEntryPermit.prototype, "req_user_department_id", void 0);
101
+ __decorate([
102
+ (0, typeorm_1.Column)({ type: 'int', nullable: true }),
103
+ __metadata("design:type", Object)
104
+ ], AirportEntryPermit.prototype, "req_user_section_id", void 0);
105
+ __decorate([
106
+ (0, typeorm_1.Column)({ type: 'int', nullable: true }),
107
+ __metadata("design:type", Object)
108
+ ], AirportEntryPermit.prototype, "service_id", void 0);
109
+ __decorate([
110
+ (0, typeorm_1.Column)({ type: 'int', nullable: true }),
111
+ __metadata("design:type", Object)
112
+ ], AirportEntryPermit.prototype, "sub_service_id", void 0);
113
+ __decorate([
114
+ (0, typeorm_1.Column)({ type: 'varchar', length: 20, nullable: true }),
115
+ __metadata("design:type", Object)
116
+ ], AirportEntryPermit.prototype, "service_type", void 0);
117
+ __decorate([
118
+ (0, typeorm_1.Column)({ type: 'varchar', nullable: true }),
119
+ __metadata("design:type", Object)
120
+ ], AirportEntryPermit.prototype, "workflow_execution_id", void 0);
121
+ __decorate([
122
+ (0, typeorm_1.Column)({
123
+ type: "enum",
124
+ enum: AirportEntryPermitStatus,
125
+ default: AirportEntryPermitStatus.PENDING,
126
+ nullable: false,
127
+ }),
128
+ __metadata("design:type", String)
129
+ ], AirportEntryPermit.prototype, "status", void 0);
130
+ __decorate([
131
+ (0, typeorm_1.Column)({ nullable: false }),
132
+ __metadata("design:type", Number)
133
+ ], AirportEntryPermit.prototype, "user_id", void 0);
134
+ __decorate([
135
+ (0, typeorm_1.Column)({ type: 'varchar', length: 50, nullable: true, unique: true }),
136
+ __metadata("design:type", Object)
137
+ ], AirportEntryPermit.prototype, "request_id", void 0);
138
+ __decorate([
139
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: false }),
140
+ __metadata("design:type", String)
141
+ ], AirportEntryPermit.prototype, "name_full_family_name", void 0);
142
+ __decorate([
143
+ (0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: false }),
144
+ __metadata("design:type", String)
145
+ ], AirportEntryPermit.prototype, "nationality", void 0);
146
+ __decorate([
147
+ (0, typeorm_1.Column)({ type: 'date', nullable: false }),
148
+ __metadata("design:type", Date)
149
+ ], AirportEntryPermit.prototype, "dob", void 0);
150
+ __decorate([
151
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: false }),
152
+ __metadata("design:type", String)
153
+ ], AirportEntryPermit.prototype, "place", void 0);
154
+ __decorate([
155
+ (0, typeorm_1.Column)({ type: 'varchar', length: 50, nullable: false }),
156
+ __metadata("design:type", String)
157
+ ], AirportEntryPermit.prototype, "passport_id_card_no", void 0);
158
+ __decorate([
159
+ (0, typeorm_1.Column)({
160
+ type: "enum",
161
+ enum: AirportEntryPermitCategory,
162
+ nullable: false,
163
+ }),
164
+ __metadata("design:type", String)
165
+ ], AirportEntryPermit.prototype, "category_of_permit", void 0);
166
+ __decorate([
167
+ (0, typeorm_1.Column)({ type: 'date', nullable: false }),
168
+ __metadata("design:type", Date)
169
+ ], AirportEntryPermit.prototype, "date_of_submission", void 0);
170
+ __decorate([
171
+ (0, typeorm_1.Column)({ type: 'varchar', length: 20, nullable: false }),
172
+ __metadata("design:type", String)
173
+ ], AirportEntryPermit.prototype, "phone_number", void 0);
174
+ __decorate([
175
+ (0, typeorm_1.Column)({
176
+ type: "enum",
177
+ enum: AirportEntryPermitLocation,
178
+ nullable: false,
179
+ }),
180
+ __metadata("design:type", String)
181
+ ], AirportEntryPermit.prototype, "location", void 0);
182
+ __decorate([
183
+ (0, typeorm_1.Column)({
184
+ type: "enum",
185
+ enum: AirportEntryPermitType,
186
+ nullable: false,
187
+ }),
188
+ __metadata("design:type", String)
189
+ ], AirportEntryPermit.prototype, "type_of_permit", void 0);
190
+ __decorate([
191
+ (0, typeorm_1.Column)({ type: 'time', nullable: true }),
192
+ __metadata("design:type", Object)
193
+ ], AirportEntryPermit.prototype, "temporary_start_time", void 0);
194
+ __decorate([
195
+ (0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
196
+ __metadata("design:type", Object)
197
+ ], AirportEntryPermit.prototype, "temporary_duration", void 0);
198
+ __decorate([
199
+ (0, typeorm_1.Column)({ type: 'text', array: true, nullable: false }),
200
+ __metadata("design:type", Array)
201
+ ], AirportEntryPermit.prototype, "permission_to_required_areas", void 0);
202
+ __decorate([
203
+ (0, typeorm_1.Column)({ type: 'text', nullable: true }),
204
+ __metadata("design:type", Object)
205
+ ], AirportEntryPermit.prototype, "attachment_url", void 0);
206
+ __decorate([
207
+ (0, typeorm_1.Column)({ type: 'text', nullable: false }),
208
+ __metadata("design:type", String)
209
+ ], AirportEntryPermit.prototype, "details", void 0);
210
+ __decorate([
211
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: false }),
212
+ __metadata("design:type", String)
213
+ ], AirportEntryPermit.prototype, "occupation_staff", void 0);
214
+ __decorate([
215
+ (0, typeorm_1.Column)({ type: 'varchar', length: 50, nullable: true }),
216
+ __metadata("design:type", Object)
217
+ ], AirportEntryPermit.prototype, "visitor_visa_type", void 0);
218
+ __decorate([
219
+ (0, typeorm_1.Column)({ type: 'varchar', length: 50, nullable: true }),
220
+ __metadata("design:type", Object)
221
+ ], AirportEntryPermit.prototype, "visitor_visa_no", void 0);
222
+ __decorate([
223
+ (0, typeorm_1.Column)({ type: 'date', nullable: true }),
224
+ __metadata("design:type", Object)
225
+ ], AirportEntryPermit.prototype, "visitor_visa_expiry_date", void 0);
226
+ __decorate([
227
+ (0, typeorm_1.Column)({ type: 'boolean', default: false }),
228
+ __metadata("design:type", Boolean)
229
+ ], AirportEntryPermit.prototype, "acknowledge_security_policies", void 0);
230
+ __decorate([
231
+ (0, typeorm_1.Column)({ type: 'boolean', default: false }),
232
+ __metadata("design:type", Boolean)
233
+ ], AirportEntryPermit.prototype, "acknowledge_disciplinary_action", void 0);
234
+ __decorate([
235
+ (0, typeorm_1.Column)({ type: 'boolean', default: false }),
236
+ __metadata("design:type", Boolean)
237
+ ], AirportEntryPermit.prototype, "consent_approve_to_issue_permit", void 0);
238
+ __decorate([
239
+ (0, typeorm_1.Column)({ type: 'boolean', default: false }),
240
+ __metadata("design:type", Boolean)
241
+ ], AirportEntryPermit.prototype, "consent_do_not_approve_to_issue_permit", void 0);
242
+ __decorate([
243
+ (0, typeorm_1.Column)({ type: 'text', nullable: true }),
244
+ __metadata("design:type", Object)
245
+ ], AirportEntryPermit.prototype, "consent_justification", void 0);
246
+ __decorate([
247
+ (0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: false }),
248
+ __metadata("design:type", String)
249
+ ], AirportEntryPermit.prototype, "requested_by", void 0);
250
+ exports.AirportEntryPermit = AirportEntryPermit = __decorate([
251
+ (0, typeorm_1.Entity)({ name: 'airport_entry_permits' }),
252
+ __metadata("design:paramtypes", [String, String, Date, String, String, String, Date, String, String, String, Array, String, String, String, Number, String, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Boolean, Boolean, Boolean, Boolean, Object, Object])
253
+ ], AirportEntryPermit);
@@ -0,0 +1,14 @@
1
+ import { BaseModel } from './BaseModel';
2
+ export declare enum AirportEntryPermitWorkFlowStatus {
3
+ COMPLETED = "Completed",
4
+ NOT_YET_STARTED = "Not Yet Started",
5
+ PENDING = "Pending"
6
+ }
7
+ export declare class AirportEntryPermitWorkFlow extends BaseModel {
8
+ request_id: number;
9
+ service_id: number | null;
10
+ sub_service_id: number | null;
11
+ content: string;
12
+ status: AirportEntryPermitWorkFlowStatus;
13
+ constructor(request_id: number, content: string, status: AirportEntryPermitWorkFlowStatus, service_id?: number, sub_service_id?: number);
14
+ }
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.AirportEntryPermitWorkFlow = exports.AirportEntryPermitWorkFlowStatus = void 0;
13
+ const typeorm_1 = require("typeorm");
14
+ const BaseModel_1 = require("./BaseModel");
15
+ var AirportEntryPermitWorkFlowStatus;
16
+ (function (AirportEntryPermitWorkFlowStatus) {
17
+ AirportEntryPermitWorkFlowStatus["COMPLETED"] = "Completed";
18
+ AirportEntryPermitWorkFlowStatus["NOT_YET_STARTED"] = "Not Yet Started";
19
+ AirportEntryPermitWorkFlowStatus["PENDING"] = "Pending";
20
+ })(AirportEntryPermitWorkFlowStatus || (exports.AirportEntryPermitWorkFlowStatus = AirportEntryPermitWorkFlowStatus = {}));
21
+ let AirportEntryPermitWorkFlow = class AirportEntryPermitWorkFlow extends BaseModel_1.BaseModel {
22
+ constructor(request_id, content, status, service_id, sub_service_id) {
23
+ super();
24
+ this.request_id = request_id;
25
+ this.service_id = service_id || null;
26
+ this.sub_service_id = sub_service_id || null;
27
+ this.content = content;
28
+ this.status = status;
29
+ }
30
+ };
31
+ exports.AirportEntryPermitWorkFlow = AirportEntryPermitWorkFlow;
32
+ __decorate([
33
+ (0, typeorm_1.Column)({ type: 'integer', nullable: false }),
34
+ __metadata("design:type", Number)
35
+ ], AirportEntryPermitWorkFlow.prototype, "request_id", void 0);
36
+ __decorate([
37
+ (0, typeorm_1.Column)({ type: 'integer', nullable: true }),
38
+ __metadata("design:type", Object)
39
+ ], AirportEntryPermitWorkFlow.prototype, "service_id", void 0);
40
+ __decorate([
41
+ (0, typeorm_1.Column)({ type: 'integer', nullable: true }),
42
+ __metadata("design:type", Object)
43
+ ], AirportEntryPermitWorkFlow.prototype, "sub_service_id", void 0);
44
+ __decorate([
45
+ (0, typeorm_1.Column)({ type: 'varchar', length: 500, nullable: false }),
46
+ __metadata("design:type", String)
47
+ ], AirportEntryPermitWorkFlow.prototype, "content", void 0);
48
+ __decorate([
49
+ (0, typeorm_1.Column)({ type: 'enum', enum: AirportEntryPermitWorkFlowStatus, default: AirportEntryPermitWorkFlowStatus.NOT_YET_STARTED, nullable: false }),
50
+ __metadata("design:type", String)
51
+ ], AirportEntryPermitWorkFlow.prototype, "status", void 0);
52
+ exports.AirportEntryPermitWorkFlow = AirportEntryPermitWorkFlow = __decorate([
53
+ (0, typeorm_1.Entity)({ name: 'airport_entry_permit_workflows' }),
54
+ __metadata("design:paramtypes", [Number, String, String, Number, Number])
55
+ ], AirportEntryPermitWorkFlow);
@@ -0,0 +1,30 @@
1
+ import { BaseModel } from './BaseModel';
2
+ export declare enum MealType {
3
+ BREAKFAST = "Breakfast",
4
+ LUNCH = "Lunch",
5
+ DINNER = "Dinner"
6
+ }
7
+ export declare enum ServiceTypes {
8
+ LAUNDRY = "Laundry",
9
+ TELEPHONE = "Telephone Service"
10
+ }
11
+ export declare class HotelReservation extends BaseModel {
12
+ type_of_accommodation: string;
13
+ price: number;
14
+ meal: MealType;
15
+ service: ServiceTypes;
16
+ date_of_request: Date;
17
+ hotel_name: string;
18
+ check_in_date: Date;
19
+ check_in_time: string;
20
+ check_out_date: Date;
21
+ check_out_time: string;
22
+ number_of_guests: number;
23
+ description: string;
24
+ attachment_url: string;
25
+ requested_by: string;
26
+ visitor_name: string;
27
+ hr_approval: boolean;
28
+ pr_approval: boolean;
29
+ constructor(type_of_accommodation: string, price: number, meal: MealType, service: ServiceTypes, date_of_request: Date, hotel_name: string, check_in_date: Date, check_in_time: string, check_out_date: Date, check_out_time: string, number_of_guests: number, description: string, requested_by: string, visitor_name: string, hr_approval: boolean, pr_approval: boolean);
30
+ }
@@ -0,0 +1,119 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.HotelReservation = exports.ServiceTypes = exports.MealType = void 0;
13
+ const typeorm_1 = require("typeorm");
14
+ const BaseModel_1 = require("./BaseModel");
15
+ var MealType;
16
+ (function (MealType) {
17
+ MealType["BREAKFAST"] = "Breakfast";
18
+ MealType["LUNCH"] = "Lunch";
19
+ MealType["DINNER"] = "Dinner";
20
+ })(MealType || (exports.MealType = MealType = {}));
21
+ var ServiceTypes;
22
+ (function (ServiceTypes) {
23
+ ServiceTypes["LAUNDRY"] = "Laundry";
24
+ ServiceTypes["TELEPHONE"] = "Telephone Service";
25
+ })(ServiceTypes || (exports.ServiceTypes = ServiceTypes = {}));
26
+ let HotelReservation = class HotelReservation extends BaseModel_1.BaseModel {
27
+ constructor(type_of_accommodation, price, meal, service, date_of_request, hotel_name, check_in_date, check_in_time, check_out_date, check_out_time, number_of_guests, description, requested_by, visitor_name, hr_approval, pr_approval) {
28
+ super();
29
+ this.type_of_accommodation = type_of_accommodation;
30
+ this.price = price;
31
+ this.meal = meal;
32
+ this.service = service;
33
+ this.date_of_request = date_of_request;
34
+ this.hotel_name = hotel_name;
35
+ this.check_in_date = check_in_date;
36
+ this.check_in_time = check_in_time;
37
+ this.check_out_date = check_out_date;
38
+ this.check_out_time = check_out_time;
39
+ this.number_of_guests = number_of_guests;
40
+ this.description = description;
41
+ this.requested_by = requested_by;
42
+ this.visitor_name = visitor_name;
43
+ this.hr_approval = hr_approval;
44
+ this.pr_approval = pr_approval;
45
+ }
46
+ };
47
+ exports.HotelReservation = HotelReservation;
48
+ __decorate([
49
+ (0, typeorm_1.Column)({ type: 'varchar', length: 50 }),
50
+ __metadata("design:type", String)
51
+ ], HotelReservation.prototype, "type_of_accommodation", void 0);
52
+ __decorate([
53
+ (0, typeorm_1.Column)({ type: 'decimal', precision: 10, scale: 2, nullable: false }),
54
+ __metadata("design:type", Number)
55
+ ], HotelReservation.prototype, "price", void 0);
56
+ __decorate([
57
+ (0, typeorm_1.Column)({ type: 'enum', enum: MealType, nullable: false, }),
58
+ __metadata("design:type", String)
59
+ ], HotelReservation.prototype, "meal", void 0);
60
+ __decorate([
61
+ (0, typeorm_1.Column)({ type: 'enum', enum: ServiceTypes, nullable: false, }),
62
+ __metadata("design:type", String)
63
+ ], HotelReservation.prototype, "service", void 0);
64
+ __decorate([
65
+ (0, typeorm_1.Column)({ type: 'timestamptz', nullable: false }),
66
+ __metadata("design:type", Date)
67
+ ], HotelReservation.prototype, "date_of_request", void 0);
68
+ __decorate([
69
+ (0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: false }),
70
+ __metadata("design:type", String)
71
+ ], HotelReservation.prototype, "hotel_name", void 0);
72
+ __decorate([
73
+ (0, typeorm_1.Column)({ type: 'date', nullable: false }),
74
+ __metadata("design:type", Date)
75
+ ], HotelReservation.prototype, "check_in_date", void 0);
76
+ __decorate([
77
+ (0, typeorm_1.Column)({ type: 'time', nullable: false }),
78
+ __metadata("design:type", String)
79
+ ], HotelReservation.prototype, "check_in_time", void 0);
80
+ __decorate([
81
+ (0, typeorm_1.Column)({ type: 'date', nullable: false }),
82
+ __metadata("design:type", Date)
83
+ ], HotelReservation.prototype, "check_out_date", void 0);
84
+ __decorate([
85
+ (0, typeorm_1.Column)({ type: 'time', nullable: false }),
86
+ __metadata("design:type", String)
87
+ ], HotelReservation.prototype, "check_out_time", void 0);
88
+ __decorate([
89
+ (0, typeorm_1.Column)({ type: 'int', nullable: false }),
90
+ __metadata("design:type", Number)
91
+ ], HotelReservation.prototype, "number_of_guests", void 0);
92
+ __decorate([
93
+ (0, typeorm_1.Column)({ type: 'text', nullable: true }),
94
+ __metadata("design:type", String)
95
+ ], HotelReservation.prototype, "description", void 0);
96
+ __decorate([
97
+ (0, typeorm_1.Column)({ type: 'text', nullable: false }),
98
+ __metadata("design:type", String)
99
+ ], HotelReservation.prototype, "attachment_url", void 0);
100
+ __decorate([
101
+ (0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: false }),
102
+ __metadata("design:type", String)
103
+ ], HotelReservation.prototype, "requested_by", void 0);
104
+ __decorate([
105
+ (0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: false }),
106
+ __metadata("design:type", String)
107
+ ], HotelReservation.prototype, "visitor_name", void 0);
108
+ __decorate([
109
+ (0, typeorm_1.Column)({ type: 'boolean', default: false }),
110
+ __metadata("design:type", Boolean)
111
+ ], HotelReservation.prototype, "hr_approval", void 0);
112
+ __decorate([
113
+ (0, typeorm_1.Column)({ type: 'boolean', default: false }),
114
+ __metadata("design:type", Boolean)
115
+ ], HotelReservation.prototype, "pr_approval", void 0);
116
+ exports.HotelReservation = HotelReservation = __decorate([
117
+ (0, typeorm_1.Entity)({ name: 'hotel_reservations' }),
118
+ __metadata("design:paramtypes", [String, Number, String, String, Date, String, Date, String, Date, String, Number, String, String, String, Boolean, Boolean])
119
+ ], HotelReservation);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/civil-aviation-authority",
3
- "version": "2.2.89",
3
+ "version": "2.2.91",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -67,6 +67,11 @@ import { SecurityAwarenessApproval } from './models/SecurityAwarenessApprovalMod
67
67
  import { SecurityAwarenessAttachment } from './models/SecurityAwarenessAttachmentModel';
68
68
  import { SecurityAwarenessChat } from './models/SecurityAwarenessChatModel';
69
69
  import { SecurityAwarenessWorkFlow } from './models/SecurityAwarenessWorkflowModel';
70
+ import { AirportEntryPermit } from './models/AirportEntryPermitModel';
71
+ import { AirportEntryPermitApproval } from './models/AirportEntryPermitApprovalModel';
72
+ import { AirportEntryPermitWorkFlow } from './models/AirportEntryPermitWorkflowModel';
73
+ import { AirportEntryPermitChat } from './models/AirportEntryPermitChatModel';
74
+ import { AirportEntryPermitAttachment } from './models/AirportEntryPermitAttachmentModel';
70
75
 
71
76
  export const AppDataSource = new DataSource({
72
77
  type: 'postgres',
@@ -140,6 +145,11 @@ export const AppDataSource = new DataSource({
140
145
  SecurityAwarenessApproval,
141
146
  SecurityAwarenessAttachment,
142
147
  SecurityAwarenessChat,
143
- SecurityAwarenessWorkFlow
148
+ SecurityAwarenessWorkFlow,
149
+ AirportEntryPermit,
150
+ AirportEntryPermitApproval,
151
+ AirportEntryPermitWorkFlow,
152
+ AirportEntryPermitChat,
153
+ AirportEntryPermitAttachment
144
154
  ],
145
155
  });
package/src/index.ts CHANGED
@@ -62,3 +62,8 @@ export * from './models/SecurityAwarenessApprovalModel';
62
62
  export * from './models/SecurityAwarenessAttachmentModel';
63
63
  export * from './models/SecurityAwarenessChatModel';
64
64
  export * from './models/SecurityAwarenessWorkflowModel';
65
+ export * from './models/AirportEntryPermitModel';
66
+ export * from './models/AirportEntryPermitApprovalModel';
67
+ export * from './models/AirportEntryPermitWorkflowModel';
68
+ export * from './models/AirportEntryPermitChatModel';
69
+ export * from './models/AirportEntryPermitAttachmentModel';
@@ -0,0 +1,79 @@
1
+ import { Column, Entity } from "typeorm";
2
+ import { BaseModel } from './BaseModel';
3
+
4
+ export enum AirportEntryPermitApprovalStatus {
5
+ PENDING = "Pending",
6
+ IN_PROGRESS = "In Progress",
7
+ APPROVED = "Approved",
8
+ REJECTED = "Rejected",
9
+ RFC = "Request For Change"
10
+ }
11
+
12
+ @Entity({ name: 'airport_entry_permit_approvals' })
13
+ export class AirportEntryPermitApproval extends BaseModel {
14
+ @Column({ type: 'integer', nullable: false })
15
+ request_id: number;
16
+
17
+ @Column({ type: 'integer', nullable: true })
18
+ service_id: number | null;
19
+
20
+ @Column({ type: 'integer', nullable: true })
21
+ sub_service_id: number | null;
22
+
23
+ @Column({ type: 'integer', nullable: false })
24
+ level: number;
25
+
26
+ @Column({ type: 'integer', nullable: false })
27
+ approver_role_id: number;
28
+
29
+ @Column({ type: 'integer', nullable: true })
30
+ department_id: number | null;
31
+
32
+ @Column({ type: 'integer', nullable: true })
33
+ section_id: number | null;
34
+
35
+ @Column({ type: 'integer', nullable: true })
36
+ approver_user_id: number | null;
37
+
38
+ @Column({ type: 'integer', nullable: true })
39
+ delegate_user_id: number | null;
40
+
41
+ @Column({ type: 'integer', nullable: true })
42
+ approved_by: number | null;
43
+
44
+ @Column({ type: 'varchar', length: 500, nullable: true, default: '' })
45
+ comment: string;
46
+
47
+ @Column({ type: 'enum', enum: AirportEntryPermitApprovalStatus, default: AirportEntryPermitApprovalStatus.PENDING, nullable: false })
48
+ approval_status: AirportEntryPermitApprovalStatus;
49
+
50
+ constructor(
51
+ request_id: number,
52
+ approver_role_id: number,
53
+ comment: string,
54
+ approval_status: AirportEntryPermitApprovalStatus,
55
+ level: number,
56
+ department_id?: number | null,
57
+ section_id?: number | null,
58
+ approver_user_id?: number | null,
59
+ delegate_user_id?: number | null,
60
+ approved_by?: number | null,
61
+ service_id?: number,
62
+ sub_service_id?: number
63
+ ) {
64
+ super();
65
+ this.request_id = request_id;
66
+ this.service_id = service_id || null;
67
+ this.sub_service_id = sub_service_id || null;
68
+ this.approver_role_id = approver_role_id;
69
+ this.comment = comment;
70
+ this.approval_status = approval_status;
71
+ this.level = level;
72
+ this.department_id = department_id || null;
73
+ this.section_id = section_id || null;
74
+ this.approver_user_id = approver_user_id || null;
75
+ this.delegate_user_id = delegate_user_id || null;
76
+ this.approved_by = approved_by || null;
77
+ }
78
+ }
79
+
@@ -0,0 +1,62 @@
1
+ import { Column, Entity, ManyToOne, JoinColumn } from "typeorm";
2
+ import { BaseModel } from './BaseModel';
3
+
4
+ @Entity({ name: 'airport_entry_permit_attachments' })
5
+ export class AirportEntryPermitAttachment extends BaseModel {
6
+
7
+ @Column({ type: 'integer', nullable: false })
8
+ request_id: number;
9
+
10
+ @Column({ type: 'integer', nullable: true })
11
+ service_id: number | null;
12
+
13
+ @Column({ type: 'integer', nullable: true })
14
+ sub_service_id: number | null;
15
+
16
+ @Column({ type: 'varchar', length: 500, nullable: false })
17
+ file_url: string;
18
+
19
+ @Column({ type: 'varchar', length: 255, nullable: true })
20
+ file_name: string;
21
+
22
+ @Column({ type: 'varchar', length: 100, nullable: true })
23
+ file_type: string;
24
+
25
+ @Column({ type: 'bigint', nullable: true })
26
+ file_size: number | null;
27
+
28
+ @Column({ type: 'integer', nullable: true })
29
+ chat_id: number | null;
30
+
31
+ @Column({ type: "integer", nullable: false })
32
+ uploaded_by: number;
33
+
34
+ @Column({ type: "text", nullable: true })
35
+ description: string;
36
+
37
+ constructor(
38
+ request_id: number,
39
+ uploaded_by: number,
40
+ file_url: string,
41
+ file_name?: string,
42
+ file_type?: string,
43
+ file_size?: number,
44
+ service_id?: number,
45
+ sub_service_id?: number,
46
+ chat_id?: number,
47
+ description?: string
48
+ ) {
49
+ super();
50
+ this.request_id = request_id;
51
+ this.service_id = service_id || null;
52
+ this.sub_service_id = sub_service_id || null;
53
+ this.file_url = file_url;
54
+ this.file_name = file_name || '';
55
+ this.file_type = file_type || '';
56
+ this.file_size = file_size || null;
57
+ this.chat_id = chat_id || null;
58
+ this.uploaded_by = uploaded_by;
59
+ this.description = description || '';
60
+ }
61
+ }
62
+