@leavittsoftware/lg-core-typescript 5.277.0 → 5.278.0
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/lg.net.fenris.js +11 -0
- package/lg.net.fenris.js.map +1 -0
- package/lg.net.fenris.ts +234 -0
- package/package.json +4 -1
package/lg.net.fenris.js
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// ----------------------
|
|
2
|
+
// <auto-generated>
|
|
3
|
+
// generated using a custom program
|
|
4
|
+
// </auto-generated>
|
|
5
|
+
// ----------------------
|
|
6
|
+
export var AutoPrefillResponseType;
|
|
7
|
+
(function (AutoPrefillResponseType) {
|
|
8
|
+
AutoPrefillResponseType[AutoPrefillResponseType["M"] = 0] = "M";
|
|
9
|
+
AutoPrefillResponseType[AutoPrefillResponseType["C"] = 1] = "C";
|
|
10
|
+
})(AutoPrefillResponseType || (AutoPrefillResponseType = {}));
|
|
11
|
+
//# sourceMappingURL=lg.net.fenris.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lg.net.fenris.js","sourceRoot":"","sources":["lg.net.fenris.ts"],"names":[],"mappings":"AAAA,yBAAyB;AACzB,mBAAmB;AACnB,uCAAuC;AACvC,oBAAoB;AACpB,yBAAyB;AA+NzB,MAAM,CAAN,IAAY,uBAGX;AAHD,WAAY,uBAAuB;IAC/B,+DAAK,CAAA;IACL,+DAAK,CAAA;AACT,CAAC,EAHW,uBAAuB,KAAvB,uBAAuB,QAGlC"}
|
package/lg.net.fenris.ts
ADDED
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
// ----------------------
|
|
2
|
+
// <auto-generated>
|
|
3
|
+
// generated using a custom program
|
|
4
|
+
// </auto-generated>
|
|
5
|
+
// ----------------------
|
|
6
|
+
|
|
7
|
+
export interface VinDecoderRequest {
|
|
8
|
+
vin: string | null;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface VinDecoderResponse {
|
|
12
|
+
bodyClass: string | null;
|
|
13
|
+
make: string | null;
|
|
14
|
+
matchDescription: string | null;
|
|
15
|
+
model: string | null;
|
|
16
|
+
modelYear: string | null;
|
|
17
|
+
requestId: string | null;
|
|
18
|
+
status: string | null;
|
|
19
|
+
submissionId: string | null;
|
|
20
|
+
trim: string | null;
|
|
21
|
+
vehicleType: string | null;
|
|
22
|
+
vinDetails: Array<string>;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export interface PropertyAssessmentBuildingCharacteristics {
|
|
26
|
+
airConditioning: string | null;
|
|
27
|
+
architecturalStyle: string | null;
|
|
28
|
+
basement: string | null;
|
|
29
|
+
bathrooms: number | null;
|
|
30
|
+
bedrooms: number | null;
|
|
31
|
+
buildingClass: string | null;
|
|
32
|
+
buildingCondition: string | null;
|
|
33
|
+
buildingQuality: string | null;
|
|
34
|
+
buildings: number | null;
|
|
35
|
+
construction: string | null;
|
|
36
|
+
exteriorWall: string | null;
|
|
37
|
+
foundation: string | null;
|
|
38
|
+
garageNumCars: number | null;
|
|
39
|
+
garageType: string | null;
|
|
40
|
+
heatingFuelType: string | null;
|
|
41
|
+
heatingType: string | null;
|
|
42
|
+
lotSize: number | null;
|
|
43
|
+
ownerName: string | null;
|
|
44
|
+
ownerOccupied: string | null;
|
|
45
|
+
partialBathrooms: number | null;
|
|
46
|
+
pool: string | null;
|
|
47
|
+
roofCovering: string | null;
|
|
48
|
+
roofType: string | null;
|
|
49
|
+
stories: number | null;
|
|
50
|
+
totalArea: number | null;
|
|
51
|
+
totalRooms: number | null;
|
|
52
|
+
units: number | null;
|
|
53
|
+
useType: string | null;
|
|
54
|
+
yearBuilt: number | null;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export interface PropertyAssessmentDetailsSearchRequest {
|
|
58
|
+
addressLine1: string;
|
|
59
|
+
city: string;
|
|
60
|
+
state: string;
|
|
61
|
+
zipCode: string;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export interface PropertyAssessmentDetailsSearchResponse {
|
|
65
|
+
document: Partial<PropertyAssessmentDocument> | null;
|
|
66
|
+
matchDescription: string | null;
|
|
67
|
+
requestId: string | null;
|
|
68
|
+
status: string | null;
|
|
69
|
+
submissionId: string | null;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export interface PropertyAssessmentDocument {
|
|
73
|
+
buildingCharacteristics: Partial<PropertyAssessmentBuildingCharacteristics>;
|
|
74
|
+
mortgage: Partial<PropertyAssessmentMortgage>;
|
|
75
|
+
valuation: Partial<PropertyAssessmentValuation>;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export interface PropertyAssessmentMortgage {
|
|
79
|
+
balance: number | null;
|
|
80
|
+
equity: number | null;
|
|
81
|
+
firstMortgageAmount: number | null;
|
|
82
|
+
homeEquityLoan: number | null;
|
|
83
|
+
interestRate: string | null;
|
|
84
|
+
interestRateType: string | null;
|
|
85
|
+
lender: string | null;
|
|
86
|
+
loanAmount: number | null;
|
|
87
|
+
loanDate: string | null;
|
|
88
|
+
loanToValue: number | null;
|
|
89
|
+
loanType: string | null;
|
|
90
|
+
refinanceIndicator: string | null;
|
|
91
|
+
secondMortgageAmount: number | null;
|
|
92
|
+
titleCompany: string | null;
|
|
93
|
+
totalLienBalance: number | null;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export interface PropertyAssessmentValuation {
|
|
97
|
+
apn: string | null;
|
|
98
|
+
assessedMarketValue: number | null;
|
|
99
|
+
assessedValue: number | null;
|
|
100
|
+
assessmentYear: number | null;
|
|
101
|
+
improvementValue: number | null;
|
|
102
|
+
landValue: number | null;
|
|
103
|
+
lastSaleDate: string | null;
|
|
104
|
+
lastSalePrice: number | null;
|
|
105
|
+
marketValueMax: number | null;
|
|
106
|
+
marketValueMin: number | null;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
export interface AutoPrefillAddress {
|
|
110
|
+
addressLine1: string;
|
|
111
|
+
addressLine2: string | null;
|
|
112
|
+
city: string;
|
|
113
|
+
state: string;
|
|
114
|
+
zipCode: string;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
export interface AutoPreFillDriver {
|
|
118
|
+
age: number | null;
|
|
119
|
+
dateOfBirth: string | null;
|
|
120
|
+
firstName: string | null;
|
|
121
|
+
gender: string | null;
|
|
122
|
+
lastName: string | null;
|
|
123
|
+
maritalStatus: string | null;
|
|
124
|
+
memberCode: string | null;
|
|
125
|
+
middleName: string | null;
|
|
126
|
+
verificationDate: string | null;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
export interface AutoPrefillParsedAddress {
|
|
130
|
+
addressLine1: string | null;
|
|
131
|
+
addressType: string | null;
|
|
132
|
+
city: string | null;
|
|
133
|
+
state: string | null;
|
|
134
|
+
zipCode: string | null;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
export interface AutoPrefillPerson {
|
|
138
|
+
dateOfBirth: string | null;
|
|
139
|
+
firstName: string;
|
|
140
|
+
lastName: string;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
export interface AutoPreFillPrimary {
|
|
144
|
+
babyBoomer: boolean | null;
|
|
145
|
+
dualIncomeNoKids: boolean | null;
|
|
146
|
+
gender: string | null;
|
|
147
|
+
homeOwnerStatus: string | null;
|
|
148
|
+
lengthOfResidence: string | null;
|
|
149
|
+
maritalStatus: string | null;
|
|
150
|
+
memberCode: string | null;
|
|
151
|
+
millennial: boolean | null;
|
|
152
|
+
numberOfGenerations: number | null;
|
|
153
|
+
parsedAddress: Partial<AutoPrefillParsedAddress> | null;
|
|
154
|
+
presenceOf16Or17YearOlds: boolean | null;
|
|
155
|
+
vehicleHouseholdNum: number | null;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
export interface AutoPreFillRegisteredOwner {
|
|
159
|
+
businessName: string | null;
|
|
160
|
+
entityType: string | null;
|
|
161
|
+
givenName: string | null;
|
|
162
|
+
ownerType: string | null;
|
|
163
|
+
suffix: string | null;
|
|
164
|
+
surname: string | null;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
export interface AutoPrefillSearchRequest {
|
|
168
|
+
address: Partial<AutoPrefillAddress> | null;
|
|
169
|
+
person: Partial<AutoPrefillPerson> | null;
|
|
170
|
+
responseType: AutoPrefillResponseTypeString | null;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
export interface AutoPreFillSearchResponse {
|
|
174
|
+
addressDescription: string | null;
|
|
175
|
+
drivers: Array<Partial<AutoPreFillDriver>>;
|
|
176
|
+
matchDescription: string | null;
|
|
177
|
+
primary: Partial<AutoPreFillPrimary> | null;
|
|
178
|
+
requestId: string | null;
|
|
179
|
+
status: string | null;
|
|
180
|
+
submissionId: string | null;
|
|
181
|
+
vehicles: Array<Partial<AutoPreFillVehicle>>;
|
|
182
|
+
vehiclesEnhanced: Array<Partial<AutoPreFillVehiclesEnhanced>>;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
export interface AutoPreFillVehicle {
|
|
186
|
+
confidence: number | null;
|
|
187
|
+
description: string | null;
|
|
188
|
+
fuelType: string | null;
|
|
189
|
+
make: string | null;
|
|
190
|
+
marketValue: number | null;
|
|
191
|
+
mileage: string | null;
|
|
192
|
+
model: string | null;
|
|
193
|
+
type: string | null;
|
|
194
|
+
year: string | null;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
export interface AutoPreFillVehiclesEnhanced {
|
|
198
|
+
addressLine1: string | null;
|
|
199
|
+
addressType: string | null;
|
|
200
|
+
bodyStyle: string | null;
|
|
201
|
+
brandedTitleCode: string | null;
|
|
202
|
+
brandedTitleIndicator: boolean | null;
|
|
203
|
+
city: string | null;
|
|
204
|
+
color: string | null;
|
|
205
|
+
driveSystem: string | null;
|
|
206
|
+
expirationDate: string | null;
|
|
207
|
+
leaseIndicator: boolean | null;
|
|
208
|
+
make: string | null;
|
|
209
|
+
manufacturerBasePrice: number | null;
|
|
210
|
+
model: string | null;
|
|
211
|
+
number: string | null;
|
|
212
|
+
plateNumber: string | null;
|
|
213
|
+
plateType: string | null;
|
|
214
|
+
price: number | null;
|
|
215
|
+
registeredOwners: Array<Partial<AutoPreFillRegisteredOwner>>;
|
|
216
|
+
registeredState: string | null;
|
|
217
|
+
state: string | null;
|
|
218
|
+
transactionDate: string | null;
|
|
219
|
+
trim: string | null;
|
|
220
|
+
type: string | null;
|
|
221
|
+
vin: string | null;
|
|
222
|
+
vinChangeIndicator: string | null;
|
|
223
|
+
weight: number | null;
|
|
224
|
+
year: number | null;
|
|
225
|
+
zipCode: string | null;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
export enum AutoPrefillResponseType {
|
|
229
|
+
M = 0,
|
|
230
|
+
C = 1
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
export type AutoPrefillResponseTypeString = keyof typeof AutoPrefillResponseType;
|
|
234
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leavittsoftware/lg-core-typescript",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.278.0",
|
|
4
4
|
"description": "Typescript of lg core",
|
|
5
5
|
"main": "lg.typescript.js",
|
|
6
6
|
"files": [
|
|
@@ -29,6 +29,9 @@
|
|
|
29
29
|
"lg.net.apfc.js.map",
|
|
30
30
|
"lg.net.apfc.js",
|
|
31
31
|
"lg.net.apfc.ts",
|
|
32
|
+
"lg.net.fenris.js.map",
|
|
33
|
+
"lg.net.fenris.js",
|
|
34
|
+
"lg.net.fenris.ts",
|
|
32
35
|
"lg.net.ams360datawarehouse.js.map",
|
|
33
36
|
"lg.net.ams360datawarehouse.js",
|
|
34
37
|
"lg.net.ams360datawarehouse.ts",
|