@dynamatix/gb-schemas 1.2.126 → 1.2.127

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 (64) hide show
  1. package/dist/applicants/applicant-credit-data.model.js +11 -11
  2. package/dist/applicants/applicant-credit-profile.model.js +20 -20
  3. package/dist/applicants/applicant-direct-debit.model.js +17 -17
  4. package/dist/applicants/applicant-employment.model.js +48 -48
  5. package/dist/applicants/applicant-expenditure.model.js +54 -62
  6. package/dist/applicants/applicant-income.model.js +78 -78
  7. package/dist/applicants/applicant-risk-narrative.model.js +13 -13
  8. package/dist/applicants/applicant.model.d.ts +1 -1
  9. package/dist/applicants/applicant.model.d.ts.map +1 -1
  10. package/dist/applicants/applicant.model.js +226 -228
  11. package/dist/applicants/index.js +18 -18
  12. package/dist/applications/application-audit.model.js +42 -42
  13. package/dist/applications/application-checklist-Item.model.js +45 -45
  14. package/dist/applications/application-company-model.js +120 -120
  15. package/dist/applications/application-credit-profile.model.js +12 -12
  16. package/dist/applications/application-direct-debit.model.js +92 -92
  17. package/dist/applications/application-document.model.js +35 -35
  18. package/dist/applications/application-fieldconfig.model.js +7 -7
  19. package/dist/applications/application-illustration-model.js +6 -6
  20. package/dist/applications/application-legal.model.js +7 -7
  21. package/dist/applications/application-mortgage.model.d.ts +6 -0
  22. package/dist/applications/application-mortgage.model.d.ts.map +1 -1
  23. package/dist/applications/application-mortgage.model.js +268 -268
  24. package/dist/applications/application-note.model.js +78 -78
  25. package/dist/applications/application-offer.model.js +6 -6
  26. package/dist/applications/application-onboarding.model.js +9 -9
  27. package/dist/applications/application-product.model.js +67 -67
  28. package/dist/applications/application-rationale.model.js +38 -38
  29. package/dist/applications/application-risk-narrative.model.js +12 -12
  30. package/dist/applications/application-valuation.model.js +15 -15
  31. package/dist/applications/application.model.js +153 -153
  32. package/dist/applications/broker.model.js +21 -21
  33. package/dist/applications/document.model.js +35 -35
  34. package/dist/applications/index.js +20 -20
  35. package/dist/applications/solicitor.model.js +114 -114
  36. package/dist/index.js +7 -7
  37. package/dist/product-catalogues/index.js +3 -3
  38. package/dist/product-catalogues/product-catalogue.model.js +18 -18
  39. package/dist/product-catalogues/product-definitions.model.js +26 -26
  40. package/dist/product-catalogues/product-variant.model.js +12 -12
  41. package/dist/properties/index.js +2 -2
  42. package/dist/properties/property.model.js +144 -144
  43. package/dist/shared/alert.model.js +24 -24
  44. package/dist/shared/apprivo-sync-journey.model.js +17 -17
  45. package/dist/shared/checklist.model.js +30 -30
  46. package/dist/shared/document-type-model.js +10 -10
  47. package/dist/shared/index.js +12 -12
  48. package/dist/shared/job-run.model.js +14 -14
  49. package/dist/shared/job-setting.model.js +11 -11
  50. package/dist/shared/lookup-group.model.js +16 -16
  51. package/dist/shared/lookup.model.js +20 -20
  52. package/dist/shared/system-parameter.model.js +32 -32
  53. package/dist/shared/task-document.model.js +23 -23
  54. package/dist/shared/task.model.js +15 -15
  55. package/dist/underwriter/index.js +1 -1
  56. package/dist/underwriter/underwriter.model.js +17 -17
  57. package/dist/users/auth-log.model.js +21 -21
  58. package/dist/users/index.js +6 -6
  59. package/dist/users/permission.model.js +10 -10
  60. package/dist/users/role-group.model.js +14 -14
  61. package/dist/users/role.model.js +13 -13
  62. package/dist/users/tasks.model.js +15 -15
  63. package/dist/users/user.model.js +30 -30
  64. package/package.json +1 -1
