@platform-modules/foreign-ministry 1.2.100 → 1.2.101

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (86) hide show
  1. package/.env +1 -1
  2. package/dist/data-source.js +5 -1
  3. package/dist/index.d.ts +11 -0
  4. package/dist/index.js +18 -1
  5. package/dist/models/DiplomaticClubCardApprovalModel.d.ts +16 -0
  6. package/dist/models/DiplomaticClubCardApprovalModel.js +58 -0
  7. package/dist/models/DiplomaticClubCardAttachmentModel.d.ts +9 -0
  8. package/dist/models/DiplomaticClubCardAttachmentModel.js +44 -0
  9. package/dist/models/DiplomaticClubCardChatModel.d.ts +7 -0
  10. package/dist/models/DiplomaticClubCardChatModel.js +36 -0
  11. package/dist/models/DiplomaticClubCardMemberModel.d.ts +13 -0
  12. package/dist/models/DiplomaticClubCardMemberModel.js +60 -0
  13. package/dist/models/DiplomaticClubCardRequestModel.d.ts +33 -0
  14. package/dist/models/DiplomaticClubCardRequestModel.js +98 -0
  15. package/dist/models/DiplomaticClubCardWorkFlowModel.d.ts +12 -0
  16. package/dist/models/DiplomaticClubCardWorkFlowModel.js +42 -0
  17. package/dist/models/DiplomaticRequestsModel.d.ts +1 -0
  18. package/dist/models/DiplomaticRequestsModel.js +4 -0
  19. package/dist/models/DiplomaticServiceDetailsModel.d.ts +20 -0
  20. package/dist/models/DiplomaticServiceDetailsModel.js +65 -0
  21. package/dist/models/DiplomaticSettingsModel.d.ts +11 -0
  22. package/dist/models/DiplomaticSettingsModel.js +59 -0
  23. package/dist/models/DiplomaticTitleModel.d.ts +12 -0
  24. package/dist/models/DiplomaticTitleModel.js +45 -0
  25. package/dist/models/GeneralServiceChatsModel.d.ts +3 -1
  26. package/dist/models/GeneralServiceChatsModel.js +12 -2
  27. package/dist/models/HelpdeskAutoClosureConfig.d.ts +12 -0
  28. package/dist/models/HelpdeskAutoClosureConfig.js +59 -0
  29. package/dist/models/HelpdeskKnowledgeBase.d.ts +13 -0
  30. package/dist/models/HelpdeskKnowledgeBase.js +61 -0
  31. package/dist/models/MissionTravelApprovalModel.d.ts +1 -2
  32. package/dist/models/MissionTravelApprovalModel.js +1 -2
  33. package/dist/models/PassportRequestApprovalModel.d.ts +22 -0
  34. package/dist/models/PassportRequestApprovalModel.js +91 -0
  35. package/dist/models/PassportRequestAttachmentModel.d.ts +10 -0
  36. package/dist/models/PassportRequestAttachmentModel.js +54 -0
  37. package/dist/models/PassportRequestChatModel.d.ts +8 -0
  38. package/dist/models/PassportRequestChatModel.js +44 -0
  39. package/dist/models/PassportRequestDependentModel.d.ts +20 -0
  40. package/dist/models/PassportRequestDependentModel.js +85 -0
  41. package/dist/models/PassportRequestModel.d.ts +40 -0
  42. package/dist/models/PassportRequestModel.js +128 -0
  43. package/dist/models/PassportRequestWorkFlowModel.d.ts +15 -0
  44. package/dist/models/PassportRequestWorkFlowModel.js +60 -0
  45. package/dist/models/RequestPassportRequestModel.d.ts +0 -11
  46. package/dist/models/RequestPassportRequestModel.js +0 -44
  47. package/dist/models/RetiredCardApprovalsModel.d.ts +33 -0
  48. package/dist/models/RetiredCardApprovalsModel.js +110 -0
  49. package/dist/models/RetiredCardAttachmentsModel.d.ts +16 -0
  50. package/dist/models/RetiredCardAttachmentsModel.js +60 -0
  51. package/dist/models/RetiredCardChatsModel.d.ts +26 -0
  52. package/dist/models/RetiredCardChatsModel.js +84 -0
  53. package/dist/models/RetiredCardRequestsModel.d.ts +39 -0
  54. package/dist/models/RetiredCardRequestsModel.js +117 -0
  55. package/dist/models/RetiredCardWorkFlowModel.d.ts +33 -0
  56. package/dist/models/RetiredCardWorkFlowModel.js +93 -0
  57. package/dist/models/SectionModel.d.ts +2 -1
  58. package/dist/models/SectionModel.js +7 -2
  59. package/dist/models/SubscriptionAmountModel.d.ts +67 -0
  60. package/dist/models/SubscriptionAmountModel.js +114 -0
  61. package/package.json +1 -1
  62. package/src/data-source.ts +273 -268
  63. package/src/index.ts +12 -0
  64. package/src/models/DiplomaticClubSubscriptionMasterModel.ts +26 -26
  65. package/src/models/DiplomaticRequestsModel.ts +157 -154
  66. package/src/models/GeneralServiceChatsModel.ts +11 -1
  67. package/src/models/HelpdeskAutoClosureConfig.ts +41 -0
  68. package/src/models/HelpdeskKnowledgeBase.ts +46 -0
  69. package/src/models/LeaveConfigModel.ts +71 -71
  70. package/src/models/MissionTravelApprovalModel.ts +94 -95
  71. package/src/models/MissionTravelAttachmentModel.ts +56 -56
  72. package/src/models/MissionTravelChatModel.ts +52 -52
  73. package/src/models/MissionTravelPersonModel.ts +105 -105
  74. package/src/models/MissionTravelRequestModel.ts +0 -1
  75. package/src/models/MissionTravelWorkflowModel.ts +54 -54
  76. package/src/models/RequestPassportRequestModel.ts +22 -22
  77. package/src/models/RetiredCardApprovalsModel.ts +98 -0
  78. package/src/models/RetiredCardAttachmentsModel.ts +38 -0
  79. package/src/models/RetiredCardChatsModel.ts +72 -0
  80. package/src/models/RetiredCardRequestsModel.ts +109 -0
  81. package/src/models/RetiredCardWorkFlowModel.ts +66 -0
  82. package/src/models/SectionModel.ts +6 -1
  83. package/dist/models/MissionTravelClassConfigModel.d.ts +0 -10
  84. package/dist/models/MissionTravelClassConfigModel.js +0 -50
  85. package/dist/models/MissionTravelPerdiemModel.d.ts +0 -10
  86. package/dist/models/MissionTravelPerdiemModel.js +0 -54
