@matech/thebigpos-sdk 2.38.2 → 2.38.3-rc1
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/.claude/settings.local.json +41 -6
- package/.husky/pre-commit +2 -2
- package/LICENSE +21 -21
- package/README.md +73 -73
- package/dist/index.d.ts +517 -382
- package/dist/index.js +49 -13
- package/dist/index.js.map +1 -1
- package/docs/sdk_generation.md +149 -149
- package/package.json +44 -43
- package/scripts/apply-json-patch-content-type.js +56 -56
- package/src/index.ts +572 -275
- package/tsconfig.json +27 -27
package/src/index.ts
CHANGED
|
@@ -42,6 +42,14 @@ export type SigningMethod = "ConsumerConnect" | "POSF";
|
|
|
42
42
|
|
|
43
43
|
export type SSOIntegrationType = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
44
44
|
|
|
45
|
+
export type LosOperationStatus =
|
|
46
|
+
| "Pending"
|
|
47
|
+
| "Success"
|
|
48
|
+
| "Failed"
|
|
49
|
+
| "ConfigurationError"
|
|
50
|
+
| "PermanentFailure"
|
|
51
|
+
| "Locked";
|
|
52
|
+
|
|
45
53
|
export type LogLevel = "None" | "Info" | "Warning" | "Error";
|
|
46
54
|
|
|
47
55
|
export type LoanType = "Fha" | "Conventional" | "UsdaRd" | "Va" | "Other";
|
|
@@ -196,10 +204,11 @@ export type LoanLogType =
|
|
|
196
204
|
| "CoBorrowerAdded"
|
|
197
205
|
| "TaskCompleted"
|
|
198
206
|
| "LoanStatusChanged"
|
|
199
|
-
| "
|
|
207
|
+
| "Consent"
|
|
200
208
|
| "SensitiveDataPurge"
|
|
201
209
|
| "ClosingDateUpdated"
|
|
202
|
-
| "ConsumerConnectAssociation"
|
|
210
|
+
| "ConsumerConnectAssociation"
|
|
211
|
+
| "TaskReminderSent";
|
|
203
212
|
|
|
204
213
|
export type LoanLienPosition = "First" | "Subordinate";
|
|
205
214
|
|
|
@@ -331,7 +340,7 @@ export type EncompassLogOutcome = "Success" | "Failure" | "PartialSuccess";
|
|
|
331
340
|
|
|
332
341
|
export type EncompassLogOperationType =
|
|
333
342
|
| "FieldUpdate"
|
|
334
|
-
| "
|
|
343
|
+
| "ConsentUpdate"
|
|
335
344
|
| "DocumentSync"
|
|
336
345
|
| "MilestoneUpdate"
|
|
337
346
|
| "DocumentAttachment"
|
|
@@ -340,14 +349,6 @@ export type EncompassLogOperationType =
|
|
|
340
349
|
|
|
341
350
|
export type DraftType = "NewLoan" | "EditLoan";
|
|
342
351
|
|
|
343
|
-
export type ConsumerConnectAssociationStatus =
|
|
344
|
-
| "Legacy"
|
|
345
|
-
| "Pending"
|
|
346
|
-
| "Success"
|
|
347
|
-
| "Failed"
|
|
348
|
-
| "ConfigurationError"
|
|
349
|
-
| "PermanentFailure";
|
|
350
|
-
|
|
351
352
|
export type ConsentType = "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
352
353
|
|
|
353
354
|
export type ConsentLosSyncStatus = "NotStarted" | "Failed" | "Success";
|
|
@@ -456,7 +457,7 @@ export interface AccountBilling {
|
|
|
456
457
|
}
|
|
457
458
|
|
|
458
459
|
export interface AccountBillingRequest {
|
|
459
|
-
billingType:
|
|
460
|
+
billingType: AccountBillingRequestBillingTypeEnum;
|
|
460
461
|
/**
|
|
461
462
|
* @format double
|
|
462
463
|
* @min 0
|
|
@@ -794,12 +795,7 @@ export interface AuditLogEntry {
|
|
|
794
795
|
/** @format uuid */
|
|
795
796
|
id: string;
|
|
796
797
|
entityType: string;
|
|
797
|
-
changeType:
|
|
798
|
-
| "Created"
|
|
799
|
-
| "Modified"
|
|
800
|
-
| "SoftDeleted"
|
|
801
|
-
| "HardDeleted"
|
|
802
|
-
| "Restored";
|
|
798
|
+
changeType: AuditLogEntryChangeTypeEnum;
|
|
803
799
|
/** @format uuid */
|
|
804
800
|
entityId: string;
|
|
805
801
|
performedBy?: AuditLogUser | null;
|
|
@@ -1034,39 +1030,23 @@ export interface ConditionComment {
|
|
|
1034
1030
|
}
|
|
1035
1031
|
|
|
1036
1032
|
export interface ConsumerConnectRetry {
|
|
1037
|
-
|
|
1038
|
-
userLoanId: string;
|
|
1033
|
+
correlationKey: string;
|
|
1039
1034
|
email: string;
|
|
1040
|
-
status?:
|
|
1035
|
+
status?: LosOperationStatus | null;
|
|
1041
1036
|
success: boolean;
|
|
1042
1037
|
}
|
|
1043
1038
|
|
|
1044
1039
|
export interface ConsumerConnectStatus {
|
|
1045
|
-
|
|
1046
|
-
userLoanId: string;
|
|
1047
|
-
/** @format uuid */
|
|
1048
|
-
userId: string;
|
|
1040
|
+
correlationKey: string;
|
|
1049
1041
|
email: string;
|
|
1050
|
-
|
|
1051
|
-
| "Borrower"
|
|
1052
|
-
| "CoBorrower"
|
|
1053
|
-
| "NonBorrower"
|
|
1054
|
-
| "LoanOfficer"
|
|
1055
|
-
| "LoanProcessor"
|
|
1056
|
-
| "LoanOfficerAssistant"
|
|
1057
|
-
| "SupportingLoanOfficer"
|
|
1058
|
-
| "BuyerAgent"
|
|
1059
|
-
| "SellerAgent"
|
|
1060
|
-
| "TitleInsuranceAgent"
|
|
1061
|
-
| "EscrowAgent"
|
|
1062
|
-
| "SettlementAgent";
|
|
1063
|
-
status?: ConsumerConnectAssociationStatus | null;
|
|
1042
|
+
status?: LosOperationStatus | null;
|
|
1064
1043
|
/** @format int32 */
|
|
1065
1044
|
attemptCount: number;
|
|
1066
1045
|
/** @format date-time */
|
|
1067
1046
|
lastAttemptAt?: string | null;
|
|
1068
1047
|
/** @format date-time */
|
|
1069
1048
|
nextRetryAt?: string | null;
|
|
1049
|
+
lastTriggerSource?: string | null;
|
|
1070
1050
|
}
|
|
1071
1051
|
|
|
1072
1052
|
export interface ContactInfo {
|
|
@@ -1123,7 +1103,7 @@ export interface CorporateSearchCriteria {
|
|
|
1123
1103
|
}
|
|
1124
1104
|
|
|
1125
1105
|
export interface CreateAccessScopeRequest {
|
|
1126
|
-
scopeType:
|
|
1106
|
+
scopeType: CreateAccessScopeRequestScopeTypeEnum;
|
|
1127
1107
|
/** @format uuid */
|
|
1128
1108
|
userId?: string | null;
|
|
1129
1109
|
/** @format uuid */
|
|
@@ -1147,7 +1127,7 @@ export interface CreateAccountRequest {
|
|
|
1147
1127
|
*/
|
|
1148
1128
|
nlmsid: number;
|
|
1149
1129
|
settings: AccountSettingsRequest;
|
|
1150
|
-
environment:
|
|
1130
|
+
environment: CreateAccountRequestEnvironmentEnum;
|
|
1151
1131
|
losIntegration: LOSIntegration;
|
|
1152
1132
|
billingSettings: AccountBillingRequest;
|
|
1153
1133
|
}
|
|
@@ -1180,19 +1160,7 @@ export interface CreateDocumentTemplateRequest {
|
|
|
1180
1160
|
export interface CreateGroupMemberRequest {
|
|
1181
1161
|
/** @format uuid */
|
|
1182
1162
|
userId: string;
|
|
1183
|
-
loanRole:
|
|
1184
|
-
| "Borrower"
|
|
1185
|
-
| "CoBorrower"
|
|
1186
|
-
| "NonBorrower"
|
|
1187
|
-
| "LoanOfficer"
|
|
1188
|
-
| "LoanProcessor"
|
|
1189
|
-
| "LoanOfficerAssistant"
|
|
1190
|
-
| "SupportingLoanOfficer"
|
|
1191
|
-
| "BuyerAgent"
|
|
1192
|
-
| "SellerAgent"
|
|
1193
|
-
| "TitleInsuranceAgent"
|
|
1194
|
-
| "EscrowAgent"
|
|
1195
|
-
| "SettlementAgent";
|
|
1163
|
+
loanRole: CreateGroupMemberRequestLoanRoleEnum;
|
|
1196
1164
|
}
|
|
1197
1165
|
|
|
1198
1166
|
export interface CreateInviteRequest {
|
|
@@ -1204,7 +1172,7 @@ export interface CreateInviteRequest {
|
|
|
1204
1172
|
emailAddress: string;
|
|
1205
1173
|
phoneNumber?: string | null;
|
|
1206
1174
|
/** @deprecated */
|
|
1207
|
-
relationship:
|
|
1175
|
+
relationship: CreateInviteRequestRelationshipEnum;
|
|
1208
1176
|
loanID: string;
|
|
1209
1177
|
route?: string | null;
|
|
1210
1178
|
/** @format uuid */
|
|
@@ -1227,7 +1195,7 @@ export interface CreateLoanImportRequest {
|
|
|
1227
1195
|
* @minLength 1
|
|
1228
1196
|
*/
|
|
1229
1197
|
startDate: string;
|
|
1230
|
-
importMode:
|
|
1198
|
+
importMode: CreateLoanImportRequestImportModeEnum;
|
|
1231
1199
|
}
|
|
1232
1200
|
|
|
1233
1201
|
export interface CreateSession {
|
|
@@ -1249,19 +1217,7 @@ export interface CreateUserDeviceRequest {
|
|
|
1249
1217
|
}
|
|
1250
1218
|
|
|
1251
1219
|
export interface CreateUserDraft {
|
|
1252
|
-
loanRole:
|
|
1253
|
-
| "Borrower"
|
|
1254
|
-
| "CoBorrower"
|
|
1255
|
-
| "NonBorrower"
|
|
1256
|
-
| "LoanOfficer"
|
|
1257
|
-
| "LoanProcessor"
|
|
1258
|
-
| "LoanOfficerAssistant"
|
|
1259
|
-
| "SupportingLoanOfficer"
|
|
1260
|
-
| "BuyerAgent"
|
|
1261
|
-
| "SellerAgent"
|
|
1262
|
-
| "TitleInsuranceAgent"
|
|
1263
|
-
| "EscrowAgent"
|
|
1264
|
-
| "SettlementAgent";
|
|
1220
|
+
loanRole: CreateUserDraftLoanRoleEnum;
|
|
1265
1221
|
}
|
|
1266
1222
|
|
|
1267
1223
|
export interface CreateUserGroupRequest {
|
|
@@ -1583,7 +1539,7 @@ export interface Draft {
|
|
|
1583
1539
|
siteConfiguration: SiteConfigurationReduced;
|
|
1584
1540
|
/** @format uuid */
|
|
1585
1541
|
loanID?: string | null;
|
|
1586
|
-
type:
|
|
1542
|
+
type: DraftTypeEnum;
|
|
1587
1543
|
isCoBorrower: boolean;
|
|
1588
1544
|
}
|
|
1589
1545
|
|
|
@@ -1602,7 +1558,7 @@ export interface DraftContent {
|
|
|
1602
1558
|
siteConfiguration: SiteConfigurationReduced;
|
|
1603
1559
|
/** @format uuid */
|
|
1604
1560
|
loanID?: string | null;
|
|
1605
|
-
type:
|
|
1561
|
+
type: DraftContentTypeEnum;
|
|
1606
1562
|
isCoBorrower: boolean;
|
|
1607
1563
|
applicationPayload: any;
|
|
1608
1564
|
}
|
|
@@ -1700,7 +1656,7 @@ export interface EncompassCredentialsDetail {
|
|
|
1700
1656
|
defaultLoanOfficerUserName?: string | null;
|
|
1701
1657
|
clearStateIfUnlicensed: boolean;
|
|
1702
1658
|
baseUrl?: string | null;
|
|
1703
|
-
signingMethod:
|
|
1659
|
+
signingMethod: EncompassCredentialsDetailSigningMethodEnum;
|
|
1704
1660
|
subscriptionId?: string | null;
|
|
1705
1661
|
environment?: string | null;
|
|
1706
1662
|
}
|
|
@@ -1716,7 +1672,7 @@ export interface EncompassCredentialsRequest {
|
|
|
1716
1672
|
defaultLoanOfficerUserName?: string | null;
|
|
1717
1673
|
clearStateIfUnlicensed: boolean;
|
|
1718
1674
|
baseUrl?: string | null;
|
|
1719
|
-
signingMethod:
|
|
1675
|
+
signingMethod: EncompassCredentialsRequestSigningMethodEnum;
|
|
1720
1676
|
subscriptionId?: string | null;
|
|
1721
1677
|
environment?: string | null;
|
|
1722
1678
|
clientID?: string | null;
|
|
@@ -1780,15 +1736,8 @@ export interface EncompassRequestLog {
|
|
|
1780
1736
|
losId?: string | null;
|
|
1781
1737
|
/** @format uuid */
|
|
1782
1738
|
accountId: string;
|
|
1783
|
-
operationType:
|
|
1784
|
-
|
|
1785
|
-
| "EConsentUpdate"
|
|
1786
|
-
| "DocumentSync"
|
|
1787
|
-
| "MilestoneUpdate"
|
|
1788
|
-
| "DocumentAttachment"
|
|
1789
|
-
| "General"
|
|
1790
|
-
| "FieldReader";
|
|
1791
|
-
outcome: "Success" | "Failure" | "PartialSuccess";
|
|
1739
|
+
operationType: EncompassRequestLogOperationTypeEnum;
|
|
1740
|
+
outcome: EncompassRequestLogOutcomeEnum;
|
|
1792
1741
|
message: string;
|
|
1793
1742
|
endpoint?: string | null;
|
|
1794
1743
|
httpMethod?: string | null;
|
|
@@ -1846,7 +1795,7 @@ export interface FileSearchCriteria {
|
|
|
1846
1795
|
export interface FileWithBytes {
|
|
1847
1796
|
name: string;
|
|
1848
1797
|
/** @format byte */
|
|
1849
|
-
data:
|
|
1798
|
+
data: Blob;
|
|
1850
1799
|
fileName: string;
|
|
1851
1800
|
mimeType?: string | null;
|
|
1852
1801
|
extension?: string | null;
|
|
@@ -2025,20 +1974,7 @@ export interface FusionFieldDisplay {
|
|
|
2025
1974
|
}
|
|
2026
1975
|
|
|
2027
1976
|
export interface FusionReportFilter {
|
|
2028
|
-
filterType:
|
|
2029
|
-
| "DateGreaterThanOrEqualTo"
|
|
2030
|
-
| "DateGreaterThan"
|
|
2031
|
-
| "DateLessThan"
|
|
2032
|
-
| "DateLessThanOrEqualTo"
|
|
2033
|
-
| "DateEquals"
|
|
2034
|
-
| "DateDoesntEqual"
|
|
2035
|
-
| "DateNonEmpty"
|
|
2036
|
-
| "DateEmpty"
|
|
2037
|
-
| "StringContains"
|
|
2038
|
-
| "StringEquals"
|
|
2039
|
-
| "StringNotEmpty"
|
|
2040
|
-
| "StringNotEquals"
|
|
2041
|
-
| "StringNotContains";
|
|
1977
|
+
filterType: FusionReportFilterFilterTypeEnum;
|
|
2042
1978
|
targetField: string;
|
|
2043
1979
|
targetValue: string;
|
|
2044
1980
|
}
|
|
@@ -2166,40 +2102,7 @@ export interface GuidPatchOperation {
|
|
|
2166
2102
|
}
|
|
2167
2103
|
|
|
2168
2104
|
export interface IPAddress {
|
|
2169
|
-
addressFamily:
|
|
2170
|
-
| "Unspecified"
|
|
2171
|
-
| "Unix"
|
|
2172
|
-
| "InterNetwork"
|
|
2173
|
-
| "ImpLink"
|
|
2174
|
-
| "Pup"
|
|
2175
|
-
| "Chaos"
|
|
2176
|
-
| "NS"
|
|
2177
|
-
| "Ipx"
|
|
2178
|
-
| "Iso"
|
|
2179
|
-
| "Osi"
|
|
2180
|
-
| "Ecma"
|
|
2181
|
-
| "DataKit"
|
|
2182
|
-
| "Ccitt"
|
|
2183
|
-
| "Sna"
|
|
2184
|
-
| "DecNet"
|
|
2185
|
-
| "DataLink"
|
|
2186
|
-
| "Lat"
|
|
2187
|
-
| "HyperChannel"
|
|
2188
|
-
| "AppleTalk"
|
|
2189
|
-
| "NetBios"
|
|
2190
|
-
| "VoiceView"
|
|
2191
|
-
| "FireFox"
|
|
2192
|
-
| "Banyan"
|
|
2193
|
-
| "Atm"
|
|
2194
|
-
| "InterNetworkV6"
|
|
2195
|
-
| "Cluster"
|
|
2196
|
-
| "Ieee12844"
|
|
2197
|
-
| "Irda"
|
|
2198
|
-
| "NetworkDesigners"
|
|
2199
|
-
| "Max"
|
|
2200
|
-
| "Packet"
|
|
2201
|
-
| "ControllerAreaNetwork"
|
|
2202
|
-
| "Unknown";
|
|
2105
|
+
addressFamily: IpAddressAddressFamilyEnum;
|
|
2203
2106
|
/** @format int64 */
|
|
2204
2107
|
scopeId: number;
|
|
2205
2108
|
isIPv6Multicast: boolean;
|
|
@@ -2443,7 +2346,7 @@ export interface Loan {
|
|
|
2443
2346
|
closingDisclosureSentDate?: string | null;
|
|
2444
2347
|
/** @format date-time */
|
|
2445
2348
|
underwritingApprovalDate?: string | null;
|
|
2446
|
-
/** @format date
|
|
2349
|
+
/** @format date */
|
|
2447
2350
|
closingDate?: string | null;
|
|
2448
2351
|
/** @format date-time */
|
|
2449
2352
|
fundingOrderDate?: string | null;
|
|
@@ -2466,7 +2369,7 @@ export interface Loan {
|
|
|
2466
2369
|
nonOwningBorrowers: LoanNonOwningBorrower[];
|
|
2467
2370
|
userLoans: UserLoan[];
|
|
2468
2371
|
contacts: LoanContact[];
|
|
2469
|
-
signingMethod:
|
|
2372
|
+
signingMethod: LoanSigningMethodEnum;
|
|
2470
2373
|
}
|
|
2471
2374
|
|
|
2472
2375
|
export interface LoanApplication {
|
|
@@ -2524,7 +2427,7 @@ export interface LoanBorrower {
|
|
|
2524
2427
|
citizenship?: LoanCitizenship | null;
|
|
2525
2428
|
maritalStatus?: LoanMaritalStatus | null;
|
|
2526
2429
|
languagePreference?: LoanLanguagePreference | null;
|
|
2527
|
-
applicationStatus:
|
|
2430
|
+
applicationStatus: LoanBorrowerApplicationStatusEnum;
|
|
2528
2431
|
/** @format int32 */
|
|
2529
2432
|
numberOfDependents?: number | null;
|
|
2530
2433
|
isPrimaryBorrower: boolean;
|
|
@@ -3449,19 +3352,7 @@ export interface LoanContact {
|
|
|
3449
3352
|
email?: string | null;
|
|
3450
3353
|
phone?: string | null;
|
|
3451
3354
|
companyName?: string | null;
|
|
3452
|
-
role:
|
|
3453
|
-
| "Borrower"
|
|
3454
|
-
| "CoBorrower"
|
|
3455
|
-
| "NonBorrower"
|
|
3456
|
-
| "LoanOfficer"
|
|
3457
|
-
| "LoanProcessor"
|
|
3458
|
-
| "LoanOfficerAssistant"
|
|
3459
|
-
| "SupportingLoanOfficer"
|
|
3460
|
-
| "BuyerAgent"
|
|
3461
|
-
| "SellerAgent"
|
|
3462
|
-
| "TitleInsuranceAgent"
|
|
3463
|
-
| "EscrowAgent"
|
|
3464
|
-
| "SettlementAgent";
|
|
3355
|
+
role: LoanContactRoleEnum;
|
|
3465
3356
|
}
|
|
3466
3357
|
|
|
3467
3358
|
export interface LoanContactList {
|
|
@@ -3598,19 +3489,14 @@ export interface LoanImport {
|
|
|
3598
3489
|
/** @format int32 */
|
|
3599
3490
|
importedCount: number;
|
|
3600
3491
|
statusMessage?: string | null;
|
|
3601
|
-
status:
|
|
3602
|
-
|
|
3603
|
-
| "InProgress"
|
|
3604
|
-
| "Completed"
|
|
3605
|
-
| "Failed"
|
|
3606
|
-
| "Cancelled";
|
|
3607
|
-
importMode: "All" | "NewOnly" | "UpdateOnly";
|
|
3492
|
+
status: LoanImportStatusEnum;
|
|
3493
|
+
importMode: LoanImportImportModeEnum;
|
|
3608
3494
|
/** @format date-time */
|
|
3609
3495
|
createdAt?: string | null;
|
|
3610
3496
|
}
|
|
3611
3497
|
|
|
3612
3498
|
export interface LoanImportLog {
|
|
3613
|
-
level:
|
|
3499
|
+
level: LoanImportLogLevelEnum;
|
|
3614
3500
|
message: string;
|
|
3615
3501
|
/** @format date-time */
|
|
3616
3502
|
createdAt: string;
|
|
@@ -3671,23 +3557,8 @@ export interface LoanListPaginated {
|
|
|
3671
3557
|
export interface LoanLog {
|
|
3672
3558
|
/** @format uuid */
|
|
3673
3559
|
id: string;
|
|
3674
|
-
level:
|
|
3675
|
-
type:
|
|
3676
|
-
| "Loan"
|
|
3677
|
-
| "Queue"
|
|
3678
|
-
| "POSFlagChanged"
|
|
3679
|
-
| "Verification"
|
|
3680
|
-
| "DocumentUploaded"
|
|
3681
|
-
| "LoanCreated"
|
|
3682
|
-
| "WorkflowSubmitted"
|
|
3683
|
-
| "UserInvitationSent"
|
|
3684
|
-
| "CoBorrowerAdded"
|
|
3685
|
-
| "TaskCompleted"
|
|
3686
|
-
| "LoanStatusChanged"
|
|
3687
|
-
| "EConsent"
|
|
3688
|
-
| "SensitiveDataPurge"
|
|
3689
|
-
| "ClosingDateUpdated"
|
|
3690
|
-
| "ConsumerConnectAssociation";
|
|
3560
|
+
level: LoanLogLevelEnum;
|
|
3561
|
+
type: LoanLogTypeEnum;
|
|
3691
3562
|
message: string;
|
|
3692
3563
|
/** @format date-time */
|
|
3693
3564
|
createdAt: string;
|
|
@@ -3696,23 +3567,8 @@ export interface LoanLog {
|
|
|
3696
3567
|
export interface LoanLogDetail {
|
|
3697
3568
|
/** @format uuid */
|
|
3698
3569
|
id: string;
|
|
3699
|
-
level:
|
|
3700
|
-
type:
|
|
3701
|
-
| "Loan"
|
|
3702
|
-
| "Queue"
|
|
3703
|
-
| "POSFlagChanged"
|
|
3704
|
-
| "Verification"
|
|
3705
|
-
| "DocumentUploaded"
|
|
3706
|
-
| "LoanCreated"
|
|
3707
|
-
| "WorkflowSubmitted"
|
|
3708
|
-
| "UserInvitationSent"
|
|
3709
|
-
| "CoBorrowerAdded"
|
|
3710
|
-
| "TaskCompleted"
|
|
3711
|
-
| "LoanStatusChanged"
|
|
3712
|
-
| "EConsent"
|
|
3713
|
-
| "SensitiveDataPurge"
|
|
3714
|
-
| "ClosingDateUpdated"
|
|
3715
|
-
| "ConsumerConnectAssociation";
|
|
3570
|
+
level: LoanLogDetailLevelEnum;
|
|
3571
|
+
type: LoanLogDetailTypeEnum;
|
|
3716
3572
|
message: string;
|
|
3717
3573
|
/** @format date-time */
|
|
3718
3574
|
createdAt: string;
|
|
@@ -3999,6 +3855,12 @@ export interface LoanTaskSearchRequest {
|
|
|
3999
3855
|
loanStatus?: LoanTaskActivityFilter | null;
|
|
4000
3856
|
}
|
|
4001
3857
|
|
|
3858
|
+
export interface LoanTaskStatusSummary {
|
|
3859
|
+
status: LoanTaskStatusSummaryStatusEnum;
|
|
3860
|
+
/** @format int32 */
|
|
3861
|
+
count: number;
|
|
3862
|
+
}
|
|
3863
|
+
|
|
4002
3864
|
export interface LoanUser {
|
|
4003
3865
|
/** @format uuid */
|
|
4004
3866
|
id: string;
|
|
@@ -4007,19 +3869,7 @@ export interface LoanUser {
|
|
|
4007
3869
|
email: string;
|
|
4008
3870
|
phone?: string | null;
|
|
4009
3871
|
role: string;
|
|
4010
|
-
loanRole:
|
|
4011
|
-
| "Borrower"
|
|
4012
|
-
| "CoBorrower"
|
|
4013
|
-
| "NonBorrower"
|
|
4014
|
-
| "LoanOfficer"
|
|
4015
|
-
| "LoanProcessor"
|
|
4016
|
-
| "LoanOfficerAssistant"
|
|
4017
|
-
| "SupportingLoanOfficer"
|
|
4018
|
-
| "BuyerAgent"
|
|
4019
|
-
| "SellerAgent"
|
|
4020
|
-
| "TitleInsuranceAgent"
|
|
4021
|
-
| "EscrowAgent"
|
|
4022
|
-
| "SettlementAgent";
|
|
3872
|
+
loanRole: LoanUserLoanRoleEnum;
|
|
4023
3873
|
isUser: boolean;
|
|
4024
3874
|
/** @format date-time */
|
|
4025
3875
|
createdAt: string;
|
|
@@ -4045,6 +3895,40 @@ export interface LosLoanCreationRequest {
|
|
|
4045
3895
|
existingLoanID?: string | null;
|
|
4046
3896
|
}
|
|
4047
3897
|
|
|
3898
|
+
export interface LosOperationTracking {
|
|
3899
|
+
/** @format uuid */
|
|
3900
|
+
id: string;
|
|
3901
|
+
/** @format uuid */
|
|
3902
|
+
loanId: string;
|
|
3903
|
+
/** @format int32 */
|
|
3904
|
+
attemptCount: number;
|
|
3905
|
+
operationType: string;
|
|
3906
|
+
correlationKey: string;
|
|
3907
|
+
lastTriggerSource?: string | null;
|
|
3908
|
+
status: LosOperationTrackingStatusEnum;
|
|
3909
|
+
/** @format date-time */
|
|
3910
|
+
createdAt: string;
|
|
3911
|
+
/** @format date-time */
|
|
3912
|
+
lastAttemptAt?: string | null;
|
|
3913
|
+
/** @format date-time */
|
|
3914
|
+
nextRetryAt?: string | null;
|
|
3915
|
+
}
|
|
3916
|
+
|
|
3917
|
+
export interface LosOperationTrackingPaginated {
|
|
3918
|
+
rows: LosOperationTracking[];
|
|
3919
|
+
pagination: Pagination;
|
|
3920
|
+
/** @format int64 */
|
|
3921
|
+
count: number;
|
|
3922
|
+
}
|
|
3923
|
+
|
|
3924
|
+
export interface LosOperationTrackingSearchCriteria {
|
|
3925
|
+
searchText?: string | null;
|
|
3926
|
+
/** @format uuid */
|
|
3927
|
+
loanId?: string | null;
|
|
3928
|
+
operationType?: string | null;
|
|
3929
|
+
status?: LosOperationStatus | null;
|
|
3930
|
+
}
|
|
3931
|
+
|
|
4048
3932
|
export interface LosWebhook {
|
|
4049
3933
|
/** @format uuid */
|
|
4050
3934
|
id: string;
|
|
@@ -4215,6 +4099,8 @@ export interface NotificationTemplate {
|
|
|
4215
4099
|
isDefault: boolean;
|
|
4216
4100
|
status: string;
|
|
4217
4101
|
useDefaultHeaderAndFooter: boolean;
|
|
4102
|
+
multipleCustomTemplates: boolean;
|
|
4103
|
+
allowedRoles?: string[] | null;
|
|
4218
4104
|
versions: NotificationTemplateVersionBase[];
|
|
4219
4105
|
}
|
|
4220
4106
|
|
|
@@ -4241,6 +4127,8 @@ export interface NotificationTemplateBase {
|
|
|
4241
4127
|
isDefault: boolean;
|
|
4242
4128
|
status: string;
|
|
4243
4129
|
useDefaultHeaderAndFooter: boolean;
|
|
4130
|
+
multipleCustomTemplates: boolean;
|
|
4131
|
+
allowedRoles?: string[] | null;
|
|
4244
4132
|
}
|
|
4245
4133
|
|
|
4246
4134
|
export interface NotificationTemplateBasePaginated {
|
|
@@ -4343,7 +4231,7 @@ export interface NotificationTemplateVersionUpdateRequest {
|
|
|
4343
4231
|
|
|
4344
4232
|
export interface Operation {
|
|
4345
4233
|
op?: string;
|
|
4346
|
-
value?:
|
|
4234
|
+
value?: object | null;
|
|
4347
4235
|
path?: string;
|
|
4348
4236
|
}
|
|
4349
4237
|
|
|
@@ -4699,7 +4587,7 @@ export interface SSOTokenRequest {
|
|
|
4699
4587
|
}
|
|
4700
4588
|
|
|
4701
4589
|
export interface SamlMetadataRequest {
|
|
4702
|
-
ssoIntegration:
|
|
4590
|
+
ssoIntegration: SamlMetadataRequestSsoIntegrationEnum;
|
|
4703
4591
|
}
|
|
4704
4592
|
|
|
4705
4593
|
export interface SendForgotPasswordRequest {
|
|
@@ -4716,6 +4604,15 @@ export interface SendLoanDocumentsRequest {
|
|
|
4716
4604
|
emailAddresses: string[];
|
|
4717
4605
|
}
|
|
4718
4606
|
|
|
4607
|
+
export interface SendLoanTaskReminderRequest {
|
|
4608
|
+
/**
|
|
4609
|
+
* @format uuid
|
|
4610
|
+
* @minLength 1
|
|
4611
|
+
*/
|
|
4612
|
+
templateId: string;
|
|
4613
|
+
userIds?: string[] | null;
|
|
4614
|
+
}
|
|
4615
|
+
|
|
4719
4616
|
export interface SendNotificationForLoanRequest {
|
|
4720
4617
|
/** @minLength 1 */
|
|
4721
4618
|
loanID: string;
|
|
@@ -4738,7 +4635,7 @@ export interface SiteConfiguration {
|
|
|
4738
4635
|
deletedAt?: string | null;
|
|
4739
4636
|
/** @format uuid */
|
|
4740
4637
|
id: string;
|
|
4741
|
-
type:
|
|
4638
|
+
type: SiteConfigurationTypeEnum;
|
|
4742
4639
|
/** @format uuid */
|
|
4743
4640
|
entityID: string;
|
|
4744
4641
|
/** @format int32 */
|
|
@@ -4933,7 +4830,7 @@ export interface SiteConfigurationByUrl {
|
|
|
4933
4830
|
deletedAt?: string | null;
|
|
4934
4831
|
/** @format uuid */
|
|
4935
4832
|
id: string;
|
|
4936
|
-
type:
|
|
4833
|
+
type: SiteConfigurationByUrlTypeEnum;
|
|
4937
4834
|
/** @format uuid */
|
|
4938
4835
|
entityID: string;
|
|
4939
4836
|
/** @format int32 */
|
|
@@ -5146,7 +5043,7 @@ export interface SiteConfigurationForm {
|
|
|
5146
5043
|
export interface SiteConfigurationReduced {
|
|
5147
5044
|
/** @format uuid */
|
|
5148
5045
|
id: string;
|
|
5149
|
-
type:
|
|
5046
|
+
type: SiteConfigurationReducedTypeEnum;
|
|
5150
5047
|
url?: string | null;
|
|
5151
5048
|
name: string;
|
|
5152
5049
|
/** @format int64 */
|
|
@@ -5164,7 +5061,7 @@ export interface SiteConfigurationRequest {
|
|
|
5164
5061
|
entityID: string;
|
|
5165
5062
|
/** @format int32 */
|
|
5166
5063
|
entityType: number;
|
|
5167
|
-
type:
|
|
5064
|
+
type: SiteConfigurationRequestTypeEnum;
|
|
5168
5065
|
url: string;
|
|
5169
5066
|
name: string;
|
|
5170
5067
|
introduction?: string | null;
|
|
@@ -5341,7 +5238,7 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
5341
5238
|
export interface SiteConfigurationSummary {
|
|
5342
5239
|
/** @format uuid */
|
|
5343
5240
|
id: string;
|
|
5344
|
-
type:
|
|
5241
|
+
type: SiteConfigurationSummaryTypeEnum;
|
|
5345
5242
|
url?: string | null;
|
|
5346
5243
|
name: string;
|
|
5347
5244
|
/** @format int64 */
|
|
@@ -5969,19 +5866,7 @@ export interface UserDevice {
|
|
|
5969
5866
|
export interface UserDraft {
|
|
5970
5867
|
/** @format uuid */
|
|
5971
5868
|
draftID: string;
|
|
5972
|
-
role:
|
|
5973
|
-
| "Borrower"
|
|
5974
|
-
| "CoBorrower"
|
|
5975
|
-
| "NonBorrower"
|
|
5976
|
-
| "LoanOfficer"
|
|
5977
|
-
| "LoanProcessor"
|
|
5978
|
-
| "LoanOfficerAssistant"
|
|
5979
|
-
| "SupportingLoanOfficer"
|
|
5980
|
-
| "BuyerAgent"
|
|
5981
|
-
| "SellerAgent"
|
|
5982
|
-
| "TitleInsuranceAgent"
|
|
5983
|
-
| "EscrowAgent"
|
|
5984
|
-
| "SettlementAgent";
|
|
5869
|
+
role: UserDraftRoleEnum;
|
|
5985
5870
|
user: User;
|
|
5986
5871
|
}
|
|
5987
5872
|
|
|
@@ -6008,7 +5893,7 @@ export interface UserGroupAccessScope {
|
|
|
6008
5893
|
id: string;
|
|
6009
5894
|
/** @format uuid */
|
|
6010
5895
|
groupId: string;
|
|
6011
|
-
scopeType:
|
|
5896
|
+
scopeType: UserGroupAccessScopeScopeTypeEnum;
|
|
6012
5897
|
/** @format uuid */
|
|
6013
5898
|
userId?: string | null;
|
|
6014
5899
|
/** @format uuid */
|
|
@@ -6044,19 +5929,7 @@ export interface UserLoan {
|
|
|
6044
5929
|
deletedAt?: string | null;
|
|
6045
5930
|
loanID: string;
|
|
6046
5931
|
user: User;
|
|
6047
|
-
role:
|
|
6048
|
-
| "Borrower"
|
|
6049
|
-
| "CoBorrower"
|
|
6050
|
-
| "NonBorrower"
|
|
6051
|
-
| "LoanOfficer"
|
|
6052
|
-
| "LoanProcessor"
|
|
6053
|
-
| "LoanOfficerAssistant"
|
|
6054
|
-
| "SupportingLoanOfficer"
|
|
6055
|
-
| "BuyerAgent"
|
|
6056
|
-
| "SellerAgent"
|
|
6057
|
-
| "TitleInsuranceAgent"
|
|
6058
|
-
| "EscrowAgent"
|
|
6059
|
-
| "SettlementAgent";
|
|
5932
|
+
role: UserLoanRoleEnum;
|
|
6060
5933
|
/** @format int32 */
|
|
6061
5934
|
borrowerPair?: number | null;
|
|
6062
5935
|
/** @format int32 */
|
|
@@ -6069,10 +5942,10 @@ export interface UserLoanConsent {
|
|
|
6069
5942
|
id: string;
|
|
6070
5943
|
/** @format uuid */
|
|
6071
5944
|
userLoanID: string;
|
|
6072
|
-
type:
|
|
5945
|
+
type: UserLoanConsentTypeEnum;
|
|
6073
5946
|
providedConsent: boolean;
|
|
6074
5947
|
ipAddress?: string | null;
|
|
6075
|
-
losSyncStatus:
|
|
5948
|
+
losSyncStatus: UserLoanConsentLosSyncStatusEnum;
|
|
6076
5949
|
/** @format date-time */
|
|
6077
5950
|
createdAt: string;
|
|
6078
5951
|
}
|
|
@@ -6223,16 +6096,7 @@ export interface UserSummary {
|
|
|
6223
6096
|
id: string;
|
|
6224
6097
|
name?: string | null;
|
|
6225
6098
|
email?: string | null;
|
|
6226
|
-
role:
|
|
6227
|
-
| "Borrower"
|
|
6228
|
-
| "LoanOfficer"
|
|
6229
|
-
| "Admin"
|
|
6230
|
-
| "SuperAdmin"
|
|
6231
|
-
| "Realtor"
|
|
6232
|
-
| "SettlementAgent"
|
|
6233
|
-
| "LoanProcessor"
|
|
6234
|
-
| "LoanOfficerAssistant"
|
|
6235
|
-
| "SystemAdmin";
|
|
6099
|
+
role: UserSummaryRoleEnum;
|
|
6236
6100
|
}
|
|
6237
6101
|
|
|
6238
6102
|
export interface VerifyPasswordRequest {
|
|
@@ -6268,6 +6132,364 @@ export interface Workflow {
|
|
|
6268
6132
|
icon: string;
|
|
6269
6133
|
}
|
|
6270
6134
|
|
|
6135
|
+
export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
|
|
6136
|
+
|
|
6137
|
+
export type AuditLogEntryChangeTypeEnum =
|
|
6138
|
+
| "Created"
|
|
6139
|
+
| "Modified"
|
|
6140
|
+
| "SoftDeleted"
|
|
6141
|
+
| "HardDeleted"
|
|
6142
|
+
| "Restored";
|
|
6143
|
+
|
|
6144
|
+
export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
|
|
6145
|
+
|
|
6146
|
+
export type CreateAccountRequestEnvironmentEnum =
|
|
6147
|
+
| "Development"
|
|
6148
|
+
| "Staging"
|
|
6149
|
+
| "UAT"
|
|
6150
|
+
| "Production";
|
|
6151
|
+
|
|
6152
|
+
export type CreateGroupMemberRequestLoanRoleEnum =
|
|
6153
|
+
| "Borrower"
|
|
6154
|
+
| "CoBorrower"
|
|
6155
|
+
| "NonBorrower"
|
|
6156
|
+
| "LoanOfficer"
|
|
6157
|
+
| "LoanProcessor"
|
|
6158
|
+
| "LoanOfficerAssistant"
|
|
6159
|
+
| "SupportingLoanOfficer"
|
|
6160
|
+
| "BuyerAgent"
|
|
6161
|
+
| "SellerAgent"
|
|
6162
|
+
| "TitleInsuranceAgent"
|
|
6163
|
+
| "EscrowAgent"
|
|
6164
|
+
| "SettlementAgent";
|
|
6165
|
+
|
|
6166
|
+
/** @deprecated */
|
|
6167
|
+
export type CreateInviteRequestRelationshipEnum =
|
|
6168
|
+
| "NotApplicable"
|
|
6169
|
+
| "Spouse"
|
|
6170
|
+
| "NonSpouse";
|
|
6171
|
+
|
|
6172
|
+
export type CreateLoanImportRequestImportModeEnum =
|
|
6173
|
+
| "All"
|
|
6174
|
+
| "NewOnly"
|
|
6175
|
+
| "UpdateOnly";
|
|
6176
|
+
|
|
6177
|
+
export type CreateUserDraftLoanRoleEnum =
|
|
6178
|
+
| "Borrower"
|
|
6179
|
+
| "CoBorrower"
|
|
6180
|
+
| "NonBorrower"
|
|
6181
|
+
| "LoanOfficer"
|
|
6182
|
+
| "LoanProcessor"
|
|
6183
|
+
| "LoanOfficerAssistant"
|
|
6184
|
+
| "SupportingLoanOfficer"
|
|
6185
|
+
| "BuyerAgent"
|
|
6186
|
+
| "SellerAgent"
|
|
6187
|
+
| "TitleInsuranceAgent"
|
|
6188
|
+
| "EscrowAgent"
|
|
6189
|
+
| "SettlementAgent";
|
|
6190
|
+
|
|
6191
|
+
export type DraftTypeEnum = "NewLoan" | "EditLoan";
|
|
6192
|
+
|
|
6193
|
+
export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
|
|
6194
|
+
|
|
6195
|
+
export type EncompassCredentialsDetailSigningMethodEnum =
|
|
6196
|
+
| "ConsumerConnect"
|
|
6197
|
+
| "POSF";
|
|
6198
|
+
|
|
6199
|
+
export type EncompassCredentialsRequestSigningMethodEnum =
|
|
6200
|
+
| "ConsumerConnect"
|
|
6201
|
+
| "POSF";
|
|
6202
|
+
|
|
6203
|
+
export type EncompassRequestLogOperationTypeEnum =
|
|
6204
|
+
| "FieldUpdate"
|
|
6205
|
+
| "ConsentUpdate"
|
|
6206
|
+
| "DocumentSync"
|
|
6207
|
+
| "MilestoneUpdate"
|
|
6208
|
+
| "DocumentAttachment"
|
|
6209
|
+
| "General"
|
|
6210
|
+
| "FieldReader";
|
|
6211
|
+
|
|
6212
|
+
export type EncompassRequestLogOutcomeEnum =
|
|
6213
|
+
| "Success"
|
|
6214
|
+
| "Failure"
|
|
6215
|
+
| "PartialSuccess";
|
|
6216
|
+
|
|
6217
|
+
export type FusionReportFilterFilterTypeEnum =
|
|
6218
|
+
| "DateGreaterThanOrEqualTo"
|
|
6219
|
+
| "DateGreaterThan"
|
|
6220
|
+
| "DateLessThan"
|
|
6221
|
+
| "DateLessThanOrEqualTo"
|
|
6222
|
+
| "DateEquals"
|
|
6223
|
+
| "DateDoesntEqual"
|
|
6224
|
+
| "DateNonEmpty"
|
|
6225
|
+
| "DateEmpty"
|
|
6226
|
+
| "StringContains"
|
|
6227
|
+
| "StringEquals"
|
|
6228
|
+
| "StringNotEmpty"
|
|
6229
|
+
| "StringNotEquals"
|
|
6230
|
+
| "StringNotContains";
|
|
6231
|
+
|
|
6232
|
+
export type IpAddressAddressFamilyEnum =
|
|
6233
|
+
| "Unspecified"
|
|
6234
|
+
| "Unix"
|
|
6235
|
+
| "InterNetwork"
|
|
6236
|
+
| "ImpLink"
|
|
6237
|
+
| "Pup"
|
|
6238
|
+
| "Chaos"
|
|
6239
|
+
| "NS"
|
|
6240
|
+
| "Ipx"
|
|
6241
|
+
| "Iso"
|
|
6242
|
+
| "Osi"
|
|
6243
|
+
| "Ecma"
|
|
6244
|
+
| "DataKit"
|
|
6245
|
+
| "Ccitt"
|
|
6246
|
+
| "Sna"
|
|
6247
|
+
| "DecNet"
|
|
6248
|
+
| "DataLink"
|
|
6249
|
+
| "Lat"
|
|
6250
|
+
| "HyperChannel"
|
|
6251
|
+
| "AppleTalk"
|
|
6252
|
+
| "NetBios"
|
|
6253
|
+
| "VoiceView"
|
|
6254
|
+
| "FireFox"
|
|
6255
|
+
| "Banyan"
|
|
6256
|
+
| "Atm"
|
|
6257
|
+
| "InterNetworkV6"
|
|
6258
|
+
| "Cluster"
|
|
6259
|
+
| "Ieee12844"
|
|
6260
|
+
| "Irda"
|
|
6261
|
+
| "NetworkDesigners"
|
|
6262
|
+
| "Max"
|
|
6263
|
+
| "Packet"
|
|
6264
|
+
| "ControllerAreaNetwork"
|
|
6265
|
+
| "Unknown";
|
|
6266
|
+
|
|
6267
|
+
export type LoanSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
6268
|
+
|
|
6269
|
+
export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
|
|
6270
|
+
|
|
6271
|
+
export type LoanContactRoleEnum =
|
|
6272
|
+
| "Borrower"
|
|
6273
|
+
| "CoBorrower"
|
|
6274
|
+
| "NonBorrower"
|
|
6275
|
+
| "LoanOfficer"
|
|
6276
|
+
| "LoanProcessor"
|
|
6277
|
+
| "LoanOfficerAssistant"
|
|
6278
|
+
| "SupportingLoanOfficer"
|
|
6279
|
+
| "BuyerAgent"
|
|
6280
|
+
| "SellerAgent"
|
|
6281
|
+
| "TitleInsuranceAgent"
|
|
6282
|
+
| "EscrowAgent"
|
|
6283
|
+
| "SettlementAgent";
|
|
6284
|
+
|
|
6285
|
+
export type LoanImportStatusEnum =
|
|
6286
|
+
| "WaitingProcess"
|
|
6287
|
+
| "InProgress"
|
|
6288
|
+
| "Completed"
|
|
6289
|
+
| "Failed"
|
|
6290
|
+
| "Cancelled";
|
|
6291
|
+
|
|
6292
|
+
export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
6293
|
+
|
|
6294
|
+
export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
6295
|
+
|
|
6296
|
+
export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
6297
|
+
|
|
6298
|
+
export type LoanLogTypeEnum =
|
|
6299
|
+
| "Loan"
|
|
6300
|
+
| "Queue"
|
|
6301
|
+
| "POSFlagChanged"
|
|
6302
|
+
| "Verification"
|
|
6303
|
+
| "DocumentUploaded"
|
|
6304
|
+
| "LoanCreated"
|
|
6305
|
+
| "WorkflowSubmitted"
|
|
6306
|
+
| "UserInvitationSent"
|
|
6307
|
+
| "CoBorrowerAdded"
|
|
6308
|
+
| "TaskCompleted"
|
|
6309
|
+
| "LoanStatusChanged"
|
|
6310
|
+
| "Consent"
|
|
6311
|
+
| "SensitiveDataPurge"
|
|
6312
|
+
| "ClosingDateUpdated"
|
|
6313
|
+
| "ConsumerConnectAssociation"
|
|
6314
|
+
| "TaskReminderSent";
|
|
6315
|
+
|
|
6316
|
+
export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
6317
|
+
|
|
6318
|
+
export type LoanLogDetailTypeEnum =
|
|
6319
|
+
| "Loan"
|
|
6320
|
+
| "Queue"
|
|
6321
|
+
| "POSFlagChanged"
|
|
6322
|
+
| "Verification"
|
|
6323
|
+
| "DocumentUploaded"
|
|
6324
|
+
| "LoanCreated"
|
|
6325
|
+
| "WorkflowSubmitted"
|
|
6326
|
+
| "UserInvitationSent"
|
|
6327
|
+
| "CoBorrowerAdded"
|
|
6328
|
+
| "TaskCompleted"
|
|
6329
|
+
| "LoanStatusChanged"
|
|
6330
|
+
| "Consent"
|
|
6331
|
+
| "SensitiveDataPurge"
|
|
6332
|
+
| "ClosingDateUpdated"
|
|
6333
|
+
| "ConsumerConnectAssociation"
|
|
6334
|
+
| "TaskReminderSent";
|
|
6335
|
+
|
|
6336
|
+
export type LoanTaskStatusSummaryStatusEnum =
|
|
6337
|
+
| "Outstanding"
|
|
6338
|
+
| "Pending"
|
|
6339
|
+
| "Completed"
|
|
6340
|
+
| "Rejected"
|
|
6341
|
+
| "Unknown";
|
|
6342
|
+
|
|
6343
|
+
export type LoanUserLoanRoleEnum =
|
|
6344
|
+
| "Borrower"
|
|
6345
|
+
| "CoBorrower"
|
|
6346
|
+
| "NonBorrower"
|
|
6347
|
+
| "LoanOfficer"
|
|
6348
|
+
| "LoanProcessor"
|
|
6349
|
+
| "LoanOfficerAssistant"
|
|
6350
|
+
| "SupportingLoanOfficer"
|
|
6351
|
+
| "BuyerAgent"
|
|
6352
|
+
| "SellerAgent"
|
|
6353
|
+
| "TitleInsuranceAgent"
|
|
6354
|
+
| "EscrowAgent"
|
|
6355
|
+
| "SettlementAgent";
|
|
6356
|
+
|
|
6357
|
+
export type LosOperationTrackingStatusEnum =
|
|
6358
|
+
| "Pending"
|
|
6359
|
+
| "Success"
|
|
6360
|
+
| "Failed"
|
|
6361
|
+
| "ConfigurationError"
|
|
6362
|
+
| "PermanentFailure"
|
|
6363
|
+
| "Locked";
|
|
6364
|
+
|
|
6365
|
+
export type SamlMetadataRequestSsoIntegrationEnum =
|
|
6366
|
+
| "ConsumerConnect"
|
|
6367
|
+
| "TheBigPOS"
|
|
6368
|
+
| "POSF";
|
|
6369
|
+
|
|
6370
|
+
export type SiteConfigurationTypeEnum =
|
|
6371
|
+
| "None"
|
|
6372
|
+
| "Account"
|
|
6373
|
+
| "Corporate"
|
|
6374
|
+
| "Branch"
|
|
6375
|
+
| "LoanOfficer"
|
|
6376
|
+
| "Partner";
|
|
6377
|
+
|
|
6378
|
+
export type SiteConfigurationByUrlTypeEnum =
|
|
6379
|
+
| "None"
|
|
6380
|
+
| "Account"
|
|
6381
|
+
| "Corporate"
|
|
6382
|
+
| "Branch"
|
|
6383
|
+
| "LoanOfficer"
|
|
6384
|
+
| "Partner";
|
|
6385
|
+
|
|
6386
|
+
export type SiteConfigurationReducedTypeEnum =
|
|
6387
|
+
| "None"
|
|
6388
|
+
| "Account"
|
|
6389
|
+
| "Corporate"
|
|
6390
|
+
| "Branch"
|
|
6391
|
+
| "LoanOfficer"
|
|
6392
|
+
| "Partner";
|
|
6393
|
+
|
|
6394
|
+
export type SiteConfigurationRequestTypeEnum =
|
|
6395
|
+
| "None"
|
|
6396
|
+
| "Account"
|
|
6397
|
+
| "Corporate"
|
|
6398
|
+
| "Branch"
|
|
6399
|
+
| "LoanOfficer"
|
|
6400
|
+
| "Partner";
|
|
6401
|
+
|
|
6402
|
+
export type SiteConfigurationSummaryTypeEnum =
|
|
6403
|
+
| "None"
|
|
6404
|
+
| "Account"
|
|
6405
|
+
| "Corporate"
|
|
6406
|
+
| "Branch"
|
|
6407
|
+
| "LoanOfficer"
|
|
6408
|
+
| "Partner";
|
|
6409
|
+
|
|
6410
|
+
export type UserDraftRoleEnum =
|
|
6411
|
+
| "Borrower"
|
|
6412
|
+
| "CoBorrower"
|
|
6413
|
+
| "NonBorrower"
|
|
6414
|
+
| "LoanOfficer"
|
|
6415
|
+
| "LoanProcessor"
|
|
6416
|
+
| "LoanOfficerAssistant"
|
|
6417
|
+
| "SupportingLoanOfficer"
|
|
6418
|
+
| "BuyerAgent"
|
|
6419
|
+
| "SellerAgent"
|
|
6420
|
+
| "TitleInsuranceAgent"
|
|
6421
|
+
| "EscrowAgent"
|
|
6422
|
+
| "SettlementAgent";
|
|
6423
|
+
|
|
6424
|
+
export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
|
|
6425
|
+
|
|
6426
|
+
export type UserLoanRoleEnum =
|
|
6427
|
+
| "Borrower"
|
|
6428
|
+
| "CoBorrower"
|
|
6429
|
+
| "NonBorrower"
|
|
6430
|
+
| "LoanOfficer"
|
|
6431
|
+
| "LoanProcessor"
|
|
6432
|
+
| "LoanOfficerAssistant"
|
|
6433
|
+
| "SupportingLoanOfficer"
|
|
6434
|
+
| "BuyerAgent"
|
|
6435
|
+
| "SellerAgent"
|
|
6436
|
+
| "TitleInsuranceAgent"
|
|
6437
|
+
| "EscrowAgent"
|
|
6438
|
+
| "SettlementAgent";
|
|
6439
|
+
|
|
6440
|
+
export type UserLoanConsentTypeEnum =
|
|
6441
|
+
| "Econsent"
|
|
6442
|
+
| "CreditAuthorization"
|
|
6443
|
+
| "Tcpa";
|
|
6444
|
+
|
|
6445
|
+
export type UserLoanConsentLosSyncStatusEnum =
|
|
6446
|
+
| "NotStarted"
|
|
6447
|
+
| "Failed"
|
|
6448
|
+
| "Success";
|
|
6449
|
+
|
|
6450
|
+
export type UserSummaryRoleEnum =
|
|
6451
|
+
| "Borrower"
|
|
6452
|
+
| "LoanOfficer"
|
|
6453
|
+
| "Admin"
|
|
6454
|
+
| "SuperAdmin"
|
|
6455
|
+
| "Realtor"
|
|
6456
|
+
| "SettlementAgent"
|
|
6457
|
+
| "LoanProcessor"
|
|
6458
|
+
| "LoanOfficerAssistant"
|
|
6459
|
+
| "SystemAdmin";
|
|
6460
|
+
|
|
6461
|
+
/** @default "Realtor" */
|
|
6462
|
+
export type GetPartnersParamsRoleEnum =
|
|
6463
|
+
| "Borrower"
|
|
6464
|
+
| "LoanOfficer"
|
|
6465
|
+
| "Admin"
|
|
6466
|
+
| "SuperAdmin"
|
|
6467
|
+
| "Realtor"
|
|
6468
|
+
| "SettlementAgent"
|
|
6469
|
+
| "LoanProcessor"
|
|
6470
|
+
| "LoanOfficerAssistant"
|
|
6471
|
+
| "SystemAdmin";
|
|
6472
|
+
|
|
6473
|
+
export type GetSamlMetadataParamsSSoIntegrationEnum =
|
|
6474
|
+
| "ConsumerConnect"
|
|
6475
|
+
| "TheBigPOS"
|
|
6476
|
+
| "POSF";
|
|
6477
|
+
|
|
6478
|
+
export type GetSamlMetadataParamsEnum =
|
|
6479
|
+
| "ConsumerConnect"
|
|
6480
|
+
| "TheBigPOS"
|
|
6481
|
+
| "POSF";
|
|
6482
|
+
|
|
6483
|
+
export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum =
|
|
6484
|
+
| "ConsumerConnect"
|
|
6485
|
+
| "TheBigPOS"
|
|
6486
|
+
| "POSF";
|
|
6487
|
+
|
|
6488
|
+
export type CreateOrReplaceSamlMetadataParamsEnum =
|
|
6489
|
+
| "ConsumerConnect"
|
|
6490
|
+
| "TheBigPOS"
|
|
6491
|
+
| "POSF";
|
|
6492
|
+
|
|
6271
6493
|
import type {
|
|
6272
6494
|
AxiosInstance,
|
|
6273
6495
|
AxiosRequestConfig,
|
|
@@ -6310,7 +6532,6 @@ export interface ApiConfig<SecurityDataType = unknown>
|
|
|
6310
6532
|
}
|
|
6311
6533
|
|
|
6312
6534
|
export enum ContentType {
|
|
6313
|
-
JsonPatch = "application/json-patch+json",
|
|
6314
6535
|
Json = "application/json",
|
|
6315
6536
|
JsonApi = "application/vnd.api+json",
|
|
6316
6537
|
FormData = "multipart/form-data",
|
|
@@ -6446,7 +6667,7 @@ export class HttpClient<SecurityDataType = unknown> {
|
|
|
6446
6667
|
|
|
6447
6668
|
/**
|
|
6448
6669
|
* @title The Big POS API
|
|
6449
|
-
* @version v2.38.
|
|
6670
|
+
* @version v2.38.2
|
|
6450
6671
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
6451
6672
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
6452
6673
|
*/
|
|
@@ -8837,7 +9058,7 @@ export class Api<
|
|
|
8837
9058
|
method: "PATCH",
|
|
8838
9059
|
body: data,
|
|
8839
9060
|
secure: true,
|
|
8840
|
-
type: ContentType.
|
|
9061
|
+
type: ContentType.Json,
|
|
8841
9062
|
format: "json",
|
|
8842
9063
|
...params,
|
|
8843
9064
|
}),
|
|
@@ -8858,7 +9079,7 @@ export class Api<
|
|
|
8858
9079
|
method: "POST",
|
|
8859
9080
|
body: data,
|
|
8860
9081
|
secure: true,
|
|
8861
|
-
type: ContentType.
|
|
9082
|
+
type: ContentType.Json,
|
|
8862
9083
|
format: "json",
|
|
8863
9084
|
...params,
|
|
8864
9085
|
}),
|
|
@@ -8947,7 +9168,7 @@ export class Api<
|
|
|
8947
9168
|
method: "PATCH",
|
|
8948
9169
|
body: data,
|
|
8949
9170
|
secure: true,
|
|
8950
|
-
type: ContentType.
|
|
9171
|
+
type: ContentType.Json,
|
|
8951
9172
|
format: "json",
|
|
8952
9173
|
...params,
|
|
8953
9174
|
}),
|
|
@@ -8974,7 +9195,7 @@ export class Api<
|
|
|
8974
9195
|
method: "PATCH",
|
|
8975
9196
|
body: data,
|
|
8976
9197
|
secure: true,
|
|
8977
|
-
type: ContentType.
|
|
9198
|
+
type: ContentType.Json,
|
|
8978
9199
|
format: "json",
|
|
8979
9200
|
...params,
|
|
8980
9201
|
}),
|
|
@@ -9131,7 +9352,7 @@ export class Api<
|
|
|
9131
9352
|
method: "POST",
|
|
9132
9353
|
body: data,
|
|
9133
9354
|
secure: true,
|
|
9134
|
-
type: ContentType.
|
|
9355
|
+
type: ContentType.Json,
|
|
9135
9356
|
format: "json",
|
|
9136
9357
|
...params,
|
|
9137
9358
|
}),
|
|
@@ -9216,7 +9437,7 @@ export class Api<
|
|
|
9216
9437
|
method: "PATCH",
|
|
9217
9438
|
body: data,
|
|
9218
9439
|
secure: true,
|
|
9219
|
-
type: ContentType.
|
|
9440
|
+
type: ContentType.Json,
|
|
9220
9441
|
format: "json",
|
|
9221
9442
|
...params,
|
|
9222
9443
|
}),
|
|
@@ -9296,7 +9517,7 @@ export class Api<
|
|
|
9296
9517
|
method: "PATCH",
|
|
9297
9518
|
body: data,
|
|
9298
9519
|
secure: true,
|
|
9299
|
-
type: ContentType.
|
|
9520
|
+
type: ContentType.Json,
|
|
9300
9521
|
format: "json",
|
|
9301
9522
|
...params,
|
|
9302
9523
|
}),
|
|
@@ -9370,7 +9591,7 @@ export class Api<
|
|
|
9370
9591
|
method: "POST",
|
|
9371
9592
|
body: data,
|
|
9372
9593
|
secure: true,
|
|
9373
|
-
type: ContentType.
|
|
9594
|
+
type: ContentType.Json,
|
|
9374
9595
|
format: "json",
|
|
9375
9596
|
...params,
|
|
9376
9597
|
}),
|
|
@@ -9839,7 +10060,7 @@ export class Api<
|
|
|
9839
10060
|
* @summary Download By ID
|
|
9840
10061
|
* @request GET:/api/loans/{loanId}/documents/{documentId}/download
|
|
9841
10062
|
* @secure
|
|
9842
|
-
* @response `200` `
|
|
10063
|
+
* @response `200` `Blob` Success
|
|
9843
10064
|
* @response `404` `ProblemDetails` Not Found
|
|
9844
10065
|
*/
|
|
9845
10066
|
downloadLoanDocument: (
|
|
@@ -9847,7 +10068,7 @@ export class Api<
|
|
|
9847
10068
|
documentId: string,
|
|
9848
10069
|
params: RequestParams = {},
|
|
9849
10070
|
) =>
|
|
9850
|
-
this.request<
|
|
10071
|
+
this.request<Blob, ProblemDetails>({
|
|
9851
10072
|
path: `/api/loans/${loanId}/documents/${documentId}/download`,
|
|
9852
10073
|
method: "GET",
|
|
9853
10074
|
secure: true,
|
|
@@ -10890,7 +11111,7 @@ export class Api<
|
|
|
10890
11111
|
query: query,
|
|
10891
11112
|
body: data,
|
|
10892
11113
|
secure: true,
|
|
10893
|
-
type: ContentType.
|
|
11114
|
+
type: ContentType.Json,
|
|
10894
11115
|
format: "json",
|
|
10895
11116
|
...params,
|
|
10896
11117
|
}),
|
|
@@ -10942,7 +11163,7 @@ export class Api<
|
|
|
10942
11163
|
method: "POST",
|
|
10943
11164
|
body: data,
|
|
10944
11165
|
secure: true,
|
|
10945
|
-
type: ContentType.
|
|
11166
|
+
type: ContentType.Json,
|
|
10946
11167
|
format: "json",
|
|
10947
11168
|
...params,
|
|
10948
11169
|
}),
|
|
@@ -11078,6 +11299,32 @@ export class Api<
|
|
|
11078
11299
|
...params,
|
|
11079
11300
|
}),
|
|
11080
11301
|
|
|
11302
|
+
/**
|
|
11303
|
+
* No description
|
|
11304
|
+
*
|
|
11305
|
+
* @tags LoanTaskNotifications
|
|
11306
|
+
* @name SendLoanTaskReminder
|
|
11307
|
+
* @summary Send Loan Task Reminder
|
|
11308
|
+
* @request POST:/api/loans/{loanID}/tasks/reminders
|
|
11309
|
+
* @secure
|
|
11310
|
+
* @response `204` `void` No Content
|
|
11311
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
11312
|
+
* @response `404` `ProblemDetails` Not Found
|
|
11313
|
+
*/
|
|
11314
|
+
sendLoanTaskReminder: (
|
|
11315
|
+
loanId: string,
|
|
11316
|
+
data: SendLoanTaskReminderRequest,
|
|
11317
|
+
params: RequestParams = {},
|
|
11318
|
+
) =>
|
|
11319
|
+
this.request<void, ProblemDetails>({
|
|
11320
|
+
path: `/api/loans/${loanId}/tasks/reminders`,
|
|
11321
|
+
method: "POST",
|
|
11322
|
+
body: data,
|
|
11323
|
+
secure: true,
|
|
11324
|
+
type: ContentType.Json,
|
|
11325
|
+
...params,
|
|
11326
|
+
}),
|
|
11327
|
+
|
|
11081
11328
|
/**
|
|
11082
11329
|
* @description Search tasks across all loans
|
|
11083
11330
|
*
|
|
@@ -11111,6 +11358,31 @@ export class Api<
|
|
|
11111
11358
|
...params,
|
|
11112
11359
|
}),
|
|
11113
11360
|
|
|
11361
|
+
/**
|
|
11362
|
+
* @description Returns task counts grouped by status for loans accessible to the current user based on their role
|
|
11363
|
+
*
|
|
11364
|
+
* @tags LoanTasks
|
|
11365
|
+
* @name SearchLoanTasksSummary
|
|
11366
|
+
* @summary Search Summary
|
|
11367
|
+
* @request POST:/api/loans/tasks/search/summary
|
|
11368
|
+
* @secure
|
|
11369
|
+
* @response `200` `(LoanTaskStatusSummary)[]` Success
|
|
11370
|
+
* @response `422` `UnprocessableEntity` Client Error
|
|
11371
|
+
*/
|
|
11372
|
+
searchLoanTasksSummary: (
|
|
11373
|
+
data: LoanTaskSearchRequest,
|
|
11374
|
+
params: RequestParams = {},
|
|
11375
|
+
) =>
|
|
11376
|
+
this.request<LoanTaskStatusSummary[], UnprocessableEntity>({
|
|
11377
|
+
path: `/api/loans/tasks/search/summary`,
|
|
11378
|
+
method: "POST",
|
|
11379
|
+
body: data,
|
|
11380
|
+
secure: true,
|
|
11381
|
+
type: ContentType.Json,
|
|
11382
|
+
format: "json",
|
|
11383
|
+
...params,
|
|
11384
|
+
}),
|
|
11385
|
+
|
|
11114
11386
|
/**
|
|
11115
11387
|
* No description
|
|
11116
11388
|
*
|
|
@@ -11308,13 +11580,14 @@ export class Api<
|
|
|
11308
11580
|
* @request GET:/api/loans/{loanId}/users/{userId}/consents
|
|
11309
11581
|
* @secure
|
|
11310
11582
|
* @response `200` `(UserLoanConsent)[]` Success
|
|
11583
|
+
* @response `403` `ProblemDetails` Forbidden
|
|
11311
11584
|
*/
|
|
11312
11585
|
getLoanUserConsents: (
|
|
11313
11586
|
loanId: string,
|
|
11314
11587
|
userId: string,
|
|
11315
11588
|
params: RequestParams = {},
|
|
11316
11589
|
) =>
|
|
11317
|
-
this.request<UserLoanConsent[],
|
|
11590
|
+
this.request<UserLoanConsent[], ProblemDetails>({
|
|
11318
11591
|
path: `/api/loans/${loanId}/users/${userId}/consents`,
|
|
11319
11592
|
method: "GET",
|
|
11320
11593
|
secure: true,
|
|
@@ -11412,6 +11685,39 @@ export class Api<
|
|
|
11412
11685
|
...params,
|
|
11413
11686
|
}),
|
|
11414
11687
|
|
|
11688
|
+
/**
|
|
11689
|
+
* No description
|
|
11690
|
+
*
|
|
11691
|
+
* @tags LosOperationTracking
|
|
11692
|
+
* @name SearchLosOperationTracking
|
|
11693
|
+
* @summary Search LOS operation tracking
|
|
11694
|
+
* @request POST:/api/los-operation-tracking/search
|
|
11695
|
+
* @secure
|
|
11696
|
+
* @response `200` `LosOperationTrackingPaginated` Success
|
|
11697
|
+
*/
|
|
11698
|
+
searchLosOperationTracking: (
|
|
11699
|
+
data: LosOperationTrackingSearchCriteria,
|
|
11700
|
+
query?: {
|
|
11701
|
+
/** @format int32 */
|
|
11702
|
+
pageSize?: number;
|
|
11703
|
+
/** @format int32 */
|
|
11704
|
+
pageNumber?: number;
|
|
11705
|
+
sortBy?: string;
|
|
11706
|
+
sortDirection?: string;
|
|
11707
|
+
},
|
|
11708
|
+
params: RequestParams = {},
|
|
11709
|
+
) =>
|
|
11710
|
+
this.request<LosOperationTrackingPaginated, any>({
|
|
11711
|
+
path: `/api/los-operation-tracking/search`,
|
|
11712
|
+
method: "POST",
|
|
11713
|
+
query: query,
|
|
11714
|
+
body: data,
|
|
11715
|
+
secure: true,
|
|
11716
|
+
type: ContentType.Json,
|
|
11717
|
+
format: "json",
|
|
11718
|
+
...params,
|
|
11719
|
+
}),
|
|
11720
|
+
|
|
11415
11721
|
/**
|
|
11416
11722
|
* No description
|
|
11417
11723
|
*
|
|
@@ -11968,16 +12274,7 @@ export class Api<
|
|
|
11968
12274
|
query?: {
|
|
11969
12275
|
showAll?: boolean;
|
|
11970
12276
|
/** @default "Realtor" */
|
|
11971
|
-
role?:
|
|
11972
|
-
| "Borrower"
|
|
11973
|
-
| "LoanOfficer"
|
|
11974
|
-
| "Admin"
|
|
11975
|
-
| "SuperAdmin"
|
|
11976
|
-
| "Realtor"
|
|
11977
|
-
| "SettlementAgent"
|
|
11978
|
-
| "LoanProcessor"
|
|
11979
|
-
| "LoanOfficerAssistant"
|
|
11980
|
-
| "SystemAdmin";
|
|
12277
|
+
role?: GetPartnersParamsRoleEnum;
|
|
11981
12278
|
/** @format int32 */
|
|
11982
12279
|
pageSize?: number;
|
|
11983
12280
|
/** @format int32 */
|
|
@@ -12313,7 +12610,7 @@ export class Api<
|
|
|
12313
12610
|
* @response `404` `ProblemDetails` Not Found
|
|
12314
12611
|
*/
|
|
12315
12612
|
getSamlMetadata: (
|
|
12316
|
-
sSoIntegration:
|
|
12613
|
+
sSoIntegration: GetSamlMetadataParamsEnum,
|
|
12317
12614
|
ssoIntegration: string,
|
|
12318
12615
|
params: RequestParams = {},
|
|
12319
12616
|
) =>
|
|
@@ -12335,7 +12632,7 @@ export class Api<
|
|
|
12335
12632
|
* @response `200` `File` Success
|
|
12336
12633
|
*/
|
|
12337
12634
|
createOrReplaceSamlMetadata: (
|
|
12338
|
-
sSoIntegration:
|
|
12635
|
+
sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum,
|
|
12339
12636
|
ssoIntegration: string,
|
|
12340
12637
|
params: RequestParams = {},
|
|
12341
12638
|
) =>
|