@dynamatix/gb-schemas 2.0.6 → 2.0.7
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.
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import { ApplicationEntity } from '../applications/application.entity';
|
|
2
2
|
import { LookupEntity } from '../shared/lookup.entity';
|
|
3
|
-
import { RiskNarrativeEntity } from './risk-narrative.entity';
|
|
4
3
|
import { OtherIncomeEntity } from './other-income.entity';
|
|
5
|
-
import { IncomeSourceEntity } from './applicant-income-source.entity';
|
|
6
4
|
import { ApplicantExpenditureEntity } from './applicant-expenditure.entity';
|
|
7
5
|
import { ApplicantCreditProfileEntity } from './applicant-credit-profile.entity';
|
|
8
6
|
import { PropertyIncomeEntity } from './property-income.entity';
|
|
9
7
|
import { ApplicantIncomeEntity } from './applicant-income.entity';
|
|
10
8
|
import { ApplicantCreditDataEntity } from './applicant-credit-data.entity';
|
|
11
9
|
import { ApplicantEmploymentEntity } from './applicant-employment.entity';
|
|
10
|
+
import { ApplicantIncomeSourceEntity } from './applicant-income-source.entity';
|
|
12
11
|
|
|
13
12
|
export class ApplicantEntity {
|
|
14
13
|
id!: string;
|
|
@@ -123,9 +122,8 @@ export class ApplicantEntity {
|
|
|
123
122
|
|
|
124
123
|
// Nested schemas
|
|
125
124
|
creditData?: ApplicantCreditDataEntity;
|
|
126
|
-
riskNarrative?: RiskNarrativeEntity;
|
|
127
125
|
otherIncome?: OtherIncomeEntity;
|
|
128
|
-
incomeSource?:
|
|
126
|
+
incomeSource?: ApplicantIncomeSourceEntity;
|
|
129
127
|
expenditure?: ApplicantExpenditureEntity;
|
|
130
128
|
creditProfile?: ApplicantCreditProfileEntity;
|
|
131
129
|
propertyIncome?: PropertyIncomeEntity;
|