@matech/thebigpos-sdk 2.38.2 → 2.38.3-rc0
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 +464 -375
- package/dist/index.js +37 -13
- package/dist/index.js.map +1 -1
- package/docs/sdk_generation.md +149 -149
- package/package.json +43 -43
- package/scripts/apply-json-patch-content-type.js +56 -56
- package/src/index.ts +505 -267
- package/tsconfig.json +27 -27
package/src/index.ts
CHANGED
|
@@ -42,6 +42,13 @@ 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
|
+
|
|
45
52
|
export type LogLevel = "None" | "Info" | "Warning" | "Error";
|
|
46
53
|
|
|
47
54
|
export type LoanType = "Fha" | "Conventional" | "UsdaRd" | "Va" | "Other";
|
|
@@ -196,10 +203,11 @@ export type LoanLogType =
|
|
|
196
203
|
| "CoBorrowerAdded"
|
|
197
204
|
| "TaskCompleted"
|
|
198
205
|
| "LoanStatusChanged"
|
|
199
|
-
| "
|
|
206
|
+
| "Consent"
|
|
200
207
|
| "SensitiveDataPurge"
|
|
201
208
|
| "ClosingDateUpdated"
|
|
202
|
-
| "ConsumerConnectAssociation"
|
|
209
|
+
| "ConsumerConnectAssociation"
|
|
210
|
+
| "TaskReminderSent";
|
|
203
211
|
|
|
204
212
|
export type LoanLienPosition = "First" | "Subordinate";
|
|
205
213
|
|
|
@@ -331,7 +339,7 @@ export type EncompassLogOutcome = "Success" | "Failure" | "PartialSuccess";
|
|
|
331
339
|
|
|
332
340
|
export type EncompassLogOperationType =
|
|
333
341
|
| "FieldUpdate"
|
|
334
|
-
| "
|
|
342
|
+
| "ConsentUpdate"
|
|
335
343
|
| "DocumentSync"
|
|
336
344
|
| "MilestoneUpdate"
|
|
337
345
|
| "DocumentAttachment"
|
|
@@ -340,14 +348,6 @@ export type EncompassLogOperationType =
|
|
|
340
348
|
|
|
341
349
|
export type DraftType = "NewLoan" | "EditLoan";
|
|
342
350
|
|
|
343
|
-
export type ConsumerConnectAssociationStatus =
|
|
344
|
-
| "Legacy"
|
|
345
|
-
| "Pending"
|
|
346
|
-
| "Success"
|
|
347
|
-
| "Failed"
|
|
348
|
-
| "ConfigurationError"
|
|
349
|
-
| "PermanentFailure";
|
|
350
|
-
|
|
351
351
|
export type ConsentType = "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
352
352
|
|
|
353
353
|
export type ConsentLosSyncStatus = "NotStarted" | "Failed" | "Success";
|
|
@@ -456,7 +456,7 @@ export interface AccountBilling {
|
|
|
456
456
|
}
|
|
457
457
|
|
|
458
458
|
export interface AccountBillingRequest {
|
|
459
|
-
billingType:
|
|
459
|
+
billingType: AccountBillingRequestBillingTypeEnum;
|
|
460
460
|
/**
|
|
461
461
|
* @format double
|
|
462
462
|
* @min 0
|
|
@@ -794,12 +794,7 @@ export interface AuditLogEntry {
|
|
|
794
794
|
/** @format uuid */
|
|
795
795
|
id: string;
|
|
796
796
|
entityType: string;
|
|
797
|
-
changeType:
|
|
798
|
-
| "Created"
|
|
799
|
-
| "Modified"
|
|
800
|
-
| "SoftDeleted"
|
|
801
|
-
| "HardDeleted"
|
|
802
|
-
| "Restored";
|
|
797
|
+
changeType: AuditLogEntryChangeTypeEnum;
|
|
803
798
|
/** @format uuid */
|
|
804
799
|
entityId: string;
|
|
805
800
|
performedBy?: AuditLogUser | null;
|
|
@@ -1037,7 +1032,7 @@ export interface ConsumerConnectRetry {
|
|
|
1037
1032
|
/** @format uuid */
|
|
1038
1033
|
userLoanId: string;
|
|
1039
1034
|
email: string;
|
|
1040
|
-
status?:
|
|
1035
|
+
status?: LosOperationStatus | null;
|
|
1041
1036
|
success: boolean;
|
|
1042
1037
|
}
|
|
1043
1038
|
|
|
@@ -1047,20 +1042,8 @@ export interface ConsumerConnectStatus {
|
|
|
1047
1042
|
/** @format uuid */
|
|
1048
1043
|
userId: string;
|
|
1049
1044
|
email: string;
|
|
1050
|
-
role:
|
|
1051
|
-
|
|
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;
|
|
1045
|
+
role: ConsumerConnectStatusRoleEnum;
|
|
1046
|
+
status?: LosOperationStatus | null;
|
|
1064
1047
|
/** @format int32 */
|
|
1065
1048
|
attemptCount: number;
|
|
1066
1049
|
/** @format date-time */
|
|
@@ -1123,7 +1106,7 @@ export interface CorporateSearchCriteria {
|
|
|
1123
1106
|
}
|
|
1124
1107
|
|
|
1125
1108
|
export interface CreateAccessScopeRequest {
|
|
1126
|
-
scopeType:
|
|
1109
|
+
scopeType: CreateAccessScopeRequestScopeTypeEnum;
|
|
1127
1110
|
/** @format uuid */
|
|
1128
1111
|
userId?: string | null;
|
|
1129
1112
|
/** @format uuid */
|
|
@@ -1147,7 +1130,7 @@ export interface CreateAccountRequest {
|
|
|
1147
1130
|
*/
|
|
1148
1131
|
nlmsid: number;
|
|
1149
1132
|
settings: AccountSettingsRequest;
|
|
1150
|
-
environment:
|
|
1133
|
+
environment: CreateAccountRequestEnvironmentEnum;
|
|
1151
1134
|
losIntegration: LOSIntegration;
|
|
1152
1135
|
billingSettings: AccountBillingRequest;
|
|
1153
1136
|
}
|
|
@@ -1180,19 +1163,7 @@ export interface CreateDocumentTemplateRequest {
|
|
|
1180
1163
|
export interface CreateGroupMemberRequest {
|
|
1181
1164
|
/** @format uuid */
|
|
1182
1165
|
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";
|
|
1166
|
+
loanRole: CreateGroupMemberRequestLoanRoleEnum;
|
|
1196
1167
|
}
|
|
1197
1168
|
|
|
1198
1169
|
export interface CreateInviteRequest {
|
|
@@ -1204,7 +1175,7 @@ export interface CreateInviteRequest {
|
|
|
1204
1175
|
emailAddress: string;
|
|
1205
1176
|
phoneNumber?: string | null;
|
|
1206
1177
|
/** @deprecated */
|
|
1207
|
-
relationship:
|
|
1178
|
+
relationship: CreateInviteRequestRelationshipEnum;
|
|
1208
1179
|
loanID: string;
|
|
1209
1180
|
route?: string | null;
|
|
1210
1181
|
/** @format uuid */
|
|
@@ -1227,7 +1198,7 @@ export interface CreateLoanImportRequest {
|
|
|
1227
1198
|
* @minLength 1
|
|
1228
1199
|
*/
|
|
1229
1200
|
startDate: string;
|
|
1230
|
-
importMode:
|
|
1201
|
+
importMode: CreateLoanImportRequestImportModeEnum;
|
|
1231
1202
|
}
|
|
1232
1203
|
|
|
1233
1204
|
export interface CreateSession {
|
|
@@ -1249,19 +1220,7 @@ export interface CreateUserDeviceRequest {
|
|
|
1249
1220
|
}
|
|
1250
1221
|
|
|
1251
1222
|
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";
|
|
1223
|
+
loanRole: CreateUserDraftLoanRoleEnum;
|
|
1265
1224
|
}
|
|
1266
1225
|
|
|
1267
1226
|
export interface CreateUserGroupRequest {
|
|
@@ -1583,7 +1542,7 @@ export interface Draft {
|
|
|
1583
1542
|
siteConfiguration: SiteConfigurationReduced;
|
|
1584
1543
|
/** @format uuid */
|
|
1585
1544
|
loanID?: string | null;
|
|
1586
|
-
type:
|
|
1545
|
+
type: DraftTypeEnum;
|
|
1587
1546
|
isCoBorrower: boolean;
|
|
1588
1547
|
}
|
|
1589
1548
|
|
|
@@ -1602,7 +1561,7 @@ export interface DraftContent {
|
|
|
1602
1561
|
siteConfiguration: SiteConfigurationReduced;
|
|
1603
1562
|
/** @format uuid */
|
|
1604
1563
|
loanID?: string | null;
|
|
1605
|
-
type:
|
|
1564
|
+
type: DraftContentTypeEnum;
|
|
1606
1565
|
isCoBorrower: boolean;
|
|
1607
1566
|
applicationPayload: any;
|
|
1608
1567
|
}
|
|
@@ -1700,7 +1659,7 @@ export interface EncompassCredentialsDetail {
|
|
|
1700
1659
|
defaultLoanOfficerUserName?: string | null;
|
|
1701
1660
|
clearStateIfUnlicensed: boolean;
|
|
1702
1661
|
baseUrl?: string | null;
|
|
1703
|
-
signingMethod:
|
|
1662
|
+
signingMethod: EncompassCredentialsDetailSigningMethodEnum;
|
|
1704
1663
|
subscriptionId?: string | null;
|
|
1705
1664
|
environment?: string | null;
|
|
1706
1665
|
}
|
|
@@ -1716,7 +1675,7 @@ export interface EncompassCredentialsRequest {
|
|
|
1716
1675
|
defaultLoanOfficerUserName?: string | null;
|
|
1717
1676
|
clearStateIfUnlicensed: boolean;
|
|
1718
1677
|
baseUrl?: string | null;
|
|
1719
|
-
signingMethod:
|
|
1678
|
+
signingMethod: EncompassCredentialsRequestSigningMethodEnum;
|
|
1720
1679
|
subscriptionId?: string | null;
|
|
1721
1680
|
environment?: string | null;
|
|
1722
1681
|
clientID?: string | null;
|
|
@@ -1780,15 +1739,8 @@ export interface EncompassRequestLog {
|
|
|
1780
1739
|
losId?: string | null;
|
|
1781
1740
|
/** @format uuid */
|
|
1782
1741
|
accountId: string;
|
|
1783
|
-
operationType:
|
|
1784
|
-
|
|
1785
|
-
| "EConsentUpdate"
|
|
1786
|
-
| "DocumentSync"
|
|
1787
|
-
| "MilestoneUpdate"
|
|
1788
|
-
| "DocumentAttachment"
|
|
1789
|
-
| "General"
|
|
1790
|
-
| "FieldReader";
|
|
1791
|
-
outcome: "Success" | "Failure" | "PartialSuccess";
|
|
1742
|
+
operationType: EncompassRequestLogOperationTypeEnum;
|
|
1743
|
+
outcome: EncompassRequestLogOutcomeEnum;
|
|
1792
1744
|
message: string;
|
|
1793
1745
|
endpoint?: string | null;
|
|
1794
1746
|
httpMethod?: string | null;
|
|
@@ -1846,7 +1798,7 @@ export interface FileSearchCriteria {
|
|
|
1846
1798
|
export interface FileWithBytes {
|
|
1847
1799
|
name: string;
|
|
1848
1800
|
/** @format byte */
|
|
1849
|
-
data:
|
|
1801
|
+
data: Blob;
|
|
1850
1802
|
fileName: string;
|
|
1851
1803
|
mimeType?: string | null;
|
|
1852
1804
|
extension?: string | null;
|
|
@@ -2025,20 +1977,7 @@ export interface FusionFieldDisplay {
|
|
|
2025
1977
|
}
|
|
2026
1978
|
|
|
2027
1979
|
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";
|
|
1980
|
+
filterType: FusionReportFilterFilterTypeEnum;
|
|
2042
1981
|
targetField: string;
|
|
2043
1982
|
targetValue: string;
|
|
2044
1983
|
}
|
|
@@ -2166,40 +2105,7 @@ export interface GuidPatchOperation {
|
|
|
2166
2105
|
}
|
|
2167
2106
|
|
|
2168
2107
|
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";
|
|
2108
|
+
addressFamily: IpAddressAddressFamilyEnum;
|
|
2203
2109
|
/** @format int64 */
|
|
2204
2110
|
scopeId: number;
|
|
2205
2111
|
isIPv6Multicast: boolean;
|
|
@@ -2466,7 +2372,7 @@ export interface Loan {
|
|
|
2466
2372
|
nonOwningBorrowers: LoanNonOwningBorrower[];
|
|
2467
2373
|
userLoans: UserLoan[];
|
|
2468
2374
|
contacts: LoanContact[];
|
|
2469
|
-
signingMethod:
|
|
2375
|
+
signingMethod: LoanSigningMethodEnum;
|
|
2470
2376
|
}
|
|
2471
2377
|
|
|
2472
2378
|
export interface LoanApplication {
|
|
@@ -2524,7 +2430,7 @@ export interface LoanBorrower {
|
|
|
2524
2430
|
citizenship?: LoanCitizenship | null;
|
|
2525
2431
|
maritalStatus?: LoanMaritalStatus | null;
|
|
2526
2432
|
languagePreference?: LoanLanguagePreference | null;
|
|
2527
|
-
applicationStatus:
|
|
2433
|
+
applicationStatus: LoanBorrowerApplicationStatusEnum;
|
|
2528
2434
|
/** @format int32 */
|
|
2529
2435
|
numberOfDependents?: number | null;
|
|
2530
2436
|
isPrimaryBorrower: boolean;
|
|
@@ -3449,19 +3355,7 @@ export interface LoanContact {
|
|
|
3449
3355
|
email?: string | null;
|
|
3450
3356
|
phone?: string | null;
|
|
3451
3357
|
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";
|
|
3358
|
+
role: LoanContactRoleEnum;
|
|
3465
3359
|
}
|
|
3466
3360
|
|
|
3467
3361
|
export interface LoanContactList {
|
|
@@ -3598,19 +3492,14 @@ export interface LoanImport {
|
|
|
3598
3492
|
/** @format int32 */
|
|
3599
3493
|
importedCount: number;
|
|
3600
3494
|
statusMessage?: string | null;
|
|
3601
|
-
status:
|
|
3602
|
-
|
|
3603
|
-
| "InProgress"
|
|
3604
|
-
| "Completed"
|
|
3605
|
-
| "Failed"
|
|
3606
|
-
| "Cancelled";
|
|
3607
|
-
importMode: "All" | "NewOnly" | "UpdateOnly";
|
|
3495
|
+
status: LoanImportStatusEnum;
|
|
3496
|
+
importMode: LoanImportImportModeEnum;
|
|
3608
3497
|
/** @format date-time */
|
|
3609
3498
|
createdAt?: string | null;
|
|
3610
3499
|
}
|
|
3611
3500
|
|
|
3612
3501
|
export interface LoanImportLog {
|
|
3613
|
-
level:
|
|
3502
|
+
level: LoanImportLogLevelEnum;
|
|
3614
3503
|
message: string;
|
|
3615
3504
|
/** @format date-time */
|
|
3616
3505
|
createdAt: string;
|
|
@@ -3671,23 +3560,8 @@ export interface LoanListPaginated {
|
|
|
3671
3560
|
export interface LoanLog {
|
|
3672
3561
|
/** @format uuid */
|
|
3673
3562
|
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";
|
|
3563
|
+
level: LoanLogLevelEnum;
|
|
3564
|
+
type: LoanLogTypeEnum;
|
|
3691
3565
|
message: string;
|
|
3692
3566
|
/** @format date-time */
|
|
3693
3567
|
createdAt: string;
|
|
@@ -3696,23 +3570,8 @@ export interface LoanLog {
|
|
|
3696
3570
|
export interface LoanLogDetail {
|
|
3697
3571
|
/** @format uuid */
|
|
3698
3572
|
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";
|
|
3573
|
+
level: LoanLogDetailLevelEnum;
|
|
3574
|
+
type: LoanLogDetailTypeEnum;
|
|
3716
3575
|
message: string;
|
|
3717
3576
|
/** @format date-time */
|
|
3718
3577
|
createdAt: string;
|
|
@@ -3999,6 +3858,12 @@ export interface LoanTaskSearchRequest {
|
|
|
3999
3858
|
loanStatus?: LoanTaskActivityFilter | null;
|
|
4000
3859
|
}
|
|
4001
3860
|
|
|
3861
|
+
export interface LoanTaskStatusSummary {
|
|
3862
|
+
status: LoanTaskStatusSummaryStatusEnum;
|
|
3863
|
+
/** @format int32 */
|
|
3864
|
+
count: number;
|
|
3865
|
+
}
|
|
3866
|
+
|
|
4002
3867
|
export interface LoanUser {
|
|
4003
3868
|
/** @format uuid */
|
|
4004
3869
|
id: string;
|
|
@@ -4007,19 +3872,7 @@ export interface LoanUser {
|
|
|
4007
3872
|
email: string;
|
|
4008
3873
|
phone?: string | null;
|
|
4009
3874
|
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";
|
|
3875
|
+
loanRole: LoanUserLoanRoleEnum;
|
|
4023
3876
|
isUser: boolean;
|
|
4024
3877
|
/** @format date-time */
|
|
4025
3878
|
createdAt: string;
|
|
@@ -4215,6 +4068,8 @@ export interface NotificationTemplate {
|
|
|
4215
4068
|
isDefault: boolean;
|
|
4216
4069
|
status: string;
|
|
4217
4070
|
useDefaultHeaderAndFooter: boolean;
|
|
4071
|
+
multipleCustomTemplates: boolean;
|
|
4072
|
+
allowedRoles?: string[] | null;
|
|
4218
4073
|
versions: NotificationTemplateVersionBase[];
|
|
4219
4074
|
}
|
|
4220
4075
|
|
|
@@ -4241,6 +4096,8 @@ export interface NotificationTemplateBase {
|
|
|
4241
4096
|
isDefault: boolean;
|
|
4242
4097
|
status: string;
|
|
4243
4098
|
useDefaultHeaderAndFooter: boolean;
|
|
4099
|
+
multipleCustomTemplates: boolean;
|
|
4100
|
+
allowedRoles?: string[] | null;
|
|
4244
4101
|
}
|
|
4245
4102
|
|
|
4246
4103
|
export interface NotificationTemplateBasePaginated {
|
|
@@ -4343,7 +4200,7 @@ export interface NotificationTemplateVersionUpdateRequest {
|
|
|
4343
4200
|
|
|
4344
4201
|
export interface Operation {
|
|
4345
4202
|
op?: string;
|
|
4346
|
-
value?:
|
|
4203
|
+
value?: object | null;
|
|
4347
4204
|
path?: string;
|
|
4348
4205
|
}
|
|
4349
4206
|
|
|
@@ -4699,7 +4556,7 @@ export interface SSOTokenRequest {
|
|
|
4699
4556
|
}
|
|
4700
4557
|
|
|
4701
4558
|
export interface SamlMetadataRequest {
|
|
4702
|
-
ssoIntegration:
|
|
4559
|
+
ssoIntegration: SamlMetadataRequestSsoIntegrationEnum;
|
|
4703
4560
|
}
|
|
4704
4561
|
|
|
4705
4562
|
export interface SendForgotPasswordRequest {
|
|
@@ -4716,6 +4573,15 @@ export interface SendLoanDocumentsRequest {
|
|
|
4716
4573
|
emailAddresses: string[];
|
|
4717
4574
|
}
|
|
4718
4575
|
|
|
4576
|
+
export interface SendLoanTaskReminderRequest {
|
|
4577
|
+
/**
|
|
4578
|
+
* @format uuid
|
|
4579
|
+
* @minLength 1
|
|
4580
|
+
*/
|
|
4581
|
+
templateId: string;
|
|
4582
|
+
userIds?: string[] | null;
|
|
4583
|
+
}
|
|
4584
|
+
|
|
4719
4585
|
export interface SendNotificationForLoanRequest {
|
|
4720
4586
|
/** @minLength 1 */
|
|
4721
4587
|
loanID: string;
|
|
@@ -4738,7 +4604,7 @@ export interface SiteConfiguration {
|
|
|
4738
4604
|
deletedAt?: string | null;
|
|
4739
4605
|
/** @format uuid */
|
|
4740
4606
|
id: string;
|
|
4741
|
-
type:
|
|
4607
|
+
type: SiteConfigurationTypeEnum;
|
|
4742
4608
|
/** @format uuid */
|
|
4743
4609
|
entityID: string;
|
|
4744
4610
|
/** @format int32 */
|
|
@@ -4933,7 +4799,7 @@ export interface SiteConfigurationByUrl {
|
|
|
4933
4799
|
deletedAt?: string | null;
|
|
4934
4800
|
/** @format uuid */
|
|
4935
4801
|
id: string;
|
|
4936
|
-
type:
|
|
4802
|
+
type: SiteConfigurationByUrlTypeEnum;
|
|
4937
4803
|
/** @format uuid */
|
|
4938
4804
|
entityID: string;
|
|
4939
4805
|
/** @format int32 */
|
|
@@ -5146,7 +5012,7 @@ export interface SiteConfigurationForm {
|
|
|
5146
5012
|
export interface SiteConfigurationReduced {
|
|
5147
5013
|
/** @format uuid */
|
|
5148
5014
|
id: string;
|
|
5149
|
-
type:
|
|
5015
|
+
type: SiteConfigurationReducedTypeEnum;
|
|
5150
5016
|
url?: string | null;
|
|
5151
5017
|
name: string;
|
|
5152
5018
|
/** @format int64 */
|
|
@@ -5164,7 +5030,7 @@ export interface SiteConfigurationRequest {
|
|
|
5164
5030
|
entityID: string;
|
|
5165
5031
|
/** @format int32 */
|
|
5166
5032
|
entityType: number;
|
|
5167
|
-
type:
|
|
5033
|
+
type: SiteConfigurationRequestTypeEnum;
|
|
5168
5034
|
url: string;
|
|
5169
5035
|
name: string;
|
|
5170
5036
|
introduction?: string | null;
|
|
@@ -5341,7 +5207,7 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
5341
5207
|
export interface SiteConfigurationSummary {
|
|
5342
5208
|
/** @format uuid */
|
|
5343
5209
|
id: string;
|
|
5344
|
-
type:
|
|
5210
|
+
type: SiteConfigurationSummaryTypeEnum;
|
|
5345
5211
|
url?: string | null;
|
|
5346
5212
|
name: string;
|
|
5347
5213
|
/** @format int64 */
|
|
@@ -5969,19 +5835,7 @@ export interface UserDevice {
|
|
|
5969
5835
|
export interface UserDraft {
|
|
5970
5836
|
/** @format uuid */
|
|
5971
5837
|
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";
|
|
5838
|
+
role: UserDraftRoleEnum;
|
|
5985
5839
|
user: User;
|
|
5986
5840
|
}
|
|
5987
5841
|
|
|
@@ -6008,7 +5862,7 @@ export interface UserGroupAccessScope {
|
|
|
6008
5862
|
id: string;
|
|
6009
5863
|
/** @format uuid */
|
|
6010
5864
|
groupId: string;
|
|
6011
|
-
scopeType:
|
|
5865
|
+
scopeType: UserGroupAccessScopeScopeTypeEnum;
|
|
6012
5866
|
/** @format uuid */
|
|
6013
5867
|
userId?: string | null;
|
|
6014
5868
|
/** @format uuid */
|
|
@@ -6044,19 +5898,7 @@ export interface UserLoan {
|
|
|
6044
5898
|
deletedAt?: string | null;
|
|
6045
5899
|
loanID: string;
|
|
6046
5900
|
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";
|
|
5901
|
+
role: UserLoanRoleEnum;
|
|
6060
5902
|
/** @format int32 */
|
|
6061
5903
|
borrowerPair?: number | null;
|
|
6062
5904
|
/** @format int32 */
|
|
@@ -6069,10 +5911,10 @@ export interface UserLoanConsent {
|
|
|
6069
5911
|
id: string;
|
|
6070
5912
|
/** @format uuid */
|
|
6071
5913
|
userLoanID: string;
|
|
6072
|
-
type:
|
|
5914
|
+
type: UserLoanConsentTypeEnum;
|
|
6073
5915
|
providedConsent: boolean;
|
|
6074
5916
|
ipAddress?: string | null;
|
|
6075
|
-
losSyncStatus:
|
|
5917
|
+
losSyncStatus: UserLoanConsentLosSyncStatusEnum;
|
|
6076
5918
|
/** @format date-time */
|
|
6077
5919
|
createdAt: string;
|
|
6078
5920
|
}
|
|
@@ -6223,16 +6065,7 @@ export interface UserSummary {
|
|
|
6223
6065
|
id: string;
|
|
6224
6066
|
name?: string | null;
|
|
6225
6067
|
email?: string | null;
|
|
6226
|
-
role:
|
|
6227
|
-
| "Borrower"
|
|
6228
|
-
| "LoanOfficer"
|
|
6229
|
-
| "Admin"
|
|
6230
|
-
| "SuperAdmin"
|
|
6231
|
-
| "Realtor"
|
|
6232
|
-
| "SettlementAgent"
|
|
6233
|
-
| "LoanProcessor"
|
|
6234
|
-
| "LoanOfficerAssistant"
|
|
6235
|
-
| "SystemAdmin";
|
|
6068
|
+
role: UserSummaryRoleEnum;
|
|
6236
6069
|
}
|
|
6237
6070
|
|
|
6238
6071
|
export interface VerifyPasswordRequest {
|
|
@@ -6268,6 +6101,370 @@ export interface Workflow {
|
|
|
6268
6101
|
icon: string;
|
|
6269
6102
|
}
|
|
6270
6103
|
|
|
6104
|
+
export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
|
|
6105
|
+
|
|
6106
|
+
export type AuditLogEntryChangeTypeEnum =
|
|
6107
|
+
| "Created"
|
|
6108
|
+
| "Modified"
|
|
6109
|
+
| "SoftDeleted"
|
|
6110
|
+
| "HardDeleted"
|
|
6111
|
+
| "Restored";
|
|
6112
|
+
|
|
6113
|
+
export type ConsumerConnectStatusRoleEnum =
|
|
6114
|
+
| "Borrower"
|
|
6115
|
+
| "CoBorrower"
|
|
6116
|
+
| "NonBorrower"
|
|
6117
|
+
| "LoanOfficer"
|
|
6118
|
+
| "LoanProcessor"
|
|
6119
|
+
| "LoanOfficerAssistant"
|
|
6120
|
+
| "SupportingLoanOfficer"
|
|
6121
|
+
| "BuyerAgent"
|
|
6122
|
+
| "SellerAgent"
|
|
6123
|
+
| "TitleInsuranceAgent"
|
|
6124
|
+
| "EscrowAgent"
|
|
6125
|
+
| "SettlementAgent";
|
|
6126
|
+
|
|
6127
|
+
export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
|
|
6128
|
+
|
|
6129
|
+
export type CreateAccountRequestEnvironmentEnum =
|
|
6130
|
+
| "Development"
|
|
6131
|
+
| "Staging"
|
|
6132
|
+
| "UAT"
|
|
6133
|
+
| "Production";
|
|
6134
|
+
|
|
6135
|
+
export type CreateGroupMemberRequestLoanRoleEnum =
|
|
6136
|
+
| "Borrower"
|
|
6137
|
+
| "CoBorrower"
|
|
6138
|
+
| "NonBorrower"
|
|
6139
|
+
| "LoanOfficer"
|
|
6140
|
+
| "LoanProcessor"
|
|
6141
|
+
| "LoanOfficerAssistant"
|
|
6142
|
+
| "SupportingLoanOfficer"
|
|
6143
|
+
| "BuyerAgent"
|
|
6144
|
+
| "SellerAgent"
|
|
6145
|
+
| "TitleInsuranceAgent"
|
|
6146
|
+
| "EscrowAgent"
|
|
6147
|
+
| "SettlementAgent";
|
|
6148
|
+
|
|
6149
|
+
/** @deprecated */
|
|
6150
|
+
export type CreateInviteRequestRelationshipEnum =
|
|
6151
|
+
| "NotApplicable"
|
|
6152
|
+
| "Spouse"
|
|
6153
|
+
| "NonSpouse";
|
|
6154
|
+
|
|
6155
|
+
export type CreateLoanImportRequestImportModeEnum =
|
|
6156
|
+
| "All"
|
|
6157
|
+
| "NewOnly"
|
|
6158
|
+
| "UpdateOnly";
|
|
6159
|
+
|
|
6160
|
+
export type CreateUserDraftLoanRoleEnum =
|
|
6161
|
+
| "Borrower"
|
|
6162
|
+
| "CoBorrower"
|
|
6163
|
+
| "NonBorrower"
|
|
6164
|
+
| "LoanOfficer"
|
|
6165
|
+
| "LoanProcessor"
|
|
6166
|
+
| "LoanOfficerAssistant"
|
|
6167
|
+
| "SupportingLoanOfficer"
|
|
6168
|
+
| "BuyerAgent"
|
|
6169
|
+
| "SellerAgent"
|
|
6170
|
+
| "TitleInsuranceAgent"
|
|
6171
|
+
| "EscrowAgent"
|
|
6172
|
+
| "SettlementAgent";
|
|
6173
|
+
|
|
6174
|
+
export type DraftTypeEnum = "NewLoan" | "EditLoan";
|
|
6175
|
+
|
|
6176
|
+
export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
|
|
6177
|
+
|
|
6178
|
+
export type EncompassCredentialsDetailSigningMethodEnum =
|
|
6179
|
+
| "ConsumerConnect"
|
|
6180
|
+
| "POSF";
|
|
6181
|
+
|
|
6182
|
+
export type EncompassCredentialsRequestSigningMethodEnum =
|
|
6183
|
+
| "ConsumerConnect"
|
|
6184
|
+
| "POSF";
|
|
6185
|
+
|
|
6186
|
+
export type EncompassRequestLogOperationTypeEnum =
|
|
6187
|
+
| "FieldUpdate"
|
|
6188
|
+
| "ConsentUpdate"
|
|
6189
|
+
| "DocumentSync"
|
|
6190
|
+
| "MilestoneUpdate"
|
|
6191
|
+
| "DocumentAttachment"
|
|
6192
|
+
| "General"
|
|
6193
|
+
| "FieldReader";
|
|
6194
|
+
|
|
6195
|
+
export type EncompassRequestLogOutcomeEnum =
|
|
6196
|
+
| "Success"
|
|
6197
|
+
| "Failure"
|
|
6198
|
+
| "PartialSuccess";
|
|
6199
|
+
|
|
6200
|
+
export type FusionReportFilterFilterTypeEnum =
|
|
6201
|
+
| "DateGreaterThanOrEqualTo"
|
|
6202
|
+
| "DateGreaterThan"
|
|
6203
|
+
| "DateLessThan"
|
|
6204
|
+
| "DateLessThanOrEqualTo"
|
|
6205
|
+
| "DateEquals"
|
|
6206
|
+
| "DateDoesntEqual"
|
|
6207
|
+
| "DateNonEmpty"
|
|
6208
|
+
| "DateEmpty"
|
|
6209
|
+
| "StringContains"
|
|
6210
|
+
| "StringEquals"
|
|
6211
|
+
| "StringNotEmpty"
|
|
6212
|
+
| "StringNotEquals"
|
|
6213
|
+
| "StringNotContains";
|
|
6214
|
+
|
|
6215
|
+
export type IpAddressAddressFamilyEnum =
|
|
6216
|
+
| "Unspecified"
|
|
6217
|
+
| "Unix"
|
|
6218
|
+
| "InterNetwork"
|
|
6219
|
+
| "ImpLink"
|
|
6220
|
+
| "Pup"
|
|
6221
|
+
| "Chaos"
|
|
6222
|
+
| "NS"
|
|
6223
|
+
| "Ipx"
|
|
6224
|
+
| "Iso"
|
|
6225
|
+
| "Osi"
|
|
6226
|
+
| "Ecma"
|
|
6227
|
+
| "DataKit"
|
|
6228
|
+
| "Ccitt"
|
|
6229
|
+
| "Sna"
|
|
6230
|
+
| "DecNet"
|
|
6231
|
+
| "DataLink"
|
|
6232
|
+
| "Lat"
|
|
6233
|
+
| "HyperChannel"
|
|
6234
|
+
| "AppleTalk"
|
|
6235
|
+
| "NetBios"
|
|
6236
|
+
| "VoiceView"
|
|
6237
|
+
| "FireFox"
|
|
6238
|
+
| "Banyan"
|
|
6239
|
+
| "Atm"
|
|
6240
|
+
| "InterNetworkV6"
|
|
6241
|
+
| "Cluster"
|
|
6242
|
+
| "Ieee12844"
|
|
6243
|
+
| "Irda"
|
|
6244
|
+
| "NetworkDesigners"
|
|
6245
|
+
| "Max"
|
|
6246
|
+
| "Packet"
|
|
6247
|
+
| "ControllerAreaNetwork"
|
|
6248
|
+
| "Unknown";
|
|
6249
|
+
|
|
6250
|
+
export type LoanSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
6251
|
+
|
|
6252
|
+
export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
|
|
6253
|
+
|
|
6254
|
+
export type LoanContactRoleEnum =
|
|
6255
|
+
| "Borrower"
|
|
6256
|
+
| "CoBorrower"
|
|
6257
|
+
| "NonBorrower"
|
|
6258
|
+
| "LoanOfficer"
|
|
6259
|
+
| "LoanProcessor"
|
|
6260
|
+
| "LoanOfficerAssistant"
|
|
6261
|
+
| "SupportingLoanOfficer"
|
|
6262
|
+
| "BuyerAgent"
|
|
6263
|
+
| "SellerAgent"
|
|
6264
|
+
| "TitleInsuranceAgent"
|
|
6265
|
+
| "EscrowAgent"
|
|
6266
|
+
| "SettlementAgent";
|
|
6267
|
+
|
|
6268
|
+
export type LoanImportStatusEnum =
|
|
6269
|
+
| "WaitingProcess"
|
|
6270
|
+
| "InProgress"
|
|
6271
|
+
| "Completed"
|
|
6272
|
+
| "Failed"
|
|
6273
|
+
| "Cancelled";
|
|
6274
|
+
|
|
6275
|
+
export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
6276
|
+
|
|
6277
|
+
export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
6278
|
+
|
|
6279
|
+
export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
6280
|
+
|
|
6281
|
+
export type LoanLogTypeEnum =
|
|
6282
|
+
| "Loan"
|
|
6283
|
+
| "Queue"
|
|
6284
|
+
| "POSFlagChanged"
|
|
6285
|
+
| "Verification"
|
|
6286
|
+
| "DocumentUploaded"
|
|
6287
|
+
| "LoanCreated"
|
|
6288
|
+
| "WorkflowSubmitted"
|
|
6289
|
+
| "UserInvitationSent"
|
|
6290
|
+
| "CoBorrowerAdded"
|
|
6291
|
+
| "TaskCompleted"
|
|
6292
|
+
| "LoanStatusChanged"
|
|
6293
|
+
| "Consent"
|
|
6294
|
+
| "SensitiveDataPurge"
|
|
6295
|
+
| "ClosingDateUpdated"
|
|
6296
|
+
| "ConsumerConnectAssociation"
|
|
6297
|
+
| "TaskReminderSent";
|
|
6298
|
+
|
|
6299
|
+
export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
6300
|
+
|
|
6301
|
+
export type LoanLogDetailTypeEnum =
|
|
6302
|
+
| "Loan"
|
|
6303
|
+
| "Queue"
|
|
6304
|
+
| "POSFlagChanged"
|
|
6305
|
+
| "Verification"
|
|
6306
|
+
| "DocumentUploaded"
|
|
6307
|
+
| "LoanCreated"
|
|
6308
|
+
| "WorkflowSubmitted"
|
|
6309
|
+
| "UserInvitationSent"
|
|
6310
|
+
| "CoBorrowerAdded"
|
|
6311
|
+
| "TaskCompleted"
|
|
6312
|
+
| "LoanStatusChanged"
|
|
6313
|
+
| "Consent"
|
|
6314
|
+
| "SensitiveDataPurge"
|
|
6315
|
+
| "ClosingDateUpdated"
|
|
6316
|
+
| "ConsumerConnectAssociation"
|
|
6317
|
+
| "TaskReminderSent";
|
|
6318
|
+
|
|
6319
|
+
export type LoanTaskStatusSummaryStatusEnum =
|
|
6320
|
+
| "Outstanding"
|
|
6321
|
+
| "Pending"
|
|
6322
|
+
| "Completed"
|
|
6323
|
+
| "Rejected"
|
|
6324
|
+
| "Unknown";
|
|
6325
|
+
|
|
6326
|
+
export type LoanUserLoanRoleEnum =
|
|
6327
|
+
| "Borrower"
|
|
6328
|
+
| "CoBorrower"
|
|
6329
|
+
| "NonBorrower"
|
|
6330
|
+
| "LoanOfficer"
|
|
6331
|
+
| "LoanProcessor"
|
|
6332
|
+
| "LoanOfficerAssistant"
|
|
6333
|
+
| "SupportingLoanOfficer"
|
|
6334
|
+
| "BuyerAgent"
|
|
6335
|
+
| "SellerAgent"
|
|
6336
|
+
| "TitleInsuranceAgent"
|
|
6337
|
+
| "EscrowAgent"
|
|
6338
|
+
| "SettlementAgent";
|
|
6339
|
+
|
|
6340
|
+
export type SamlMetadataRequestSsoIntegrationEnum =
|
|
6341
|
+
| "ConsumerConnect"
|
|
6342
|
+
| "TheBigPOS"
|
|
6343
|
+
| "POSF";
|
|
6344
|
+
|
|
6345
|
+
export type SiteConfigurationTypeEnum =
|
|
6346
|
+
| "None"
|
|
6347
|
+
| "Account"
|
|
6348
|
+
| "Corporate"
|
|
6349
|
+
| "Branch"
|
|
6350
|
+
| "LoanOfficer"
|
|
6351
|
+
| "Partner";
|
|
6352
|
+
|
|
6353
|
+
export type SiteConfigurationByUrlTypeEnum =
|
|
6354
|
+
| "None"
|
|
6355
|
+
| "Account"
|
|
6356
|
+
| "Corporate"
|
|
6357
|
+
| "Branch"
|
|
6358
|
+
| "LoanOfficer"
|
|
6359
|
+
| "Partner";
|
|
6360
|
+
|
|
6361
|
+
export type SiteConfigurationReducedTypeEnum =
|
|
6362
|
+
| "None"
|
|
6363
|
+
| "Account"
|
|
6364
|
+
| "Corporate"
|
|
6365
|
+
| "Branch"
|
|
6366
|
+
| "LoanOfficer"
|
|
6367
|
+
| "Partner";
|
|
6368
|
+
|
|
6369
|
+
export type SiteConfigurationRequestTypeEnum =
|
|
6370
|
+
| "None"
|
|
6371
|
+
| "Account"
|
|
6372
|
+
| "Corporate"
|
|
6373
|
+
| "Branch"
|
|
6374
|
+
| "LoanOfficer"
|
|
6375
|
+
| "Partner";
|
|
6376
|
+
|
|
6377
|
+
export type SiteConfigurationSummaryTypeEnum =
|
|
6378
|
+
| "None"
|
|
6379
|
+
| "Account"
|
|
6380
|
+
| "Corporate"
|
|
6381
|
+
| "Branch"
|
|
6382
|
+
| "LoanOfficer"
|
|
6383
|
+
| "Partner";
|
|
6384
|
+
|
|
6385
|
+
export type UserDraftRoleEnum =
|
|
6386
|
+
| "Borrower"
|
|
6387
|
+
| "CoBorrower"
|
|
6388
|
+
| "NonBorrower"
|
|
6389
|
+
| "LoanOfficer"
|
|
6390
|
+
| "LoanProcessor"
|
|
6391
|
+
| "LoanOfficerAssistant"
|
|
6392
|
+
| "SupportingLoanOfficer"
|
|
6393
|
+
| "BuyerAgent"
|
|
6394
|
+
| "SellerAgent"
|
|
6395
|
+
| "TitleInsuranceAgent"
|
|
6396
|
+
| "EscrowAgent"
|
|
6397
|
+
| "SettlementAgent";
|
|
6398
|
+
|
|
6399
|
+
export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
|
|
6400
|
+
|
|
6401
|
+
export type UserLoanRoleEnum =
|
|
6402
|
+
| "Borrower"
|
|
6403
|
+
| "CoBorrower"
|
|
6404
|
+
| "NonBorrower"
|
|
6405
|
+
| "LoanOfficer"
|
|
6406
|
+
| "LoanProcessor"
|
|
6407
|
+
| "LoanOfficerAssistant"
|
|
6408
|
+
| "SupportingLoanOfficer"
|
|
6409
|
+
| "BuyerAgent"
|
|
6410
|
+
| "SellerAgent"
|
|
6411
|
+
| "TitleInsuranceAgent"
|
|
6412
|
+
| "EscrowAgent"
|
|
6413
|
+
| "SettlementAgent";
|
|
6414
|
+
|
|
6415
|
+
export type UserLoanConsentTypeEnum =
|
|
6416
|
+
| "Econsent"
|
|
6417
|
+
| "CreditAuthorization"
|
|
6418
|
+
| "Tcpa";
|
|
6419
|
+
|
|
6420
|
+
export type UserLoanConsentLosSyncStatusEnum =
|
|
6421
|
+
| "NotStarted"
|
|
6422
|
+
| "Failed"
|
|
6423
|
+
| "Success";
|
|
6424
|
+
|
|
6425
|
+
export type UserSummaryRoleEnum =
|
|
6426
|
+
| "Borrower"
|
|
6427
|
+
| "LoanOfficer"
|
|
6428
|
+
| "Admin"
|
|
6429
|
+
| "SuperAdmin"
|
|
6430
|
+
| "Realtor"
|
|
6431
|
+
| "SettlementAgent"
|
|
6432
|
+
| "LoanProcessor"
|
|
6433
|
+
| "LoanOfficerAssistant"
|
|
6434
|
+
| "SystemAdmin";
|
|
6435
|
+
|
|
6436
|
+
/** @default "Realtor" */
|
|
6437
|
+
export type GetPartnersParamsRoleEnum =
|
|
6438
|
+
| "Borrower"
|
|
6439
|
+
| "LoanOfficer"
|
|
6440
|
+
| "Admin"
|
|
6441
|
+
| "SuperAdmin"
|
|
6442
|
+
| "Realtor"
|
|
6443
|
+
| "SettlementAgent"
|
|
6444
|
+
| "LoanProcessor"
|
|
6445
|
+
| "LoanOfficerAssistant"
|
|
6446
|
+
| "SystemAdmin";
|
|
6447
|
+
|
|
6448
|
+
export type GetSamlMetadataParamsSSoIntegrationEnum =
|
|
6449
|
+
| "ConsumerConnect"
|
|
6450
|
+
| "TheBigPOS"
|
|
6451
|
+
| "POSF";
|
|
6452
|
+
|
|
6453
|
+
export type GetSamlMetadataParamsEnum =
|
|
6454
|
+
| "ConsumerConnect"
|
|
6455
|
+
| "TheBigPOS"
|
|
6456
|
+
| "POSF";
|
|
6457
|
+
|
|
6458
|
+
export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum =
|
|
6459
|
+
| "ConsumerConnect"
|
|
6460
|
+
| "TheBigPOS"
|
|
6461
|
+
| "POSF";
|
|
6462
|
+
|
|
6463
|
+
export type CreateOrReplaceSamlMetadataParamsEnum =
|
|
6464
|
+
| "ConsumerConnect"
|
|
6465
|
+
| "TheBigPOS"
|
|
6466
|
+
| "POSF";
|
|
6467
|
+
|
|
6271
6468
|
import type {
|
|
6272
6469
|
AxiosInstance,
|
|
6273
6470
|
AxiosRequestConfig,
|
|
@@ -6310,7 +6507,6 @@ export interface ApiConfig<SecurityDataType = unknown>
|
|
|
6310
6507
|
}
|
|
6311
6508
|
|
|
6312
6509
|
export enum ContentType {
|
|
6313
|
-
JsonPatch = "application/json-patch+json",
|
|
6314
6510
|
Json = "application/json",
|
|
6315
6511
|
JsonApi = "application/vnd.api+json",
|
|
6316
6512
|
FormData = "multipart/form-data",
|
|
@@ -6446,7 +6642,7 @@ export class HttpClient<SecurityDataType = unknown> {
|
|
|
6446
6642
|
|
|
6447
6643
|
/**
|
|
6448
6644
|
* @title The Big POS API
|
|
6449
|
-
* @version v2.38.
|
|
6645
|
+
* @version v2.38.2
|
|
6450
6646
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
6451
6647
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
6452
6648
|
*/
|
|
@@ -8837,7 +9033,7 @@ export class Api<
|
|
|
8837
9033
|
method: "PATCH",
|
|
8838
9034
|
body: data,
|
|
8839
9035
|
secure: true,
|
|
8840
|
-
type: ContentType.
|
|
9036
|
+
type: ContentType.Json,
|
|
8841
9037
|
format: "json",
|
|
8842
9038
|
...params,
|
|
8843
9039
|
}),
|
|
@@ -8858,7 +9054,7 @@ export class Api<
|
|
|
8858
9054
|
method: "POST",
|
|
8859
9055
|
body: data,
|
|
8860
9056
|
secure: true,
|
|
8861
|
-
type: ContentType.
|
|
9057
|
+
type: ContentType.Json,
|
|
8862
9058
|
format: "json",
|
|
8863
9059
|
...params,
|
|
8864
9060
|
}),
|
|
@@ -8947,7 +9143,7 @@ export class Api<
|
|
|
8947
9143
|
method: "PATCH",
|
|
8948
9144
|
body: data,
|
|
8949
9145
|
secure: true,
|
|
8950
|
-
type: ContentType.
|
|
9146
|
+
type: ContentType.Json,
|
|
8951
9147
|
format: "json",
|
|
8952
9148
|
...params,
|
|
8953
9149
|
}),
|
|
@@ -8974,7 +9170,7 @@ export class Api<
|
|
|
8974
9170
|
method: "PATCH",
|
|
8975
9171
|
body: data,
|
|
8976
9172
|
secure: true,
|
|
8977
|
-
type: ContentType.
|
|
9173
|
+
type: ContentType.Json,
|
|
8978
9174
|
format: "json",
|
|
8979
9175
|
...params,
|
|
8980
9176
|
}),
|
|
@@ -9131,7 +9327,7 @@ export class Api<
|
|
|
9131
9327
|
method: "POST",
|
|
9132
9328
|
body: data,
|
|
9133
9329
|
secure: true,
|
|
9134
|
-
type: ContentType.
|
|
9330
|
+
type: ContentType.Json,
|
|
9135
9331
|
format: "json",
|
|
9136
9332
|
...params,
|
|
9137
9333
|
}),
|
|
@@ -9216,7 +9412,7 @@ export class Api<
|
|
|
9216
9412
|
method: "PATCH",
|
|
9217
9413
|
body: data,
|
|
9218
9414
|
secure: true,
|
|
9219
|
-
type: ContentType.
|
|
9415
|
+
type: ContentType.Json,
|
|
9220
9416
|
format: "json",
|
|
9221
9417
|
...params,
|
|
9222
9418
|
}),
|
|
@@ -9296,7 +9492,7 @@ export class Api<
|
|
|
9296
9492
|
method: "PATCH",
|
|
9297
9493
|
body: data,
|
|
9298
9494
|
secure: true,
|
|
9299
|
-
type: ContentType.
|
|
9495
|
+
type: ContentType.Json,
|
|
9300
9496
|
format: "json",
|
|
9301
9497
|
...params,
|
|
9302
9498
|
}),
|
|
@@ -9370,7 +9566,7 @@ export class Api<
|
|
|
9370
9566
|
method: "POST",
|
|
9371
9567
|
body: data,
|
|
9372
9568
|
secure: true,
|
|
9373
|
-
type: ContentType.
|
|
9569
|
+
type: ContentType.Json,
|
|
9374
9570
|
format: "json",
|
|
9375
9571
|
...params,
|
|
9376
9572
|
}),
|
|
@@ -9839,7 +10035,7 @@ export class Api<
|
|
|
9839
10035
|
* @summary Download By ID
|
|
9840
10036
|
* @request GET:/api/loans/{loanId}/documents/{documentId}/download
|
|
9841
10037
|
* @secure
|
|
9842
|
-
* @response `200` `
|
|
10038
|
+
* @response `200` `Blob` Success
|
|
9843
10039
|
* @response `404` `ProblemDetails` Not Found
|
|
9844
10040
|
*/
|
|
9845
10041
|
downloadLoanDocument: (
|
|
@@ -9847,7 +10043,7 @@ export class Api<
|
|
|
9847
10043
|
documentId: string,
|
|
9848
10044
|
params: RequestParams = {},
|
|
9849
10045
|
) =>
|
|
9850
|
-
this.request<
|
|
10046
|
+
this.request<Blob, ProblemDetails>({
|
|
9851
10047
|
path: `/api/loans/${loanId}/documents/${documentId}/download`,
|
|
9852
10048
|
method: "GET",
|
|
9853
10049
|
secure: true,
|
|
@@ -10890,7 +11086,7 @@ export class Api<
|
|
|
10890
11086
|
query: query,
|
|
10891
11087
|
body: data,
|
|
10892
11088
|
secure: true,
|
|
10893
|
-
type: ContentType.
|
|
11089
|
+
type: ContentType.Json,
|
|
10894
11090
|
format: "json",
|
|
10895
11091
|
...params,
|
|
10896
11092
|
}),
|
|
@@ -10942,7 +11138,7 @@ export class Api<
|
|
|
10942
11138
|
method: "POST",
|
|
10943
11139
|
body: data,
|
|
10944
11140
|
secure: true,
|
|
10945
|
-
type: ContentType.
|
|
11141
|
+
type: ContentType.Json,
|
|
10946
11142
|
format: "json",
|
|
10947
11143
|
...params,
|
|
10948
11144
|
}),
|
|
@@ -11078,6 +11274,32 @@ export class Api<
|
|
|
11078
11274
|
...params,
|
|
11079
11275
|
}),
|
|
11080
11276
|
|
|
11277
|
+
/**
|
|
11278
|
+
* No description
|
|
11279
|
+
*
|
|
11280
|
+
* @tags LoanTaskNotifications
|
|
11281
|
+
* @name SendLoanTaskReminder
|
|
11282
|
+
* @summary Send Loan Task Reminder
|
|
11283
|
+
* @request POST:/api/loans/{loanID}/tasks/reminders
|
|
11284
|
+
* @secure
|
|
11285
|
+
* @response `204` `void` No Content
|
|
11286
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
11287
|
+
* @response `404` `ProblemDetails` Not Found
|
|
11288
|
+
*/
|
|
11289
|
+
sendLoanTaskReminder: (
|
|
11290
|
+
loanId: string,
|
|
11291
|
+
data: SendLoanTaskReminderRequest,
|
|
11292
|
+
params: RequestParams = {},
|
|
11293
|
+
) =>
|
|
11294
|
+
this.request<void, ProblemDetails>({
|
|
11295
|
+
path: `/api/loans/${loanId}/tasks/reminders`,
|
|
11296
|
+
method: "POST",
|
|
11297
|
+
body: data,
|
|
11298
|
+
secure: true,
|
|
11299
|
+
type: ContentType.Json,
|
|
11300
|
+
...params,
|
|
11301
|
+
}),
|
|
11302
|
+
|
|
11081
11303
|
/**
|
|
11082
11304
|
* @description Search tasks across all loans
|
|
11083
11305
|
*
|
|
@@ -11111,6 +11333,31 @@ export class Api<
|
|
|
11111
11333
|
...params,
|
|
11112
11334
|
}),
|
|
11113
11335
|
|
|
11336
|
+
/**
|
|
11337
|
+
* @description Returns task counts grouped by status for loans accessible to the current user based on their role
|
|
11338
|
+
*
|
|
11339
|
+
* @tags LoanTasks
|
|
11340
|
+
* @name SearchLoanTasksSummary
|
|
11341
|
+
* @summary Search Summary
|
|
11342
|
+
* @request POST:/api/loans/tasks/search/summary
|
|
11343
|
+
* @secure
|
|
11344
|
+
* @response `200` `(LoanTaskStatusSummary)[]` Success
|
|
11345
|
+
* @response `422` `UnprocessableEntity` Client Error
|
|
11346
|
+
*/
|
|
11347
|
+
searchLoanTasksSummary: (
|
|
11348
|
+
data: LoanTaskSearchRequest,
|
|
11349
|
+
params: RequestParams = {},
|
|
11350
|
+
) =>
|
|
11351
|
+
this.request<LoanTaskStatusSummary[], UnprocessableEntity>({
|
|
11352
|
+
path: `/api/loans/tasks/search/summary`,
|
|
11353
|
+
method: "POST",
|
|
11354
|
+
body: data,
|
|
11355
|
+
secure: true,
|
|
11356
|
+
type: ContentType.Json,
|
|
11357
|
+
format: "json",
|
|
11358
|
+
...params,
|
|
11359
|
+
}),
|
|
11360
|
+
|
|
11114
11361
|
/**
|
|
11115
11362
|
* No description
|
|
11116
11363
|
*
|
|
@@ -11968,16 +12215,7 @@ export class Api<
|
|
|
11968
12215
|
query?: {
|
|
11969
12216
|
showAll?: boolean;
|
|
11970
12217
|
/** @default "Realtor" */
|
|
11971
|
-
role?:
|
|
11972
|
-
| "Borrower"
|
|
11973
|
-
| "LoanOfficer"
|
|
11974
|
-
| "Admin"
|
|
11975
|
-
| "SuperAdmin"
|
|
11976
|
-
| "Realtor"
|
|
11977
|
-
| "SettlementAgent"
|
|
11978
|
-
| "LoanProcessor"
|
|
11979
|
-
| "LoanOfficerAssistant"
|
|
11980
|
-
| "SystemAdmin";
|
|
12218
|
+
role?: GetPartnersParamsRoleEnum;
|
|
11981
12219
|
/** @format int32 */
|
|
11982
12220
|
pageSize?: number;
|
|
11983
12221
|
/** @format int32 */
|
|
@@ -12313,7 +12551,7 @@ export class Api<
|
|
|
12313
12551
|
* @response `404` `ProblemDetails` Not Found
|
|
12314
12552
|
*/
|
|
12315
12553
|
getSamlMetadata: (
|
|
12316
|
-
sSoIntegration:
|
|
12554
|
+
sSoIntegration: GetSamlMetadataParamsEnum,
|
|
12317
12555
|
ssoIntegration: string,
|
|
12318
12556
|
params: RequestParams = {},
|
|
12319
12557
|
) =>
|
|
@@ -12335,7 +12573,7 @@ export class Api<
|
|
|
12335
12573
|
* @response `200` `File` Success
|
|
12336
12574
|
*/
|
|
12337
12575
|
createOrReplaceSamlMetadata: (
|
|
12338
|
-
sSoIntegration:
|
|
12576
|
+
sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum,
|
|
12339
12577
|
ssoIntegration: string,
|
|
12340
12578
|
params: RequestParams = {},
|
|
12341
12579
|
) =>
|