@platform-modules/foreign-ministry 1.3.256 → 1.3.258

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.
@@ -4,4 +4,7 @@ export declare class RecruitmentDomesticWorkersDetails extends BaseModel {
4
4
  domestic_worker_salary: string | null;
5
5
  domestic_worker_name: string | null;
6
6
  date_of_joining: string | null;
7
+ currency_type: string | null;
8
+ passport_number: string | null;
9
+ civil_id: string | null;
7
10
  }
@@ -31,6 +31,18 @@ __decorate([
31
31
  (0, typeorm_1.Column)({ type: 'date', nullable: true }),
32
32
  __metadata("design:type", Object)
33
33
  ], RecruitmentDomesticWorkersDetails.prototype, "date_of_joining", void 0);
34
+ __decorate([
35
+ (0, typeorm_1.Column)({ type: 'varchar', length: 50, nullable: true }),
36
+ __metadata("design:type", Object)
37
+ ], RecruitmentDomesticWorkersDetails.prototype, "currency_type", void 0);
38
+ __decorate([
39
+ (0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
40
+ __metadata("design:type", Object)
41
+ ], RecruitmentDomesticWorkersDetails.prototype, "passport_number", void 0);
42
+ __decorate([
43
+ (0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
44
+ __metadata("design:type", Object)
45
+ ], RecruitmentDomesticWorkersDetails.prototype, "civil_id", void 0);
34
46
  exports.RecruitmentDomesticWorkersDetails = RecruitmentDomesticWorkersDetails = __decorate([
35
47
  (0, typeorm_1.Entity)({ name: 'recruitment_domestic_workers_details' })
36
48
  ], RecruitmentDomesticWorkersDetails);
@@ -21,4 +21,5 @@ export declare class TransferAllowanceRequests extends BaseModel {
21
21
  amount: string | null;
22
22
  currency_type: string | null;
23
23
  destination: string | null;
24
+ mission_type: string | null;
24
25
  }
@@ -81,6 +81,10 @@ __decorate([
81
81
  (0, typeorm_1.Column)({ type: 'varchar', length: 500, nullable: true }),
82
82
  __metadata("design:type", Object)
83
83
  ], TransferAllowanceRequests.prototype, "destination", void 0);
84
+ __decorate([
85
+ (0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
86
+ __metadata("design:type", Object)
87
+ ], TransferAllowanceRequests.prototype, "mission_type", void 0);
84
88
  exports.TransferAllowanceRequests = TransferAllowanceRequests = __decorate([
85
89
  (0, typeorm_1.Entity)({ name: 'transfer_allowance_requests' })
86
90
  ], TransferAllowanceRequests);
@@ -15,7 +15,11 @@ export declare class TransferSalaryBankAccountRequests extends BaseModel {
15
15
  user_id: number;
16
16
  status: TransferSalaryBankAccountRequestStatus;
17
17
  workflow_execution_id: string | null;
18
- domestic_worker_salary: string | null;
19
- domestic_worker_name: string | null;
20
- date_of_joining: string | null;
18
+ request_type: string | null;
19
+ account_number: string | null;
20
+ iban_number: string | null;
21
+ bank_name: string | null;
22
+ branch_code: string | null;
23
+ account_holder_name: string | null;
24
+ percentage_of_salary: string | null;
21
25
  }
@@ -58,17 +58,33 @@ __decorate([
58
58
  __metadata("design:type", Object)
59
59
  ], TransferSalaryBankAccountRequests.prototype, "workflow_execution_id", void 0);
60
60
  __decorate([
61
- (0, typeorm_1.Column)({ type: 'decimal', precision: 15, scale: 2, nullable: true }),
61
+ (0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
62
62
  __metadata("design:type", Object)
63
- ], TransferSalaryBankAccountRequests.prototype, "domestic_worker_salary", void 0);
63
+ ], TransferSalaryBankAccountRequests.prototype, "request_type", void 0);
64
64
  __decorate([
65
65
  (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
66
66
  __metadata("design:type", Object)
67
- ], TransferSalaryBankAccountRequests.prototype, "domestic_worker_name", void 0);
67
+ ], TransferSalaryBankAccountRequests.prototype, "account_number", void 0);
68
68
  __decorate([
69
- (0, typeorm_1.Column)({ type: 'date', nullable: true }),
69
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
70
+ __metadata("design:type", Object)
71
+ ], TransferSalaryBankAccountRequests.prototype, "iban_number", void 0);
72
+ __decorate([
73
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
74
+ __metadata("design:type", Object)
75
+ ], TransferSalaryBankAccountRequests.prototype, "bank_name", void 0);
76
+ __decorate([
77
+ (0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
78
+ __metadata("design:type", Object)
79
+ ], TransferSalaryBankAccountRequests.prototype, "branch_code", void 0);
80
+ __decorate([
81
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
82
+ __metadata("design:type", Object)
83
+ ], TransferSalaryBankAccountRequests.prototype, "account_holder_name", void 0);
84
+ __decorate([
85
+ (0, typeorm_1.Column)({ type: 'decimal', precision: 8, scale: 2, nullable: true }),
70
86
  __metadata("design:type", Object)
71
- ], TransferSalaryBankAccountRequests.prototype, "date_of_joining", void 0);
87
+ ], TransferSalaryBankAccountRequests.prototype, "percentage_of_salary", void 0);
72
88
  exports.TransferSalaryBankAccountRequests = TransferSalaryBankAccountRequests = __decorate([
73
89
  (0, typeorm_1.Entity)({ name: 'transfer_salary_bank_account_requests' })
74
90
  ], TransferSalaryBankAccountRequests);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/foreign-ministry",
