@dynamatix/gb-schemas 1.2.21 → 1.2.23
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/applications/application-mortgage.model.d.ts.map +1 -1
- package/dist/applications/application-mortgage.model.js +53 -61
- package/dist/applications/application-product.model.d.ts +0 -6
- package/dist/applications/application-product.model.d.ts.map +1 -1
- package/dist/applications/application-product.model.js +0 -1
- package/dist/applications/application.model.d.ts +6 -6
- package/dist/applications/index.d.ts +1 -0
- package/dist/applications/index.d.ts.map +1 -1
- package/dist/applications/index.js +1 -0
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"application-mortgage.model.d.ts","sourceRoot":"","sources":["../../applications/application-mortgage.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAChC,OAAO,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAC;
|
|
1
|
+
{"version":3,"file":"application-mortgage.model.d.ts","sourceRoot":"","sources":["../../applications/application-mortgage.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAChC,OAAO,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAC;AA4Q/C,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAA6C,CAAC;AAEjE,eAAe,aAAa,CAAC"}
|
|
@@ -164,67 +164,59 @@ const mortgageSchema = new mongoose.Schema({
|
|
|
164
164
|
toJSON: { virtuals: true },
|
|
165
165
|
toObject: { virtuals: true },
|
|
166
166
|
});
|
|
167
|
-
const virtualDepositComeFrom = mortgageSchema.virtual("depositComeFrom", {
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
});
|
|
173
|
-
virtualDepositComeFrom.description =
|
|
174
|
-
|
|
175
|
-
const
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
});
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
const
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
});
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
const
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
});
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
const
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
});
|
|
219
|
-
|
|
220
|
-
"Populated lookup values for proposed tenants of the property";
|
|
221
|
-
const virtualLeaseType = mortgageSchema.virtual("leaseType", {
|
|
222
|
-
ref: "Lookup",
|
|
223
|
-
localField: "leaseTypeLid",
|
|
224
|
-
foreignField: "_id",
|
|
225
|
-
justOne: true,
|
|
226
|
-
});
|
|
227
|
-
virtualLeaseType.description = "Populated lookup value for lease type";
|
|
167
|
+
// const virtualDepositComeFrom = mortgageSchema.virtual("depositComeFrom", {
|
|
168
|
+
// ref: "Lookup",
|
|
169
|
+
// localField: "depositComeFromLid",
|
|
170
|
+
// foreignField: "_id",
|
|
171
|
+
// justOne: false,
|
|
172
|
+
// }) as VirtualWithDescription;
|
|
173
|
+
// virtualDepositComeFrom.description =
|
|
174
|
+
// "Populated lookup values for where the deposit for the mortgage will come from";
|
|
175
|
+
// const virtualRepaymentType = mortgageSchema.virtual("repaymentType", {
|
|
176
|
+
// ref: "Lookup",
|
|
177
|
+
// localField: "repaymentTypeLid",
|
|
178
|
+
// foreignField: "_id",
|
|
179
|
+
// justOne: true,
|
|
180
|
+
// }) as VirtualWithDescription;
|
|
181
|
+
// virtualRepaymentType.description =
|
|
182
|
+
// "Populated lookup value representing the type of repayment";
|
|
183
|
+
// const virtualExitStrategy = mortgageSchema.virtual("exitStrategy", {
|
|
184
|
+
// ref: "Lookup",
|
|
185
|
+
// localField: "exitStrategyLid",
|
|
186
|
+
// foreignField: "_id",
|
|
187
|
+
// justOne: true,
|
|
188
|
+
// }) as VirtualWithDescription;
|
|
189
|
+
// virtualExitStrategy.description = "Populated lookup value for exit strategy";
|
|
190
|
+
// const virtualSourceOfFunds = mortgageSchema.virtual("sourceOfFunds", {
|
|
191
|
+
// ref: "Lookup",
|
|
192
|
+
// localField: "sourceOfFundsLid",
|
|
193
|
+
// foreignField: "_id",
|
|
194
|
+
// justOne: true,
|
|
195
|
+
// }) as VirtualWithDescription;
|
|
196
|
+
// virtualSourceOfFunds.description =
|
|
197
|
+
// "Populated lookup value for the main source of income for monthly finance payments";
|
|
198
|
+
// const virtualSaleMade = mortgageSchema.virtual("saleMade", {
|
|
199
|
+
// ref: "Lookup",
|
|
200
|
+
// localField: "saleMadeLid",
|
|
201
|
+
// foreignField: "_id",
|
|
202
|
+
// justOne: true,
|
|
203
|
+
// }) as VirtualWithDescription;
|
|
204
|
+
// virtualSaleMade.description = "Populated lookup value for method of sale made";
|
|
205
|
+
// const virtualProposedTenants = mortgageSchema.virtual("proposedTenants", {
|
|
206
|
+
// ref: "Lookup",
|
|
207
|
+
// localField: "proposedTenantsLid",
|
|
208
|
+
// foreignField: "_id",
|
|
209
|
+
// justOne: false,
|
|
210
|
+
// }) as VirtualWithDescription;
|
|
211
|
+
// virtualProposedTenants.description =
|
|
212
|
+
// "Populated lookup values for proposed tenants of the property";
|
|
213
|
+
// const virtualLeaseType = mortgageSchema.virtual("leaseType", {
|
|
214
|
+
// ref: "Lookup",
|
|
215
|
+
// localField: "leaseTypeLid",
|
|
216
|
+
// foreignField: "_id",
|
|
217
|
+
// justOne: true,
|
|
218
|
+
// }) as VirtualWithDescription;
|
|
219
|
+
// virtualLeaseType.description = "Populated lookup value for lease type";
|
|
228
220
|
// virtual property 'applicationType'
|
|
229
221
|
mortgageSchema.virtual('applicationType').get(function () {
|
|
230
222
|
return this.applicationId?.applicationTypeLid instanceof mongoose.Types.ObjectId
|
|
@@ -27,7 +27,6 @@
|
|
|
27
27
|
/// <reference types="mongoose/types/inferrawdoctype" />
|
|
28
28
|
import mongoose from "mongoose";
|
|
29
29
|
declare const ProductModel: mongoose.Model<{
|
|
30
|
-
numberOfYearsToRepay: string;
|
|
31
30
|
selectedProduct: string;
|
|
32
31
|
applicationId?: unknown;
|
|
33
32
|
pageValidFlag?: unknown;
|
|
@@ -46,7 +45,6 @@ declare const ProductModel: mongoose.Model<{
|
|
|
46
45
|
tempAppFee?: unknown;
|
|
47
46
|
productFeePaymentTypeLid?: unknown;
|
|
48
47
|
}, {}, {}, {}, mongoose.Document<unknown, {}, {
|
|
49
|
-
numberOfYearsToRepay: string;
|
|
50
48
|
selectedProduct: string;
|
|
51
49
|
applicationId?: unknown;
|
|
52
50
|
pageValidFlag?: unknown;
|
|
@@ -65,7 +63,6 @@ declare const ProductModel: mongoose.Model<{
|
|
|
65
63
|
tempAppFee?: unknown;
|
|
66
64
|
productFeePaymentTypeLid?: unknown;
|
|
67
65
|
}> & {
|
|
68
|
-
numberOfYearsToRepay: string;
|
|
69
66
|
selectedProduct: string;
|
|
70
67
|
applicationId?: unknown;
|
|
71
68
|
pageValidFlag?: unknown;
|
|
@@ -88,7 +85,6 @@ declare const ProductModel: mongoose.Model<{
|
|
|
88
85
|
} & {
|
|
89
86
|
__v: number;
|
|
90
87
|
}, mongoose.Schema<any, mongoose.Model<any, any, any, any, any, any>, {}, {}, {}, {}, mongoose.DefaultSchemaOptions, {
|
|
91
|
-
numberOfYearsToRepay: string;
|
|
92
88
|
selectedProduct: string;
|
|
93
89
|
applicationId?: unknown;
|
|
94
90
|
pageValidFlag?: unknown;
|
|
@@ -107,7 +103,6 @@ declare const ProductModel: mongoose.Model<{
|
|
|
107
103
|
tempAppFee?: unknown;
|
|
108
104
|
productFeePaymentTypeLid?: unknown;
|
|
109
105
|
}, mongoose.Document<unknown, {}, mongoose.FlatRecord<{
|
|
110
|
-
numberOfYearsToRepay: string;
|
|
111
106
|
selectedProduct: string;
|
|
112
107
|
applicationId?: unknown;
|
|
113
108
|
pageValidFlag?: unknown;
|
|
@@ -126,7 +121,6 @@ declare const ProductModel: mongoose.Model<{
|
|
|
126
121
|
tempAppFee?: unknown;
|
|
127
122
|
productFeePaymentTypeLid?: unknown;
|
|
128
123
|
}>> & mongoose.FlatRecord<{
|
|
129
|
-
numberOfYearsToRepay: string;
|
|
130
124
|
selectedProduct: string;
|
|
131
125
|
applicationId?: unknown;
|
|
132
126
|
pageValidFlag?: unknown;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"application-product.model.d.ts","sourceRoot":"","sources":["../../applications/application-product.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"application-product.model.d.ts","sourceRoot":"","sources":["../../applications/application-product.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAyEhC,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAA2C,CAAC;AAC9D,eAAe,YAAY,CAAC"}
|
|
@@ -4,7 +4,6 @@ const productSchema = new mongoose.Schema({
|
|
|
4
4
|
applicationId: { type: mongoose.Schema.Types.ObjectId, ref: "Application", required: true,
|
|
5
5
|
description: "Unique identifier for the application"
|
|
6
6
|
},
|
|
7
|
-
numberOfYearsToRepay: { type: String, default: 0 },
|
|
8
7
|
selectedProduct: { type: String, default: "" },
|
|
9
8
|
lendingTypeLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup" },
|
|
10
9
|
pageValidFlag: { type: Boolean, get: (value) => (value ? "Yes" : "No") },
|
|
@@ -33,7 +33,6 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
33
33
|
applicationId: string;
|
|
34
34
|
applicants: mongoose.Types.ObjectId[];
|
|
35
35
|
repaymentTypeLid: mongoose.Types.ObjectId;
|
|
36
|
-
sourceOfWealthLid: mongoose.Types.ObjectId;
|
|
37
36
|
lendingTypeLid: mongoose.Types.ObjectId;
|
|
38
37
|
introducer: string;
|
|
39
38
|
isFinanceRecommendedToApplicant: string;
|
|
@@ -56,6 +55,7 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
56
55
|
newReason: string;
|
|
57
56
|
purchaseTypeLid: mongoose.Types.ObjectId;
|
|
58
57
|
rejectedReason: string;
|
|
58
|
+
sourceOfWealthLid: mongoose.Types.ObjectId;
|
|
59
59
|
sowBusiness: string;
|
|
60
60
|
sowInheritance: string;
|
|
61
61
|
sowOther: string;
|
|
@@ -221,7 +221,6 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
221
221
|
applicationId: string;
|
|
222
222
|
applicants: mongoose.Types.ObjectId[];
|
|
223
223
|
repaymentTypeLid: mongoose.Types.ObjectId;
|
|
224
|
-
sourceOfWealthLid: mongoose.Types.ObjectId;
|
|
225
224
|
lendingTypeLid: mongoose.Types.ObjectId;
|
|
226
225
|
introducer: string;
|
|
227
226
|
isFinanceRecommendedToApplicant: string;
|
|
@@ -244,6 +243,7 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
244
243
|
newReason: string;
|
|
245
244
|
purchaseTypeLid: mongoose.Types.ObjectId;
|
|
246
245
|
rejectedReason: string;
|
|
246
|
+
sourceOfWealthLid: mongoose.Types.ObjectId;
|
|
247
247
|
sowBusiness: string;
|
|
248
248
|
sowInheritance: string;
|
|
249
249
|
sowOther: string;
|
|
@@ -409,7 +409,6 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
409
409
|
applicationId: string;
|
|
410
410
|
applicants: mongoose.Types.ObjectId[];
|
|
411
411
|
repaymentTypeLid: mongoose.Types.ObjectId;
|
|
412
|
-
sourceOfWealthLid: mongoose.Types.ObjectId;
|
|
413
412
|
lendingTypeLid: mongoose.Types.ObjectId;
|
|
414
413
|
introducer: string;
|
|
415
414
|
isFinanceRecommendedToApplicant: string;
|
|
@@ -432,6 +431,7 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
432
431
|
newReason: string;
|
|
433
432
|
purchaseTypeLid: mongoose.Types.ObjectId;
|
|
434
433
|
rejectedReason: string;
|
|
434
|
+
sourceOfWealthLid: mongoose.Types.ObjectId;
|
|
435
435
|
sowBusiness: string;
|
|
436
436
|
sowInheritance: string;
|
|
437
437
|
sowOther: string;
|
|
@@ -609,7 +609,6 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
609
609
|
applicationId: string;
|
|
610
610
|
applicants: mongoose.Types.ObjectId[];
|
|
611
611
|
repaymentTypeLid: mongoose.Types.ObjectId;
|
|
612
|
-
sourceOfWealthLid: mongoose.Types.ObjectId;
|
|
613
612
|
lendingTypeLid: mongoose.Types.ObjectId;
|
|
614
613
|
introducer: string;
|
|
615
614
|
isFinanceRecommendedToApplicant: string;
|
|
@@ -632,6 +631,7 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
632
631
|
newReason: string;
|
|
633
632
|
purchaseTypeLid: mongoose.Types.ObjectId;
|
|
634
633
|
rejectedReason: string;
|
|
634
|
+
sourceOfWealthLid: mongoose.Types.ObjectId;
|
|
635
635
|
sowBusiness: string;
|
|
636
636
|
sowInheritance: string;
|
|
637
637
|
sowOther: string;
|
|
@@ -797,7 +797,6 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
797
797
|
applicationId: string;
|
|
798
798
|
applicants: mongoose.Types.ObjectId[];
|
|
799
799
|
repaymentTypeLid: mongoose.Types.ObjectId;
|
|
800
|
-
sourceOfWealthLid: mongoose.Types.ObjectId;
|
|
801
800
|
lendingTypeLid: mongoose.Types.ObjectId;
|
|
802
801
|
introducer: string;
|
|
803
802
|
isFinanceRecommendedToApplicant: string;
|
|
@@ -820,6 +819,7 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
820
819
|
newReason: string;
|
|
821
820
|
purchaseTypeLid: mongoose.Types.ObjectId;
|
|
822
821
|
rejectedReason: string;
|
|
822
|
+
sourceOfWealthLid: mongoose.Types.ObjectId;
|
|
823
823
|
sowBusiness: string;
|
|
824
824
|
sowInheritance: string;
|
|
825
825
|
sowOther: string;
|
|
@@ -985,7 +985,6 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
985
985
|
applicationId: string;
|
|
986
986
|
applicants: mongoose.Types.ObjectId[];
|
|
987
987
|
repaymentTypeLid: mongoose.Types.ObjectId;
|
|
988
|
-
sourceOfWealthLid: mongoose.Types.ObjectId;
|
|
989
988
|
lendingTypeLid: mongoose.Types.ObjectId;
|
|
990
989
|
introducer: string;
|
|
991
990
|
isFinanceRecommendedToApplicant: string;
|
|
@@ -1008,6 +1007,7 @@ declare const ApplicationModel: mongoose.Model<{
|
|
|
1008
1007
|
newReason: string;
|
|
1009
1008
|
purchaseTypeLid: mongoose.Types.ObjectId;
|
|
1010
1009
|
rejectedReason: string;
|
|
1010
|
+
sourceOfWealthLid: mongoose.Types.ObjectId;
|
|
1011
1011
|
sowBusiness: string;
|
|
1012
1012
|
sowInheritance: string;
|
|
1013
1013
|
sowOther: string;
|
|
@@ -10,6 +10,7 @@ export { default as ApplicationOnboardingModel } from './application-onboarding.
|
|
|
10
10
|
export { default as ApplicationRationaleModel } from './application-rationale.model';
|
|
11
11
|
export { default as ApplicationValuationModel } from './application-valuation.model';
|
|
12
12
|
export { default as BrokerModel } from './broker.model';
|
|
13
|
+
export { default as ProductModel } from './application-product.model';
|
|
13
14
|
export { default as ProductFeaturesModel } from './productfeatures.model';
|
|
14
15
|
export { default as SolicitorModel } from './solicitor.model';
|
|
15
16
|
export { default as ApplicationDocumentModel } from './application-document.model';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../applications/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAC7E,OAAO,EAAE,OAAO,IAAI,yBAAyB,EAAE,MAAM,oCAAoC,CAAC;AAC1F,OAAO,EAAE,OAAO,IAAI,uBAAuB,EAAE,MAAM,gCAAgC,CAAC;AACpF,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAC3E,OAAO,EAAE,OAAO,IAAI,6BAA6B,EAAE,MAAM,oCAAoC,CAAC;AAC9F,OAAO,EAAE,OAAO,IAAI,2BAA2B,EAAC,MAAM,kCAAkC,CAAA;AACxF,OAAO,EAAE,OAAO,IAAI,wBAAwB,EAAE,MAAM,8BAA8B,CAAC;AACnF,OAAO,EAAE,OAAO,IAAI,0BAA0B,EAAE,MAAM,gCAAgC,CAAC;AACvF,OAAO,EAAE,OAAO,IAAI,yBAAyB,EAAE,MAAM,+BAA+B,CAAC;AACrF,OAAO,EAAE,OAAO,IAAI,yBAAyB,EAAE,MAAM,+BAA+B,CAAC;AACrF,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,yBAAyB,CAAC;AAC1E,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,wBAAwB,EAAE,MAAM,8BAA8B,CAAC;AACnF,OAAO,EAAE,OAAO,IAAI,6BAA6B,EAAE,MAAM,oCAAoC,CAAC;AAC9F,OAAO,EAAE,OAAO,IAAI,2BAA2B,EAAE,MAAM,iCAAiC,CAAC;AACzF,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,8BAA8B,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../applications/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAC7E,OAAO,EAAE,OAAO,IAAI,yBAAyB,EAAE,MAAM,oCAAoC,CAAC;AAC1F,OAAO,EAAE,OAAO,IAAI,uBAAuB,EAAE,MAAM,gCAAgC,CAAC;AACpF,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAC3E,OAAO,EAAE,OAAO,IAAI,6BAA6B,EAAE,MAAM,oCAAoC,CAAC;AAC9F,OAAO,EAAE,OAAO,IAAI,2BAA2B,EAAC,MAAM,kCAAkC,CAAA;AACxF,OAAO,EAAE,OAAO,IAAI,wBAAwB,EAAE,MAAM,8BAA8B,CAAC;AACnF,OAAO,EAAE,OAAO,IAAI,0BAA0B,EAAE,MAAM,gCAAgC,CAAC;AACvF,OAAO,EAAE,OAAO,IAAI,yBAAyB,EAAE,MAAM,+BAA+B,CAAC;AACrF,OAAO,EAAE,OAAO,IAAI,yBAAyB,EAAE,MAAM,+BAA+B,CAAC;AACrF,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,6BAA6B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,yBAAyB,CAAC;AAC1E,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,wBAAwB,EAAE,MAAM,8BAA8B,CAAC;AACnF,OAAO,EAAE,OAAO,IAAI,6BAA6B,EAAE,MAAM,oCAAoC,CAAC;AAC9F,OAAO,EAAE,OAAO,IAAI,2BAA2B,EAAE,MAAM,iCAAiC,CAAC;AACzF,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,8BAA8B,CAAC"}
|
|
@@ -10,6 +10,7 @@ export { default as ApplicationOnboardingModel } from './application-onboarding.
|
|
|
10
10
|
export { default as ApplicationRationaleModel } from './application-rationale.model';
|
|
11
11
|
export { default as ApplicationValuationModel } from './application-valuation.model';
|
|
12
12
|
export { default as BrokerModel } from './broker.model';
|
|
13
|
+
export { default as ProductModel } from './application-product.model';
|
|
13
14
|
export { default as ProductFeaturesModel } from './productfeatures.model';
|
|
14
15
|
export { default as SolicitorModel } from './solicitor.model';
|
|
15
16
|
export { default as ApplicationDocumentModel } from './application-document.model';
|