@@ -0,0 +1,84 @@
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.RetiredCardRequestChat = exports.RetiredCardMessageType = void 0;
13
+ const typeorm_1 = require("typeorm");
14
+ const BaseModel_1 = require("./BaseModel");
15
+ /**
16
+ * Retired Card Message Type Enum
17
+ */
18
+ var RetiredCardMessageType;
19
+ (function (RetiredCardMessageType) {
20
+ RetiredCardMessageType["TEXT"] = "text";
21
+ RetiredCardMessageType["IMAGE"] = "image";
22
+ RetiredCardMessageType["VIDEO"] = "video";
23
+ RetiredCardMessageType["FILE"] = "file";
24
+ RetiredCardMessageType["LINK"] = "link";
25
+ })(RetiredCardMessageType || (exports.RetiredCardMessageType = RetiredCardMessageType = {}));
26
+ /**
27
+ * Retired Card Request Chat Table
28
+ * Stores chat messages for retired card requests
29
+ */
30
+ let RetiredCardRequestChat = class RetiredCardRequestChat extends BaseModel_1.BaseModel {
31
+ constructor(request_id, user_id, role_id, message, service_id, sub_service_id, messageType, status) {
32
+ super();
33
+ this.request_id = request_id;
34
+ this.service_id = service_id || null;
35
+ this.sub_service_id = sub_service_id || null;
36
+ this.user_id = user_id;
37
+ this.role_id = role_id;
38
+ this.message = message;
39
+ this.messageType = messageType || RetiredCardMessageType.TEXT;
40
+ this.status = status || 'Pending';
41
+ }
42
+ };
43
+ exports.RetiredCardRequestChat = RetiredCardRequestChat;
44
+ __decorate([
45
+ (0, typeorm_1.Column)({ type: 'integer', nullable: false }),
46
+ __metadata("design:type", Number)
47
+ ], RetiredCardRequestChat.prototype, "request_id", void 0);
48
+ __decorate([
49
+ (0, typeorm_1.Column)({ type: 'integer', nullable: true }),
50
+ __metadata("design:type", Object)
51
+ ], RetiredCardRequestChat.prototype, "service_id", void 0);
52
+ __decorate([
53
+ (0, typeorm_1.Column)({ type: 'integer', nullable: true }),
54
+ __metadata("design:type", Object)
55
+ ], RetiredCardRequestChat.prototype, "sub_service_id", void 0);
56
+ __decorate([
57
+ (0, typeorm_1.Column)({ type: 'integer', nullable: false }),
58
+ __metadata("design:type", Number)
59
+ ], RetiredCardRequestChat.prototype, "user_id", void 0);
60
+ __decorate([
61
+ (0, typeorm_1.Column)({ type: 'integer', nullable: true }),
62
+ __metadata("design:type", Number)
63
+ ], RetiredCardRequestChat.prototype, "role_id", void 0);
64
+ __decorate([
65
+ (0, typeorm_1.Column)({ type: 'text', nullable: false }),
66
+ __metadata("design:type", String)
67
+ ], RetiredCardRequestChat.prototype, "message", void 0);
68
+ __decorate([
69
+ (0, typeorm_1.Column)({
70
+ type: 'enum',
71
+ enum: RetiredCardMessageType,
72
+ default: RetiredCardMessageType.TEXT,
73
+ nullable: false
74
+ }),
75
+ __metadata("design:type", String)
76
+ ], RetiredCardRequestChat.prototype, "messageType", void 0);
77
+ __decorate([
78
+ (0, typeorm_1.Column)({ type: 'text', nullable: true }),
79
+ __metadata("design:type", String)
80
+ ], RetiredCardRequestChat.prototype, "status", void 0);
81
+ exports.RetiredCardRequestChat = RetiredCardRequestChat = __decorate([
82
+ (0, typeorm_1.Entity)({ name: 'retired_card_chats' }),
83
+ __metadata("design:paramtypes", [Number, Number, Number, String, Number, Number, String, String])
84
+ ], RetiredCardRequestChat);
@@ -0,0 +1,39 @@
1
+ import { BaseModel } from './BaseModel';
2
+ /**
3
+ * Retired Card Request Status Enum
4
+ */
5
+ export declare enum RetiredCardRequestStatus {
6
+ PENDING = "Pending",
7
+ APPROVED = "Approved",
8
+ REJECTED = "Rejected",
9
+ CANCELLED = "Cancelled",
10
+ IN_PROGRESS = "In Progress"
11
+ }
12
+ /**
13
+ * Access Type Enum - Normal or Special
14
+ */
15
+ export declare enum RetiredCardAccessType {
16
+ NORMAL = "Normal"
17
+ }
18
+ /**
19
+ * Main Retired Card Request Table (FM021)
20
+ * This table stores the primary retired card request data
21
+ * Only for people with "Ambassador" diplomatic title
22
+ */
23
+ export declare class RetiredCardRequests extends BaseModel {
24
+ user_id: number;
25
+ req_user_department_id: number | null;
26
+ req_user_section_id: number | null;
27
+ service_id: number | null;
28
+ sub_service_id: number | null;
29
+ status: RetiredCardRequestStatus;
30
+ workflow_execution_id: string | null;
31
+ ex_job_title: string | null;
32
+ date_of_retirement: Date | null;
33
+ date_of_issue: Date | null;
34
+ reason_for_request: string | null;
35
+ access_type: RetiredCardAccessType;
36
+ photo_url: string | null;
37
+ photo_file_name: string | null;
38
+ constructor(user_id: number, req_user_department_id: number | null, req_user_section_id: number | null, service_id: number | null, sub_service_id: number | null, status: RetiredCardRequestStatus, workflow_execution_id: string | null, ex_job_title: string | null, date_of_retirement: Date | null, date_of_issue: Date | null, reason_for_request: string | null, access_type: RetiredCardAccessType, photo_url: string | null, photo_file_name: string | null);
39
+ }
@@ -0,0 +1,117 @@
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.RetiredCardRequests = exports.RetiredCardAccessType = exports.RetiredCardRequestStatus = void 0;
13
+ const typeorm_1 = require("typeorm");
14
+ const BaseModel_1 = require("./BaseModel");
15
+ /**
16
+ * Retired Card Request Status Enum
17
+ */
18
+ var RetiredCardRequestStatus;
19
+ (function (RetiredCardRequestStatus) {
20
+ RetiredCardRequestStatus["PENDING"] = "Pending";
21
+ RetiredCardRequestStatus["APPROVED"] = "Approved";
22
+ RetiredCardRequestStatus["REJECTED"] = "Rejected";
23
+ RetiredCardRequestStatus["CANCELLED"] = "Cancelled";
24
+ RetiredCardRequestStatus["IN_PROGRESS"] = "In Progress";
25
+ })(RetiredCardRequestStatus || (exports.RetiredCardRequestStatus = RetiredCardRequestStatus = {}));
26
+ /**
27
+ * Access Type Enum - Normal or Special
28
+ */
29
+ var RetiredCardAccessType;
30
+ (function (RetiredCardAccessType) {
31
+ RetiredCardAccessType["NORMAL"] = "Normal";
32
+ })(RetiredCardAccessType || (exports.RetiredCardAccessType = RetiredCardAccessType = {}));
33
+ /**
34
+ * Main Retired Card Request Table (FM021)
35
+ * This table stores the primary retired card request data
36
+ * Only for people with "Ambassador" diplomatic title
37
+ */
38
+ let RetiredCardRequests = class RetiredCardRequests extends BaseModel_1.BaseModel {
39
+ constructor(user_id, req_user_department_id, req_user_section_id, service_id, sub_service_id, status, workflow_execution_id, ex_job_title, date_of_retirement, date_of_issue, reason_for_request, access_type, photo_url, photo_file_name) {
40
+ super();
41
+ this.user_id = user_id;
42
+ this.req_user_department_id = req_user_department_id;
43
+ this.req_user_section_id = req_user_section_id;
44
+ this.service_id = service_id;
45
+ this.sub_service_id = sub_service_id;
46
+ this.status = status;
47
+ this.workflow_execution_id = workflow_execution_id;
48
+ this.ex_job_title = ex_job_title;
49
+ this.date_of_retirement = date_of_retirement;
50
+ this.date_of_issue = date_of_issue;
51
+ this.reason_for_request = reason_for_request;
52
+ this.access_type = access_type;
53
+ this.photo_url = photo_url;
54
+ this.photo_file_name = photo_file_name;
55
+ }
56
+ };
57
+ exports.RetiredCardRequests = RetiredCardRequests;
58
+ __decorate([
59
+ (0, typeorm_1.Column)({ type: 'int', nullable: false }),
60
+ __metadata("design:type", Number)
61
+ ], RetiredCardRequests.prototype, "user_id", void 0);
62
+ __decorate([
63
+ (0, typeorm_1.Column)({ type: 'int', nullable: true }),
64
+ __metadata("design:type", Object)
65
+ ], RetiredCardRequests.prototype, "req_user_department_id", void 0);
66
+ __decorate([
67
+ (0, typeorm_1.Column)({ type: 'int', nullable: true }),
68
+ __metadata("design:type", Object)
69
+ ], RetiredCardRequests.prototype, "req_user_section_id", void 0);
70
+ __decorate([
71
+ (0, typeorm_1.Column)({ type: 'int', nullable: true }),
72
+ __metadata("design:type", Object)
73
+ ], RetiredCardRequests.prototype, "service_id", void 0);
74
+ __decorate([
75
+ (0, typeorm_1.Column)({ type: 'int', nullable: true }),
76
+ __metadata("design:type", Object)
77
+ ], RetiredCardRequests.prototype, "sub_service_id", void 0);
78
+ __decorate([
79
+ (0, typeorm_1.Column)({ type: 'enum', enum: RetiredCardRequestStatus, default: RetiredCardRequestStatus.PENDING, nullable: false }),
80
+ __metadata("design:type", String)
81
+ ], RetiredCardRequests.prototype, "status", void 0);
82
+ __decorate([
83
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
84
+ __metadata("design:type", Object)
85
+ ], RetiredCardRequests.prototype, "workflow_execution_id", void 0);
86
+ __decorate([
87
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
88
+ __metadata("design:type", Object)
89
+ ], RetiredCardRequests.prototype, "ex_job_title", void 0);
90
+ __decorate([
91
+ (0, typeorm_1.Column)({ type: 'date', nullable: true }),
92
+ __metadata("design:type", Object)
93
+ ], RetiredCardRequests.prototype, "date_of_retirement", void 0);
94
+ __decorate([
95
+ (0, typeorm_1.Column)({ type: 'date', nullable: true }),
96
+ __metadata("design:type", Object)
97
+ ], RetiredCardRequests.prototype, "date_of_issue", void 0);
98
+ __decorate([
99
+ (0, typeorm_1.Column)({ type: 'text', nullable: true }),
100
+ __metadata("design:type", Object)
101
+ ], RetiredCardRequests.prototype, "reason_for_request", void 0);
102
+ __decorate([
103
+ (0, typeorm_1.Column)({ type: 'enum', enum: RetiredCardAccessType, default: RetiredCardAccessType.NORMAL, nullable: false }),
104
+ __metadata("design:type", String)
105
+ ], RetiredCardRequests.prototype, "access_type", void 0);
106
+ __decorate([
107
+ (0, typeorm_1.Column)({ type: 'varchar', length: 500, nullable: true }),
108
+ __metadata("design:type", Object)
109
+ ], RetiredCardRequests.prototype, "photo_url", void 0);
110
+ __decorate([
111
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
112
+ __metadata("design:type", Object)
113
+ ], RetiredCardRequests.prototype, "photo_file_name", void 0);
114
+ exports.RetiredCardRequests = RetiredCardRequests = __decorate([
115
+ (0, typeorm_1.Entity)({ name: 'retired_card_requests' }),
116
+ __metadata("design:paramtypes", [Number, Object, Object, Object, Object, String, Object, Object, Object, Object, Object, String, Object, Object])
117
+ ], RetiredCardRequests);
@@ -0,0 +1,33 @@
1
+ import { BaseModel } from './BaseModel';
2
+ /**
3
+ * Retired Card Workflow Status Enum
4
+ */
5
+ export declare enum RetiredCardWorkFlowStatus {
6
+ COMPLETED = "Completed",
7
+ NOT_YET_STARTED = "Not Yet Started",
8
+ PENDING = "Pending",
9
+ IN_PROGRESS = "In Progress"
10
+ }
11
+ /**
12
+ * Retired Card Workflow Table
13
+ * Tracks the progress of the request through different workflow stages
14
+ * Provides a timeline/audit trail of the process
15
+ *
16
+ * Workflow: Employee → Security Department (no approval cycle, but workflow tracking for consistency)
17
+ */
18
+ export declare class RetiredCardWorkFlow extends BaseModel {
19
+ retired_card_request_id: number;
20
+ retired_card_approval_details_id: number;
21
+ content: string;
22
+ status: RetiredCardWorkFlowStatus;
23
+ user_id: number | null;
24
+ role_id: number | null;
25
+ department_id: number | null;
26
+ section_id: number | null;
27
+ level: number;
28
+ access_type: string | null;
29
+ action_taken: string | null;
30
+ action_date: Date | null;
31
+ service_id: number | null;
32
+ sub_service_id: number | null;
33
+ }
@@ -0,0 +1,93 @@
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.RetiredCardWorkFlow = exports.RetiredCardWorkFlowStatus = void 0;
13
+ const typeorm_1 = require("typeorm");
14
+ const BaseModel_1 = require("./BaseModel");
15
+ /**
16
+ * Retired Card Workflow Status Enum
17
+ */
18
+ var RetiredCardWorkFlowStatus;
19
+ (function (RetiredCardWorkFlowStatus) {
20
+ RetiredCardWorkFlowStatus["COMPLETED"] = "Completed";
21
+ RetiredCardWorkFlowStatus["NOT_YET_STARTED"] = "Not Yet Started";
22
+ RetiredCardWorkFlowStatus["PENDING"] = "Pending";
23
+ RetiredCardWorkFlowStatus["IN_PROGRESS"] = "In Progress";
24
+ })(RetiredCardWorkFlowStatus || (exports.RetiredCardWorkFlowStatus = RetiredCardWorkFlowStatus = {}));
25
+ /**
26
+ * Retired Card Workflow Table
27
+ * Tracks the progress of the request through different workflow stages
28
+ * Provides a timeline/audit trail of the process
29
+ *
30
+ * Workflow: Employee → Security Department (no approval cycle, but workflow tracking for consistency)
31
+ */
32
+ let RetiredCardWorkFlow = class RetiredCardWorkFlow extends BaseModel_1.BaseModel {
33
+ };
34
+ exports.RetiredCardWorkFlow = RetiredCardWorkFlow;
35
+ __decorate([
36
+ (0, typeorm_1.Column)({ type: 'int', nullable: false }),
37
+ __metadata("design:type", Number)
38
+ ], RetiredCardWorkFlow.prototype, "retired_card_request_id", void 0);
39
+ __decorate([
40
+ (0, typeorm_1.Column)({ type: 'int', nullable: false, default: 0 }),
41
+ __metadata("design:type", Number)
42
+ ], RetiredCardWorkFlow.prototype, "retired_card_approval_details_id", void 0);
43
+ __decorate([
44
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: false }),
45
+ __metadata("design:type", String)
46
+ ], RetiredCardWorkFlow.prototype, "content", void 0);
47
+ __decorate([
48
+ (0, typeorm_1.Column)({ type: 'enum', enum: RetiredCardWorkFlowStatus, default: RetiredCardWorkFlowStatus.NOT_YET_STARTED, nullable: false }),
49
+ __metadata("design:type", String)
50
+ ], RetiredCardWorkFlow.prototype, "status", void 0);
51
+ __decorate([
52
+ (0, typeorm_1.Column)({ type: 'integer', nullable: true }),
53
+ __metadata("design:type", Object)
54
+ ], RetiredCardWorkFlow.prototype, "user_id", void 0);
55
+ __decorate([
56
+ (0, typeorm_1.Column)({ type: 'integer', nullable: true }),
57
+ __metadata("design:type", Object)
58
+ ], RetiredCardWorkFlow.prototype, "role_id", void 0);
59
+ __decorate([
60
+ (0, typeorm_1.Column)({ type: 'integer', nullable: true }),
61
+ __metadata("design:type", Object)
62
+ ], RetiredCardWorkFlow.prototype, "department_id", void 0);
63
+ __decorate([
64
+ (0, typeorm_1.Column)({ type: 'integer', nullable: true }),
65
+ __metadata("design:type", Object)
66
+ ], RetiredCardWorkFlow.prototype, "section_id", void 0);
67
+ __decorate([
68
+ (0, typeorm_1.Column)({ type: 'integer', nullable: false, default: 1 }),
69
+ __metadata("design:type", Number)
70
+ ], RetiredCardWorkFlow.prototype, "level", void 0);
71
+ __decorate([
72
+ (0, typeorm_1.Column)({ type: 'varchar', length: 50, nullable: true }),
73
+ __metadata("design:type", Object)
74
+ ], RetiredCardWorkFlow.prototype, "access_type", void 0);
75
+ __decorate([
76
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
77
+ __metadata("design:type", Object)
78
+ ], RetiredCardWorkFlow.prototype, "action_taken", void 0);
79
+ __decorate([
80
+ (0, typeorm_1.Column)({ type: 'timestamptz', nullable: true }),
81
+ __metadata("design:type", Object)
82
+ ], RetiredCardWorkFlow.prototype, "action_date", void 0);
83
+ __decorate([
84
+ (0, typeorm_1.Column)({ type: 'integer', nullable: true }),
85
+ __metadata("design:type", Object)
86
+ ], RetiredCardWorkFlow.prototype, "service_id", void 0);
87
+ __decorate([
88
+ (0, typeorm_1.Column)({ type: 'integer', nullable: true }),
89
+ __metadata("design:type", Object)
90
+ ], RetiredCardWorkFlow.prototype, "sub_service_id", void 0);
91
+ exports.RetiredCardWorkFlow = RetiredCardWorkFlow = __decorate([
92
+ (0, typeorm_1.Entity)({ name: 'retired_card_workflows' })
93
+ ], RetiredCardWorkFlow);
@@ -4,5 +4,6 @@ export declare class Sections extends BaseModel {
4
4
  section_code: string;
5
5
  section_description: string;
6
6
  department_id: number;
7
- constructor(section_name: string, section_code: string, section_description: string, department_id: number);
7
+ is_followup_sec?: boolean;
8
+ constructor(section_name: string, section_code: string, section_description: string, department_id: number, is_followup_sec: boolean);
8
9
  }
