@platform-modules/foreign-ministry 1.2.39 → 1.2.100

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 (65) hide show
  1. package/.env +1 -1
  2. package/dist/data-source.js +1 -5
  3. package/dist/index.d.ts +0 -2
  4. package/dist/index.js +0 -2
  5. package/dist/models/DiplomaticRequestsModel.d.ts +0 -1
  6. package/dist/models/DiplomaticRequestsModel.js +0 -4
  7. package/dist/models/GeneralServiceChatsModel.d.ts +1 -3
  8. package/dist/models/GeneralServiceChatsModel.js +2 -12
  9. package/dist/models/MissionTravelApprovalModel.d.ts +2 -1
  10. package/dist/models/MissionTravelApprovalModel.js +2 -1
  11. package/dist/models/MissionTravelClassConfigModel.d.ts +10 -0
  12. package/dist/models/MissionTravelClassConfigModel.js +50 -0
  13. package/dist/models/MissionTravelPerdiemModel.d.ts +10 -0
  14. package/dist/models/MissionTravelPerdiemModel.js +54 -0
  15. package/package.json +1 -1
  16. package/src/data-source.ts +268 -273
  17. package/src/index.ts +0 -2
  18. package/src/models/DiplomaticClubSubscriptionMasterModel.ts +26 -26
  19. package/src/models/DiplomaticRequestsModel.ts +154 -157
  20. package/src/models/GeneralServiceChatsModel.ts +1 -11
  21. package/src/models/LeaveConfigModel.ts +71 -71
  22. package/src/models/MissionTravelApprovalModel.ts +95 -94
  23. package/src/models/MissionTravelAttachmentModel.ts +56 -56
  24. package/src/models/MissionTravelChatModel.ts +52 -52
  25. package/src/models/MissionTravelPersonModel.ts +105 -105
  26. package/src/models/MissionTravelRequestModel.ts +1 -0
  27. package/src/models/MissionTravelWorkflowModel.ts +54 -54
  28. package/dist/models/DiplomaticClubCardApprovalModel.d.ts +0 -16
  29. package/dist/models/DiplomaticClubCardApprovalModel.js +0 -58
  30. package/dist/models/DiplomaticClubCardAttachmentModel.d.ts +0 -9
  31. package/dist/models/DiplomaticClubCardAttachmentModel.js +0 -44
  32. package/dist/models/DiplomaticClubCardChatModel.d.ts +0 -7
  33. package/dist/models/DiplomaticClubCardChatModel.js +0 -36
  34. package/dist/models/DiplomaticClubCardMemberModel.d.ts +0 -13
  35. package/dist/models/DiplomaticClubCardMemberModel.js +0 -60
  36. package/dist/models/DiplomaticClubCardRequestModel.d.ts +0 -33
  37. package/dist/models/DiplomaticClubCardRequestModel.js +0 -98
  38. package/dist/models/DiplomaticClubCardWorkFlowModel.d.ts +0 -12
  39. package/dist/models/DiplomaticClubCardWorkFlowModel.js +0 -42
  40. package/dist/models/DiplomaticServiceDetailsModel.d.ts +0 -20
  41. package/dist/models/DiplomaticServiceDetailsModel.js +0 -65
  42. package/dist/models/DiplomaticSettingsModel.d.ts +0 -11
  43. package/dist/models/DiplomaticSettingsModel.js +0 -59
  44. package/dist/models/DiplomaticTitleModel.d.ts +0 -12
  45. package/dist/models/DiplomaticTitleModel.js +0 -45
  46. package/dist/models/HelpdeskAutoClosureConfig.d.ts +0 -12
  47. package/dist/models/HelpdeskAutoClosureConfig.js +0 -59
  48. package/dist/models/HelpdeskKnowledgeBase.d.ts +0 -13
  49. package/dist/models/HelpdeskKnowledgeBase.js +0 -61
  50. package/dist/models/PassportRequestApprovalModel.d.ts +0 -22
  51. package/dist/models/PassportRequestApprovalModel.js +0 -91
  52. package/dist/models/PassportRequestAttachmentModel.d.ts +0 -10
  53. package/dist/models/PassportRequestAttachmentModel.js +0 -54
  54. package/dist/models/PassportRequestChatModel.d.ts +0 -8
  55. package/dist/models/PassportRequestChatModel.js +0 -44
  56. package/dist/models/PassportRequestDependentModel.d.ts +0 -20
  57. package/dist/models/PassportRequestDependentModel.js +0 -85
  58. package/dist/models/PassportRequestModel.d.ts +0 -40
  59. package/dist/models/PassportRequestModel.js +0 -128
  60. package/dist/models/PassportRequestWorkFlowModel.d.ts +0 -15
  61. package/dist/models/PassportRequestWorkFlowModel.js +0 -60
  62. package/dist/models/SubscriptionAmountModel.d.ts +0 -67
  63. package/dist/models/SubscriptionAmountModel.js +0 -114
  64. package/src/models/HelpdeskAutoClosureConfig.ts +0 -41
  65. package/src/models/HelpdeskKnowledgeBase.ts +0 -46
