@matech/thebigpos-sdk 2.40.4-rc0 → 2.40.4-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/.husky/pre-commit +2 -2
- package/LICENSE +21 -21
- package/README.md +73 -73
- package/dist/index.d.ts +131 -134
- package/dist/index.js +43 -8
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +448 -559
- package/tsconfig.json +27 -27
package/src/index.ts
CHANGED
|
@@ -356,6 +356,8 @@ export type EncompassLogOperationType =
|
|
|
356
356
|
| "General"
|
|
357
357
|
| "FieldReader";
|
|
358
358
|
|
|
359
|
+
export type EncompassEnvironment = "Production" | "UAT";
|
|
360
|
+
|
|
359
361
|
export type DraftType = "NewLoan" | "EditLoan";
|
|
360
362
|
|
|
361
363
|
export type CustomFieldEntityType = "Loan";
|
|
@@ -390,7 +392,9 @@ export type AuditChangeType =
|
|
|
390
392
|
| "Modified"
|
|
391
393
|
| "SoftDeleted"
|
|
392
394
|
| "HardDeleted"
|
|
393
|
-
| "Restored"
|
|
395
|
+
| "Restored"
|
|
396
|
+
| "Deactivated"
|
|
397
|
+
| "Reactivated";
|
|
394
398
|
|
|
395
399
|
export type AddressFamily =
|
|
396
400
|
| "Unspecified"
|
|
@@ -479,7 +483,7 @@ export interface AccountBilling {
|
|
|
479
483
|
}
|
|
480
484
|
|
|
481
485
|
export interface AccountBillingRequest {
|
|
482
|
-
billingType:
|
|
486
|
+
billingType: "ClosedLoan" | "LoanOfficer";
|
|
483
487
|
/**
|
|
484
488
|
* @format double
|
|
485
489
|
* @min 0
|
|
@@ -488,6 +492,28 @@ export interface AccountBillingRequest {
|
|
|
488
492
|
contractedRate: number;
|
|
489
493
|
}
|
|
490
494
|
|
|
495
|
+
export interface AccountDeactivated {
|
|
496
|
+
accountDeactivated: boolean;
|
|
497
|
+
email: string;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
export interface AccountReactivationCompleteRequest {
|
|
501
|
+
/** @format uuid */
|
|
502
|
+
token: string;
|
|
503
|
+
/** @minLength 8 */
|
|
504
|
+
newPassword: string;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
export interface AccountReactivationRequest {
|
|
508
|
+
/**
|
|
509
|
+
* @format email
|
|
510
|
+
* @minLength 1
|
|
511
|
+
*/
|
|
512
|
+
email: string;
|
|
513
|
+
/** @format uuid */
|
|
514
|
+
siteConfigurationId: string;
|
|
515
|
+
}
|
|
516
|
+
|
|
491
517
|
export interface AccountSettings {
|
|
492
518
|
isSmsEnabled: boolean;
|
|
493
519
|
isLoanEditEnabled: boolean;
|
|
@@ -817,7 +843,14 @@ export interface AuditLogEntry {
|
|
|
817
843
|
/** @format uuid */
|
|
818
844
|
id: string;
|
|
819
845
|
entityType: string;
|
|
820
|
-
changeType:
|
|
846
|
+
changeType:
|
|
847
|
+
| "Created"
|
|
848
|
+
| "Modified"
|
|
849
|
+
| "SoftDeleted"
|
|
850
|
+
| "HardDeleted"
|
|
851
|
+
| "Restored"
|
|
852
|
+
| "Deactivated"
|
|
853
|
+
| "Reactivated";
|
|
821
854
|
/** @format uuid */
|
|
822
855
|
entityId: string;
|
|
823
856
|
performedBy?: AuditLogUser | null;
|
|
@@ -1131,7 +1164,7 @@ export interface CorporateSearchCriteria {
|
|
|
1131
1164
|
}
|
|
1132
1165
|
|
|
1133
1166
|
export interface CreateAccessScopeRequest {
|
|
1134
|
-
scopeType:
|
|
1167
|
+
scopeType: "User" | "Branch";
|
|
1135
1168
|
/** @format uuid */
|
|
1136
1169
|
userId?: string | null;
|
|
1137
1170
|
/** @format uuid */
|
|
@@ -1155,7 +1188,7 @@ export interface CreateAccountRequest {
|
|
|
1155
1188
|
*/
|
|
1156
1189
|
nlmsid: number;
|
|
1157
1190
|
settings: AccountSettingsRequest;
|
|
1158
|
-
environment:
|
|
1191
|
+
environment: "Development" | "Staging" | "UAT" | "Production";
|
|
1159
1192
|
losIntegration: LOSIntegration;
|
|
1160
1193
|
billingSettings: AccountBillingRequest;
|
|
1161
1194
|
}
|
|
@@ -1193,8 +1226,15 @@ export interface CreateCustomFieldDefinitionRequest {
|
|
|
1193
1226
|
name: string;
|
|
1194
1227
|
defaultValue?: string | null;
|
|
1195
1228
|
regexPattern?: string | null;
|
|
1196
|
-
dataType:
|
|
1197
|
-
|
|
1229
|
+
dataType:
|
|
1230
|
+
| "String"
|
|
1231
|
+
| "Number"
|
|
1232
|
+
| "Decimal"
|
|
1233
|
+
| "Boolean"
|
|
1234
|
+
| "Date"
|
|
1235
|
+
| "SingleSelect"
|
|
1236
|
+
| "MultiSelect";
|
|
1237
|
+
entityType: "Loan";
|
|
1198
1238
|
options?: CustomFieldOptionRequest[] | null;
|
|
1199
1239
|
permissions?: CustomFieldPermissionRequest[] | null;
|
|
1200
1240
|
}
|
|
@@ -1216,7 +1256,20 @@ export interface CreateDocumentTemplateRequest {
|
|
|
1216
1256
|
export interface CreateGroupMemberRequest {
|
|
1217
1257
|
/** @format uuid */
|
|
1218
1258
|
userId: string;
|
|
1219
|
-
loanRole:
|
|
1259
|
+
loanRole:
|
|
1260
|
+
| "Borrower"
|
|
1261
|
+
| "CoBorrower"
|
|
1262
|
+
| "NonBorrower"
|
|
1263
|
+
| "LoanOfficer"
|
|
1264
|
+
| "LoanProcessor"
|
|
1265
|
+
| "LoanOfficerAssistant"
|
|
1266
|
+
| "SupportingLoanOfficer"
|
|
1267
|
+
| "BuyerAgent"
|
|
1268
|
+
| "SellerAgent"
|
|
1269
|
+
| "TitleInsuranceAgent"
|
|
1270
|
+
| "EscrowAgent"
|
|
1271
|
+
| "SettlementAgent"
|
|
1272
|
+
| "Admin";
|
|
1220
1273
|
}
|
|
1221
1274
|
|
|
1222
1275
|
export interface CreateInviteRequest {
|
|
@@ -1228,7 +1281,7 @@ export interface CreateInviteRequest {
|
|
|
1228
1281
|
emailAddress: string;
|
|
1229
1282
|
phoneNumber?: string | null;
|
|
1230
1283
|
/** @deprecated */
|
|
1231
|
-
relationship:
|
|
1284
|
+
relationship: "NotApplicable" | "Spouse" | "NonSpouse";
|
|
1232
1285
|
loanID: string;
|
|
1233
1286
|
route?: string | null;
|
|
1234
1287
|
/** @format uuid */
|
|
@@ -1260,7 +1313,7 @@ export interface CreateLoanImportRequest {
|
|
|
1260
1313
|
* @minLength 1
|
|
1261
1314
|
*/
|
|
1262
1315
|
startDate: string;
|
|
1263
|
-
importMode:
|
|
1316
|
+
importMode: "All" | "NewOnly" | "UpdateOnly";
|
|
1264
1317
|
}
|
|
1265
1318
|
|
|
1266
1319
|
export interface CreateSession {
|
|
@@ -1282,7 +1335,20 @@ export interface CreateUserDeviceRequest {
|
|
|
1282
1335
|
}
|
|
1283
1336
|
|
|
1284
1337
|
export interface CreateUserDraft {
|
|
1285
|
-
loanRole:
|
|
1338
|
+
loanRole:
|
|
1339
|
+
| "Borrower"
|
|
1340
|
+
| "CoBorrower"
|
|
1341
|
+
| "NonBorrower"
|
|
1342
|
+
| "LoanOfficer"
|
|
1343
|
+
| "LoanProcessor"
|
|
1344
|
+
| "LoanOfficerAssistant"
|
|
1345
|
+
| "SupportingLoanOfficer"
|
|
1346
|
+
| "BuyerAgent"
|
|
1347
|
+
| "SellerAgent"
|
|
1348
|
+
| "TitleInsuranceAgent"
|
|
1349
|
+
| "EscrowAgent"
|
|
1350
|
+
| "SettlementAgent"
|
|
1351
|
+
| "Admin";
|
|
1286
1352
|
}
|
|
1287
1353
|
|
|
1288
1354
|
export interface CreateUserGroupRequest {
|
|
@@ -1369,8 +1435,15 @@ export interface CustomFieldDefinition {
|
|
|
1369
1435
|
name: string;
|
|
1370
1436
|
defaultValue?: string | null;
|
|
1371
1437
|
regexPattern?: string | null;
|
|
1372
|
-
dataType:
|
|
1373
|
-
|
|
1438
|
+
dataType:
|
|
1439
|
+
| "String"
|
|
1440
|
+
| "Number"
|
|
1441
|
+
| "Decimal"
|
|
1442
|
+
| "Boolean"
|
|
1443
|
+
| "Date"
|
|
1444
|
+
| "SingleSelect"
|
|
1445
|
+
| "MultiSelect";
|
|
1446
|
+
entityType: "Loan";
|
|
1374
1447
|
options: CustomFieldOption[];
|
|
1375
1448
|
permissions: CustomFieldPermission[];
|
|
1376
1449
|
encompassMapping?: EncompassMapping | null;
|
|
@@ -1385,7 +1458,14 @@ export interface CustomFieldEntry {
|
|
|
1385
1458
|
displayOrder: number;
|
|
1386
1459
|
name: string;
|
|
1387
1460
|
value: string;
|
|
1388
|
-
dataType:
|
|
1461
|
+
dataType:
|
|
1462
|
+
| "String"
|
|
1463
|
+
| "Number"
|
|
1464
|
+
| "Decimal"
|
|
1465
|
+
| "Boolean"
|
|
1466
|
+
| "Date"
|
|
1467
|
+
| "SingleSelect"
|
|
1468
|
+
| "MultiSelect";
|
|
1389
1469
|
}
|
|
1390
1470
|
|
|
1391
1471
|
export interface CustomFieldOption {
|
|
@@ -1405,13 +1485,31 @@ export interface CustomFieldOptionRequest {
|
|
|
1405
1485
|
export interface CustomFieldPermission {
|
|
1406
1486
|
/** @format uuid */
|
|
1407
1487
|
id: string;
|
|
1408
|
-
role:
|
|
1409
|
-
|
|
1488
|
+
role:
|
|
1489
|
+
| "Borrower"
|
|
1490
|
+
| "LoanOfficer"
|
|
1491
|
+
| "Admin"
|
|
1492
|
+
| "SuperAdmin"
|
|
1493
|
+
| "Realtor"
|
|
1494
|
+
| "SettlementAgent"
|
|
1495
|
+
| "LoanProcessor"
|
|
1496
|
+
| "LoanOfficerAssistant"
|
|
1497
|
+
| "SystemAdmin";
|
|
1498
|
+
accessLevel: "NoAccess" | "ReadOnly" | "ReadWrite";
|
|
1410
1499
|
}
|
|
1411
1500
|
|
|
1412
1501
|
export interface CustomFieldPermissionRequest {
|
|
1413
|
-
role:
|
|
1414
|
-
|
|
1502
|
+
role:
|
|
1503
|
+
| "Borrower"
|
|
1504
|
+
| "LoanOfficer"
|
|
1505
|
+
| "Admin"
|
|
1506
|
+
| "SuperAdmin"
|
|
1507
|
+
| "Realtor"
|
|
1508
|
+
| "SettlementAgent"
|
|
1509
|
+
| "LoanProcessor"
|
|
1510
|
+
| "LoanOfficerAssistant"
|
|
1511
|
+
| "SystemAdmin";
|
|
1512
|
+
accessLevel: "NoAccess" | "ReadOnly" | "ReadWrite";
|
|
1415
1513
|
}
|
|
1416
1514
|
|
|
1417
1515
|
export interface CustomFieldValue {
|
|
@@ -1423,7 +1521,14 @@ export interface CustomFieldValue {
|
|
|
1423
1521
|
customFieldDefinitionID: string;
|
|
1424
1522
|
value: string;
|
|
1425
1523
|
definitionName: string;
|
|
1426
|
-
dataType:
|
|
1524
|
+
dataType:
|
|
1525
|
+
| "String"
|
|
1526
|
+
| "Number"
|
|
1527
|
+
| "Decimal"
|
|
1528
|
+
| "Boolean"
|
|
1529
|
+
| "Date"
|
|
1530
|
+
| "SingleSelect"
|
|
1531
|
+
| "MultiSelect";
|
|
1427
1532
|
}
|
|
1428
1533
|
|
|
1429
1534
|
export interface DetailedUser {
|
|
@@ -1683,7 +1788,7 @@ export interface Draft {
|
|
|
1683
1788
|
siteConfiguration: SiteConfigurationReduced;
|
|
1684
1789
|
/** @format uuid */
|
|
1685
1790
|
loanID?: string | null;
|
|
1686
|
-
type:
|
|
1791
|
+
type: "NewLoan" | "EditLoan";
|
|
1687
1792
|
isCoBorrower: boolean;
|
|
1688
1793
|
}
|
|
1689
1794
|
|
|
@@ -1702,7 +1807,7 @@ export interface DraftContent {
|
|
|
1702
1807
|
siteConfiguration: SiteConfigurationReduced;
|
|
1703
1808
|
/** @format uuid */
|
|
1704
1809
|
loanID?: string | null;
|
|
1705
|
-
type:
|
|
1810
|
+
type: "NewLoan" | "EditLoan";
|
|
1706
1811
|
isCoBorrower: boolean;
|
|
1707
1812
|
applicationPayload: any;
|
|
1708
1813
|
}
|
|
@@ -1792,7 +1897,9 @@ export interface EncompassCredentialsDetail {
|
|
|
1792
1897
|
defaultLoanOfficerUserName?: string | null;
|
|
1793
1898
|
clearStateIfUnlicensed: boolean;
|
|
1794
1899
|
baseUrl?: string | null;
|
|
1795
|
-
|
|
1900
|
+
encompassEnvironment: "Production" | "UAT";
|
|
1901
|
+
consumerConnectWidgetHost?: string | null;
|
|
1902
|
+
signingMethod: "ConsumerConnect" | "POSF";
|
|
1796
1903
|
subscriptionId?: string | null;
|
|
1797
1904
|
environment?: string | null;
|
|
1798
1905
|
}
|
|
@@ -1808,7 +1915,9 @@ export interface EncompassCredentialsRequest {
|
|
|
1808
1915
|
defaultLoanOfficerUserName?: string | null;
|
|
1809
1916
|
clearStateIfUnlicensed: boolean;
|
|
1810
1917
|
baseUrl?: string | null;
|
|
1811
|
-
|
|
1918
|
+
encompassEnvironment: "Production" | "UAT";
|
|
1919
|
+
consumerConnectWidgetHost?: string | null;
|
|
1920
|
+
signingMethod: "ConsumerConnect" | "POSF";
|
|
1812
1921
|
subscriptionId?: string | null;
|
|
1813
1922
|
environment?: string | null;
|
|
1814
1923
|
clientID?: string | null;
|
|
@@ -1847,6 +1956,10 @@ export interface EncompassFieldListItem {
|
|
|
1847
1956
|
inUse: boolean;
|
|
1848
1957
|
}
|
|
1849
1958
|
|
|
1959
|
+
export interface EncompassIntegrationSettings {
|
|
1960
|
+
consumerConnectWidgetHost?: string | null;
|
|
1961
|
+
}
|
|
1962
|
+
|
|
1850
1963
|
export interface EncompassLogSearchCriteria {
|
|
1851
1964
|
searchText?: string | null;
|
|
1852
1965
|
operationTypes?: EncompassLogOperationType[] | null;
|
|
@@ -1925,8 +2038,15 @@ export interface EncompassRequestLog {
|
|
|
1925
2038
|
losId?: string | null;
|
|
1926
2039
|
/** @format uuid */
|
|
1927
2040
|
accountId: string;
|
|
1928
|
-
operationType:
|
|
1929
|
-
|
|
2041
|
+
operationType:
|
|
2042
|
+
| "FieldUpdate"
|
|
2043
|
+
| "ConsentUpdate"
|
|
2044
|
+
| "DocumentSync"
|
|
2045
|
+
| "MilestoneUpdate"
|
|
2046
|
+
| "DocumentAttachment"
|
|
2047
|
+
| "General"
|
|
2048
|
+
| "FieldReader";
|
|
2049
|
+
outcome: "Success" | "Failure" | "PartialSuccess";
|
|
1930
2050
|
message: string;
|
|
1931
2051
|
endpoint?: string | null;
|
|
1932
2052
|
httpMethod?: string | null;
|
|
@@ -1990,11 +2110,6 @@ export interface FileWithBytes {
|
|
|
1990
2110
|
extension?: string | null;
|
|
1991
2111
|
}
|
|
1992
2112
|
|
|
1993
|
-
export interface ForcePasswordReset {
|
|
1994
|
-
forcePasswordReset: boolean;
|
|
1995
|
-
email: string;
|
|
1996
|
-
}
|
|
1997
|
-
|
|
1998
2113
|
export interface Form {
|
|
1999
2114
|
/** @format date-time */
|
|
2000
2115
|
createdAt: string;
|
|
@@ -2163,7 +2278,20 @@ export interface FusionFieldDisplay {
|
|
|
2163
2278
|
}
|
|
2164
2279
|
|
|
2165
2280
|
export interface FusionReportFilter {
|
|
2166
|
-
filterType:
|
|
2281
|
+
filterType:
|
|
2282
|
+
| "DateGreaterThanOrEqualTo"
|
|
2283
|
+
| "DateGreaterThan"
|
|
2284
|
+
| "DateLessThan"
|
|
2285
|
+
| "DateLessThanOrEqualTo"
|
|
2286
|
+
| "DateEquals"
|
|
2287
|
+
| "DateDoesntEqual"
|
|
2288
|
+
| "DateNonEmpty"
|
|
2289
|
+
| "DateEmpty"
|
|
2290
|
+
| "StringContains"
|
|
2291
|
+
| "StringEquals"
|
|
2292
|
+
| "StringNotEmpty"
|
|
2293
|
+
| "StringNotEquals"
|
|
2294
|
+
| "StringNotContains";
|
|
2167
2295
|
targetField: string;
|
|
2168
2296
|
targetValue: string;
|
|
2169
2297
|
}
|
|
@@ -2291,7 +2419,40 @@ export interface GuidPatchOperation {
|
|
|
2291
2419
|
}
|
|
2292
2420
|
|
|
2293
2421
|
export interface IPAddress {
|
|
2294
|
-
addressFamily:
|
|
2422
|
+
addressFamily:
|
|
2423
|
+
| "Unspecified"
|
|
2424
|
+
| "Unix"
|
|
2425
|
+
| "InterNetwork"
|
|
2426
|
+
| "ImpLink"
|
|
2427
|
+
| "Pup"
|
|
2428
|
+
| "Chaos"
|
|
2429
|
+
| "NS"
|
|
2430
|
+
| "Ipx"
|
|
2431
|
+
| "Iso"
|
|
2432
|
+
| "Osi"
|
|
2433
|
+
| "Ecma"
|
|
2434
|
+
| "DataKit"
|
|
2435
|
+
| "Ccitt"
|
|
2436
|
+
| "Sna"
|
|
2437
|
+
| "DecNet"
|
|
2438
|
+
| "DataLink"
|
|
2439
|
+
| "Lat"
|
|
2440
|
+
| "HyperChannel"
|
|
2441
|
+
| "AppleTalk"
|
|
2442
|
+
| "NetBios"
|
|
2443
|
+
| "VoiceView"
|
|
2444
|
+
| "FireFox"
|
|
2445
|
+
| "Banyan"
|
|
2446
|
+
| "Atm"
|
|
2447
|
+
| "InterNetworkV6"
|
|
2448
|
+
| "Cluster"
|
|
2449
|
+
| "Ieee12844"
|
|
2450
|
+
| "Irda"
|
|
2451
|
+
| "NetworkDesigners"
|
|
2452
|
+
| "Max"
|
|
2453
|
+
| "Packet"
|
|
2454
|
+
| "ControllerAreaNetwork"
|
|
2455
|
+
| "Unknown";
|
|
2295
2456
|
/** @format int64 */
|
|
2296
2457
|
scopeId: number;
|
|
2297
2458
|
isIPv6Multicast: boolean;
|
|
@@ -2351,6 +2512,10 @@ export interface ImportUserLoanTaskRequest {
|
|
|
2351
2512
|
userID: string;
|
|
2352
2513
|
}
|
|
2353
2514
|
|
|
2515
|
+
export interface IntegrationSettings {
|
|
2516
|
+
encompass?: EncompassIntegrationSettings | null;
|
|
2517
|
+
}
|
|
2518
|
+
|
|
2354
2519
|
export interface Invite {
|
|
2355
2520
|
/** @format uuid */
|
|
2356
2521
|
id: string;
|
|
@@ -2559,7 +2724,7 @@ export interface Loan {
|
|
|
2559
2724
|
userLoans: UserLoan[];
|
|
2560
2725
|
contacts: LoanContact[];
|
|
2561
2726
|
customFields: CustomFieldEntry[];
|
|
2562
|
-
signingMethod:
|
|
2727
|
+
signingMethod: "ConsumerConnect" | "POSF";
|
|
2563
2728
|
}
|
|
2564
2729
|
|
|
2565
2730
|
export interface LoanApplication {
|
|
@@ -2618,7 +2783,7 @@ export interface LoanBorrower {
|
|
|
2618
2783
|
citizenship?: LoanCitizenship | null;
|
|
2619
2784
|
maritalStatus?: LoanMaritalStatus | null;
|
|
2620
2785
|
languagePreference?: LoanLanguagePreference | null;
|
|
2621
|
-
applicationStatus:
|
|
2786
|
+
applicationStatus: "Draft" | "Complete";
|
|
2622
2787
|
/** @format int32 */
|
|
2623
2788
|
numberOfDependents?: number | null;
|
|
2624
2789
|
isPrimaryBorrower: boolean;
|
|
@@ -3543,7 +3708,20 @@ export interface LoanContact {
|
|
|
3543
3708
|
email?: string | null;
|
|
3544
3709
|
phone?: string | null;
|
|
3545
3710
|
companyName?: string | null;
|
|
3546
|
-
role:
|
|
3711
|
+
role:
|
|
3712
|
+
| "Borrower"
|
|
3713
|
+
| "CoBorrower"
|
|
3714
|
+
| "NonBorrower"
|
|
3715
|
+
| "LoanOfficer"
|
|
3716
|
+
| "LoanProcessor"
|
|
3717
|
+
| "LoanOfficerAssistant"
|
|
3718
|
+
| "SupportingLoanOfficer"
|
|
3719
|
+
| "BuyerAgent"
|
|
3720
|
+
| "SellerAgent"
|
|
3721
|
+
| "TitleInsuranceAgent"
|
|
3722
|
+
| "EscrowAgent"
|
|
3723
|
+
| "SettlementAgent"
|
|
3724
|
+
| "Admin";
|
|
3547
3725
|
}
|
|
3548
3726
|
|
|
3549
3727
|
export interface LoanContactList {
|
|
@@ -3597,13 +3775,39 @@ export interface LoanDocumentFolderPermission {
|
|
|
3597
3775
|
id: string;
|
|
3598
3776
|
/** @format uuid */
|
|
3599
3777
|
loanDocumentFolderID: string;
|
|
3600
|
-
role:
|
|
3601
|
-
|
|
3778
|
+
role:
|
|
3779
|
+
| "Borrower"
|
|
3780
|
+
| "CoBorrower"
|
|
3781
|
+
| "NonBorrower"
|
|
3782
|
+
| "LoanOfficer"
|
|
3783
|
+
| "LoanProcessor"
|
|
3784
|
+
| "LoanOfficerAssistant"
|
|
3785
|
+
| "SupportingLoanOfficer"
|
|
3786
|
+
| "BuyerAgent"
|
|
3787
|
+
| "SellerAgent"
|
|
3788
|
+
| "TitleInsuranceAgent"
|
|
3789
|
+
| "EscrowAgent"
|
|
3790
|
+
| "SettlementAgent"
|
|
3791
|
+
| "Admin";
|
|
3792
|
+
level: "None" | "Read" | "Write" | "Manage";
|
|
3602
3793
|
}
|
|
3603
3794
|
|
|
3604
3795
|
export interface LoanDocumentFolderPermissionRequest {
|
|
3605
|
-
role:
|
|
3606
|
-
|
|
3796
|
+
role:
|
|
3797
|
+
| "Borrower"
|
|
3798
|
+
| "CoBorrower"
|
|
3799
|
+
| "NonBorrower"
|
|
3800
|
+
| "LoanOfficer"
|
|
3801
|
+
| "LoanProcessor"
|
|
3802
|
+
| "LoanOfficerAssistant"
|
|
3803
|
+
| "SupportingLoanOfficer"
|
|
3804
|
+
| "BuyerAgent"
|
|
3805
|
+
| "SellerAgent"
|
|
3806
|
+
| "TitleInsuranceAgent"
|
|
3807
|
+
| "EscrowAgent"
|
|
3808
|
+
| "SettlementAgent"
|
|
3809
|
+
| "Admin";
|
|
3810
|
+
level: "None" | "Read" | "Write" | "Manage";
|
|
3607
3811
|
}
|
|
3608
3812
|
|
|
3609
3813
|
export interface LoanDocumentFolderUsage {
|
|
@@ -3721,14 +3925,19 @@ export interface LoanImport {
|
|
|
3721
3925
|
/** @format int32 */
|
|
3722
3926
|
importedCount: number;
|
|
3723
3927
|
statusMessage?: string | null;
|
|
3724
|
-
status:
|
|
3725
|
-
|
|
3928
|
+
status:
|
|
3929
|
+
| "WaitingProcess"
|
|
3930
|
+
| "InProgress"
|
|
3931
|
+
| "Completed"
|
|
3932
|
+
| "Failed"
|
|
3933
|
+
| "Cancelled";
|
|
3934
|
+
importMode: "All" | "NewOnly" | "UpdateOnly";
|
|
3726
3935
|
/** @format date-time */
|
|
3727
3936
|
createdAt?: string | null;
|
|
3728
3937
|
}
|
|
3729
3938
|
|
|
3730
3939
|
export interface LoanImportLog {
|
|
3731
|
-
level:
|
|
3940
|
+
level: "None" | "Info" | "Warning" | "Error";
|
|
3732
3941
|
message: string;
|
|
3733
3942
|
/** @format date-time */
|
|
3734
3943
|
createdAt: string;
|
|
@@ -3789,8 +3998,24 @@ export interface LoanListPaginated {
|
|
|
3789
3998
|
export interface LoanLog {
|
|
3790
3999
|
/** @format uuid */
|
|
3791
4000
|
id: string;
|
|
3792
|
-
level:
|
|
3793
|
-
type:
|
|
4001
|
+
level: "None" | "Info" | "Warning" | "Error";
|
|
4002
|
+
type:
|
|
4003
|
+
| "Loan"
|
|
4004
|
+
| "Queue"
|
|
4005
|
+
| "POSFlagChanged"
|
|
4006
|
+
| "Verification"
|
|
4007
|
+
| "DocumentUploaded"
|
|
4008
|
+
| "LoanCreated"
|
|
4009
|
+
| "WorkflowSubmitted"
|
|
4010
|
+
| "UserInvitationSent"
|
|
4011
|
+
| "CoBorrowerAdded"
|
|
4012
|
+
| "TaskCompleted"
|
|
4013
|
+
| "LoanStatusChanged"
|
|
4014
|
+
| "Consent"
|
|
4015
|
+
| "SensitiveDataPurge"
|
|
4016
|
+
| "ClosingDateUpdated"
|
|
4017
|
+
| "ConsumerConnectAssociation"
|
|
4018
|
+
| "TaskReminderSent";
|
|
3794
4019
|
message: string;
|
|
3795
4020
|
/** @format date-time */
|
|
3796
4021
|
createdAt: string;
|
|
@@ -3799,8 +4024,24 @@ export interface LoanLog {
|
|
|
3799
4024
|
export interface LoanLogDetail {
|
|
3800
4025
|
/** @format uuid */
|
|
3801
4026
|
id: string;
|
|
3802
|
-
level:
|
|
3803
|
-
type:
|
|
4027
|
+
level: "None" | "Info" | "Warning" | "Error";
|
|
4028
|
+
type:
|
|
4029
|
+
| "Loan"
|
|
4030
|
+
| "Queue"
|
|
4031
|
+
| "POSFlagChanged"
|
|
4032
|
+
| "Verification"
|
|
4033
|
+
| "DocumentUploaded"
|
|
4034
|
+
| "LoanCreated"
|
|
4035
|
+
| "WorkflowSubmitted"
|
|
4036
|
+
| "UserInvitationSent"
|
|
4037
|
+
| "CoBorrowerAdded"
|
|
4038
|
+
| "TaskCompleted"
|
|
4039
|
+
| "LoanStatusChanged"
|
|
4040
|
+
| "Consent"
|
|
4041
|
+
| "SensitiveDataPurge"
|
|
4042
|
+
| "ClosingDateUpdated"
|
|
4043
|
+
| "ConsumerConnectAssociation"
|
|
4044
|
+
| "TaskReminderSent";
|
|
3804
4045
|
message: string;
|
|
3805
4046
|
/** @format date-time */
|
|
3806
4047
|
createdAt: string;
|
|
@@ -4088,7 +4329,7 @@ export interface LoanTaskSearchRequest {
|
|
|
4088
4329
|
}
|
|
4089
4330
|
|
|
4090
4331
|
export interface LoanTaskStatusSummary {
|
|
4091
|
-
status:
|
|
4332
|
+
status: "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
|
|
4092
4333
|
/** @format int32 */
|
|
4093
4334
|
count: number;
|
|
4094
4335
|
}
|
|
@@ -4101,7 +4342,20 @@ export interface LoanUser {
|
|
|
4101
4342
|
email: string;
|
|
4102
4343
|
phone?: string | null;
|
|
4103
4344
|
role: string;
|
|
4104
|
-
loanRole:
|
|
4345
|
+
loanRole:
|
|
4346
|
+
| "Borrower"
|
|
4347
|
+
| "CoBorrower"
|
|
4348
|
+
| "NonBorrower"
|
|
4349
|
+
| "LoanOfficer"
|
|
4350
|
+
| "LoanProcessor"
|
|
4351
|
+
| "LoanOfficerAssistant"
|
|
4352
|
+
| "SupportingLoanOfficer"
|
|
4353
|
+
| "BuyerAgent"
|
|
4354
|
+
| "SellerAgent"
|
|
4355
|
+
| "TitleInsuranceAgent"
|
|
4356
|
+
| "EscrowAgent"
|
|
4357
|
+
| "SettlementAgent"
|
|
4358
|
+
| "Admin";
|
|
4105
4359
|
isUser: boolean;
|
|
4106
4360
|
/** @format date-time */
|
|
4107
4361
|
createdAt: string;
|
|
@@ -4137,7 +4391,13 @@ export interface LosOperationTracking {
|
|
|
4137
4391
|
operationType: string;
|
|
4138
4392
|
correlationKey: string;
|
|
4139
4393
|
lastTriggerSource?: string | null;
|
|
4140
|
-
status:
|
|
4394
|
+
status:
|
|
4395
|
+
| "Pending"
|
|
4396
|
+
| "Success"
|
|
4397
|
+
| "Failed"
|
|
4398
|
+
| "ConfigurationError"
|
|
4399
|
+
| "PermanentFailure"
|
|
4400
|
+
| "Locked";
|
|
4141
4401
|
/** @format date-time */
|
|
4142
4402
|
createdAt: string;
|
|
4143
4403
|
/** @format date-time */
|
|
@@ -4204,7 +4464,7 @@ export interface LosSyncStep {
|
|
|
4204
4464
|
/** @format int32 */
|
|
4205
4465
|
order: number;
|
|
4206
4466
|
name: string;
|
|
4207
|
-
severity:
|
|
4467
|
+
severity: "Success" | "Info" | "Warning" | "Error";
|
|
4208
4468
|
message: string;
|
|
4209
4469
|
/** @format date-time */
|
|
4210
4470
|
atUtc: string;
|
|
@@ -4537,7 +4797,7 @@ export interface NotificationTemplateVersionUpdateRequest {
|
|
|
4537
4797
|
|
|
4538
4798
|
export interface Operation {
|
|
4539
4799
|
op?: string;
|
|
4540
|
-
value?:
|
|
4800
|
+
value?: string | number | boolean | null | object;
|
|
4541
4801
|
path?: string;
|
|
4542
4802
|
}
|
|
4543
4803
|
|
|
@@ -4893,7 +5153,7 @@ export interface SSOTokenRequest {
|
|
|
4893
5153
|
}
|
|
4894
5154
|
|
|
4895
5155
|
export interface SamlMetadataRequest {
|
|
4896
|
-
ssoIntegration:
|
|
5156
|
+
ssoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
4897
5157
|
}
|
|
4898
5158
|
|
|
4899
5159
|
export interface SendForgotPasswordRequest {
|
|
@@ -4951,7 +5211,7 @@ export interface SiteConfiguration {
|
|
|
4951
5211
|
deletedAt?: string | null;
|
|
4952
5212
|
/** @format uuid */
|
|
4953
5213
|
id: string;
|
|
4954
|
-
type:
|
|
5214
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
4955
5215
|
/** @format uuid */
|
|
4956
5216
|
entityID: string;
|
|
4957
5217
|
/** @format int32 */
|
|
@@ -5146,7 +5406,7 @@ export interface SiteConfigurationByUrl {
|
|
|
5146
5406
|
deletedAt?: string | null;
|
|
5147
5407
|
/** @format uuid */
|
|
5148
5408
|
id: string;
|
|
5149
|
-
type:
|
|
5409
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5150
5410
|
/** @format uuid */
|
|
5151
5411
|
entityID: string;
|
|
5152
5412
|
/** @format int32 */
|
|
@@ -5359,7 +5619,7 @@ export interface SiteConfigurationForm {
|
|
|
5359
5619
|
export interface SiteConfigurationReduced {
|
|
5360
5620
|
/** @format uuid */
|
|
5361
5621
|
id: string;
|
|
5362
|
-
type:
|
|
5622
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5363
5623
|
url?: string | null;
|
|
5364
5624
|
name: string;
|
|
5365
5625
|
/** @format int64 */
|
|
@@ -5377,7 +5637,7 @@ export interface SiteConfigurationRequest {
|
|
|
5377
5637
|
entityID: string;
|
|
5378
5638
|
/** @format int32 */
|
|
5379
5639
|
entityType: number;
|
|
5380
|
-
type:
|
|
5640
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5381
5641
|
url: string;
|
|
5382
5642
|
name: string;
|
|
5383
5643
|
introduction?: string | null;
|
|
@@ -5554,7 +5814,7 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
5554
5814
|
export interface SiteConfigurationSummary {
|
|
5555
5815
|
/** @format uuid */
|
|
5556
5816
|
id: string;
|
|
5557
|
-
type:
|
|
5817
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5558
5818
|
url?: string | null;
|
|
5559
5819
|
name: string;
|
|
5560
5820
|
/** @format int64 */
|
|
@@ -6222,7 +6482,20 @@ export interface UserDevice {
|
|
|
6222
6482
|
export interface UserDraft {
|
|
6223
6483
|
/** @format uuid */
|
|
6224
6484
|
draftID: string;
|
|
6225
|
-
role:
|
|
6485
|
+
role:
|
|
6486
|
+
| "Borrower"
|
|
6487
|
+
| "CoBorrower"
|
|
6488
|
+
| "NonBorrower"
|
|
6489
|
+
| "LoanOfficer"
|
|
6490
|
+
| "LoanProcessor"
|
|
6491
|
+
| "LoanOfficerAssistant"
|
|
6492
|
+
| "SupportingLoanOfficer"
|
|
6493
|
+
| "BuyerAgent"
|
|
6494
|
+
| "SellerAgent"
|
|
6495
|
+
| "TitleInsuranceAgent"
|
|
6496
|
+
| "EscrowAgent"
|
|
6497
|
+
| "SettlementAgent"
|
|
6498
|
+
| "Admin";
|
|
6226
6499
|
user: User;
|
|
6227
6500
|
}
|
|
6228
6501
|
|
|
@@ -6249,7 +6522,7 @@ export interface UserGroupAccessScope {
|
|
|
6249
6522
|
id: string;
|
|
6250
6523
|
/** @format uuid */
|
|
6251
6524
|
groupId: string;
|
|
6252
|
-
scopeType:
|
|
6525
|
+
scopeType: "User" | "Branch";
|
|
6253
6526
|
/** @format uuid */
|
|
6254
6527
|
userId?: string | null;
|
|
6255
6528
|
/** @format uuid */
|
|
@@ -6285,7 +6558,20 @@ export interface UserLoan {
|
|
|
6285
6558
|
deletedAt?: string | null;
|
|
6286
6559
|
loanID: string;
|
|
6287
6560
|
user: User;
|
|
6288
|
-
role:
|
|
6561
|
+
role:
|
|
6562
|
+
| "Borrower"
|
|
6563
|
+
| "CoBorrower"
|
|
6564
|
+
| "NonBorrower"
|
|
6565
|
+
| "LoanOfficer"
|
|
6566
|
+
| "LoanProcessor"
|
|
6567
|
+
| "LoanOfficerAssistant"
|
|
6568
|
+
| "SupportingLoanOfficer"
|
|
6569
|
+
| "BuyerAgent"
|
|
6570
|
+
| "SellerAgent"
|
|
6571
|
+
| "TitleInsuranceAgent"
|
|
6572
|
+
| "EscrowAgent"
|
|
6573
|
+
| "SettlementAgent"
|
|
6574
|
+
| "Admin";
|
|
6289
6575
|
/** @format int32 */
|
|
6290
6576
|
borrowerPair?: number | null;
|
|
6291
6577
|
/** @format int32 */
|
|
@@ -6298,10 +6584,10 @@ export interface UserLoanConsent {
|
|
|
6298
6584
|
id: string;
|
|
6299
6585
|
/** @format uuid */
|
|
6300
6586
|
userLoanID: string;
|
|
6301
|
-
type:
|
|
6587
|
+
type: "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
6302
6588
|
providedConsent: boolean;
|
|
6303
6589
|
ipAddress?: string | null;
|
|
6304
|
-
losSyncStatus:
|
|
6590
|
+
losSyncStatus: "NotStarted" | "Failed" | "Success";
|
|
6305
6591
|
/** @format date-time */
|
|
6306
6592
|
createdAt: string;
|
|
6307
6593
|
/** @format date-time */
|
|
@@ -6456,7 +6742,16 @@ export interface UserSummary {
|
|
|
6456
6742
|
id: string;
|
|
6457
6743
|
name?: string | null;
|
|
6458
6744
|
email?: string | null;
|
|
6459
|
-
role:
|
|
6745
|
+
role:
|
|
6746
|
+
| "Borrower"
|
|
6747
|
+
| "LoanOfficer"
|
|
6748
|
+
| "Admin"
|
|
6749
|
+
| "SuperAdmin"
|
|
6750
|
+
| "Realtor"
|
|
6751
|
+
| "SettlementAgent"
|
|
6752
|
+
| "LoanProcessor"
|
|
6753
|
+
| "LoanOfficerAssistant"
|
|
6754
|
+
| "SystemAdmin";
|
|
6460
6755
|
}
|
|
6461
6756
|
|
|
6462
6757
|
export interface VerifyPasswordRequest {
|
|
@@ -6492,488 +6787,6 @@ export interface Workflow {
|
|
|
6492
6787
|
icon: string;
|
|
6493
6788
|
}
|
|
6494
6789
|
|
|
6495
|
-
export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
|
|
6496
|
-
|
|
6497
|
-
export type AuditLogEntryChangeTypeEnum =
|
|
6498
|
-
| "Created"
|
|
6499
|
-
| "Modified"
|
|
6500
|
-
| "SoftDeleted"
|
|
6501
|
-
| "HardDeleted"
|
|
6502
|
-
| "Restored";
|
|
6503
|
-
|
|
6504
|
-
export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
|
|
6505
|
-
|
|
6506
|
-
export type CreateAccountRequestEnvironmentEnum =
|
|
6507
|
-
| "Development"
|
|
6508
|
-
| "Staging"
|
|
6509
|
-
| "UAT"
|
|
6510
|
-
| "Production";
|
|
6511
|
-
|
|
6512
|
-
export type CreateCustomFieldDefinitionRequestDataTypeEnum =
|
|
6513
|
-
| "String"
|
|
6514
|
-
| "Number"
|
|
6515
|
-
| "Decimal"
|
|
6516
|
-
| "Boolean"
|
|
6517
|
-
| "Date"
|
|
6518
|
-
| "SingleSelect"
|
|
6519
|
-
| "MultiSelect";
|
|
6520
|
-
|
|
6521
|
-
export type CreateCustomFieldDefinitionRequestEntityTypeEnum = "Loan";
|
|
6522
|
-
|
|
6523
|
-
export type CreateGroupMemberRequestLoanRoleEnum =
|
|
6524
|
-
| "Borrower"
|
|
6525
|
-
| "CoBorrower"
|
|
6526
|
-
| "NonBorrower"
|
|
6527
|
-
| "LoanOfficer"
|
|
6528
|
-
| "LoanProcessor"
|
|
6529
|
-
| "LoanOfficerAssistant"
|
|
6530
|
-
| "SupportingLoanOfficer"
|
|
6531
|
-
| "BuyerAgent"
|
|
6532
|
-
| "SellerAgent"
|
|
6533
|
-
| "TitleInsuranceAgent"
|
|
6534
|
-
| "EscrowAgent"
|
|
6535
|
-
| "SettlementAgent"
|
|
6536
|
-
| "Admin";
|
|
6537
|
-
|
|
6538
|
-
/** @deprecated */
|
|
6539
|
-
export type CreateInviteRequestRelationshipEnum =
|
|
6540
|
-
| "NotApplicable"
|
|
6541
|
-
| "Spouse"
|
|
6542
|
-
| "NonSpouse";
|
|
6543
|
-
|
|
6544
|
-
export type CreateLoanImportRequestImportModeEnum =
|
|
6545
|
-
| "All"
|
|
6546
|
-
| "NewOnly"
|
|
6547
|
-
| "UpdateOnly";
|
|
6548
|
-
|
|
6549
|
-
export type CreateUserDraftLoanRoleEnum =
|
|
6550
|
-
| "Borrower"
|
|
6551
|
-
| "CoBorrower"
|
|
6552
|
-
| "NonBorrower"
|
|
6553
|
-
| "LoanOfficer"
|
|
6554
|
-
| "LoanProcessor"
|
|
6555
|
-
| "LoanOfficerAssistant"
|
|
6556
|
-
| "SupportingLoanOfficer"
|
|
6557
|
-
| "BuyerAgent"
|
|
6558
|
-
| "SellerAgent"
|
|
6559
|
-
| "TitleInsuranceAgent"
|
|
6560
|
-
| "EscrowAgent"
|
|
6561
|
-
| "SettlementAgent"
|
|
6562
|
-
| "Admin";
|
|
6563
|
-
|
|
6564
|
-
export type CustomFieldDefinitionDataTypeEnum =
|
|
6565
|
-
| "String"
|
|
6566
|
-
| "Number"
|
|
6567
|
-
| "Decimal"
|
|
6568
|
-
| "Boolean"
|
|
6569
|
-
| "Date"
|
|
6570
|
-
| "SingleSelect"
|
|
6571
|
-
| "MultiSelect";
|
|
6572
|
-
|
|
6573
|
-
export type CustomFieldDefinitionEntityTypeEnum = "Loan";
|
|
6574
|
-
|
|
6575
|
-
export type CustomFieldEntryDataTypeEnum =
|
|
6576
|
-
| "String"
|
|
6577
|
-
| "Number"
|
|
6578
|
-
| "Decimal"
|
|
6579
|
-
| "Boolean"
|
|
6580
|
-
| "Date"
|
|
6581
|
-
| "SingleSelect"
|
|
6582
|
-
| "MultiSelect";
|
|
6583
|
-
|
|
6584
|
-
export type CustomFieldPermissionRoleEnum =
|
|
6585
|
-
| "Borrower"
|
|
6586
|
-
| "LoanOfficer"
|
|
6587
|
-
| "Admin"
|
|
6588
|
-
| "SuperAdmin"
|
|
6589
|
-
| "Realtor"
|
|
6590
|
-
| "SettlementAgent"
|
|
6591
|
-
| "LoanProcessor"
|
|
6592
|
-
| "LoanOfficerAssistant"
|
|
6593
|
-
| "SystemAdmin";
|
|
6594
|
-
|
|
6595
|
-
export type CustomFieldPermissionAccessLevelEnum =
|
|
6596
|
-
| "NoAccess"
|
|
6597
|
-
| "ReadOnly"
|
|
6598
|
-
| "ReadWrite";
|
|
6599
|
-
|
|
6600
|
-
export type CustomFieldPermissionRequestRoleEnum =
|
|
6601
|
-
| "Borrower"
|
|
6602
|
-
| "LoanOfficer"
|
|
6603
|
-
| "Admin"
|
|
6604
|
-
| "SuperAdmin"
|
|
6605
|
-
| "Realtor"
|
|
6606
|
-
| "SettlementAgent"
|
|
6607
|
-
| "LoanProcessor"
|
|
6608
|
-
| "LoanOfficerAssistant"
|
|
6609
|
-
| "SystemAdmin";
|
|
6610
|
-
|
|
6611
|
-
export type CustomFieldPermissionRequestAccessLevelEnum =
|
|
6612
|
-
| "NoAccess"
|
|
6613
|
-
| "ReadOnly"
|
|
6614
|
-
| "ReadWrite";
|
|
6615
|
-
|
|
6616
|
-
export type CustomFieldValueDataTypeEnum =
|
|
6617
|
-
| "String"
|
|
6618
|
-
| "Number"
|
|
6619
|
-
| "Decimal"
|
|
6620
|
-
| "Boolean"
|
|
6621
|
-
| "Date"
|
|
6622
|
-
| "SingleSelect"
|
|
6623
|
-
| "MultiSelect";
|
|
6624
|
-
|
|
6625
|
-
export type DraftTypeEnum = "NewLoan" | "EditLoan";
|
|
6626
|
-
|
|
6627
|
-
export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
|
|
6628
|
-
|
|
6629
|
-
export type EncompassCredentialsDetailSigningMethodEnum =
|
|
6630
|
-
| "ConsumerConnect"
|
|
6631
|
-
| "POSF";
|
|
6632
|
-
|
|
6633
|
-
export type EncompassCredentialsRequestSigningMethodEnum =
|
|
6634
|
-
| "ConsumerConnect"
|
|
6635
|
-
| "POSF";
|
|
6636
|
-
|
|
6637
|
-
export type EncompassRequestLogOperationTypeEnum =
|
|
6638
|
-
| "FieldUpdate"
|
|
6639
|
-
| "ConsentUpdate"
|
|
6640
|
-
| "DocumentSync"
|
|
6641
|
-
| "MilestoneUpdate"
|
|
6642
|
-
| "DocumentAttachment"
|
|
6643
|
-
| "General"
|
|
6644
|
-
| "FieldReader";
|
|
6645
|
-
|
|
6646
|
-
export type EncompassRequestLogOutcomeEnum =
|
|
6647
|
-
| "Success"
|
|
6648
|
-
| "Failure"
|
|
6649
|
-
| "PartialSuccess";
|
|
6650
|
-
|
|
6651
|
-
export type FusionReportFilterFilterTypeEnum =
|
|
6652
|
-
| "DateGreaterThanOrEqualTo"
|
|
6653
|
-
| "DateGreaterThan"
|
|
6654
|
-
| "DateLessThan"
|
|
6655
|
-
| "DateLessThanOrEqualTo"
|
|
6656
|
-
| "DateEquals"
|
|
6657
|
-
| "DateDoesntEqual"
|
|
6658
|
-
| "DateNonEmpty"
|
|
6659
|
-
| "DateEmpty"
|
|
6660
|
-
| "StringContains"
|
|
6661
|
-
| "StringEquals"
|
|
6662
|
-
| "StringNotEmpty"
|
|
6663
|
-
| "StringNotEquals"
|
|
6664
|
-
| "StringNotContains";
|
|
6665
|
-
|
|
6666
|
-
export type IpAddressAddressFamilyEnum =
|
|
6667
|
-
| "Unspecified"
|
|
6668
|
-
| "Unix"
|
|
6669
|
-
| "InterNetwork"
|
|
6670
|
-
| "ImpLink"
|
|
6671
|
-
| "Pup"
|
|
6672
|
-
| "Chaos"
|
|
6673
|
-
| "NS"
|
|
6674
|
-
| "Ipx"
|
|
6675
|
-
| "Iso"
|
|
6676
|
-
| "Osi"
|
|
6677
|
-
| "Ecma"
|
|
6678
|
-
| "DataKit"
|
|
6679
|
-
| "Ccitt"
|
|
6680
|
-
| "Sna"
|
|
6681
|
-
| "DecNet"
|
|
6682
|
-
| "DataLink"
|
|
6683
|
-
| "Lat"
|
|
6684
|
-
| "HyperChannel"
|
|
6685
|
-
| "AppleTalk"
|
|
6686
|
-
| "NetBios"
|
|
6687
|
-
| "VoiceView"
|
|
6688
|
-
| "FireFox"
|
|
6689
|
-
| "Banyan"
|
|
6690
|
-
| "Atm"
|
|
6691
|
-
| "InterNetworkV6"
|
|
6692
|
-
| "Cluster"
|
|
6693
|
-
| "Ieee12844"
|
|
6694
|
-
| "Irda"
|
|
6695
|
-
| "NetworkDesigners"
|
|
6696
|
-
| "Max"
|
|
6697
|
-
| "Packet"
|
|
6698
|
-
| "ControllerAreaNetwork"
|
|
6699
|
-
| "Unknown";
|
|
6700
|
-
|
|
6701
|
-
export type LoanSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
6702
|
-
|
|
6703
|
-
export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
|
|
6704
|
-
|
|
6705
|
-
export type LoanContactRoleEnum =
|
|
6706
|
-
| "Borrower"
|
|
6707
|
-
| "CoBorrower"
|
|
6708
|
-
| "NonBorrower"
|
|
6709
|
-
| "LoanOfficer"
|
|
6710
|
-
| "LoanProcessor"
|
|
6711
|
-
| "LoanOfficerAssistant"
|
|
6712
|
-
| "SupportingLoanOfficer"
|
|
6713
|
-
| "BuyerAgent"
|
|
6714
|
-
| "SellerAgent"
|
|
6715
|
-
| "TitleInsuranceAgent"
|
|
6716
|
-
| "EscrowAgent"
|
|
6717
|
-
| "SettlementAgent"
|
|
6718
|
-
| "Admin";
|
|
6719
|
-
|
|
6720
|
-
export type LoanDocumentFolderPermissionRoleEnum =
|
|
6721
|
-
| "Borrower"
|
|
6722
|
-
| "CoBorrower"
|
|
6723
|
-
| "NonBorrower"
|
|
6724
|
-
| "LoanOfficer"
|
|
6725
|
-
| "LoanProcessor"
|
|
6726
|
-
| "LoanOfficerAssistant"
|
|
6727
|
-
| "SupportingLoanOfficer"
|
|
6728
|
-
| "BuyerAgent"
|
|
6729
|
-
| "SellerAgent"
|
|
6730
|
-
| "TitleInsuranceAgent"
|
|
6731
|
-
| "EscrowAgent"
|
|
6732
|
-
| "SettlementAgent"
|
|
6733
|
-
| "Admin";
|
|
6734
|
-
|
|
6735
|
-
export type LoanDocumentFolderPermissionLevelEnum =
|
|
6736
|
-
| "None"
|
|
6737
|
-
| "Read"
|
|
6738
|
-
| "Write"
|
|
6739
|
-
| "Manage";
|
|
6740
|
-
|
|
6741
|
-
export type LoanDocumentFolderPermissionRequestRoleEnum =
|
|
6742
|
-
| "Borrower"
|
|
6743
|
-
| "CoBorrower"
|
|
6744
|
-
| "NonBorrower"
|
|
6745
|
-
| "LoanOfficer"
|
|
6746
|
-
| "LoanProcessor"
|
|
6747
|
-
| "LoanOfficerAssistant"
|
|
6748
|
-
| "SupportingLoanOfficer"
|
|
6749
|
-
| "BuyerAgent"
|
|
6750
|
-
| "SellerAgent"
|
|
6751
|
-
| "TitleInsuranceAgent"
|
|
6752
|
-
| "EscrowAgent"
|
|
6753
|
-
| "SettlementAgent"
|
|
6754
|
-
| "Admin";
|
|
6755
|
-
|
|
6756
|
-
export type LoanDocumentFolderPermissionRequestLevelEnum =
|
|
6757
|
-
| "None"
|
|
6758
|
-
| "Read"
|
|
6759
|
-
| "Write"
|
|
6760
|
-
| "Manage";
|
|
6761
|
-
|
|
6762
|
-
export type LoanImportStatusEnum =
|
|
6763
|
-
| "WaitingProcess"
|
|
6764
|
-
| "InProgress"
|
|
6765
|
-
| "Completed"
|
|
6766
|
-
| "Failed"
|
|
6767
|
-
| "Cancelled";
|
|
6768
|
-
|
|
6769
|
-
export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
6770
|
-
|
|
6771
|
-
export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
6772
|
-
|
|
6773
|
-
export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
6774
|
-
|
|
6775
|
-
export type LoanLogTypeEnum =
|
|
6776
|
-
| "Loan"
|
|
6777
|
-
| "Queue"
|
|
6778
|
-
| "POSFlagChanged"
|
|
6779
|
-
| "Verification"
|
|
6780
|
-
| "DocumentUploaded"
|
|
6781
|
-
| "LoanCreated"
|
|
6782
|
-
| "WorkflowSubmitted"
|
|
6783
|
-
| "UserInvitationSent"
|
|
6784
|
-
| "CoBorrowerAdded"
|
|
6785
|
-
| "TaskCompleted"
|
|
6786
|
-
| "LoanStatusChanged"
|
|
6787
|
-
| "Consent"
|
|
6788
|
-
| "SensitiveDataPurge"
|
|
6789
|
-
| "ClosingDateUpdated"
|
|
6790
|
-
| "ConsumerConnectAssociation"
|
|
6791
|
-
| "TaskReminderSent";
|
|
6792
|
-
|
|
6793
|
-
export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
6794
|
-
|
|
6795
|
-
export type LoanLogDetailTypeEnum =
|
|
6796
|
-
| "Loan"
|
|
6797
|
-
| "Queue"
|
|
6798
|
-
| "POSFlagChanged"
|
|
6799
|
-
| "Verification"
|
|
6800
|
-
| "DocumentUploaded"
|
|
6801
|
-
| "LoanCreated"
|
|
6802
|
-
| "WorkflowSubmitted"
|
|
6803
|
-
| "UserInvitationSent"
|
|
6804
|
-
| "CoBorrowerAdded"
|
|
6805
|
-
| "TaskCompleted"
|
|
6806
|
-
| "LoanStatusChanged"
|
|
6807
|
-
| "Consent"
|
|
6808
|
-
| "SensitiveDataPurge"
|
|
6809
|
-
| "ClosingDateUpdated"
|
|
6810
|
-
| "ConsumerConnectAssociation"
|
|
6811
|
-
| "TaskReminderSent";
|
|
6812
|
-
|
|
6813
|
-
export type LoanTaskStatusSummaryStatusEnum =
|
|
6814
|
-
| "Outstanding"
|
|
6815
|
-
| "Pending"
|
|
6816
|
-
| "Completed"
|
|
6817
|
-
| "Rejected"
|
|
6818
|
-
| "Unknown";
|
|
6819
|
-
|
|
6820
|
-
export type LoanUserLoanRoleEnum =
|
|
6821
|
-
| "Borrower"
|
|
6822
|
-
| "CoBorrower"
|
|
6823
|
-
| "NonBorrower"
|
|
6824
|
-
| "LoanOfficer"
|
|
6825
|
-
| "LoanProcessor"
|
|
6826
|
-
| "LoanOfficerAssistant"
|
|
6827
|
-
| "SupportingLoanOfficer"
|
|
6828
|
-
| "BuyerAgent"
|
|
6829
|
-
| "SellerAgent"
|
|
6830
|
-
| "TitleInsuranceAgent"
|
|
6831
|
-
| "EscrowAgent"
|
|
6832
|
-
| "SettlementAgent"
|
|
6833
|
-
| "Admin";
|
|
6834
|
-
|
|
6835
|
-
export type LosOperationTrackingStatusEnum =
|
|
6836
|
-
| "Pending"
|
|
6837
|
-
| "Success"
|
|
6838
|
-
| "Failed"
|
|
6839
|
-
| "ConfigurationError"
|
|
6840
|
-
| "PermanentFailure"
|
|
6841
|
-
| "Locked";
|
|
6842
|
-
|
|
6843
|
-
export type LosSyncStepSeverityEnum = "Success" | "Info" | "Warning" | "Error";
|
|
6844
|
-
|
|
6845
|
-
export type SamlMetadataRequestSsoIntegrationEnum =
|
|
6846
|
-
| "ConsumerConnect"
|
|
6847
|
-
| "TheBigPOS"
|
|
6848
|
-
| "POSF";
|
|
6849
|
-
|
|
6850
|
-
export type SiteConfigurationTypeEnum =
|
|
6851
|
-
| "None"
|
|
6852
|
-
| "Account"
|
|
6853
|
-
| "Corporate"
|
|
6854
|
-
| "Branch"
|
|
6855
|
-
| "LoanOfficer"
|
|
6856
|
-
| "Partner";
|
|
6857
|
-
|
|
6858
|
-
export type SiteConfigurationByUrlTypeEnum =
|
|
6859
|
-
| "None"
|
|
6860
|
-
| "Account"
|
|
6861
|
-
| "Corporate"
|
|
6862
|
-
| "Branch"
|
|
6863
|
-
| "LoanOfficer"
|
|
6864
|
-
| "Partner";
|
|
6865
|
-
|
|
6866
|
-
export type SiteConfigurationReducedTypeEnum =
|
|
6867
|
-
| "None"
|
|
6868
|
-
| "Account"
|
|
6869
|
-
| "Corporate"
|
|
6870
|
-
| "Branch"
|
|
6871
|
-
| "LoanOfficer"
|
|
6872
|
-
| "Partner";
|
|
6873
|
-
|
|
6874
|
-
export type SiteConfigurationRequestTypeEnum =
|
|
6875
|
-
| "None"
|
|
6876
|
-
| "Account"
|
|
6877
|
-
| "Corporate"
|
|
6878
|
-
| "Branch"
|
|
6879
|
-
| "LoanOfficer"
|
|
6880
|
-
| "Partner";
|
|
6881
|
-
|
|
6882
|
-
export type SiteConfigurationSummaryTypeEnum =
|
|
6883
|
-
| "None"
|
|
6884
|
-
| "Account"
|
|
6885
|
-
| "Corporate"
|
|
6886
|
-
| "Branch"
|
|
6887
|
-
| "LoanOfficer"
|
|
6888
|
-
| "Partner";
|
|
6889
|
-
|
|
6890
|
-
export type UserDraftRoleEnum =
|
|
6891
|
-
| "Borrower"
|
|
6892
|
-
| "CoBorrower"
|
|
6893
|
-
| "NonBorrower"
|
|
6894
|
-
| "LoanOfficer"
|
|
6895
|
-
| "LoanProcessor"
|
|
6896
|
-
| "LoanOfficerAssistant"
|
|
6897
|
-
| "SupportingLoanOfficer"
|
|
6898
|
-
| "BuyerAgent"
|
|
6899
|
-
| "SellerAgent"
|
|
6900
|
-
| "TitleInsuranceAgent"
|
|
6901
|
-
| "EscrowAgent"
|
|
6902
|
-
| "SettlementAgent"
|
|
6903
|
-
| "Admin";
|
|
6904
|
-
|
|
6905
|
-
export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
|
|
6906
|
-
|
|
6907
|
-
export type UserLoanRoleEnum =
|
|
6908
|
-
| "Borrower"
|
|
6909
|
-
| "CoBorrower"
|
|
6910
|
-
| "NonBorrower"
|
|
6911
|
-
| "LoanOfficer"
|
|
6912
|
-
| "LoanProcessor"
|
|
6913
|
-
| "LoanOfficerAssistant"
|
|
6914
|
-
| "SupportingLoanOfficer"
|
|
6915
|
-
| "BuyerAgent"
|
|
6916
|
-
| "SellerAgent"
|
|
6917
|
-
| "TitleInsuranceAgent"
|
|
6918
|
-
| "EscrowAgent"
|
|
6919
|
-
| "SettlementAgent"
|
|
6920
|
-
| "Admin";
|
|
6921
|
-
|
|
6922
|
-
export type UserLoanConsentTypeEnum =
|
|
6923
|
-
| "Econsent"
|
|
6924
|
-
| "CreditAuthorization"
|
|
6925
|
-
| "Tcpa";
|
|
6926
|
-
|
|
6927
|
-
export type UserLoanConsentLosSyncStatusEnum =
|
|
6928
|
-
| "NotStarted"
|
|
6929
|
-
| "Failed"
|
|
6930
|
-
| "Success";
|
|
6931
|
-
|
|
6932
|
-
export type UserSummaryRoleEnum =
|
|
6933
|
-
| "Borrower"
|
|
6934
|
-
| "LoanOfficer"
|
|
6935
|
-
| "Admin"
|
|
6936
|
-
| "SuperAdmin"
|
|
6937
|
-
| "Realtor"
|
|
6938
|
-
| "SettlementAgent"
|
|
6939
|
-
| "LoanProcessor"
|
|
6940
|
-
| "LoanOfficerAssistant"
|
|
6941
|
-
| "SystemAdmin";
|
|
6942
|
-
|
|
6943
|
-
export type GetCustomFieldDefinitionsParamsEntityTypeEnum = "Loan";
|
|
6944
|
-
|
|
6945
|
-
/** @default "Realtor" */
|
|
6946
|
-
export type GetPartnersParamsRoleEnum =
|
|
6947
|
-
| "Borrower"
|
|
6948
|
-
| "LoanOfficer"
|
|
6949
|
-
| "Admin"
|
|
6950
|
-
| "SuperAdmin"
|
|
6951
|
-
| "Realtor"
|
|
6952
|
-
| "SettlementAgent"
|
|
6953
|
-
| "LoanProcessor"
|
|
6954
|
-
| "LoanOfficerAssistant"
|
|
6955
|
-
| "SystemAdmin";
|
|
6956
|
-
|
|
6957
|
-
export type GetSamlMetadataParamsSSoIntegrationEnum =
|
|
6958
|
-
| "ConsumerConnect"
|
|
6959
|
-
| "TheBigPOS"
|
|
6960
|
-
| "POSF";
|
|
6961
|
-
|
|
6962
|
-
export type GetSamlMetadataParamsEnum =
|
|
6963
|
-
| "ConsumerConnect"
|
|
6964
|
-
| "TheBigPOS"
|
|
6965
|
-
| "POSF";
|
|
6966
|
-
|
|
6967
|
-
export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum =
|
|
6968
|
-
| "ConsumerConnect"
|
|
6969
|
-
| "TheBigPOS"
|
|
6970
|
-
| "POSF";
|
|
6971
|
-
|
|
6972
|
-
export type CreateOrReplaceSamlMetadataParamsEnum =
|
|
6973
|
-
| "ConsumerConnect"
|
|
6974
|
-
| "TheBigPOS"
|
|
6975
|
-
| "POSF";
|
|
6976
|
-
|
|
6977
6790
|
import type {
|
|
6978
6791
|
AxiosInstance,
|
|
6979
6792
|
AxiosRequestConfig,
|
|
@@ -7016,6 +6829,7 @@ export interface ApiConfig<SecurityDataType = unknown>
|
|
|
7016
6829
|
}
|
|
7017
6830
|
|
|
7018
6831
|
export enum ContentType {
|
|
6832
|
+
JsonPatch = "application/json-patch+json",
|
|
7019
6833
|
Json = "application/json",
|
|
7020
6834
|
JsonApi = "application/vnd.api+json",
|
|
7021
6835
|
FormData = "multipart/form-data",
|
|
@@ -7283,6 +7097,53 @@ export class Api<
|
|
|
7283
7097
|
...params,
|
|
7284
7098
|
}),
|
|
7285
7099
|
|
|
7100
|
+
/**
|
|
7101
|
+
* No description
|
|
7102
|
+
*
|
|
7103
|
+
* @tags AccountReactivation
|
|
7104
|
+
* @name RequestAccountReactivation
|
|
7105
|
+
* @summary Request account reactivation
|
|
7106
|
+
* @request POST:/api/account/reactivation/request
|
|
7107
|
+
* @secure
|
|
7108
|
+
* @response `204` `void` No Content
|
|
7109
|
+
*/
|
|
7110
|
+
requestAccountReactivation: (
|
|
7111
|
+
data: AccountReactivationRequest,
|
|
7112
|
+
params: RequestParams = {},
|
|
7113
|
+
) =>
|
|
7114
|
+
this.request<void, any>({
|
|
7115
|
+
path: `/api/account/reactivation/request`,
|
|
7116
|
+
method: "POST",
|
|
7117
|
+
body: data,
|
|
7118
|
+
secure: true,
|
|
7119
|
+
type: ContentType.Json,
|
|
7120
|
+
...params,
|
|
7121
|
+
}),
|
|
7122
|
+
|
|
7123
|
+
/**
|
|
7124
|
+
* No description
|
|
7125
|
+
*
|
|
7126
|
+
* @tags AccountReactivation
|
|
7127
|
+
* @name CompleteAccountReactivation
|
|
7128
|
+
* @summary Complete account reactivation with new password
|
|
7129
|
+
* @request POST:/api/account/reactivation/complete
|
|
7130
|
+
* @secure
|
|
7131
|
+
* @response `204` `void` No Content
|
|
7132
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
7133
|
+
*/
|
|
7134
|
+
completeAccountReactivation: (
|
|
7135
|
+
data: AccountReactivationCompleteRequest,
|
|
7136
|
+
params: RequestParams = {},
|
|
7137
|
+
) =>
|
|
7138
|
+
this.request<void, ProblemDetails>({
|
|
7139
|
+
path: `/api/account/reactivation/complete`,
|
|
7140
|
+
method: "POST",
|
|
7141
|
+
body: data,
|
|
7142
|
+
secure: true,
|
|
7143
|
+
type: ContentType.Json,
|
|
7144
|
+
...params,
|
|
7145
|
+
}),
|
|
7146
|
+
|
|
7286
7147
|
/**
|
|
7287
7148
|
* No description
|
|
7288
7149
|
*
|
|
@@ -7506,11 +7367,11 @@ export class Api<
|
|
|
7506
7367
|
* @summary Get Token
|
|
7507
7368
|
* @request POST:/api/token
|
|
7508
7369
|
* @secure
|
|
7509
|
-
* @response `200` `
|
|
7370
|
+
* @response `200` `AccountDeactivated` Success
|
|
7510
7371
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7511
7372
|
*/
|
|
7512
7373
|
getToken: (data: TokenRequest, params: RequestParams = {}) =>
|
|
7513
|
-
this.request<
|
|
7374
|
+
this.request<AccountDeactivated, UnprocessableEntity>({
|
|
7514
7375
|
path: `/api/token`,
|
|
7515
7376
|
method: "POST",
|
|
7516
7377
|
body: data,
|
|
@@ -7528,14 +7389,14 @@ export class Api<
|
|
|
7528
7389
|
* @summary Get Token From Challenge Code
|
|
7529
7390
|
* @request POST:/api/token/code
|
|
7530
7391
|
* @secure
|
|
7531
|
-
* @response `200` `
|
|
7392
|
+
* @response `200` `AccountDeactivated` Success
|
|
7532
7393
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7533
7394
|
*/
|
|
7534
7395
|
getTokenFromChallengeCode: (
|
|
7535
7396
|
data: TokenChallengeRequest,
|
|
7536
7397
|
params: RequestParams = {},
|
|
7537
7398
|
) =>
|
|
7538
|
-
this.request<
|
|
7399
|
+
this.request<AccountDeactivated, UnprocessableEntity>({
|
|
7539
7400
|
path: `/api/token/code`,
|
|
7540
7401
|
method: "POST",
|
|
7541
7402
|
body: data,
|
|
@@ -8370,7 +8231,7 @@ export class Api<
|
|
|
8370
8231
|
*/
|
|
8371
8232
|
getCustomFieldDefinitions: (
|
|
8372
8233
|
query?: {
|
|
8373
|
-
entityType?:
|
|
8234
|
+
entityType?: "Loan";
|
|
8374
8235
|
},
|
|
8375
8236
|
params: RequestParams = {},
|
|
8376
8237
|
) =>
|
|
@@ -9792,6 +9653,25 @@ export class Api<
|
|
|
9792
9653
|
...params,
|
|
9793
9654
|
}),
|
|
9794
9655
|
|
|
9656
|
+
/**
|
|
9657
|
+
* No description
|
|
9658
|
+
*
|
|
9659
|
+
* @tags IntegrationSettings
|
|
9660
|
+
* @name GetIntegrationSettings
|
|
9661
|
+
* @summary Get Integration Settings
|
|
9662
|
+
* @request GET:/api/integrations/settings
|
|
9663
|
+
* @secure
|
|
9664
|
+
* @response `200` `IntegrationSettings` Success
|
|
9665
|
+
*/
|
|
9666
|
+
getIntegrationSettings: (params: RequestParams = {}) =>
|
|
9667
|
+
this.request<IntegrationSettings, any>({
|
|
9668
|
+
path: `/api/integrations/settings`,
|
|
9669
|
+
method: "GET",
|
|
9670
|
+
secure: true,
|
|
9671
|
+
format: "json",
|
|
9672
|
+
...params,
|
|
9673
|
+
}),
|
|
9674
|
+
|
|
9795
9675
|
/**
|
|
9796
9676
|
* No description
|
|
9797
9677
|
*
|
|
@@ -9833,7 +9713,7 @@ export class Api<
|
|
|
9833
9713
|
method: "PATCH",
|
|
9834
9714
|
body: data,
|
|
9835
9715
|
secure: true,
|
|
9836
|
-
type: ContentType.
|
|
9716
|
+
type: ContentType.JsonPatch,
|
|
9837
9717
|
format: "json",
|
|
9838
9718
|
...params,
|
|
9839
9719
|
}),
|
|
@@ -9943,7 +9823,7 @@ export class Api<
|
|
|
9943
9823
|
method: "PATCH",
|
|
9944
9824
|
body: data,
|
|
9945
9825
|
secure: true,
|
|
9946
|
-
type: ContentType.
|
|
9826
|
+
type: ContentType.JsonPatch,
|
|
9947
9827
|
format: "json",
|
|
9948
9828
|
...params,
|
|
9949
9829
|
}),
|
|
@@ -9970,7 +9850,7 @@ export class Api<
|
|
|
9970
9850
|
method: "PATCH",
|
|
9971
9851
|
body: data,
|
|
9972
9852
|
secure: true,
|
|
9973
|
-
type: ContentType.
|
|
9853
|
+
type: ContentType.JsonPatch,
|
|
9974
9854
|
format: "json",
|
|
9975
9855
|
...params,
|
|
9976
9856
|
}),
|
|
@@ -10212,7 +10092,7 @@ export class Api<
|
|
|
10212
10092
|
method: "PATCH",
|
|
10213
10093
|
body: data,
|
|
10214
10094
|
secure: true,
|
|
10215
|
-
type: ContentType.
|
|
10095
|
+
type: ContentType.JsonPatch,
|
|
10216
10096
|
format: "json",
|
|
10217
10097
|
...params,
|
|
10218
10098
|
}),
|
|
@@ -10292,7 +10172,7 @@ export class Api<
|
|
|
10292
10172
|
method: "PATCH",
|
|
10293
10173
|
body: data,
|
|
10294
10174
|
secure: true,
|
|
10295
|
-
type: ContentType.
|
|
10175
|
+
type: ContentType.JsonPatch,
|
|
10296
10176
|
format: "json",
|
|
10297
10177
|
...params,
|
|
10298
10178
|
}),
|
|
@@ -12195,7 +12075,7 @@ export class Api<
|
|
|
12195
12075
|
method: "POST",
|
|
12196
12076
|
body: data,
|
|
12197
12077
|
secure: true,
|
|
12198
|
-
type: ContentType.
|
|
12078
|
+
type: ContentType.JsonPatch,
|
|
12199
12079
|
format: "json",
|
|
12200
12080
|
...params,
|
|
12201
12081
|
}),
|
|
@@ -13423,7 +13303,16 @@ export class Api<
|
|
|
13423
13303
|
query?: {
|
|
13424
13304
|
showAll?: boolean;
|
|
13425
13305
|
/** @default "Realtor" */
|
|
13426
|
-
role?:
|
|
13306
|
+
role?:
|
|
13307
|
+
| "Borrower"
|
|
13308
|
+
| "LoanOfficer"
|
|
13309
|
+
| "Admin"
|
|
13310
|
+
| "SuperAdmin"
|
|
13311
|
+
| "Realtor"
|
|
13312
|
+
| "SettlementAgent"
|
|
13313
|
+
| "LoanProcessor"
|
|
13314
|
+
| "LoanOfficerAssistant"
|
|
13315
|
+
| "SystemAdmin";
|
|
13427
13316
|
/** @format int32 */
|
|
13428
13317
|
pageSize?: number;
|
|
13429
13318
|
/** @format int32 */
|
|
@@ -13759,7 +13648,7 @@ export class Api<
|
|
|
13759
13648
|
* @response `404` `ProblemDetails` Not Found
|
|
13760
13649
|
*/
|
|
13761
13650
|
getSamlMetadata: (
|
|
13762
|
-
sSoIntegration:
|
|
13651
|
+
sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF",
|
|
13763
13652
|
ssoIntegration: string,
|
|
13764
13653
|
params: RequestParams = {},
|
|
13765
13654
|
) =>
|
|
@@ -13781,7 +13670,7 @@ export class Api<
|
|
|
13781
13670
|
* @response `200` `File` Success
|
|
13782
13671
|
*/
|
|
13783
13672
|
createOrReplaceSamlMetadata: (
|
|
13784
|
-
sSoIntegration:
|
|
13673
|
+
sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF",
|
|
13785
13674
|
ssoIntegration: string,
|
|
13786
13675
|
params: RequestParams = {},
|
|
13787
13676
|
) =>
|