@@ -13,12 +13,13 @@ exports.Sections = void 0;
13
13
  const typeorm_1 = require("typeorm");
14
14
  const BaseModel_1 = require("./BaseModel");
15
15
  let Sections = class Sections extends BaseModel_1.BaseModel {
16
- constructor(section_name, section_code, section_description, department_id) {
16
+ constructor(section_name, section_code, section_description, department_id, is_followup_sec) {
17
17
  super();
18
18
  this.section_name = section_name;
19
19
  this.section_code = section_code;
20
20
  this.section_description = section_description;
21
21
  this.department_id = department_id;
22
+ this.is_followup_sec = is_followup_sec;
22
23
  }
23
24
  };
24
25
  exports.Sections = Sections;
@@ -38,7 +39,11 @@ __decorate([
38
39
  (0, typeorm_1.Column)({ type: 'bigint', nullable: true }),
39
40
  __metadata("design:type", Number)
40
41
  ], Sections.prototype, "department_id", void 0);
42
+ __decorate([
43
+ (0, typeorm_1.Column)({ nullable: true, default: false }),
44
+ __metadata("design:type", Boolean)
45
+ ], Sections.prototype, "is_followup_sec", void 0);
41
46
  exports.Sections = Sections = __decorate([
42
47
  (0, typeorm_1.Entity)({ name: 'sections' }),
43
- __metadata("design:paramtypes", [String, String, String, Number])
48
+ __metadata("design:paramtypes", [String, String, String, Number, Boolean])
44
49
  ], Sections);
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/foreign-ministry",
3
- "version": "1.2.100",
3
+ "version": "1.2.101",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {