@matech/thebigpos-sdk 2.28.6 → 2.29.1
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/index.d.ts +2 -1037
- package/dist/index.js +2 -33
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +77 -1427
package/src/index.ts
CHANGED
|
@@ -43,12 +43,6 @@ export type OperationType =
|
|
|
43
43
|
|
|
44
44
|
export type LogLevel = "None" | "Info" | "Warning" | "Error";
|
|
45
45
|
|
|
46
|
-
export type LoanType = "Fha" | "Conventional" | "UsdaRd" | "Va" | "Other";
|
|
47
|
-
|
|
48
|
-
export type LoanTrustType = "Living" | "Land" | "Testamentary" | "Other";
|
|
49
|
-
|
|
50
|
-
export type LoanTitleHeld = "Self" | "JointlyWithSpouse" | "JointlyWithAnother";
|
|
51
|
-
|
|
52
46
|
export type LoanRole =
|
|
53
47
|
| "Borrower"
|
|
54
48
|
| "CoBorrower"
|
|
@@ -63,8 +57,6 @@ export type LoanRole =
|
|
|
63
57
|
| "EscrowAgent"
|
|
64
58
|
| "SettlementAgent";
|
|
65
59
|
|
|
66
|
-
export type LoanRealEstateStatus = "Sold" | "Pending" | "Retained";
|
|
67
|
-
|
|
68
60
|
export type LoanQueueType =
|
|
69
61
|
| "Unknown"
|
|
70
62
|
| "New"
|
|
@@ -76,96 +68,6 @@ export type LoanQueueType =
|
|
|
76
68
|
|
|
77
69
|
export type LoanQueueReason = "Unknown" | "Locked" | "LOSError" | "Exception";
|
|
78
70
|
|
|
79
|
-
export type LoanPurpose = "Purchase" | "Refinance";
|
|
80
|
-
|
|
81
|
-
export type LoanPropertyType =
|
|
82
|
-
| "SingleFamily"
|
|
83
|
-
| "MultiFamily"
|
|
84
|
-
| "Condominium"
|
|
85
|
-
| "Townhouse"
|
|
86
|
-
| "ManufacturedHome"
|
|
87
|
-
| "PlannedUnitDevelopment"
|
|
88
|
-
| "ModularHome"
|
|
89
|
-
| "Other";
|
|
90
|
-
|
|
91
|
-
export type LoanPhoneNumberType = "Home" | "Cell" | "Work" | "Fax" | "Other";
|
|
92
|
-
|
|
93
|
-
export type LoanPacificIslanderRace =
|
|
94
|
-
| "NativeHawaiian"
|
|
95
|
-
| "GuamanianOrChamorro"
|
|
96
|
-
| "Samoan"
|
|
97
|
-
| "Other";
|
|
98
|
-
|
|
99
|
-
export type LoanOtherLiabilityType =
|
|
100
|
-
| "Alimony"
|
|
101
|
-
| "ChildSupport"
|
|
102
|
-
| "SeparateMaintenance"
|
|
103
|
-
| "JobRelatedExpense"
|
|
104
|
-
| "Other";
|
|
105
|
-
|
|
106
|
-
export type LoanOtherIncomeType =
|
|
107
|
-
| "Alimony"
|
|
108
|
-
| "AutomobileAllowance"
|
|
109
|
-
| "BoarderIncome"
|
|
110
|
-
| "CapitalGains"
|
|
111
|
-
| "ChildSupport"
|
|
112
|
-
| "Disability"
|
|
113
|
-
| "FosterCare"
|
|
114
|
-
| "Housing"
|
|
115
|
-
| "InterestAndDividends"
|
|
116
|
-
| "MortgageCreditCertificate"
|
|
117
|
-
| "MortgageDifferentialPayments"
|
|
118
|
-
| "NotesReceivable"
|
|
119
|
-
| "PublicAssistance"
|
|
120
|
-
| "Retirement"
|
|
121
|
-
| "RoyaltyPayments"
|
|
122
|
-
| "SeparateMaintenance"
|
|
123
|
-
| "SocialSecurity"
|
|
124
|
-
| "Trust"
|
|
125
|
-
| "Unemployment"
|
|
126
|
-
| "VaCompensation"
|
|
127
|
-
| "Other";
|
|
128
|
-
|
|
129
|
-
export type LoanOtherAssetType =
|
|
130
|
-
| "ProceedsRealEstate"
|
|
131
|
-
| "ProceedsNonRealEstate"
|
|
132
|
-
| "SecuredBorrowerFunds"
|
|
133
|
-
| "UnsecuredBorrowerFunds"
|
|
134
|
-
| "EarnestMoney"
|
|
135
|
-
| "EmployerAssistance"
|
|
136
|
-
| "LotEquity"
|
|
137
|
-
| "ReAddressFunds"
|
|
138
|
-
| "RentCredit"
|
|
139
|
-
| "SweatEquity"
|
|
140
|
-
| "TradeEquity"
|
|
141
|
-
| "Other";
|
|
142
|
-
|
|
143
|
-
export type LoanOccupancyType =
|
|
144
|
-
| "PrimaryResidence"
|
|
145
|
-
| "SecondHome"
|
|
146
|
-
| "InvestmentProperty"
|
|
147
|
-
| "Other";
|
|
148
|
-
|
|
149
|
-
export type LoanNameSuffix =
|
|
150
|
-
| "Jr"
|
|
151
|
-
| "Sr"
|
|
152
|
-
| "II"
|
|
153
|
-
| "III"
|
|
154
|
-
| "IV"
|
|
155
|
-
| "V"
|
|
156
|
-
| "VI"
|
|
157
|
-
| "VII";
|
|
158
|
-
|
|
159
|
-
export type LoanNamePrefix = "Mr" | "Mrs" | "Ms";
|
|
160
|
-
|
|
161
|
-
export type LoanMilitaryServiceType =
|
|
162
|
-
| "Current"
|
|
163
|
-
| "RetiredDischargedSeparated"
|
|
164
|
-
| "NonActivatedNationalGuard"
|
|
165
|
-
| "SurvivingSpouse";
|
|
166
|
-
|
|
167
|
-
export type LoanMaritalStatus = "Married" | "Separated" | "Unmarried";
|
|
168
|
-
|
|
169
71
|
export type LoanLogType =
|
|
170
72
|
| "Loan"
|
|
171
73
|
| "Queue"
|
|
@@ -180,24 +82,6 @@ export type LoanLogType =
|
|
|
180
82
|
| "LoanStatusChanged"
|
|
181
83
|
| "EConsent";
|
|
182
84
|
|
|
183
|
-
export type LoanLienPosition = "First" | "Subordinate";
|
|
184
|
-
|
|
185
|
-
export type LoanLiabilityType =
|
|
186
|
-
| "Revolving"
|
|
187
|
-
| "Installment"
|
|
188
|
-
| "Open30Day"
|
|
189
|
-
| "Lease"
|
|
190
|
-
| "Other";
|
|
191
|
-
|
|
192
|
-
export type LoanLanguagePreference =
|
|
193
|
-
| "English"
|
|
194
|
-
| "Chinese"
|
|
195
|
-
| "Korean"
|
|
196
|
-
| "Spanish"
|
|
197
|
-
| "Tagalog"
|
|
198
|
-
| "Vietnamese"
|
|
199
|
-
| "Other";
|
|
200
|
-
|
|
201
85
|
export type LoanImportStatus =
|
|
202
86
|
| "WaitingProcess"
|
|
203
87
|
| "InProgress"
|
|
@@ -207,69 +91,6 @@ export type LoanImportStatus =
|
|
|
207
91
|
|
|
208
92
|
export type LoanImportMode = "All" | "NewOnly" | "UpdateOnly";
|
|
209
93
|
|
|
210
|
-
export type LoanHousingType = "NoExpense" | "Own" | "Rent";
|
|
211
|
-
|
|
212
|
-
export type LoanHomeOwnershipType = "Counseling" | "Education" | "Other";
|
|
213
|
-
|
|
214
|
-
export type LoanHomeOwnershipFormat = "InPerson" | "Online" | "Telephone";
|
|
215
|
-
|
|
216
|
-
export type LoanHispanicEthnicity =
|
|
217
|
-
| "Mexican"
|
|
218
|
-
| "PuertoRican"
|
|
219
|
-
| "Cuban"
|
|
220
|
-
| "Other";
|
|
221
|
-
|
|
222
|
-
export type LoanGiftSource =
|
|
223
|
-
| "CommunityNonProfit"
|
|
224
|
-
| "Employer"
|
|
225
|
-
| "FederalAgency"
|
|
226
|
-
| "LocalAgency"
|
|
227
|
-
| "Relative"
|
|
228
|
-
| "ReligiousNonProfit"
|
|
229
|
-
| "StateAgency"
|
|
230
|
-
| "UnmarriedPartner"
|
|
231
|
-
| "Lender"
|
|
232
|
-
| "Other";
|
|
233
|
-
|
|
234
|
-
export type LoanGiftAssetType = "Cash" | "Asset" | "Equity";
|
|
235
|
-
|
|
236
|
-
export type LoanGenderType = "Male" | "Female";
|
|
237
|
-
|
|
238
|
-
export type LoanCitizenship =
|
|
239
|
-
| "Us"
|
|
240
|
-
| "PermanentResidentAlien"
|
|
241
|
-
| "NonPermanentResidentAlien";
|
|
242
|
-
|
|
243
|
-
export type LoanBankruptcyType =
|
|
244
|
-
| "Chapter7"
|
|
245
|
-
| "Chapter11"
|
|
246
|
-
| "Chapter12"
|
|
247
|
-
| "Chapter13";
|
|
248
|
-
|
|
249
|
-
export type LoanAsianRace =
|
|
250
|
-
| "AsianIndian"
|
|
251
|
-
| "Chinese"
|
|
252
|
-
| "Filipino"
|
|
253
|
-
| "Japanese"
|
|
254
|
-
| "Korean"
|
|
255
|
-
| "Vietnamese"
|
|
256
|
-
| "Other";
|
|
257
|
-
|
|
258
|
-
export type LoanAccountAssetType =
|
|
259
|
-
| "Checking"
|
|
260
|
-
| "Savings"
|
|
261
|
-
| "MoneyMarket"
|
|
262
|
-
| "CertificateOfDeposit"
|
|
263
|
-
| "MutualFund"
|
|
264
|
-
| "Stocks"
|
|
265
|
-
| "Bonds"
|
|
266
|
-
| "Retirement"
|
|
267
|
-
| "BridgeLoanProceeds"
|
|
268
|
-
| "IndividualDevelopmentAccount"
|
|
269
|
-
| "TrustAccount"
|
|
270
|
-
| "CashValueOfLifeInsurance"
|
|
271
|
-
| "Other";
|
|
272
|
-
|
|
273
94
|
export type LoanAccessScopeType = "User" | "Branch";
|
|
274
95
|
|
|
275
96
|
export type LOSStatus =
|
|
@@ -314,41 +135,6 @@ export type BorrowerType = "Borrower" | "CoBorrower" | "Unknown";
|
|
|
314
135
|
|
|
315
136
|
export type BorrowerRelationship = "NotApplicable" | "Spouse" | "NonSpouse";
|
|
316
137
|
|
|
317
|
-
export type AddressFamily =
|
|
318
|
-
| "Unspecified"
|
|
319
|
-
| "Unix"
|
|
320
|
-
| "InterNetwork"
|
|
321
|
-
| "ImpLink"
|
|
322
|
-
| "Pup"
|
|
323
|
-
| "Chaos"
|
|
324
|
-
| "NS"
|
|
325
|
-
| "Ipx"
|
|
326
|
-
| "Iso"
|
|
327
|
-
| "Osi"
|
|
328
|
-
| "Ecma"
|
|
329
|
-
| "DataKit"
|
|
330
|
-
| "Ccitt"
|
|
331
|
-
| "Sna"
|
|
332
|
-
| "DecNet"
|
|
333
|
-
| "DataLink"
|
|
334
|
-
| "Lat"
|
|
335
|
-
| "HyperChannel"
|
|
336
|
-
| "AppleTalk"
|
|
337
|
-
| "NetBios"
|
|
338
|
-
| "VoiceView"
|
|
339
|
-
| "FireFox"
|
|
340
|
-
| "Banyan"
|
|
341
|
-
| "Atm"
|
|
342
|
-
| "InterNetworkV6"
|
|
343
|
-
| "Cluster"
|
|
344
|
-
| "Ieee12844"
|
|
345
|
-
| "Irda"
|
|
346
|
-
| "NetworkDesigners"
|
|
347
|
-
| "Max"
|
|
348
|
-
| "Packet"
|
|
349
|
-
| "ControllerAreaNetwork"
|
|
350
|
-
| "Unknown";
|
|
351
|
-
|
|
352
138
|
export interface ASOSettings {
|
|
353
139
|
enabled: boolean;
|
|
354
140
|
softPull: boolean;
|
|
@@ -397,6 +183,7 @@ export interface AccountSettings {
|
|
|
397
183
|
isSmsEnabled: boolean;
|
|
398
184
|
isLoanEditEnabled: boolean;
|
|
399
185
|
smsNumber?: string | null;
|
|
186
|
+
ssoHostOverride?: string | null;
|
|
400
187
|
}
|
|
401
188
|
|
|
402
189
|
export interface AccountSettingsRequest {
|
|
@@ -449,18 +236,6 @@ export interface AddressRequest {
|
|
|
449
236
|
postalCode: string;
|
|
450
237
|
}
|
|
451
238
|
|
|
452
|
-
export interface AddressV3 {
|
|
453
|
-
/** @format uuid */
|
|
454
|
-
id?: string | null;
|
|
455
|
-
street?: string | null;
|
|
456
|
-
unit?: string | null;
|
|
457
|
-
unitType?: string | null;
|
|
458
|
-
city?: string | null;
|
|
459
|
-
state?: string | null;
|
|
460
|
-
county?: string | null;
|
|
461
|
-
postalCode?: string | null;
|
|
462
|
-
}
|
|
463
|
-
|
|
464
239
|
export interface AdminAccessGetForms {
|
|
465
240
|
/** @format date-time */
|
|
466
241
|
createdAt?: string | null;
|
|
@@ -1747,32 +1522,8 @@ export interface GetWorkflowRequest {
|
|
|
1747
1522
|
language?: string | null;
|
|
1748
1523
|
}
|
|
1749
1524
|
|
|
1750
|
-
export interface GuidPatchOperation {
|
|
1751
|
-
op: string;
|
|
1752
|
-
path: string;
|
|
1753
|
-
value?: any;
|
|
1754
|
-
from?: string | null;
|
|
1755
|
-
}
|
|
1756
|
-
|
|
1757
1525
|
export type IContractResolver = object;
|
|
1758
1526
|
|
|
1759
|
-
export interface IPAddress {
|
|
1760
|
-
addressFamily: IpAddressAddressFamilyEnum;
|
|
1761
|
-
/** @format int64 */
|
|
1762
|
-
scopeId: number;
|
|
1763
|
-
isIPv6Multicast: boolean;
|
|
1764
|
-
isIPv6LinkLocal: boolean;
|
|
1765
|
-
isIPv6SiteLocal: boolean;
|
|
1766
|
-
isIPv6Teredo: boolean;
|
|
1767
|
-
isIPv6UniqueLocal: boolean;
|
|
1768
|
-
isIPv4MappedToIPv6: boolean;
|
|
1769
|
-
/**
|
|
1770
|
-
* @deprecated
|
|
1771
|
-
* @format int64
|
|
1772
|
-
*/
|
|
1773
|
-
address: number;
|
|
1774
|
-
}
|
|
1775
|
-
|
|
1776
1527
|
export interface ImpersonatedDetailedUser {
|
|
1777
1528
|
/** @format date-time */
|
|
1778
1529
|
createdAt?: string | null;
|
|
@@ -1923,913 +1674,92 @@ export interface ListingPhoto {
|
|
|
1923
1674
|
/** @format uuid */
|
|
1924
1675
|
id: string;
|
|
1925
1676
|
description?: string | null;
|
|
1926
|
-
file: File;
|
|
1927
|
-
/** @format int32 */
|
|
1928
|
-
weight: number;
|
|
1929
|
-
}
|
|
1930
|
-
|
|
1931
|
-
export interface ListingRequest {
|
|
1932
|
-
description?: string | null;
|
|
1933
|
-
mlsNumber?: string | null;
|
|
1934
|
-
address: AddressRequest;
|
|
1935
|
-
/**
|
|
1936
|
-
* @format int32
|
|
1937
|
-
* @min 0
|
|
1938
|
-
* @exclusiveMin true
|
|
1939
|
-
*/
|
|
1940
|
-
salePrice?: number | null;
|
|
1941
|
-
/**
|
|
1942
|
-
* @format date-time
|
|
1943
|
-
* @minLength 1
|
|
1944
|
-
*/
|
|
1945
|
-
activeDate: string;
|
|
1946
|
-
/** @format date-time */
|
|
1947
|
-
expirationDate?: string | null;
|
|
1948
|
-
zillowURL?: string | null;
|
|
1949
|
-
/** @format date-time */
|
|
1950
|
-
openHouseDate?: string | null;
|
|
1951
|
-
/** @format double */
|
|
1952
|
-
buyerAgentCommissionPercent?: number | null;
|
|
1953
|
-
/** @format double */
|
|
1954
|
-
sellerAgentCommissionPercent?: number | null;
|
|
1955
|
-
/** @format uuid */
|
|
1956
|
-
siteConfigurationId?: string | null;
|
|
1957
|
-
}
|
|
1958
|
-
|
|
1959
|
-
export interface ListingSearchCriteria {
|
|
1960
|
-
searchText?: string | null;
|
|
1961
|
-
isActive?: boolean | null;
|
|
1962
|
-
partnerIds?: string[] | null;
|
|
1963
|
-
}
|
|
1964
|
-
|
|
1965
|
-
export interface Loan {
|
|
1966
|
-
/** @format uuid */
|
|
1967
|
-
id: string;
|
|
1968
|
-
loanID: string;
|
|
1969
|
-
loanNumber?: string | null;
|
|
1970
|
-
/** @format date-time */
|
|
1971
|
-
initialDisclosureProvidedDate?: string | null;
|
|
1972
|
-
/** @format date-time */
|
|
1973
|
-
closingDisclosureSentDate?: string | null;
|
|
1974
|
-
/** @format date-time */
|
|
1975
|
-
underwritingApprovalDate?: string | null;
|
|
1976
|
-
/** @format date-time */
|
|
1977
|
-
closingDate?: string | null;
|
|
1978
|
-
/** @format date-time */
|
|
1979
|
-
fundingOrderDate?: string | null;
|
|
1980
|
-
/** @format date-time */
|
|
1981
|
-
currentStatusDate?: string | null;
|
|
1982
|
-
loanChannel?: string | null;
|
|
1983
|
-
/** @format double */
|
|
1984
|
-
totalLoanAmount?: number | null;
|
|
1985
|
-
currentLoanStatus?: string | null;
|
|
1986
|
-
currentMilestone?: string | null;
|
|
1987
|
-
lastCompletedMilestone?: string | null;
|
|
1988
|
-
/** @format date-time */
|
|
1989
|
-
startDate?: string | null;
|
|
1990
|
-
isInSync: boolean;
|
|
1991
|
-
/** @format date-time */
|
|
1992
|
-
syncDate?: string | null;
|
|
1993
|
-
excludeFromAutoTaskReminders?: boolean | null;
|
|
1994
|
-
fileStarter?: string | null;
|
|
1995
|
-
isPOSLoan?: boolean | null;
|
|
1996
|
-
referenceID: string;
|
|
1997
|
-
/** @format int32 */
|
|
1998
|
-
term?: number | null;
|
|
1999
|
-
loanProgram?: string | null;
|
|
2000
|
-
loanType?: string | null;
|
|
2001
|
-
status?: string | null;
|
|
2002
|
-
isActive: boolean;
|
|
2003
|
-
loanOfficer?: LoanOfficer | null;
|
|
2004
|
-
propertyAddress?: Address | null;
|
|
2005
|
-
loanSettings?: LoanSettings | null;
|
|
2006
|
-
loanLogs: LoanLog[];
|
|
2007
|
-
isLocked: boolean;
|
|
2008
|
-
isLockedFromEditing: boolean;
|
|
2009
|
-
source?: string | null;
|
|
2010
|
-
userLoans: UserLoan[];
|
|
2011
|
-
contacts: LoanContact[];
|
|
2012
|
-
}
|
|
2013
|
-
|
|
2014
|
-
export interface LoanApplication {
|
|
2015
|
-
/** @format uuid */
|
|
2016
|
-
id?: string | null;
|
|
2017
|
-
loanOfficerEmail?: string | null;
|
|
2018
|
-
type?: LoanType | null;
|
|
2019
|
-
purpose?: LoanPurpose | null;
|
|
2020
|
-
lienPosition?: LoanLienPosition | null;
|
|
2021
|
-
number?: string | null;
|
|
2022
|
-
program?: string | null;
|
|
2023
|
-
channel?: string | null;
|
|
2024
|
-
/** @format date-time */
|
|
2025
|
-
startDate?: string | null;
|
|
2026
|
-
property?: LoanProperty | null;
|
|
2027
|
-
financial?: LoanFinancial | null;
|
|
2028
|
-
borrowers: LoanBorrower[];
|
|
2029
|
-
nonOwningBorrowers: LoanNonOwningBorrower[];
|
|
2030
|
-
}
|
|
2031
|
-
|
|
2032
|
-
export interface LoanApplicationRequest {
|
|
2033
|
-
/** @format uuid */
|
|
2034
|
-
accountID: string;
|
|
2035
|
-
/** @format uuid */
|
|
2036
|
-
userID: string;
|
|
2037
|
-
/** @format uuid */
|
|
2038
|
-
siteConfigurationID: string;
|
|
2039
|
-
/** @format uuid */
|
|
2040
|
-
draftId?: string | null;
|
|
2041
|
-
loanOfficerEmail?: string | null;
|
|
2042
|
-
type?: LoanType | null;
|
|
2043
|
-
purpose?: LoanPurpose | null;
|
|
2044
|
-
lienPosition?: LoanLienPosition | null;
|
|
2045
|
-
/** @maxLength 50 */
|
|
2046
|
-
number?: string | null;
|
|
2047
|
-
/** @maxLength 100 */
|
|
2048
|
-
program?: string | null;
|
|
2049
|
-
/** @maxLength 50 */
|
|
2050
|
-
channel?: string | null;
|
|
2051
|
-
/** @format date-time */
|
|
2052
|
-
startDate?: string | null;
|
|
2053
|
-
property?: LoanPropertyRequest | null;
|
|
2054
|
-
financial?: LoanFinancialRequest | null;
|
|
2055
|
-
/** @minItems 1 */
|
|
2056
|
-
borrowers: LoanBorrowerRequest[];
|
|
2057
|
-
nonOwningBorrowers: LoanNonOwningBorrowerRequest[];
|
|
2058
|
-
/** @format uuid */
|
|
2059
|
-
existingLoanId?: string | null;
|
|
2060
|
-
/** @format uuid */
|
|
2061
|
-
formId?: string | null;
|
|
2062
|
-
}
|
|
2063
|
-
|
|
2064
|
-
export interface LoanBorrower {
|
|
2065
|
-
/** @format uuid */
|
|
2066
|
-
id?: string | null;
|
|
2067
|
-
ssn?: string | null;
|
|
2068
|
-
email?: string | null;
|
|
2069
|
-
lastName?: string | null;
|
|
2070
|
-
firstName?: string | null;
|
|
2071
|
-
middleName?: string | null;
|
|
2072
|
-
prefix?: LoanNamePrefix | null;
|
|
2073
|
-
suffix?: LoanNameSuffix | null;
|
|
2074
|
-
/** @format date */
|
|
2075
|
-
birthDate?: string | null;
|
|
2076
|
-
citizenship?: LoanCitizenship | null;
|
|
2077
|
-
maritalStatus?: LoanMaritalStatus | null;
|
|
2078
|
-
languagePreference?: LoanLanguagePreference | null;
|
|
2079
|
-
/** @format int32 */
|
|
2080
|
-
numberOfDependents?: number | null;
|
|
2081
|
-
isPrimaryBorrower: boolean;
|
|
2082
|
-
isFirstTimeHomeBuyer?: boolean | null;
|
|
2083
|
-
hasJointAssetsAndLiabilities?: boolean | null;
|
|
2084
|
-
dependentAges?: number[] | null;
|
|
2085
|
-
demographics?: LoanBorrowerDemographics | null;
|
|
2086
|
-
declarations?: LoanBorrowerDeclarations | null;
|
|
2087
|
-
militaryService?: LoanBorrowerMilitaryService | null;
|
|
2088
|
-
gifts: LoanBorrowerGift[];
|
|
2089
|
-
addresses: LoanBorrowerAddress[];
|
|
2090
|
-
consents: LoanBorrowerConsent[];
|
|
2091
|
-
liabilities: LoanBorrowerLiability[];
|
|
2092
|
-
otherAssets: LoanBorrowerOtherAsset[];
|
|
2093
|
-
otherIncome: LoanBorrowerOtherIncome[];
|
|
2094
|
-
phoneNumbers: LoanBorrowerPhoneNumber[];
|
|
2095
|
-
accountAssets: LoanBorrowerAccountAsset[];
|
|
2096
|
-
homeOwnership: LoanBorrowerHomeOwnership[];
|
|
2097
|
-
alternateNames: LoanBorrowerAlternateName[];
|
|
2098
|
-
otherLiabilities: LoanBorrowerOtherLiability[];
|
|
2099
|
-
realEstateAssets: LoanBorrowerRealEstateAsset[];
|
|
2100
|
-
currentEmployment: LoanBorrowerEmploymentCurrent[];
|
|
2101
|
-
previousEmployment: LoanBorrowerEmploymentPrevious[];
|
|
2102
|
-
}
|
|
2103
|
-
|
|
2104
|
-
export interface LoanBorrowerAccountAsset {
|
|
2105
|
-
/** @format uuid */
|
|
2106
|
-
id?: string | null;
|
|
2107
|
-
name?: string | null;
|
|
2108
|
-
accountNumber?: string | null;
|
|
2109
|
-
financialInstitution?: string | null;
|
|
2110
|
-
/** @format double */
|
|
2111
|
-
value?: number | null;
|
|
2112
|
-
type?: LoanAccountAssetType | null;
|
|
2113
|
-
}
|
|
2114
|
-
|
|
2115
|
-
export interface LoanBorrowerAccountAssetRequest {
|
|
2116
|
-
/** @maxLength 255 */
|
|
2117
|
-
name?: string | null;
|
|
2118
|
-
/** @maxLength 50 */
|
|
2119
|
-
accountNumber?: string | null;
|
|
2120
|
-
/** @maxLength 255 */
|
|
2121
|
-
financialInstitution?: string | null;
|
|
2122
|
-
/**
|
|
2123
|
-
* @format double
|
|
2124
|
-
* @min 0
|
|
2125
|
-
*/
|
|
2126
|
-
value?: number | null;
|
|
2127
|
-
type?: LoanAccountAssetType | null;
|
|
2128
|
-
}
|
|
2129
|
-
|
|
2130
|
-
export interface LoanBorrowerAddress {
|
|
2131
|
-
/** @format uuid */
|
|
2132
|
-
id?: string | null;
|
|
2133
|
-
street?: string | null;
|
|
2134
|
-
unit?: string | null;
|
|
2135
|
-
unitType?: string | null;
|
|
2136
|
-
city?: string | null;
|
|
2137
|
-
state?: string | null;
|
|
2138
|
-
county?: string | null;
|
|
2139
|
-
postalCode?: string | null;
|
|
2140
|
-
housing?: LoanHousingType | null;
|
|
2141
|
-
/** @format double */
|
|
2142
|
-
rentAmount?: number | null;
|
|
2143
|
-
isCurrent?: boolean | null;
|
|
2144
|
-
isMailingAddress?: boolean | null;
|
|
2145
|
-
timeAtAddress?: TimeAtAddress | null;
|
|
2146
|
-
}
|
|
2147
|
-
|
|
2148
|
-
export interface LoanBorrowerAddressRequest {
|
|
2149
|
-
/** @maxLength 255 */
|
|
2150
|
-
street?: string | null;
|
|
2151
|
-
/** @maxLength 50 */
|
|
2152
|
-
unit?: string | null;
|
|
2153
|
-
/** @maxLength 50 */
|
|
2154
|
-
unitType?: string | null;
|
|
2155
|
-
/** @maxLength 100 */
|
|
2156
|
-
city?: string | null;
|
|
2157
|
-
state?: string | null;
|
|
2158
|
-
/** @maxLength 100 */
|
|
2159
|
-
county?: string | null;
|
|
2160
|
-
postalCode?: string | null;
|
|
2161
|
-
housing?: LoanHousingType | null;
|
|
2162
|
-
/**
|
|
2163
|
-
* @format double
|
|
2164
|
-
* @min 0
|
|
2165
|
-
*/
|
|
2166
|
-
rentAmount?: number | null;
|
|
2167
|
-
isCurrent?: boolean | null;
|
|
2168
|
-
isMailingAddress?: boolean | null;
|
|
2169
|
-
timeAtAddress?: TimeAtAddressRequest | null;
|
|
2170
|
-
}
|
|
2171
|
-
|
|
2172
|
-
export interface LoanBorrowerAlternateName {
|
|
2173
|
-
/** @format uuid */
|
|
2174
|
-
id?: string | null;
|
|
2175
|
-
suffix?: string | null;
|
|
2176
|
-
lastName?: string | null;
|
|
2177
|
-
firstName?: string | null;
|
|
2178
|
-
middleName?: string | null;
|
|
2179
|
-
}
|
|
2180
|
-
|
|
2181
|
-
export interface LoanBorrowerAlternateNameRequest {
|
|
2182
|
-
/** @maxLength 20 */
|
|
2183
|
-
suffix?: string | null;
|
|
2184
|
-
/** @maxLength 100 */
|
|
2185
|
-
lastName?: string | null;
|
|
2186
|
-
/** @maxLength 100 */
|
|
2187
|
-
firstName?: string | null;
|
|
2188
|
-
/** @maxLength 100 */
|
|
2189
|
-
middleName?: string | null;
|
|
2190
|
-
}
|
|
2191
|
-
|
|
2192
|
-
export interface LoanBorrowerBankruptcyDeclaration {
|
|
2193
|
-
/** @format uuid */
|
|
2194
|
-
id?: string | null;
|
|
2195
|
-
isAffirmative?: boolean | null;
|
|
2196
|
-
description?: string | null;
|
|
2197
|
-
types?: LoanBankruptcyType[] | null;
|
|
2198
|
-
}
|
|
2199
|
-
|
|
2200
|
-
export interface LoanBorrowerBankruptcyDeclarationRequest {
|
|
2201
|
-
isAffirmative?: boolean | null;
|
|
2202
|
-
/** @maxLength 1000 */
|
|
2203
|
-
description?: string | null;
|
|
2204
|
-
types?: LoanBankruptcyType[] | null;
|
|
2205
|
-
}
|
|
2206
|
-
|
|
2207
|
-
export interface LoanBorrowerConsent {
|
|
2208
|
-
/** @format uuid */
|
|
2209
|
-
id?: string | null;
|
|
2210
|
-
type?: ConsentType | null;
|
|
2211
|
-
providedConsent?: boolean | null;
|
|
2212
|
-
ipAddress?: IPAddress | null;
|
|
2213
|
-
}
|
|
2214
|
-
|
|
2215
|
-
export interface LoanBorrowerConsentRequest {
|
|
2216
|
-
type?: ConsentType | null;
|
|
2217
|
-
providedConsent?: boolean | null;
|
|
2218
|
-
ipAddress?: IPAddress | null;
|
|
2219
|
-
}
|
|
2220
|
-
|
|
2221
|
-
export interface LoanBorrowerDeclarations {
|
|
2222
|
-
/** @format uuid */
|
|
2223
|
-
id?: string | null;
|
|
2224
|
-
borrowingMoney?: LoanBorrowerMoneyDeclaration | null;
|
|
2225
|
-
bankruptcy?: LoanBorrowerBankruptcyDeclaration | null;
|
|
2226
|
-
primaryResidence?: LoanBorrowerPrimaryResidenceDeclaration | null;
|
|
2227
|
-
foreclosure?: LoanBorrowerSimpleDeclaration | null;
|
|
2228
|
-
coSignerOnDebt?: LoanBorrowerSimpleDeclaration | null;
|
|
2229
|
-
partyToLawsuit?: LoanBorrowerSimpleDeclaration | null;
|
|
2230
|
-
outstandingJudgments?: LoanBorrowerSimpleDeclaration | null;
|
|
2231
|
-
applyingForNewCredit?: LoanBorrowerSimpleDeclaration | null;
|
|
2232
|
-
subjectToLienPriority?: LoanBorrowerSimpleDeclaration | null;
|
|
2233
|
-
inDelinquencyOrDefault?: LoanBorrowerSimpleDeclaration | null;
|
|
2234
|
-
relationshipWithSeller?: LoanBorrowerSimpleDeclaration | null;
|
|
2235
|
-
preForeclosureOrShortSale?: LoanBorrowerSimpleDeclaration | null;
|
|
2236
|
-
applyingForAnotherMortgage?: LoanBorrowerSimpleDeclaration | null;
|
|
2237
|
-
conveyedTitleToPropertyForeclosure?: LoanBorrowerSimpleDeclaration | null;
|
|
2238
|
-
}
|
|
2239
|
-
|
|
2240
|
-
export interface LoanBorrowerDeclarationsRequest {
|
|
2241
|
-
borrowingMoney?: LoanBorrowerMoneyDeclarationRequest | null;
|
|
2242
|
-
bankruptcy?: LoanBorrowerBankruptcyDeclarationRequest | null;
|
|
2243
|
-
primaryResidence?: LoanBorrowerPrimaryResidenceDeclarationRequest | null;
|
|
2244
|
-
foreclosure?: LoanBorrowerSimpleDeclarationRequest | null;
|
|
2245
|
-
coSignerOnDebt?: LoanBorrowerSimpleDeclarationRequest | null;
|
|
2246
|
-
partyToLawsuit?: LoanBorrowerSimpleDeclarationRequest | null;
|
|
2247
|
-
outstandingJudgments?: LoanBorrowerSimpleDeclarationRequest | null;
|
|
2248
|
-
applyingForNewCredit?: LoanBorrowerSimpleDeclarationRequest | null;
|
|
2249
|
-
subjectToLienPriority?: LoanBorrowerSimpleDeclarationRequest | null;
|
|
2250
|
-
inDelinquencyOrDefault?: LoanBorrowerSimpleDeclarationRequest | null;
|
|
2251
|
-
relationshipWithSeller?: LoanBorrowerSimpleDeclarationRequest | null;
|
|
2252
|
-
preForeclosureOrShortSale?: LoanBorrowerSimpleDeclarationRequest | null;
|
|
2253
|
-
applyingForAnotherMortgage?: LoanBorrowerSimpleDeclarationRequest | null;
|
|
2254
|
-
conveyedTitleToPropertyForeclosure?: LoanBorrowerSimpleDeclarationRequest | null;
|
|
2255
|
-
}
|
|
2256
|
-
|
|
2257
|
-
export interface LoanBorrowerDemographics {
|
|
2258
|
-
/** @format uuid */
|
|
2259
|
-
id?: string | null;
|
|
2260
|
-
race?: LoanBorrowerDemographicsRace | null;
|
|
2261
|
-
gender?: LoanBorrowerDemographicsGender | null;
|
|
2262
|
-
ethnicity?: LoanBorrowerDemographicsEthnicity | null;
|
|
2263
|
-
}
|
|
2264
|
-
|
|
2265
|
-
export interface LoanBorrowerDemographicsEthnicity {
|
|
2266
|
-
/** @format uuid */
|
|
2267
|
-
id?: string | null;
|
|
2268
|
-
isDeclined?: boolean | null;
|
|
2269
|
-
isHispanicOrLatino?: boolean | null;
|
|
2270
|
-
otherHispanicOrLatino?: string | null;
|
|
2271
|
-
hispanicOrLatinoEthnicities?: LoanHispanicEthnicity[] | null;
|
|
2272
|
-
}
|
|
2273
|
-
|
|
2274
|
-
export interface LoanBorrowerDemographicsEthnicityRequest {
|
|
2275
|
-
isDeclined?: boolean | null;
|
|
2276
|
-
isHispanicOrLatino?: boolean | null;
|
|
2277
|
-
/** @maxLength 255 */
|
|
2278
|
-
otherHispanicOrLatino?: string | null;
|
|
2279
|
-
hispanicOrLatinoEthnicities?: LoanHispanicEthnicity[] | null;
|
|
2280
|
-
}
|
|
2281
|
-
|
|
2282
|
-
export interface LoanBorrowerDemographicsGender {
|
|
2283
|
-
/** @format uuid */
|
|
2284
|
-
id?: string | null;
|
|
2285
|
-
isDeclined?: boolean | null;
|
|
2286
|
-
gender?: LoanGenderType | null;
|
|
2287
|
-
}
|
|
2288
|
-
|
|
2289
|
-
export interface LoanBorrowerDemographicsGenderRequest {
|
|
2290
|
-
isDeclined?: boolean | null;
|
|
2291
|
-
gender?: LoanGenderType | null;
|
|
2292
|
-
}
|
|
2293
|
-
|
|
2294
|
-
export interface LoanBorrowerDemographicsRace {
|
|
2295
|
-
/** @format uuid */
|
|
2296
|
-
id?: string | null;
|
|
2297
|
-
isAmericanIndianOrAlaskanNative?: boolean | null;
|
|
2298
|
-
otherAmericanIndianOrAlaskanNative?: string | null;
|
|
2299
|
-
isAsian?: boolean | null;
|
|
2300
|
-
asianRaces?: LoanAsianRace[] | null;
|
|
2301
|
-
otherAsianRace?: string | null;
|
|
2302
|
-
isBlackOrAfrican?: boolean | null;
|
|
2303
|
-
isPacificIslander?: boolean | null;
|
|
2304
|
-
pacificIslanderRace?: LoanPacificIslanderRace[] | null;
|
|
2305
|
-
otherPacificIslanderRace?: string | null;
|
|
2306
|
-
isWhite?: boolean | null;
|
|
2307
|
-
isDeclined?: boolean | null;
|
|
2308
|
-
}
|
|
2309
|
-
|
|
2310
|
-
export interface LoanBorrowerDemographicsRaceRequest {
|
|
2311
|
-
isAmericanIndianOrAlaskanNative?: boolean | null;
|
|
2312
|
-
/** @maxLength 255 */
|
|
2313
|
-
otherAmericanIndianOrAlaskanNative?: string | null;
|
|
2314
|
-
isAsian?: boolean | null;
|
|
2315
|
-
asianRaces?: LoanAsianRace[] | null;
|
|
2316
|
-
/** @maxLength 255 */
|
|
2317
|
-
otherAsianRace?: string | null;
|
|
2318
|
-
isBlackOrAfrican?: boolean | null;
|
|
2319
|
-
isPacificIslander?: boolean | null;
|
|
2320
|
-
pacificIslanderRace?: LoanPacificIslanderRace[] | null;
|
|
2321
|
-
/** @maxLength 255 */
|
|
2322
|
-
otherPacificIslanderRace?: string | null;
|
|
2323
|
-
isWhite?: boolean | null;
|
|
2324
|
-
isDeclined?: boolean | null;
|
|
2325
|
-
}
|
|
2326
|
-
|
|
2327
|
-
export interface LoanBorrowerDemographicsRequest {
|
|
2328
|
-
race?: LoanBorrowerDemographicsRaceRequest | null;
|
|
2329
|
-
gender?: LoanBorrowerDemographicsGenderRequest | null;
|
|
2330
|
-
ethnicity?: LoanBorrowerDemographicsEthnicityRequest | null;
|
|
2331
|
-
}
|
|
2332
|
-
|
|
2333
|
-
export interface LoanBorrowerEmploymentCurrent {
|
|
2334
|
-
/** @format uuid */
|
|
2335
|
-
id?: string | null;
|
|
2336
|
-
name?: string | null;
|
|
2337
|
-
title?: string | null;
|
|
2338
|
-
phoneNumber?: string | null;
|
|
2339
|
-
/** @format date */
|
|
2340
|
-
startDate?: string | null;
|
|
2341
|
-
isSelfEmployed?: boolean | null;
|
|
2342
|
-
isEmployedByPartyInTransaction?: boolean | null;
|
|
2343
|
-
address?: AddressV3 | null;
|
|
2344
|
-
ownership?: LoanBorrowerEmploymentCurrentOwnership | null;
|
|
2345
|
-
grossIncome?: LoanBorrowerEmploymentCurrentGrossIncome | null;
|
|
2346
|
-
timeInLineOfWork?: LoanBorrowerEmploymentCurrentTimeInLineOfWork | null;
|
|
2347
|
-
}
|
|
2348
|
-
|
|
2349
|
-
export interface LoanBorrowerEmploymentCurrentGrossIncome {
|
|
2350
|
-
/** @format uuid */
|
|
2351
|
-
id?: string | null;
|
|
2352
|
-
/** @format double */
|
|
2353
|
-
base?: number | null;
|
|
2354
|
-
/** @format double */
|
|
2355
|
-
other?: number | null;
|
|
2356
|
-
/** @format double */
|
|
2357
|
-
bonus?: number | null;
|
|
2358
|
-
/** @format double */
|
|
2359
|
-
overtime?: number | null;
|
|
2360
|
-
/** @format double */
|
|
2361
|
-
commission?: number | null;
|
|
2362
|
-
/** @format double */
|
|
2363
|
-
militaryEntitlements?: number | null;
|
|
2364
|
-
}
|
|
2365
|
-
|
|
2366
|
-
export interface LoanBorrowerEmploymentCurrentGrossIncomeRequest {
|
|
2367
|
-
/**
|
|
2368
|
-
* @format double
|
|
2369
|
-
* @min 0
|
|
2370
|
-
*/
|
|
2371
|
-
base?: number | null;
|
|
2372
|
-
/**
|
|
2373
|
-
* @format double
|
|
2374
|
-
* @min 0
|
|
2375
|
-
*/
|
|
2376
|
-
other?: number | null;
|
|
2377
|
-
/**
|
|
2378
|
-
* @format double
|
|
2379
|
-
* @min 0
|
|
2380
|
-
*/
|
|
2381
|
-
bonus?: number | null;
|
|
2382
|
-
/**
|
|
2383
|
-
* @format double
|
|
2384
|
-
* @min 0
|
|
2385
|
-
*/
|
|
2386
|
-
overtime?: number | null;
|
|
2387
|
-
/**
|
|
2388
|
-
* @format double
|
|
2389
|
-
* @min 0
|
|
2390
|
-
*/
|
|
2391
|
-
commission?: number | null;
|
|
2392
|
-
/**
|
|
2393
|
-
* @format double
|
|
2394
|
-
* @min 0
|
|
2395
|
-
*/
|
|
2396
|
-
militaryEntitlements?: number | null;
|
|
2397
|
-
}
|
|
2398
|
-
|
|
2399
|
-
export interface LoanBorrowerEmploymentCurrentOwnership {
|
|
2400
|
-
/** @format uuid */
|
|
2401
|
-
id?: string | null;
|
|
2402
|
-
isOwner?: boolean | null;
|
|
2403
|
-
hasOwnershipOver25Percent?: boolean | null;
|
|
2404
|
-
/** @format double */
|
|
2405
|
-
monthlyIncome?: number | null;
|
|
2406
|
-
}
|
|
2407
|
-
|
|
2408
|
-
export interface LoanBorrowerEmploymentCurrentOwnershipRequest {
|
|
2409
|
-
isOwner?: boolean | null;
|
|
2410
|
-
hasOwnershipOver25Percent?: boolean | null;
|
|
2411
|
-
/**
|
|
2412
|
-
* @format double
|
|
2413
|
-
* @min 0
|
|
2414
|
-
*/
|
|
2415
|
-
monthlyIncome?: number | null;
|
|
2416
|
-
}
|
|
2417
|
-
|
|
2418
|
-
export interface LoanBorrowerEmploymentCurrentRequest {
|
|
2419
|
-
/** @maxLength 255 */
|
|
2420
|
-
name?: string | null;
|
|
2421
|
-
/** @maxLength 100 */
|
|
2422
|
-
title?: string | null;
|
|
2423
|
-
phoneNumber?: string | null;
|
|
2424
|
-
/** @format date */
|
|
2425
|
-
startDate?: string | null;
|
|
2426
|
-
isSelfEmployed?: boolean | null;
|
|
2427
|
-
isEmployedByPartyInTransaction?: boolean | null;
|
|
2428
|
-
address?: AddressRequest | null;
|
|
2429
|
-
ownership?: LoanBorrowerEmploymentCurrentOwnershipRequest | null;
|
|
2430
|
-
grossIncome?: LoanBorrowerEmploymentCurrentGrossIncomeRequest | null;
|
|
2431
|
-
timeInLineOfWork?: LoanBorrowerEmploymentCurrentTimeInLineOfWorkRequest | null;
|
|
2432
|
-
}
|
|
2433
|
-
|
|
2434
|
-
export interface LoanBorrowerEmploymentCurrentTimeInLineOfWork {
|
|
2435
|
-
/** @format uuid */
|
|
2436
|
-
id?: string | null;
|
|
2437
|
-
/** @format int32 */
|
|
2438
|
-
years?: number | null;
|
|
2439
|
-
/** @format int32 */
|
|
2440
|
-
months?: number | null;
|
|
2441
|
-
}
|
|
2442
|
-
|
|
2443
|
-
export interface LoanBorrowerEmploymentCurrentTimeInLineOfWorkRequest {
|
|
2444
|
-
/** @format int32 */
|
|
2445
|
-
years?: number | null;
|
|
2446
|
-
/** @format int32 */
|
|
2447
|
-
months?: number | null;
|
|
2448
|
-
}
|
|
2449
|
-
|
|
2450
|
-
export interface LoanBorrowerEmploymentPrevious {
|
|
2451
|
-
/** @format uuid */
|
|
2452
|
-
id?: string | null;
|
|
2453
|
-
name?: string | null;
|
|
2454
|
-
title?: string | null;
|
|
2455
|
-
phoneNumber?: string | null;
|
|
2456
|
-
/** @format date */
|
|
2457
|
-
startDate?: string | null;
|
|
2458
|
-
/** @format date */
|
|
2459
|
-
endDate?: string | null;
|
|
2460
|
-
/** @format double */
|
|
2461
|
-
grossIncome?: number | null;
|
|
2462
|
-
isSelfEmployed?: boolean | null;
|
|
2463
|
-
address?: AddressV3 | null;
|
|
2464
|
-
}
|
|
2465
|
-
|
|
2466
|
-
export interface LoanBorrowerEmploymentPreviousRequest {
|
|
2467
|
-
/** @maxLength 255 */
|
|
2468
|
-
name?: string | null;
|
|
2469
|
-
/** @maxLength 100 */
|
|
2470
|
-
title?: string | null;
|
|
2471
|
-
phoneNumber?: string | null;
|
|
2472
|
-
/** @format date */
|
|
2473
|
-
startDate?: string | null;
|
|
2474
|
-
/** @format date */
|
|
2475
|
-
endDate?: string | null;
|
|
2476
|
-
/**
|
|
2477
|
-
* @format double
|
|
2478
|
-
* @min 0
|
|
2479
|
-
*/
|
|
2480
|
-
grossIncome?: number | null;
|
|
2481
|
-
isSelfEmployed?: boolean | null;
|
|
2482
|
-
address?: AddressRequest | null;
|
|
2483
|
-
}
|
|
2484
|
-
|
|
2485
|
-
export interface LoanBorrowerGift {
|
|
2486
|
-
/** @format uuid */
|
|
2487
|
-
id?: string | null;
|
|
2488
|
-
/** @format double */
|
|
2489
|
-
value?: number | null;
|
|
2490
|
-
isDeposited?: boolean | null;
|
|
2491
|
-
source?: LoanGiftSource | null;
|
|
2492
|
-
assetType?: LoanGiftAssetType | null;
|
|
2493
|
-
}
|
|
2494
|
-
|
|
2495
|
-
export interface LoanBorrowerGiftRequest {
|
|
2496
|
-
/**
|
|
2497
|
-
* @format double
|
|
2498
|
-
* @min 0
|
|
2499
|
-
*/
|
|
2500
|
-
value?: number | null;
|
|
2501
|
-
isDeposited?: boolean | null;
|
|
2502
|
-
source?: LoanGiftSource | null;
|
|
2503
|
-
assetType?: LoanGiftAssetType | null;
|
|
2504
|
-
}
|
|
2505
|
-
|
|
2506
|
-
export interface LoanBorrowerHomeOwnership {
|
|
2507
|
-
/** @format uuid */
|
|
2508
|
-
id?: string | null;
|
|
2509
|
-
/** @format date */
|
|
2510
|
-
dateCompleted?: string | null;
|
|
2511
|
-
type?: LoanHomeOwnershipType | null;
|
|
2512
|
-
format?: LoanHomeOwnershipFormat | null;
|
|
2513
|
-
provider?: LoanBorrowerHomeOwnershipProvider | null;
|
|
2514
|
-
}
|
|
2515
|
-
|
|
2516
|
-
export interface LoanBorrowerHomeOwnershipProvider {
|
|
2517
|
-
/** @format uuid */
|
|
2518
|
-
id?: string | null;
|
|
2519
|
-
name?: string | null;
|
|
2520
|
-
phoneNumber?: string | null;
|
|
2521
|
-
address?: AddressV3 | null;
|
|
2522
|
-
}
|
|
2523
|
-
|
|
2524
|
-
export interface LoanBorrowerHomeOwnershipProviderRequest {
|
|
2525
|
-
/** @maxLength 255 */
|
|
2526
|
-
name?: string | null;
|
|
2527
|
-
phoneNumber?: string | null;
|
|
2528
|
-
address?: AddressRequest | null;
|
|
2529
|
-
}
|
|
2530
|
-
|
|
2531
|
-
export interface LoanBorrowerHomeOwnershipRequest {
|
|
2532
|
-
/** @format date */
|
|
2533
|
-
dateCompleted?: string | null;
|
|
2534
|
-
type?: LoanHomeOwnershipType | null;
|
|
2535
|
-
format?: LoanHomeOwnershipFormat | null;
|
|
2536
|
-
provider?: LoanBorrowerHomeOwnershipProviderRequest | null;
|
|
2537
|
-
}
|
|
2538
|
-
|
|
2539
|
-
export interface LoanBorrowerLiability {
|
|
2540
|
-
/** @format uuid */
|
|
2541
|
-
id?: string | null;
|
|
2542
|
-
type?: LoanLiabilityType | null;
|
|
2543
|
-
name?: string | null;
|
|
2544
|
-
accountNumber?: string | null;
|
|
2545
|
-
financialInstitution?: string | null;
|
|
2546
|
-
/** @format double */
|
|
2547
|
-
balance?: number | null;
|
|
2548
|
-
/** @format double */
|
|
2549
|
-
monthlyPayment?: number | null;
|
|
2550
|
-
/** @format int32 */
|
|
2551
|
-
monthsLeftToPay?: number | null;
|
|
2552
|
-
isPaidOffBeforeClosing?: boolean | null;
|
|
2553
|
-
}
|
|
2554
|
-
|
|
2555
|
-
export interface LoanBorrowerLiabilityRequest {
|
|
2556
|
-
type?: LoanLiabilityType | null;
|
|
2557
|
-
/** @maxLength 255 */
|
|
2558
|
-
name?: string | null;
|
|
2559
|
-
/** @maxLength 50 */
|
|
2560
|
-
accountNumber?: string | null;
|
|
2561
|
-
/** @maxLength 255 */
|
|
2562
|
-
financialInstitution?: string | null;
|
|
2563
|
-
/**
|
|
2564
|
-
* @format double
|
|
2565
|
-
* @min 0
|
|
2566
|
-
*/
|
|
2567
|
-
balance?: number | null;
|
|
2568
|
-
/**
|
|
2569
|
-
* @format double
|
|
2570
|
-
* @min 0
|
|
2571
|
-
*/
|
|
2572
|
-
monthlyPayment?: number | null;
|
|
2573
|
-
/**
|
|
2574
|
-
* @format int32
|
|
2575
|
-
* @min 0
|
|
2576
|
-
*/
|
|
2577
|
-
monthsLeftToPay?: number | null;
|
|
2578
|
-
isPaidOffBeforeClosing?: boolean | null;
|
|
2579
|
-
}
|
|
2580
|
-
|
|
2581
|
-
export interface LoanBorrowerMilitaryService {
|
|
2582
|
-
/** @format uuid */
|
|
2583
|
-
id?: string | null;
|
|
2584
|
-
hasServed?: boolean | null;
|
|
2585
|
-
/** @format date */
|
|
2586
|
-
endDate?: string | null;
|
|
2587
|
-
type?: LoanMilitaryServiceType | null;
|
|
2588
|
-
}
|
|
2589
|
-
|
|
2590
|
-
export interface LoanBorrowerMilitaryServiceRequest {
|
|
2591
|
-
hasServed?: boolean | null;
|
|
2592
|
-
/** @format date */
|
|
2593
|
-
endDate?: string | null;
|
|
2594
|
-
type?: LoanMilitaryServiceType | null;
|
|
2595
|
-
}
|
|
2596
|
-
|
|
2597
|
-
export interface LoanBorrowerMoneyDeclaration {
|
|
2598
|
-
/** @format uuid */
|
|
2599
|
-
id?: string | null;
|
|
2600
|
-
isAffirmative?: boolean | null;
|
|
2601
|
-
description?: string | null;
|
|
2602
|
-
/** @format double */
|
|
2603
|
-
amount?: number | null;
|
|
2604
|
-
}
|
|
2605
|
-
|
|
2606
|
-
export interface LoanBorrowerMoneyDeclarationRequest {
|
|
2607
|
-
isAffirmative?: boolean | null;
|
|
2608
|
-
/** @maxLength 1000 */
|
|
2609
|
-
description?: string | null;
|
|
2610
|
-
/**
|
|
2611
|
-
* @format double
|
|
2612
|
-
* @min 0
|
|
2613
|
-
*/
|
|
2614
|
-
amount?: number | null;
|
|
2615
|
-
}
|
|
2616
|
-
|
|
2617
|
-
export interface LoanBorrowerOtherAsset {
|
|
2618
|
-
/** @format uuid */
|
|
2619
|
-
id?: string | null;
|
|
2620
|
-
type?: LoanOtherAssetType | null;
|
|
2621
|
-
other?: string | null;
|
|
2622
|
-
/** @format double */
|
|
2623
|
-
value?: number | null;
|
|
2624
|
-
}
|
|
2625
|
-
|
|
2626
|
-
export interface LoanBorrowerOtherAssetRequest {
|
|
2627
|
-
type?: LoanOtherAssetType | null;
|
|
2628
|
-
/** @maxLength 255 */
|
|
2629
|
-
other?: string | null;
|
|
2630
|
-
/**
|
|
2631
|
-
* @format double
|
|
2632
|
-
* @min 0
|
|
2633
|
-
*/
|
|
2634
|
-
value?: number | null;
|
|
2635
|
-
}
|
|
2636
|
-
|
|
2637
|
-
export interface LoanBorrowerOtherIncome {
|
|
2638
|
-
/** @format uuid */
|
|
2639
|
-
id?: string | null;
|
|
2640
|
-
/** @format double */
|
|
2641
|
-
value?: number | null;
|
|
2642
|
-
type?: LoanOtherIncomeType | null;
|
|
2643
|
-
}
|
|
2644
|
-
|
|
2645
|
-
export interface LoanBorrowerOtherIncomeRequest {
|
|
2646
|
-
/**
|
|
2647
|
-
* @format double
|
|
2648
|
-
* @min 0
|
|
2649
|
-
*/
|
|
2650
|
-
value?: number | null;
|
|
2651
|
-
type?: LoanOtherIncomeType | null;
|
|
2652
|
-
}
|
|
2653
|
-
|
|
2654
|
-
export interface LoanBorrowerOtherLiability {
|
|
2655
|
-
/** @format uuid */
|
|
2656
|
-
id?: string | null;
|
|
2657
|
-
/** @format double */
|
|
2658
|
-
monthlyPayment?: number | null;
|
|
2659
|
-
type?: LoanOtherLiabilityType | null;
|
|
2660
|
-
}
|
|
2661
|
-
|
|
2662
|
-
export interface LoanBorrowerOtherLiabilityRequest {
|
|
2663
|
-
/**
|
|
2664
|
-
* @format double
|
|
2665
|
-
* @min 0
|
|
2666
|
-
*/
|
|
2667
|
-
monthlyPayment?: number | null;
|
|
2668
|
-
type?: LoanOtherLiabilityType | null;
|
|
2669
|
-
}
|
|
2670
|
-
|
|
2671
|
-
export interface LoanBorrowerPhoneNumber {
|
|
2672
|
-
/** @format uuid */
|
|
2673
|
-
id?: string | null;
|
|
2674
|
-
ext?: string | null;
|
|
2675
|
-
number?: string | null;
|
|
2676
|
-
type?: LoanPhoneNumberType | null;
|
|
2677
|
-
}
|
|
2678
|
-
|
|
2679
|
-
export interface LoanBorrowerPhoneNumberRequest {
|
|
2680
|
-
/** @maxLength 10 */
|
|
2681
|
-
ext?: string | null;
|
|
2682
|
-
number?: string | null;
|
|
2683
|
-
type?: LoanPhoneNumberType | null;
|
|
2684
|
-
}
|
|
2685
|
-
|
|
2686
|
-
export interface LoanBorrowerPrimaryResidenceDeclaration {
|
|
2687
|
-
/** @format uuid */
|
|
2688
|
-
id?: string | null;
|
|
2689
|
-
isAffirmative?: boolean | null;
|
|
2690
|
-
description?: string | null;
|
|
2691
|
-
hasInterestInLastThreeYears?: boolean | null;
|
|
2692
|
-
titleHeld?: LoanTitleHeld | null;
|
|
2693
|
-
propertyType?: LoanOccupancyType | null;
|
|
2694
|
-
}
|
|
2695
|
-
|
|
2696
|
-
export interface LoanBorrowerPrimaryResidenceDeclarationRequest {
|
|
2697
|
-
isAffirmative?: boolean | null;
|
|
2698
|
-
/** @maxLength 1000 */
|
|
2699
|
-
description?: string | null;
|
|
2700
|
-
hasInterestInLastThreeYears?: boolean | null;
|
|
2701
|
-
titleHeld?: LoanTitleHeld | null;
|
|
2702
|
-
propertyType?: LoanOccupancyType | null;
|
|
2703
|
-
}
|
|
2704
|
-
|
|
2705
|
-
export interface LoanBorrowerRealEstateAsset {
|
|
2706
|
-
/** @format uuid */
|
|
2707
|
-
id?: string | null;
|
|
2708
|
-
status?: LoanRealEstateStatus | null;
|
|
2709
|
-
occupancy?: LoanOccupancyType | null;
|
|
2710
|
-
/** @format double */
|
|
2711
|
-
marketValue?: number | null;
|
|
2712
|
-
/** @format double */
|
|
2713
|
-
monthlyInsTaxDues?: number | null;
|
|
2714
|
-
/** @format double */
|
|
2715
|
-
monthlyRentalIncome?: number | null;
|
|
2716
|
-
address?: AddressV3 | null;
|
|
2717
|
-
mortgages?: LoanBorrowerRealEstateAssetMortgage[] | null;
|
|
2718
|
-
}
|
|
2719
|
-
|
|
2720
|
-
export interface LoanBorrowerRealEstateAssetMortgage {
|
|
2721
|
-
/** @format uuid */
|
|
2722
|
-
id?: string | null;
|
|
2723
|
-
creditor?: string | null;
|
|
2724
|
-
accountNumber?: string | null;
|
|
2725
|
-
/** @format double */
|
|
2726
|
-
balance?: number | null;
|
|
2727
|
-
/** @format double */
|
|
2728
|
-
creditLimit?: number | null;
|
|
2729
|
-
/** @format double */
|
|
2730
|
-
monthlyMortgagePayment?: number | null;
|
|
2731
|
-
isBalancePaidBeforeClosing?: boolean | null;
|
|
2732
|
-
loanType?: LoanType | null;
|
|
1677
|
+
file: File;
|
|
1678
|
+
/** @format int32 */
|
|
1679
|
+
weight: number;
|
|
2733
1680
|
}
|
|
2734
1681
|
|
|
2735
|
-
export interface
|
|
2736
|
-
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
|
-
accountNumber?: string | null;
|
|
2740
|
-
/**
|
|
2741
|
-
* @format double
|
|
2742
|
-
* @min 0
|
|
2743
|
-
*/
|
|
2744
|
-
balance?: number | null;
|
|
1682
|
+
export interface ListingRequest {
|
|
1683
|
+
description?: string | null;
|
|
1684
|
+
mlsNumber?: string | null;
|
|
1685
|
+
address: AddressRequest;
|
|
2745
1686
|
/**
|
|
2746
|
-
* @format
|
|
1687
|
+
* @format int32
|
|
2747
1688
|
* @min 0
|
|
1689
|
+
* @exclusiveMin true
|
|
2748
1690
|
*/
|
|
2749
|
-
|
|
1691
|
+
salePrice?: number | null;
|
|
2750
1692
|
/**
|
|
2751
|
-
* @format
|
|
2752
|
-
* @
|
|
1693
|
+
* @format date-time
|
|
1694
|
+
* @minLength 1
|
|
2753
1695
|
*/
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
1696
|
+
activeDate: string;
|
|
1697
|
+
/** @format date-time */
|
|
1698
|
+
expirationDate?: string | null;
|
|
1699
|
+
zillowURL?: string | null;
|
|
1700
|
+
/** @format date-time */
|
|
1701
|
+
openHouseDate?: string | null;
|
|
1702
|
+
/** @format double */
|
|
1703
|
+
buyerAgentCommissionPercent?: number | null;
|
|
1704
|
+
/** @format double */
|
|
1705
|
+
sellerAgentCommissionPercent?: number | null;
|
|
1706
|
+
/** @format uuid */
|
|
1707
|
+
siteConfigurationId?: string | null;
|
|
2757
1708
|
}
|
|
2758
1709
|
|
|
2759
|
-
export interface
|
|
2760
|
-
|
|
2761
|
-
|
|
2762
|
-
|
|
2763
|
-
* @format double
|
|
2764
|
-
* @min 0
|
|
2765
|
-
*/
|
|
2766
|
-
marketValue?: number | null;
|
|
2767
|
-
/**
|
|
2768
|
-
* @format double
|
|
2769
|
-
* @min 0
|
|
2770
|
-
*/
|
|
2771
|
-
monthlyInsTaxDues?: number | null;
|
|
2772
|
-
/**
|
|
2773
|
-
* @format double
|
|
2774
|
-
* @min 0
|
|
2775
|
-
*/
|
|
2776
|
-
monthlyRentalIncome?: number | null;
|
|
2777
|
-
address?: AddressRequest | null;
|
|
2778
|
-
mortgages?: LoanBorrowerRealEstateAssetMortgageRequest[] | null;
|
|
1710
|
+
export interface ListingSearchCriteria {
|
|
1711
|
+
searchText?: string | null;
|
|
1712
|
+
isActive?: boolean | null;
|
|
1713
|
+
partnerIds?: string[] | null;
|
|
2779
1714
|
}
|
|
2780
1715
|
|
|
2781
|
-
export interface
|
|
2782
|
-
ssn?: string | null;
|
|
2783
|
-
email?: string | null;
|
|
2784
|
-
/** @maxLength 100 */
|
|
2785
|
-
lastName?: string | null;
|
|
2786
|
-
/** @maxLength 100 */
|
|
2787
|
-
firstName?: string | null;
|
|
2788
|
-
/** @maxLength 100 */
|
|
2789
|
-
middleName?: string | null;
|
|
2790
|
-
prefix?: LoanNamePrefix | null;
|
|
2791
|
-
suffix?: LoanNameSuffix | null;
|
|
2792
|
-
/** @format date */
|
|
2793
|
-
birthDate?: string | null;
|
|
2794
|
-
citizenship?: LoanCitizenship | null;
|
|
2795
|
-
maritalStatus?: LoanMaritalStatus | null;
|
|
2796
|
-
languagePreference?: LoanLanguagePreference | null;
|
|
2797
|
-
/** @format int32 */
|
|
2798
|
-
numberOfDependents?: number | null;
|
|
2799
|
-
isPrimaryBorrower: boolean;
|
|
2800
|
-
isFirstTimeHomeBuyer?: boolean | null;
|
|
2801
|
-
hasJointAssetsAndLiabilities?: boolean | null;
|
|
2802
|
-
dependentAges?: number[] | null;
|
|
2803
|
-
demographics?: LoanBorrowerDemographicsRequest | null;
|
|
2804
|
-
declarations?: LoanBorrowerDeclarationsRequest | null;
|
|
2805
|
-
militaryService?: LoanBorrowerMilitaryServiceRequest | null;
|
|
2806
|
-
gifts: LoanBorrowerGiftRequest[];
|
|
2807
|
-
addresses: LoanBorrowerAddressRequest[];
|
|
2808
|
-
consents: LoanBorrowerConsentRequest[];
|
|
2809
|
-
liabilities: LoanBorrowerLiabilityRequest[];
|
|
2810
|
-
otherAssets: LoanBorrowerOtherAssetRequest[];
|
|
2811
|
-
otherIncome: LoanBorrowerOtherIncomeRequest[];
|
|
2812
|
-
phoneNumbers: LoanBorrowerPhoneNumberRequest[];
|
|
2813
|
-
accountAssets: LoanBorrowerAccountAssetRequest[];
|
|
2814
|
-
homeOwnership: LoanBorrowerHomeOwnershipRequest[];
|
|
2815
|
-
alternateNames: LoanBorrowerAlternateNameRequest[];
|
|
2816
|
-
otherLiabilities: LoanBorrowerOtherLiabilityRequest[];
|
|
2817
|
-
realEstateAssets: LoanBorrowerRealEstateAssetRequest[];
|
|
2818
|
-
currentEmployment: LoanBorrowerEmploymentCurrentRequest[];
|
|
2819
|
-
previousEmployment: LoanBorrowerEmploymentPreviousRequest[];
|
|
2820
|
-
}
|
|
2821
|
-
|
|
2822
|
-
export interface LoanBorrowerSimpleDeclaration {
|
|
1716
|
+
export interface Loan {
|
|
2823
1717
|
/** @format uuid */
|
|
2824
|
-
id
|
|
2825
|
-
|
|
2826
|
-
|
|
2827
|
-
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
/** @
|
|
2832
|
-
|
|
1718
|
+
id: string;
|
|
1719
|
+
loanID: string;
|
|
1720
|
+
loanNumber?: string | null;
|
|
1721
|
+
/** @format date-time */
|
|
1722
|
+
initialDisclosureProvidedDate?: string | null;
|
|
1723
|
+
/** @format date-time */
|
|
1724
|
+
closingDisclosureSentDate?: string | null;
|
|
1725
|
+
/** @format date-time */
|
|
1726
|
+
underwritingApprovalDate?: string | null;
|
|
1727
|
+
/** @format date-time */
|
|
1728
|
+
closingDate?: string | null;
|
|
1729
|
+
/** @format date-time */
|
|
1730
|
+
fundingOrderDate?: string | null;
|
|
1731
|
+
/** @format date-time */
|
|
1732
|
+
currentStatusDate?: string | null;
|
|
1733
|
+
loanChannel?: string | null;
|
|
1734
|
+
/** @format double */
|
|
1735
|
+
totalLoanAmount?: number | null;
|
|
1736
|
+
currentLoanStatus?: string | null;
|
|
1737
|
+
currentMilestone?: string | null;
|
|
1738
|
+
lastCompletedMilestone?: string | null;
|
|
1739
|
+
/** @format date-time */
|
|
1740
|
+
startDate?: string | null;
|
|
1741
|
+
isInSync: boolean;
|
|
1742
|
+
/** @format date-time */
|
|
1743
|
+
syncDate?: string | null;
|
|
1744
|
+
excludeFromAutoTaskReminders?: boolean | null;
|
|
1745
|
+
fileStarter?: string | null;
|
|
1746
|
+
isPOSLoan?: boolean | null;
|
|
1747
|
+
referenceID: string;
|
|
1748
|
+
/** @format int32 */
|
|
1749
|
+
term?: number | null;
|
|
1750
|
+
loanProgram?: string | null;
|
|
1751
|
+
loanType?: string | null;
|
|
1752
|
+
status?: string | null;
|
|
1753
|
+
isActive: boolean;
|
|
1754
|
+
loanOfficer?: LoanOfficer | null;
|
|
1755
|
+
propertyAddress?: Address | null;
|
|
1756
|
+
loanSettings?: LoanSettings | null;
|
|
1757
|
+
loanLogs: LoanLog[];
|
|
1758
|
+
isLocked: boolean;
|
|
1759
|
+
isLockedFromEditing: boolean;
|
|
1760
|
+
source?: string | null;
|
|
1761
|
+
userLoans: UserLoan[];
|
|
1762
|
+
contacts: LoanContact[];
|
|
2833
1763
|
}
|
|
2834
1764
|
|
|
2835
1765
|
export interface LoanComparison {
|
|
@@ -3045,37 +1975,6 @@ export interface LoanDraftSearchCriteria {
|
|
|
3045
1975
|
draftTypes?: DraftType[] | null;
|
|
3046
1976
|
}
|
|
3047
1977
|
|
|
3048
|
-
export interface LoanFinancial {
|
|
3049
|
-
/** @format uuid */
|
|
3050
|
-
id?: string | null;
|
|
3051
|
-
isDebtsAssetsReviewed?: boolean | null;
|
|
3052
|
-
/** @format double */
|
|
3053
|
-
cashToClose?: number | null;
|
|
3054
|
-
/** @format double */
|
|
3055
|
-
cashDownPayment?: number | null;
|
|
3056
|
-
/** @format double */
|
|
3057
|
-
maximumPurchasePrice?: number | null;
|
|
3058
|
-
}
|
|
3059
|
-
|
|
3060
|
-
export interface LoanFinancialRequest {
|
|
3061
|
-
isDebtsAssetsReviewed?: boolean | null;
|
|
3062
|
-
/**
|
|
3063
|
-
* @format double
|
|
3064
|
-
* @min 0
|
|
3065
|
-
*/
|
|
3066
|
-
cashToClose?: number | null;
|
|
3067
|
-
/**
|
|
3068
|
-
* @format double
|
|
3069
|
-
* @min 0
|
|
3070
|
-
*/
|
|
3071
|
-
cashDownPayment?: number | null;
|
|
3072
|
-
/**
|
|
3073
|
-
* @format double
|
|
3074
|
-
* @min 0
|
|
3075
|
-
*/
|
|
3076
|
-
maximumPurchasePrice?: number | null;
|
|
3077
|
-
}
|
|
3078
|
-
|
|
3079
1978
|
export interface LoanIdentifier {
|
|
3080
1979
|
/** @format uuid */
|
|
3081
1980
|
id: string;
|
|
@@ -3171,31 +2070,6 @@ export interface LoanLogSearchCriteria {
|
|
|
3171
2070
|
levels?: LogLevel[] | null;
|
|
3172
2071
|
}
|
|
3173
2072
|
|
|
3174
|
-
export interface LoanNonOwningBorrower {
|
|
3175
|
-
/** @format uuid */
|
|
3176
|
-
id?: string | null;
|
|
3177
|
-
email?: string | null;
|
|
3178
|
-
lastName?: string | null;
|
|
3179
|
-
firstName?: string | null;
|
|
3180
|
-
middleName?: string | null;
|
|
3181
|
-
prefix?: LoanNamePrefix | null;
|
|
3182
|
-
suffix?: LoanNameSuffix | null;
|
|
3183
|
-
consents: LoanBorrowerConsent[];
|
|
3184
|
-
}
|
|
3185
|
-
|
|
3186
|
-
export interface LoanNonOwningBorrowerRequest {
|
|
3187
|
-
email?: string | null;
|
|
3188
|
-
/** @maxLength 100 */
|
|
3189
|
-
lastName?: string | null;
|
|
3190
|
-
/** @maxLength 100 */
|
|
3191
|
-
firstName?: string | null;
|
|
3192
|
-
/** @maxLength 100 */
|
|
3193
|
-
middleName?: string | null;
|
|
3194
|
-
prefix?: LoanNamePrefix | null;
|
|
3195
|
-
suffix?: LoanNameSuffix | null;
|
|
3196
|
-
consents: LoanBorrowerConsentRequest[];
|
|
3197
|
-
}
|
|
3198
|
-
|
|
3199
2073
|
export interface LoanOfficer {
|
|
3200
2074
|
/** @format uuid */
|
|
3201
2075
|
id: string;
|
|
@@ -3231,126 +2105,6 @@ export interface LoanOfficerSearchCriteria {
|
|
|
3231
2105
|
brand?: string | null;
|
|
3232
2106
|
}
|
|
3233
2107
|
|
|
3234
|
-
export interface LoanPatchRequestGuidPatchDocument {
|
|
3235
|
-
operations: GuidPatchOperation[];
|
|
3236
|
-
}
|
|
3237
|
-
|
|
3238
|
-
export interface LoanProperty {
|
|
3239
|
-
/** @format uuid */
|
|
3240
|
-
id?: string | null;
|
|
3241
|
-
trustType?: LoanTrustType | null;
|
|
3242
|
-
occupancy?: LoanOccupancyType | null;
|
|
3243
|
-
propertyType?: LoanPropertyType | null;
|
|
3244
|
-
referenceId?: string | null;
|
|
3245
|
-
/** @format int32 */
|
|
3246
|
-
yearBuilt?: number | null;
|
|
3247
|
-
/** @format int32 */
|
|
3248
|
-
yearAcquired?: number | null;
|
|
3249
|
-
/** @format int32 */
|
|
3250
|
-
numberOfUnits?: number | null;
|
|
3251
|
-
/** @format double */
|
|
3252
|
-
salePrice?: number | null;
|
|
3253
|
-
/** @format double */
|
|
3254
|
-
propertyValue?: number | null;
|
|
3255
|
-
/** @format double */
|
|
3256
|
-
purchasePrice?: number | null;
|
|
3257
|
-
/** @format double */
|
|
3258
|
-
estimatedValue?: number | null;
|
|
3259
|
-
/** @format double */
|
|
3260
|
-
monthlyRentalIncome?: number | null;
|
|
3261
|
-
isMixedUseProperty?: boolean | null;
|
|
3262
|
-
isManufacturedHome?: boolean | null;
|
|
3263
|
-
isFhaSecondaryResidence?: boolean | null;
|
|
3264
|
-
address?: AddressV3 | null;
|
|
3265
|
-
mortgages: LoanPropertyMortgage[];
|
|
3266
|
-
}
|
|
3267
|
-
|
|
3268
|
-
export interface LoanPropertyMortgage {
|
|
3269
|
-
/** @format uuid */
|
|
3270
|
-
id?: string | null;
|
|
3271
|
-
creditor?: string | null;
|
|
3272
|
-
/** @format double */
|
|
3273
|
-
loanAmount?: number | null;
|
|
3274
|
-
/** @format double */
|
|
3275
|
-
creditLimit?: number | null;
|
|
3276
|
-
/** @format double */
|
|
3277
|
-
monthlyPayment?: number | null;
|
|
3278
|
-
lienType?: LoanLienPosition | null;
|
|
3279
|
-
}
|
|
3280
|
-
|
|
3281
|
-
export interface LoanPropertyMortgageRequest {
|
|
3282
|
-
/** @maxLength 255 */
|
|
3283
|
-
creditor?: string | null;
|
|
3284
|
-
/**
|
|
3285
|
-
* @format double
|
|
3286
|
-
* @min 0
|
|
3287
|
-
*/
|
|
3288
|
-
loanAmount?: number | null;
|
|
3289
|
-
/**
|
|
3290
|
-
* @format double
|
|
3291
|
-
* @min 0
|
|
3292
|
-
*/
|
|
3293
|
-
creditLimit?: number | null;
|
|
3294
|
-
/**
|
|
3295
|
-
* @format double
|
|
3296
|
-
* @min 0
|
|
3297
|
-
*/
|
|
3298
|
-
monthlyPayment?: number | null;
|
|
3299
|
-
lienType?: LoanLienPosition | null;
|
|
3300
|
-
}
|
|
3301
|
-
|
|
3302
|
-
export interface LoanPropertyRequest {
|
|
3303
|
-
trustType?: LoanTrustType | null;
|
|
3304
|
-
occupancy?: LoanOccupancyType | null;
|
|
3305
|
-
propertyType?: LoanPropertyType | null;
|
|
3306
|
-
/** @maxLength 100 */
|
|
3307
|
-
referenceId?: string | null;
|
|
3308
|
-
/**
|
|
3309
|
-
* @format int32
|
|
3310
|
-
* @min 1800
|
|
3311
|
-
* @max 2035
|
|
3312
|
-
*/
|
|
3313
|
-
yearBuilt?: number | null;
|
|
3314
|
-
/**
|
|
3315
|
-
* @format int32
|
|
3316
|
-
* @min 1900
|
|
3317
|
-
* @max 2035
|
|
3318
|
-
*/
|
|
3319
|
-
yearAcquired?: number | null;
|
|
3320
|
-
/** @format int32 */
|
|
3321
|
-
numberOfUnits?: number | null;
|
|
3322
|
-
/**
|
|
3323
|
-
* @format double
|
|
3324
|
-
* @min 0
|
|
3325
|
-
*/
|
|
3326
|
-
salePrice?: number | null;
|
|
3327
|
-
/**
|
|
3328
|
-
* @format double
|
|
3329
|
-
* @min 0
|
|
3330
|
-
*/
|
|
3331
|
-
propertyValue?: number | null;
|
|
3332
|
-
/**
|
|
3333
|
-
* @format double
|
|
3334
|
-
* @min 0
|
|
3335
|
-
*/
|
|
3336
|
-
purchasePrice?: number | null;
|
|
3337
|
-
/**
|
|
3338
|
-
* @format double
|
|
3339
|
-
* @min 0
|
|
3340
|
-
*/
|
|
3341
|
-
estimatedValue?: number | null;
|
|
3342
|
-
/**
|
|
3343
|
-
* @format double
|
|
3344
|
-
* @min 0
|
|
3345
|
-
*/
|
|
3346
|
-
monthlyRentalIncome?: number | null;
|
|
3347
|
-
isMixedUseProperty?: boolean | null;
|
|
3348
|
-
isManufacturedHome?: boolean | null;
|
|
3349
|
-
isFhaSecondaryResidence?: boolean | null;
|
|
3350
|
-
address?: AddressRequest | null;
|
|
3351
|
-
mortgages: LoanPropertyMortgageRequest[];
|
|
3352
|
-
}
|
|
3353
|
-
|
|
3354
2108
|
export interface LoanQueue {
|
|
3355
2109
|
/** @format date-time */
|
|
3356
2110
|
createdAt: string;
|
|
@@ -4920,22 +3674,6 @@ export interface Theme {
|
|
|
4920
3674
|
iconColor?: string | null;
|
|
4921
3675
|
}
|
|
4922
3676
|
|
|
4923
|
-
export interface TimeAtAddress {
|
|
4924
|
-
/** @format uuid */
|
|
4925
|
-
id?: string | null;
|
|
4926
|
-
/** @format int32 */
|
|
4927
|
-
years?: number | null;
|
|
4928
|
-
/** @format int32 */
|
|
4929
|
-
months?: number | null;
|
|
4930
|
-
}
|
|
4931
|
-
|
|
4932
|
-
export interface TimeAtAddressRequest {
|
|
4933
|
-
/** @format int32 */
|
|
4934
|
-
years?: number | null;
|
|
4935
|
-
/** @format int32 */
|
|
4936
|
-
months?: number | null;
|
|
4937
|
-
}
|
|
4938
|
-
|
|
4939
3677
|
export interface Token {
|
|
4940
3678
|
token_type: string;
|
|
4941
3679
|
/** @format int32 */
|
|
@@ -5502,41 +4240,6 @@ export type FusionReportFilterFilterTypeEnum =
|
|
|
5502
4240
|
| "StringNotEquals"
|
|
5503
4241
|
| "StringNotContains";
|
|
5504
4242
|
|
|
5505
|
-
export type IpAddressAddressFamilyEnum =
|
|
5506
|
-
| "Unspecified"
|
|
5507
|
-
| "Unix"
|
|
5508
|
-
| "InterNetwork"
|
|
5509
|
-
| "ImpLink"
|
|
5510
|
-
| "Pup"
|
|
5511
|
-
| "Chaos"
|
|
5512
|
-
| "NS"
|
|
5513
|
-
| "Ipx"
|
|
5514
|
-
| "Iso"
|
|
5515
|
-
| "Osi"
|
|
5516
|
-
| "Ecma"
|
|
5517
|
-
| "DataKit"
|
|
5518
|
-
| "Ccitt"
|
|
5519
|
-
| "Sna"
|
|
5520
|
-
| "DecNet"
|
|
5521
|
-
| "DataLink"
|
|
5522
|
-
| "Lat"
|
|
5523
|
-
| "HyperChannel"
|
|
5524
|
-
| "AppleTalk"
|
|
5525
|
-
| "NetBios"
|
|
5526
|
-
| "VoiceView"
|
|
5527
|
-
| "FireFox"
|
|
5528
|
-
| "Banyan"
|
|
5529
|
-
| "Atm"
|
|
5530
|
-
| "InterNetworkV6"
|
|
5531
|
-
| "Cluster"
|
|
5532
|
-
| "Ieee12844"
|
|
5533
|
-
| "Irda"
|
|
5534
|
-
| "NetworkDesigners"
|
|
5535
|
-
| "Max"
|
|
5536
|
-
| "Packet"
|
|
5537
|
-
| "ControllerAreaNetwork"
|
|
5538
|
-
| "Unknown";
|
|
5539
|
-
|
|
5540
4243
|
export type LoanContactRoleEnum =
|
|
5541
4244
|
| "Borrower"
|
|
5542
4245
|
| "CoBorrower"
|
|
@@ -5897,7 +4600,7 @@ export class HttpClient<SecurityDataType = unknown> {
|
|
|
5897
4600
|
|
|
5898
4601
|
/**
|
|
5899
4602
|
* @title The Big POS API
|
|
5900
|
-
* @version v2.
|
|
4603
|
+
* @version v2.29.1
|
|
5901
4604
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
5902
4605
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
5903
4606
|
*/
|
|
@@ -9985,59 +8688,6 @@ export class Api<
|
|
|
9985
8688
|
...params,
|
|
9986
8689
|
}),
|
|
9987
8690
|
|
|
9988
|
-
/**
|
|
9989
|
-
* @description Creates a new loan or adds borrowers to an existing loan based on the presence of LoanID
|
|
9990
|
-
*
|
|
9991
|
-
* @tags Loans V3
|
|
9992
|
-
* @name SubmitLoanApplication
|
|
9993
|
-
* @summary Submit Loan Application
|
|
9994
|
-
* @request POST:/api/v3/loans/applications
|
|
9995
|
-
* @secure
|
|
9996
|
-
* @response `201` `LoanApplication` Created
|
|
9997
|
-
* @response `400` `any` Bad Request
|
|
9998
|
-
* @response `401` `ProblemDetails` Unauthorized
|
|
9999
|
-
* @response `403` `ProblemDetails` Forbidden
|
|
10000
|
-
* @response `404` `ProblemDetails` Not Found
|
|
10001
|
-
*/
|
|
10002
|
-
submitLoanApplication: (
|
|
10003
|
-
data: LoanApplicationRequest,
|
|
10004
|
-
params: RequestParams = {},
|
|
10005
|
-
) =>
|
|
10006
|
-
this.request<LoanApplication, ProblemDetails>({
|
|
10007
|
-
path: `/api/v3/loans/applications`,
|
|
10008
|
-
method: "POST",
|
|
10009
|
-
body: data,
|
|
10010
|
-
secure: true,
|
|
10011
|
-
type: ContentType.Json,
|
|
10012
|
-
format: "json",
|
|
10013
|
-
...params,
|
|
10014
|
-
}),
|
|
10015
|
-
|
|
10016
|
-
/**
|
|
10017
|
-
* @description Partially update a loan using GUID-based patch operations. Supports GUID lookups in collections, eliminating index ordering issues.
|
|
10018
|
-
*
|
|
10019
|
-
* @tags Loans V3
|
|
10020
|
-
* @name PatchLoan
|
|
10021
|
-
* @summary Patch Loan (GUID-based)
|
|
10022
|
-
* @request PATCH:/api/v3/loans/{id}
|
|
10023
|
-
* @secure
|
|
10024
|
-
* @response `200` `LoanApplication` Success
|
|
10025
|
-
* @response `400` `any` Bad Request
|
|
10026
|
-
* @response `401` `ProblemDetails` Unauthorized
|
|
10027
|
-
* @response `403` `ProblemDetails` Forbidden
|
|
10028
|
-
* @response `404` `ProblemDetails` Not Found
|
|
10029
|
-
* @response `409` `any` Conflict
|
|
10030
|
-
*/
|
|
10031
|
-
patchLoan: (id: string, data: any, params: RequestParams = {}) =>
|
|
10032
|
-
this.request<LoanApplication, ProblemDetails>({
|
|
10033
|
-
path: `/api/v3/loans/${id}`,
|
|
10034
|
-
method: "PATCH",
|
|
10035
|
-
body: data,
|
|
10036
|
-
secure: true,
|
|
10037
|
-
format: "json",
|
|
10038
|
-
...params,
|
|
10039
|
-
}),
|
|
10040
|
-
|
|
10041
8691
|
/**
|
|
10042
8692
|
* No description
|
|
10043
8693
|
*
|
|
@@ -10069,7 +8719,7 @@ export class Api<
|
|
|
10069
8719
|
query: query,
|
|
10070
8720
|
body: data,
|
|
10071
8721
|
secure: true,
|
|
10072
|
-
type: ContentType.
|
|
8722
|
+
type: ContentType.Json,
|
|
10073
8723
|
format: "json",
|
|
10074
8724
|
...params,
|
|
10075
8725
|
}),
|