@@ -1,11 +1,11 @@
1
- import mongoose from "mongoose";
2
- const applicantCreditDataSchema = new mongoose.Schema({
3
- bankruptcy: { type: String, required: true },
4
- countyCourtJudgment: { type: String, required: true },
5
- creditDefaults: { type: String },
6
- securedArrears: { type: String, required: true },
7
- statusLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", default: null, required: true },
8
- unsecuredArrears: { type: String, required: true },
9
- valid: { type: String, required: true },
10
- });
11
- export default applicantCreditDataSchema;
1
+ import mongoose from "mongoose";
2
+ const applicantCreditDataSchema = new mongoose.Schema({
3
+ bankruptcy: { type: String, required: true },
4
+ countyCourtJudgment: { type: String, required: true },
5
+ creditDefaults: { type: String },
6
+ securedArrears: { type: String, required: true },
7
+ statusLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", default: null, required: true },
8
+ unsecuredArrears: { type: String, required: true },
9
+ valid: { type: String, required: true },
10
+ });
11
+ export default applicantCreditDataSchema;
@@ -1,20 +1,20 @@
1
- import mongoose from "mongoose";
2
- const creditProfileSchema = new mongoose.Schema({
3
- anyVoluntaryEnforcedPossessionNo: {
4
- type: String,
5
- required: true
6
- },
7
- bankruptcyNo: {
8
- type: String,
9
- required: true
10
- },
11
- ccjInLastThreeYearNo: {
12
- type: String,
13
- required: true
14
- },
15
- defaultsInLastYearNo: {
16
- type: String,
17
- required: true
18
- }
19
- });
20
- export default creditProfileSchema;
1
+ import mongoose from "mongoose";
2
+ const creditProfileSchema = new mongoose.Schema({
3
+ anyVoluntaryEnforcedPossessionNo: {
4
+ type: String,
5
+ required: true
6
+ },
7
+ bankruptcyNo: {
8
+ type: String,
9
+ required: true
10
+ },
11
+ ccjInLastThreeYearNo: {
12
+ type: String,
13
+ required: true
14
+ },
15
+ defaultsInLastYearNo: {
16
+ type: String,
17
+ required: true
18
+ }
19
+ });
20
+ export default creditProfileSchema;
@@ -1,17 +1,17 @@
1
- import mongoose from 'mongoose';
2
- const applicantDirectDebitSchema = new mongoose.Schema({
3
- applicationId: { type: mongoose.Schema.Types.ObjectId, ref: 'Application' },
4
- accountNumber: { type: String },
5
- addressLine1: { type: String },
6
- addressLine2: { type: String },
7
- Applicants: { type: String },
8
- branch: { type: String },
9
- city: { type: String },
10
- contactPostcode: { type: String },
11
- institution: { type: String },
12
- isConfirmDeclaration: { type: String, default: false },
13
- nameOfAccountHolder: { type: String },
14
- selectedPaymentDay: { type: String },
15
- sortCode: { type: String }
16
- }, { timestamps: true });
17
- export default applicantDirectDebitSchema;
1
+ import mongoose from 'mongoose';
2
+ const applicantDirectDebitSchema = new mongoose.Schema({
3
+ applicationId: { type: mongoose.Schema.Types.ObjectId, ref: 'Application' },
4
+ accountNumber: { type: String },
5
+ addressLine1: { type: String },
6
+ addressLine2: { type: String },
7
+ Applicants: { type: String },
8
+ branch: { type: String },
9
+ city: { type: String },
10
+ contactPostcode: { type: String },
11
+ institution: { type: String },
12
+ isConfirmDeclaration: { type: String, default: false },
13
+ nameOfAccountHolder: { type: String },
14
+ selectedPaymentDay: { type: String },
15
+ sortCode: { type: String }
16
+ }, { timestamps: true });
17
+ export default applicantDirectDebitSchema;
@@ -1,48 +1,48 @@
1
- import mongoose from "mongoose";
2
- import { Pound } from "../value-objects/pound";
3
- const applicantEmploymentSchema = new mongoose.Schema({
4
- applicantId: { type: mongoose.Schema.Types.ObjectId, ref: "Applicant", required: true },
5
- acceptableIncomeLids: [{ type: mongoose.Schema.Types.ObjectId, ref: "Lookup", required: true }],
6
- addressCity: { type: String, default: null },
7
- addressCountryLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", required: true },
8
- addressLine1: { type: String, required: true },
9
- addressLine2: { type: String, default: null },
10
- addressLine3: { type: String, default: null },
11
- addressPostCode: { type: String, required: true },
12
- averageBonusPreviousTwoYears: { type: Pound, default: 0.00 },
13
- basicGrossIncome: { type: Pound, default: 0.00 },
14
- contractRemaining: { type: String },
15
- dateJoined: { type: String, required: true },
16
- disabilityLiving: { type: Pound, default: 0.00 },
17
- employerName: { type: String, required: true },
18
- employerTelephone: { type: String, default: null },
19
- housingAllowance: { type: Pound, default: 0.00 },
20
- industryLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", required: true },
21
- isUnderTerminationNotice: { type: Boolean, default: false },
22
- jobTitleLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", required: true },
23
- maintenance: { type: Pound, default: 0.00 },
24
- maternityIncome: { type: Pound, default: 0.00 },
25
- natureOfBusiness: { type: String, required: true },
26
- pensionIncome: { type: Pound, default: 0.00 },
27
- previousAddressCity: { type: String, default: null },
28
- previousAddressCountry: { type: String, required: true },
29
- previousAddressLine1: { type: String, required: true },
30
- previousAddressLine2: { type: String, default: null },
31
- previousAddressLine3: { type: String, default: null },
32
- previousAddressPostCode: { type: String, required: true },
33
- previousBasicGrossIncome: { type: Pound, default: 0.00, required: true },
34
- previousDateJoined: { type: String, required: true },
35
- previousDateLeft: { type: String, required: true },
36
- previousEmployerName: { type: String, required: true },
37
- previousEmployerTelephone: { type: String, default: null },
38
- previousJobTitle: { type: String, required: true },
39
- previousNatureOfBusiness: { type: String, required: true },
40
- referenceContact: { type: String, default: null },
41
- referenceContactEmail: { type: String, required: true },
42
- underTerminationNoticeNote: { type: String, default: null }
43
- }, {
44
- toJSON: { getters: true },
45
- toObject: { getters: true }
46
- });
47
- const ApplicantEmployment = mongoose.model("Applicant_Employment_Information", applicantEmploymentSchema);
48
- export default ApplicantEmployment;
1
+ import mongoose from "mongoose";
2
+ import { Pound } from "../value-objects/pound";
3
+ const applicantEmploymentSchema = new mongoose.Schema({
4
+ applicantId: { type: mongoose.Schema.Types.ObjectId, ref: "Applicant", required: true },
5
+ acceptableIncomeLids: [{ type: mongoose.Schema.Types.ObjectId, ref: "Lookup", required: true }],
6
+ addressCity: { type: String, default: null },
7
+ addressCountryLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", required: true },
8
+ addressLine1: { type: String, required: true },
9
+ addressLine2: { type: String, default: null },
10
+ addressLine3: { type: String, default: null },
11
+ addressPostCode: { type: String, required: true },
12
+ averageBonusPreviousTwoYears: { type: Pound, default: 0.00 },
13
+ basicGrossIncome: { type: Pound, default: 0.00 },
14
+ contractRemaining: { type: String },
15
+ dateJoined: { type: String, required: true },
16
+ disabilityLiving: { type: Pound, default: 0.00 },
17
+ employerName: { type: String, required: true },
18
+ employerTelephone: { type: String, default: null },
19
+ housingAllowance: { type: Pound, default: 0.00 },
20
+ industryLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", required: true },
21
+ isUnderTerminationNotice: { type: Boolean, default: false },
22
+ jobTitleLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", required: true },
23
+ maintenance: { type: Pound, default: 0.00 },
24
+ maternityIncome: { type: Pound, default: 0.00 },
25
+ natureOfBusiness: { type: String, required: true },
26
+ pensionIncome: { type: Pound, default: 0.00 },
27
+ previousAddressCity: { type: String, default: null },
28
+ previousAddressCountry: { type: String, required: true },
29
+ previousAddressLine1: { type: String, required: true },
30
+ previousAddressLine2: { type: String, default: null },
31
+ previousAddressLine3: { type: String, default: null },
32
+ previousAddressPostCode: { type: String, required: true },
33
+ previousBasicGrossIncome: { type: Pound, default: 0.00, required: true },
34
+ previousDateJoined: { type: String, required: true },
35
+ previousDateLeft: { type: String, required: true },
36
+ previousEmployerName: { type: String, required: true },
37
+ previousEmployerTelephone: { type: String, default: null },
38
+ previousJobTitle: { type: String, required: true },
39
+ previousNatureOfBusiness: { type: String, required: true },
40
+ referenceContact: { type: String, default: null },
41
+ referenceContactEmail: { type: String, required: true },
42
+ underTerminationNoticeNote: { type: String, default: null }
43
+ }, {
44
+ toJSON: { getters: true },
45
+ toObject: { getters: true }
46
+ });
47
+ const ApplicantEmployment = mongoose.model("Applicant_Employment_Information", applicantEmploymentSchema);
48
+ export default ApplicantEmployment;
@@ -1,62 +1,54 @@
1
- import mongoose from "mongoose";
2
- import { Pound } from "../value-objects/pound";
3
- const applicantExpenditureSchema = new mongoose.Schema({
4
- applicantId: {
5
- type: mongoose.Schema.Types.ObjectId,
6
- ref: "Applicant",
7
- required: true,
8
- description: "Reference to the applicant this expenditure record belongs to.",
9
- },
10
- isFixed: {
11
- type: Boolean,
12
- default: false,
13
- description: "True if all mandatory fields have been completed, otherwise false.",
14
- },
15
- expenditureTypeLid: {
16
- type: mongoose.Schema.Types.ObjectId,
17
- ref: "Lookup",
18
- default: null,
19
- description: "Essential expenditure lookup",
20
- },
21
- sectionName: {
22
- type: String,
23
- enum: [
24
- "essentialExpenditure",
25
- "basicCostOfLivingExpenditure"
26
- ],
27
- description: "Section of the application this expenditure belongs to.",
28
- },
29
- declared: {
30
- type: Pound,
31
- description: "Declared monthly expenditure amount provided by the applicant.",
32
- },
33
- expected: {
34
- type: Pound,
35
- description: "Office for National Statistics (ONS) benchmark monthly expenditure.",
36
- },
37
- actual: {
38
- type: Pound,
39
- description: "Actual monthly expenditure verified based on applicant's evidence.",
40
- },
41
- rationale: {
42
- type: String,
43
- description: "Rationalized monthly expenditure used for affordability assessment.",
44
- }
45
- }, {
46
- timestamps: true,
47
- toJSON: { virtuals: true },
48
- toObject: { virtuals: true },
49
- });
50
- // Virtual property for essentialExpenditure
51
- const virtualEssentialExpenditure = applicantExpenditureSchema.virtual("ExpenditureType", {
52
- ref: "Lookup",
53
- localField: "expenditureTypeLid",
54
- foreignField: "_id",
55
- justOne: true,
56
- options: {
57
- select: "label",
58
- },
59
- });
60
- virtualEssentialExpenditure.description = "Populated lookup value for essential expenditure.";
61
- const ApplicantExpenditureModel = mongoose.model("Applicant_Expenditure", applicantExpenditureSchema);
62
- export default ApplicantExpenditureModel;
1
+ import mongoose from "mongoose";
2
+ import { Pound } from "../value-objects/pound";
3
+ const applicantExpenditureSchema = new mongoose.Schema({
4
+ applicantId: {
5
+ type: mongoose.Schema.Types.ObjectId,
6
+ ref: "Applicant",
7
+ required: true,
8
+ description: "Reference to the applicant this expenditure record belongs to.",
9
+ },
10
+ isFixed: {
11
+ type: Boolean,
12
+ default: false,
13
+ description: "True if all mandatory fields have been completed, otherwise false.",
14
+ },
15
+ expenditureTypeLid: {
16
+ type: mongoose.Schema.Types.ObjectId,
17
+ ref: "Lookup",
18
+ default: null,
19
+ description: "Essential expenditure lookup",
20
+ },
21
+ declared: {
22
+ type: Pound,
23
+ description: "Declared monthly expenditure amount provided by the applicant.",
24
+ },
25
+ ons: {
26
+ type: Pound,
27
+ description: "Office for National Statistics (ONS) benchmark monthly expenditure.",
28
+ },
29
+ actual: {
30
+ type: Pound,
31
+ description: "Actual monthly expenditure verified based on applicant's evidence.",
32
+ },
33
+ rationale: {
34
+ type: String,
35
+ description: "Rationalized monthly expenditure used for affordability assessment.",
36
+ }
37
+ }, {
38
+ timestamps: true,
39
+ toJSON: { virtuals: true },
40
+ toObject: { virtuals: true },
41
+ });
42
+ // Virtual property for essentialExpenditure
43
+ const virtualEssentialExpenditure = applicantExpenditureSchema.virtual("ExpenditureType", {
44
+ ref: "Lookup",
45
+ localField: "expenditureTypeLid",
46
+ foreignField: "_id",
47
+ justOne: true,
48
+ options: {
49
+ select: "label",
50
+ },
51
+ });
52
+ virtualEssentialExpenditure.description = "Populated lookup value for essential expenditure.";
53
+ const ApplicantExpenditureModel = mongoose.model("Applicant_Expenditure", applicantExpenditureSchema);
54
+ export default ApplicantExpenditureModel;
@@ -1,78 +1,78 @@
1
- import mongoose from "mongoose";
2
- import { Pound } from "../value-objects/pound";
3
- const incomeSchema = new mongoose.Schema({
4
- applicantId: { type: mongoose.Schema.Types.ObjectId, ref: "Applicant", required: true },
5
- accountantsAddressLine1: { type: String, required: true },
6
- accountantsAddressLine2: { type: String, required: true },
7
- accountantsAddressLine3: { type: String, required: true },
8
- accountantsCity: { type: String, default: '' },
9
- accountantsCountryLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", required: true },
10
- accountantsEmail: { type: String, required: true },
11
- accountantsPostCode: { type: String, required: true },
12
- accountantsPractice: { type: String, required: true },
13
- accountantsTelephoneNumber: { type: String, required: true },
14
- businessAddressLine1: { type: String, required: true },
15
- businessAddressLine2: { type: String, required: true },
16
- businessAddressLine3: { type: String, required: true },
17
- businessCity: { type: String, default: '' },
18
- businessCountryLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", required: true },
19
- businessPostCode: { type: String, required: true },
20
- businessTelephoneNumber: { type: String, required: true },
21
- businessTypeLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", required: true },
22
- charteredCertifiedOrOtherLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", required: true },
23
- contactName: { type: String, required: true },
24
- currentYearEnd: { type: String, required: true },
25
- dateEstablished: { type: String, required: true },
26
- doYouHaveAccountant: {
27
- type: Boolean,
28
- required: true,
29
- },
30
- isBusinessAddressDifferent: {
31
- type: Boolean,
32
- required: true,
33
- },
34
- nameOfBusiness: { type: String, required: true },
35
- natureOfBusiness: { type: String, required: true },
36
- netAssets1: { type: Pound, default: 0.00 },
37
- netAssets2: { type: Pound, default: 0.00 },
38
- netAssets3: { type: Pound, default: 0.00 },
39
- pageValidFlag: { type: String, default: true },
40
- percentageOfShareholding: { type: Number, required: true, min: 0, max: 100 },
41
- registeredAddressLine1: { type: String, required: true },
42
- registeredAddressLine2: { type: String, required: true },
43
- registeredAddressLine3: { type: String, required: true },
44
- registeredCity: { type: String, default: '' },
45
- registeredCountryLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", required: true },
46
- registeredPostCode: { type: String, required: true },
47
- registeredTelephone: { type: String, required: true },
48
- selfEmployedDate: { type: String, required: true },
49
- totalEmploymentGrossIncome: { type: Pound, default: 0.00 },
50
- totalEmploymentNetIncome: { type: Pound, default: 0.00 },
51
- isEmploymentIncomeConfirmed: { type: Boolean, default: false },
52
- employmentIncomeRationale: { type: String, default: null },
53
- isPensionIncomeConfirmed: { type: Boolean, default: false },
54
- pensionIncomeRationale: { type: String, default: null },
55
- totalAdditionalGrossIncome: { type: Pound, default: 0.00 },
56
- totalAdditionalNetIncome: { type: Pound, default: 0.00 },
57
- isAdditionalIncomeConfirmed: { type: Boolean, default: false },
58
- additionalIncomeRationale: { type: String, default: null },
59
- isUKTaxCreditsIncomeConfirmed: { type: Boolean, default: false },
60
- ukTaxCreditsIncomeRationale: { type: String, default: null },
61
- totalPropertyGrossIncome: { type: Pound, default: 0.00 },
62
- totalPropertyNetIncome: { type: Pound, default: 0.00 },
63
- isPropertyIncomeConfirmed: { type: Boolean, default: false },
64
- propertyIncomeRationale: { type: String, default: null },
65
- selfEmployedIncomeRationale: { type: String, default: null },
66
- isSelfEmployedIncomeConfirmed: { type: Boolean, default: false },
67
- totalSelfEmployedGrossIncome: { type: Pound, default: 0.00 },
68
- totalSelfEmployedNetIncome: { type: Pound, default: 0.00 },
69
- soleTraderIncomeRationale: { type: String, default: null },
70
- soleTraderIncomeConfirmed: { type: Boolean, default: false },
71
- soleTraderGrossIncome: { type: Pound, default: 0.00 },
72
- soleTraderNetIncome: { type: Pound, default: 0.00 },
73
- }, {
74
- toJSON: { getters: true },
75
- toObject: { getters: true }
76
- });
77
- const ApplicantIncomeModel = mongoose.model("Applicant_Income", incomeSchema);
78
- export default ApplicantIncomeModel;
1
+ import mongoose from "mongoose";
2
+ import { Pound } from "../value-objects/pound";
3
+ const incomeSchema = new mongoose.Schema({
4
+ applicantId: { type: mongoose.Schema.Types.ObjectId, ref: "Applicant", required: true },
5
+ accountantsAddressLine1: { type: String, required: true },
6
+ accountantsAddressLine2: { type: String, required: true },
7
+ accountantsAddressLine3: { type: String, required: true },
8
+ accountantsCity: { type: String, default: '' },
9
+ accountantsCountryLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", required: true },
10
+ accountantsEmail: { type: String, required: true },
11
+ accountantsPostCode: { type: String, required: true },
12
+ accountantsPractice: { type: String, required: true },
13
+ accountantsTelephoneNumber: { type: String, required: true },
14
+ businessAddressLine1: { type: String, required: true },
15
+ businessAddressLine2: { type: String, required: true },
16
+ businessAddressLine3: { type: String, required: true },
17
+ businessCity: { type: String, default: '' },
18
+ businessCountryLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", required: true },
19
+ businessPostCode: { type: String, required: true },
20
+ businessTelephoneNumber: { type: String, required: true },
21
+ businessTypeLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", required: true },
22
+ charteredCertifiedOrOtherLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", required: true },
23
+ contactName: { type: String, required: true },
24
+ currentYearEnd: { type: String, required: true },
25
+ dateEstablished: { type: String, required: true },
26
+ doYouHaveAccountant: {
27
+ type: Boolean,
28
+ required: true,
29
+ },
30
+ isBusinessAddressDifferent: {
31
+ type: Boolean,
32
+ required: true,
33
+ },
34
+ nameOfBusiness: { type: String, required: true },
35
+ natureOfBusiness: { type: String, required: true },
36
+ netAssets1: { type: Pound, default: 0.00 },
37
+ netAssets2: { type: Pound, default: 0.00 },
38
+ netAssets3: { type: Pound, default: 0.00 },
39
+ pageValidFlag: { type: String, default: true },
40
+ percentageOfShareholding: { type: Number, required: true, min: 0, max: 100 },
41
+ registeredAddressLine1: { type: String, required: true },
42
+ registeredAddressLine2: { type: String, required: true },
43
+ registeredAddressLine3: { type: String, required: true },
44
+ registeredCity: { type: String, default: '' },
45
+ registeredCountryLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", required: true },
46
+ registeredPostCode: { type: String, required: true },
47
+ registeredTelephone: { type: String, required: true },
48
+ selfEmployedDate: { type: String, required: true },
49
+ totalEmploymentGrossIncome: { type: Pound, default: 0.00 },
50
+ totalEmploymentNetIncome: { type: Pound, default: 0.00 },
51
+ isEmploymentIncomeConfirmed: { type: Boolean, default: false },
52
+ employmentIncomeRationale: { type: String, default: null },
53
+ isPensionIncomeConfirmed: { type: Boolean, default: false },
54
+ pensionIncomeRationale: { type: String, default: null },
55
+ totalAdditionalGrossIncome: { type: Pound, default: 0.00 },
56
+ totalAdditionalNetIncome: { type: Pound, default: 0.00 },
57
+ isAdditionalIncomeConfirmed: { type: Boolean, default: false },
58
+ additionalIncomeRationale: { type: String, default: null },
59
+ isUKTaxCreditsIncomeConfirmed: { type: Boolean, default: false },
60
+ ukTaxCreditsIncomeRationale: { type: String, default: null },
61
+ totalPropertyGrossIncome: { type: Pound, default: 0.00 },
62
+ totalPropertyNetIncome: { type: Pound, default: 0.00 },
63
+ isPropertyIncomeConfirmed: { type: Boolean, default: false },
64
+ propertyIncomeRationale: { type: String, default: null },
65
+ selfEmployedIncomeRationale: { type: String, default: null },
66
+ isSelfEmployedIncomeConfirmed: { type: Boolean, default: false },
67
+ totalSelfEmployedGrossIncome: { type: Pound, default: 0.00 },
68
+ totalSelfEmployedNetIncome: { type: Pound, default: 0.00 },
69
+ soleTraderIncomeRationale: { type: String, default: null },
70
+ soleTraderIncomeConfirmed: { type: Boolean, default: false },
71
+ soleTraderGrossIncome: { type: Pound, default: 0.00 },
72
+ soleTraderNetIncome: { type: Pound, default: 0.00 },
73
+ }, {
74
+ toJSON: { getters: true },
75
+ toObject: { getters: true }
76
+ });
77
+ const ApplicantIncomeModel = mongoose.model("Applicant_Income", incomeSchema);
78
+ export default ApplicantIncomeModel;
@@ -1,13 +1,13 @@
1
- import mongoose from 'mongoose';
2
- const applicantRiskNarrativeSchema = new mongoose.Schema({
3
- call2StatusLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", default: null },
4
- clientReference: { type: String },
5
- docVerificationStatusLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", default: null },
6
- isPoaTaskGenerated: { type: String },
7
- link: { type: String },
8
- riskLevel: { type: String },
9
- riskRating: { type: String },
10
- statusLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", default: null },
11
- verificationLinkSentOn: { type: String }
12
- });
13
- export default applicantRiskNarrativeSchema;
1
+ import mongoose from 'mongoose';
2
+ const applicantRiskNarrativeSchema = new mongoose.Schema({
3
+ call2StatusLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", default: null },
4
+ clientReference: { type: String },
5
+ docVerificationStatusLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", default: null },
6
+ isPoaTaskGenerated: { type: String },
7
+ link: { type: String },
8
+ riskLevel: { type: String },
9
+ riskRating: { type: String },
10
+ statusLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", default: null },
11
+ verificationLinkSentOn: { type: String }
12
+ });
13
+ export default applicantRiskNarrativeSchema;
@@ -45,7 +45,7 @@ interface IApplicant extends Document {
45
45
  isMortgageHPPCommitmentConfirmed: boolean;
46
46
  isSecuredLoanCommitmentConfirmed: boolean;
47
47
  isUnsecuredLoanCommitmentConfirmed: boolean;
48
- isExpenditureConfirmend: boolean;
48
+ isExpenditureConfirmed: boolean;
49
49
  creditCardRationale: string;
50
50
  mortgageHPPRationale: string;
51
51
  securedLoanRationale: string;
@@ -1 +1 @@
1
- {"version":3,"file":"applicant.model.d.ts","sourceRoot":"","sources":["../../applicants/applicant.model.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"applicant.model.d.ts","sourceRoot":"","sources":["../../applicants/applicant.model.ts"],"names":[],"mappings":"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"}