@platform-modules/foreign-ministry 1.1.107 → 1.1.109
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 +3 -11
- package/dist/data-source.js +13 -41
- package/dist/index.d.ts +15 -0
- package/dist/index.js +15 -0
- package/dist/models/DependentsPassportDetailsModel.d.ts +17 -0
- package/dist/models/DependentsPassportDetailsModel.js +73 -0
- package/dist/models/DiplomaticApprovalsModel.d.ts +24 -0
- package/dist/models/DiplomaticApprovalsModel.js +94 -0
- package/dist/models/DiplomaticAttachmentsModel.d.ts +11 -0
- package/dist/models/DiplomaticAttachmentsModel.js +53 -0
- package/dist/models/DiplomaticChatsModel.d.ts +20 -0
- package/dist/models/DiplomaticChatsModel.js +70 -0
- package/dist/models/DiplomaticClubCardApprovalModel.d.ts +16 -0
- package/dist/models/DiplomaticClubCardApprovalModel.js +58 -0
- package/dist/models/DiplomaticClubCardAttachmentModel.d.ts +9 -0
- package/dist/models/DiplomaticClubCardAttachmentModel.js +44 -0
- package/dist/models/DiplomaticClubCardChatModel.d.ts +7 -0
- package/dist/models/{HelpContentMappedCategoriesModel.js → DiplomaticClubCardChatModel.js} +18 -16
- package/dist/models/DiplomaticClubCardMemberModel.d.ts +13 -0
- package/dist/models/DiplomaticClubCardMemberModel.js +60 -0
- package/dist/models/DiplomaticClubCardMembersModel.d.ts +26 -0
- package/dist/models/DiplomaticClubCardMembersModel.js +85 -0
- package/dist/models/DiplomaticClubCardRequestModel.d.ts +33 -0
- package/dist/models/DiplomaticClubCardRequestModel.js +98 -0
- package/dist/models/DiplomaticClubCardWorkFlowModel.d.ts +12 -0
- package/dist/models/DiplomaticClubCardWorkFlowModel.js +42 -0
- package/dist/models/DiplomaticClubSubscriptionMasterModel.d.ts +12 -0
- package/dist/models/DiplomaticClubSubscriptionMasterModel.js +64 -0
- package/dist/models/DiplomaticRequestsModel.d.ts +54 -0
- package/dist/models/DiplomaticRequestsModel.js +186 -0
- package/dist/models/DiplomaticServiceDetailsModel.d.ts +20 -0
- package/dist/models/DiplomaticServiceDetailsModel.js +65 -0
- package/dist/models/DiplomaticSettingsModel.d.ts +11 -0
- package/dist/models/DiplomaticSettingsModel.js +59 -0
- package/dist/models/DiplomaticTitleModel.d.ts +12 -0
- package/dist/models/DiplomaticTitleModel.js +45 -0
- package/dist/models/DiplomaticWorkFlowModel.d.ts +20 -0
- package/dist/models/DiplomaticWorkFlowModel.js +77 -0
- package/dist/models/PassportRequestApprovalModel.d.ts +22 -0
- package/dist/models/PassportRequestApprovalModel.js +91 -0
- package/dist/models/PassportRequestAttachmentModel.d.ts +10 -0
- package/dist/models/PassportRequestAttachmentModel.js +54 -0
- package/dist/models/PassportRequestChatModel.d.ts +8 -0
- package/dist/models/PassportRequestChatModel.js +44 -0
- package/dist/models/PassportRequestDependentModel.d.ts +20 -0
- package/dist/models/PassportRequestDependentModel.js +85 -0
- package/dist/models/PassportRequestModel.d.ts +40 -0
- package/dist/models/PassportRequestModel.js +128 -0
- package/dist/models/PassportRequestWorkFlowModel.d.ts +15 -0
- package/dist/models/PassportRequestWorkFlowModel.js +60 -0
- package/dist/models/RequestPassportApprovalModel.d.ts +22 -0
- package/dist/models/RequestPassportApprovalModel.js +79 -0
- package/dist/models/RequestPassportAttachmentModel.d.ts +11 -0
- package/dist/models/RequestPassportAttachmentModel.js +52 -0
- package/dist/models/RequestPassportChatModel.d.ts +19 -0
- package/dist/models/RequestPassportChatModel.js +78 -0
- package/dist/models/RequestPassportRequestModel.d.ts +47 -0
- package/dist/models/RequestPassportRequestModel.js +151 -0
- package/dist/models/RequestPassportWorkflowModel.d.ts +17 -0
- package/dist/models/RequestPassportWorkflowModel.js +62 -0
- package/dist/models/SubscriptionAmountModel.d.ts +67 -0
- package/dist/models/SubscriptionAmountModel.js +114 -0
- package/package.json +1 -1
- package/src/data-source.ts +13 -43
- package/src/index.ts +15 -0
- package/src/models/DependentsPassportDetailsModel.ts +46 -0
- package/src/models/DiplomaticApprovalsModel.ts +77 -0
- package/src/models/DiplomaticAttachmentsModel.ts +37 -0
- package/src/models/DiplomaticChatsModel.ts +53 -0
- package/src/models/DiplomaticClubCardMembersModel.ts +71 -0
- package/src/models/DiplomaticClubSubscriptionMasterModel.ts +50 -0
- package/src/models/DiplomaticRequestsModel.ts +154 -0
- package/src/models/DiplomaticWorkFlowModel.ts +59 -0
- package/src/models/RequestPassportApprovalModel.ts +51 -0
- package/src/models/RequestPassportAttachmentModel.ts +30 -0
- package/src/models/RequestPassportChatModel.ts +65 -0
- package/src/models/RequestPassportRequestModel.ts +112 -0
- package/src/models/RequestPassportWorkflowModel.ts +38 -0
- package/dist/models/HelpContentMappedCategoriesModel.d.ts +0 -6
- package/dist/models/HelpContentMappedTagsModel.d.ts +0 -6
- package/dist/models/HelpContentMappedTagsModel.js +0 -34
- package/dist/models/HelpContentTagsModel.d.ts +0 -5
- package/dist/models/HelpContentTagsModel.js +0 -29
- package/dist/models/questionTagsModel.d.ts +0 -6
- package/dist/models/questionTagsModel.js +0 -34
- /package/src/models/{LeaveConfigGradesModel.ts → LeaveConfigGradesModel.Ts} +0 -0
|
@@ -0,0 +1,78 @@
|
|
|
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.RequestPassportRequestChat = exports.RequestPassportMessageType = void 0;
|
|
13
|
+
const typeorm_1 = require("typeorm");
|
|
14
|
+
const BaseModel_1 = require("./BaseModel");
|
|
15
|
+
const RequestPassportApprovalModel_1 = require("./RequestPassportApprovalModel");
|
|
16
|
+
var RequestPassportMessageType;
|
|
17
|
+
(function (RequestPassportMessageType) {
|
|
18
|
+
RequestPassportMessageType["TEXT"] = "text";
|
|
19
|
+
RequestPassportMessageType["IMAGE"] = "image";
|
|
20
|
+
RequestPassportMessageType["VIDEO"] = "video";
|
|
21
|
+
RequestPassportMessageType["FILE"] = "file";
|
|
22
|
+
RequestPassportMessageType["LINK"] = "link";
|
|
23
|
+
})(RequestPassportMessageType || (exports.RequestPassportMessageType = RequestPassportMessageType = {}));
|
|
24
|
+
let RequestPassportRequestChat = class RequestPassportRequestChat extends BaseModel_1.BaseModel {
|
|
25
|
+
constructor(request_id, user_id, role_id, message, service_id, sub_service_id, messageType, status) {
|
|
26
|
+
super();
|
|
27
|
+
this.request_id = request_id;
|
|
28
|
+
this.service_id = service_id || null;
|
|
29
|
+
this.sub_service_id = sub_service_id || null;
|
|
30
|
+
this.user_id = user_id;
|
|
31
|
+
this.role_id = role_id;
|
|
32
|
+
this.message = message;
|
|
33
|
+
this.messageType = messageType || RequestPassportMessageType.TEXT;
|
|
34
|
+
this.status = status || RequestPassportApprovalModel_1.RequestPassportApprovalStatus.PENDING;
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
exports.RequestPassportRequestChat = RequestPassportRequestChat;
|
|
38
|
+
__decorate([
|
|
39
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: false }),
|
|
40
|
+
__metadata("design:type", Number)
|
|
41
|
+
], RequestPassportRequestChat.prototype, "request_id", void 0);
|
|
42
|
+
__decorate([
|
|
43
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
44
|
+
__metadata("design:type", Object)
|
|
45
|
+
], RequestPassportRequestChat.prototype, "service_id", void 0);
|
|
46
|
+
__decorate([
|
|
47
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
48
|
+
__metadata("design:type", Object)
|
|
49
|
+
], RequestPassportRequestChat.prototype, "sub_service_id", void 0);
|
|
50
|
+
__decorate([
|
|
51
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: false }),
|
|
52
|
+
__metadata("design:type", Number)
|
|
53
|
+
], RequestPassportRequestChat.prototype, "user_id", void 0);
|
|
54
|
+
__decorate([
|
|
55
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
56
|
+
__metadata("design:type", Number)
|
|
57
|
+
], RequestPassportRequestChat.prototype, "role_id", void 0);
|
|
58
|
+
__decorate([
|
|
59
|
+
(0, typeorm_1.Column)({ type: 'text', nullable: false }),
|
|
60
|
+
__metadata("design:type", String)
|
|
61
|
+
], RequestPassportRequestChat.prototype, "message", void 0);
|
|
62
|
+
__decorate([
|
|
63
|
+
(0, typeorm_1.Column)({
|
|
64
|
+
type: 'enum',
|
|
65
|
+
enum: RequestPassportMessageType,
|
|
66
|
+
default: RequestPassportMessageType.TEXT,
|
|
67
|
+
nullable: false
|
|
68
|
+
}),
|
|
69
|
+
__metadata("design:type", String)
|
|
70
|
+
], RequestPassportRequestChat.prototype, "messageType", void 0);
|
|
71
|
+
__decorate([
|
|
72
|
+
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
73
|
+
__metadata("design:type", String)
|
|
74
|
+
], RequestPassportRequestChat.prototype, "status", void 0);
|
|
75
|
+
exports.RequestPassportRequestChat = RequestPassportRequestChat = __decorate([
|
|
76
|
+
(0, typeorm_1.Entity)({ name: 'request_passport_chats' }),
|
|
77
|
+
__metadata("design:paramtypes", [Number, Number, Number, String, Number, Number, String, String])
|
|
78
|
+
], RequestPassportRequestChat);
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { BaseModel } from './BaseModel';
|
|
2
|
+
export declare enum RequestPassportStatus {
|
|
3
|
+
PENDING = "Pending",
|
|
4
|
+
SUBMITTED = "Submitted",
|
|
5
|
+
APPROVED = "Approved",
|
|
6
|
+
REJECTED = "Rejected"
|
|
7
|
+
}
|
|
8
|
+
export declare enum ApplicationForType {
|
|
9
|
+
SELF = "Self",
|
|
10
|
+
DEPENDENTS = "Dependents",
|
|
11
|
+
BOTH = "Both"
|
|
12
|
+
}
|
|
13
|
+
export declare enum RelationType {
|
|
14
|
+
SELF = "Self",
|
|
15
|
+
SPOUSE = "Spouse",
|
|
16
|
+
CHILD = "Child"
|
|
17
|
+
}
|
|
18
|
+
export declare class RequestPassportRequests extends BaseModel {
|
|
19
|
+
req_user_department_id: number | null;
|
|
20
|
+
req_user_section_id: number | null;
|
|
21
|
+
service_id: number | null;
|
|
22
|
+
sub_service_id: number | null;
|
|
23
|
+
user_id: number;
|
|
24
|
+
request_number_for_official_use: string | null;
|
|
25
|
+
passport_type: string | null;
|
|
26
|
+
applicant_civil_id: string | null;
|
|
27
|
+
applicant_name: string | null;
|
|
28
|
+
applicant_passport_number: string | null;
|
|
29
|
+
application_for_type: ApplicationForType | null;
|
|
30
|
+
application_type: string | null;
|
|
31
|
+
applicant_job_occupation: string | null;
|
|
32
|
+
purpose_of_application: string | null;
|
|
33
|
+
approved_mission_travel_id: number;
|
|
34
|
+
first_name: string;
|
|
35
|
+
family_name: string;
|
|
36
|
+
last_name: string;
|
|
37
|
+
gender: string;
|
|
38
|
+
nationality: string;
|
|
39
|
+
place_of_birth: string;
|
|
40
|
+
date_of_birth: Date | null;
|
|
41
|
+
job_occupation: string;
|
|
42
|
+
relation_type: RelationType | null;
|
|
43
|
+
age: number;
|
|
44
|
+
passport_request_type: string;
|
|
45
|
+
status: RequestPassportStatus;
|
|
46
|
+
workflow_execution_id: string | null;
|
|
47
|
+
}
|
|
@@ -0,0 +1,151 @@
|
|
|
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.RequestPassportRequests = exports.RelationType = exports.ApplicationForType = exports.RequestPassportStatus = void 0;
|
|
13
|
+
const typeorm_1 = require("typeorm");
|
|
14
|
+
const BaseModel_1 = require("./BaseModel");
|
|
15
|
+
var RequestPassportStatus;
|
|
16
|
+
(function (RequestPassportStatus) {
|
|
17
|
+
RequestPassportStatus["PENDING"] = "Pending";
|
|
18
|
+
RequestPassportStatus["SUBMITTED"] = "Submitted";
|
|
19
|
+
RequestPassportStatus["APPROVED"] = "Approved";
|
|
20
|
+
RequestPassportStatus["REJECTED"] = "Rejected";
|
|
21
|
+
})(RequestPassportStatus || (exports.RequestPassportStatus = RequestPassportStatus = {}));
|
|
22
|
+
var ApplicationForType;
|
|
23
|
+
(function (ApplicationForType) {
|
|
24
|
+
ApplicationForType["SELF"] = "Self";
|
|
25
|
+
ApplicationForType["DEPENDENTS"] = "Dependents";
|
|
26
|
+
ApplicationForType["BOTH"] = "Both";
|
|
27
|
+
})(ApplicationForType || (exports.ApplicationForType = ApplicationForType = {}));
|
|
28
|
+
var RelationType;
|
|
29
|
+
(function (RelationType) {
|
|
30
|
+
RelationType["SELF"] = "Self";
|
|
31
|
+
RelationType["SPOUSE"] = "Spouse";
|
|
32
|
+
RelationType["CHILD"] = "Child";
|
|
33
|
+
})(RelationType || (exports.RelationType = RelationType = {}));
|
|
34
|
+
let RequestPassportRequests = class RequestPassportRequests extends BaseModel_1.BaseModel {
|
|
35
|
+
};
|
|
36
|
+
exports.RequestPassportRequests = RequestPassportRequests;
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, typeorm_1.Column)({ type: 'int', nullable: true }),
|
|
39
|
+
__metadata("design:type", Object)
|
|
40
|
+
], RequestPassportRequests.prototype, "req_user_department_id", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, typeorm_1.Column)({ type: 'int', nullable: true }),
|
|
43
|
+
__metadata("design:type", Object)
|
|
44
|
+
], RequestPassportRequests.prototype, "req_user_section_id", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, typeorm_1.Column)({ type: 'int', nullable: true }),
|
|
47
|
+
__metadata("design:type", Object)
|
|
48
|
+
], RequestPassportRequests.prototype, "service_id", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, typeorm_1.Column)({ type: 'int', nullable: true }),
|
|
51
|
+
__metadata("design:type", Object)
|
|
52
|
+
], RequestPassportRequests.prototype, "sub_service_id", void 0);
|
|
53
|
+
__decorate([
|
|
54
|
+
(0, typeorm_1.Column)({ type: 'int', nullable: false }),
|
|
55
|
+
__metadata("design:type", Number)
|
|
56
|
+
], RequestPassportRequests.prototype, "user_id", void 0);
|
|
57
|
+
__decorate([
|
|
58
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
59
|
+
__metadata("design:type", Object)
|
|
60
|
+
], RequestPassportRequests.prototype, "request_number_for_official_use", void 0);
|
|
61
|
+
__decorate([
|
|
62
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
63
|
+
__metadata("design:type", Object)
|
|
64
|
+
], RequestPassportRequests.prototype, "passport_type", void 0);
|
|
65
|
+
__decorate([
|
|
66
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
67
|
+
__metadata("design:type", Object)
|
|
68
|
+
], RequestPassportRequests.prototype, "applicant_civil_id", void 0);
|
|
69
|
+
__decorate([
|
|
70
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
71
|
+
__metadata("design:type", Object)
|
|
72
|
+
], RequestPassportRequests.prototype, "applicant_name", void 0);
|
|
73
|
+
__decorate([
|
|
74
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
75
|
+
__metadata("design:type", Object)
|
|
76
|
+
], RequestPassportRequests.prototype, "applicant_passport_number", void 0);
|
|
77
|
+
__decorate([
|
|
78
|
+
(0, typeorm_1.Column)({ type: 'enum', enum: ApplicationForType, nullable: true }),
|
|
79
|
+
__metadata("design:type", Object)
|
|
80
|
+
], RequestPassportRequests.prototype, "application_for_type", void 0);
|
|
81
|
+
__decorate([
|
|
82
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
83
|
+
__metadata("design:type", Object)
|
|
84
|
+
], RequestPassportRequests.prototype, "application_type", void 0);
|
|
85
|
+
__decorate([
|
|
86
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
87
|
+
__metadata("design:type", Object)
|
|
88
|
+
], RequestPassportRequests.prototype, "applicant_job_occupation", void 0);
|
|
89
|
+
__decorate([
|
|
90
|
+
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
91
|
+
__metadata("design:type", Object)
|
|
92
|
+
], RequestPassportRequests.prototype, "purpose_of_application", void 0);
|
|
93
|
+
__decorate([
|
|
94
|
+
(0, typeorm_1.Column)({ type: 'int', nullable: false }),
|
|
95
|
+
__metadata("design:type", Number)
|
|
96
|
+
], RequestPassportRequests.prototype, "approved_mission_travel_id", void 0);
|
|
97
|
+
__decorate([
|
|
98
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: false }),
|
|
99
|
+
__metadata("design:type", String)
|
|
100
|
+
], RequestPassportRequests.prototype, "first_name", void 0);
|
|
101
|
+
__decorate([
|
|
102
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: false }),
|
|
103
|
+
__metadata("design:type", String)
|
|
104
|
+
], RequestPassportRequests.prototype, "family_name", void 0);
|
|
105
|
+
__decorate([
|
|
106
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: false }),
|
|
107
|
+
__metadata("design:type", String)
|
|
108
|
+
], RequestPassportRequests.prototype, "last_name", void 0);
|
|
109
|
+
__decorate([
|
|
110
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 50, nullable: false }),
|
|
111
|
+
__metadata("design:type", String)
|
|
112
|
+
], RequestPassportRequests.prototype, "gender", void 0);
|
|
113
|
+
__decorate([
|
|
114
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: false }),
|
|
115
|
+
__metadata("design:type", String)
|
|
116
|
+
], RequestPassportRequests.prototype, "nationality", void 0);
|
|
117
|
+
__decorate([
|
|
118
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: false }),
|
|
119
|
+
__metadata("design:type", String)
|
|
120
|
+
], RequestPassportRequests.prototype, "place_of_birth", void 0);
|
|
121
|
+
__decorate([
|
|
122
|
+
(0, typeorm_1.Column)({ type: 'date', nullable: true }),
|
|
123
|
+
__metadata("design:type", Object)
|
|
124
|
+
], RequestPassportRequests.prototype, "date_of_birth", void 0);
|
|
125
|
+
__decorate([
|
|
126
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: false }),
|
|
127
|
+
__metadata("design:type", String)
|
|
128
|
+
], RequestPassportRequests.prototype, "job_occupation", void 0);
|
|
129
|
+
__decorate([
|
|
130
|
+
(0, typeorm_1.Column)({ type: 'enum', enum: RelationType, nullable: true }),
|
|
131
|
+
__metadata("design:type", Object)
|
|
132
|
+
], RequestPassportRequests.prototype, "relation_type", void 0);
|
|
133
|
+
__decorate([
|
|
134
|
+
(0, typeorm_1.Column)({ type: 'int', nullable: false }),
|
|
135
|
+
__metadata("design:type", Number)
|
|
136
|
+
], RequestPassportRequests.prototype, "age", void 0);
|
|
137
|
+
__decorate([
|
|
138
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: false }),
|
|
139
|
+
__metadata("design:type", String)
|
|
140
|
+
], RequestPassportRequests.prototype, "passport_request_type", void 0);
|
|
141
|
+
__decorate([
|
|
142
|
+
(0, typeorm_1.Column)({ type: 'enum', enum: RequestPassportStatus, default: RequestPassportStatus.PENDING, nullable: false }),
|
|
143
|
+
__metadata("design:type", String)
|
|
144
|
+
], RequestPassportRequests.prototype, "status", void 0);
|
|
145
|
+
__decorate([
|
|
146
|
+
(0, typeorm_1.Column)({ type: 'varchar', nullable: true }),
|
|
147
|
+
__metadata("design:type", Object)
|
|
148
|
+
], RequestPassportRequests.prototype, "workflow_execution_id", void 0);
|
|
149
|
+
exports.RequestPassportRequests = RequestPassportRequests = __decorate([
|
|
150
|
+
(0, typeorm_1.Entity)({ name: 'request_passport_requests' })
|
|
151
|
+
], RequestPassportRequests);
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { BaseModel } from './BaseModel';
|
|
2
|
+
export declare enum RequestPassportWorkFlowStatus {
|
|
3
|
+
COMPLETED = "Completed",
|
|
4
|
+
NOT_YET_STARTED = "Not Yet Started",
|
|
5
|
+
PENDING = "Pending"
|
|
6
|
+
}
|
|
7
|
+
export declare class RequestPassportWorkFlow extends BaseModel {
|
|
8
|
+
request_id: number;
|
|
9
|
+
service_id: number | null;
|
|
10
|
+
sub_service_id: number | null;
|
|
11
|
+
content: string;
|
|
12
|
+
status: RequestPassportWorkFlowStatus;
|
|
13
|
+
user_id: number | null;
|
|
14
|
+
role_id: number | null;
|
|
15
|
+
department_id: number | null;
|
|
16
|
+
section_id: number | null;
|
|
17
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
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.RequestPassportWorkFlow = exports.RequestPassportWorkFlowStatus = void 0;
|
|
13
|
+
const typeorm_1 = require("typeorm");
|
|
14
|
+
const BaseModel_1 = require("./BaseModel");
|
|
15
|
+
var RequestPassportWorkFlowStatus;
|
|
16
|
+
(function (RequestPassportWorkFlowStatus) {
|
|
17
|
+
RequestPassportWorkFlowStatus["COMPLETED"] = "Completed";
|
|
18
|
+
RequestPassportWorkFlowStatus["NOT_YET_STARTED"] = "Not Yet Started";
|
|
19
|
+
RequestPassportWorkFlowStatus["PENDING"] = "Pending";
|
|
20
|
+
})(RequestPassportWorkFlowStatus || (exports.RequestPassportWorkFlowStatus = RequestPassportWorkFlowStatus = {}));
|
|
21
|
+
let RequestPassportWorkFlow = class RequestPassportWorkFlow extends BaseModel_1.BaseModel {
|
|
22
|
+
};
|
|
23
|
+
exports.RequestPassportWorkFlow = RequestPassportWorkFlow;
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: false }),
|
|
26
|
+
__metadata("design:type", Number)
|
|
27
|
+
], RequestPassportWorkFlow.prototype, "request_id", void 0);
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
30
|
+
__metadata("design:type", Object)
|
|
31
|
+
], RequestPassportWorkFlow.prototype, "service_id", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
34
|
+
__metadata("design:type", Object)
|
|
35
|
+
], RequestPassportWorkFlow.prototype, "sub_service_id", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 500, nullable: false }),
|
|
38
|
+
__metadata("design:type", String)
|
|
39
|
+
], RequestPassportWorkFlow.prototype, "content", void 0);
|
|
40
|
+
__decorate([
|
|
41
|
+
(0, typeorm_1.Column)({ type: 'enum', enum: RequestPassportWorkFlowStatus, default: RequestPassportWorkFlowStatus.NOT_YET_STARTED, nullable: false }),
|
|
42
|
+
__metadata("design:type", String)
|
|
43
|
+
], RequestPassportWorkFlow.prototype, "status", void 0);
|
|
44
|
+
__decorate([
|
|
45
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
46
|
+
__metadata("design:type", Object)
|
|
47
|
+
], RequestPassportWorkFlow.prototype, "user_id", void 0);
|
|
48
|
+
__decorate([
|
|
49
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
50
|
+
__metadata("design:type", Object)
|
|
51
|
+
], RequestPassportWorkFlow.prototype, "role_id", void 0);
|
|
52
|
+
__decorate([
|
|
53
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
54
|
+
__metadata("design:type", Object)
|
|
55
|
+
], RequestPassportWorkFlow.prototype, "department_id", void 0);
|
|
56
|
+
__decorate([
|
|
57
|
+
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
58
|
+
__metadata("design:type", Object)
|
|
59
|
+
], RequestPassportWorkFlow.prototype, "section_id", void 0);
|
|
60
|
+
exports.RequestPassportWorkFlow = RequestPassportWorkFlow = __decorate([
|
|
61
|
+
(0, typeorm_1.Entity)({ name: 'request_passport_workflows' })
|
|
62
|
+
], RequestPassportWorkFlow);
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { BaseModel } from './BaseModel';
|
|
2
|
+
export declare enum MembershipType {
|
|
3
|
+
SINGLE = "Single",
|
|
4
|
+
FAMILY = "Family"
|
|
5
|
+
}
|
|
6
|
+
export declare enum RequestType {
|
|
7
|
+
EMPLOYEE_FAMILY = "Employee Family",
|
|
8
|
+
EMPLOYEE_SELF = "Employee Self",
|
|
9
|
+
NON_EMPLOYEE = "Non Employee"
|
|
10
|
+
}
|
|
11
|
+
export declare enum RequestStatus {
|
|
12
|
+
DRAFT = "Draft",
|
|
13
|
+
SUBMITTED = "Submitted",
|
|
14
|
+
PENDING = "Pending",
|
|
15
|
+
IN_PROGRESS = "In Progress",
|
|
16
|
+
APPROVED = "Approved",
|
|
17
|
+
REJECTED = "Rejected",
|
|
18
|
+
COMPLETED = "Completed",
|
|
19
|
+
CANCELLED = "Cancelled"
|
|
20
|
+
}
|
|
21
|
+
export declare enum DiplomaticClubCardApprovalStatus {
|
|
22
|
+
PENDING = "Pending",
|
|
23
|
+
APPROVED = "Approved",
|
|
24
|
+
REJECTED = "Rejected",
|
|
25
|
+
SKIPPED = "Skipped",
|
|
26
|
+
IN_PROGRESS = "In Progress"
|
|
27
|
+
}
|
|
28
|
+
export { DiplomaticWorkFlowStatus as DiplomaticClubCardWorkFlowStatus } from './DiplomaticWorkFlowModel';
|
|
29
|
+
export declare enum PassportType {
|
|
30
|
+
DIPLOMATIC = "Diplomatic Passport",
|
|
31
|
+
SERVICE = "Service passport"
|
|
32
|
+
}
|
|
33
|
+
export declare enum ApplicationFor {
|
|
34
|
+
SELF = "Self",
|
|
35
|
+
DEPENDENTS = "Dependents",
|
|
36
|
+
BOTH = "Both"
|
|
37
|
+
}
|
|
38
|
+
export declare enum PassportRequestType {
|
|
39
|
+
NEW = "New",
|
|
40
|
+
RENEWAL = "Renewal",
|
|
41
|
+
REPLACEMENT = "Replacement"
|
|
42
|
+
}
|
|
43
|
+
export declare enum PassportRequestStatus {
|
|
44
|
+
DRAFT = "Draft",
|
|
45
|
+
SUBMITTED = "Submitted",
|
|
46
|
+
PENDING = "Pending",
|
|
47
|
+
IN_PROGRESS = "In Progress",
|
|
48
|
+
APPROVED = "Approved",
|
|
49
|
+
REJECTED = "Rejected",
|
|
50
|
+
COMPLETED = "Completed",
|
|
51
|
+
CANCELLED = "Cancelled"
|
|
52
|
+
}
|
|
53
|
+
export declare enum PassportRequestApprovalStatus {
|
|
54
|
+
PENDING = "Pending",
|
|
55
|
+
APPROVED = "Approved",
|
|
56
|
+
REJECTED = "Rejected",
|
|
57
|
+
SKIPPED = "Skipped",
|
|
58
|
+
IN_PROGRESS = "In Progress"
|
|
59
|
+
}
|
|
60
|
+
export declare class SubscriptionAmounts extends BaseModel {
|
|
61
|
+
membership_type: MembershipType;
|
|
62
|
+
amount: number;
|
|
63
|
+
description: string | null;
|
|
64
|
+
is_active: boolean;
|
|
65
|
+
effective_from: Date | null;
|
|
66
|
+
effective_to: Date | null;
|
|
67
|
+
}
|
|
@@ -0,0 +1,114 @@
|
|
|
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.SubscriptionAmounts = exports.PassportRequestApprovalStatus = exports.PassportRequestStatus = exports.PassportRequestType = exports.ApplicationFor = exports.PassportType = exports.DiplomaticClubCardWorkFlowStatus = exports.DiplomaticClubCardApprovalStatus = exports.RequestStatus = exports.RequestType = exports.MembershipType = void 0;
|
|
13
|
+
const typeorm_1 = require("typeorm");
|
|
14
|
+
const BaseModel_1 = require("./BaseModel");
|
|
15
|
+
var MembershipType;
|
|
16
|
+
(function (MembershipType) {
|
|
17
|
+
MembershipType["SINGLE"] = "Single";
|
|
18
|
+
MembershipType["FAMILY"] = "Family";
|
|
19
|
+
})(MembershipType || (exports.MembershipType = MembershipType = {}));
|
|
20
|
+
var RequestType;
|
|
21
|
+
(function (RequestType) {
|
|
22
|
+
RequestType["EMPLOYEE_FAMILY"] = "Employee Family";
|
|
23
|
+
RequestType["EMPLOYEE_SELF"] = "Employee Self";
|
|
24
|
+
RequestType["NON_EMPLOYEE"] = "Non Employee";
|
|
25
|
+
})(RequestType || (exports.RequestType = RequestType = {}));
|
|
26
|
+
var RequestStatus;
|
|
27
|
+
(function (RequestStatus) {
|
|
28
|
+
RequestStatus["DRAFT"] = "Draft";
|
|
29
|
+
RequestStatus["SUBMITTED"] = "Submitted";
|
|
30
|
+
RequestStatus["PENDING"] = "Pending";
|
|
31
|
+
RequestStatus["IN_PROGRESS"] = "In Progress";
|
|
32
|
+
RequestStatus["APPROVED"] = "Approved";
|
|
33
|
+
RequestStatus["REJECTED"] = "Rejected";
|
|
34
|
+
RequestStatus["COMPLETED"] = "Completed";
|
|
35
|
+
RequestStatus["CANCELLED"] = "Cancelled";
|
|
36
|
+
})(RequestStatus || (exports.RequestStatus = RequestStatus = {}));
|
|
37
|
+
var DiplomaticClubCardApprovalStatus;
|
|
38
|
+
(function (DiplomaticClubCardApprovalStatus) {
|
|
39
|
+
DiplomaticClubCardApprovalStatus["PENDING"] = "Pending";
|
|
40
|
+
DiplomaticClubCardApprovalStatus["APPROVED"] = "Approved";
|
|
41
|
+
DiplomaticClubCardApprovalStatus["REJECTED"] = "Rejected";
|
|
42
|
+
DiplomaticClubCardApprovalStatus["SKIPPED"] = "Skipped";
|
|
43
|
+
DiplomaticClubCardApprovalStatus["IN_PROGRESS"] = "In Progress";
|
|
44
|
+
})(DiplomaticClubCardApprovalStatus || (exports.DiplomaticClubCardApprovalStatus = DiplomaticClubCardApprovalStatus = {}));
|
|
45
|
+
// Export alias for compatibility
|
|
46
|
+
var DiplomaticWorkFlowModel_1 = require("./DiplomaticWorkFlowModel");
|
|
47
|
+
Object.defineProperty(exports, "DiplomaticClubCardWorkFlowStatus", { enumerable: true, get: function () { return DiplomaticWorkFlowModel_1.DiplomaticWorkFlowStatus; } });
|
|
48
|
+
// Passport Request Enums
|
|
49
|
+
var PassportType;
|
|
50
|
+
(function (PassportType) {
|
|
51
|
+
PassportType["DIPLOMATIC"] = "Diplomatic Passport";
|
|
52
|
+
PassportType["SERVICE"] = "Service passport";
|
|
53
|
+
})(PassportType || (exports.PassportType = PassportType = {}));
|
|
54
|
+
var ApplicationFor;
|
|
55
|
+
(function (ApplicationFor) {
|
|
56
|
+
ApplicationFor["SELF"] = "Self";
|
|
57
|
+
ApplicationFor["DEPENDENTS"] = "Dependents";
|
|
58
|
+
ApplicationFor["BOTH"] = "Both";
|
|
59
|
+
})(ApplicationFor || (exports.ApplicationFor = ApplicationFor = {}));
|
|
60
|
+
var PassportRequestType;
|
|
61
|
+
(function (PassportRequestType) {
|
|
62
|
+
PassportRequestType["NEW"] = "New";
|
|
63
|
+
PassportRequestType["RENEWAL"] = "Renewal";
|
|
64
|
+
PassportRequestType["REPLACEMENT"] = "Replacement";
|
|
65
|
+
})(PassportRequestType || (exports.PassportRequestType = PassportRequestType = {}));
|
|
66
|
+
var PassportRequestStatus;
|
|
67
|
+
(function (PassportRequestStatus) {
|
|
68
|
+
PassportRequestStatus["DRAFT"] = "Draft";
|
|
69
|
+
PassportRequestStatus["SUBMITTED"] = "Submitted";
|
|
70
|
+
PassportRequestStatus["PENDING"] = "Pending";
|
|
71
|
+
PassportRequestStatus["IN_PROGRESS"] = "In Progress";
|
|
72
|
+
PassportRequestStatus["APPROVED"] = "Approved";
|
|
73
|
+
PassportRequestStatus["REJECTED"] = "Rejected";
|
|
74
|
+
PassportRequestStatus["COMPLETED"] = "Completed";
|
|
75
|
+
PassportRequestStatus["CANCELLED"] = "Cancelled";
|
|
76
|
+
})(PassportRequestStatus || (exports.PassportRequestStatus = PassportRequestStatus = {}));
|
|
77
|
+
var PassportRequestApprovalStatus;
|
|
78
|
+
(function (PassportRequestApprovalStatus) {
|
|
79
|
+
PassportRequestApprovalStatus["PENDING"] = "Pending";
|
|
80
|
+
PassportRequestApprovalStatus["APPROVED"] = "Approved";
|
|
81
|
+
PassportRequestApprovalStatus["REJECTED"] = "Rejected";
|
|
82
|
+
PassportRequestApprovalStatus["SKIPPED"] = "Skipped";
|
|
83
|
+
PassportRequestApprovalStatus["IN_PROGRESS"] = "In Progress";
|
|
84
|
+
})(PassportRequestApprovalStatus || (exports.PassportRequestApprovalStatus = PassportRequestApprovalStatus = {}));
|
|
85
|
+
let SubscriptionAmounts = class SubscriptionAmounts extends BaseModel_1.BaseModel {
|
|
86
|
+
};
|
|
87
|
+
exports.SubscriptionAmounts = SubscriptionAmounts;
|
|
88
|
+
__decorate([
|
|
89
|
+
(0, typeorm_1.Column)({ type: 'enum', enum: MembershipType, nullable: false }),
|
|
90
|
+
__metadata("design:type", String)
|
|
91
|
+
], SubscriptionAmounts.prototype, "membership_type", void 0);
|
|
92
|
+
__decorate([
|
|
93
|
+
(0, typeorm_1.Column)({ type: 'decimal', precision: 10, scale: 2, nullable: false }),
|
|
94
|
+
__metadata("design:type", Number)
|
|
95
|
+
], SubscriptionAmounts.prototype, "amount", void 0);
|
|
96
|
+
__decorate([
|
|
97
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
|
|
98
|
+
__metadata("design:type", Object)
|
|
99
|
+
], SubscriptionAmounts.prototype, "description", void 0);
|
|
100
|
+
__decorate([
|
|
101
|
+
(0, typeorm_1.Column)({ type: 'boolean', default: true, nullable: false }),
|
|
102
|
+
__metadata("design:type", Boolean)
|
|
103
|
+
], SubscriptionAmounts.prototype, "is_active", void 0);
|
|
104
|
+
__decorate([
|
|
105
|
+
(0, typeorm_1.Column)({ type: 'date', nullable: true }),
|
|
106
|
+
__metadata("design:type", Object)
|
|
107
|
+
], SubscriptionAmounts.prototype, "effective_from", void 0);
|
|
108
|
+
__decorate([
|
|
109
|
+
(0, typeorm_1.Column)({ type: 'date', nullable: true }),
|
|
110
|
+
__metadata("design:type", Object)
|
|
111
|
+
], SubscriptionAmounts.prototype, "effective_to", void 0);
|
|
112
|
+
exports.SubscriptionAmounts = SubscriptionAmounts = __decorate([
|
|
113
|
+
(0, typeorm_1.Entity)({ name: 'subscription_amounts' })
|
|
114
|
+
], SubscriptionAmounts);
|
package/package.json
CHANGED
package/src/data-source.ts
CHANGED
|
@@ -116,33 +116,17 @@ import { RequestParcelApprovalDetails } from './models/RequestParcelApprovalMode
|
|
|
116
116
|
import { RequestParcelRequestAttachment } from './models/RequestParcelAttachmentModel';
|
|
117
117
|
import { RequestParcelRequestChat } from './models/RequestParcelChatModel';
|
|
118
118
|
import { RequestParcelWorkFlow } from './models/RequestParcelWorkflowModel';
|
|
119
|
+
import { RequestPassportRequests } from './models/RequestPassportRequestModel';
|
|
120
|
+
import { RequestPassportApprovalDetails } from './models/RequestPassportApprovalModel';
|
|
121
|
+
import { RequestPassportRequestAttachment } from './models/RequestPassportAttachmentModel';
|
|
122
|
+
import { RequestPassportRequestChat } from './models/RequestPassportChatModel';
|
|
123
|
+
import { RequestPassportWorkFlow } from './models/RequestPassportWorkflowModel';
|
|
124
|
+
import { DependentsPassportDetails } from './models/DependentsPassportDetailsModel';
|
|
119
125
|
import { GroupNames } from './models/GroupNamesModel';
|
|
120
126
|
import { Group } from './models/GroupModel';
|
|
121
127
|
import { WorkSchedule } from './models/WorkScheduleModel';
|
|
122
128
|
import { Jobs } from './models/JobsModel';
|
|
123
129
|
import { TelephoneDirectory } from './models/TelephoneDirectoryModel'
|
|
124
|
-
import { MandCMaster } from './models/M&CMasterModel'
|
|
125
|
-
import { LeaveBalance } from './models/LeaveBalanceModel'
|
|
126
|
-
import { LeaveConfiguration } from './models/LeaveConfigModel'
|
|
127
|
-
import { LeaveConfigurationGrades } from './models/LeaveConfigGradesModel'
|
|
128
|
-
import { LeaveTransaction } from './models/LeaveTransactionModel'
|
|
129
|
-
import { EarlyCheckoutBalance } from './models/EarlyCheckoutBalanceModel'
|
|
130
|
-
import { EarlyCheckoutConfiguration } from './models/EarlyCheckoutConfigModel'
|
|
131
|
-
import { EarlyCheckoutTransaction } from './models/EarlyCheckoutTransactionModel'
|
|
132
|
-
import { StayAfterHoursBalance } from './models/StayAfterHoursBalanceModel'
|
|
133
|
-
import { StayAfterHoursTransaction } from './models/StayAfterHoursTransactionModel'
|
|
134
|
-
import {StationeryRequests} from './models/StationeryRequestsModel'
|
|
135
|
-
import {StationeryMaterialMaster} from './models/StationeryMaterialMasterModel'
|
|
136
|
-
import { ProfileUpdateRequests } from './models/ProfileUpdateRequestsModel'
|
|
137
|
-
import { UserPersonalDetails } from './models/UserPersonalDetailsModel'
|
|
138
|
-
import { UserEmploymentDetails } from './models/UserEmploymentDetailsModel'
|
|
139
|
-
import { UserEducationDetails } from './models/UserEducationDetailsModel'
|
|
140
|
-
import { DiplomaticTitlesMaster } from './models/DiplomaticTitlesMasterModel'
|
|
141
|
-
import { CountryMaster } from './models/CountryMasterModel'
|
|
142
|
-
import { NationalityMaster } from './models/NationalityMasterModel'
|
|
143
|
-
import { OfficeMaster } from './models/OfficeMasterModel'
|
|
144
|
-
|
|
145
|
-
|
|
146
130
|
export const AppDataSource = new DataSource({
|
|
147
131
|
type: 'postgres',
|
|
148
132
|
host: process.env.DB_HOST || 'localhost',
|
|
@@ -259,30 +243,16 @@ export const AppDataSource = new DataSource({
|
|
|
259
243
|
RequestParcelRequestAttachment,
|
|
260
244
|
RequestParcelRequestChat,
|
|
261
245
|
RequestParcelWorkFlow,
|
|
246
|
+
RequestPassportRequests,
|
|
247
|
+
RequestPassportApprovalDetails,
|
|
248
|
+
RequestPassportRequestAttachment,
|
|
249
|
+
RequestPassportRequestChat,
|
|
250
|
+
RequestPassportWorkFlow,
|
|
251
|
+
DependentsPassportDetails,
|
|
262
252
|
GroupNames,
|
|
263
253
|
Group,
|
|
264
254
|
WorkSchedule,
|
|
265
255
|
Jobs,
|
|
266
|
-
TelephoneDirectory
|
|
267
|
-
MandCMaster,
|
|
268
|
-
LeaveBalance,
|
|
269
|
-
LeaveConfiguration,
|
|
270
|
-
LeaveConfigurationGrades,
|
|
271
|
-
LeaveTransaction,
|
|
272
|
-
EarlyCheckoutBalance,
|
|
273
|
-
EarlyCheckoutConfiguration,
|
|
274
|
-
EarlyCheckoutTransaction,
|
|
275
|
-
StayAfterHoursBalance,
|
|
276
|
-
StayAfterHoursTransaction,
|
|
277
|
-
StationeryRequests,
|
|
278
|
-
StationeryMaterialMaster,
|
|
279
|
-
ProfileUpdateRequests,
|
|
280
|
-
UserPersonalDetails,
|
|
281
|
-
UserEmploymentDetails,
|
|
282
|
-
UserEducationDetails,
|
|
283
|
-
DiplomaticTitlesMaster,
|
|
284
|
-
CountryMaster,
|
|
285
|
-
NationalityMaster,
|
|
286
|
-
OfficeMaster
|
|
256
|
+
TelephoneDirectory
|
|
287
257
|
],
|
|
288
258
|
});
|
package/src/index.ts
CHANGED
|
@@ -111,10 +111,25 @@ export * from './models/RequestParcelApprovalModel';
|
|
|
111
111
|
export * from './models/RequestParcelAttachmentModel';
|
|
112
112
|
export * from './models/RequestParcelChatModel';
|
|
113
113
|
export * from './models/RequestParcelWorkflowModel';
|
|
114
|
+
export * from './models/RequestPassportRequestModel';
|
|
115
|
+
export * from './models/RequestPassportApprovalModel';
|
|
116
|
+
export * from './models/RequestPassportAttachmentModel';
|
|
117
|
+
export * from './models/RequestPassportChatModel';
|
|
118
|
+
export * from './models/RequestPassportWorkflowModel';
|
|
119
|
+
export * from './models/DependentsPassportDetailsModel';
|
|
114
120
|
export * from './models/GroupNamesModel';
|
|
115
121
|
export * from './models/GroupModel';
|
|
116
122
|
export * from './models/WorkScheduleModel';
|
|
117
123
|
export * from './models/JobsModel';
|
|
124
|
+
export * from './models/TelephoneDirectoryModel';
|
|
125
|
+
export * from './models/DiplomaticRequestsModel';
|
|
126
|
+
export * from './models/DiplomaticApprovalsModel';
|
|
127
|
+
export * from './models/DiplomaticWorkFlowModel';
|
|
128
|
+
export * from './models/DiplomaticAttachmentsModel';
|
|
129
|
+
export * from './models/DiplomaticChatsModel';
|
|
130
|
+
export * from './models/DiplomaticClubCardMembersModel';
|
|
131
|
+
export * from './models/DiplomaticTitlesMasterModel';
|
|
132
|
+
export * from './models/DiplomaticClubSubscriptionMasterModel';
|
|
118
133
|
export * from './models/M&CMasterModel';
|
|
119
134
|
export * from './models/LeaveBalanceModel';
|
|
120
135
|
export * from './models/LeaveConfigModel';
|