3
- "version": "1.3.256",
3
+ "version": "1.3.258",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -14,4 +14,13 @@ export class RecruitmentDomesticWorkersDetails extends BaseModel {
14
14
 
15
15
  @Column({ type: 'date', nullable: true })
16
16
  date_of_joining: string | null;
17
+
18
+ @Column({ type: 'varchar', length: 50, nullable: true })
19
+ currency_type: string | null;
20
+
21
+ @Column({ type: 'varchar', length: 100, nullable: true })
22
+ passport_number: string | null;
23
+
24
+ @Column({ type: 'varchar', length: 100, nullable: true })
25
+ civil_id: string | null;
17
26
  }
@@ -55,4 +55,7 @@ export class TransferAllowanceRequests extends BaseModel {
55
55
 
56
56
  @Column({ type: 'varchar', length: 500, nullable: true })
57
57
  destination: string | null;
58
+
59
+ @Column({ type: 'varchar', length: 100, nullable: true })
60
+ mission_type: string | null;
58
61
  }
@@ -38,12 +38,24 @@ export class TransferSalaryBankAccountRequests extends BaseModel {
38
38
  @Column({ type: 'varchar', nullable: true })
39
39
  workflow_execution_id: string | null;
40
40
 
41
- @Column({ type: 'decimal', precision: 15, scale: 2, nullable: true })
42
- domestic_worker_salary: string | null;
41
+ @Column({ type: 'varchar', length: 100, nullable: true })
42
+ request_type: string | null;
43
43
 
44
44
  @Column({ type: 'varchar', length: 255, nullable: true })
45
- domestic_worker_name: string | null;
45
+ account_number: string | null;
46
46
 
47
- @Column({ type: 'date', nullable: true })
48
- date_of_joining: string | null;
47
+ @Column({ type: 'varchar', length: 255, nullable: true })
48
+ iban_number: string | null;
49
+
50
+ @Column({ type: 'varchar', length: 255, nullable: true })
51
+ bank_name: string | null;
52
+
53
+ @Column({ type: 'varchar', length: 100, nullable: true })
54
+ branch_code: string | null;
55
+
56
+ @Column({ type: 'varchar', length: 255, nullable: true })
57
+ account_holder_name: string | null;
58
+
59
+ @Column({ type: 'decimal', precision: 8, scale: 2, nullable: true })
60
+ percentage_of_salary: string | null;
49
61
  }