@platform-modules/civil-aviation-authority 2.2.84 → 2.2.86
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 -10
- package/dist/index.d.ts +5 -5
- package/dist/index.js +5 -5
- package/dist/models/AccessCardChatModel.d.ts +1 -4
- package/dist/models/AccessCardChatModel.js +5 -16
- package/dist/models/{SecurityAwarenessApprovalModel.d.ts → AirportEntryPermitApprovalModel.d.ts} +4 -4
- package/dist/models/{SecurityAwarenessApprovalModel.js → AirportEntryPermitApprovalModel.js} +26 -26
- package/dist/models/AirportEntryPermitAttachmentModel.d.ts +14 -0
- package/dist/models/{SecurityAwarenessAttachmentModel.js → AirportEntryPermitAttachmentModel.js} +26 -16
- package/dist/models/AirportEntryPermitChatModel.d.ts +17 -0
- package/dist/models/AirportEntryPermitChatModel.js +67 -0
- package/dist/models/AirportEntryPermitModel.d.ts +75 -0
- package/dist/models/AirportEntryPermitModel.js +253 -0
- package/dist/models/AirportEntryPermitWorkflowModel.d.ts +14 -0
- package/dist/models/{SecurityAwarenessWorkflowModel.js → AirportEntryPermitWorkflowModel.js} +18 -19
- package/dist/models/HotelreservationModal.d.ts +30 -0
- package/dist/models/HotelreservationModal.js +119 -0
- package/dist/models/SecurityThreatApprovalModel.js +1 -1
- package/dist/models/SecurityThreatChatModel.d.ts +1 -4
- package/dist/models/SecurityThreatChatModel.js +2 -13
- package/dist/models/VpnRequestChatModel.d.ts +1 -2
- package/dist/models/VpnRequestChatModel.js +2 -7
- package/dist/models/VpnWorkflowModel.d.ts +1 -4
- package/dist/models/VpnWorkflowModel.js +2 -17
- package/package.json +1 -1
- package/src/data-source.ts +10 -10
- package/src/index.ts +5 -5
- package/src/models/AccessCardChatModel.ts +4 -15
- package/src/models/{SecurityAwarenessApprovalModel.ts → AirportEntryPermitApprovalModel.ts} +9 -10
- package/src/models/AirportEntryPermitAttachmentModel.ts +62 -0
- package/src/models/AirportEntryPermitChatModel.ts +55 -0
- package/src/models/AirportEntryPermitModel.ts +246 -0
- package/src/models/{SecurityAwarenessWorkflowModel.ts → AirportEntryPermitWorkflowModel.ts} +11 -12
- package/src/models/SecurityThreatApprovalModel.ts +1 -1
- package/src/models/SecurityThreatChatModel.ts +1 -12
- package/src/models/VpnRequestChatModel.ts +1 -6
- package/src/models/VpnWorkflowModel.ts +1 -16
- package/dist/models/SecurityAwarenessAttachmentModel.d.ts +0 -12
- package/dist/models/SecurityAwarenessChatModel.d.ts +0 -20
- package/dist/models/SecurityAwarenessChatModel.js +0 -78
- package/dist/models/SecurityAwarenessRequestModel.d.ts +0 -29
- package/dist/models/SecurityAwarenessRequestModel.js +0 -117
- package/dist/models/SecurityAwarenessWorkflowModel.d.ts +0 -14
- package/src/models/SecurityAwarenessAttachmentModel.ts +0 -52
- package/src/models/SecurityAwarenessChatModel.ts +0 -66
- package/src/models/SecurityAwarenessRequestModel.ts +0 -105
|
@@ -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
|
+
}
|
package/dist/models/{SecurityAwarenessWorkflowModel.js → AirportEntryPermitWorkflowModel.js}
RENAMED
|
@@ -9,17 +9,16 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.
|
|
12
|
+
exports.AirportEntryPermitWorkFlow = exports.AirportEntryPermitWorkFlowStatus = void 0;
|
|
13
13
|
const typeorm_1 = require("typeorm");
|
|
14
14
|
const BaseModel_1 = require("./BaseModel");
|
|
15
|
-
var
|
|
16
|
-
(function (
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
})(
|
|
21
|
-
|
|
22
|
-
let SecurityAwarenessWorkFlow = class SecurityAwarenessWorkFlow extends BaseModel_1.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 {
|
|
23
22
|
constructor(request_id, content, status, service_id, sub_service_id) {
|
|
24
23
|
super();
|
|
25
24
|
this.request_id = request_id;
|
|
@@ -29,28 +28,28 @@ let SecurityAwarenessWorkFlow = class SecurityAwarenessWorkFlow extends BaseMode
|
|
|
29
28
|
this.status = status;
|
|
30
29
|
}
|
|
31
30
|
};
|
|
32
|
-
exports.
|
|
31
|
+
exports.AirportEntryPermitWorkFlow = AirportEntryPermitWorkFlow;
|
|
33
32
|
__decorate([
|
|
34
33
|
(0, typeorm_1.Column)({ type: 'integer', nullable: false }),
|
|
35
34
|
__metadata("design:type", Number)
|
|
36
|
-
],
|
|
35
|
+
], AirportEntryPermitWorkFlow.prototype, "request_id", void 0);
|
|
37
36
|
__decorate([
|
|
38
37
|
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
39
38
|
__metadata("design:type", Object)
|
|
40
|
-
],
|
|
39
|
+
], AirportEntryPermitWorkFlow.prototype, "service_id", void 0);
|
|
41
40
|
__decorate([
|
|
42
41
|
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
43
42
|
__metadata("design:type", Object)
|
|
44
|
-
],
|
|
43
|
+
], AirportEntryPermitWorkFlow.prototype, "sub_service_id", void 0);
|
|
45
44
|
__decorate([
|
|
46
45
|
(0, typeorm_1.Column)({ type: 'varchar', length: 500, nullable: false }),
|
|
47
46
|
__metadata("design:type", String)
|
|
48
|
-
],
|
|
47
|
+
], AirportEntryPermitWorkFlow.prototype, "content", void 0);
|
|
49
48
|
__decorate([
|
|
50
|
-
(0, typeorm_1.Column)({ type: 'enum', enum:
|
|
49
|
+
(0, typeorm_1.Column)({ type: 'enum', enum: AirportEntryPermitWorkFlowStatus, default: AirportEntryPermitWorkFlowStatus.NOT_YET_STARTED, nullable: false }),
|
|
51
50
|
__metadata("design:type", String)
|
|
52
|
-
],
|
|
53
|
-
exports.
|
|
54
|
-
(0, typeorm_1.Entity)({ name: '
|
|
51
|
+
], AirportEntryPermitWorkFlow.prototype, "status", void 0);
|
|
52
|
+
exports.AirportEntryPermitWorkFlow = AirportEntryPermitWorkFlow = __decorate([
|
|
53
|
+
(0, typeorm_1.Entity)({ name: 'airport_entry_permit_workflows' }),
|
|
55
54
|
__metadata("design:paramtypes", [Number, String, String, Number, Number])
|
|
56
|
-
],
|
|
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);
|
|
@@ -56,7 +56,7 @@ __decorate([
|
|
|
56
56
|
__metadata("design:type", Number)
|
|
57
57
|
], SecurityThreatApproval.prototype, "level", void 0);
|
|
58
58
|
__decorate([
|
|
59
|
-
(0, typeorm_1.Column)({ type: 'integer', nullable:
|
|
59
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: false }),
|
|
60
60
|
__metadata("design:type", Number)
|
|
61
61
|
], SecurityThreatApproval.prototype, "approver_role_id", void 0);
|
|
62
62
|
__decorate([
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { BaseModel } from './BaseModel';
|
|
2
|
-
import { SecurityThreatApprovalStatus } from './SecurityThreatApprovalModel';
|
|
3
2
|
export declare enum SecurityThreatMessageType {
|
|
4
3
|
TEXT = "text",
|
|
5
4
|
IMAGE = "image",
|
|
@@ -12,9 +11,7 @@ export declare class SecurityThreatChat extends BaseModel {
|
|
|
12
11
|
service_id: number | null;
|
|
13
12
|
sub_service_id: number | null;
|
|
14
13
|
user_id: number;
|
|
15
|
-
role_id: number;
|
|
16
14
|
message: string;
|
|
17
15
|
messageType: SecurityThreatMessageType;
|
|
18
|
-
|
|
19
|
-
constructor(request_id: number, user_id: number, role_id: number, message: string, service_id?: number, sub_service_id?: number, messageType?: SecurityThreatMessageType, status?: SecurityThreatApprovalStatus);
|
|
16
|
+
constructor(request_id: number, user_id: number, message: string, service_id?: number, sub_service_id?: number, messageType?: SecurityThreatMessageType);
|
|
20
17
|
}
|
|
@@ -12,7 +12,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
12
12
|
exports.SecurityThreatChat = exports.SecurityThreatMessageType = void 0;
|
|
13
13
|
const typeorm_1 = require("typeorm");
|
|
14
14
|
const BaseModel_1 = require("./BaseModel");
|
|
15
|
-
const SecurityThreatApprovalModel_1 = require("./SecurityThreatApprovalModel");
|
|
16
15
|
var SecurityThreatMessageType;
|
|
17
16
|
(function (SecurityThreatMessageType) {
|
|
18
17
|
SecurityThreatMessageType["TEXT"] = "text";
|
|
@@ -22,16 +21,14 @@ var SecurityThreatMessageType;
|
|
|
22
21
|
SecurityThreatMessageType["LINK"] = "link";
|
|
23
22
|
})(SecurityThreatMessageType || (exports.SecurityThreatMessageType = SecurityThreatMessageType = {}));
|
|
24
23
|
let SecurityThreatChat = class SecurityThreatChat extends BaseModel_1.BaseModel {
|
|
25
|
-
constructor(request_id, user_id,
|
|
24
|
+
constructor(request_id, user_id, message, service_id, sub_service_id, messageType) {
|
|
26
25
|
super();
|
|
27
26
|
this.request_id = request_id;
|
|
28
27
|
this.service_id = service_id || null;
|
|
29
28
|
this.sub_service_id = sub_service_id || null;
|
|
30
29
|
this.user_id = user_id;
|
|
31
|
-
this.role_id = role_id;
|
|
32
30
|
this.message = message;
|
|
33
31
|
this.messageType = messageType || SecurityThreatMessageType.TEXT;
|
|
34
|
-
this.status = status || SecurityThreatApprovalModel_1.SecurityThreatApprovalStatus.PENDING;
|
|
35
32
|
}
|
|
36
33
|
};
|
|
37
34
|
exports.SecurityThreatChat = SecurityThreatChat;
|
|
@@ -51,10 +48,6 @@ __decorate([
|
|
|
51
48
|
(0, typeorm_1.Column)({ type: 'integer', nullable: false }),
|
|
52
49
|
__metadata("design:type", Number)
|
|
53
50
|
], SecurityThreatChat.prototype, "user_id", void 0);
|
|
54
|
-
__decorate([
|
|
55
|
-
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
56
|
-
__metadata("design:type", Number)
|
|
57
|
-
], SecurityThreatChat.prototype, "role_id", void 0);
|
|
58
51
|
__decorate([
|
|
59
52
|
(0, typeorm_1.Column)({ type: 'text', nullable: false }),
|
|
60
53
|
__metadata("design:type", String)
|
|
@@ -68,11 +61,7 @@ __decorate([
|
|
|
68
61
|
}),
|
|
69
62
|
__metadata("design:type", String)
|
|
70
63
|
], SecurityThreatChat.prototype, "messageType", void 0);
|
|
71
|
-
__decorate([
|
|
72
|
-
(0, typeorm_1.Column)({ type: 'enum', enum: SecurityThreatApprovalModel_1.SecurityThreatApprovalStatus, default: SecurityThreatApprovalModel_1.SecurityThreatApprovalStatus.PENDING, nullable: false }),
|
|
73
|
-
__metadata("design:type", String)
|
|
74
|
-
], SecurityThreatChat.prototype, "status", void 0);
|
|
75
64
|
exports.SecurityThreatChat = SecurityThreatChat = __decorate([
|
|
76
65
|
(0, typeorm_1.Entity)({ name: 'security_threat_chats' }),
|
|
77
|
-
__metadata("design:paramtypes", [Number, Number,
|
|
66
|
+
__metadata("design:paramtypes", [Number, Number, String, Number, Number, String])
|
|
78
67
|
], SecurityThreatChat);
|
|
@@ -18,9 +18,8 @@ export declare class VpnRequestChat extends BaseModel {
|
|
|
18
18
|
request_id: number;
|
|
19
19
|
user_id: number;
|
|
20
20
|
message: string;
|
|
21
|
-
approver_role_id: number | null;
|
|
22
21
|
messageType: VpnMessageType;
|
|
23
22
|
is_internal: boolean;
|
|
24
23
|
status: VpnChatStatus;
|
|
25
|
-
constructor(request_id: number, user_id: number, message: string, messageType?: VpnMessageType, is_internal?: boolean, status?: VpnChatStatus
|
|
24
|
+
constructor(request_id: number, user_id: number, message: string, messageType?: VpnMessageType, is_internal?: boolean, status?: VpnChatStatus);
|
|
26
25
|
}
|
|
@@ -30,7 +30,7 @@ var VpnChatStatus;
|
|
|
30
30
|
VpnChatStatus["APPROVED"] = "Approved";
|
|
31
31
|
})(VpnChatStatus || (exports.VpnChatStatus = VpnChatStatus = {}));
|
|
32
32
|
let VpnRequestChat = class VpnRequestChat extends BaseModel_1.BaseModel {
|
|
33
|
-
constructor(request_id, user_id, message, messageType, is_internal, status
|
|
33
|
+
constructor(request_id, user_id, message, messageType, is_internal, status) {
|
|
34
34
|
super();
|
|
35
35
|
this.request_id = request_id;
|
|
36
36
|
this.user_id = user_id;
|
|
@@ -38,7 +38,6 @@ let VpnRequestChat = class VpnRequestChat extends BaseModel_1.BaseModel {
|
|
|
38
38
|
this.messageType = messageType || VpnMessageType.TEXT;
|
|
39
39
|
this.is_internal = is_internal || false;
|
|
40
40
|
this.status = status || VpnChatStatus.PENDING;
|
|
41
|
-
this.approver_role_id = approver_role_id || null;
|
|
42
41
|
}
|
|
43
42
|
};
|
|
44
43
|
exports.VpnRequestChat = VpnRequestChat;
|
|
@@ -54,10 +53,6 @@ __decorate([
|
|
|
54
53
|
(0, typeorm_1.Column)({ type: "text", nullable: false }),
|
|
55
54
|
__metadata("design:type", String)
|
|
56
55
|
], VpnRequestChat.prototype, "message", void 0);
|
|
57
|
-
__decorate([
|
|
58
|
-
(0, typeorm_1.Column)({ type: "integer", nullable: true }),
|
|
59
|
-
__metadata("design:type", Object)
|
|
60
|
-
], VpnRequestChat.prototype, "approver_role_id", void 0);
|
|
61
56
|
__decorate([
|
|
62
57
|
(0, typeorm_1.Column)({
|
|
63
58
|
type: "enum",
|
|
@@ -82,5 +77,5 @@ __decorate([
|
|
|
82
77
|
], VpnRequestChat.prototype, "status", void 0);
|
|
83
78
|
exports.VpnRequestChat = VpnRequestChat = __decorate([
|
|
84
79
|
(0, typeorm_1.Entity)({ name: "vpn_request_chat" }),
|
|
85
|
-
__metadata("design:paramtypes", [Number, Number, String, String, Boolean, String
|
|
80
|
+
__metadata("design:paramtypes", [Number, Number, String, String, Boolean, String])
|
|
86
81
|
], VpnRequestChat);
|
|
@@ -8,9 +8,6 @@ export declare class VpnWorkFlow extends BaseModel {
|
|
|
8
8
|
request_id: number;
|
|
9
9
|
order: number | null;
|
|
10
10
|
content: string;
|
|
11
|
-
approver_role_id: number | null;
|
|
12
|
-
approver_user_id: number | null;
|
|
13
|
-
approved_by: number | null;
|
|
14
11
|
status: VpnWorkFlowStatus;
|
|
15
|
-
constructor(request_id: number, content: string, status: VpnWorkFlowStatus, order?: number
|
|
12
|
+
constructor(request_id: number, content: string, status: VpnWorkFlowStatus, order?: number);
|
|
16
13
|
}
|