@@ -1,157 +1,154 @@
1
- import { Column, Entity, OneToOne, OneToMany, ManyToOne, JoinColumn } from "typeorm";
2
- import { BaseModel } from './BaseModel';
3
-
4
- // Import types only (not for runtime)
5
- import type { DiplomaticApprovals } from './DiplomaticApprovalsModel';
6
- import type { DiplomaticWorkFlow } from './DiplomaticWorkFlowModel';
7
- import type { DiplomaticAttachments } from './DiplomaticAttachmentsModel';
8
- import type { DiplomaticChats } from './DiplomaticChatsModel';
9
- import type { DiplomaticClubCardMembers } from './DiplomaticClubCardMembersModel';
10
-
11
- export enum DiplomaticRequestStatus {
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
-
22
- @Entity({ name: 'diplomatic_requests' })
23
- export class DiplomaticRequests extends BaseModel {
24
- @Column({ type: 'int' })
25
- user_id: number;
26
-
27
- @Column({ type: 'varchar', length: 100 })
28
- employee_id: string;
29
-
30
- @Column({ type: 'varchar', length: 255 })
31
- employee_name: string;
32
-
33
- @Column({ type: 'varchar', length: 100, nullable: true })
34
- grade: string | null;
35
-
36
- @Column({ type: 'int', nullable: true })
37
- designation_id: number | null;
38
-
39
- @Column({ type: 'int', nullable: true })
40
- department_id: number | null;
41
-
42
- @Column({ type: 'varchar', length: 255 })
43
- email_address: string;
44
-
45
- @Column({ type: 'varchar', length: 20 })
46
- contact_number: string;
47
-
48
- @Column({ type: 'timestamp', default: () => 'CURRENT_TIMESTAMP' })
49
- request_date: Date;
50
-
51
- @Column({ type: 'enum', enum: DiplomaticRequestStatus, default: DiplomaticRequestStatus.PENDING })
52
- request_status: DiplomaticRequestStatus;
53
-
54
- @Column({ type: 'timestamp', nullable: true })
55
- request_close_date: Date | null;
56
-
57
- @Column({ type: 'date', nullable: true })
58
- end_date: Date | null;
59
-
60
- @Column({ type: 'text', nullable: true })
61
- remarks: string | null;
62
-
63
- @Column({ type: 'int', nullable: true })
64
- current_approval_level: number | null;
65
-
66
- @Column({ type: 'int', nullable: true })
67
- current_approver_id: number | null;
68
-
69
- @Column({ type: 'int', nullable: true })
70
- service_id: number | null;
71
-
72
- @Column({ type: 'int', nullable: true })
73
- sub_service_id: number | null;
74
-
75
- @Column({ type: 'varchar', length: 255, nullable: true })
76
- member_name: string | null;
77
-
78
- @Column({ type: 'varchar', length: 100, nullable: true })
79
- membership_type: string | null;
80
-
81
- @Column({ type: 'int', nullable: true })
82
- diplomatic_title_id: number | null;
83
-
84
- @Column({ type: 'varchar', length: 255, nullable: true })
85
- location: string | null;
86
-
87
- @Column({ type: 'varchar', length: 100, nullable: true })
88
- request_type: string | null;
89
-
90
- @Column({ type: 'date', nullable: true })
91
- expiry_date: Date | null;
92
-
93
- @Column({ type: 'varchar', length: 500, nullable: true })
94
- photo_url: string | null;
95
-
96
- @Column({ type: 'varchar', length: 100, nullable: true })
97
- membership_id: string | null;
98
-
99
- @Column({ type: 'varchar', length: 255, nullable: true })
100
- organization: string | null;
101
-
102
- @Column({ type: 'decimal', precision: 10, scale: 2, nullable: true })
103
- subscription_amount: number | null;
104
-
105
- @Column({ type: 'int', nullable: true })
106
- section_id: number | null;
107
-
108
- @Column({ type: 'int', nullable: true })
109
- reporting_manager: number | null;
110
-
111
- @Column({ type: 'varchar', length: 255, nullable: true })
112
- workflow_execution_id: string | null;
113
-
114
- @Column({ type: 'json', nullable: true })
115
- titles: any[] | null;
116
-
117
- @OneToMany('DiplomaticClubCardMembers', 'diplomaticRequest', { nullable: true })
118
- diplomaticClubCardMembers?: DiplomaticClubCardMembers[];
119
-
120
- @OneToMany('DiplomaticApprovals', 'diplomaticRequest')
121
- approvals?: DiplomaticApprovals[];
122
-
123
- @OneToMany('DiplomaticWorkFlow', 'diplomaticRequest')
124
- workflows?: DiplomaticWorkFlow[];
125
-
126
- @OneToMany('DiplomaticAttachments', 'diplomaticRequest')
127
- attachments?: DiplomaticAttachments[];
128
-
129
- @OneToMany('DiplomaticChats', 'diplomaticRequest')
130
- chats?: DiplomaticChats[];
131
-
132
- constructor(
133
- user_id: number,
134
- employee_id: string,
135
- employee_name: string,
136
- email_address: string,
137
- contact_number: string,
138
- service_id: number | null,
139
- sub_service_id: number | null,
140
- section_id: number | null,
141
- reporting_manager: number | null
142
- ) {
143
- super();
144
- this.user_id = user_id;
145
- this.employee_id = employee_id;
146
- this.employee_name = employee_name;
147
- this.email_address = email_address;
148
- this.contact_number = contact_number;
149
- this.request_date = new Date();
150
- this.request_status = DiplomaticRequestStatus.PENDING;
151
- this.service_id = service_id;
152
- this.sub_service_id = sub_service_id;
153
- this.section_id = section_id;
154
- this.reporting_manager = reporting_manager;
155
- }
156
- }
157
-
1
+ import { Column, Entity, OneToOne, OneToMany, ManyToOne, JoinColumn } from "typeorm";
2
+ import { BaseModel } from './BaseModel';
3
+
4
+ // Import types only (not for runtime)
5
+ import type { DiplomaticApprovals } from './DiplomaticApprovalsModel';
6
+ import type { DiplomaticWorkFlow } from './DiplomaticWorkFlowModel';
7
+ import type { DiplomaticAttachments } from './DiplomaticAttachmentsModel';
8
+ import type { DiplomaticChats } from './DiplomaticChatsModel';
9
+ import type { DiplomaticClubCardMembers } from './DiplomaticClubCardMembersModel';
10
+
11
+ export enum DiplomaticRequestStatus {
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
+
22
+ @Entity({ name: 'diplomatic_requests' })
23
+ export class DiplomaticRequests extends BaseModel {
24
+ @Column({ type: 'int' })
25
+ user_id: number;
26
+
27
+ @Column({ type: 'varchar', length: 100 })
28
+ employee_id: string;
29
+
30
+ @Column({ type: 'varchar', length: 255 })
31
+ employee_name: string;
32
+
33
+ @Column({ type: 'varchar', length: 100, nullable: true })
34
+ grade: string | null;
35
+
36
+ @Column({ type: 'int', nullable: true })
37
+ designation_id: number | null;
38
+
39
+ @Column({ type: 'int', nullable: true })
40
+ department_id: number | null;
41
+
42
+ @Column({ type: 'varchar', length: 255 })
43
+ email_address: string;
44
+
45
+ @Column({ type: 'varchar', length: 20 })
46
+ contact_number: string;
47
+
48
+ @Column({ type: 'timestamp', default: () => 'CURRENT_TIMESTAMP' })
49
+ request_date: Date;
50
+
51
+ @Column({ type: 'enum', enum: DiplomaticRequestStatus, default: DiplomaticRequestStatus.PENDING })
52
+ request_status: DiplomaticRequestStatus;
53
+
54
+ @Column({ type: 'timestamp', nullable: true })
55
+ request_close_date: Date | null;
56
+
57
+ @Column({ type: 'date', nullable: true })
58
+ end_date: Date | null;
59
+
60
+ @Column({ type: 'text', nullable: true })
61
+ remarks: string | null;
62
+
63
+ @Column({ type: 'int', nullable: true })
64
+ current_approval_level: number | null;
65
+
66
+ @Column({ type: 'int', nullable: true })
67
+ current_approver_id: number | null;
68
+
69
+ @Column({ type: 'int', nullable: true })
70
+ service_id: number | null;
71
+
72
+ @Column({ type: 'int', nullable: true })
73
+ sub_service_id: number | null;
74
+
75
+ @Column({ type: 'varchar', length: 255, nullable: true })
76
+ member_name: string | null;
77
+
78
+ @Column({ type: 'varchar', length: 100, nullable: true })
79
+ membership_type: string | null;
80
+
81
+ @Column({ type: 'int', nullable: true })
82
+ diplomatic_title_id: number | null;
83
+
84
+ @Column({ type: 'varchar', length: 255, nullable: true })
85
+ location: string | null;
86
+
87
+ @Column({ type: 'varchar', length: 100, nullable: true })
88
+ request_type: string | null;
89
+
90
+ @Column({ type: 'date', nullable: true })
91
+ expiry_date: Date | null;
92
+
93
+ @Column({ type: 'varchar', length: 500, nullable: true })
94
+ photo_url: string | null;
95
+
96
+ @Column({ type: 'varchar', length: 100, nullable: true })
97
+ membership_id: string | null;
98
+
99
+ @Column({ type: 'varchar', length: 255, nullable: true })
100
+ organization: string | null;
101
+
102
+ @Column({ type: 'decimal', precision: 10, scale: 2, nullable: true })
103
+ subscription_amount: number | null;
104
+
105
+ @Column({ type: 'int', nullable: true })
106
+ section_id: number | null;
107
+
108
+ @Column({ type: 'int', nullable: true })
109
+ reporting_manager: number | null;
110
+
111
+ @Column({ type: 'varchar', length: 255, nullable: true })
112
+ workflow_execution_id: string | null;
113
+
114
+ @OneToMany('DiplomaticClubCardMembers', 'diplomaticRequest', { nullable: true })
115
+ diplomaticClubCardMembers?: DiplomaticClubCardMembers[];
116
+
117
+ @OneToMany('DiplomaticApprovals', 'diplomaticRequest')
118
+ approvals?: DiplomaticApprovals[];
119
+
120
+ @OneToMany('DiplomaticWorkFlow', 'diplomaticRequest')
121
+ workflows?: DiplomaticWorkFlow[];
122
+
123
+ @OneToMany('DiplomaticAttachments', 'diplomaticRequest')
124
+ attachments?: DiplomaticAttachments[];
125
+
126
+ @OneToMany('DiplomaticChats', 'diplomaticRequest')
127
+ chats?: DiplomaticChats[];
128
+
129
+ constructor(
130
+ user_id: number,
131
+ employee_id: string,
132
+ employee_name: string,
133
+ email_address: string,
134
+ contact_number: string,
135
+ service_id: number | null,
136
+ sub_service_id: number | null,
137
+ section_id: number | null,
138
+ reporting_manager: number | null
139
+ ) {
140
+ super();
141
+ this.user_id = user_id;
142
+ this.employee_id = employee_id;
143
+ this.employee_name = employee_name;
144
+ this.email_address = email_address;
145
+ this.contact_number = contact_number;
146
+ this.request_date = new Date();
147
+ this.request_status = DiplomaticRequestStatus.PENDING;
148
+ this.service_id = service_id;
149
+ this.sub_service_id = sub_service_id;
150
+ this.section_id = section_id;
151
+ this.reporting_manager = reporting_manager;
152
+ }
153
+ }
154
+
@@ -12,12 +12,6 @@ export class GeneralServiceChats extends BaseModel {
12
12
  @Column({ type: 'int' })
13
13
  sender_user_id: number;
14
14
 
15
- @Column({ type: 'int', nullable: true })
16
- sender_role_id: number | null;
17
-
18
- @Column({ type: 'varchar', length: 100, nullable: true })
19
- status: string | null;
20
-
21
15
  @Column({ type: 'int', nullable: true })
22
16
  service_id: number | null; // For filtering and multi-service support
23
17
 
@@ -32,9 +26,7 @@ export class GeneralServiceChats extends BaseModel {
32
26
  content: string,
33
27
  sender_user_id: number,
34
28
  service_id?: number | null,
35
- sub_service_id?: number | null,
36
- sender_role_id?: number | null,
37
- status?: string | null
29
+ sub_service_id?: number | null
38
30
  ) {
39
31
  super();
40
32
  this.request_id = request_id;
@@ -42,8 +34,6 @@ export class GeneralServiceChats extends BaseModel {
42
34
  this.sender_user_id = sender_user_id;
43
35
  this.service_id = service_id || null;
44
36
  this.sub_service_id = sub_service_id || null;
45
- this.sender_role_id = sender_role_id || null;
46
- this.status = status || null;
47
37
  }
48
38
  }
49
39
 
@@ -1,72 +1,72 @@
1
- import { Column, Entity } from "typeorm";
2
- import { BaseModel } from './BaseModel';
3
-
4
- export enum enumFrequency {
5
- Monthly = 'Monthly',
6
- Yearly = 'Yearly',
7
- }
8
-
9
- //This model is used to store the Financial Grade declaration on the Admin Side
10
- @Entity({ name: 'leave_configuration' })
11
- export class LeaveConfiguration extends BaseModel {
12
-
13
- @Column({ type: 'varchar', nullable: true })
14
- category: string;
15
-
16
- @Column({ type: 'int', nullable: true })
17
- MandC_id: number;
18
-
19
- @Column({ type: 'int', nullable: true })
20
- leave_type_id: number;
21
-
22
- @Column({ type: 'varchar', nullable: true })
23
- frequency: enumFrequency;
24
-
25
- @Column({ type: 'varchar', nullable: true })
26
- region: string;
27
-
28
- @Column({ type: 'varchar', nullable: true })
29
- country: string;
30
-
31
- @Column({ type: 'varchar', nullable: true })
32
- location: string;
33
-
34
- @Column({ nullable: true, default: false })
35
- is_carryforward: boolean;
36
-
37
- @Column({ type: 'int', nullable: true, default: 0 })
38
- carryforward_limit: number;
39
-
40
- @Column({ type: 'date', nullable: true })
41
- from_date: Date;
42
-
43
- @Column({ type: 'date', nullable: true })
44
- to_date: Date;
45
-
46
- @Column({ type: 'varchar', nullable: true })
47
- reason: string;
48
-
49
- @Column({ type: 'int', nullable: true })
50
- emergency_balance_days: number | null;
51
-
52
- @Column({ type: 'date', nullable: true })
53
- last_credited: Date | null;
54
-
55
- constructor(category: string, MandC_id: number, leave_type_id: number, frequency: enumFrequency, region: string, country: string, location: string, is_carryforward: boolean, carryforward_limit: number, from_date: Date, to_date: Date, reason: string, emergency_balance_days?: number|null, last_credited?: Date|null) {
56
- super();
57
- this.category = category;
58
- this.MandC_id = MandC_id;
59
- this.leave_type_id = leave_type_id;
60
- this.frequency = frequency;
61
- this.region = region;
62
- this.country = country;
63
- this.location = location;
64
- this.is_carryforward = is_carryforward;
65
- this.carryforward_limit = carryforward_limit;
66
- this.from_date = from_date;
67
- this.to_date = to_date;
68
- this.reason = reason;
69
- this.emergency_balance_days = emergency_balance_days ?? null;
70
- this.last_credited = last_credited ?? null;
71
- }
1
+ import { Column, Entity } from "typeorm";
2
+ import { BaseModel } from './BaseModel';
3
+
4
+ export enum enumFrequency {
5
+ Monthly = 'Monthly',
6
+ Yearly = 'Yearly',
7
+ }
8
+
9
+ //This model is used to store the Financial Grade declaration on the Admin Side
10
+ @Entity({ name: 'leave_configuration' })
11
+ export class LeaveConfiguration extends BaseModel {
12
+
13
+ @Column({ type: 'varchar', nullable: true })
14
+ category: string;
15
+
16
+ @Column({ type: 'int', nullable: true })
17
+ MandC_id: number;
18
+
19
+ @Column({ type: 'int', nullable: true })
20
+ leave_type_id: number;
21
+
22
+ @Column({ type: 'varchar', nullable: true })
23
+ frequency: enumFrequency;
24
+
25
+ @Column({ type: 'varchar', nullable: true })
26
+ region: string;
27
+
28
+ @Column({ type: 'varchar', nullable: true })
29
+ country: string;
30
+
31
+ @Column({ type: 'varchar', nullable: true })
32
+ location: string;
33
+
34
+ @Column({ nullable: true, default: false })
35
+ is_carryforward: boolean;
36
+
37
+ @Column({ type: 'int', nullable: true, default: 0 })
38
+ carryforward_limit: number;
39
+
40
+ @Column({ type: 'date', nullable: true })
41
+ from_date: Date;
42
+
43
+ @Column({ type: 'date', nullable: true })
44
+ to_date: Date;
45
+
46
+ @Column({ type: 'varchar', nullable: true })
47
+ reason: string;
48
+
49
+ @Column({ type: 'int', nullable: true })
50
+ emergency_balance_days: number | null;
51
+
52
+ @Column({ type: 'date', nullable: true })
53
+ last_credited: Date | null;
54
+
55
+ constructor(category: string, MandC_id: number, leave_type_id: number, frequency: enumFrequency, region: string, country: string, location: string, is_carryforward: boolean, carryforward_limit: number, from_date: Date, to_date: Date, reason: string, emergency_balance_days?: number|null, last_credited?: Date|null) {
56
+ super();
57
+ this.category = category;
58
+ this.MandC_id = MandC_id;
59
+ this.leave_type_id = leave_type_id;
60
+ this.frequency = frequency;
61
+ this.region = region;
62
+ this.country = country;
63
+ this.location = location;
64
+ this.is_carryforward = is_carryforward;
65
+ this.carryforward_limit = carryforward_limit;
66
+ this.from_date = from_date;
67
+ this.to_date = to_date;
68
+ this.reason = reason;
69
+ this.emergency_balance_days = emergency_balance_days ?? null;
70
+ this.last_credited = last_credited ?? null;
71
+ }
72
72
  }