@dynamatix/gb-schemas 2.0.39 → 2.0.41
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/dist/entities/applicants/loan-commitment.entity.d.ts +15 -6
- package/dist/entities/applicants/loan-commitment.entity.d.ts.map +1 -1
- package/dist/entities/applicants/loan-commitment.entity.js +10 -0
- package/dist/entities/users/role.entity.d.ts +1 -1
- package/entities/applicants/loan-commitment.entity.ts +28 -8
- package/entities/users/role.entity.ts +1 -1
- package/package.json +1 -1
- package/prisma/applicants/loan-commitment.prisma +21 -21
- package/prisma/migrations/20250513183558_update_loan_commitment_schema/migration.sql +33 -0
- package/prisma/migrations/20250513184341_update_loan_commitment_schema/migration.sql +4 -0
- package/prisma/migrations/20250513202307_update_role_schema/migration.sql +12 -0
- package/prisma/schema.prisma +23 -24
- package/prisma/shared/lookup.prisma +1 -2
- package/prisma/users/role.prisma +3 -3
|
@@ -1,20 +1,29 @@
|
|
|
1
|
+
import { ApplicantEntity } from './applicant.entity';
|
|
2
|
+
import { LookupEntity } from '../shared/lookup.entity';
|
|
1
3
|
export declare class LoanCommitmentEntity {
|
|
2
4
|
id: string;
|
|
3
5
|
applicantId: string;
|
|
4
6
|
commitmentId: string;
|
|
5
|
-
commitmentTypeLid?: string;
|
|
6
7
|
lenderName: string;
|
|
7
|
-
loanTypeLid
|
|
8
|
-
securityDetails
|
|
9
|
-
purpose
|
|
10
|
-
doHaveSharedResponsibility
|
|
11
|
-
sharedMortgage
|
|
8
|
+
loanTypeLid?: string;
|
|
9
|
+
securityDetails?: string;
|
|
10
|
+
purpose: string;
|
|
11
|
+
doHaveSharedResponsibility?: boolean;
|
|
12
|
+
sharedMortgage?: string;
|
|
12
13
|
remainingTerm?: string;
|
|
13
14
|
startDate: string;
|
|
14
15
|
outstandingBalance: number;
|
|
15
16
|
monthlyPayment: number;
|
|
17
|
+
source?: string;
|
|
18
|
+
isSelected?: boolean;
|
|
19
|
+
loanRationale?: string;
|
|
16
20
|
createdAt: Date;
|
|
17
21
|
updatedAt: Date;
|
|
22
|
+
applicant?: ApplicantEntity;
|
|
23
|
+
loanType?: LookupEntity;
|
|
18
24
|
constructor(partial: Partial<LoanCommitmentEntity>);
|
|
25
|
+
get applicationId(): string | undefined;
|
|
26
|
+
get lendingType(): string | undefined;
|
|
27
|
+
get doHaveSharedResponsibilityDisplay(): string;
|
|
19
28
|
}
|
|
20
29
|
//# sourceMappingURL=loan-commitment.entity.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"loan-commitment.entity.d.ts","sourceRoot":"","sources":["../../../entities/applicants/loan-commitment.entity.ts"],"names":[],"mappings":"AAAA,qBAAa,oBAAoB;IAC7B,EAAE,EAAG,MAAM,CAAC;IACZ,WAAW,EAAG,MAAM,CAAC;IACrB,YAAY,EAAG,MAAM,CAAC;IACtB,
|
|
1
|
+
{"version":3,"file":"loan-commitment.entity.d.ts","sourceRoot":"","sources":["../../../entities/applicants/loan-commitment.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAEvD,qBAAa,oBAAoB;IAC7B,EAAE,EAAG,MAAM,CAAC;IACZ,WAAW,EAAG,MAAM,CAAC;IACrB,YAAY,EAAG,MAAM,CAAC;IACtB,UAAU,EAAG,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,OAAO,EAAG,MAAM,CAAC;IACjB,0BAA0B,CAAC,EAAE,OAAO,CAAC;IACrC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,SAAS,EAAG,MAAM,CAAC;IACnB,kBAAkB,EAAG,MAAM,CAAC;IAC5B,cAAc,EAAG,MAAM,CAAC;IACxB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,SAAS,EAAG,IAAI,CAAC;IACjB,SAAS,EAAG,IAAI,CAAC;IAGjB,SAAS,CAAC,EAAE,eAAe,CAAC;IAC5B,QAAQ,CAAC,EAAE,YAAY,CAAC;gBAEZ,OAAO,EAAE,OAAO,CAAC,oBAAoB,CAAC;IAKlD,IAAI,aAAa,IAAI,MAAM,GAAG,SAAS,CAEtC;IAED,IAAI,WAAW,IAAI,MAAM,GAAG,SAAS,CAEpC;IAED,IAAI,iCAAiC,IAAI,MAAM,CAE9C;CACJ"}
|
|
@@ -2,4 +2,14 @@ export class LoanCommitmentEntity {
|
|
|
2
2
|
constructor(partial) {
|
|
3
3
|
Object.assign(this, partial);
|
|
4
4
|
}
|
|
5
|
+
// Virtual properties from Mongoose model
|
|
6
|
+
get applicationId() {
|
|
7
|
+
return this.applicant?.applicationId;
|
|
8
|
+
}
|
|
9
|
+
get lendingType() {
|
|
10
|
+
return this.applicant?.application?.lendingType?.name;
|
|
11
|
+
}
|
|
12
|
+
get doHaveSharedResponsibilityDisplay() {
|
|
13
|
+
return this.doHaveSharedResponsibility ? "Yes" : "No";
|
|
14
|
+
}
|
|
5
15
|
}
|
|
@@ -1,24 +1,44 @@
|
|
|
1
|
+
import { ApplicantEntity } from './applicant.entity';
|
|
2
|
+
import { LookupEntity } from '../shared/lookup.entity';
|
|
3
|
+
|
|
1
4
|
export class LoanCommitmentEntity {
|
|
2
5
|
id!: string;
|
|
3
6
|
applicantId!: string;
|
|
4
7
|
commitmentId!: string;
|
|
5
|
-
commitmentTypeLid?: string;
|
|
6
8
|
lenderName!: string;
|
|
7
|
-
loanTypeLid
|
|
8
|
-
securityDetails
|
|
9
|
-
purpose
|
|
10
|
-
doHaveSharedResponsibility
|
|
11
|
-
sharedMortgage
|
|
9
|
+
loanTypeLid?: string;
|
|
10
|
+
securityDetails?: string;
|
|
11
|
+
purpose!: string;
|
|
12
|
+
doHaveSharedResponsibility?: boolean;
|
|
13
|
+
sharedMortgage?: string;
|
|
12
14
|
remainingTerm?: string;
|
|
13
15
|
startDate!: string;
|
|
14
16
|
outstandingBalance!: number;
|
|
15
17
|
monthlyPayment!: number;
|
|
18
|
+
source?: string;
|
|
19
|
+
isSelected?: boolean;
|
|
20
|
+
loanRationale?: string;
|
|
16
21
|
createdAt!: Date;
|
|
17
22
|
updatedAt!: Date;
|
|
18
23
|
|
|
24
|
+
// Relations
|
|
25
|
+
applicant?: ApplicantEntity;
|
|
26
|
+
loanType?: LookupEntity; // Relation field for loanType
|
|
27
|
+
|
|
19
28
|
constructor(partial: Partial<LoanCommitmentEntity>) {
|
|
20
29
|
Object.assign(this, partial);
|
|
21
30
|
}
|
|
22
31
|
|
|
23
|
-
//
|
|
24
|
-
|
|
32
|
+
// Virtual properties from Mongoose model
|
|
33
|
+
get applicationId(): string | undefined {
|
|
34
|
+
return this.applicant?.applicationId;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
get lendingType(): string | undefined {
|
|
38
|
+
return this.applicant?.application?.lendingType?.name;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
get doHaveSharedResponsibilityDisplay(): string {
|
|
42
|
+
return this.doHaveSharedResponsibility ? "Yes" : "No";
|
|
43
|
+
}
|
|
44
|
+
}
|
package/package.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
model LoanCommitment {
|
|
2
|
-
id
|
|
3
|
-
applicantId
|
|
4
|
-
commitmentId
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
2
|
+
id String @id @default(uuid())
|
|
3
|
+
applicantId String @map("applicant_id")
|
|
4
|
+
commitmentId String @unique @map("commitment_id")
|
|
5
|
+
lenderName String @map("lender_name")
|
|
6
|
+
loanTypeLid String? @map("loan_type_lid")
|
|
7
|
+
securityDetails String? @map("security_details")
|
|
8
|
+
purpose String @map("purpose")
|
|
9
|
+
doHaveSharedResponsibility Boolean? @map("do_have_shared_responsibility")
|
|
10
|
+
sharedMortgage String? @map("shared_mortgage")
|
|
11
|
+
remainingTerm String? @map("remaining_term")
|
|
12
|
+
startDate String @map("start_date")
|
|
13
|
+
outstandingBalance Decimal @map("outstanding_balance") @db.Decimal(10, 2)
|
|
14
|
+
monthlyPayment Decimal @map("monthly_payment") @db.Decimal(10, 2)
|
|
15
|
+
source String? @default("Broker") @map("source")
|
|
16
|
+
isSelected Boolean? @default(true) @map("is_selected")
|
|
17
|
+
loanRationale String? @default("") @map("loan_rationale")
|
|
18
|
+
createdAt DateTime @default(now()) @map("created_at")
|
|
19
|
+
updatedAt DateTime @updatedAt @map("updated_at")
|
|
19
20
|
|
|
20
21
|
// Relations
|
|
21
|
-
applicant
|
|
22
|
-
|
|
23
|
-
loanType Lookup @relation("LoanType", fields: [loanTypeLid], references: [id])
|
|
22
|
+
applicant Applicant @relation("ApplicantLoanCommitments", fields: [applicantId], references: [id])
|
|
23
|
+
loanType Lookup? @relation("LoanType", fields: [loanTypeLid], references: [id])
|
|
24
24
|
|
|
25
25
|
@@map("applicant_loan_commitments")
|
|
26
|
-
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Warnings:
|
|
3
|
+
|
|
4
|
+
- You are about to drop the column `commitment_type_lid` on the `applicant_loan_commitments` table. All the data in the column will be lost.
|
|
5
|
+
- You are about to drop the column `joint_names` on the `applicant_loan_commitments` table. All the data in the column will be lost.
|
|
6
|
+
- You are about to alter the column `outstanding_balance` on the `applicant_loan_commitments` table. The data in that column could be lost. The data in that column will be cast from `Decimal(65,30)` to `Decimal(10,2)`.
|
|
7
|
+
- You are about to alter the column `monthly_payment` on the `applicant_loan_commitments` table. The data in that column could be lost. The data in that column will be cast from `Decimal(65,30)` to `Decimal(10,2)`.
|
|
8
|
+
- A unique constraint covering the columns `[commitment_id]` on the table `applicant_loan_commitments` will be added. If there are existing duplicate values, this will fail.
|
|
9
|
+
- Made the column `purpose` on table `applicant_loan_commitments` required. This step will fail if there are existing NULL values in that column.
|
|
10
|
+
|
|
11
|
+
*/
|
|
12
|
+
-- DropForeignKey
|
|
13
|
+
ALTER TABLE "applicant_loan_commitments" DROP CONSTRAINT "applicant_loan_commitments_commitment_type_lid_fkey";
|
|
14
|
+
|
|
15
|
+
-- DropForeignKey
|
|
16
|
+
ALTER TABLE "applicant_loan_commitments" DROP CONSTRAINT "applicant_loan_commitments_loan_type_lid_fkey";
|
|
17
|
+
|
|
18
|
+
-- AlterTable
|
|
19
|
+
ALTER TABLE "applicant_loan_commitments" DROP COLUMN "commitment_type_lid",
|
|
20
|
+
DROP COLUMN "joint_names",
|
|
21
|
+
ALTER COLUMN "loan_type_lid" DROP NOT NULL,
|
|
22
|
+
ALTER COLUMN "security_details" DROP NOT NULL,
|
|
23
|
+
ALTER COLUMN "purpose" SET NOT NULL,
|
|
24
|
+
ALTER COLUMN "do_have_shared_responsibility" DROP NOT NULL,
|
|
25
|
+
ALTER COLUMN "shared_mortgage" DROP NOT NULL,
|
|
26
|
+
ALTER COLUMN "outstanding_balance" SET DATA TYPE DECIMAL(10,2),
|
|
27
|
+
ALTER COLUMN "monthly_payment" SET DATA TYPE DECIMAL(10,2);
|
|
28
|
+
|
|
29
|
+
-- CreateIndex
|
|
30
|
+
CREATE UNIQUE INDEX "applicant_loan_commitments_commitment_id_key" ON "applicant_loan_commitments"("commitment_id");
|
|
31
|
+
|
|
32
|
+
-- AddForeignKey
|
|
33
|
+
ALTER TABLE "applicant_loan_commitments" ADD CONSTRAINT "applicant_loan_commitments_loan_type_lid_fkey" FOREIGN KEY ("loan_type_lid") REFERENCES "lookups"("id") ON DELETE SET NULL ON UPDATE CASCADE;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Warnings:
|
|
3
|
+
|
|
4
|
+
- Changed the type of `role_id` on the `roles` table. No cast exists, the column would be dropped and recreated, which cannot be done if there is data, since the column is required.
|
|
5
|
+
|
|
6
|
+
*/
|
|
7
|
+
-- AlterTable
|
|
8
|
+
ALTER TABLE "roles" DROP COLUMN "role_id",
|
|
9
|
+
ADD COLUMN "role_id" INTEGER NOT NULL;
|
|
10
|
+
|
|
11
|
+
-- CreateIndex
|
|
12
|
+
CREATE UNIQUE INDEX "roles_role_id_key" ON "roles"("role_id");
|
package/prisma/schema.prisma
CHANGED
|
@@ -223,8 +223,7 @@ model Lookup {
|
|
|
223
223
|
registeredCountry_incomes ApplicantIncome[] @relation("RegisteredCountry")
|
|
224
224
|
|
|
225
225
|
// LoanCommitment Relations
|
|
226
|
-
|
|
227
|
-
loanType_loanCommitments LoanCommitment[] @relation("LoanType")
|
|
226
|
+
loanType_loanCommitments LoanCommitment[] @relation("LoanType")
|
|
228
227
|
|
|
229
228
|
// Applicant Relations
|
|
230
229
|
addressCountry_applicants Applicant[] @relation("AddressCountry")
|
|
@@ -332,7 +331,7 @@ model RoleGroup {
|
|
|
332
331
|
// From prisma/users/role.prisma
|
|
333
332
|
model Role {
|
|
334
333
|
id String @id @default(uuid())
|
|
335
|
-
roleId
|
|
334
|
+
roleId Int @unique @map("role_id")
|
|
336
335
|
name String
|
|
337
336
|
description String?
|
|
338
337
|
createdAt DateTime @default(now()) @map("created_at")
|
|
@@ -340,7 +339,7 @@ model Role {
|
|
|
340
339
|
|
|
341
340
|
// Relations
|
|
342
341
|
permissions Permission[]
|
|
343
|
-
roleGroups RoleGroup[]
|
|
342
|
+
roleGroups RoleGroup[] @relation("RoleToRoleGroup")
|
|
344
343
|
|
|
345
344
|
@@map("roles")
|
|
346
345
|
}
|
|
@@ -926,28 +925,28 @@ model CreditCardCommitment {
|
|
|
926
925
|
|
|
927
926
|
// From prisma/applicants/loan-commitment.prisma
|
|
928
927
|
model LoanCommitment {
|
|
929
|
-
id
|
|
930
|
-
applicantId
|
|
931
|
-
commitmentId
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
928
|
+
id String @id @default(uuid())
|
|
929
|
+
applicantId String @map("applicant_id")
|
|
930
|
+
commitmentId String @unique @map("commitment_id")
|
|
931
|
+
lenderName String @map("lender_name")
|
|
932
|
+
loanTypeLid String? @map("loan_type_lid")
|
|
933
|
+
securityDetails String? @map("security_details")
|
|
934
|
+
purpose String @map("purpose")
|
|
935
|
+
doHaveSharedResponsibility Boolean? @map("do_have_shared_responsibility")
|
|
936
|
+
sharedMortgage String? @map("shared_mortgage")
|
|
937
|
+
remainingTerm String? @map("remaining_term")
|
|
938
|
+
startDate String @map("start_date")
|
|
939
|
+
outstandingBalance Decimal @map("outstanding_balance") @db.Decimal(10, 2)
|
|
940
|
+
monthlyPayment Decimal @map("monthly_payment") @db.Decimal(10, 2)
|
|
941
|
+
source String? @default("Broker") @map("source")
|
|
942
|
+
isSelected Boolean? @default(true) @map("is_selected")
|
|
943
|
+
loanRationale String? @default("") @map("loan_rationale")
|
|
944
|
+
createdAt DateTime @default(now()) @map("created_at")
|
|
945
|
+
updatedAt DateTime @updatedAt @map("updated_at")
|
|
946
946
|
|
|
947
947
|
// Relations
|
|
948
|
-
applicant
|
|
949
|
-
|
|
950
|
-
loanType Lookup @relation("LoanType", fields: [loanTypeLid], references: [id])
|
|
948
|
+
applicant Applicant @relation("ApplicantLoanCommitments", fields: [applicantId], references: [id])
|
|
949
|
+
loanType Lookup? @relation("LoanType", fields: [loanTypeLid], references: [id])
|
|
951
950
|
|
|
952
951
|
@@map("applicant_loan_commitments")
|
|
953
952
|
}
|
|
@@ -102,8 +102,7 @@ model Lookup {
|
|
|
102
102
|
registeredCountry_incomes ApplicantIncome[] @relation("RegisteredCountry")
|
|
103
103
|
|
|
104
104
|
// LoanCommitment Relations
|
|
105
|
-
|
|
106
|
-
loanType_loanCommitments LoanCommitment[] @relation("LoanType")
|
|
105
|
+
loanType_loanCommitments LoanCommitment[] @relation("LoanType")
|
|
107
106
|
|
|
108
107
|
// Applicant Relations
|
|
109
108
|
addressCountry_applicants Applicant[] @relation("AddressCountry")
|
package/prisma/users/role.prisma
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
model Role {
|
|
2
2
|
id String @id @default(uuid())
|
|
3
|
-
roleId
|
|
3
|
+
roleId Int @unique @map("role_id")
|
|
4
4
|
name String
|
|
5
5
|
description String?
|
|
6
6
|
createdAt DateTime @default(now()) @map("created_at")
|
|
@@ -8,7 +8,7 @@ model Role {
|
|
|
8
8
|
|
|
9
9
|
// Relations
|
|
10
10
|
permissions Permission[]
|
|
11
|
-
roleGroups RoleGroup[]
|
|
11
|
+
roleGroups RoleGroup[] @relation("RoleToRoleGroup")
|
|
12
12
|
|
|
13
13
|
@@map("roles")
|
|
14
|
-
}
|
|
14
|
+
}
|