@platform-modules/civil-aviation-authority 2.2.95 → 2.2.101
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.
- package/.env +4 -10
- package/dist/data-source.js +10 -4
- package/dist/index.d.ts +5 -2
- package/dist/index.js +5 -2
- package/dist/models/AccessCardApprovalModel.js +1 -1
- package/dist/models/AirportEntryPermitApprovalModel.d.ts +23 -0
- package/dist/models/AirportEntryPermitApprovalModel.js +92 -0
- package/dist/models/AirportEntryPermitAttachmentModel.d.ts +14 -0
- package/dist/models/AirportEntryPermitAttachmentModel.js +74 -0
- package/dist/models/AirportEntryPermitChatModel.d.ts +17 -0
- package/dist/models/AirportEntryPermitChatModel.js +67 -0
- package/dist/models/AirportEntryPermitModel.d.ts +78 -0
- package/dist/models/AirportEntryPermitModel.js +249 -0
- package/dist/models/AirportEntryPermitWorkflowModel.d.ts +14 -0
- package/dist/models/AirportEntryPermitWorkflowModel.js +55 -0
- package/dist/models/HotelreservationModal.d.ts +30 -0
- package/dist/models/HotelreservationModal.js +119 -0
- package/dist/models/SecurityAwarenessRequestModel.d.ts +2 -3
- package/dist/models/SecurityAwarenessRequestModel.js +5 -10
- package/package.json +1 -1
- package/src/data-source.ts +10 -4
- package/src/index.ts +5 -2
- package/src/models/AccessCardApprovalModel.ts +1 -1
- package/src/models/AirportEntryPermitApprovalModel.ts +79 -0
- package/src/models/AirportEntryPermitAttachmentModel.ts +62 -0
- package/src/models/AirportEntryPermitChatModel.ts +55 -0
- package/src/models/AirportEntryPermitModel.ts +242 -0
- package/src/models/AirportEntryPermitWorkflowModel.ts +42 -0
- package/src/models/SecurityAwarenessRequestModel.ts +4 -9
- package/dist/models/GroupModel.d.ts +0 -16
- package/dist/models/GroupModel.js +0 -44
- package/dist/models/GroupNamesModel.d.ts +0 -6
- package/dist/models/GroupNamesModel.js +0 -34
- package/src/models/GroupModel.ts +0 -31
- package/src/models/GroupNamesModel.ts +0 -22
|
@@ -0,0 +1,249 @@
|
|
|
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.VisitorOption = 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
|
+
var VisitorOption;
|
|
58
|
+
(function (VisitorOption) {
|
|
59
|
+
VisitorOption["VISA_TYPE"] = "Visa Type";
|
|
60
|
+
VisitorOption["VISA_NO"] = "Visa No";
|
|
61
|
+
VisitorOption["DATE_EXPIRY_VISA"] = "Date Expiry Visa";
|
|
62
|
+
})(VisitorOption || (exports.VisitorOption = VisitorOption = {}));
|
|
63
|
+
let AirportEntryPermit = class AirportEntryPermit extends BaseModel_1.BaseModel {
|
|
64
|
+
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, for_visitor, 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) {
|
|
65
|
+
super();
|
|
66
|
+
this.name_full_family_name = name_full_family_name;
|
|
67
|
+
this.nationality = nationality;
|
|
68
|
+
this.dob = dob;
|
|
69
|
+
this.place = place;
|
|
70
|
+
this.passport_id_card_no = passport_id_card_no;
|
|
71
|
+
this.category_of_permit = category_of_permit;
|
|
72
|
+
this.date_of_submission = date_of_submission;
|
|
73
|
+
this.phone_number = phone_number;
|
|
74
|
+
this.location = location;
|
|
75
|
+
this.type_of_permit = type_of_permit;
|
|
76
|
+
this.permission_to_required_areas = permission_to_required_areas;
|
|
77
|
+
this.details = details;
|
|
78
|
+
this.occupation_staff = occupation_staff;
|
|
79
|
+
this.requested_by = requested_by;
|
|
80
|
+
this.user_id = user_id;
|
|
81
|
+
this.status = status;
|
|
82
|
+
this.service_id = service_id ?? null;
|
|
83
|
+
this.sub_service_id = sub_service_id ?? null;
|
|
84
|
+
this.service_type = service_type ?? null;
|
|
85
|
+
this.workflow_execution_id = workflow_execution_id ?? null;
|
|
86
|
+
this.req_user_department_id = req_user_department_id ?? null;
|
|
87
|
+
this.req_user_section_id = req_user_section_id ?? null;
|
|
88
|
+
this.attachment_url = attachment_url ?? null;
|
|
89
|
+
this.temporary_start_time = temporary_start_time ?? null;
|
|
90
|
+
this.temporary_duration = temporary_duration ?? null;
|
|
91
|
+
this.for_visitor = for_visitor ?? null;
|
|
92
|
+
this.acknowledge_security_policies = acknowledge_security_policies;
|
|
93
|
+
this.acknowledge_disciplinary_action = acknowledge_disciplinary_action;
|
|
94
|
+
this.consent_approve_to_issue_permit = consent_approve_to_issue_permit;
|
|
95
|
+
this.consent_do_not_approve_to_issue_permit = consent_do_not_approve_to_issue_permit;
|
|
96
|
+
this.consent_justification = consent_justification ?? null;
|
|
97
|
+
this.request_id = request_id ?? null;
|
|
98
|
+
}
|
|
99
|
+
};
|
|
100
|
+
exports.AirportEntryPermit = AirportEntryPermit;
|
|
101
|
+
__decorate([
|
|
102
|
+
(0, typeorm_1.Column)({ type: 'int', nullable: true }),
|
|
103
|
+
__metadata("design:type", Object)
|
|
104
|
+
], AirportEntryPermit.prototype, "req_user_department_id", void 0);
|
|
105
|
+
__decorate([
|
|
106
|
+
(0, typeorm_1.Column)({ type: 'int', nullable: true }),
|
|
107
|
+
__metadata("design:type", Object)
|
|
108
|
+
], AirportEntryPermit.prototype, "req_user_section_id", void 0);
|
|
109
|
+
__decorate([
|
|
110
|
+
(0, typeorm_1.Column)({ type: 'int', nullable: true }),
|
|
111
|
+
__metadata("design:type", Object)
|
|
112
|
+
], AirportEntryPermit.prototype, "service_id", void 0);
|
|
113
|
+
__decorate([
|
|
114
|
+
(0, typeorm_1.Column)({ type: 'int', nullable: true }),
|
|
115
|
+
__metadata("design:type", Object)
|
|
116
|
+
], AirportEntryPermit.prototype, "sub_service_id", void 0);
|
|
117
|
+
__decorate([
|
|
118
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 20, nullable: true }),
|
|
119
|
+
__metadata("design:type", Object)
|
|
120
|
+
], AirportEntryPermit.prototype, "service_type", void 0);
|
|
121
|
+
__decorate([
|
|
122
|
+
(0, typeorm_1.Column)({ type: 'varchar', nullable: true }),
|
|
123
|
+
__metadata("design:type", Object)
|
|
124
|
+
], AirportEntryPermit.prototype, "workflow_execution_id", void 0);
|
|
125
|
+
__decorate([
|
|
126
|
+
(0, typeorm_1.Column)({
|
|
127
|
+
type: "enum",
|
|
128
|
+
enum: AirportEntryPermitStatus,
|
|
129
|
+
default: AirportEntryPermitStatus.PENDING,
|
|
130
|
+
nullable: false,
|
|
131
|
+
}),
|
|
132
|
+
__metadata("design:type", String)
|
|
133
|
+
], AirportEntryPermit.prototype, "status", void 0);
|
|
134
|
+
__decorate([
|
|
135
|
+
(0, typeorm_1.Column)({ nullable: false }),
|
|
136
|
+
__metadata("design:type", Number)
|
|
137
|
+
], AirportEntryPermit.prototype, "user_id", void 0);
|
|
138
|
+
__decorate([
|
|
139
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 50, nullable: true, unique: true }),
|
|
140
|
+
__metadata("design:type", Object)
|
|
141
|
+
], AirportEntryPermit.prototype, "request_id", void 0);
|
|
142
|
+
__decorate([
|
|
143
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: false }),
|
|
144
|
+
__metadata("design:type", String)
|
|
145
|
+
], AirportEntryPermit.prototype, "name_full_family_name", void 0);
|
|
146
|
+
__decorate([
|
|
147
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: false }),
|
|
148
|
+
__metadata("design:type", String)
|
|
149
|
+
], AirportEntryPermit.prototype, "nationality", void 0);
|
|
150
|
+
__decorate([
|
|
151
|
+
(0, typeorm_1.Column)({ type: 'date', nullable: false }),
|
|
152
|
+
__metadata("design:type", Date)
|
|
153
|
+
], AirportEntryPermit.prototype, "dob", void 0);
|
|
154
|
+
__decorate([
|
|
155
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: false }),
|
|
156
|
+
__metadata("design:type", String)
|
|
157
|
+
], AirportEntryPermit.prototype, "place", void 0);
|
|
158
|
+
__decorate([
|
|
159
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 50, nullable: false }),
|
|
160
|
+
__metadata("design:type", String)
|
|
161
|
+
], AirportEntryPermit.prototype, "passport_id_card_no", void 0);
|
|
162
|
+
__decorate([
|
|
163
|
+
(0, typeorm_1.Column)({
|
|
164
|
+
type: "enum",
|
|
165
|
+
enum: AirportEntryPermitCategory,
|
|
166
|
+
nullable: false,
|
|
167
|
+
}),
|
|
168
|
+
__metadata("design:type", String)
|
|
169
|
+
], AirportEntryPermit.prototype, "category_of_permit", void 0);
|
|
170
|
+
__decorate([
|
|
171
|
+
(0, typeorm_1.Column)({ type: 'date', nullable: false }),
|
|
172
|
+
__metadata("design:type", Date)
|
|
173
|
+
], AirportEntryPermit.prototype, "date_of_submission", void 0);
|
|
174
|
+
__decorate([
|
|
175
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 20, nullable: false }),
|
|
176
|
+
__metadata("design:type", String)
|
|
177
|
+
], AirportEntryPermit.prototype, "phone_number", void 0);
|
|
178
|
+
__decorate([
|
|
179
|
+
(0, typeorm_1.Column)({
|
|
180
|
+
type: "enum",
|
|
181
|
+
enum: AirportEntryPermitLocation,
|
|
182
|
+
nullable: false,
|
|
183
|
+
}),
|
|
184
|
+
__metadata("design:type", String)
|
|
185
|
+
], AirportEntryPermit.prototype, "location", void 0);
|
|
186
|
+
__decorate([
|
|
187
|
+
(0, typeorm_1.Column)({
|
|
188
|
+
type: "enum",
|
|
189
|
+
enum: AirportEntryPermitType,
|
|
190
|
+
nullable: false,
|
|
191
|
+
}),
|
|
192
|
+
__metadata("design:type", String)
|
|
193
|
+
], AirportEntryPermit.prototype, "type_of_permit", void 0);
|
|
194
|
+
__decorate([
|
|
195
|
+
(0, typeorm_1.Column)({ type: 'time', nullable: true }),
|
|
196
|
+
__metadata("design:type", Object)
|
|
197
|
+
], AirportEntryPermit.prototype, "temporary_start_time", void 0);
|
|
198
|
+
__decorate([
|
|
199
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
|
|
200
|
+
__metadata("design:type", Object)
|
|
201
|
+
], AirportEntryPermit.prototype, "temporary_duration", void 0);
|
|
202
|
+
__decorate([
|
|
203
|
+
(0, typeorm_1.Column)({ type: 'text', array: true, nullable: false }),
|
|
204
|
+
__metadata("design:type", Array)
|
|
205
|
+
], AirportEntryPermit.prototype, "permission_to_required_areas", void 0);
|
|
206
|
+
__decorate([
|
|
207
|
+
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
208
|
+
__metadata("design:type", Object)
|
|
209
|
+
], AirportEntryPermit.prototype, "attachment_url", void 0);
|
|
210
|
+
__decorate([
|
|
211
|
+
(0, typeorm_1.Column)({ type: 'text', nullable: false }),
|
|
212
|
+
__metadata("design:type", String)
|
|
213
|
+
], AirportEntryPermit.prototype, "details", void 0);
|
|
214
|
+
__decorate([
|
|
215
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: false }),
|
|
216
|
+
__metadata("design:type", String)
|
|
217
|
+
], AirportEntryPermit.prototype, "occupation_staff", void 0);
|
|
218
|
+
__decorate([
|
|
219
|
+
(0, typeorm_1.Column)({ type: 'text', array: true, nullable: true }),
|
|
220
|
+
__metadata("design:type", Object)
|
|
221
|
+
], AirportEntryPermit.prototype, "for_visitor", void 0);
|
|
222
|
+
__decorate([
|
|
223
|
+
(0, typeorm_1.Column)({ type: 'boolean', default: false }),
|
|
224
|
+
__metadata("design:type", Boolean)
|
|
225
|
+
], AirportEntryPermit.prototype, "acknowledge_security_policies", void 0);
|
|
226
|
+
__decorate([
|
|
227
|
+
(0, typeorm_1.Column)({ type: 'boolean', default: false }),
|
|
228
|
+
__metadata("design:type", Boolean)
|
|
229
|
+
], AirportEntryPermit.prototype, "acknowledge_disciplinary_action", void 0);
|
|
230
|
+
__decorate([
|
|
231
|
+
(0, typeorm_1.Column)({ type: 'boolean', default: false }),
|
|
232
|
+
__metadata("design:type", Boolean)
|
|
233
|
+
], AirportEntryPermit.prototype, "consent_approve_to_issue_permit", void 0);
|
|
234
|
+
__decorate([
|
|
235
|
+
(0, typeorm_1.Column)({ type: 'boolean', default: false }),
|
|
236
|
+
__metadata("design:type", Boolean)
|
|
237
|
+
], AirportEntryPermit.prototype, "consent_do_not_approve_to_issue_permit", void 0);
|
|
238
|
+
__decorate([
|
|
239
|
+
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
240
|
+
__metadata("design:type", Object)
|
|
241
|
+
], AirportEntryPermit.prototype, "consent_justification", void 0);
|
|
242
|
+
__decorate([
|
|
243
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: false }),
|
|
244
|
+
__metadata("design:type", String)
|
|
245
|
+
], AirportEntryPermit.prototype, "requested_by", void 0);
|
|
246
|
+
exports.AirportEntryPermit = AirportEntryPermit = __decorate([
|
|
247
|
+
(0, typeorm_1.Entity)({ name: 'airport_entry_permits' }),
|
|
248
|
+
__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, Boolean, Boolean, Boolean, Boolean, Object, Object])
|
|
249
|
+
], 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);
|
|
@@ -21,10 +21,9 @@ export declare class SecurityAwarenessRequest extends BaseModel {
|
|
|
21
21
|
phone_number: string;
|
|
22
22
|
place: string | null;
|
|
23
23
|
description: string | null;
|
|
24
|
-
|
|
25
|
-
event_time: string | null;
|
|
24
|
+
event_date_time: Date | null;
|
|
26
25
|
media_coverage_required: MediaCoverageRequired;
|
|
27
26
|
status: SecurityAwarenessRequestStatus;
|
|
28
27
|
workflow_execution_id: string | null;
|
|
29
|
-
constructor(req_user_department_id: number | null, req_user_section_id: number | null, service_id: number, sub_service_id: number, user_id: number, title: string, date_of_submission: Date, phone_number: string, place: string | null, description: string | null,
|
|
28
|
+
constructor(req_user_department_id: number | null, req_user_section_id: number | null, service_id: number, sub_service_id: number, user_id: number, title: string, date_of_submission: Date, phone_number: string, place: string | null, description: string | null, event_date_time: Date | null, media_coverage_required: MediaCoverageRequired, status: SecurityAwarenessRequestStatus, workflow_execution_id?: string | null);
|
|
30
29
|
}
|
|
@@ -26,7 +26,7 @@ var MediaCoverageRequired;
|
|
|
26
26
|
MediaCoverageRequired["NO"] = "No";
|
|
27
27
|
})(MediaCoverageRequired || (exports.MediaCoverageRequired = MediaCoverageRequired = {}));
|
|
28
28
|
let SecurityAwarenessRequest = class SecurityAwarenessRequest extends BaseModel_1.BaseModel {
|
|
29
|
-
constructor(req_user_department_id, req_user_section_id, service_id, sub_service_id, user_id, title, date_of_submission, phone_number, place, description,
|
|
29
|
+
constructor(req_user_department_id, req_user_section_id, service_id, sub_service_id, user_id, title, date_of_submission, phone_number, place, description, event_date_time, media_coverage_required, status, workflow_execution_id) {
|
|
30
30
|
super();
|
|
31
31
|
this.req_user_department_id = req_user_department_id ?? null;
|
|
32
32
|
this.req_user_section_id = req_user_section_id ?? null;
|
|
@@ -38,8 +38,7 @@ let SecurityAwarenessRequest = class SecurityAwarenessRequest extends BaseModel_
|
|
|
38
38
|
this.phone_number = phone_number;
|
|
39
39
|
this.place = place ?? null;
|
|
40
40
|
this.description = description ?? null;
|
|
41
|
-
this.
|
|
42
|
-
this.event_time = event_time ?? null;
|
|
41
|
+
this.event_date_time = event_date_time ?? null;
|
|
43
42
|
this.media_coverage_required = media_coverage_required;
|
|
44
43
|
this.status = status;
|
|
45
44
|
this.workflow_execution_id = workflow_execution_id ?? null;
|
|
@@ -87,13 +86,9 @@ __decorate([
|
|
|
87
86
|
__metadata("design:type", Object)
|
|
88
87
|
], SecurityAwarenessRequest.prototype, "description", void 0);
|
|
89
88
|
__decorate([
|
|
90
|
-
(0, typeorm_1.Column)({ type: "
|
|
89
|
+
(0, typeorm_1.Column)({ type: "timestamp", nullable: true }),
|
|
91
90
|
__metadata("design:type", Object)
|
|
92
|
-
], SecurityAwarenessRequest.prototype, "
|
|
93
|
-
__decorate([
|
|
94
|
-
(0, typeorm_1.Column)({ type: "time", nullable: true }),
|
|
95
|
-
__metadata("design:type", Object)
|
|
96
|
-
], SecurityAwarenessRequest.prototype, "event_time", void 0);
|
|
91
|
+
], SecurityAwarenessRequest.prototype, "event_date_time", void 0);
|
|
97
92
|
__decorate([
|
|
98
93
|
(0, typeorm_1.Column)({
|
|
99
94
|
type: "enum",
|
|
@@ -118,5 +113,5 @@ __decorate([
|
|
|
118
113
|
], SecurityAwarenessRequest.prototype, "workflow_execution_id", void 0);
|
|
119
114
|
exports.SecurityAwarenessRequest = SecurityAwarenessRequest = __decorate([
|
|
120
115
|
(0, typeorm_1.Entity)({ name: 'security_awareness_requests' }),
|
|
121
|
-
__metadata("design:paramtypes", [Object, Object, Number, Number, Number, String, Date, String, Object, Object, Object,
|
|
116
|
+
__metadata("design:paramtypes", [Object, Object, Number, Number, Number, String, Date, String, Object, Object, Object, String, String, Object])
|
|
122
117
|
], SecurityAwarenessRequest);
|
package/package.json
CHANGED
package/src/data-source.ts
CHANGED
|
@@ -67,8 +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 {
|
|
71
|
-
import {
|
|
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';
|
|
72
75
|
|
|
73
76
|
export const AppDataSource = new DataSource({
|
|
74
77
|
type: 'postgres',
|
|
@@ -143,7 +146,10 @@ export const AppDataSource = new DataSource({
|
|
|
143
146
|
SecurityAwarenessAttachment,
|
|
144
147
|
SecurityAwarenessChat,
|
|
145
148
|
SecurityAwarenessWorkFlow,
|
|
146
|
-
|
|
147
|
-
|
|
149
|
+
AirportEntryPermit,
|
|
150
|
+
AirportEntryPermitApproval,
|
|
151
|
+
AirportEntryPermitWorkFlow,
|
|
152
|
+
AirportEntryPermitChat,
|
|
153
|
+
AirportEntryPermitAttachment
|
|
148
154
|
],
|
|
149
155
|
});
|
package/src/index.ts
CHANGED
|
@@ -62,5 +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/
|
|
66
|
-
export * from './models/
|
|
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';
|
|
@@ -22,7 +22,7 @@ export class AccessCardApproval extends BaseModel {
|
|
|
22
22
|
@Column({ type: "integer", nullable: false })
|
|
23
23
|
level: number;
|
|
24
24
|
|
|
25
|
-
@Column({ type: "integer", nullable:
|
|
25
|
+
@Column({ type: "integer", nullable: false })
|
|
26
26
|
approver_role_id: number;
|
|
27
27
|
|
|
28
28
|
@Column({ type: "integer", nullable: true })
|