@dynamatix/gb-schemas 1.3.363 → 1.3.364
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/applicants/applicant-credit-report.model.d.ts +396 -96
- package/dist/applicants/applicant-credit-report.model.d.ts.map +1 -1
- package/dist/applicants/applicant-credit-report.model.js +10 -3
- package/dist/applicants/applicant-credit-report.type.d.ts +12 -3
- package/dist/applicants/applicant-credit-report.type.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -32,7 +32,9 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
32
32
|
applicantName: string;
|
|
33
33
|
referenceNumber: string;
|
|
34
34
|
applicantDob: string;
|
|
35
|
-
|
|
35
|
+
requestDate: string;
|
|
36
|
+
expiredDate: string;
|
|
37
|
+
noticeofCorrection: any;
|
|
36
38
|
creditDefaults: string;
|
|
37
39
|
countyCourtJudgment: string;
|
|
38
40
|
securedArrears: string;
|
|
@@ -43,27 +45,33 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
43
45
|
dob: string;
|
|
44
46
|
forename: string;
|
|
45
47
|
surname: string;
|
|
48
|
+
middlename: string;
|
|
46
49
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
47
50
|
dob: string;
|
|
48
51
|
forename: string;
|
|
49
52
|
surname: string;
|
|
53
|
+
middlename: string;
|
|
50
54
|
}> & {
|
|
51
55
|
dob: string;
|
|
52
56
|
forename: string;
|
|
53
57
|
surname: string;
|
|
58
|
+
middlename: string;
|
|
54
59
|
}>;
|
|
55
60
|
associates: mongoose.Types.DocumentArray<{
|
|
56
61
|
dob: string;
|
|
57
62
|
forename: string;
|
|
58
63
|
surname: string;
|
|
64
|
+
middlename: string;
|
|
59
65
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
60
66
|
dob: string;
|
|
61
67
|
forename: string;
|
|
62
68
|
surname: string;
|
|
69
|
+
middlename: string;
|
|
63
70
|
}> & {
|
|
64
71
|
dob: string;
|
|
65
72
|
forename: string;
|
|
66
73
|
surname: string;
|
|
74
|
+
middlename: string;
|
|
67
75
|
}>;
|
|
68
76
|
linkedAddressData: mongoose.Types.DocumentArray<{
|
|
69
77
|
type: string;
|
|
@@ -71,7 +79,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
71
79
|
dob: string;
|
|
72
80
|
startDate: string;
|
|
73
81
|
lastUpdate: string;
|
|
74
|
-
fixedPaymentTerms: number;
|
|
75
82
|
endDate: string;
|
|
76
83
|
nameMatchStatus: string;
|
|
77
84
|
paymentFrequency: string;
|
|
@@ -89,6 +96,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
89
96
|
amount: string;
|
|
90
97
|
currency: string;
|
|
91
98
|
} | null | undefined;
|
|
99
|
+
fixedPaymentTerms?: {
|
|
100
|
+
amount: string;
|
|
101
|
+
currency: string;
|
|
102
|
+
} | null | undefined;
|
|
92
103
|
currentBalance?: {
|
|
93
104
|
amount: string;
|
|
94
105
|
currency: string;
|
|
@@ -103,7 +114,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
103
114
|
dob: string;
|
|
104
115
|
startDate: string;
|
|
105
116
|
lastUpdate: string;
|
|
106
|
-
fixedPaymentTerms: number;
|
|
107
117
|
endDate: string;
|
|
108
118
|
nameMatchStatus: string;
|
|
109
119
|
paymentFrequency: string;
|
|
@@ -121,6 +131,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
121
131
|
amount: string;
|
|
122
132
|
currency: string;
|
|
123
133
|
} | null | undefined;
|
|
134
|
+
fixedPaymentTerms?: {
|
|
135
|
+
amount: string;
|
|
136
|
+
currency: string;
|
|
137
|
+
} | null | undefined;
|
|
124
138
|
currentBalance?: {
|
|
125
139
|
amount: string;
|
|
126
140
|
currency: string;
|
|
@@ -135,7 +149,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
135
149
|
dob: string;
|
|
136
150
|
startDate: string;
|
|
137
151
|
lastUpdate: string;
|
|
138
|
-
fixedPaymentTerms: number;
|
|
139
152
|
endDate: string;
|
|
140
153
|
nameMatchStatus: string;
|
|
141
154
|
paymentFrequency: string;
|
|
@@ -153,6 +166,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
153
166
|
amount: string;
|
|
154
167
|
currency: string;
|
|
155
168
|
} | null | undefined;
|
|
169
|
+
fixedPaymentTerms?: {
|
|
170
|
+
amount: string;
|
|
171
|
+
currency: string;
|
|
172
|
+
} | null | undefined;
|
|
156
173
|
currentBalance?: {
|
|
157
174
|
amount: string;
|
|
158
175
|
currency: string;
|
|
@@ -168,7 +185,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
168
185
|
dob: string;
|
|
169
186
|
startDate: string;
|
|
170
187
|
lastUpdate: string;
|
|
171
|
-
fixedPaymentTerms: number;
|
|
172
188
|
endDate: string;
|
|
173
189
|
nameMatchStatus: string;
|
|
174
190
|
paymentFrequency: string;
|
|
@@ -186,6 +202,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
186
202
|
amount: string;
|
|
187
203
|
currency: string;
|
|
188
204
|
} | null | undefined;
|
|
205
|
+
fixedPaymentTerms?: {
|
|
206
|
+
amount: string;
|
|
207
|
+
currency: string;
|
|
208
|
+
} | null | undefined;
|
|
189
209
|
currentBalance?: {
|
|
190
210
|
amount: string;
|
|
191
211
|
currency: string;
|
|
@@ -200,7 +220,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
200
220
|
dob: string;
|
|
201
221
|
startDate: string;
|
|
202
222
|
lastUpdate: string;
|
|
203
|
-
fixedPaymentTerms: number;
|
|
204
223
|
endDate: string;
|
|
205
224
|
nameMatchStatus: string;
|
|
206
225
|
paymentFrequency: string;
|
|
@@ -218,6 +237,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
218
237
|
amount: string;
|
|
219
238
|
currency: string;
|
|
220
239
|
} | null | undefined;
|
|
240
|
+
fixedPaymentTerms?: {
|
|
241
|
+
amount: string;
|
|
242
|
+
currency: string;
|
|
243
|
+
} | null | undefined;
|
|
221
244
|
currentBalance?: {
|
|
222
245
|
amount: string;
|
|
223
246
|
currency: string;
|
|
@@ -232,7 +255,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
232
255
|
dob: string;
|
|
233
256
|
startDate: string;
|
|
234
257
|
lastUpdate: string;
|
|
235
|
-
fixedPaymentTerms: number;
|
|
236
258
|
endDate: string;
|
|
237
259
|
nameMatchStatus: string;
|
|
238
260
|
paymentFrequency: string;
|
|
@@ -250,6 +272,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
250
272
|
amount: string;
|
|
251
273
|
currency: string;
|
|
252
274
|
} | null | undefined;
|
|
275
|
+
fixedPaymentTerms?: {
|
|
276
|
+
amount: string;
|
|
277
|
+
currency: string;
|
|
278
|
+
} | null | undefined;
|
|
253
279
|
currentBalance?: {
|
|
254
280
|
amount: string;
|
|
255
281
|
currency: string;
|
|
@@ -265,7 +291,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
265
291
|
dob: string;
|
|
266
292
|
startDate: string;
|
|
267
293
|
lastUpdate: string;
|
|
268
|
-
fixedPaymentTerms: number;
|
|
269
294
|
endDate: string;
|
|
270
295
|
nameMatchStatus: string;
|
|
271
296
|
paymentFrequency: string;
|
|
@@ -283,6 +308,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
283
308
|
amount: string;
|
|
284
309
|
currency: string;
|
|
285
310
|
} | null | undefined;
|
|
311
|
+
fixedPaymentTerms?: {
|
|
312
|
+
amount: string;
|
|
313
|
+
currency: string;
|
|
314
|
+
} | null | undefined;
|
|
286
315
|
currentBalance?: {
|
|
287
316
|
amount: string;
|
|
288
317
|
currency: string;
|
|
@@ -297,7 +326,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
297
326
|
dob: string;
|
|
298
327
|
startDate: string;
|
|
299
328
|
lastUpdate: string;
|
|
300
|
-
fixedPaymentTerms: number;
|
|
301
329
|
endDate: string;
|
|
302
330
|
nameMatchStatus: string;
|
|
303
331
|
paymentFrequency: string;
|
|
@@ -315,6 +343,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
315
343
|
amount: string;
|
|
316
344
|
currency: string;
|
|
317
345
|
} | null | undefined;
|
|
346
|
+
fixedPaymentTerms?: {
|
|
347
|
+
amount: string;
|
|
348
|
+
currency: string;
|
|
349
|
+
} | null | undefined;
|
|
318
350
|
currentBalance?: {
|
|
319
351
|
amount: string;
|
|
320
352
|
currency: string;
|
|
@@ -329,7 +361,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
329
361
|
dob: string;
|
|
330
362
|
startDate: string;
|
|
331
363
|
lastUpdate: string;
|
|
332
|
-
fixedPaymentTerms: number;
|
|
333
364
|
endDate: string;
|
|
334
365
|
nameMatchStatus: string;
|
|
335
366
|
paymentFrequency: string;
|
|
@@ -347,6 +378,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
347
378
|
amount: string;
|
|
348
379
|
currency: string;
|
|
349
380
|
} | null | undefined;
|
|
381
|
+
fixedPaymentTerms?: {
|
|
382
|
+
amount: string;
|
|
383
|
+
currency: string;
|
|
384
|
+
} | null | undefined;
|
|
350
385
|
currentBalance?: {
|
|
351
386
|
amount: string;
|
|
352
387
|
currency: string;
|
|
@@ -362,7 +397,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
362
397
|
dob: string;
|
|
363
398
|
startDate: string;
|
|
364
399
|
lastUpdate: string;
|
|
365
|
-
fixedPaymentTerms: number;
|
|
366
400
|
endDate: string;
|
|
367
401
|
nameMatchStatus: string;
|
|
368
402
|
paymentFrequency: string;
|
|
@@ -380,6 +414,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
380
414
|
amount: string;
|
|
381
415
|
currency: string;
|
|
382
416
|
} | null | undefined;
|
|
417
|
+
fixedPaymentTerms?: {
|
|
418
|
+
amount: string;
|
|
419
|
+
currency: string;
|
|
420
|
+
} | null | undefined;
|
|
383
421
|
currentBalance?: {
|
|
384
422
|
amount: string;
|
|
385
423
|
currency: string;
|
|
@@ -394,7 +432,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
394
432
|
dob: string;
|
|
395
433
|
startDate: string;
|
|
396
434
|
lastUpdate: string;
|
|
397
|
-
fixedPaymentTerms: number;
|
|
398
435
|
endDate: string;
|
|
399
436
|
nameMatchStatus: string;
|
|
400
437
|
paymentFrequency: string;
|
|
@@ -412,6 +449,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
412
449
|
amount: string;
|
|
413
450
|
currency: string;
|
|
414
451
|
} | null | undefined;
|
|
452
|
+
fixedPaymentTerms?: {
|
|
453
|
+
amount: string;
|
|
454
|
+
currency: string;
|
|
455
|
+
} | null | undefined;
|
|
415
456
|
currentBalance?: {
|
|
416
457
|
amount: string;
|
|
417
458
|
currency: string;
|
|
@@ -426,7 +467,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
426
467
|
dob: string;
|
|
427
468
|
startDate: string;
|
|
428
469
|
lastUpdate: string;
|
|
429
|
-
fixedPaymentTerms: number;
|
|
430
470
|
endDate: string;
|
|
431
471
|
nameMatchStatus: string;
|
|
432
472
|
paymentFrequency: string;
|
|
@@ -444,6 +484,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
444
484
|
amount: string;
|
|
445
485
|
currency: string;
|
|
446
486
|
} | null | undefined;
|
|
487
|
+
fixedPaymentTerms?: {
|
|
488
|
+
amount: string;
|
|
489
|
+
currency: string;
|
|
490
|
+
} | null | undefined;
|
|
447
491
|
currentBalance?: {
|
|
448
492
|
amount: string;
|
|
449
493
|
currency: string;
|
|
@@ -480,6 +524,7 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
480
524
|
postTown: string;
|
|
481
525
|
postcode: string;
|
|
482
526
|
county: string;
|
|
527
|
+
addressId: string;
|
|
483
528
|
} | null | undefined;
|
|
484
529
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
485
530
|
type: "current" | "previous";
|
|
@@ -489,6 +534,7 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
489
534
|
postTown: string;
|
|
490
535
|
postcode: string;
|
|
491
536
|
county: string;
|
|
537
|
+
addressId: string;
|
|
492
538
|
} | null | undefined;
|
|
493
539
|
}> & {
|
|
494
540
|
type: "current" | "previous";
|
|
@@ -498,6 +544,7 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
498
544
|
postTown: string;
|
|
499
545
|
postcode: string;
|
|
500
546
|
county: string;
|
|
547
|
+
addressId: string;
|
|
501
548
|
} | null | undefined;
|
|
502
549
|
}>;
|
|
503
550
|
currentAddresses: mongoose.Types.DocumentArray<{
|
|
@@ -531,26 +578,29 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
531
578
|
previousSearches: mongoose.Types.DocumentArray<{
|
|
532
579
|
name: string;
|
|
533
580
|
dob: string;
|
|
581
|
+
nameMatchStatus: string;
|
|
582
|
+
companyType: string;
|
|
534
583
|
jointApplicant: boolean;
|
|
535
584
|
searchType: string;
|
|
536
585
|
searchDate: string;
|
|
537
|
-
companyType: string;
|
|
538
586
|
optIn: boolean;
|
|
539
587
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
540
588
|
name: string;
|
|
541
589
|
dob: string;
|
|
590
|
+
nameMatchStatus: string;
|
|
591
|
+
companyType: string;
|
|
542
592
|
jointApplicant: boolean;
|
|
543
593
|
searchType: string;
|
|
544
594
|
searchDate: string;
|
|
545
|
-
companyType: string;
|
|
546
595
|
optIn: boolean;
|
|
547
596
|
}> & {
|
|
548
597
|
name: string;
|
|
549
598
|
dob: string;
|
|
599
|
+
nameMatchStatus: string;
|
|
600
|
+
companyType: string;
|
|
550
601
|
jointApplicant: boolean;
|
|
551
602
|
searchType: string;
|
|
552
603
|
searchDate: string;
|
|
553
|
-
companyType: string;
|
|
554
604
|
optIn: boolean;
|
|
555
605
|
}>;
|
|
556
606
|
electoralInformation?: {
|
|
@@ -565,7 +615,9 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
565
615
|
applicantName: string;
|
|
566
616
|
referenceNumber: string;
|
|
567
617
|
applicantDob: string;
|
|
568
|
-
|
|
618
|
+
requestDate: string;
|
|
619
|
+
expiredDate: string;
|
|
620
|
+
noticeofCorrection: any;
|
|
569
621
|
creditDefaults: string;
|
|
570
622
|
countyCourtJudgment: string;
|
|
571
623
|
securedArrears: string;
|
|
@@ -576,27 +628,33 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
576
628
|
dob: string;
|
|
577
629
|
forename: string;
|
|
578
630
|
surname: string;
|
|
631
|
+
middlename: string;
|
|
579
632
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
580
633
|
dob: string;
|
|
581
634
|
forename: string;
|
|
582
635
|
surname: string;
|
|
636
|
+
middlename: string;
|
|
583
637
|
}> & {
|
|
584
638
|
dob: string;
|
|
585
639
|
forename: string;
|
|
586
640
|
surname: string;
|
|
641
|
+
middlename: string;
|
|
587
642
|
}>;
|
|
588
643
|
associates: mongoose.Types.DocumentArray<{
|
|
589
644
|
dob: string;
|
|
590
645
|
forename: string;
|
|
591
646
|
surname: string;
|
|
647
|
+
middlename: string;
|
|
592
648
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
593
649
|
dob: string;
|
|
594
650
|
forename: string;
|
|
595
651
|
surname: string;
|
|
652
|
+
middlename: string;
|
|
596
653
|
}> & {
|
|
597
654
|
dob: string;
|
|
598
655
|
forename: string;
|
|
599
656
|
surname: string;
|
|
657
|
+
middlename: string;
|
|
600
658
|
}>;
|
|
601
659
|
linkedAddressData: mongoose.Types.DocumentArray<{
|
|
602
660
|
type: string;
|
|
@@ -604,7 +662,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
604
662
|
dob: string;
|
|
605
663
|
startDate: string;
|
|
606
664
|
lastUpdate: string;
|
|
607
|
-
fixedPaymentTerms: number;
|
|
608
665
|
endDate: string;
|
|
609
666
|
nameMatchStatus: string;
|
|
610
667
|
paymentFrequency: string;
|
|
@@ -622,6 +679,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
622
679
|
amount: string;
|
|
623
680
|
currency: string;
|
|
624
681
|
} | null | undefined;
|
|
682
|
+
fixedPaymentTerms?: {
|
|
683
|
+
amount: string;
|
|
684
|
+
currency: string;
|
|
685
|
+
} | null | undefined;
|
|
625
686
|
currentBalance?: {
|
|
626
687
|
amount: string;
|
|
627
688
|
currency: string;
|
|
@@ -636,7 +697,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
636
697
|
dob: string;
|
|
637
698
|
startDate: string;
|
|
638
699
|
lastUpdate: string;
|
|
639
|
-
fixedPaymentTerms: number;
|
|
640
700
|
endDate: string;
|
|
641
701
|
nameMatchStatus: string;
|
|
642
702
|
paymentFrequency: string;
|
|
@@ -654,6 +714,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
654
714
|
amount: string;
|
|
655
715
|
currency: string;
|
|
656
716
|
} | null | undefined;
|
|
717
|
+
fixedPaymentTerms?: {
|
|
718
|
+
amount: string;
|
|
719
|
+
currency: string;
|
|
720
|
+
} | null | undefined;
|
|
657
721
|
currentBalance?: {
|
|
658
722
|
amount: string;
|
|
659
723
|
currency: string;
|
|
@@ -668,7 +732,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
668
732
|
dob: string;
|
|
669
733
|
startDate: string;
|
|
670
734
|
lastUpdate: string;
|
|
671
|
-
fixedPaymentTerms: number;
|
|
672
735
|
endDate: string;
|
|
673
736
|
nameMatchStatus: string;
|
|
674
737
|
paymentFrequency: string;
|
|
@@ -686,6 +749,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
686
749
|
amount: string;
|
|
687
750
|
currency: string;
|
|
688
751
|
} | null | undefined;
|
|
752
|
+
fixedPaymentTerms?: {
|
|
753
|
+
amount: string;
|
|
754
|
+
currency: string;
|
|
755
|
+
} | null | undefined;
|
|
689
756
|
currentBalance?: {
|
|
690
757
|
amount: string;
|
|
691
758
|
currency: string;
|
|
@@ -701,7 +768,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
701
768
|
dob: string;
|
|
702
769
|
startDate: string;
|
|
703
770
|
lastUpdate: string;
|
|
704
|
-
fixedPaymentTerms: number;
|
|
705
771
|
endDate: string;
|
|
706
772
|
nameMatchStatus: string;
|
|
707
773
|
paymentFrequency: string;
|
|
@@ -719,6 +785,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
719
785
|
amount: string;
|
|
720
786
|
currency: string;
|
|
721
787
|
} | null | undefined;
|
|
788
|
+
fixedPaymentTerms?: {
|
|
789
|
+
amount: string;
|
|
790
|
+
currency: string;
|
|
791
|
+
} | null | undefined;
|
|
722
792
|
currentBalance?: {
|
|
723
793
|
amount: string;
|
|
724
794
|
currency: string;
|
|
@@ -733,7 +803,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
733
803
|
dob: string;
|
|
734
804
|
startDate: string;
|
|
735
805
|
lastUpdate: string;
|
|
736
|
-
fixedPaymentTerms: number;
|
|
737
806
|
endDate: string;
|
|
738
807
|
nameMatchStatus: string;
|
|
739
808
|
paymentFrequency: string;
|
|
@@ -751,6 +820,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
751
820
|
amount: string;
|
|
752
821
|
currency: string;
|
|
753
822
|
} | null | undefined;
|
|
823
|
+
fixedPaymentTerms?: {
|
|
824
|
+
amount: string;
|
|
825
|
+
currency: string;
|
|
826
|
+
} | null | undefined;
|
|
754
827
|
currentBalance?: {
|
|
755
828
|
amount: string;
|
|
756
829
|
currency: string;
|
|
@@ -765,7 +838,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
765
838
|
dob: string;
|
|
766
839
|
startDate: string;
|
|
767
840
|
lastUpdate: string;
|
|
768
|
-
fixedPaymentTerms: number;
|
|
769
841
|
endDate: string;
|
|
770
842
|
nameMatchStatus: string;
|
|
771
843
|
paymentFrequency: string;
|
|
@@ -783,6 +855,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
783
855
|
amount: string;
|
|
784
856
|
currency: string;
|
|
785
857
|
} | null | undefined;
|
|
858
|
+
fixedPaymentTerms?: {
|
|
859
|
+
amount: string;
|
|
860
|
+
currency: string;
|
|
861
|
+
} | null | undefined;
|
|
786
862
|
currentBalance?: {
|
|
787
863
|
amount: string;
|
|
788
864
|
currency: string;
|
|
@@ -798,7 +874,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
798
874
|
dob: string;
|
|
799
875
|
startDate: string;
|
|
800
876
|
lastUpdate: string;
|
|
801
|
-
fixedPaymentTerms: number;
|
|
802
877
|
endDate: string;
|
|
803
878
|
nameMatchStatus: string;
|
|
804
879
|
paymentFrequency: string;
|
|
@@ -816,6 +891,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
816
891
|
amount: string;
|
|
817
892
|
currency: string;
|
|
818
893
|
} | null | undefined;
|
|
894
|
+
fixedPaymentTerms?: {
|
|
895
|
+
amount: string;
|
|
896
|
+
currency: string;
|
|
897
|
+
} | null | undefined;
|
|
819
898
|
currentBalance?: {
|
|
820
899
|
amount: string;
|
|
821
900
|
currency: string;
|
|
@@ -830,7 +909,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
830
909
|
dob: string;
|
|
831
910
|
startDate: string;
|
|
832
911
|
lastUpdate: string;
|
|
833
|
-
fixedPaymentTerms: number;
|
|
834
912
|
endDate: string;
|
|
835
913
|
nameMatchStatus: string;
|
|
836
914
|
paymentFrequency: string;
|
|
@@ -848,6 +926,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
848
926
|
amount: string;
|
|
849
927
|
currency: string;
|
|
850
928
|
} | null | undefined;
|
|
929
|
+
fixedPaymentTerms?: {
|
|
930
|
+
amount: string;
|
|
931
|
+
currency: string;
|
|
932
|
+
} | null | undefined;
|
|
851
933
|
currentBalance?: {
|
|
852
934
|
amount: string;
|
|
853
935
|
currency: string;
|
|
@@ -862,7 +944,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
862
944
|
dob: string;
|
|
863
945
|
startDate: string;
|
|
864
946
|
lastUpdate: string;
|
|
865
|
-
fixedPaymentTerms: number;
|
|
866
947
|
endDate: string;
|
|
867
948
|
nameMatchStatus: string;
|
|
868
949
|
paymentFrequency: string;
|
|
@@ -880,6 +961,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
880
961
|
amount: string;
|
|
881
962
|
currency: string;
|
|
882
963
|
} | null | undefined;
|
|
964
|
+
fixedPaymentTerms?: {
|
|
965
|
+
amount: string;
|
|
966
|
+
currency: string;
|
|
967
|
+
} | null | undefined;
|
|
883
968
|
currentBalance?: {
|
|
884
969
|
amount: string;
|
|
885
970
|
currency: string;
|
|
@@ -895,7 +980,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
895
980
|
dob: string;
|
|
896
981
|
startDate: string;
|
|
897
982
|
lastUpdate: string;
|
|
898
|
-
fixedPaymentTerms: number;
|
|
899
983
|
endDate: string;
|
|
900
984
|
nameMatchStatus: string;
|
|
901
985
|
paymentFrequency: string;
|
|
@@ -913,6 +997,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
913
997
|
amount: string;
|
|
914
998
|
currency: string;
|
|
915
999
|
} | null | undefined;
|
|
1000
|
+
fixedPaymentTerms?: {
|
|
1001
|
+
amount: string;
|
|
1002
|
+
currency: string;
|
|
1003
|
+
} | null | undefined;
|
|
916
1004
|
currentBalance?: {
|
|
917
1005
|
amount: string;
|
|
918
1006
|
currency: string;
|
|
@@ -927,7 +1015,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
927
1015
|
dob: string;
|
|
928
1016
|
startDate: string;
|
|
929
1017
|
lastUpdate: string;
|
|
930
|
-
fixedPaymentTerms: number;
|
|
931
1018
|
endDate: string;
|
|
932
1019
|
nameMatchStatus: string;
|
|
933
1020
|
paymentFrequency: string;
|
|
@@ -945,6 +1032,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
945
1032
|
amount: string;
|
|
946
1033
|
currency: string;
|
|
947
1034
|
} | null | undefined;
|
|
1035
|
+
fixedPaymentTerms?: {
|
|
1036
|
+
amount: string;
|
|
1037
|
+
currency: string;
|
|
1038
|
+
} | null | undefined;
|
|
948
1039
|
currentBalance?: {
|
|
949
1040
|
amount: string;
|
|
950
1041
|
currency: string;
|
|
@@ -959,7 +1050,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
959
1050
|
dob: string;
|
|
960
1051
|
startDate: string;
|
|
961
1052
|
lastUpdate: string;
|
|
962
|
-
fixedPaymentTerms: number;
|
|
963
1053
|
endDate: string;
|
|
964
1054
|
nameMatchStatus: string;
|
|
965
1055
|
paymentFrequency: string;
|
|
@@ -977,6 +1067,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
977
1067
|
amount: string;
|
|
978
1068
|
currency: string;
|
|
979
1069
|
} | null | undefined;
|
|
1070
|
+
fixedPaymentTerms?: {
|
|
1071
|
+
amount: string;
|
|
1072
|
+
currency: string;
|
|
1073
|
+
} | null | undefined;
|
|
980
1074
|
currentBalance?: {
|
|
981
1075
|
amount: string;
|
|
982
1076
|
currency: string;
|
|
@@ -1013,6 +1107,7 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1013
1107
|
postTown: string;
|
|
1014
1108
|
postcode: string;
|
|
1015
1109
|
county: string;
|
|
1110
|
+
addressId: string;
|
|
1016
1111
|
} | null | undefined;
|
|
1017
1112
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
1018
1113
|
type: "current" | "previous";
|
|
@@ -1022,6 +1117,7 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1022
1117
|
postTown: string;
|
|
1023
1118
|
postcode: string;
|
|
1024
1119
|
county: string;
|
|
1120
|
+
addressId: string;
|
|
1025
1121
|
} | null | undefined;
|
|
1026
1122
|
}> & {
|
|
1027
1123
|
type: "current" | "previous";
|
|
@@ -1031,6 +1127,7 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1031
1127
|
postTown: string;
|
|
1032
1128
|
postcode: string;
|
|
1033
1129
|
county: string;
|
|
1130
|
+
addressId: string;
|
|
1034
1131
|
} | null | undefined;
|
|
1035
1132
|
}>;
|
|
1036
1133
|
currentAddresses: mongoose.Types.DocumentArray<{
|
|
@@ -1064,26 +1161,29 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1064
1161
|
previousSearches: mongoose.Types.DocumentArray<{
|
|
1065
1162
|
name: string;
|
|
1066
1163
|
dob: string;
|
|
1164
|
+
nameMatchStatus: string;
|
|
1165
|
+
companyType: string;
|
|
1067
1166
|
jointApplicant: boolean;
|
|
1068
1167
|
searchType: string;
|
|
1069
1168
|
searchDate: string;
|
|
1070
|
-
companyType: string;
|
|
1071
1169
|
optIn: boolean;
|
|
1072
1170
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
1073
1171
|
name: string;
|
|
1074
1172
|
dob: string;
|
|
1173
|
+
nameMatchStatus: string;
|
|
1174
|
+
companyType: string;
|
|
1075
1175
|
jointApplicant: boolean;
|
|
1076
1176
|
searchType: string;
|
|
1077
1177
|
searchDate: string;
|
|
1078
|
-
companyType: string;
|
|
1079
1178
|
optIn: boolean;
|
|
1080
1179
|
}> & {
|
|
1081
1180
|
name: string;
|
|
1082
1181
|
dob: string;
|
|
1182
|
+
nameMatchStatus: string;
|
|
1183
|
+
companyType: string;
|
|
1083
1184
|
jointApplicant: boolean;
|
|
1084
1185
|
searchType: string;
|
|
1085
1186
|
searchDate: string;
|
|
1086
|
-
companyType: string;
|
|
1087
1187
|
optIn: boolean;
|
|
1088
1188
|
}>;
|
|
1089
1189
|
electoralInformation?: {
|
|
@@ -1098,7 +1198,9 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1098
1198
|
applicantName: string;
|
|
1099
1199
|
referenceNumber: string;
|
|
1100
1200
|
applicantDob: string;
|
|
1101
|
-
|
|
1201
|
+
requestDate: string;
|
|
1202
|
+
expiredDate: string;
|
|
1203
|
+
noticeofCorrection: any;
|
|
1102
1204
|
creditDefaults: string;
|
|
1103
1205
|
countyCourtJudgment: string;
|
|
1104
1206
|
securedArrears: string;
|
|
@@ -1109,27 +1211,33 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1109
1211
|
dob: string;
|
|
1110
1212
|
forename: string;
|
|
1111
1213
|
surname: string;
|
|
1214
|
+
middlename: string;
|
|
1112
1215
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
1113
1216
|
dob: string;
|
|
1114
1217
|
forename: string;
|
|
1115
1218
|
surname: string;
|
|
1219
|
+
middlename: string;
|
|
1116
1220
|
}> & {
|
|
1117
1221
|
dob: string;
|
|
1118
1222
|
forename: string;
|
|
1119
1223
|
surname: string;
|
|
1224
|
+
middlename: string;
|
|
1120
1225
|
}>;
|
|
1121
1226
|
associates: mongoose.Types.DocumentArray<{
|
|
1122
1227
|
dob: string;
|
|
1123
1228
|
forename: string;
|
|
1124
1229
|
surname: string;
|
|
1230
|
+
middlename: string;
|
|
1125
1231
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
1126
1232
|
dob: string;
|
|
1127
1233
|
forename: string;
|
|
1128
1234
|
surname: string;
|
|
1235
|
+
middlename: string;
|
|
1129
1236
|
}> & {
|
|
1130
1237
|
dob: string;
|
|
1131
1238
|
forename: string;
|
|
1132
1239
|
surname: string;
|
|
1240
|
+
middlename: string;
|
|
1133
1241
|
}>;
|
|
1134
1242
|
linkedAddressData: mongoose.Types.DocumentArray<{
|
|
1135
1243
|
type: string;
|
|
@@ -1137,7 +1245,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1137
1245
|
dob: string;
|
|
1138
1246
|
startDate: string;
|
|
1139
1247
|
lastUpdate: string;
|
|
1140
|
-
fixedPaymentTerms: number;
|
|
1141
1248
|
endDate: string;
|
|
1142
1249
|
nameMatchStatus: string;
|
|
1143
1250
|
paymentFrequency: string;
|
|
@@ -1155,6 +1262,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1155
1262
|
amount: string;
|
|
1156
1263
|
currency: string;
|
|
1157
1264
|
} | null | undefined;
|
|
1265
|
+
fixedPaymentTerms?: {
|
|
1266
|
+
amount: string;
|
|
1267
|
+
currency: string;
|
|
1268
|
+
} | null | undefined;
|
|
1158
1269
|
currentBalance?: {
|
|
1159
1270
|
amount: string;
|
|
1160
1271
|
currency: string;
|
|
@@ -1169,7 +1280,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1169
1280
|
dob: string;
|
|
1170
1281
|
startDate: string;
|
|
1171
1282
|
lastUpdate: string;
|
|
1172
|
-
fixedPaymentTerms: number;
|
|
1173
1283
|
endDate: string;
|
|
1174
1284
|
nameMatchStatus: string;
|
|
1175
1285
|
paymentFrequency: string;
|
|
@@ -1187,6 +1297,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1187
1297
|
amount: string;
|
|
1188
1298
|
currency: string;
|
|
1189
1299
|
} | null | undefined;
|
|
1300
|
+
fixedPaymentTerms?: {
|
|
1301
|
+
amount: string;
|
|
1302
|
+
currency: string;
|
|
1303
|
+
} | null | undefined;
|
|
1190
1304
|
currentBalance?: {
|
|
1191
1305
|
amount: string;
|
|
1192
1306
|
currency: string;
|
|
@@ -1201,7 +1315,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1201
1315
|
dob: string;
|
|
1202
1316
|
startDate: string;
|
|
1203
1317
|
lastUpdate: string;
|
|
1204
|
-
fixedPaymentTerms: number;
|
|
1205
1318
|
endDate: string;
|
|
1206
1319
|
nameMatchStatus: string;
|
|
1207
1320
|
paymentFrequency: string;
|
|
@@ -1219,6 +1332,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1219
1332
|
amount: string;
|
|
1220
1333
|
currency: string;
|
|
1221
1334
|
} | null | undefined;
|
|
1335
|
+
fixedPaymentTerms?: {
|
|
1336
|
+
amount: string;
|
|
1337
|
+
currency: string;
|
|
1338
|
+
} | null | undefined;
|
|
1222
1339
|
currentBalance?: {
|
|
1223
1340
|
amount: string;
|
|
1224
1341
|
currency: string;
|
|
@@ -1234,7 +1351,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1234
1351
|
dob: string;
|
|
1235
1352
|
startDate: string;
|
|
1236
1353
|
lastUpdate: string;
|
|
1237
|
-
fixedPaymentTerms: number;
|
|
1238
1354
|
endDate: string;
|
|
1239
1355
|
nameMatchStatus: string;
|
|
1240
1356
|
paymentFrequency: string;
|
|
@@ -1252,6 +1368,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1252
1368
|
amount: string;
|
|
1253
1369
|
currency: string;
|
|
1254
1370
|
} | null | undefined;
|
|
1371
|
+
fixedPaymentTerms?: {
|
|
1372
|
+
amount: string;
|
|
1373
|
+
currency: string;
|
|
1374
|
+
} | null | undefined;
|
|
1255
1375
|
currentBalance?: {
|
|
1256
1376
|
amount: string;
|
|
1257
1377
|
currency: string;
|
|
@@ -1266,7 +1386,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1266
1386
|
dob: string;
|
|
1267
1387
|
startDate: string;
|
|
1268
1388
|
lastUpdate: string;
|
|
1269
|
-
fixedPaymentTerms: number;
|
|
1270
1389
|
endDate: string;
|
|
1271
1390
|
nameMatchStatus: string;
|
|
1272
1391
|
paymentFrequency: string;
|
|
@@ -1284,6 +1403,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1284
1403
|
amount: string;
|
|
1285
1404
|
currency: string;
|
|
1286
1405
|
} | null | undefined;
|
|
1406
|
+
fixedPaymentTerms?: {
|
|
1407
|
+
amount: string;
|
|
1408
|
+
currency: string;
|
|
1409
|
+
} | null | undefined;
|
|
1287
1410
|
currentBalance?: {
|
|
1288
1411
|
amount: string;
|
|
1289
1412
|
currency: string;
|
|
@@ -1298,7 +1421,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1298
1421
|
dob: string;
|
|
1299
1422
|
startDate: string;
|
|
1300
1423
|
lastUpdate: string;
|
|
1301
|
-
fixedPaymentTerms: number;
|
|
1302
1424
|
endDate: string;
|
|
1303
1425
|
nameMatchStatus: string;
|
|
1304
1426
|
paymentFrequency: string;
|
|
@@ -1316,6 +1438,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1316
1438
|
amount: string;
|
|
1317
1439
|
currency: string;
|
|
1318
1440
|
} | null | undefined;
|
|
1441
|
+
fixedPaymentTerms?: {
|
|
1442
|
+
amount: string;
|
|
1443
|
+
currency: string;
|
|
1444
|
+
} | null | undefined;
|
|
1319
1445
|
currentBalance?: {
|
|
1320
1446
|
amount: string;
|
|
1321
1447
|
currency: string;
|
|
@@ -1331,7 +1457,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1331
1457
|
dob: string;
|
|
1332
1458
|
startDate: string;
|
|
1333
1459
|
lastUpdate: string;
|
|
1334
|
-
fixedPaymentTerms: number;
|
|
1335
1460
|
endDate: string;
|
|
1336
1461
|
nameMatchStatus: string;
|
|
1337
1462
|
paymentFrequency: string;
|
|
@@ -1349,6 +1474,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1349
1474
|
amount: string;
|
|
1350
1475
|
currency: string;
|
|
1351
1476
|
} | null | undefined;
|
|
1477
|
+
fixedPaymentTerms?: {
|
|
1478
|
+
amount: string;
|
|
1479
|
+
currency: string;
|
|
1480
|
+
} | null | undefined;
|
|
1352
1481
|
currentBalance?: {
|
|
1353
1482
|
amount: string;
|
|
1354
1483
|
currency: string;
|
|
@@ -1363,7 +1492,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1363
1492
|
dob: string;
|
|
1364
1493
|
startDate: string;
|
|
1365
1494
|
lastUpdate: string;
|
|
1366
|
-
fixedPaymentTerms: number;
|
|
1367
1495
|
endDate: string;
|
|
1368
1496
|
nameMatchStatus: string;
|
|
1369
1497
|
paymentFrequency: string;
|
|
@@ -1381,6 +1509,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1381
1509
|
amount: string;
|
|
1382
1510
|
currency: string;
|
|
1383
1511
|
} | null | undefined;
|
|
1512
|
+
fixedPaymentTerms?: {
|
|
1513
|
+
amount: string;
|
|
1514
|
+
currency: string;
|
|
1515
|
+
} | null | undefined;
|
|
1384
1516
|
currentBalance?: {
|
|
1385
1517
|
amount: string;
|
|
1386
1518
|
currency: string;
|
|
@@ -1395,7 +1527,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1395
1527
|
dob: string;
|
|
1396
1528
|
startDate: string;
|
|
1397
1529
|
lastUpdate: string;
|
|
1398
|
-
fixedPaymentTerms: number;
|
|
1399
1530
|
endDate: string;
|
|
1400
1531
|
nameMatchStatus: string;
|
|
1401
1532
|
paymentFrequency: string;
|
|
@@ -1413,6 +1544,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1413
1544
|
amount: string;
|
|
1414
1545
|
currency: string;
|
|
1415
1546
|
} | null | undefined;
|
|
1547
|
+
fixedPaymentTerms?: {
|
|
1548
|
+
amount: string;
|
|
1549
|
+
currency: string;
|
|
1550
|
+
} | null | undefined;
|
|
1416
1551
|
currentBalance?: {
|
|
1417
1552
|
amount: string;
|
|
1418
1553
|
currency: string;
|
|
@@ -1428,7 +1563,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1428
1563
|
dob: string;
|
|
1429
1564
|
startDate: string;
|
|
1430
1565
|
lastUpdate: string;
|
|
1431
|
-
fixedPaymentTerms: number;
|
|
1432
1566
|
endDate: string;
|
|
1433
1567
|
nameMatchStatus: string;
|
|
1434
1568
|
paymentFrequency: string;
|
|
@@ -1446,6 +1580,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1446
1580
|
amount: string;
|
|
1447
1581
|
currency: string;
|
|
1448
1582
|
} | null | undefined;
|
|
1583
|
+
fixedPaymentTerms?: {
|
|
1584
|
+
amount: string;
|
|
1585
|
+
currency: string;
|
|
1586
|
+
} | null | undefined;
|
|
1449
1587
|
currentBalance?: {
|
|
1450
1588
|
amount: string;
|
|
1451
1589
|
currency: string;
|
|
@@ -1460,7 +1598,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1460
1598
|
dob: string;
|
|
1461
1599
|
startDate: string;
|
|
1462
1600
|
lastUpdate: string;
|
|
1463
|
-
fixedPaymentTerms: number;
|
|
1464
1601
|
endDate: string;
|
|
1465
1602
|
nameMatchStatus: string;
|
|
1466
1603
|
paymentFrequency: string;
|
|
@@ -1478,6 +1615,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1478
1615
|
amount: string;
|
|
1479
1616
|
currency: string;
|
|
1480
1617
|
} | null | undefined;
|
|
1618
|
+
fixedPaymentTerms?: {
|
|
1619
|
+
amount: string;
|
|
1620
|
+
currency: string;
|
|
1621
|
+
} | null | undefined;
|
|
1481
1622
|
currentBalance?: {
|
|
1482
1623
|
amount: string;
|
|
1483
1624
|
currency: string;
|
|
@@ -1492,7 +1633,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1492
1633
|
dob: string;
|
|
1493
1634
|
startDate: string;
|
|
1494
1635
|
lastUpdate: string;
|
|
1495
|
-
fixedPaymentTerms: number;
|
|
1496
1636
|
endDate: string;
|
|
1497
1637
|
nameMatchStatus: string;
|
|
1498
1638
|
paymentFrequency: string;
|
|
@@ -1510,6 +1650,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1510
1650
|
amount: string;
|
|
1511
1651
|
currency: string;
|
|
1512
1652
|
} | null | undefined;
|
|
1653
|
+
fixedPaymentTerms?: {
|
|
1654
|
+
amount: string;
|
|
1655
|
+
currency: string;
|
|
1656
|
+
} | null | undefined;
|
|
1513
1657
|
currentBalance?: {
|
|
1514
1658
|
amount: string;
|
|
1515
1659
|
currency: string;
|
|
@@ -1546,6 +1690,7 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1546
1690
|
postTown: string;
|
|
1547
1691
|
postcode: string;
|
|
1548
1692
|
county: string;
|
|
1693
|
+
addressId: string;
|
|
1549
1694
|
} | null | undefined;
|
|
1550
1695
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
1551
1696
|
type: "current" | "previous";
|
|
@@ -1555,6 +1700,7 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1555
1700
|
postTown: string;
|
|
1556
1701
|
postcode: string;
|
|
1557
1702
|
county: string;
|
|
1703
|
+
addressId: string;
|
|
1558
1704
|
} | null | undefined;
|
|
1559
1705
|
}> & {
|
|
1560
1706
|
type: "current" | "previous";
|
|
@@ -1564,6 +1710,7 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1564
1710
|
postTown: string;
|
|
1565
1711
|
postcode: string;
|
|
1566
1712
|
county: string;
|
|
1713
|
+
addressId: string;
|
|
1567
1714
|
} | null | undefined;
|
|
1568
1715
|
}>;
|
|
1569
1716
|
currentAddresses: mongoose.Types.DocumentArray<{
|
|
@@ -1597,26 +1744,29 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1597
1744
|
previousSearches: mongoose.Types.DocumentArray<{
|
|
1598
1745
|
name: string;
|
|
1599
1746
|
dob: string;
|
|
1747
|
+
nameMatchStatus: string;
|
|
1748
|
+
companyType: string;
|
|
1600
1749
|
jointApplicant: boolean;
|
|
1601
1750
|
searchType: string;
|
|
1602
1751
|
searchDate: string;
|
|
1603
|
-
companyType: string;
|
|
1604
1752
|
optIn: boolean;
|
|
1605
1753
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
1606
1754
|
name: string;
|
|
1607
1755
|
dob: string;
|
|
1756
|
+
nameMatchStatus: string;
|
|
1757
|
+
companyType: string;
|
|
1608
1758
|
jointApplicant: boolean;
|
|
1609
1759
|
searchType: string;
|
|
1610
1760
|
searchDate: string;
|
|
1611
|
-
companyType: string;
|
|
1612
1761
|
optIn: boolean;
|
|
1613
1762
|
}> & {
|
|
1614
1763
|
name: string;
|
|
1615
1764
|
dob: string;
|
|
1765
|
+
nameMatchStatus: string;
|
|
1766
|
+
companyType: string;
|
|
1616
1767
|
jointApplicant: boolean;
|
|
1617
1768
|
searchType: string;
|
|
1618
1769
|
searchDate: string;
|
|
1619
|
-
companyType: string;
|
|
1620
1770
|
optIn: boolean;
|
|
1621
1771
|
}>;
|
|
1622
1772
|
electoralInformation?: {
|
|
@@ -1635,7 +1785,9 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1635
1785
|
applicantName: string;
|
|
1636
1786
|
referenceNumber: string;
|
|
1637
1787
|
applicantDob: string;
|
|
1638
|
-
|
|
1788
|
+
requestDate: string;
|
|
1789
|
+
expiredDate: string;
|
|
1790
|
+
noticeofCorrection: any;
|
|
1639
1791
|
creditDefaults: string;
|
|
1640
1792
|
countyCourtJudgment: string;
|
|
1641
1793
|
securedArrears: string;
|
|
@@ -1646,27 +1798,33 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1646
1798
|
dob: string;
|
|
1647
1799
|
forename: string;
|
|
1648
1800
|
surname: string;
|
|
1801
|
+
middlename: string;
|
|
1649
1802
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
1650
1803
|
dob: string;
|
|
1651
1804
|
forename: string;
|
|
1652
1805
|
surname: string;
|
|
1806
|
+
middlename: string;
|
|
1653
1807
|
}> & {
|
|
1654
1808
|
dob: string;
|
|
1655
1809
|
forename: string;
|
|
1656
1810
|
surname: string;
|
|
1811
|
+
middlename: string;
|
|
1657
1812
|
}>;
|
|
1658
1813
|
associates: mongoose.Types.DocumentArray<{
|
|
1659
1814
|
dob: string;
|
|
1660
1815
|
forename: string;
|
|
1661
1816
|
surname: string;
|
|
1817
|
+
middlename: string;
|
|
1662
1818
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
1663
1819
|
dob: string;
|
|
1664
1820
|
forename: string;
|
|
1665
1821
|
surname: string;
|
|
1822
|
+
middlename: string;
|
|
1666
1823
|
}> & {
|
|
1667
1824
|
dob: string;
|
|
1668
1825
|
forename: string;
|
|
1669
1826
|
surname: string;
|
|
1827
|
+
middlename: string;
|
|
1670
1828
|
}>;
|
|
1671
1829
|
linkedAddressData: mongoose.Types.DocumentArray<{
|
|
1672
1830
|
type: string;
|
|
@@ -1674,7 +1832,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1674
1832
|
dob: string;
|
|
1675
1833
|
startDate: string;
|
|
1676
1834
|
lastUpdate: string;
|
|
1677
|
-
fixedPaymentTerms: number;
|
|
1678
1835
|
endDate: string;
|
|
1679
1836
|
nameMatchStatus: string;
|
|
1680
1837
|
paymentFrequency: string;
|
|
@@ -1692,6 +1849,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1692
1849
|
amount: string;
|
|
1693
1850
|
currency: string;
|
|
1694
1851
|
} | null | undefined;
|
|
1852
|
+
fixedPaymentTerms?: {
|
|
1853
|
+
amount: string;
|
|
1854
|
+
currency: string;
|
|
1855
|
+
} | null | undefined;
|
|
1695
1856
|
currentBalance?: {
|
|
1696
1857
|
amount: string;
|
|
1697
1858
|
currency: string;
|
|
@@ -1706,7 +1867,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1706
1867
|
dob: string;
|
|
1707
1868
|
startDate: string;
|
|
1708
1869
|
lastUpdate: string;
|
|
1709
|
-
fixedPaymentTerms: number;
|
|
1710
1870
|
endDate: string;
|
|
1711
1871
|
nameMatchStatus: string;
|
|
1712
1872
|
paymentFrequency: string;
|
|
@@ -1724,6 +1884,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1724
1884
|
amount: string;
|
|
1725
1885
|
currency: string;
|
|
1726
1886
|
} | null | undefined;
|
|
1887
|
+
fixedPaymentTerms?: {
|
|
1888
|
+
amount: string;
|
|
1889
|
+
currency: string;
|
|
1890
|
+
} | null | undefined;
|
|
1727
1891
|
currentBalance?: {
|
|
1728
1892
|
amount: string;
|
|
1729
1893
|
currency: string;
|
|
@@ -1738,7 +1902,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1738
1902
|
dob: string;
|
|
1739
1903
|
startDate: string;
|
|
1740
1904
|
lastUpdate: string;
|
|
1741
|
-
fixedPaymentTerms: number;
|
|
1742
1905
|
endDate: string;
|
|
1743
1906
|
nameMatchStatus: string;
|
|
1744
1907
|
paymentFrequency: string;
|
|
@@ -1756,6 +1919,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1756
1919
|
amount: string;
|
|
1757
1920
|
currency: string;
|
|
1758
1921
|
} | null | undefined;
|
|
1922
|
+
fixedPaymentTerms?: {
|
|
1923
|
+
amount: string;
|
|
1924
|
+
currency: string;
|
|
1925
|
+
} | null | undefined;
|
|
1759
1926
|
currentBalance?: {
|
|
1760
1927
|
amount: string;
|
|
1761
1928
|
currency: string;
|
|
@@ -1771,7 +1938,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1771
1938
|
dob: string;
|
|
1772
1939
|
startDate: string;
|
|
1773
1940
|
lastUpdate: string;
|
|
1774
|
-
fixedPaymentTerms: number;
|
|
1775
1941
|
endDate: string;
|
|
1776
1942
|
nameMatchStatus: string;
|
|
1777
1943
|
paymentFrequency: string;
|
|
@@ -1789,6 +1955,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1789
1955
|
amount: string;
|
|
1790
1956
|
currency: string;
|
|
1791
1957
|
} | null | undefined;
|
|
1958
|
+
fixedPaymentTerms?: {
|
|
1959
|
+
amount: string;
|
|
1960
|
+
currency: string;
|
|
1961
|
+
} | null | undefined;
|
|
1792
1962
|
currentBalance?: {
|
|
1793
1963
|
amount: string;
|
|
1794
1964
|
currency: string;
|
|
@@ -1803,7 +1973,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1803
1973
|
dob: string;
|
|
1804
1974
|
startDate: string;
|
|
1805
1975
|
lastUpdate: string;
|
|
1806
|
-
fixedPaymentTerms: number;
|
|
1807
1976
|
endDate: string;
|
|
1808
1977
|
nameMatchStatus: string;
|
|
1809
1978
|
paymentFrequency: string;
|
|
@@ -1821,6 +1990,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1821
1990
|
amount: string;
|
|
1822
1991
|
currency: string;
|
|
1823
1992
|
} | null | undefined;
|
|
1993
|
+
fixedPaymentTerms?: {
|
|
1994
|
+
amount: string;
|
|
1995
|
+
currency: string;
|
|
1996
|
+
} | null | undefined;
|
|
1824
1997
|
currentBalance?: {
|
|
1825
1998
|
amount: string;
|
|
1826
1999
|
currency: string;
|
|
@@ -1835,7 +2008,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1835
2008
|
dob: string;
|
|
1836
2009
|
startDate: string;
|
|
1837
2010
|
lastUpdate: string;
|
|
1838
|
-
fixedPaymentTerms: number;
|
|
1839
2011
|
endDate: string;
|
|
1840
2012
|
nameMatchStatus: string;
|
|
1841
2013
|
paymentFrequency: string;
|
|
@@ -1853,6 +2025,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1853
2025
|
amount: string;
|
|
1854
2026
|
currency: string;
|
|
1855
2027
|
} | null | undefined;
|
|
2028
|
+
fixedPaymentTerms?: {
|
|
2029
|
+
amount: string;
|
|
2030
|
+
currency: string;
|
|
2031
|
+
} | null | undefined;
|
|
1856
2032
|
currentBalance?: {
|
|
1857
2033
|
amount: string;
|
|
1858
2034
|
currency: string;
|
|
@@ -1868,7 +2044,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1868
2044
|
dob: string;
|
|
1869
2045
|
startDate: string;
|
|
1870
2046
|
lastUpdate: string;
|
|
1871
|
-
fixedPaymentTerms: number;
|
|
1872
2047
|
endDate: string;
|
|
1873
2048
|
nameMatchStatus: string;
|
|
1874
2049
|
paymentFrequency: string;
|
|
@@ -1886,6 +2061,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1886
2061
|
amount: string;
|
|
1887
2062
|
currency: string;
|
|
1888
2063
|
} | null | undefined;
|
|
2064
|
+
fixedPaymentTerms?: {
|
|
2065
|
+
amount: string;
|
|
2066
|
+
currency: string;
|
|
2067
|
+
} | null | undefined;
|
|
1889
2068
|
currentBalance?: {
|
|
1890
2069
|
amount: string;
|
|
1891
2070
|
currency: string;
|
|
@@ -1900,7 +2079,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1900
2079
|
dob: string;
|
|
1901
2080
|
startDate: string;
|
|
1902
2081
|
lastUpdate: string;
|
|
1903
|
-
fixedPaymentTerms: number;
|
|
1904
2082
|
endDate: string;
|
|
1905
2083
|
nameMatchStatus: string;
|
|
1906
2084
|
paymentFrequency: string;
|
|
@@ -1918,6 +2096,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1918
2096
|
amount: string;
|
|
1919
2097
|
currency: string;
|
|
1920
2098
|
} | null | undefined;
|
|
2099
|
+
fixedPaymentTerms?: {
|
|
2100
|
+
amount: string;
|
|
2101
|
+
currency: string;
|
|
2102
|
+
} | null | undefined;
|
|
1921
2103
|
currentBalance?: {
|
|
1922
2104
|
amount: string;
|
|
1923
2105
|
currency: string;
|
|
@@ -1932,7 +2114,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1932
2114
|
dob: string;
|
|
1933
2115
|
startDate: string;
|
|
1934
2116
|
lastUpdate: string;
|
|
1935
|
-
fixedPaymentTerms: number;
|
|
1936
2117
|
endDate: string;
|
|
1937
2118
|
nameMatchStatus: string;
|
|
1938
2119
|
paymentFrequency: string;
|
|
@@ -1950,6 +2131,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1950
2131
|
amount: string;
|
|
1951
2132
|
currency: string;
|
|
1952
2133
|
} | null | undefined;
|
|
2134
|
+
fixedPaymentTerms?: {
|
|
2135
|
+
amount: string;
|
|
2136
|
+
currency: string;
|
|
2137
|
+
} | null | undefined;
|
|
1953
2138
|
currentBalance?: {
|
|
1954
2139
|
amount: string;
|
|
1955
2140
|
currency: string;
|
|
@@ -1965,7 +2150,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1965
2150
|
dob: string;
|
|
1966
2151
|
startDate: string;
|
|
1967
2152
|
lastUpdate: string;
|
|
1968
|
-
fixedPaymentTerms: number;
|
|
1969
2153
|
endDate: string;
|
|
1970
2154
|
nameMatchStatus: string;
|
|
1971
2155
|
paymentFrequency: string;
|
|
@@ -1983,6 +2167,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1983
2167
|
amount: string;
|
|
1984
2168
|
currency: string;
|
|
1985
2169
|
} | null | undefined;
|
|
2170
|
+
fixedPaymentTerms?: {
|
|
2171
|
+
amount: string;
|
|
2172
|
+
currency: string;
|
|
2173
|
+
} | null | undefined;
|
|
1986
2174
|
currentBalance?: {
|
|
1987
2175
|
amount: string;
|
|
1988
2176
|
currency: string;
|
|
@@ -1997,7 +2185,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
1997
2185
|
dob: string;
|
|
1998
2186
|
startDate: string;
|
|
1999
2187
|
lastUpdate: string;
|
|
2000
|
-
fixedPaymentTerms: number;
|
|
2001
2188
|
endDate: string;
|
|
2002
2189
|
nameMatchStatus: string;
|
|
2003
2190
|
paymentFrequency: string;
|
|
@@ -2015,6 +2202,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2015
2202
|
amount: string;
|
|
2016
2203
|
currency: string;
|
|
2017
2204
|
} | null | undefined;
|
|
2205
|
+
fixedPaymentTerms?: {
|
|
2206
|
+
amount: string;
|
|
2207
|
+
currency: string;
|
|
2208
|
+
} | null | undefined;
|
|
2018
2209
|
currentBalance?: {
|
|
2019
2210
|
amount: string;
|
|
2020
2211
|
currency: string;
|
|
@@ -2029,7 +2220,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2029
2220
|
dob: string;
|
|
2030
2221
|
startDate: string;
|
|
2031
2222
|
lastUpdate: string;
|
|
2032
|
-
fixedPaymentTerms: number;
|
|
2033
2223
|
endDate: string;
|
|
2034
2224
|
nameMatchStatus: string;
|
|
2035
2225
|
paymentFrequency: string;
|
|
@@ -2047,6 +2237,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2047
2237
|
amount: string;
|
|
2048
2238
|
currency: string;
|
|
2049
2239
|
} | null | undefined;
|
|
2240
|
+
fixedPaymentTerms?: {
|
|
2241
|
+
amount: string;
|
|
2242
|
+
currency: string;
|
|
2243
|
+
} | null | undefined;
|
|
2050
2244
|
currentBalance?: {
|
|
2051
2245
|
amount: string;
|
|
2052
2246
|
currency: string;
|
|
@@ -2083,6 +2277,7 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2083
2277
|
postTown: string;
|
|
2084
2278
|
postcode: string;
|
|
2085
2279
|
county: string;
|
|
2280
|
+
addressId: string;
|
|
2086
2281
|
} | null | undefined;
|
|
2087
2282
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
2088
2283
|
type: "current" | "previous";
|
|
@@ -2092,6 +2287,7 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2092
2287
|
postTown: string;
|
|
2093
2288
|
postcode: string;
|
|
2094
2289
|
county: string;
|
|
2290
|
+
addressId: string;
|
|
2095
2291
|
} | null | undefined;
|
|
2096
2292
|
}> & {
|
|
2097
2293
|
type: "current" | "previous";
|
|
@@ -2101,6 +2297,7 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2101
2297
|
postTown: string;
|
|
2102
2298
|
postcode: string;
|
|
2103
2299
|
county: string;
|
|
2300
|
+
addressId: string;
|
|
2104
2301
|
} | null | undefined;
|
|
2105
2302
|
}>;
|
|
2106
2303
|
currentAddresses: mongoose.Types.DocumentArray<{
|
|
@@ -2134,26 +2331,29 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2134
2331
|
previousSearches: mongoose.Types.DocumentArray<{
|
|
2135
2332
|
name: string;
|
|
2136
2333
|
dob: string;
|
|
2334
|
+
nameMatchStatus: string;
|
|
2335
|
+
companyType: string;
|
|
2137
2336
|
jointApplicant: boolean;
|
|
2138
2337
|
searchType: string;
|
|
2139
2338
|
searchDate: string;
|
|
2140
|
-
companyType: string;
|
|
2141
2339
|
optIn: boolean;
|
|
2142
2340
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
2143
2341
|
name: string;
|
|
2144
2342
|
dob: string;
|
|
2343
|
+
nameMatchStatus: string;
|
|
2344
|
+
companyType: string;
|
|
2145
2345
|
jointApplicant: boolean;
|
|
2146
2346
|
searchType: string;
|
|
2147
2347
|
searchDate: string;
|
|
2148
|
-
companyType: string;
|
|
2149
2348
|
optIn: boolean;
|
|
2150
2349
|
}> & {
|
|
2151
2350
|
name: string;
|
|
2152
2351
|
dob: string;
|
|
2352
|
+
nameMatchStatus: string;
|
|
2353
|
+
companyType: string;
|
|
2153
2354
|
jointApplicant: boolean;
|
|
2154
2355
|
searchType: string;
|
|
2155
2356
|
searchDate: string;
|
|
2156
|
-
companyType: string;
|
|
2157
2357
|
optIn: boolean;
|
|
2158
2358
|
}>;
|
|
2159
2359
|
electoralInformation?: {
|
|
@@ -2168,7 +2368,9 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2168
2368
|
applicantName: string;
|
|
2169
2369
|
referenceNumber: string;
|
|
2170
2370
|
applicantDob: string;
|
|
2171
|
-
|
|
2371
|
+
requestDate: string;
|
|
2372
|
+
expiredDate: string;
|
|
2373
|
+
noticeofCorrection: any;
|
|
2172
2374
|
creditDefaults: string;
|
|
2173
2375
|
countyCourtJudgment: string;
|
|
2174
2376
|
securedArrears: string;
|
|
@@ -2179,27 +2381,33 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2179
2381
|
dob: string;
|
|
2180
2382
|
forename: string;
|
|
2181
2383
|
surname: string;
|
|
2384
|
+
middlename: string;
|
|
2182
2385
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
2183
2386
|
dob: string;
|
|
2184
2387
|
forename: string;
|
|
2185
2388
|
surname: string;
|
|
2389
|
+
middlename: string;
|
|
2186
2390
|
}> & {
|
|
2187
2391
|
dob: string;
|
|
2188
2392
|
forename: string;
|
|
2189
2393
|
surname: string;
|
|
2394
|
+
middlename: string;
|
|
2190
2395
|
}>;
|
|
2191
2396
|
associates: mongoose.Types.DocumentArray<{
|
|
2192
2397
|
dob: string;
|
|
2193
2398
|
forename: string;
|
|
2194
2399
|
surname: string;
|
|
2400
|
+
middlename: string;
|
|
2195
2401
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
2196
2402
|
dob: string;
|
|
2197
2403
|
forename: string;
|
|
2198
2404
|
surname: string;
|
|
2405
|
+
middlename: string;
|
|
2199
2406
|
}> & {
|
|
2200
2407
|
dob: string;
|
|
2201
2408
|
forename: string;
|
|
2202
2409
|
surname: string;
|
|
2410
|
+
middlename: string;
|
|
2203
2411
|
}>;
|
|
2204
2412
|
linkedAddressData: mongoose.Types.DocumentArray<{
|
|
2205
2413
|
type: string;
|
|
@@ -2207,7 +2415,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2207
2415
|
dob: string;
|
|
2208
2416
|
startDate: string;
|
|
2209
2417
|
lastUpdate: string;
|
|
2210
|
-
fixedPaymentTerms: number;
|
|
2211
2418
|
endDate: string;
|
|
2212
2419
|
nameMatchStatus: string;
|
|
2213
2420
|
paymentFrequency: string;
|
|
@@ -2225,6 +2432,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2225
2432
|
amount: string;
|
|
2226
2433
|
currency: string;
|
|
2227
2434
|
} | null | undefined;
|
|
2435
|
+
fixedPaymentTerms?: {
|
|
2436
|
+
amount: string;
|
|
2437
|
+
currency: string;
|
|
2438
|
+
} | null | undefined;
|
|
2228
2439
|
currentBalance?: {
|
|
2229
2440
|
amount: string;
|
|
2230
2441
|
currency: string;
|
|
@@ -2239,7 +2450,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2239
2450
|
dob: string;
|
|
2240
2451
|
startDate: string;
|
|
2241
2452
|
lastUpdate: string;
|
|
2242
|
-
fixedPaymentTerms: number;
|
|
2243
2453
|
endDate: string;
|
|
2244
2454
|
nameMatchStatus: string;
|
|
2245
2455
|
paymentFrequency: string;
|
|
@@ -2257,6 +2467,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2257
2467
|
amount: string;
|
|
2258
2468
|
currency: string;
|
|
2259
2469
|
} | null | undefined;
|
|
2470
|
+
fixedPaymentTerms?: {
|
|
2471
|
+
amount: string;
|
|
2472
|
+
currency: string;
|
|
2473
|
+
} | null | undefined;
|
|
2260
2474
|
currentBalance?: {
|
|
2261
2475
|
amount: string;
|
|
2262
2476
|
currency: string;
|
|
@@ -2271,7 +2485,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2271
2485
|
dob: string;
|
|
2272
2486
|
startDate: string;
|
|
2273
2487
|
lastUpdate: string;
|
|
2274
|
-
fixedPaymentTerms: number;
|
|
2275
2488
|
endDate: string;
|
|
2276
2489
|
nameMatchStatus: string;
|
|
2277
2490
|
paymentFrequency: string;
|
|
@@ -2289,6 +2502,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2289
2502
|
amount: string;
|
|
2290
2503
|
currency: string;
|
|
2291
2504
|
} | null | undefined;
|
|
2505
|
+
fixedPaymentTerms?: {
|
|
2506
|
+
amount: string;
|
|
2507
|
+
currency: string;
|
|
2508
|
+
} | null | undefined;
|
|
2292
2509
|
currentBalance?: {
|
|
2293
2510
|
amount: string;
|
|
2294
2511
|
currency: string;
|
|
@@ -2304,7 +2521,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2304
2521
|
dob: string;
|
|
2305
2522
|
startDate: string;
|
|
2306
2523
|
lastUpdate: string;
|
|
2307
|
-
fixedPaymentTerms: number;
|
|
2308
2524
|
endDate: string;
|
|
2309
2525
|
nameMatchStatus: string;
|
|
2310
2526
|
paymentFrequency: string;
|
|
@@ -2322,6 +2538,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2322
2538
|
amount: string;
|
|
2323
2539
|
currency: string;
|
|
2324
2540
|
} | null | undefined;
|
|
2541
|
+
fixedPaymentTerms?: {
|
|
2542
|
+
amount: string;
|
|
2543
|
+
currency: string;
|
|
2544
|
+
} | null | undefined;
|
|
2325
2545
|
currentBalance?: {
|
|
2326
2546
|
amount: string;
|
|
2327
2547
|
currency: string;
|
|
@@ -2336,7 +2556,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2336
2556
|
dob: string;
|
|
2337
2557
|
startDate: string;
|
|
2338
2558
|
lastUpdate: string;
|
|
2339
|
-
fixedPaymentTerms: number;
|
|
2340
2559
|
endDate: string;
|
|
2341
2560
|
nameMatchStatus: string;
|
|
2342
2561
|
paymentFrequency: string;
|
|
@@ -2354,6 +2573,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2354
2573
|
amount: string;
|
|
2355
2574
|
currency: string;
|
|
2356
2575
|
} | null | undefined;
|
|
2576
|
+
fixedPaymentTerms?: {
|
|
2577
|
+
amount: string;
|
|
2578
|
+
currency: string;
|
|
2579
|
+
} | null | undefined;
|
|
2357
2580
|
currentBalance?: {
|
|
2358
2581
|
amount: string;
|
|
2359
2582
|
currency: string;
|
|
@@ -2368,7 +2591,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2368
2591
|
dob: string;
|
|
2369
2592
|
startDate: string;
|
|
2370
2593
|
lastUpdate: string;
|
|
2371
|
-
fixedPaymentTerms: number;
|
|
2372
2594
|
endDate: string;
|
|
2373
2595
|
nameMatchStatus: string;
|
|
2374
2596
|
paymentFrequency: string;
|
|
@@ -2386,6 +2608,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2386
2608
|
amount: string;
|
|
2387
2609
|
currency: string;
|
|
2388
2610
|
} | null | undefined;
|
|
2611
|
+
fixedPaymentTerms?: {
|
|
2612
|
+
amount: string;
|
|
2613
|
+
currency: string;
|
|
2614
|
+
} | null | undefined;
|
|
2389
2615
|
currentBalance?: {
|
|
2390
2616
|
amount: string;
|
|
2391
2617
|
currency: string;
|
|
@@ -2401,7 +2627,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2401
2627
|
dob: string;
|
|
2402
2628
|
startDate: string;
|
|
2403
2629
|
lastUpdate: string;
|
|
2404
|
-
fixedPaymentTerms: number;
|
|
2405
2630
|
endDate: string;
|
|
2406
2631
|
nameMatchStatus: string;
|
|
2407
2632
|
paymentFrequency: string;
|
|
@@ -2419,6 +2644,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2419
2644
|
amount: string;
|
|
2420
2645
|
currency: string;
|
|
2421
2646
|
} | null | undefined;
|
|
2647
|
+
fixedPaymentTerms?: {
|
|
2648
|
+
amount: string;
|
|
2649
|
+
currency: string;
|
|
2650
|
+
} | null | undefined;
|
|
2422
2651
|
currentBalance?: {
|
|
2423
2652
|
amount: string;
|
|
2424
2653
|
currency: string;
|
|
@@ -2433,7 +2662,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2433
2662
|
dob: string;
|
|
2434
2663
|
startDate: string;
|
|
2435
2664
|
lastUpdate: string;
|
|
2436
|
-
fixedPaymentTerms: number;
|
|
2437
2665
|
endDate: string;
|
|
2438
2666
|
nameMatchStatus: string;
|
|
2439
2667
|
paymentFrequency: string;
|
|
@@ -2451,6 +2679,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2451
2679
|
amount: string;
|
|
2452
2680
|
currency: string;
|
|
2453
2681
|
} | null | undefined;
|
|
2682
|
+
fixedPaymentTerms?: {
|
|
2683
|
+
amount: string;
|
|
2684
|
+
currency: string;
|
|
2685
|
+
} | null | undefined;
|
|
2454
2686
|
currentBalance?: {
|
|
2455
2687
|
amount: string;
|
|
2456
2688
|
currency: string;
|
|
@@ -2465,7 +2697,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2465
2697
|
dob: string;
|
|
2466
2698
|
startDate: string;
|
|
2467
2699
|
lastUpdate: string;
|
|
2468
|
-
fixedPaymentTerms: number;
|
|
2469
2700
|
endDate: string;
|
|
2470
2701
|
nameMatchStatus: string;
|
|
2471
2702
|
paymentFrequency: string;
|
|
@@ -2483,6 +2714,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2483
2714
|
amount: string;
|
|
2484
2715
|
currency: string;
|
|
2485
2716
|
} | null | undefined;
|
|
2717
|
+
fixedPaymentTerms?: {
|
|
2718
|
+
amount: string;
|
|
2719
|
+
currency: string;
|
|
2720
|
+
} | null | undefined;
|
|
2486
2721
|
currentBalance?: {
|
|
2487
2722
|
amount: string;
|
|
2488
2723
|
currency: string;
|
|
@@ -2498,7 +2733,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2498
2733
|
dob: string;
|
|
2499
2734
|
startDate: string;
|
|
2500
2735
|
lastUpdate: string;
|
|
2501
|
-
fixedPaymentTerms: number;
|
|
2502
2736
|
endDate: string;
|
|
2503
2737
|
nameMatchStatus: string;
|
|
2504
2738
|
paymentFrequency: string;
|
|
@@ -2516,6 +2750,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2516
2750
|
amount: string;
|
|
2517
2751
|
currency: string;
|
|
2518
2752
|
} | null | undefined;
|
|
2753
|
+
fixedPaymentTerms?: {
|
|
2754
|
+
amount: string;
|
|
2755
|
+
currency: string;
|
|
2756
|
+
} | null | undefined;
|
|
2519
2757
|
currentBalance?: {
|
|
2520
2758
|
amount: string;
|
|
2521
2759
|
currency: string;
|
|
@@ -2530,7 +2768,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2530
2768
|
dob: string;
|
|
2531
2769
|
startDate: string;
|
|
2532
2770
|
lastUpdate: string;
|
|
2533
|
-
fixedPaymentTerms: number;
|
|
2534
2771
|
endDate: string;
|
|
2535
2772
|
nameMatchStatus: string;
|
|
2536
2773
|
paymentFrequency: string;
|
|
@@ -2548,6 +2785,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2548
2785
|
amount: string;
|
|
2549
2786
|
currency: string;
|
|
2550
2787
|
} | null | undefined;
|
|
2788
|
+
fixedPaymentTerms?: {
|
|
2789
|
+
amount: string;
|
|
2790
|
+
currency: string;
|
|
2791
|
+
} | null | undefined;
|
|
2551
2792
|
currentBalance?: {
|
|
2552
2793
|
amount: string;
|
|
2553
2794
|
currency: string;
|
|
@@ -2562,7 +2803,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2562
2803
|
dob: string;
|
|
2563
2804
|
startDate: string;
|
|
2564
2805
|
lastUpdate: string;
|
|
2565
|
-
fixedPaymentTerms: number;
|
|
2566
2806
|
endDate: string;
|
|
2567
2807
|
nameMatchStatus: string;
|
|
2568
2808
|
paymentFrequency: string;
|
|
@@ -2580,6 +2820,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2580
2820
|
amount: string;
|
|
2581
2821
|
currency: string;
|
|
2582
2822
|
} | null | undefined;
|
|
2823
|
+
fixedPaymentTerms?: {
|
|
2824
|
+
amount: string;
|
|
2825
|
+
currency: string;
|
|
2826
|
+
} | null | undefined;
|
|
2583
2827
|
currentBalance?: {
|
|
2584
2828
|
amount: string;
|
|
2585
2829
|
currency: string;
|
|
@@ -2616,6 +2860,7 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2616
2860
|
postTown: string;
|
|
2617
2861
|
postcode: string;
|
|
2618
2862
|
county: string;
|
|
2863
|
+
addressId: string;
|
|
2619
2864
|
} | null | undefined;
|
|
2620
2865
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
2621
2866
|
type: "current" | "previous";
|
|
@@ -2625,6 +2870,7 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2625
2870
|
postTown: string;
|
|
2626
2871
|
postcode: string;
|
|
2627
2872
|
county: string;
|
|
2873
|
+
addressId: string;
|
|
2628
2874
|
} | null | undefined;
|
|
2629
2875
|
}> & {
|
|
2630
2876
|
type: "current" | "previous";
|
|
@@ -2634,6 +2880,7 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2634
2880
|
postTown: string;
|
|
2635
2881
|
postcode: string;
|
|
2636
2882
|
county: string;
|
|
2883
|
+
addressId: string;
|
|
2637
2884
|
} | null | undefined;
|
|
2638
2885
|
}>;
|
|
2639
2886
|
currentAddresses: mongoose.Types.DocumentArray<{
|
|
@@ -2667,26 +2914,29 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2667
2914
|
previousSearches: mongoose.Types.DocumentArray<{
|
|
2668
2915
|
name: string;
|
|
2669
2916
|
dob: string;
|
|
2917
|
+
nameMatchStatus: string;
|
|
2918
|
+
companyType: string;
|
|
2670
2919
|
jointApplicant: boolean;
|
|
2671
2920
|
searchType: string;
|
|
2672
2921
|
searchDate: string;
|
|
2673
|
-
companyType: string;
|
|
2674
2922
|
optIn: boolean;
|
|
2675
2923
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
2676
2924
|
name: string;
|
|
2677
2925
|
dob: string;
|
|
2926
|
+
nameMatchStatus: string;
|
|
2927
|
+
companyType: string;
|
|
2678
2928
|
jointApplicant: boolean;
|
|
2679
2929
|
searchType: string;
|
|
2680
2930
|
searchDate: string;
|
|
2681
|
-
companyType: string;
|
|
2682
2931
|
optIn: boolean;
|
|
2683
2932
|
}> & {
|
|
2684
2933
|
name: string;
|
|
2685
2934
|
dob: string;
|
|
2935
|
+
nameMatchStatus: string;
|
|
2936
|
+
companyType: string;
|
|
2686
2937
|
jointApplicant: boolean;
|
|
2687
2938
|
searchType: string;
|
|
2688
2939
|
searchDate: string;
|
|
2689
|
-
companyType: string;
|
|
2690
2940
|
optIn: boolean;
|
|
2691
2941
|
}>;
|
|
2692
2942
|
electoralInformation?: {
|
|
@@ -2701,7 +2951,9 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2701
2951
|
applicantName: string;
|
|
2702
2952
|
referenceNumber: string;
|
|
2703
2953
|
applicantDob: string;
|
|
2704
|
-
|
|
2954
|
+
requestDate: string;
|
|
2955
|
+
expiredDate: string;
|
|
2956
|
+
noticeofCorrection: any;
|
|
2705
2957
|
creditDefaults: string;
|
|
2706
2958
|
countyCourtJudgment: string;
|
|
2707
2959
|
securedArrears: string;
|
|
@@ -2712,27 +2964,33 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2712
2964
|
dob: string;
|
|
2713
2965
|
forename: string;
|
|
2714
2966
|
surname: string;
|
|
2967
|
+
middlename: string;
|
|
2715
2968
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
2716
2969
|
dob: string;
|
|
2717
2970
|
forename: string;
|
|
2718
2971
|
surname: string;
|
|
2972
|
+
middlename: string;
|
|
2719
2973
|
}> & {
|
|
2720
2974
|
dob: string;
|
|
2721
2975
|
forename: string;
|
|
2722
2976
|
surname: string;
|
|
2977
|
+
middlename: string;
|
|
2723
2978
|
}>;
|
|
2724
2979
|
associates: mongoose.Types.DocumentArray<{
|
|
2725
2980
|
dob: string;
|
|
2726
2981
|
forename: string;
|
|
2727
2982
|
surname: string;
|
|
2983
|
+
middlename: string;
|
|
2728
2984
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
2729
2985
|
dob: string;
|
|
2730
2986
|
forename: string;
|
|
2731
2987
|
surname: string;
|
|
2988
|
+
middlename: string;
|
|
2732
2989
|
}> & {
|
|
2733
2990
|
dob: string;
|
|
2734
2991
|
forename: string;
|
|
2735
2992
|
surname: string;
|
|
2993
|
+
middlename: string;
|
|
2736
2994
|
}>;
|
|
2737
2995
|
linkedAddressData: mongoose.Types.DocumentArray<{
|
|
2738
2996
|
type: string;
|
|
@@ -2740,7 +2998,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2740
2998
|
dob: string;
|
|
2741
2999
|
startDate: string;
|
|
2742
3000
|
lastUpdate: string;
|
|
2743
|
-
fixedPaymentTerms: number;
|
|
2744
3001
|
endDate: string;
|
|
2745
3002
|
nameMatchStatus: string;
|
|
2746
3003
|
paymentFrequency: string;
|
|
@@ -2758,6 +3015,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2758
3015
|
amount: string;
|
|
2759
3016
|
currency: string;
|
|
2760
3017
|
} | null | undefined;
|
|
3018
|
+
fixedPaymentTerms?: {
|
|
3019
|
+
amount: string;
|
|
3020
|
+
currency: string;
|
|
3021
|
+
} | null | undefined;
|
|
2761
3022
|
currentBalance?: {
|
|
2762
3023
|
amount: string;
|
|
2763
3024
|
currency: string;
|
|
@@ -2772,7 +3033,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2772
3033
|
dob: string;
|
|
2773
3034
|
startDate: string;
|
|
2774
3035
|
lastUpdate: string;
|
|
2775
|
-
fixedPaymentTerms: number;
|
|
2776
3036
|
endDate: string;
|
|
2777
3037
|
nameMatchStatus: string;
|
|
2778
3038
|
paymentFrequency: string;
|
|
@@ -2790,6 +3050,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2790
3050
|
amount: string;
|
|
2791
3051
|
currency: string;
|
|
2792
3052
|
} | null | undefined;
|
|
3053
|
+
fixedPaymentTerms?: {
|
|
3054
|
+
amount: string;
|
|
3055
|
+
currency: string;
|
|
3056
|
+
} | null | undefined;
|
|
2793
3057
|
currentBalance?: {
|
|
2794
3058
|
amount: string;
|
|
2795
3059
|
currency: string;
|
|
@@ -2804,7 +3068,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2804
3068
|
dob: string;
|
|
2805
3069
|
startDate: string;
|
|
2806
3070
|
lastUpdate: string;
|
|
2807
|
-
fixedPaymentTerms: number;
|
|
2808
3071
|
endDate: string;
|
|
2809
3072
|
nameMatchStatus: string;
|
|
2810
3073
|
paymentFrequency: string;
|
|
@@ -2822,6 +3085,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2822
3085
|
amount: string;
|
|
2823
3086
|
currency: string;
|
|
2824
3087
|
} | null | undefined;
|
|
3088
|
+
fixedPaymentTerms?: {
|
|
3089
|
+
amount: string;
|
|
3090
|
+
currency: string;
|
|
3091
|
+
} | null | undefined;
|
|
2825
3092
|
currentBalance?: {
|
|
2826
3093
|
amount: string;
|
|
2827
3094
|
currency: string;
|
|
@@ -2837,7 +3104,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2837
3104
|
dob: string;
|
|
2838
3105
|
startDate: string;
|
|
2839
3106
|
lastUpdate: string;
|
|
2840
|
-
fixedPaymentTerms: number;
|
|
2841
3107
|
endDate: string;
|
|
2842
3108
|
nameMatchStatus: string;
|
|
2843
3109
|
paymentFrequency: string;
|
|
@@ -2855,6 +3121,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2855
3121
|
amount: string;
|
|
2856
3122
|
currency: string;
|
|
2857
3123
|
} | null | undefined;
|
|
3124
|
+
fixedPaymentTerms?: {
|
|
3125
|
+
amount: string;
|
|
3126
|
+
currency: string;
|
|
3127
|
+
} | null | undefined;
|
|
2858
3128
|
currentBalance?: {
|
|
2859
3129
|
amount: string;
|
|
2860
3130
|
currency: string;
|
|
@@ -2869,7 +3139,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2869
3139
|
dob: string;
|
|
2870
3140
|
startDate: string;
|
|
2871
3141
|
lastUpdate: string;
|
|
2872
|
-
fixedPaymentTerms: number;
|
|
2873
3142
|
endDate: string;
|
|
2874
3143
|
nameMatchStatus: string;
|
|
2875
3144
|
paymentFrequency: string;
|
|
@@ -2887,6 +3156,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2887
3156
|
amount: string;
|
|
2888
3157
|
currency: string;
|
|
2889
3158
|
} | null | undefined;
|
|
3159
|
+
fixedPaymentTerms?: {
|
|
3160
|
+
amount: string;
|
|
3161
|
+
currency: string;
|
|
3162
|
+
} | null | undefined;
|
|
2890
3163
|
currentBalance?: {
|
|
2891
3164
|
amount: string;
|
|
2892
3165
|
currency: string;
|
|
@@ -2901,7 +3174,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2901
3174
|
dob: string;
|
|
2902
3175
|
startDate: string;
|
|
2903
3176
|
lastUpdate: string;
|
|
2904
|
-
fixedPaymentTerms: number;
|
|
2905
3177
|
endDate: string;
|
|
2906
3178
|
nameMatchStatus: string;
|
|
2907
3179
|
paymentFrequency: string;
|
|
@@ -2919,6 +3191,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2919
3191
|
amount: string;
|
|
2920
3192
|
currency: string;
|
|
2921
3193
|
} | null | undefined;
|
|
3194
|
+
fixedPaymentTerms?: {
|
|
3195
|
+
amount: string;
|
|
3196
|
+
currency: string;
|
|
3197
|
+
} | null | undefined;
|
|
2922
3198
|
currentBalance?: {
|
|
2923
3199
|
amount: string;
|
|
2924
3200
|
currency: string;
|
|
@@ -2934,7 +3210,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2934
3210
|
dob: string;
|
|
2935
3211
|
startDate: string;
|
|
2936
3212
|
lastUpdate: string;
|
|
2937
|
-
fixedPaymentTerms: number;
|
|
2938
3213
|
endDate: string;
|
|
2939
3214
|
nameMatchStatus: string;
|
|
2940
3215
|
paymentFrequency: string;
|
|
@@ -2952,6 +3227,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2952
3227
|
amount: string;
|
|
2953
3228
|
currency: string;
|
|
2954
3229
|
} | null | undefined;
|
|
3230
|
+
fixedPaymentTerms?: {
|
|
3231
|
+
amount: string;
|
|
3232
|
+
currency: string;
|
|
3233
|
+
} | null | undefined;
|
|
2955
3234
|
currentBalance?: {
|
|
2956
3235
|
amount: string;
|
|
2957
3236
|
currency: string;
|
|
@@ -2966,7 +3245,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2966
3245
|
dob: string;
|
|
2967
3246
|
startDate: string;
|
|
2968
3247
|
lastUpdate: string;
|
|
2969
|
-
fixedPaymentTerms: number;
|
|
2970
3248
|
endDate: string;
|
|
2971
3249
|
nameMatchStatus: string;
|
|
2972
3250
|
paymentFrequency: string;
|
|
@@ -2984,6 +3262,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2984
3262
|
amount: string;
|
|
2985
3263
|
currency: string;
|
|
2986
3264
|
} | null | undefined;
|
|
3265
|
+
fixedPaymentTerms?: {
|
|
3266
|
+
amount: string;
|
|
3267
|
+
currency: string;
|
|
3268
|
+
} | null | undefined;
|
|
2987
3269
|
currentBalance?: {
|
|
2988
3270
|
amount: string;
|
|
2989
3271
|
currency: string;
|
|
@@ -2998,7 +3280,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
2998
3280
|
dob: string;
|
|
2999
3281
|
startDate: string;
|
|
3000
3282
|
lastUpdate: string;
|
|
3001
|
-
fixedPaymentTerms: number;
|
|
3002
3283
|
endDate: string;
|
|
3003
3284
|
nameMatchStatus: string;
|
|
3004
3285
|
paymentFrequency: string;
|
|
@@ -3016,6 +3297,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
3016
3297
|
amount: string;
|
|
3017
3298
|
currency: string;
|
|
3018
3299
|
} | null | undefined;
|
|
3300
|
+
fixedPaymentTerms?: {
|
|
3301
|
+
amount: string;
|
|
3302
|
+
currency: string;
|
|
3303
|
+
} | null | undefined;
|
|
3019
3304
|
currentBalance?: {
|
|
3020
3305
|
amount: string;
|
|
3021
3306
|
currency: string;
|
|
@@ -3031,7 +3316,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
3031
3316
|
dob: string;
|
|
3032
3317
|
startDate: string;
|
|
3033
3318
|
lastUpdate: string;
|
|
3034
|
-
fixedPaymentTerms: number;
|
|
3035
3319
|
endDate: string;
|
|
3036
3320
|
nameMatchStatus: string;
|
|
3037
3321
|
paymentFrequency: string;
|
|
@@ -3049,6 +3333,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
3049
3333
|
amount: string;
|
|
3050
3334
|
currency: string;
|
|
3051
3335
|
} | null | undefined;
|
|
3336
|
+
fixedPaymentTerms?: {
|
|
3337
|
+
amount: string;
|
|
3338
|
+
currency: string;
|
|
3339
|
+
} | null | undefined;
|
|
3052
3340
|
currentBalance?: {
|
|
3053
3341
|
amount: string;
|
|
3054
3342
|
currency: string;
|
|
@@ -3063,7 +3351,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
3063
3351
|
dob: string;
|
|
3064
3352
|
startDate: string;
|
|
3065
3353
|
lastUpdate: string;
|
|
3066
|
-
fixedPaymentTerms: number;
|
|
3067
3354
|
endDate: string;
|
|
3068
3355
|
nameMatchStatus: string;
|
|
3069
3356
|
paymentFrequency: string;
|
|
@@ -3081,6 +3368,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
3081
3368
|
amount: string;
|
|
3082
3369
|
currency: string;
|
|
3083
3370
|
} | null | undefined;
|
|
3371
|
+
fixedPaymentTerms?: {
|
|
3372
|
+
amount: string;
|
|
3373
|
+
currency: string;
|
|
3374
|
+
} | null | undefined;
|
|
3084
3375
|
currentBalance?: {
|
|
3085
3376
|
amount: string;
|
|
3086
3377
|
currency: string;
|
|
@@ -3095,7 +3386,6 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
3095
3386
|
dob: string;
|
|
3096
3387
|
startDate: string;
|
|
3097
3388
|
lastUpdate: string;
|
|
3098
|
-
fixedPaymentTerms: number;
|
|
3099
3389
|
endDate: string;
|
|
3100
3390
|
nameMatchStatus: string;
|
|
3101
3391
|
paymentFrequency: string;
|
|
@@ -3113,6 +3403,10 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
3113
3403
|
amount: string;
|
|
3114
3404
|
currency: string;
|
|
3115
3405
|
} | null | undefined;
|
|
3406
|
+
fixedPaymentTerms?: {
|
|
3407
|
+
amount: string;
|
|
3408
|
+
currency: string;
|
|
3409
|
+
} | null | undefined;
|
|
3116
3410
|
currentBalance?: {
|
|
3117
3411
|
amount: string;
|
|
3118
3412
|
currency: string;
|
|
@@ -3149,6 +3443,7 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
3149
3443
|
postTown: string;
|
|
3150
3444
|
postcode: string;
|
|
3151
3445
|
county: string;
|
|
3446
|
+
addressId: string;
|
|
3152
3447
|
} | null | undefined;
|
|
3153
3448
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
3154
3449
|
type: "current" | "previous";
|
|
@@ -3158,6 +3453,7 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
3158
3453
|
postTown: string;
|
|
3159
3454
|
postcode: string;
|
|
3160
3455
|
county: string;
|
|
3456
|
+
addressId: string;
|
|
3161
3457
|
} | null | undefined;
|
|
3162
3458
|
}> & {
|
|
3163
3459
|
type: "current" | "previous";
|
|
@@ -3167,6 +3463,7 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
3167
3463
|
postTown: string;
|
|
3168
3464
|
postcode: string;
|
|
3169
3465
|
county: string;
|
|
3466
|
+
addressId: string;
|
|
3170
3467
|
} | null | undefined;
|
|
3171
3468
|
}>;
|
|
3172
3469
|
currentAddresses: mongoose.Types.DocumentArray<{
|
|
@@ -3200,26 +3497,29 @@ declare const ApplicantCreditReportModel: mongoose.Model<{
|
|
|
3200
3497
|
previousSearches: mongoose.Types.DocumentArray<{
|
|
3201
3498
|
name: string;
|
|
3202
3499
|
dob: string;
|
|
3500
|
+
nameMatchStatus: string;
|
|
3501
|
+
companyType: string;
|
|
3203
3502
|
jointApplicant: boolean;
|
|
3204
3503
|
searchType: string;
|
|
3205
3504
|
searchDate: string;
|
|
3206
|
-
companyType: string;
|
|
3207
3505
|
optIn: boolean;
|
|
3208
3506
|
}, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
|
|
3209
3507
|
name: string;
|
|
3210
3508
|
dob: string;
|
|
3509
|
+
nameMatchStatus: string;
|
|
3510
|
+
companyType: string;
|
|
3211
3511
|
jointApplicant: boolean;
|
|
3212
3512
|
searchType: string;
|
|
3213
3513
|
searchDate: string;
|
|
3214
|
-
companyType: string;
|
|
3215
3514
|
optIn: boolean;
|
|
3216
3515
|
}> & {
|
|
3217
3516
|
name: string;
|
|
3218
3517
|
dob: string;
|
|
3518
|
+
nameMatchStatus: string;
|
|
3519
|
+
companyType: string;
|
|
3219
3520
|
jointApplicant: boolean;
|
|
3220
3521
|
searchType: string;
|
|
3221
3522
|
searchDate: string;
|
|
3222
|
-
companyType: string;
|
|
3223
3523
|
optIn: boolean;
|
|
3224
3524
|
}>;
|
|
3225
3525
|
electoralInformation?: {
|