@matech/thebigpos-sdk 2.38.2-rc1 → 2.38.2
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 +13 -0
- package/.husky/pre-commit +2 -2
- package/LICENSE +21 -21
- package/README.md +73 -73
- package/dist/index.d.ts +46 -93
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/docs/sdk_generation.md +149 -149
- package/package.json +43 -39
- package/scripts/apply-json-patch-content-type.js +56 -56
- package/src/index.ts +245 -405
- package/tsconfig.json +27 -27
package/src/index.ts
CHANGED
|
@@ -456,7 +456,7 @@ export interface AccountBilling {
|
|
|
456
456
|
}
|
|
457
457
|
|
|
458
458
|
export interface AccountBillingRequest {
|
|
459
|
-
billingType:
|
|
459
|
+
billingType: "ClosedLoan" | "LoanOfficer";
|
|
460
460
|
/**
|
|
461
461
|
* @format double
|
|
462
462
|
* @min 0
|
|
@@ -794,7 +794,12 @@ export interface AuditLogEntry {
|
|
|
794
794
|
/** @format uuid */
|
|
795
795
|
id: string;
|
|
796
796
|
entityType: string;
|
|
797
|
-
changeType:
|
|
797
|
+
changeType:
|
|
798
|
+
| "Created"
|
|
799
|
+
| "Modified"
|
|
800
|
+
| "SoftDeleted"
|
|
801
|
+
| "HardDeleted"
|
|
802
|
+
| "Restored";
|
|
798
803
|
/** @format uuid */
|
|
799
804
|
entityId: string;
|
|
800
805
|
performedBy?: AuditLogUser | null;
|
|
@@ -1042,7 +1047,19 @@ export interface ConsumerConnectStatus {
|
|
|
1042
1047
|
/** @format uuid */
|
|
1043
1048
|
userId: string;
|
|
1044
1049
|
email: string;
|
|
1045
|
-
role:
|
|
1050
|
+
role:
|
|
1051
|
+
| "Borrower"
|
|
1052
|
+
| "CoBorrower"
|
|
1053
|
+
| "NonBorrower"
|
|
1054
|
+
| "LoanOfficer"
|
|
1055
|
+
| "LoanProcessor"
|
|
1056
|
+
| "LoanOfficerAssistant"
|
|
1057
|
+
| "SupportingLoanOfficer"
|
|
1058
|
+
| "BuyerAgent"
|
|
1059
|
+
| "SellerAgent"
|
|
1060
|
+
| "TitleInsuranceAgent"
|
|
1061
|
+
| "EscrowAgent"
|
|
1062
|
+
| "SettlementAgent";
|
|
1046
1063
|
status?: ConsumerConnectAssociationStatus | null;
|
|
1047
1064
|
/** @format int32 */
|
|
1048
1065
|
attemptCount: number;
|
|
@@ -1106,7 +1123,7 @@ export interface CorporateSearchCriteria {
|
|
|
1106
1123
|
}
|
|
1107
1124
|
|
|
1108
1125
|
export interface CreateAccessScopeRequest {
|
|
1109
|
-
scopeType:
|
|
1126
|
+
scopeType: "User" | "Branch";
|
|
1110
1127
|
/** @format uuid */
|
|
1111
1128
|
userId?: string | null;
|
|
1112
1129
|
/** @format uuid */
|
|
@@ -1130,7 +1147,7 @@ export interface CreateAccountRequest {
|
|
|
1130
1147
|
*/
|
|
1131
1148
|
nlmsid: number;
|
|
1132
1149
|
settings: AccountSettingsRequest;
|
|
1133
|
-
environment:
|
|
1150
|
+
environment: "Development" | "Staging" | "UAT" | "Production";
|
|
1134
1151
|
losIntegration: LOSIntegration;
|
|
1135
1152
|
billingSettings: AccountBillingRequest;
|
|
1136
1153
|
}
|
|
@@ -1163,7 +1180,19 @@ export interface CreateDocumentTemplateRequest {
|
|
|
1163
1180
|
export interface CreateGroupMemberRequest {
|
|
1164
1181
|
/** @format uuid */
|
|
1165
1182
|
userId: string;
|
|
1166
|
-
loanRole:
|
|
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";
|
|
1167
1196
|
}
|
|
1168
1197
|
|
|
1169
1198
|
export interface CreateInviteRequest {
|
|
@@ -1175,7 +1204,7 @@ export interface CreateInviteRequest {
|
|
|
1175
1204
|
emailAddress: string;
|
|
1176
1205
|
phoneNumber?: string | null;
|
|
1177
1206
|
/** @deprecated */
|
|
1178
|
-
relationship:
|
|
1207
|
+
relationship: "NotApplicable" | "Spouse" | "NonSpouse";
|
|
1179
1208
|
loanID: string;
|
|
1180
1209
|
route?: string | null;
|
|
1181
1210
|
/** @format uuid */
|
|
@@ -1198,7 +1227,7 @@ export interface CreateLoanImportRequest {
|
|
|
1198
1227
|
* @minLength 1
|
|
1199
1228
|
*/
|
|
1200
1229
|
startDate: string;
|
|
1201
|
-
importMode:
|
|
1230
|
+
importMode: "All" | "NewOnly" | "UpdateOnly";
|
|
1202
1231
|
}
|
|
1203
1232
|
|
|
1204
1233
|
export interface CreateSession {
|
|
@@ -1220,7 +1249,19 @@ export interface CreateUserDeviceRequest {
|
|
|
1220
1249
|
}
|
|
1221
1250
|
|
|
1222
1251
|
export interface CreateUserDraft {
|
|
1223
|
-
loanRole:
|
|
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";
|
|
1224
1265
|
}
|
|
1225
1266
|
|
|
1226
1267
|
export interface CreateUserGroupRequest {
|
|
@@ -1542,7 +1583,7 @@ export interface Draft {
|
|
|
1542
1583
|
siteConfiguration: SiteConfigurationReduced;
|
|
1543
1584
|
/** @format uuid */
|
|
1544
1585
|
loanID?: string | null;
|
|
1545
|
-
type:
|
|
1586
|
+
type: "NewLoan" | "EditLoan";
|
|
1546
1587
|
isCoBorrower: boolean;
|
|
1547
1588
|
}
|
|
1548
1589
|
|
|
@@ -1561,7 +1602,7 @@ export interface DraftContent {
|
|
|
1561
1602
|
siteConfiguration: SiteConfigurationReduced;
|
|
1562
1603
|
/** @format uuid */
|
|
1563
1604
|
loanID?: string | null;
|
|
1564
|
-
type:
|
|
1605
|
+
type: "NewLoan" | "EditLoan";
|
|
1565
1606
|
isCoBorrower: boolean;
|
|
1566
1607
|
applicationPayload: any;
|
|
1567
1608
|
}
|
|
@@ -1659,7 +1700,7 @@ export interface EncompassCredentialsDetail {
|
|
|
1659
1700
|
defaultLoanOfficerUserName?: string | null;
|
|
1660
1701
|
clearStateIfUnlicensed: boolean;
|
|
1661
1702
|
baseUrl?: string | null;
|
|
1662
|
-
signingMethod:
|
|
1703
|
+
signingMethod: "ConsumerConnect" | "POSF";
|
|
1663
1704
|
subscriptionId?: string | null;
|
|
1664
1705
|
environment?: string | null;
|
|
1665
1706
|
}
|
|
@@ -1675,7 +1716,7 @@ export interface EncompassCredentialsRequest {
|
|
|
1675
1716
|
defaultLoanOfficerUserName?: string | null;
|
|
1676
1717
|
clearStateIfUnlicensed: boolean;
|
|
1677
1718
|
baseUrl?: string | null;
|
|
1678
|
-
signingMethod:
|
|
1719
|
+
signingMethod: "ConsumerConnect" | "POSF";
|
|
1679
1720
|
subscriptionId?: string | null;
|
|
1680
1721
|
environment?: string | null;
|
|
1681
1722
|
clientID?: string | null;
|
|
@@ -1739,8 +1780,15 @@ export interface EncompassRequestLog {
|
|
|
1739
1780
|
losId?: string | null;
|
|
1740
1781
|
/** @format uuid */
|
|
1741
1782
|
accountId: string;
|
|
1742
|
-
operationType:
|
|
1743
|
-
|
|
1783
|
+
operationType:
|
|
1784
|
+
| "FieldUpdate"
|
|
1785
|
+
| "EConsentUpdate"
|
|
1786
|
+
| "DocumentSync"
|
|
1787
|
+
| "MilestoneUpdate"
|
|
1788
|
+
| "DocumentAttachment"
|
|
1789
|
+
| "General"
|
|
1790
|
+
| "FieldReader";
|
|
1791
|
+
outcome: "Success" | "Failure" | "PartialSuccess";
|
|
1744
1792
|
message: string;
|
|
1745
1793
|
endpoint?: string | null;
|
|
1746
1794
|
httpMethod?: string | null;
|
|
@@ -1798,7 +1846,7 @@ export interface FileSearchCriteria {
|
|
|
1798
1846
|
export interface FileWithBytes {
|
|
1799
1847
|
name: string;
|
|
1800
1848
|
/** @format byte */
|
|
1801
|
-
data:
|
|
1849
|
+
data: string;
|
|
1802
1850
|
fileName: string;
|
|
1803
1851
|
mimeType?: string | null;
|
|
1804
1852
|
extension?: string | null;
|
|
@@ -1977,7 +2025,20 @@ export interface FusionFieldDisplay {
|
|
|
1977
2025
|
}
|
|
1978
2026
|
|
|
1979
2027
|
export interface FusionReportFilter {
|
|
1980
|
-
filterType:
|
|
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";
|
|
1981
2042
|
targetField: string;
|
|
1982
2043
|
targetValue: string;
|
|
1983
2044
|
}
|
|
@@ -2105,7 +2166,40 @@ export interface GuidPatchOperation {
|
|
|
2105
2166
|
}
|
|
2106
2167
|
|
|
2107
2168
|
export interface IPAddress {
|
|
2108
|
-
addressFamily:
|
|
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";
|
|
2109
2203
|
/** @format int64 */
|
|
2110
2204
|
scopeId: number;
|
|
2111
2205
|
isIPv6Multicast: boolean;
|
|
@@ -2372,7 +2466,7 @@ export interface Loan {
|
|
|
2372
2466
|
nonOwningBorrowers: LoanNonOwningBorrower[];
|
|
2373
2467
|
userLoans: UserLoan[];
|
|
2374
2468
|
contacts: LoanContact[];
|
|
2375
|
-
signingMethod:
|
|
2469
|
+
signingMethod: "ConsumerConnect" | "POSF";
|
|
2376
2470
|
}
|
|
2377
2471
|
|
|
2378
2472
|
export interface LoanApplication {
|
|
@@ -2430,7 +2524,7 @@ export interface LoanBorrower {
|
|
|
2430
2524
|
citizenship?: LoanCitizenship | null;
|
|
2431
2525
|
maritalStatus?: LoanMaritalStatus | null;
|
|
2432
2526
|
languagePreference?: LoanLanguagePreference | null;
|
|
2433
|
-
applicationStatus:
|
|
2527
|
+
applicationStatus: "Draft" | "Complete";
|
|
2434
2528
|
/** @format int32 */
|
|
2435
2529
|
numberOfDependents?: number | null;
|
|
2436
2530
|
isPrimaryBorrower: boolean;
|
|
@@ -3355,7 +3449,19 @@ export interface LoanContact {
|
|
|
3355
3449
|
email?: string | null;
|
|
3356
3450
|
phone?: string | null;
|
|
3357
3451
|
companyName?: string | null;
|
|
3358
|
-
role:
|
|
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";
|
|
3359
3465
|
}
|
|
3360
3466
|
|
|
3361
3467
|
export interface LoanContactList {
|
|
@@ -3492,14 +3598,19 @@ export interface LoanImport {
|
|
|
3492
3598
|
/** @format int32 */
|
|
3493
3599
|
importedCount: number;
|
|
3494
3600
|
statusMessage?: string | null;
|
|
3495
|
-
status:
|
|
3496
|
-
|
|
3601
|
+
status:
|
|
3602
|
+
| "WaitingProcess"
|
|
3603
|
+
| "InProgress"
|
|
3604
|
+
| "Completed"
|
|
3605
|
+
| "Failed"
|
|
3606
|
+
| "Cancelled";
|
|
3607
|
+
importMode: "All" | "NewOnly" | "UpdateOnly";
|
|
3497
3608
|
/** @format date-time */
|
|
3498
3609
|
createdAt?: string | null;
|
|
3499
3610
|
}
|
|
3500
3611
|
|
|
3501
3612
|
export interface LoanImportLog {
|
|
3502
|
-
level:
|
|
3613
|
+
level: "None" | "Info" | "Warning" | "Error";
|
|
3503
3614
|
message: string;
|
|
3504
3615
|
/** @format date-time */
|
|
3505
3616
|
createdAt: string;
|
|
@@ -3560,8 +3671,23 @@ export interface LoanListPaginated {
|
|
|
3560
3671
|
export interface LoanLog {
|
|
3561
3672
|
/** @format uuid */
|
|
3562
3673
|
id: string;
|
|
3563
|
-
level:
|
|
3564
|
-
type:
|
|
3674
|
+
level: "None" | "Info" | "Warning" | "Error";
|
|
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";
|
|
3565
3691
|
message: string;
|
|
3566
3692
|
/** @format date-time */
|
|
3567
3693
|
createdAt: string;
|
|
@@ -3570,8 +3696,23 @@ export interface LoanLog {
|
|
|
3570
3696
|
export interface LoanLogDetail {
|
|
3571
3697
|
/** @format uuid */
|
|
3572
3698
|
id: string;
|
|
3573
|
-
level:
|
|
3574
|
-
type:
|
|
3699
|
+
level: "None" | "Info" | "Warning" | "Error";
|
|
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";
|
|
3575
3716
|
message: string;
|
|
3576
3717
|
/** @format date-time */
|
|
3577
3718
|
createdAt: string;
|
|
@@ -3866,7 +4007,19 @@ export interface LoanUser {
|
|
|
3866
4007
|
email: string;
|
|
3867
4008
|
phone?: string | null;
|
|
3868
4009
|
role: string;
|
|
3869
|
-
loanRole:
|
|
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";
|
|
3870
4023
|
isUser: boolean;
|
|
3871
4024
|
/** @format date-time */
|
|
3872
4025
|
createdAt: string;
|
|
@@ -4546,7 +4699,7 @@ export interface SSOTokenRequest {
|
|
|
4546
4699
|
}
|
|
4547
4700
|
|
|
4548
4701
|
export interface SamlMetadataRequest {
|
|
4549
|
-
ssoIntegration:
|
|
4702
|
+
ssoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
4550
4703
|
}
|
|
4551
4704
|
|
|
4552
4705
|
export interface SendForgotPasswordRequest {
|
|
@@ -4585,7 +4738,7 @@ export interface SiteConfiguration {
|
|
|
4585
4738
|
deletedAt?: string | null;
|
|
4586
4739
|
/** @format uuid */
|
|
4587
4740
|
id: string;
|
|
4588
|
-
type:
|
|
4741
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
4589
4742
|
/** @format uuid */
|
|
4590
4743
|
entityID: string;
|
|
4591
4744
|
/** @format int32 */
|
|
@@ -4780,7 +4933,7 @@ export interface SiteConfigurationByUrl {
|
|
|
4780
4933
|
deletedAt?: string | null;
|
|
4781
4934
|
/** @format uuid */
|
|
4782
4935
|
id: string;
|
|
4783
|
-
type:
|
|
4936
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
4784
4937
|
/** @format uuid */
|
|
4785
4938
|
entityID: string;
|
|
4786
4939
|
/** @format int32 */
|
|
@@ -4993,7 +5146,7 @@ export interface SiteConfigurationForm {
|
|
|
4993
5146
|
export interface SiteConfigurationReduced {
|
|
4994
5147
|
/** @format uuid */
|
|
4995
5148
|
id: string;
|
|
4996
|
-
type:
|
|
5149
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
4997
5150
|
url?: string | null;
|
|
4998
5151
|
name: string;
|
|
4999
5152
|
/** @format int64 */
|
|
@@ -5011,7 +5164,7 @@ export interface SiteConfigurationRequest {
|
|
|
5011
5164
|
entityID: string;
|
|
5012
5165
|
/** @format int32 */
|
|
5013
5166
|
entityType: number;
|
|
5014
|
-
type:
|
|
5167
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5015
5168
|
url: string;
|
|
5016
5169
|
name: string;
|
|
5017
5170
|
introduction?: string | null;
|
|
@@ -5188,7 +5341,7 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
5188
5341
|
export interface SiteConfigurationSummary {
|
|
5189
5342
|
/** @format uuid */
|
|
5190
5343
|
id: string;
|
|
5191
|
-
type:
|
|
5344
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5192
5345
|
url?: string | null;
|
|
5193
5346
|
name: string;
|
|
5194
5347
|
/** @format int64 */
|
|
@@ -5816,7 +5969,19 @@ export interface UserDevice {
|
|
|
5816
5969
|
export interface UserDraft {
|
|
5817
5970
|
/** @format uuid */
|
|
5818
5971
|
draftID: string;
|
|
5819
|
-
role:
|
|
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";
|
|
5820
5985
|
user: User;
|
|
5821
5986
|
}
|
|
5822
5987
|
|
|
@@ -5843,7 +6008,7 @@ export interface UserGroupAccessScope {
|
|
|
5843
6008
|
id: string;
|
|
5844
6009
|
/** @format uuid */
|
|
5845
6010
|
groupId: string;
|
|
5846
|
-
scopeType:
|
|
6011
|
+
scopeType: "User" | "Branch";
|
|
5847
6012
|
/** @format uuid */
|
|
5848
6013
|
userId?: string | null;
|
|
5849
6014
|
/** @format uuid */
|
|
@@ -5879,7 +6044,19 @@ export interface UserLoan {
|
|
|
5879
6044
|
deletedAt?: string | null;
|
|
5880
6045
|
loanID: string;
|
|
5881
6046
|
user: User;
|
|
5882
|
-
role:
|
|
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";
|
|
5883
6060
|
/** @format int32 */
|
|
5884
6061
|
borrowerPair?: number | null;
|
|
5885
6062
|
/** @format int32 */
|
|
@@ -5892,10 +6069,10 @@ export interface UserLoanConsent {
|
|
|
5892
6069
|
id: string;
|
|
5893
6070
|
/** @format uuid */
|
|
5894
6071
|
userLoanID: string;
|
|
5895
|
-
type:
|
|
6072
|
+
type: "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
5896
6073
|
providedConsent: boolean;
|
|
5897
6074
|
ipAddress?: string | null;
|
|
5898
|
-
losSyncStatus:
|
|
6075
|
+
losSyncStatus: "NotStarted" | "Failed" | "Success";
|
|
5899
6076
|
/** @format date-time */
|
|
5900
6077
|
createdAt: string;
|
|
5901
6078
|
}
|
|
@@ -6046,7 +6223,16 @@ export interface UserSummary {
|
|
|
6046
6223
|
id: string;
|
|
6047
6224
|
name?: string | null;
|
|
6048
6225
|
email?: string | null;
|
|
6049
|
-
role:
|
|
6226
|
+
role:
|
|
6227
|
+
| "Borrower"
|
|
6228
|
+
| "LoanOfficer"
|
|
6229
|
+
| "Admin"
|
|
6230
|
+
| "SuperAdmin"
|
|
6231
|
+
| "Realtor"
|
|
6232
|
+
| "SettlementAgent"
|
|
6233
|
+
| "LoanProcessor"
|
|
6234
|
+
| "LoanOfficerAssistant"
|
|
6235
|
+
| "SystemAdmin";
|
|
6050
6236
|
}
|
|
6051
6237
|
|
|
6052
6238
|
export interface VerifyPasswordRequest {
|
|
@@ -6082,361 +6268,6 @@ export interface Workflow {
|
|
|
6082
6268
|
icon: string;
|
|
6083
6269
|
}
|
|
6084
6270
|
|
|
6085
|
-
export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
|
|
6086
|
-
|
|
6087
|
-
export type AuditLogEntryChangeTypeEnum =
|
|
6088
|
-
| "Created"
|
|
6089
|
-
| "Modified"
|
|
6090
|
-
| "SoftDeleted"
|
|
6091
|
-
| "HardDeleted"
|
|
6092
|
-
| "Restored";
|
|
6093
|
-
|
|
6094
|
-
export type ConsumerConnectStatusRoleEnum =
|
|
6095
|
-
| "Borrower"
|
|
6096
|
-
| "CoBorrower"
|
|
6097
|
-
| "NonBorrower"
|
|
6098
|
-
| "LoanOfficer"
|
|
6099
|
-
| "LoanProcessor"
|
|
6100
|
-
| "LoanOfficerAssistant"
|
|
6101
|
-
| "SupportingLoanOfficer"
|
|
6102
|
-
| "BuyerAgent"
|
|
6103
|
-
| "SellerAgent"
|
|
6104
|
-
| "TitleInsuranceAgent"
|
|
6105
|
-
| "EscrowAgent"
|
|
6106
|
-
| "SettlementAgent";
|
|
6107
|
-
|
|
6108
|
-
export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
|
|
6109
|
-
|
|
6110
|
-
export type CreateAccountRequestEnvironmentEnum =
|
|
6111
|
-
| "Development"
|
|
6112
|
-
| "Staging"
|
|
6113
|
-
| "UAT"
|
|
6114
|
-
| "Production";
|
|
6115
|
-
|
|
6116
|
-
export type CreateGroupMemberRequestLoanRoleEnum =
|
|
6117
|
-
| "Borrower"
|
|
6118
|
-
| "CoBorrower"
|
|
6119
|
-
| "NonBorrower"
|
|
6120
|
-
| "LoanOfficer"
|
|
6121
|
-
| "LoanProcessor"
|
|
6122
|
-
| "LoanOfficerAssistant"
|
|
6123
|
-
| "SupportingLoanOfficer"
|
|
6124
|
-
| "BuyerAgent"
|
|
6125
|
-
| "SellerAgent"
|
|
6126
|
-
| "TitleInsuranceAgent"
|
|
6127
|
-
| "EscrowAgent"
|
|
6128
|
-
| "SettlementAgent";
|
|
6129
|
-
|
|
6130
|
-
/** @deprecated */
|
|
6131
|
-
export type CreateInviteRequestRelationshipEnum =
|
|
6132
|
-
| "NotApplicable"
|
|
6133
|
-
| "Spouse"
|
|
6134
|
-
| "NonSpouse";
|
|
6135
|
-
|
|
6136
|
-
export type CreateLoanImportRequestImportModeEnum =
|
|
6137
|
-
| "All"
|
|
6138
|
-
| "NewOnly"
|
|
6139
|
-
| "UpdateOnly";
|
|
6140
|
-
|
|
6141
|
-
export type CreateUserDraftLoanRoleEnum =
|
|
6142
|
-
| "Borrower"
|
|
6143
|
-
| "CoBorrower"
|
|
6144
|
-
| "NonBorrower"
|
|
6145
|
-
| "LoanOfficer"
|
|
6146
|
-
| "LoanProcessor"
|
|
6147
|
-
| "LoanOfficerAssistant"
|
|
6148
|
-
| "SupportingLoanOfficer"
|
|
6149
|
-
| "BuyerAgent"
|
|
6150
|
-
| "SellerAgent"
|
|
6151
|
-
| "TitleInsuranceAgent"
|
|
6152
|
-
| "EscrowAgent"
|
|
6153
|
-
| "SettlementAgent";
|
|
6154
|
-
|
|
6155
|
-
export type DraftTypeEnum = "NewLoan" | "EditLoan";
|
|
6156
|
-
|
|
6157
|
-
export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
|
|
6158
|
-
|
|
6159
|
-
export type EncompassCredentialsDetailSigningMethodEnum =
|
|
6160
|
-
| "ConsumerConnect"
|
|
6161
|
-
| "POSF";
|
|
6162
|
-
|
|
6163
|
-
export type EncompassCredentialsRequestSigningMethodEnum =
|
|
6164
|
-
| "ConsumerConnect"
|
|
6165
|
-
| "POSF";
|
|
6166
|
-
|
|
6167
|
-
export type EncompassRequestLogOperationTypeEnum =
|
|
6168
|
-
| "FieldUpdate"
|
|
6169
|
-
| "EConsentUpdate"
|
|
6170
|
-
| "DocumentSync"
|
|
6171
|
-
| "MilestoneUpdate"
|
|
6172
|
-
| "DocumentAttachment"
|
|
6173
|
-
| "General"
|
|
6174
|
-
| "FieldReader";
|
|
6175
|
-
|
|
6176
|
-
export type EncompassRequestLogOutcomeEnum =
|
|
6177
|
-
| "Success"
|
|
6178
|
-
| "Failure"
|
|
6179
|
-
| "PartialSuccess";
|
|
6180
|
-
|
|
6181
|
-
export type FusionReportFilterFilterTypeEnum =
|
|
6182
|
-
| "DateGreaterThanOrEqualTo"
|
|
6183
|
-
| "DateGreaterThan"
|
|
6184
|
-
| "DateLessThan"
|
|
6185
|
-
| "DateLessThanOrEqualTo"
|
|
6186
|
-
| "DateEquals"
|
|
6187
|
-
| "DateDoesntEqual"
|
|
6188
|
-
| "DateNonEmpty"
|
|
6189
|
-
| "DateEmpty"
|
|
6190
|
-
| "StringContains"
|
|
6191
|
-
| "StringEquals"
|
|
6192
|
-
| "StringNotEmpty"
|
|
6193
|
-
| "StringNotEquals"
|
|
6194
|
-
| "StringNotContains";
|
|
6195
|
-
|
|
6196
|
-
export type IpAddressAddressFamilyEnum =
|
|
6197
|
-
| "Unspecified"
|
|
6198
|
-
| "Unix"
|
|
6199
|
-
| "InterNetwork"
|
|
6200
|
-
| "ImpLink"
|
|
6201
|
-
| "Pup"
|
|
6202
|
-
| "Chaos"
|
|
6203
|
-
| "NS"
|
|
6204
|
-
| "Ipx"
|
|
6205
|
-
| "Iso"
|
|
6206
|
-
| "Osi"
|
|
6207
|
-
| "Ecma"
|
|
6208
|
-
| "DataKit"
|
|
6209
|
-
| "Ccitt"
|
|
6210
|
-
| "Sna"
|
|
6211
|
-
| "DecNet"
|
|
6212
|
-
| "DataLink"
|
|
6213
|
-
| "Lat"
|
|
6214
|
-
| "HyperChannel"
|
|
6215
|
-
| "AppleTalk"
|
|
6216
|
-
| "NetBios"
|
|
6217
|
-
| "VoiceView"
|
|
6218
|
-
| "FireFox"
|
|
6219
|
-
| "Banyan"
|
|
6220
|
-
| "Atm"
|
|
6221
|
-
| "InterNetworkV6"
|
|
6222
|
-
| "Cluster"
|
|
6223
|
-
| "Ieee12844"
|
|
6224
|
-
| "Irda"
|
|
6225
|
-
| "NetworkDesigners"
|
|
6226
|
-
| "Max"
|
|
6227
|
-
| "Packet"
|
|
6228
|
-
| "ControllerAreaNetwork"
|
|
6229
|
-
| "Unknown";
|
|
6230
|
-
|
|
6231
|
-
export type LoanSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
6232
|
-
|
|
6233
|
-
export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
|
|
6234
|
-
|
|
6235
|
-
export type LoanContactRoleEnum =
|
|
6236
|
-
| "Borrower"
|
|
6237
|
-
| "CoBorrower"
|
|
6238
|
-
| "NonBorrower"
|
|
6239
|
-
| "LoanOfficer"
|
|
6240
|
-
| "LoanProcessor"
|
|
6241
|
-
| "LoanOfficerAssistant"
|
|
6242
|
-
| "SupportingLoanOfficer"
|
|
6243
|
-
| "BuyerAgent"
|
|
6244
|
-
| "SellerAgent"
|
|
6245
|
-
| "TitleInsuranceAgent"
|
|
6246
|
-
| "EscrowAgent"
|
|
6247
|
-
| "SettlementAgent";
|
|
6248
|
-
|
|
6249
|
-
export type LoanImportStatusEnum =
|
|
6250
|
-
| "WaitingProcess"
|
|
6251
|
-
| "InProgress"
|
|
6252
|
-
| "Completed"
|
|
6253
|
-
| "Failed"
|
|
6254
|
-
| "Cancelled";
|
|
6255
|
-
|
|
6256
|
-
export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
6257
|
-
|
|
6258
|
-
export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
6259
|
-
|
|
6260
|
-
export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
6261
|
-
|
|
6262
|
-
export type LoanLogTypeEnum =
|
|
6263
|
-
| "Loan"
|
|
6264
|
-
| "Queue"
|
|
6265
|
-
| "POSFlagChanged"
|
|
6266
|
-
| "Verification"
|
|
6267
|
-
| "DocumentUploaded"
|
|
6268
|
-
| "LoanCreated"
|
|
6269
|
-
| "WorkflowSubmitted"
|
|
6270
|
-
| "UserInvitationSent"
|
|
6271
|
-
| "CoBorrowerAdded"
|
|
6272
|
-
| "TaskCompleted"
|
|
6273
|
-
| "LoanStatusChanged"
|
|
6274
|
-
| "EConsent"
|
|
6275
|
-
| "SensitiveDataPurge"
|
|
6276
|
-
| "ClosingDateUpdated"
|
|
6277
|
-
| "ConsumerConnectAssociation";
|
|
6278
|
-
|
|
6279
|
-
export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
6280
|
-
|
|
6281
|
-
export type LoanLogDetailTypeEnum =
|
|
6282
|
-
| "Loan"
|
|
6283
|
-
| "Queue"
|
|
6284
|
-
| "POSFlagChanged"
|
|
6285
|
-
| "Verification"
|
|
6286
|
-
| "DocumentUploaded"
|
|
6287
|
-
| "LoanCreated"
|
|
6288
|
-
| "WorkflowSubmitted"
|
|
6289
|
-
| "UserInvitationSent"
|
|
6290
|
-
| "CoBorrowerAdded"
|
|
6291
|
-
| "TaskCompleted"
|
|
6292
|
-
| "LoanStatusChanged"
|
|
6293
|
-
| "EConsent"
|
|
6294
|
-
| "SensitiveDataPurge"
|
|
6295
|
-
| "ClosingDateUpdated"
|
|
6296
|
-
| "ConsumerConnectAssociation";
|
|
6297
|
-
|
|
6298
|
-
export type LoanUserLoanRoleEnum =
|
|
6299
|
-
| "Borrower"
|
|
6300
|
-
| "CoBorrower"
|
|
6301
|
-
| "NonBorrower"
|
|
6302
|
-
| "LoanOfficer"
|
|
6303
|
-
| "LoanProcessor"
|
|
6304
|
-
| "LoanOfficerAssistant"
|
|
6305
|
-
| "SupportingLoanOfficer"
|
|
6306
|
-
| "BuyerAgent"
|
|
6307
|
-
| "SellerAgent"
|
|
6308
|
-
| "TitleInsuranceAgent"
|
|
6309
|
-
| "EscrowAgent"
|
|
6310
|
-
| "SettlementAgent";
|
|
6311
|
-
|
|
6312
|
-
export type SamlMetadataRequestSsoIntegrationEnum =
|
|
6313
|
-
| "ConsumerConnect"
|
|
6314
|
-
| "TheBigPOS"
|
|
6315
|
-
| "POSF";
|
|
6316
|
-
|
|
6317
|
-
export type SiteConfigurationTypeEnum =
|
|
6318
|
-
| "None"
|
|
6319
|
-
| "Account"
|
|
6320
|
-
| "Corporate"
|
|
6321
|
-
| "Branch"
|
|
6322
|
-
| "LoanOfficer"
|
|
6323
|
-
| "Partner";
|
|
6324
|
-
|
|
6325
|
-
export type SiteConfigurationByUrlTypeEnum =
|
|
6326
|
-
| "None"
|
|
6327
|
-
| "Account"
|
|
6328
|
-
| "Corporate"
|
|
6329
|
-
| "Branch"
|
|
6330
|
-
| "LoanOfficer"
|
|
6331
|
-
| "Partner";
|
|
6332
|
-
|
|
6333
|
-
export type SiteConfigurationReducedTypeEnum =
|
|
6334
|
-
| "None"
|
|
6335
|
-
| "Account"
|
|
6336
|
-
| "Corporate"
|
|
6337
|
-
| "Branch"
|
|
6338
|
-
| "LoanOfficer"
|
|
6339
|
-
| "Partner";
|
|
6340
|
-
|
|
6341
|
-
export type SiteConfigurationRequestTypeEnum =
|
|
6342
|
-
| "None"
|
|
6343
|
-
| "Account"
|
|
6344
|
-
| "Corporate"
|
|
6345
|
-
| "Branch"
|
|
6346
|
-
| "LoanOfficer"
|
|
6347
|
-
| "Partner";
|
|
6348
|
-
|
|
6349
|
-
export type SiteConfigurationSummaryTypeEnum =
|
|
6350
|
-
| "None"
|
|
6351
|
-
| "Account"
|
|
6352
|
-
| "Corporate"
|
|
6353
|
-
| "Branch"
|
|
6354
|
-
| "LoanOfficer"
|
|
6355
|
-
| "Partner";
|
|
6356
|
-
|
|
6357
|
-
export type UserDraftRoleEnum =
|
|
6358
|
-
| "Borrower"
|
|
6359
|
-
| "CoBorrower"
|
|
6360
|
-
| "NonBorrower"
|
|
6361
|
-
| "LoanOfficer"
|
|
6362
|
-
| "LoanProcessor"
|
|
6363
|
-
| "LoanOfficerAssistant"
|
|
6364
|
-
| "SupportingLoanOfficer"
|
|
6365
|
-
| "BuyerAgent"
|
|
6366
|
-
| "SellerAgent"
|
|
6367
|
-
| "TitleInsuranceAgent"
|
|
6368
|
-
| "EscrowAgent"
|
|
6369
|
-
| "SettlementAgent";
|
|
6370
|
-
|
|
6371
|
-
export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
|
|
6372
|
-
|
|
6373
|
-
export type UserLoanRoleEnum =
|
|
6374
|
-
| "Borrower"
|
|
6375
|
-
| "CoBorrower"
|
|
6376
|
-
| "NonBorrower"
|
|
6377
|
-
| "LoanOfficer"
|
|
6378
|
-
| "LoanProcessor"
|
|
6379
|
-
| "LoanOfficerAssistant"
|
|
6380
|
-
| "SupportingLoanOfficer"
|
|
6381
|
-
| "BuyerAgent"
|
|
6382
|
-
| "SellerAgent"
|
|
6383
|
-
| "TitleInsuranceAgent"
|
|
6384
|
-
| "EscrowAgent"
|
|
6385
|
-
| "SettlementAgent";
|
|
6386
|
-
|
|
6387
|
-
export type UserLoanConsentTypeEnum =
|
|
6388
|
-
| "Econsent"
|
|
6389
|
-
| "CreditAuthorization"
|
|
6390
|
-
| "Tcpa";
|
|
6391
|
-
|
|
6392
|
-
export type UserLoanConsentLosSyncStatusEnum =
|
|
6393
|
-
| "NotStarted"
|
|
6394
|
-
| "Failed"
|
|
6395
|
-
| "Success";
|
|
6396
|
-
|
|
6397
|
-
export type UserSummaryRoleEnum =
|
|
6398
|
-
| "Borrower"
|
|
6399
|
-
| "LoanOfficer"
|
|
6400
|
-
| "Admin"
|
|
6401
|
-
| "SuperAdmin"
|
|
6402
|
-
| "Realtor"
|
|
6403
|
-
| "SettlementAgent"
|
|
6404
|
-
| "LoanProcessor"
|
|
6405
|
-
| "LoanOfficerAssistant"
|
|
6406
|
-
| "SystemAdmin";
|
|
6407
|
-
|
|
6408
|
-
/** @default "Realtor" */
|
|
6409
|
-
export type GetPartnersParamsRoleEnum =
|
|
6410
|
-
| "Borrower"
|
|
6411
|
-
| "LoanOfficer"
|
|
6412
|
-
| "Admin"
|
|
6413
|
-
| "SuperAdmin"
|
|
6414
|
-
| "Realtor"
|
|
6415
|
-
| "SettlementAgent"
|
|
6416
|
-
| "LoanProcessor"
|
|
6417
|
-
| "LoanOfficerAssistant"
|
|
6418
|
-
| "SystemAdmin";
|
|
6419
|
-
|
|
6420
|
-
export type GetSamlMetadataParamsSSoIntegrationEnum =
|
|
6421
|
-
| "ConsumerConnect"
|
|
6422
|
-
| "TheBigPOS"
|
|
6423
|
-
| "POSF";
|
|
6424
|
-
|
|
6425
|
-
export type GetSamlMetadataParamsEnum =
|
|
6426
|
-
| "ConsumerConnect"
|
|
6427
|
-
| "TheBigPOS"
|
|
6428
|
-
| "POSF";
|
|
6429
|
-
|
|
6430
|
-
export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum =
|
|
6431
|
-
| "ConsumerConnect"
|
|
6432
|
-
| "TheBigPOS"
|
|
6433
|
-
| "POSF";
|
|
6434
|
-
|
|
6435
|
-
export type CreateOrReplaceSamlMetadataParamsEnum =
|
|
6436
|
-
| "ConsumerConnect"
|
|
6437
|
-
| "TheBigPOS"
|
|
6438
|
-
| "POSF";
|
|
6439
|
-
|
|
6440
6271
|
import type {
|
|
6441
6272
|
AxiosInstance,
|
|
6442
6273
|
AxiosRequestConfig,
|
|
@@ -9027,7 +8858,7 @@ export class Api<
|
|
|
9027
8858
|
method: "POST",
|
|
9028
8859
|
body: data,
|
|
9029
8860
|
secure: true,
|
|
9030
|
-
type: ContentType.
|
|
8861
|
+
type: ContentType.JsonPatch,
|
|
9031
8862
|
format: "json",
|
|
9032
8863
|
...params,
|
|
9033
8864
|
}),
|
|
@@ -9300,7 +9131,7 @@ export class Api<
|
|
|
9300
9131
|
method: "POST",
|
|
9301
9132
|
body: data,
|
|
9302
9133
|
secure: true,
|
|
9303
|
-
type: ContentType.
|
|
9134
|
+
type: ContentType.JsonPatch,
|
|
9304
9135
|
format: "json",
|
|
9305
9136
|
...params,
|
|
9306
9137
|
}),
|
|
@@ -9539,7 +9370,7 @@ export class Api<
|
|
|
9539
9370
|
method: "POST",
|
|
9540
9371
|
body: data,
|
|
9541
9372
|
secure: true,
|
|
9542
|
-
type: ContentType.
|
|
9373
|
+
type: ContentType.JsonPatch,
|
|
9543
9374
|
format: "json",
|
|
9544
9375
|
...params,
|
|
9545
9376
|
}),
|
|
@@ -10008,7 +9839,7 @@ export class Api<
|
|
|
10008
9839
|
* @summary Download By ID
|
|
10009
9840
|
* @request GET:/api/loans/{loanId}/documents/{documentId}/download
|
|
10010
9841
|
* @secure
|
|
10011
|
-
* @response `200` `
|
|
9842
|
+
* @response `200` `string` Success
|
|
10012
9843
|
* @response `404` `ProblemDetails` Not Found
|
|
10013
9844
|
*/
|
|
10014
9845
|
downloadLoanDocument: (
|
|
@@ -10016,7 +9847,7 @@ export class Api<
|
|
|
10016
9847
|
documentId: string,
|
|
10017
9848
|
params: RequestParams = {},
|
|
10018
9849
|
) =>
|
|
10019
|
-
this.request<
|
|
9850
|
+
this.request<string, ProblemDetails>({
|
|
10020
9851
|
path: `/api/loans/${loanId}/documents/${documentId}/download`,
|
|
10021
9852
|
method: "GET",
|
|
10022
9853
|
secure: true,
|
|
@@ -11111,7 +10942,7 @@ export class Api<
|
|
|
11111
10942
|
method: "POST",
|
|
11112
10943
|
body: data,
|
|
11113
10944
|
secure: true,
|
|
11114
|
-
type: ContentType.
|
|
10945
|
+
type: ContentType.JsonPatch,
|
|
11115
10946
|
format: "json",
|
|
11116
10947
|
...params,
|
|
11117
10948
|
}),
|
|
@@ -12137,7 +11968,16 @@ export class Api<
|
|
|
12137
11968
|
query?: {
|
|
12138
11969
|
showAll?: boolean;
|
|
12139
11970
|
/** @default "Realtor" */
|
|
12140
|
-
role?:
|
|
11971
|
+
role?:
|
|
11972
|
+
| "Borrower"
|
|
11973
|
+
| "LoanOfficer"
|
|
11974
|
+
| "Admin"
|
|
11975
|
+
| "SuperAdmin"
|
|
11976
|
+
| "Realtor"
|
|
11977
|
+
| "SettlementAgent"
|
|
11978
|
+
| "LoanProcessor"
|
|
11979
|
+
| "LoanOfficerAssistant"
|
|
11980
|
+
| "SystemAdmin";
|
|
12141
11981
|
/** @format int32 */
|
|
12142
11982
|
pageSize?: number;
|
|
12143
11983
|
/** @format int32 */
|
|
@@ -12473,7 +12313,7 @@ export class Api<
|
|
|
12473
12313
|
* @response `404` `ProblemDetails` Not Found
|
|
12474
12314
|
*/
|
|
12475
12315
|
getSamlMetadata: (
|
|
12476
|
-
sSoIntegration:
|
|
12316
|
+
sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF",
|
|
12477
12317
|
ssoIntegration: string,
|
|
12478
12318
|
params: RequestParams = {},
|
|
12479
12319
|
) =>
|
|
@@ -12495,7 +12335,7 @@ export class Api<
|
|
|
12495
12335
|
* @response `200` `File` Success
|
|
12496
12336
|
*/
|
|
12497
12337
|
createOrReplaceSamlMetadata: (
|
|
12498
|
-
sSoIntegration:
|
|
12338
|
+
sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF",
|
|
12499
12339
|
ssoIntegration: string,
|
|
12500
12340
|
params: RequestParams = {},
|
|
12501
12341
|
) =>
|