@platform-modules/civil-aviation-authority 2.2.89 → 2.2.90
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/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 +75 -0
- package/dist/models/AirportEntryPermitModel.js +253 -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/package.json +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 +246 -0
- package/src/models/AirportEntryPermitWorkflowModel.ts +42 -0
package/.env
CHANGED
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
# DB_NAME=CAA
|
|
6
|
-
|
|
7
|
-
DB_HOST=164.52.222.169
|
|
8
|
-
DB_PORT=5432
|
|
9
|
-
DB_USER=postgres_admin_user
|
|
10
|
-
DB_PASS=pg_admin_user_pwd_caa_fa_$%^&OIukhjgcvbn
|
|
1
|
+
DB_HOST=localhost
|
|
2
|
+
DB_PORT=5433
|
|
3
|
+
DB_USER=postgres
|
|
4
|
+
DB_PASS=123
|
|
11
5
|
DB_NAME=CAA
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { BaseModel } from './BaseModel';
|
|
2
|
+
export declare enum AirportEntryPermitApprovalStatus {
|
|
3
|
+
PENDING = "Pending",
|
|
4
|
+
IN_PROGRESS = "In Progress",
|
|
5
|
+
APPROVED = "Approved",
|
|
6
|
+
REJECTED = "Rejected",
|
|
7
|
+
RFC = "Request For Change"
|
|
8
|
+
}
|
|
9
|
+
export declare class AirportEntryPermitApproval extends BaseModel {
|
|
10
|
+
request_id: number;
|
|
11
|
+
service_id: number | null;
|
|
12
|
+
sub_service_id: number | null;
|
|
13
|
+
level: number;
|
|
14
|
+
approver_role_id: number;
|
|
15
|
+
department_id: number | null;
|
|
16
|
+
section_id: number | null;
|
|
17
|
+
approver_user_id: number | null;
|
|
18
|
+
delegate_user_id: number | null;
|
|
19
|
+
approved_by: number | null;
|
|
20
|
+
comment: string;
|
|
21
|
+
approval_status: AirportEntryPermitApprovalStatus;
|
|
22
|
+
constructor(request_id: number, approver_role_id: number, comment: string, approval_status: AirportEntryPermitApprovalStatus, level: number, department_id?: number | null, section_id?: number | null, approver_user_id?: number | null, delegate_user_id?: number | null, approved_by?: number | null, service_id?: number, sub_service_id?: number);
|
|
23
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
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.AirportEntryPermitApproval = exports.AirportEntryPermitApprovalStatus = void 0;
|
|
13
|
+
const typeorm_1 = require("typeorm");
|
|
14
|
+
const BaseModel_1 = require("./BaseModel");
|
|
15
|
+
var AirportEntryPermitApprovalStatus;
|
|
16
|
+
(function (AirportEntryPermitApprovalStatus) {
|
|
17
|
+
AirportEntryPermitApprovalStatus["PENDING"] = "Pending";
|
|
18
|
+
AirportEntryPermitApprovalStatus["IN_PROGRESS"] = "In Progress";
|
|
19
|
+
AirportEntryPermitApprovalStatus["APPROVED"] = "Approved";
|
|
20
|
+
AirportEntryPermitApprovalStatus["REJECTED"] = "Rejected";
|
|
21
|
+
AirportEntryPermitApprovalStatus["RFC"] = "Request For Change";
|
|
22
|
+
})(AirportEntryPermitApprovalStatus || (exports.AirportEntryPermitApprovalStatus = AirportEntryPermitApprovalStatus = {}));
|
|
23
|
+
let AirportEntryPermitApproval = class AirportEntryPermitApproval extends BaseModel_1.BaseModel {
|
|
24
|
+
constructor(request_id, approver_role_id, comment, approval_status, level, department_id, section_id, approver_user_id, delegate_user_id, approved_by, service_id, sub_service_id) {
|
|
25
|
+
super();
|
|
26
|
+
this.request_id = request_id;
|
|
27
|
+
this.service_id = service_id || null;
|
|
28
|
+
this.sub_service_id = sub_service_id || null;
|
|
29
|
+
this.approver_role_id = approver_role_id;
|
|
30
|
+
this.comment = comment;
|
|
31
|
+
this.approval_status = approval_status;
|
|
32
|
+
this.level = level;
|
|
33
|
+
this.department_id = department_id || null;
|
|
34
|
+
this.section_id = section_id || null;
|
|
35
|
+
this.approver_user_id = approver_user_id || null;
|
|
36
|
+
this.delegate_user_id = delegate_user_id || null;
|
|
37
|
+
this.approved_by = approved_by || null;
|
|
38
|
+
}
|
|
39
|
+
};
|
|
40
|
+
exports.AirportEntryPermitApproval = AirportEntryPermitApproval;
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: false }),
|
|
43
|
+
__metadata("design:type", Number)
|
|
44
|
+
], AirportEntryPermitApproval.prototype, "request_id", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
47
|
+
__metadata("design:type", Object)
|
|
48
|
+
], AirportEntryPermitApproval.prototype, "service_id", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
51
|
+
__metadata("design:type", Object)
|
|
52
|
+
], AirportEntryPermitApproval.prototype, "sub_service_id", void 0);
|
|
53
|
+
__decorate([
|
|
54
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: false }),
|
|
55
|
+
__metadata("design:type", Number)
|
|
56
|
+
], AirportEntryPermitApproval.prototype, "level", void 0);
|
|
57
|
+
__decorate([
|
|
58
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: false }),
|
|
59
|
+
__metadata("design:type", Number)
|
|
60
|
+
], AirportEntryPermitApproval.prototype, "approver_role_id", void 0);
|
|
61
|
+
__decorate([
|
|
62
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
63
|
+
__metadata("design:type", Object)
|
|
64
|
+
], AirportEntryPermitApproval.prototype, "department_id", void 0);
|
|
65
|
+
__decorate([
|
|
66
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
67
|
+
__metadata("design:type", Object)
|
|
68
|
+
], AirportEntryPermitApproval.prototype, "section_id", void 0);
|
|
69
|
+
__decorate([
|
|
70
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
71
|
+
__metadata("design:type", Object)
|
|
72
|
+
], AirportEntryPermitApproval.prototype, "approver_user_id", void 0);
|
|
73
|
+
__decorate([
|
|
74
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
75
|
+
__metadata("design:type", Object)
|
|
76
|
+
], AirportEntryPermitApproval.prototype, "delegate_user_id", void 0);
|
|
77
|
+
__decorate([
|
|
78
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
79
|
+
__metadata("design:type", Object)
|
|
80
|
+
], AirportEntryPermitApproval.prototype, "approved_by", void 0);
|
|
81
|
+
__decorate([
|
|
82
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 500, nullable: true, default: '' }),
|
|
83
|
+
__metadata("design:type", String)
|
|
84
|
+
], AirportEntryPermitApproval.prototype, "comment", void 0);
|
|
85
|
+
__decorate([
|
|
86
|
+
(0, typeorm_1.Column)({ type: 'enum', enum: AirportEntryPermitApprovalStatus, default: AirportEntryPermitApprovalStatus.PENDING, nullable: false }),
|
|
87
|
+
__metadata("design:type", String)
|
|
88
|
+
], AirportEntryPermitApproval.prototype, "approval_status", void 0);
|
|
89
|
+
exports.AirportEntryPermitApproval = AirportEntryPermitApproval = __decorate([
|
|
90
|
+
(0, typeorm_1.Entity)({ name: 'airport_entry_permit_approvals' }),
|
|
91
|
+
__metadata("design:paramtypes", [Number, Number, String, String, Number, Object, Object, Object, Object, Object, Number, Number])
|
|
92
|
+
], AirportEntryPermitApproval);
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { BaseModel } from './BaseModel';
|
|
2
|
+
export declare class AirportEntryPermitAttachment extends BaseModel {
|
|
3
|
+
request_id: number;
|
|
4
|
+
service_id: number | null;
|
|
5
|
+
sub_service_id: number | null;
|
|
6
|
+
file_url: string;
|
|
7
|
+
file_name: string;
|
|
8
|
+
file_type: string;
|
|
9
|
+
file_size: number | null;
|
|
10
|
+
chat_id: number | null;
|
|
11
|
+
uploaded_by: number;
|
|
12
|
+
description: string;
|
|
13
|
+
constructor(request_id: number, uploaded_by: number, file_url: string, file_name?: string, file_type?: string, file_size?: number, service_id?: number, sub_service_id?: number, chat_id?: number, description?: string);
|
|
14
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
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.AirportEntryPermitAttachment = void 0;
|
|
13
|
+
const typeorm_1 = require("typeorm");
|
|
14
|
+
const BaseModel_1 = require("./BaseModel");
|
|
15
|
+
let AirportEntryPermitAttachment = class AirportEntryPermitAttachment extends BaseModel_1.BaseModel {
|
|
16
|
+
constructor(request_id, uploaded_by, file_url, file_name, file_type, file_size, service_id, sub_service_id, chat_id, description) {
|
|
17
|
+
super();
|
|
18
|
+
this.request_id = request_id;
|
|
19
|
+
this.service_id = service_id || null;
|
|
20
|
+
this.sub_service_id = sub_service_id || null;
|
|
21
|
+
this.file_url = file_url;
|
|
22
|
+
this.file_name = file_name || '';
|
|
23
|
+
this.file_type = file_type || '';
|
|
24
|
+
this.file_size = file_size || null;
|
|
25
|
+
this.chat_id = chat_id || null;
|
|
26
|
+
this.uploaded_by = uploaded_by;
|
|
27
|
+
this.description = description || '';
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
exports.AirportEntryPermitAttachment = AirportEntryPermitAttachment;
|
|
31
|
+
__decorate([
|
|
32
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: false }),
|
|
33
|
+
__metadata("design:type", Number)
|
|
34
|
+
], AirportEntryPermitAttachment.prototype, "request_id", void 0);
|
|
35
|
+
__decorate([
|
|
36
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
37
|
+
__metadata("design:type", Object)
|
|
38
|
+
], AirportEntryPermitAttachment.prototype, "service_id", void 0);
|
|
39
|
+
__decorate([
|
|
40
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
41
|
+
__metadata("design:type", Object)
|
|
42
|
+
], AirportEntryPermitAttachment.prototype, "sub_service_id", void 0);
|
|
43
|
+
__decorate([
|
|
44
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 500, nullable: false }),
|
|
45
|
+
__metadata("design:type", String)
|
|
46
|
+
], AirportEntryPermitAttachment.prototype, "file_url", void 0);
|
|
47
|
+
__decorate([
|
|
48
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
49
|
+
__metadata("design:type", String)
|
|
50
|
+
], AirportEntryPermitAttachment.prototype, "file_name", void 0);
|
|
51
|
+
__decorate([
|
|
52
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
|
|
53
|
+
__metadata("design:type", String)
|
|
54
|
+
], AirportEntryPermitAttachment.prototype, "file_type", void 0);
|
|
55
|
+
__decorate([
|
|
56
|
+
(0, typeorm_1.Column)({ type: 'bigint', nullable: true }),
|
|
57
|
+
__metadata("design:type", Object)
|
|
58
|
+
], AirportEntryPermitAttachment.prototype, "file_size", void 0);
|
|
59
|
+
__decorate([
|
|
60
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
61
|
+
__metadata("design:type", Object)
|
|
62
|
+
], AirportEntryPermitAttachment.prototype, "chat_id", void 0);
|
|
63
|
+
__decorate([
|
|
64
|
+
(0, typeorm_1.Column)({ type: "integer", nullable: false }),
|
|
65
|
+
__metadata("design:type", Number)
|
|
66
|
+
], AirportEntryPermitAttachment.prototype, "uploaded_by", void 0);
|
|
67
|
+
__decorate([
|
|
68
|
+
(0, typeorm_1.Column)({ type: "text", nullable: true }),
|
|
69
|
+
__metadata("design:type", String)
|
|
70
|
+
], AirportEntryPermitAttachment.prototype, "description", void 0);
|
|
71
|
+
exports.AirportEntryPermitAttachment = AirportEntryPermitAttachment = __decorate([
|
|
72
|
+
(0, typeorm_1.Entity)({ name: 'airport_entry_permit_attachments' }),
|
|
73
|
+
__metadata("design:paramtypes", [Number, Number, String, String, String, Number, Number, Number, Number, String])
|
|
74
|
+
], AirportEntryPermitAttachment);
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { BaseModel } from './BaseModel';
|
|
2
|
+
export declare enum AirportEntryPermitMessageTypes {
|
|
3
|
+
TEXT = "text",
|
|
4
|
+
IMAGE = "image",
|
|
5
|
+
VIDEO = "video",
|
|
6
|
+
FILE = "file",
|
|
7
|
+
LINK = "link"
|
|
8
|
+
}
|
|
9
|
+
export declare class AirportEntryPermitChat extends BaseModel {
|
|
10
|
+
request_id: number;
|
|
11
|
+
service_id: number | null;
|
|
12
|
+
sub_service_id: number | null;
|
|
13
|
+
user_id: number;
|
|
14
|
+
message: string;
|
|
15
|
+
messageType: AirportEntryPermitMessageTypes;
|
|
16
|
+
constructor(request_id: number, user_id: number, message: string, service_id?: number, sub_service_id?: number, messageType?: AirportEntryPermitMessageTypes);
|
|
17
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
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.AirportEntryPermitChat = exports.AirportEntryPermitMessageTypes = void 0;
|
|
13
|
+
const typeorm_1 = require("typeorm");
|
|
14
|
+
const BaseModel_1 = require("./BaseModel");
|
|
15
|
+
var AirportEntryPermitMessageTypes;
|
|
16
|
+
(function (AirportEntryPermitMessageTypes) {
|
|
17
|
+
AirportEntryPermitMessageTypes["TEXT"] = "text";
|
|
18
|
+
AirportEntryPermitMessageTypes["IMAGE"] = "image";
|
|
19
|
+
AirportEntryPermitMessageTypes["VIDEO"] = "video";
|
|
20
|
+
AirportEntryPermitMessageTypes["FILE"] = "file";
|
|
21
|
+
AirportEntryPermitMessageTypes["LINK"] = "link";
|
|
22
|
+
})(AirportEntryPermitMessageTypes || (exports.AirportEntryPermitMessageTypes = AirportEntryPermitMessageTypes = {}));
|
|
23
|
+
let AirportEntryPermitChat = class AirportEntryPermitChat extends BaseModel_1.BaseModel {
|
|
24
|
+
constructor(request_id, user_id, message, service_id, sub_service_id, messageType) {
|
|
25
|
+
super();
|
|
26
|
+
this.request_id = request_id;
|
|
27
|
+
this.service_id = service_id || null;
|
|
28
|
+
this.sub_service_id = sub_service_id || null;
|
|
29
|
+
this.user_id = user_id;
|
|
30
|
+
this.message = message;
|
|
31
|
+
this.messageType = messageType || AirportEntryPermitMessageTypes.TEXT;
|
|
32
|
+
}
|
|
33
|
+
};
|
|
34
|
+
exports.AirportEntryPermitChat = AirportEntryPermitChat;
|
|
35
|
+
__decorate([
|
|
36
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: false }),
|
|
37
|
+
__metadata("design:type", Number)
|
|
38
|
+
], AirportEntryPermitChat.prototype, "request_id", void 0);
|
|
39
|
+
__decorate([
|
|
40
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
41
|
+
__metadata("design:type", Object)
|
|
42
|
+
], AirportEntryPermitChat.prototype, "service_id", void 0);
|
|
43
|
+
__decorate([
|
|
44
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
45
|
+
__metadata("design:type", Object)
|
|
46
|
+
], AirportEntryPermitChat.prototype, "sub_service_id", void 0);
|
|
47
|
+
__decorate([
|
|
48
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: false }),
|
|
49
|
+
__metadata("design:type", Number)
|
|
50
|
+
], AirportEntryPermitChat.prototype, "user_id", void 0);
|
|
51
|
+
__decorate([
|
|
52
|
+
(0, typeorm_1.Column)({ type: 'text', nullable: false }),
|
|
53
|
+
__metadata("design:type", String)
|
|
54
|
+
], AirportEntryPermitChat.prototype, "message", void 0);
|
|
55
|
+
__decorate([
|
|
56
|
+
(0, typeorm_1.Column)({
|
|
57
|
+
type: 'enum',
|
|
58
|
+
enum: AirportEntryPermitMessageTypes,
|
|
59
|
+
default: AirportEntryPermitMessageTypes.TEXT,
|
|
60
|
+
nullable: false
|
|
61
|
+
}),
|
|
62
|
+
__metadata("design:type", String)
|
|
63
|
+
], AirportEntryPermitChat.prototype, "messageType", void 0);
|
|
64
|
+
exports.AirportEntryPermitChat = AirportEntryPermitChat = __decorate([
|
|
65
|
+
(0, typeorm_1.Entity)({ name: 'airport_entry_permit_chat' }),
|
|
66
|
+
__metadata("design:paramtypes", [Number, Number, String, Number, Number, String])
|
|
67
|
+
], AirportEntryPermitChat);
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { BaseModel } from './BaseModel';
|
|
2
|
+
export declare enum AirportEntryPermitCategory {
|
|
3
|
+
ISSUING_NEW_PERMIT = "Issuing New Permit",
|
|
4
|
+
RENEWAL_OF_PERMIT = "Renewal of Permit",
|
|
5
|
+
AMENDING = "Amending",
|
|
6
|
+
REPLACING_LOST = "Replacing lost",
|
|
7
|
+
CANCELLING_AIRPORT_SECURITY_PERMITS = "Cancelling airport security permits"
|
|
8
|
+
}
|
|
9
|
+
export declare enum AirportEntryPermitType {
|
|
10
|
+
PERMANENT = "Permanent",
|
|
11
|
+
TEMPORARY = "Temporary"
|
|
12
|
+
}
|
|
13
|
+
export declare enum AirportEntryPermitLocation {
|
|
14
|
+
MUSCAT = "Muscat",
|
|
15
|
+
SALALAH = "Salalah",
|
|
16
|
+
MARMUL = "Marmul",
|
|
17
|
+
DURUM = "Durum",
|
|
18
|
+
SOHAR = "Sohar",
|
|
19
|
+
FUHUD = "Fuhud",
|
|
20
|
+
MUKHAZINA = "Mukhazina"
|
|
21
|
+
}
|
|
22
|
+
export declare enum AirportEntryPermitArea {
|
|
23
|
+
PURPLE = "VIP building",
|
|
24
|
+
HEAVENLY = "Cargo Building with import and export sections",
|
|
25
|
+
ORANGE = "[ Arrivals Hall] and Arrivals building",
|
|
26
|
+
GREEN = "[departures Hall ] and departures building",
|
|
27
|
+
YELLOW = "Information centre and control tower building",
|
|
28
|
+
BLUE = "Vehicle, Aircraft building, Aircraft parking area, fire station and fuel filling stations, repair shop",
|
|
29
|
+
PINK = "Baggage sorting area",
|
|
30
|
+
GRAY = "Supply building",
|
|
31
|
+
ALL_CIVIL_AIRPORTS = "All Civil Airports"
|
|
32
|
+
}
|
|
33
|
+
export declare enum AirportEntryPermitStatus {
|
|
34
|
+
PENDING = "Pending",
|
|
35
|
+
APPROVED = "Approved",
|
|
36
|
+
REJECTED = "Rejected",
|
|
37
|
+
IN_PROGRESS = "In Progress"
|
|
38
|
+
}
|
|
39
|
+
export declare class AirportEntryPermit extends BaseModel {
|
|
40
|
+
req_user_department_id: number | null;
|
|
41
|
+
req_user_section_id: number | null;
|
|
42
|
+
service_id: number | null;
|
|
43
|
+
sub_service_id: number | null;
|
|
44
|
+
service_type: string | null;
|
|
45
|
+
workflow_execution_id: string | null;
|
|
46
|
+
status: AirportEntryPermitStatus;
|
|
47
|
+
user_id: number;
|
|
48
|
+
request_id: string | null;
|
|
49
|
+
name_full_family_name: string;
|
|
50
|
+
nationality: string;
|
|
51
|
+
dob: Date;
|
|
52
|
+
place: string;
|
|
53
|
+
passport_id_card_no: string;
|
|
54
|
+
category_of_permit: AirportEntryPermitCategory;
|
|
55
|
+
date_of_submission: Date;
|
|
56
|
+
phone_number: string;
|
|
57
|
+
location: AirportEntryPermitLocation;
|
|
58
|
+
type_of_permit: AirportEntryPermitType;
|
|
59
|
+
temporary_start_time: string | null;
|
|
60
|
+
temporary_duration: string | null;
|
|
61
|
+
permission_to_required_areas: AirportEntryPermitArea[];
|
|
62
|
+
attachment_url: string | null;
|
|
63
|
+
details: string;
|
|
64
|
+
occupation_staff: string;
|
|
65
|
+
visitor_visa_type: string | null;
|
|
66
|
+
visitor_visa_no: string | null;
|
|
67
|
+
visitor_visa_expiry_date: Date | null;
|
|
68
|
+
acknowledge_security_policies: boolean;
|
|
69
|
+
acknowledge_disciplinary_action: boolean;
|
|
70
|
+
consent_approve_to_issue_permit: boolean;
|
|
71
|
+
consent_do_not_approve_to_issue_permit: boolean;
|
|
72
|
+
consent_justification: string | null;
|
|
73
|
+
requested_by: string;
|
|
74
|
+
constructor(name_full_family_name: string, nationality: string, dob: Date, place: string, passport_id_card_no: string, category_of_permit: AirportEntryPermitCategory, date_of_submission: Date, phone_number: string, location: AirportEntryPermitLocation, type_of_permit: AirportEntryPermitType, permission_to_required_areas: AirportEntryPermitArea[], details: string, occupation_staff: string, requested_by: string, user_id: number, status?: AirportEntryPermitStatus, service_id?: number | null, sub_service_id?: number | null, service_type?: string | null, workflow_execution_id?: string | null, req_user_department_id?: number | null, req_user_section_id?: number | null, attachment_url?: string | null, temporary_start_time?: string | null, temporary_duration?: string | null, visitor_visa_type?: string | null, visitor_visa_no?: string | null, visitor_visa_expiry_date?: Date | null, acknowledge_security_policies?: boolean, acknowledge_disciplinary_action?: boolean, consent_approve_to_issue_permit?: boolean, consent_do_not_approve_to_issue_permit?: boolean, consent_justification?: string | null, request_id?: string | null);
|
|
75
|
+
}
|
|
@@ -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
|
+
}
|