@dynamatix/gb-schemas 1.2.87 → 1.2.89

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.
@@ -0,0 +1,765 @@
1
+ /// <reference path="../value-objects/pound.d.ts" />
2
+ /// <reference path="../value-objects/sort-code.d.ts" />
3
+ /// <reference types="mongoose/types/aggregate" />
4
+ /// <reference types="mongoose/types/callback" />
5
+ /// <reference types="mongoose/types/collection" />
6
+ /// <reference types="mongoose/types/connection" />
7
+ /// <reference types="mongoose/types/cursor" />
8
+ /// <reference types="mongoose/types/document" />
9
+ /// <reference types="mongoose/types/error" />
10
+ /// <reference types="mongoose/types/expressions" />
11
+ /// <reference types="mongoose/types/helpers" />
12
+ /// <reference types="mongoose/types/middlewares" />
13
+ /// <reference types="mongoose/types/indexes" />
14
+ /// <reference types="mongoose/types/models" />
15
+ /// <reference types="mongoose/types/mongooseoptions" />
16
+ /// <reference types="mongoose/types/pipelinestage" />
17
+ /// <reference types="mongoose/types/populate" />
18
+ /// <reference types="mongoose/types/query" />
19
+ /// <reference types="mongoose/types/schemaoptions" />
20
+ /// <reference types="mongoose/types/schematypes" />
21
+ /// <reference types="mongoose/types/session" />
22
+ /// <reference types="mongoose/types/types" />
23
+ /// <reference types="mongoose/types/utility" />
24
+ /// <reference types="mongoose/types/validation" />
25
+ /// <reference types="mongoose/types/virtuals" />
26
+ /// <reference types="mongoose/types/inferschematype" />
27
+ /// <reference types="mongoose/types/inferrawdoctype" />
28
+ import mongoose from "mongoose";
29
+ declare const ApplicationProductFeaturesModel: mongoose.Model<{
30
+ name: string;
31
+ applicationId: mongoose.Types.ObjectId;
32
+ repaymentType: string;
33
+ ltv: string;
34
+ reimbursementPerPound: string;
35
+ stressedPayment: string;
36
+ stressedPaymentRate: string;
37
+ rentalCoverage: string;
38
+ clientAdvance: string;
39
+ repayment: string;
40
+ variableRepayment: string;
41
+ reversionRateWithoutBaseRate: string;
42
+ totalReversionRate: string;
43
+ initialRate: string;
44
+ fixedTerm: string;
45
+ fixedTermEndDate: string;
46
+ baseRate: string;
47
+ productRate: string;
48
+ apr: string;
49
+ applicationCategory: string;
50
+ securityType: string;
51
+ erc: string;
52
+ loanType: string;
53
+ maxLtvLimit: string;
54
+ reimbursement: string;
55
+ stressedApr: string;
56
+ stressedRate: string;
57
+ stressedRepayment: string;
58
+ liborFloorRate: string;
59
+ totalTermInMonths: string;
60
+ chargeType: string;
61
+ productCategory: string;
62
+ ercCode: string;
63
+ variableTerm: string;
64
+ totalFeePayable: string;
65
+ dipIssueDate: string;
66
+ estimatedCompletionDate: string;
67
+ dipExpiryDate: string;
68
+ fixedRepaymentUntillDate: string;
69
+ rentalReviewDate: string;
70
+ totalReimbursementWithFee: string;
71
+ finalRentPayment: string;
72
+ clientDeposit: string;
73
+ firstRentPayment: string;
74
+ fees: mongoose.Types.DocumentArray<{
75
+ description: string;
76
+ additionalData: any;
77
+ feeType: string;
78
+ feeAmount: string;
79
+ rate: string;
80
+ addedToLoan: string;
81
+ allowOverride: string;
82
+ }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
83
+ description: string;
84
+ additionalData: any;
85
+ feeType: string;
86
+ feeAmount: string;
87
+ rate: string;
88
+ addedToLoan: string;
89
+ allowOverride: string;
90
+ }> & {
91
+ description: string;
92
+ additionalData: any;
93
+ feeType: string;
94
+ feeAmount: string;
95
+ rate: string;
96
+ addedToLoan: string;
97
+ allowOverride: string;
98
+ }>;
99
+ ercFeatures: any;
100
+ icr: string;
101
+ ufssProductCode: string;
102
+ ufssInterestRateCode: string;
103
+ calculations?: {
104
+ ltv: string;
105
+ rentalCoverageRatioRate: string;
106
+ bankContributionRate: string;
107
+ bankInitialShareRate: string;
108
+ totalAmountPayable: string;
109
+ fixedMonthlyPayment: string;
110
+ fixedMonthlyCapital: string;
111
+ fixedMonthlyInterest: string;
112
+ variableMonthlyPayment: string;
113
+ summaryTotal: string;
114
+ reimbursementPerPound: string;
115
+ stressedPayment: string;
116
+ stressedPaymentRate: string;
117
+ rentalCoverage: string;
118
+ rentalCoverageWithoutTopUp: string;
119
+ } | null | undefined;
120
+ cashflowPeriods?: {
121
+ totalNoOfPayments: string;
122
+ fixed?: {
123
+ from: string;
124
+ to: string;
125
+ instalmentAmount: string;
126
+ instalmentInterest: string;
127
+ instalmentCapitalRepaid: string;
128
+ otherCosts: string;
129
+ outstandingCapital: string;
130
+ } | null | undefined;
131
+ variable?: {
132
+ from: string;
133
+ to: string;
134
+ instalmentAmount: string;
135
+ instalmentInterest: string;
136
+ instalmentCapitalRepaid: string;
137
+ otherCosts: string;
138
+ outstandingCapital: string;
139
+ } | null | undefined;
140
+ total?: {
141
+ from: string;
142
+ to: string;
143
+ instalmentAmount: string;
144
+ instalmentInterest: string;
145
+ instalmentCapitalRepaid: string;
146
+ otherCosts: string;
147
+ outstandingCapital: string;
148
+ } | null | undefined;
149
+ } | null | undefined;
150
+ }, {}, {}, {}, mongoose.Document<unknown, {}, {
151
+ name: string;
152
+ applicationId: mongoose.Types.ObjectId;
153
+ repaymentType: string;
154
+ ltv: string;
155
+ reimbursementPerPound: string;
156
+ stressedPayment: string;
157
+ stressedPaymentRate: string;
158
+ rentalCoverage: string;
159
+ clientAdvance: string;
160
+ repayment: string;
161
+ variableRepayment: string;
162
+ reversionRateWithoutBaseRate: string;
163
+ totalReversionRate: string;
164
+ initialRate: string;
165
+ fixedTerm: string;
166
+ fixedTermEndDate: string;
167
+ baseRate: string;
168
+ productRate: string;
169
+ apr: string;
170
+ applicationCategory: string;
171
+ securityType: string;
172
+ erc: string;
173
+ loanType: string;
174
+ maxLtvLimit: string;
175
+ reimbursement: string;
176
+ stressedApr: string;
177
+ stressedRate: string;
178
+ stressedRepayment: string;
179
+ liborFloorRate: string;
180
+ totalTermInMonths: string;
181
+ chargeType: string;
182
+ productCategory: string;
183
+ ercCode: string;
184
+ variableTerm: string;
185
+ totalFeePayable: string;
186
+ dipIssueDate: string;
187
+ estimatedCompletionDate: string;
188
+ dipExpiryDate: string;
189
+ fixedRepaymentUntillDate: string;
190
+ rentalReviewDate: string;
191
+ totalReimbursementWithFee: string;
192
+ finalRentPayment: string;
193
+ clientDeposit: string;
194
+ firstRentPayment: string;
195
+ fees: mongoose.Types.DocumentArray<{
196
+ description: string;
197
+ additionalData: any;
198
+ feeType: string;
199
+ feeAmount: string;
200
+ rate: string;
201
+ addedToLoan: string;
202
+ allowOverride: string;
203
+ }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
204
+ description: string;
205
+ additionalData: any;
206
+ feeType: string;
207
+ feeAmount: string;
208
+ rate: string;
209
+ addedToLoan: string;
210
+ allowOverride: string;
211
+ }> & {
212
+ description: string;
213
+ additionalData: any;
214
+ feeType: string;
215
+ feeAmount: string;
216
+ rate: string;
217
+ addedToLoan: string;
218
+ allowOverride: string;
219
+ }>;
220
+ ercFeatures: any;
221
+ icr: string;
222
+ ufssProductCode: string;
223
+ ufssInterestRateCode: string;
224
+ calculations?: {
225
+ ltv: string;
226
+ rentalCoverageRatioRate: string;
227
+ bankContributionRate: string;
228
+ bankInitialShareRate: string;
229
+ totalAmountPayable: string;
230
+ fixedMonthlyPayment: string;
231
+ fixedMonthlyCapital: string;
232
+ fixedMonthlyInterest: string;
233
+ variableMonthlyPayment: string;
234
+ summaryTotal: string;
235
+ reimbursementPerPound: string;
236
+ stressedPayment: string;
237
+ stressedPaymentRate: string;
238
+ rentalCoverage: string;
239
+ rentalCoverageWithoutTopUp: string;
240
+ } | null | undefined;
241
+ cashflowPeriods?: {
242
+ totalNoOfPayments: string;
243
+ fixed?: {
244
+ from: string;
245
+ to: string;
246
+ instalmentAmount: string;
247
+ instalmentInterest: string;
248
+ instalmentCapitalRepaid: string;
249
+ otherCosts: string;
250
+ outstandingCapital: string;
251
+ } | null | undefined;
252
+ variable?: {
253
+ from: string;
254
+ to: string;
255
+ instalmentAmount: string;
256
+ instalmentInterest: string;
257
+ instalmentCapitalRepaid: string;
258
+ otherCosts: string;
259
+ outstandingCapital: string;
260
+ } | null | undefined;
261
+ total?: {
262
+ from: string;
263
+ to: string;
264
+ instalmentAmount: string;
265
+ instalmentInterest: string;
266
+ instalmentCapitalRepaid: string;
267
+ otherCosts: string;
268
+ outstandingCapital: string;
269
+ } | null | undefined;
270
+ } | null | undefined;
271
+ }> & {
272
+ name: string;
273
+ applicationId: mongoose.Types.ObjectId;
274
+ repaymentType: string;
275
+ ltv: string;
276
+ reimbursementPerPound: string;
277
+ stressedPayment: string;
278
+ stressedPaymentRate: string;
279
+ rentalCoverage: string;
280
+ clientAdvance: string;
281
+ repayment: string;
282
+ variableRepayment: string;
283
+ reversionRateWithoutBaseRate: string;
284
+ totalReversionRate: string;
285
+ initialRate: string;
286
+ fixedTerm: string;
287
+ fixedTermEndDate: string;
288
+ baseRate: string;
289
+ productRate: string;
290
+ apr: string;
291
+ applicationCategory: string;
292
+ securityType: string;
293
+ erc: string;
294
+ loanType: string;
295
+ maxLtvLimit: string;
296
+ reimbursement: string;
297
+ stressedApr: string;
298
+ stressedRate: string;
299
+ stressedRepayment: string;
300
+ liborFloorRate: string;
301
+ totalTermInMonths: string;
302
+ chargeType: string;
303
+ productCategory: string;
304
+ ercCode: string;
305
+ variableTerm: string;
306
+ totalFeePayable: string;
307
+ dipIssueDate: string;
308
+ estimatedCompletionDate: string;
309
+ dipExpiryDate: string;
310
+ fixedRepaymentUntillDate: string;
311
+ rentalReviewDate: string;
312
+ totalReimbursementWithFee: string;
313
+ finalRentPayment: string;
314
+ clientDeposit: string;
315
+ firstRentPayment: string;
316
+ fees: mongoose.Types.DocumentArray<{
317
+ description: string;
318
+ additionalData: any;
319
+ feeType: string;
320
+ feeAmount: string;
321
+ rate: string;
322
+ addedToLoan: string;
323
+ allowOverride: string;
324
+ }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
325
+ description: string;
326
+ additionalData: any;
327
+ feeType: string;
328
+ feeAmount: string;
329
+ rate: string;
330
+ addedToLoan: string;
331
+ allowOverride: string;
332
+ }> & {
333
+ description: string;
334
+ additionalData: any;
335
+ feeType: string;
336
+ feeAmount: string;
337
+ rate: string;
338
+ addedToLoan: string;
339
+ allowOverride: string;
340
+ }>;
341
+ ercFeatures: any;
342
+ icr: string;
343
+ ufssProductCode: string;
344
+ ufssInterestRateCode: string;
345
+ calculations?: {
346
+ ltv: string;
347
+ rentalCoverageRatioRate: string;
348
+ bankContributionRate: string;
349
+ bankInitialShareRate: string;
350
+ totalAmountPayable: string;
351
+ fixedMonthlyPayment: string;
352
+ fixedMonthlyCapital: string;
353
+ fixedMonthlyInterest: string;
354
+ variableMonthlyPayment: string;
355
+ summaryTotal: string;
356
+ reimbursementPerPound: string;
357
+ stressedPayment: string;
358
+ stressedPaymentRate: string;
359
+ rentalCoverage: string;
360
+ rentalCoverageWithoutTopUp: string;
361
+ } | null | undefined;
362
+ cashflowPeriods?: {
363
+ totalNoOfPayments: string;
364
+ fixed?: {
365
+ from: string;
366
+ to: string;
367
+ instalmentAmount: string;
368
+ instalmentInterest: string;
369
+ instalmentCapitalRepaid: string;
370
+ otherCosts: string;
371
+ outstandingCapital: string;
372
+ } | null | undefined;
373
+ variable?: {
374
+ from: string;
375
+ to: string;
376
+ instalmentAmount: string;
377
+ instalmentInterest: string;
378
+ instalmentCapitalRepaid: string;
379
+ otherCosts: string;
380
+ outstandingCapital: string;
381
+ } | null | undefined;
382
+ total?: {
383
+ from: string;
384
+ to: string;
385
+ instalmentAmount: string;
386
+ instalmentInterest: string;
387
+ instalmentCapitalRepaid: string;
388
+ otherCosts: string;
389
+ outstandingCapital: string;
390
+ } | null | undefined;
391
+ } | null | undefined;
392
+ } & {
393
+ _id: mongoose.Types.ObjectId;
394
+ } & {
395
+ __v: number;
396
+ }, mongoose.Schema<any, mongoose.Model<any, any, any, any, any, any>, {}, {}, {}, {}, mongoose.DefaultSchemaOptions, {
397
+ name: string;
398
+ applicationId: mongoose.Types.ObjectId;
399
+ repaymentType: string;
400
+ ltv: string;
401
+ reimbursementPerPound: string;
402
+ stressedPayment: string;
403
+ stressedPaymentRate: string;
404
+ rentalCoverage: string;
405
+ clientAdvance: string;
406
+ repayment: string;
407
+ variableRepayment: string;
408
+ reversionRateWithoutBaseRate: string;
409
+ totalReversionRate: string;
410
+ initialRate: string;
411
+ fixedTerm: string;
412
+ fixedTermEndDate: string;
413
+ baseRate: string;
414
+ productRate: string;
415
+ apr: string;
416
+ applicationCategory: string;
417
+ securityType: string;
418
+ erc: string;
419
+ loanType: string;
420
+ maxLtvLimit: string;
421
+ reimbursement: string;
422
+ stressedApr: string;
423
+ stressedRate: string;
424
+ stressedRepayment: string;
425
+ liborFloorRate: string;
426
+ totalTermInMonths: string;
427
+ chargeType: string;
428
+ productCategory: string;
429
+ ercCode: string;
430
+ variableTerm: string;
431
+ totalFeePayable: string;
432
+ dipIssueDate: string;
433
+ estimatedCompletionDate: string;
434
+ dipExpiryDate: string;
435
+ fixedRepaymentUntillDate: string;
436
+ rentalReviewDate: string;
437
+ totalReimbursementWithFee: string;
438
+ finalRentPayment: string;
439
+ clientDeposit: string;
440
+ firstRentPayment: string;
441
+ fees: mongoose.Types.DocumentArray<{
442
+ description: string;
443
+ additionalData: any;
444
+ feeType: string;
445
+ feeAmount: string;
446
+ rate: string;
447
+ addedToLoan: string;
448
+ allowOverride: string;
449
+ }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
450
+ description: string;
451
+ additionalData: any;
452
+ feeType: string;
453
+ feeAmount: string;
454
+ rate: string;
455
+ addedToLoan: string;
456
+ allowOverride: string;
457
+ }> & {
458
+ description: string;
459
+ additionalData: any;
460
+ feeType: string;
461
+ feeAmount: string;
462
+ rate: string;
463
+ addedToLoan: string;
464
+ allowOverride: string;
465
+ }>;
466
+ ercFeatures: any;
467
+ icr: string;
468
+ ufssProductCode: string;
469
+ ufssInterestRateCode: string;
470
+ calculations?: {
471
+ ltv: string;
472
+ rentalCoverageRatioRate: string;
473
+ bankContributionRate: string;
474
+ bankInitialShareRate: string;
475
+ totalAmountPayable: string;
476
+ fixedMonthlyPayment: string;
477
+ fixedMonthlyCapital: string;
478
+ fixedMonthlyInterest: string;
479
+ variableMonthlyPayment: string;
480
+ summaryTotal: string;
481
+ reimbursementPerPound: string;
482
+ stressedPayment: string;
483
+ stressedPaymentRate: string;
484
+ rentalCoverage: string;
485
+ rentalCoverageWithoutTopUp: string;
486
+ } | null | undefined;
487
+ cashflowPeriods?: {
488
+ totalNoOfPayments: string;
489
+ fixed?: {
490
+ from: string;
491
+ to: string;
492
+ instalmentAmount: string;
493
+ instalmentInterest: string;
494
+ instalmentCapitalRepaid: string;
495
+ otherCosts: string;
496
+ outstandingCapital: string;
497
+ } | null | undefined;
498
+ variable?: {
499
+ from: string;
500
+ to: string;
501
+ instalmentAmount: string;
502
+ instalmentInterest: string;
503
+ instalmentCapitalRepaid: string;
504
+ otherCosts: string;
505
+ outstandingCapital: string;
506
+ } | null | undefined;
507
+ total?: {
508
+ from: string;
509
+ to: string;
510
+ instalmentAmount: string;
511
+ instalmentInterest: string;
512
+ instalmentCapitalRepaid: string;
513
+ otherCosts: string;
514
+ outstandingCapital: string;
515
+ } | null | undefined;
516
+ } | null | undefined;
517
+ }, mongoose.Document<unknown, {}, mongoose.FlatRecord<{
518
+ name: string;
519
+ applicationId: mongoose.Types.ObjectId;
520
+ repaymentType: string;
521
+ ltv: string;
522
+ reimbursementPerPound: string;
523
+ stressedPayment: string;
524
+ stressedPaymentRate: string;
525
+ rentalCoverage: string;
526
+ clientAdvance: string;
527
+ repayment: string;
528
+ variableRepayment: string;
529
+ reversionRateWithoutBaseRate: string;
530
+ totalReversionRate: string;
531
+ initialRate: string;
532
+ fixedTerm: string;
533
+ fixedTermEndDate: string;
534
+ baseRate: string;
535
+ productRate: string;
536
+ apr: string;
537
+ applicationCategory: string;
538
+ securityType: string;
539
+ erc: string;
540
+ loanType: string;
541
+ maxLtvLimit: string;
542
+ reimbursement: string;
543
+ stressedApr: string;
544
+ stressedRate: string;
545
+ stressedRepayment: string;
546
+ liborFloorRate: string;
547
+ totalTermInMonths: string;
548
+ chargeType: string;
549
+ productCategory: string;
550
+ ercCode: string;
551
+ variableTerm: string;
552
+ totalFeePayable: string;
553
+ dipIssueDate: string;
554
+ estimatedCompletionDate: string;
555
+ dipExpiryDate: string;
556
+ fixedRepaymentUntillDate: string;
557
+ rentalReviewDate: string;
558
+ totalReimbursementWithFee: string;
559
+ finalRentPayment: string;
560
+ clientDeposit: string;
561
+ firstRentPayment: string;
562
+ fees: mongoose.Types.DocumentArray<{
563
+ description: string;
564
+ additionalData: any;
565
+ feeType: string;
566
+ feeAmount: string;
567
+ rate: string;
568
+ addedToLoan: string;
569
+ allowOverride: string;
570
+ }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
571
+ description: string;
572
+ additionalData: any;
573
+ feeType: string;
574
+ feeAmount: string;
575
+ rate: string;
576
+ addedToLoan: string;
577
+ allowOverride: string;
578
+ }> & {
579
+ description: string;
580
+ additionalData: any;
581
+ feeType: string;
582
+ feeAmount: string;
583
+ rate: string;
584
+ addedToLoan: string;
585
+ allowOverride: string;
586
+ }>;
587
+ ercFeatures: any;
588
+ icr: string;
589
+ ufssProductCode: string;
590
+ ufssInterestRateCode: string;
591
+ calculations?: {
592
+ ltv: string;
593
+ rentalCoverageRatioRate: string;
594
+ bankContributionRate: string;
595
+ bankInitialShareRate: string;
596
+ totalAmountPayable: string;
597
+ fixedMonthlyPayment: string;
598
+ fixedMonthlyCapital: string;
599
+ fixedMonthlyInterest: string;
600
+ variableMonthlyPayment: string;
601
+ summaryTotal: string;
602
+ reimbursementPerPound: string;
603
+ stressedPayment: string;
604
+ stressedPaymentRate: string;
605
+ rentalCoverage: string;
606
+ rentalCoverageWithoutTopUp: string;
607
+ } | null | undefined;
608
+ cashflowPeriods?: {
609
+ totalNoOfPayments: string;
610
+ fixed?: {
611
+ from: string;
612
+ to: string;
613
+ instalmentAmount: string;
614
+ instalmentInterest: string;
615
+ instalmentCapitalRepaid: string;
616
+ otherCosts: string;
617
+ outstandingCapital: string;
618
+ } | null | undefined;
619
+ variable?: {
620
+ from: string;
621
+ to: string;
622
+ instalmentAmount: string;
623
+ instalmentInterest: string;
624
+ instalmentCapitalRepaid: string;
625
+ otherCosts: string;
626
+ outstandingCapital: string;
627
+ } | null | undefined;
628
+ total?: {
629
+ from: string;
630
+ to: string;
631
+ instalmentAmount: string;
632
+ instalmentInterest: string;
633
+ instalmentCapitalRepaid: string;
634
+ otherCosts: string;
635
+ outstandingCapital: string;
636
+ } | null | undefined;
637
+ } | null | undefined;
638
+ }>> & mongoose.FlatRecord<{
639
+ name: string;
640
+ applicationId: mongoose.Types.ObjectId;
641
+ repaymentType: string;
642
+ ltv: string;
643
+ reimbursementPerPound: string;
644
+ stressedPayment: string;
645
+ stressedPaymentRate: string;
646
+ rentalCoverage: string;
647
+ clientAdvance: string;
648
+ repayment: string;
649
+ variableRepayment: string;
650
+ reversionRateWithoutBaseRate: string;
651
+ totalReversionRate: string;
652
+ initialRate: string;
653
+ fixedTerm: string;
654
+ fixedTermEndDate: string;
655
+ baseRate: string;
656
+ productRate: string;
657
+ apr: string;
658
+ applicationCategory: string;
659
+ securityType: string;
660
+ erc: string;
661
+ loanType: string;
662
+ maxLtvLimit: string;
663
+ reimbursement: string;
664
+ stressedApr: string;
665
+ stressedRate: string;
666
+ stressedRepayment: string;
667
+ liborFloorRate: string;
668
+ totalTermInMonths: string;
669
+ chargeType: string;
670
+ productCategory: string;
671
+ ercCode: string;
672
+ variableTerm: string;
673
+ totalFeePayable: string;
674
+ dipIssueDate: string;
675
+ estimatedCompletionDate: string;
676
+ dipExpiryDate: string;
677
+ fixedRepaymentUntillDate: string;
678
+ rentalReviewDate: string;
679
+ totalReimbursementWithFee: string;
680
+ finalRentPayment: string;
681
+ clientDeposit: string;
682
+ firstRentPayment: string;
683
+ fees: mongoose.Types.DocumentArray<{
684
+ description: string;
685
+ additionalData: any;
686
+ feeType: string;
687
+ feeAmount: string;
688
+ rate: string;
689
+ addedToLoan: string;
690
+ allowOverride: string;
691
+ }, mongoose.Types.Subdocument<mongoose.Types.ObjectId, any, {
692
+ description: string;
693
+ additionalData: any;
694
+ feeType: string;
695
+ feeAmount: string;
696
+ rate: string;
697
+ addedToLoan: string;
698
+ allowOverride: string;
699
+ }> & {
700
+ description: string;
701
+ additionalData: any;
702
+ feeType: string;
703
+ feeAmount: string;
704
+ rate: string;
705
+ addedToLoan: string;
706
+ allowOverride: string;
707
+ }>;
708
+ ercFeatures: any;
709
+ icr: string;
710
+ ufssProductCode: string;
711
+ ufssInterestRateCode: string;
712
+ calculations?: {
713
+ ltv: string;
714
+ rentalCoverageRatioRate: string;
715
+ bankContributionRate: string;
716
+ bankInitialShareRate: string;
717
+ totalAmountPayable: string;
718
+ fixedMonthlyPayment: string;
719
+ fixedMonthlyCapital: string;
720
+ fixedMonthlyInterest: string;
721
+ variableMonthlyPayment: string;
722
+ summaryTotal: string;
723
+ reimbursementPerPound: string;
724
+ stressedPayment: string;
725
+ stressedPaymentRate: string;
726
+ rentalCoverage: string;
727
+ rentalCoverageWithoutTopUp: string;
728
+ } | null | undefined;
729
+ cashflowPeriods?: {
730
+ totalNoOfPayments: string;
731
+ fixed?: {
732
+ from: string;
733
+ to: string;
734
+ instalmentAmount: string;
735
+ instalmentInterest: string;
736
+ instalmentCapitalRepaid: string;
737
+ otherCosts: string;
738
+ outstandingCapital: string;
739
+ } | null | undefined;
740
+ variable?: {
741
+ from: string;
742
+ to: string;
743
+ instalmentAmount: string;
744
+ instalmentInterest: string;
745
+ instalmentCapitalRepaid: string;
746
+ otherCosts: string;
747
+ outstandingCapital: string;
748
+ } | null | undefined;
749
+ total?: {
750
+ from: string;
751
+ to: string;
752
+ instalmentAmount: string;
753
+ instalmentInterest: string;
754
+ instalmentCapitalRepaid: string;
755
+ otherCosts: string;
756
+ outstandingCapital: string;
757
+ } | null | undefined;
758
+ } | null | undefined;
759
+ }> & {
760
+ _id: mongoose.Types.ObjectId;
761
+ } & {
762
+ __v: number;
763
+ }>>;
764
+ export default ApplicationProductFeaturesModel;
765
+ //# sourceMappingURL=application-productfeatures.model.d.ts.map