@matech/thebigpos-sdk 2.37.9-rc1 → 2.38.0
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 +12 -0
- package/.husky/pre-commit +2 -2
- package/LICENSE +21 -21
- package/README.md +73 -73
- package/dist/index.d.ts +403 -408
- package/dist/index.js +35 -23
- 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 +312 -404
- package/tsconfig.json +27 -27
package/src/index.ts
CHANGED
|
@@ -10,6 +10,8 @@
|
|
|
10
10
|
* ---------------------------------------------------------------
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
+
export type VersionStatusType = "Draft" | "Published";
|
|
14
|
+
|
|
13
15
|
export type UserRole =
|
|
14
16
|
| "Borrower"
|
|
15
17
|
| "LoanOfficer"
|
|
@@ -434,7 +436,7 @@ export interface AccountBilling {
|
|
|
434
436
|
}
|
|
435
437
|
|
|
436
438
|
export interface AccountBillingRequest {
|
|
437
|
-
billingType:
|
|
439
|
+
billingType: "ClosedLoan" | "LoanOfficer";
|
|
438
440
|
/**
|
|
439
441
|
* @format double
|
|
440
442
|
* @min 0
|
|
@@ -767,7 +769,12 @@ export interface AuditLogEntry {
|
|
|
767
769
|
/** @format uuid */
|
|
768
770
|
id: string;
|
|
769
771
|
entityType: string;
|
|
770
|
-
changeType:
|
|
772
|
+
changeType:
|
|
773
|
+
| "Created"
|
|
774
|
+
| "Modified"
|
|
775
|
+
| "SoftDeleted"
|
|
776
|
+
| "HardDeleted"
|
|
777
|
+
| "Restored";
|
|
771
778
|
/** @format uuid */
|
|
772
779
|
entityId: string;
|
|
773
780
|
performedBy?: AuditLogUser | null;
|
|
@@ -1058,7 +1065,7 @@ export interface CorporateSearchCriteria {
|
|
|
1058
1065
|
}
|
|
1059
1066
|
|
|
1060
1067
|
export interface CreateAccessScopeRequest {
|
|
1061
|
-
scopeType:
|
|
1068
|
+
scopeType: "User" | "Branch";
|
|
1062
1069
|
/** @format uuid */
|
|
1063
1070
|
userId?: string | null;
|
|
1064
1071
|
/** @format uuid */
|
|
@@ -1082,7 +1089,7 @@ export interface CreateAccountRequest {
|
|
|
1082
1089
|
*/
|
|
1083
1090
|
nlmsid: number;
|
|
1084
1091
|
settings: AccountSettingsRequest;
|
|
1085
|
-
environment:
|
|
1092
|
+
environment: "Development" | "Staging" | "UAT" | "Production";
|
|
1086
1093
|
losIntegration: LOSIntegration;
|
|
1087
1094
|
billingSettings: AccountBillingRequest;
|
|
1088
1095
|
}
|
|
@@ -1115,7 +1122,19 @@ export interface CreateDocumentTemplateRequest {
|
|
|
1115
1122
|
export interface CreateGroupMemberRequest {
|
|
1116
1123
|
/** @format uuid */
|
|
1117
1124
|
userId: string;
|
|
1118
|
-
loanRole:
|
|
1125
|
+
loanRole:
|
|
1126
|
+
| "Borrower"
|
|
1127
|
+
| "CoBorrower"
|
|
1128
|
+
| "NonBorrower"
|
|
1129
|
+
| "LoanOfficer"
|
|
1130
|
+
| "LoanProcessor"
|
|
1131
|
+
| "LoanOfficerAssistant"
|
|
1132
|
+
| "SupportingLoanOfficer"
|
|
1133
|
+
| "BuyerAgent"
|
|
1134
|
+
| "SellerAgent"
|
|
1135
|
+
| "TitleInsuranceAgent"
|
|
1136
|
+
| "EscrowAgent"
|
|
1137
|
+
| "SettlementAgent";
|
|
1119
1138
|
}
|
|
1120
1139
|
|
|
1121
1140
|
export interface CreateInviteRequest {
|
|
@@ -1127,7 +1146,7 @@ export interface CreateInviteRequest {
|
|
|
1127
1146
|
emailAddress: string;
|
|
1128
1147
|
phoneNumber?: string | null;
|
|
1129
1148
|
/** @deprecated */
|
|
1130
|
-
relationship:
|
|
1149
|
+
relationship: "NotApplicable" | "Spouse" | "NonSpouse";
|
|
1131
1150
|
loanID: string;
|
|
1132
1151
|
route?: string | null;
|
|
1133
1152
|
/** @format uuid */
|
|
@@ -1150,7 +1169,7 @@ export interface CreateLoanImportRequest {
|
|
|
1150
1169
|
* @minLength 1
|
|
1151
1170
|
*/
|
|
1152
1171
|
startDate: string;
|
|
1153
|
-
importMode:
|
|
1172
|
+
importMode: "All" | "NewOnly" | "UpdateOnly";
|
|
1154
1173
|
}
|
|
1155
1174
|
|
|
1156
1175
|
export interface CreateSession {
|
|
@@ -1172,7 +1191,19 @@ export interface CreateUserDeviceRequest {
|
|
|
1172
1191
|
}
|
|
1173
1192
|
|
|
1174
1193
|
export interface CreateUserDraft {
|
|
1175
|
-
loanRole:
|
|
1194
|
+
loanRole:
|
|
1195
|
+
| "Borrower"
|
|
1196
|
+
| "CoBorrower"
|
|
1197
|
+
| "NonBorrower"
|
|
1198
|
+
| "LoanOfficer"
|
|
1199
|
+
| "LoanProcessor"
|
|
1200
|
+
| "LoanOfficerAssistant"
|
|
1201
|
+
| "SupportingLoanOfficer"
|
|
1202
|
+
| "BuyerAgent"
|
|
1203
|
+
| "SellerAgent"
|
|
1204
|
+
| "TitleInsuranceAgent"
|
|
1205
|
+
| "EscrowAgent"
|
|
1206
|
+
| "SettlementAgent";
|
|
1176
1207
|
}
|
|
1177
1208
|
|
|
1178
1209
|
export interface CreateUserGroupRequest {
|
|
@@ -1490,7 +1521,7 @@ export interface Draft {
|
|
|
1490
1521
|
siteConfiguration: SiteConfigurationReduced;
|
|
1491
1522
|
/** @format uuid */
|
|
1492
1523
|
loanID?: string | null;
|
|
1493
|
-
type:
|
|
1524
|
+
type: "NewLoan" | "EditLoan";
|
|
1494
1525
|
isCoBorrower: boolean;
|
|
1495
1526
|
}
|
|
1496
1527
|
|
|
@@ -1509,7 +1540,7 @@ export interface DraftContent {
|
|
|
1509
1540
|
siteConfiguration: SiteConfigurationReduced;
|
|
1510
1541
|
/** @format uuid */
|
|
1511
1542
|
loanID?: string | null;
|
|
1512
|
-
type:
|
|
1543
|
+
type: "NewLoan" | "EditLoan";
|
|
1513
1544
|
isCoBorrower: boolean;
|
|
1514
1545
|
applicationPayload: any;
|
|
1515
1546
|
}
|
|
@@ -1651,8 +1682,15 @@ export interface EncompassRequestLog {
|
|
|
1651
1682
|
losId?: string | null;
|
|
1652
1683
|
/** @format uuid */
|
|
1653
1684
|
accountId: string;
|
|
1654
|
-
operationType:
|
|
1655
|
-
|
|
1685
|
+
operationType:
|
|
1686
|
+
| "FieldUpdate"
|
|
1687
|
+
| "EConsentUpdate"
|
|
1688
|
+
| "DocumentSync"
|
|
1689
|
+
| "MilestoneUpdate"
|
|
1690
|
+
| "DocumentAttachment"
|
|
1691
|
+
| "General"
|
|
1692
|
+
| "FieldReader";
|
|
1693
|
+
outcome: "Success" | "Failure" | "PartialSuccess";
|
|
1656
1694
|
message: string;
|
|
1657
1695
|
endpoint?: string | null;
|
|
1658
1696
|
httpMethod?: string | null;
|
|
@@ -1889,7 +1927,20 @@ export interface FusionFieldDisplay {
|
|
|
1889
1927
|
}
|
|
1890
1928
|
|
|
1891
1929
|
export interface FusionReportFilter {
|
|
1892
|
-
filterType:
|
|
1930
|
+
filterType:
|
|
1931
|
+
| "DateGreaterThanOrEqualTo"
|
|
1932
|
+
| "DateGreaterThan"
|
|
1933
|
+
| "DateLessThan"
|
|
1934
|
+
| "DateLessThanOrEqualTo"
|
|
1935
|
+
| "DateEquals"
|
|
1936
|
+
| "DateDoesntEqual"
|
|
1937
|
+
| "DateNonEmpty"
|
|
1938
|
+
| "DateEmpty"
|
|
1939
|
+
| "StringContains"
|
|
1940
|
+
| "StringEquals"
|
|
1941
|
+
| "StringNotEmpty"
|
|
1942
|
+
| "StringNotEquals"
|
|
1943
|
+
| "StringNotContains";
|
|
1893
1944
|
targetField: string;
|
|
1894
1945
|
targetValue: string;
|
|
1895
1946
|
}
|
|
@@ -2017,7 +2068,40 @@ export interface GuidPatchOperation {
|
|
|
2017
2068
|
}
|
|
2018
2069
|
|
|
2019
2070
|
export interface IPAddress {
|
|
2020
|
-
addressFamily:
|
|
2071
|
+
addressFamily:
|
|
2072
|
+
| "Unspecified"
|
|
2073
|
+
| "Unix"
|
|
2074
|
+
| "InterNetwork"
|
|
2075
|
+
| "ImpLink"
|
|
2076
|
+
| "Pup"
|
|
2077
|
+
| "Chaos"
|
|
2078
|
+
| "NS"
|
|
2079
|
+
| "Ipx"
|
|
2080
|
+
| "Iso"
|
|
2081
|
+
| "Osi"
|
|
2082
|
+
| "Ecma"
|
|
2083
|
+
| "DataKit"
|
|
2084
|
+
| "Ccitt"
|
|
2085
|
+
| "Sna"
|
|
2086
|
+
| "DecNet"
|
|
2087
|
+
| "DataLink"
|
|
2088
|
+
| "Lat"
|
|
2089
|
+
| "HyperChannel"
|
|
2090
|
+
| "AppleTalk"
|
|
2091
|
+
| "NetBios"
|
|
2092
|
+
| "VoiceView"
|
|
2093
|
+
| "FireFox"
|
|
2094
|
+
| "Banyan"
|
|
2095
|
+
| "Atm"
|
|
2096
|
+
| "InterNetworkV6"
|
|
2097
|
+
| "Cluster"
|
|
2098
|
+
| "Ieee12844"
|
|
2099
|
+
| "Irda"
|
|
2100
|
+
| "NetworkDesigners"
|
|
2101
|
+
| "Max"
|
|
2102
|
+
| "Packet"
|
|
2103
|
+
| "ControllerAreaNetwork"
|
|
2104
|
+
| "Unknown";
|
|
2021
2105
|
/** @format int64 */
|
|
2022
2106
|
scopeId: number;
|
|
2023
2107
|
isIPv6Multicast: boolean;
|
|
@@ -2341,7 +2425,7 @@ export interface LoanBorrower {
|
|
|
2341
2425
|
citizenship?: LoanCitizenship | null;
|
|
2342
2426
|
maritalStatus?: LoanMaritalStatus | null;
|
|
2343
2427
|
languagePreference?: LoanLanguagePreference | null;
|
|
2344
|
-
applicationStatus:
|
|
2428
|
+
applicationStatus: "Draft" | "Complete";
|
|
2345
2429
|
/** @format int32 */
|
|
2346
2430
|
numberOfDependents?: number | null;
|
|
2347
2431
|
isPrimaryBorrower: boolean;
|
|
@@ -3266,7 +3350,19 @@ export interface LoanContact {
|
|
|
3266
3350
|
email?: string | null;
|
|
3267
3351
|
phone?: string | null;
|
|
3268
3352
|
companyName?: string | null;
|
|
3269
|
-
role:
|
|
3353
|
+
role:
|
|
3354
|
+
| "Borrower"
|
|
3355
|
+
| "CoBorrower"
|
|
3356
|
+
| "NonBorrower"
|
|
3357
|
+
| "LoanOfficer"
|
|
3358
|
+
| "LoanProcessor"
|
|
3359
|
+
| "LoanOfficerAssistant"
|
|
3360
|
+
| "SupportingLoanOfficer"
|
|
3361
|
+
| "BuyerAgent"
|
|
3362
|
+
| "SellerAgent"
|
|
3363
|
+
| "TitleInsuranceAgent"
|
|
3364
|
+
| "EscrowAgent"
|
|
3365
|
+
| "SettlementAgent";
|
|
3270
3366
|
}
|
|
3271
3367
|
|
|
3272
3368
|
export interface LoanContactList {
|
|
@@ -3402,14 +3498,19 @@ export interface LoanImport {
|
|
|
3402
3498
|
/** @format int32 */
|
|
3403
3499
|
importedCount: number;
|
|
3404
3500
|
statusMessage?: string | null;
|
|
3405
|
-
status:
|
|
3406
|
-
|
|
3501
|
+
status:
|
|
3502
|
+
| "WaitingProcess"
|
|
3503
|
+
| "InProgress"
|
|
3504
|
+
| "Completed"
|
|
3505
|
+
| "Failed"
|
|
3506
|
+
| "Cancelled";
|
|
3507
|
+
importMode: "All" | "NewOnly" | "UpdateOnly";
|
|
3407
3508
|
/** @format date-time */
|
|
3408
3509
|
createdAt?: string | null;
|
|
3409
3510
|
}
|
|
3410
3511
|
|
|
3411
3512
|
export interface LoanImportLog {
|
|
3412
|
-
level:
|
|
3513
|
+
level: "None" | "Info" | "Warning" | "Error";
|
|
3413
3514
|
message: string;
|
|
3414
3515
|
/** @format date-time */
|
|
3415
3516
|
createdAt: string;
|
|
@@ -3470,8 +3571,22 @@ export interface LoanListPaginated {
|
|
|
3470
3571
|
export interface LoanLog {
|
|
3471
3572
|
/** @format uuid */
|
|
3472
3573
|
id: string;
|
|
3473
|
-
level:
|
|
3474
|
-
type:
|
|
3574
|
+
level: "None" | "Info" | "Warning" | "Error";
|
|
3575
|
+
type:
|
|
3576
|
+
| "Loan"
|
|
3577
|
+
| "Queue"
|
|
3578
|
+
| "POSFlagChanged"
|
|
3579
|
+
| "Verification"
|
|
3580
|
+
| "DocumentUploaded"
|
|
3581
|
+
| "LoanCreated"
|
|
3582
|
+
| "WorkflowSubmitted"
|
|
3583
|
+
| "UserInvitationSent"
|
|
3584
|
+
| "CoBorrowerAdded"
|
|
3585
|
+
| "TaskCompleted"
|
|
3586
|
+
| "LoanStatusChanged"
|
|
3587
|
+
| "EConsent"
|
|
3588
|
+
| "SensitiveDataPurge"
|
|
3589
|
+
| "ClosingDateUpdated";
|
|
3475
3590
|
message: string;
|
|
3476
3591
|
/** @format date-time */
|
|
3477
3592
|
createdAt: string;
|
|
@@ -3480,8 +3595,22 @@ export interface LoanLog {
|
|
|
3480
3595
|
export interface LoanLogDetail {
|
|
3481
3596
|
/** @format uuid */
|
|
3482
3597
|
id: string;
|
|
3483
|
-
level:
|
|
3484
|
-
type:
|
|
3598
|
+
level: "None" | "Info" | "Warning" | "Error";
|
|
3599
|
+
type:
|
|
3600
|
+
| "Loan"
|
|
3601
|
+
| "Queue"
|
|
3602
|
+
| "POSFlagChanged"
|
|
3603
|
+
| "Verification"
|
|
3604
|
+
| "DocumentUploaded"
|
|
3605
|
+
| "LoanCreated"
|
|
3606
|
+
| "WorkflowSubmitted"
|
|
3607
|
+
| "UserInvitationSent"
|
|
3608
|
+
| "CoBorrowerAdded"
|
|
3609
|
+
| "TaskCompleted"
|
|
3610
|
+
| "LoanStatusChanged"
|
|
3611
|
+
| "EConsent"
|
|
3612
|
+
| "SensitiveDataPurge"
|
|
3613
|
+
| "ClosingDateUpdated";
|
|
3485
3614
|
message: string;
|
|
3486
3615
|
/** @format date-time */
|
|
3487
3616
|
createdAt: string;
|
|
@@ -3765,7 +3894,19 @@ export interface LoanUser {
|
|
|
3765
3894
|
email: string;
|
|
3766
3895
|
phone?: string | null;
|
|
3767
3896
|
role: string;
|
|
3768
|
-
loanRole:
|
|
3897
|
+
loanRole:
|
|
3898
|
+
| "Borrower"
|
|
3899
|
+
| "CoBorrower"
|
|
3900
|
+
| "NonBorrower"
|
|
3901
|
+
| "LoanOfficer"
|
|
3902
|
+
| "LoanProcessor"
|
|
3903
|
+
| "LoanOfficerAssistant"
|
|
3904
|
+
| "SupportingLoanOfficer"
|
|
3905
|
+
| "BuyerAgent"
|
|
3906
|
+
| "SellerAgent"
|
|
3907
|
+
| "TitleInsuranceAgent"
|
|
3908
|
+
| "EscrowAgent"
|
|
3909
|
+
| "SettlementAgent";
|
|
3769
3910
|
isUser: boolean;
|
|
3770
3911
|
/** @format date-time */
|
|
3771
3912
|
createdAt: string;
|
|
@@ -3931,6 +4072,7 @@ export interface NotificationTemplate {
|
|
|
3931
4072
|
/** @format uuid */
|
|
3932
4073
|
id: string;
|
|
3933
4074
|
htmlBody: string;
|
|
4075
|
+
key: string;
|
|
3934
4076
|
name: string;
|
|
3935
4077
|
plainBody: string;
|
|
3936
4078
|
description?: string | null;
|
|
@@ -3956,6 +4098,7 @@ export interface NotificationTemplateBase {
|
|
|
3956
4098
|
/** @format uuid */
|
|
3957
4099
|
id: string;
|
|
3958
4100
|
htmlBody: string;
|
|
4101
|
+
key: string;
|
|
3959
4102
|
name: string;
|
|
3960
4103
|
plainBody: string;
|
|
3961
4104
|
description?: string | null;
|
|
@@ -3970,10 +4113,19 @@ export interface NotificationTemplateBase {
|
|
|
3970
4113
|
useDefaultHeaderAndFooter: boolean;
|
|
3971
4114
|
}
|
|
3972
4115
|
|
|
4116
|
+
export interface NotificationTemplateBasePaginated {
|
|
4117
|
+
rows: NotificationTemplateBase[];
|
|
4118
|
+
pagination: Pagination;
|
|
4119
|
+
/** @format int64 */
|
|
4120
|
+
count: number;
|
|
4121
|
+
}
|
|
4122
|
+
|
|
3973
4123
|
export interface NotificationTemplateRequest {
|
|
3974
4124
|
/** @minLength 1 */
|
|
3975
4125
|
htmlBody: string;
|
|
3976
4126
|
/** @minLength 1 */
|
|
4127
|
+
key: string;
|
|
4128
|
+
/** @minLength 1 */
|
|
3977
4129
|
name: string;
|
|
3978
4130
|
plainBody: string;
|
|
3979
4131
|
description?: string | null;
|
|
@@ -3988,6 +4140,13 @@ export interface NotificationTemplateRequest {
|
|
|
3988
4140
|
useDefaultHeaderAndFooter: boolean;
|
|
3989
4141
|
}
|
|
3990
4142
|
|
|
4143
|
+
export interface NotificationTemplateSearchCriteria {
|
|
4144
|
+
searchText?: string | null;
|
|
4145
|
+
key?: string | null;
|
|
4146
|
+
status?: VersionStatusType | null;
|
|
4147
|
+
includeDefaults: boolean;
|
|
4148
|
+
}
|
|
4149
|
+
|
|
3991
4150
|
export interface NotificationTemplateVersion {
|
|
3992
4151
|
/** @format date-time */
|
|
3993
4152
|
createdAt: string;
|
|
@@ -4054,7 +4213,7 @@ export interface NotificationTemplateVersionUpdateRequest {
|
|
|
4054
4213
|
|
|
4055
4214
|
export interface Operation {
|
|
4056
4215
|
op?: string;
|
|
4057
|
-
value?:
|
|
4216
|
+
value?: string | number | boolean | null | object;
|
|
4058
4217
|
path?: string;
|
|
4059
4218
|
}
|
|
4060
4219
|
|
|
@@ -4410,7 +4569,7 @@ export interface SSOTokenRequest {
|
|
|
4410
4569
|
}
|
|
4411
4570
|
|
|
4412
4571
|
export interface SamlMetadataRequest {
|
|
4413
|
-
ssoIntegration:
|
|
4572
|
+
ssoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
4414
4573
|
}
|
|
4415
4574
|
|
|
4416
4575
|
export interface SendForgotPasswordRequest {
|
|
@@ -4430,7 +4589,7 @@ export interface SendLoanDocumentsRequest {
|
|
|
4430
4589
|
export interface SendNotificationForLoanRequest {
|
|
4431
4590
|
/** @minLength 1 */
|
|
4432
4591
|
loanID: string;
|
|
4433
|
-
|
|
4592
|
+
templateKey: string;
|
|
4434
4593
|
loanOfficerEmail?: string | null;
|
|
4435
4594
|
/** @format uuid */
|
|
4436
4595
|
siteConfigurationId?: string | null;
|
|
@@ -4449,7 +4608,7 @@ export interface SiteConfiguration {
|
|
|
4449
4608
|
deletedAt?: string | null;
|
|
4450
4609
|
/** @format uuid */
|
|
4451
4610
|
id: string;
|
|
4452
|
-
type:
|
|
4611
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
4453
4612
|
/** @format uuid */
|
|
4454
4613
|
entityID: string;
|
|
4455
4614
|
/** @format int32 */
|
|
@@ -4644,7 +4803,7 @@ export interface SiteConfigurationByUrl {
|
|
|
4644
4803
|
deletedAt?: string | null;
|
|
4645
4804
|
/** @format uuid */
|
|
4646
4805
|
id: string;
|
|
4647
|
-
type:
|
|
4806
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
4648
4807
|
/** @format uuid */
|
|
4649
4808
|
entityID: string;
|
|
4650
4809
|
/** @format int32 */
|
|
@@ -4857,7 +5016,7 @@ export interface SiteConfigurationForm {
|
|
|
4857
5016
|
export interface SiteConfigurationReduced {
|
|
4858
5017
|
/** @format uuid */
|
|
4859
5018
|
id: string;
|
|
4860
|
-
type:
|
|
5019
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
4861
5020
|
url?: string | null;
|
|
4862
5021
|
name: string;
|
|
4863
5022
|
/** @format int64 */
|
|
@@ -4875,7 +5034,7 @@ export interface SiteConfigurationRequest {
|
|
|
4875
5034
|
entityID: string;
|
|
4876
5035
|
/** @format int32 */
|
|
4877
5036
|
entityType: number;
|
|
4878
|
-
type:
|
|
5037
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
4879
5038
|
url: string;
|
|
4880
5039
|
name: string;
|
|
4881
5040
|
introduction?: string | null;
|
|
@@ -5052,7 +5211,7 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
5052
5211
|
export interface SiteConfigurationSummary {
|
|
5053
5212
|
/** @format uuid */
|
|
5054
5213
|
id: string;
|
|
5055
|
-
type:
|
|
5214
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5056
5215
|
url?: string | null;
|
|
5057
5216
|
name: string;
|
|
5058
5217
|
/** @format int64 */
|
|
@@ -5237,7 +5396,7 @@ export interface TestSendNotificationForLoanRequest {
|
|
|
5237
5396
|
siteConfigurationId: string;
|
|
5238
5397
|
toAddress?: string | null;
|
|
5239
5398
|
toPhoneNumber?: string | null;
|
|
5240
|
-
|
|
5399
|
+
templateKey?: string | null;
|
|
5241
5400
|
attachments: Attachment[];
|
|
5242
5401
|
}
|
|
5243
5402
|
|
|
@@ -5680,7 +5839,19 @@ export interface UserDevice {
|
|
|
5680
5839
|
export interface UserDraft {
|
|
5681
5840
|
/** @format uuid */
|
|
5682
5841
|
draftID: string;
|
|
5683
|
-
role:
|
|
5842
|
+
role:
|
|
5843
|
+
| "Borrower"
|
|
5844
|
+
| "CoBorrower"
|
|
5845
|
+
| "NonBorrower"
|
|
5846
|
+
| "LoanOfficer"
|
|
5847
|
+
| "LoanProcessor"
|
|
5848
|
+
| "LoanOfficerAssistant"
|
|
5849
|
+
| "SupportingLoanOfficer"
|
|
5850
|
+
| "BuyerAgent"
|
|
5851
|
+
| "SellerAgent"
|
|
5852
|
+
| "TitleInsuranceAgent"
|
|
5853
|
+
| "EscrowAgent"
|
|
5854
|
+
| "SettlementAgent";
|
|
5684
5855
|
user: User;
|
|
5685
5856
|
}
|
|
5686
5857
|
|
|
@@ -5707,7 +5878,7 @@ export interface UserGroupAccessScope {
|
|
|
5707
5878
|
id: string;
|
|
5708
5879
|
/** @format uuid */
|
|
5709
5880
|
groupId: string;
|
|
5710
|
-
scopeType:
|
|
5881
|
+
scopeType: "User" | "Branch";
|
|
5711
5882
|
/** @format uuid */
|
|
5712
5883
|
userId?: string | null;
|
|
5713
5884
|
/** @format uuid */
|
|
@@ -5743,7 +5914,19 @@ export interface UserLoan {
|
|
|
5743
5914
|
deletedAt?: string | null;
|
|
5744
5915
|
loanID: string;
|
|
5745
5916
|
user: User;
|
|
5746
|
-
role:
|
|
5917
|
+
role:
|
|
5918
|
+
| "Borrower"
|
|
5919
|
+
| "CoBorrower"
|
|
5920
|
+
| "NonBorrower"
|
|
5921
|
+
| "LoanOfficer"
|
|
5922
|
+
| "LoanProcessor"
|
|
5923
|
+
| "LoanOfficerAssistant"
|
|
5924
|
+
| "SupportingLoanOfficer"
|
|
5925
|
+
| "BuyerAgent"
|
|
5926
|
+
| "SellerAgent"
|
|
5927
|
+
| "TitleInsuranceAgent"
|
|
5928
|
+
| "EscrowAgent"
|
|
5929
|
+
| "SettlementAgent";
|
|
5747
5930
|
/** @format int32 */
|
|
5748
5931
|
borrowerPair?: number | null;
|
|
5749
5932
|
/** @format int32 */
|
|
@@ -5756,10 +5939,10 @@ export interface UserLoanConsent {
|
|
|
5756
5939
|
id: string;
|
|
5757
5940
|
/** @format uuid */
|
|
5758
5941
|
userLoanID: string;
|
|
5759
|
-
type:
|
|
5942
|
+
type: "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
5760
5943
|
providedConsent: boolean;
|
|
5761
5944
|
ipAddress?: string | null;
|
|
5762
|
-
losSyncStatus:
|
|
5945
|
+
losSyncStatus: "NotStarted" | "Failed" | "Success";
|
|
5763
5946
|
/** @format date-time */
|
|
5764
5947
|
createdAt: string;
|
|
5765
5948
|
}
|
|
@@ -5904,7 +6087,16 @@ export interface UserSummary {
|
|
|
5904
6087
|
id: string;
|
|
5905
6088
|
name?: string | null;
|
|
5906
6089
|
email?: string | null;
|
|
5907
|
-
role:
|
|
6090
|
+
role:
|
|
6091
|
+
| "Borrower"
|
|
6092
|
+
| "LoanOfficer"
|
|
6093
|
+
| "Admin"
|
|
6094
|
+
| "SuperAdmin"
|
|
6095
|
+
| "Realtor"
|
|
6096
|
+
| "SettlementAgent"
|
|
6097
|
+
| "LoanProcessor"
|
|
6098
|
+
| "LoanOfficerAssistant"
|
|
6099
|
+
| "SystemAdmin";
|
|
5908
6100
|
}
|
|
5909
6101
|
|
|
5910
6102
|
export interface VerifyPasswordRequest {
|
|
@@ -5940,335 +6132,6 @@ export interface Workflow {
|
|
|
5940
6132
|
icon: string;
|
|
5941
6133
|
}
|
|
5942
6134
|
|
|
5943
|
-
export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
|
|
5944
|
-
|
|
5945
|
-
export type AuditLogEntryChangeTypeEnum =
|
|
5946
|
-
| "Created"
|
|
5947
|
-
| "Modified"
|
|
5948
|
-
| "SoftDeleted"
|
|
5949
|
-
| "HardDeleted"
|
|
5950
|
-
| "Restored";
|
|
5951
|
-
|
|
5952
|
-
export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
|
|
5953
|
-
|
|
5954
|
-
export type CreateAccountRequestEnvironmentEnum =
|
|
5955
|
-
| "Development"
|
|
5956
|
-
| "Staging"
|
|
5957
|
-
| "UAT"
|
|
5958
|
-
| "Production";
|
|
5959
|
-
|
|
5960
|
-
export type CreateGroupMemberRequestLoanRoleEnum =
|
|
5961
|
-
| "Borrower"
|
|
5962
|
-
| "CoBorrower"
|
|
5963
|
-
| "NonBorrower"
|
|
5964
|
-
| "LoanOfficer"
|
|
5965
|
-
| "LoanProcessor"
|
|
5966
|
-
| "LoanOfficerAssistant"
|
|
5967
|
-
| "SupportingLoanOfficer"
|
|
5968
|
-
| "BuyerAgent"
|
|
5969
|
-
| "SellerAgent"
|
|
5970
|
-
| "TitleInsuranceAgent"
|
|
5971
|
-
| "EscrowAgent"
|
|
5972
|
-
| "SettlementAgent";
|
|
5973
|
-
|
|
5974
|
-
/** @deprecated */
|
|
5975
|
-
export type CreateInviteRequestRelationshipEnum =
|
|
5976
|
-
| "NotApplicable"
|
|
5977
|
-
| "Spouse"
|
|
5978
|
-
| "NonSpouse";
|
|
5979
|
-
|
|
5980
|
-
export type CreateLoanImportRequestImportModeEnum =
|
|
5981
|
-
| "All"
|
|
5982
|
-
| "NewOnly"
|
|
5983
|
-
| "UpdateOnly";
|
|
5984
|
-
|
|
5985
|
-
export type CreateUserDraftLoanRoleEnum =
|
|
5986
|
-
| "Borrower"
|
|
5987
|
-
| "CoBorrower"
|
|
5988
|
-
| "NonBorrower"
|
|
5989
|
-
| "LoanOfficer"
|
|
5990
|
-
| "LoanProcessor"
|
|
5991
|
-
| "LoanOfficerAssistant"
|
|
5992
|
-
| "SupportingLoanOfficer"
|
|
5993
|
-
| "BuyerAgent"
|
|
5994
|
-
| "SellerAgent"
|
|
5995
|
-
| "TitleInsuranceAgent"
|
|
5996
|
-
| "EscrowAgent"
|
|
5997
|
-
| "SettlementAgent";
|
|
5998
|
-
|
|
5999
|
-
export type DraftTypeEnum = "NewLoan" | "EditLoan";
|
|
6000
|
-
|
|
6001
|
-
export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
|
|
6002
|
-
|
|
6003
|
-
export type EncompassRequestLogOperationTypeEnum =
|
|
6004
|
-
| "FieldUpdate"
|
|
6005
|
-
| "EConsentUpdate"
|
|
6006
|
-
| "DocumentSync"
|
|
6007
|
-
| "MilestoneUpdate"
|
|
6008
|
-
| "DocumentAttachment"
|
|
6009
|
-
| "General"
|
|
6010
|
-
| "FieldReader";
|
|
6011
|
-
|
|
6012
|
-
export type EncompassRequestLogOutcomeEnum =
|
|
6013
|
-
| "Success"
|
|
6014
|
-
| "Failure"
|
|
6015
|
-
| "PartialSuccess";
|
|
6016
|
-
|
|
6017
|
-
export type FusionReportFilterFilterTypeEnum =
|
|
6018
|
-
| "DateGreaterThanOrEqualTo"
|
|
6019
|
-
| "DateGreaterThan"
|
|
6020
|
-
| "DateLessThan"
|
|
6021
|
-
| "DateLessThanOrEqualTo"
|
|
6022
|
-
| "DateEquals"
|
|
6023
|
-
| "DateDoesntEqual"
|
|
6024
|
-
| "DateNonEmpty"
|
|
6025
|
-
| "DateEmpty"
|
|
6026
|
-
| "StringContains"
|
|
6027
|
-
| "StringEquals"
|
|
6028
|
-
| "StringNotEmpty"
|
|
6029
|
-
| "StringNotEquals"
|
|
6030
|
-
| "StringNotContains";
|
|
6031
|
-
|
|
6032
|
-
export type IpAddressAddressFamilyEnum =
|
|
6033
|
-
| "Unspecified"
|
|
6034
|
-
| "Unix"
|
|
6035
|
-
| "InterNetwork"
|
|
6036
|
-
| "ImpLink"
|
|
6037
|
-
| "Pup"
|
|
6038
|
-
| "Chaos"
|
|
6039
|
-
| "NS"
|
|
6040
|
-
| "Ipx"
|
|
6041
|
-
| "Iso"
|
|
6042
|
-
| "Osi"
|
|
6043
|
-
| "Ecma"
|
|
6044
|
-
| "DataKit"
|
|
6045
|
-
| "Ccitt"
|
|
6046
|
-
| "Sna"
|
|
6047
|
-
| "DecNet"
|
|
6048
|
-
| "DataLink"
|
|
6049
|
-
| "Lat"
|
|
6050
|
-
| "HyperChannel"
|
|
6051
|
-
| "AppleTalk"
|
|
6052
|
-
| "NetBios"
|
|
6053
|
-
| "VoiceView"
|
|
6054
|
-
| "FireFox"
|
|
6055
|
-
| "Banyan"
|
|
6056
|
-
| "Atm"
|
|
6057
|
-
| "InterNetworkV6"
|
|
6058
|
-
| "Cluster"
|
|
6059
|
-
| "Ieee12844"
|
|
6060
|
-
| "Irda"
|
|
6061
|
-
| "NetworkDesigners"
|
|
6062
|
-
| "Max"
|
|
6063
|
-
| "Packet"
|
|
6064
|
-
| "ControllerAreaNetwork"
|
|
6065
|
-
| "Unknown";
|
|
6066
|
-
|
|
6067
|
-
export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
|
|
6068
|
-
|
|
6069
|
-
export type LoanContactRoleEnum =
|
|
6070
|
-
| "Borrower"
|
|
6071
|
-
| "CoBorrower"
|
|
6072
|
-
| "NonBorrower"
|
|
6073
|
-
| "LoanOfficer"
|
|
6074
|
-
| "LoanProcessor"
|
|
6075
|
-
| "LoanOfficerAssistant"
|
|
6076
|
-
| "SupportingLoanOfficer"
|
|
6077
|
-
| "BuyerAgent"
|
|
6078
|
-
| "SellerAgent"
|
|
6079
|
-
| "TitleInsuranceAgent"
|
|
6080
|
-
| "EscrowAgent"
|
|
6081
|
-
| "SettlementAgent";
|
|
6082
|
-
|
|
6083
|
-
export type LoanImportStatusEnum =
|
|
6084
|
-
| "WaitingProcess"
|
|
6085
|
-
| "InProgress"
|
|
6086
|
-
| "Completed"
|
|
6087
|
-
| "Failed"
|
|
6088
|
-
| "Cancelled";
|
|
6089
|
-
|
|
6090
|
-
export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
6091
|
-
|
|
6092
|
-
export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
6093
|
-
|
|
6094
|
-
export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
6095
|
-
|
|
6096
|
-
export type LoanLogTypeEnum =
|
|
6097
|
-
| "Loan"
|
|
6098
|
-
| "Queue"
|
|
6099
|
-
| "POSFlagChanged"
|
|
6100
|
-
| "Verification"
|
|
6101
|
-
| "DocumentUploaded"
|
|
6102
|
-
| "LoanCreated"
|
|
6103
|
-
| "WorkflowSubmitted"
|
|
6104
|
-
| "UserInvitationSent"
|
|
6105
|
-
| "CoBorrowerAdded"
|
|
6106
|
-
| "TaskCompleted"
|
|
6107
|
-
| "LoanStatusChanged"
|
|
6108
|
-
| "EConsent"
|
|
6109
|
-
| "SensitiveDataPurge"
|
|
6110
|
-
| "ClosingDateUpdated";
|
|
6111
|
-
|
|
6112
|
-
export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
6113
|
-
|
|
6114
|
-
export type LoanLogDetailTypeEnum =
|
|
6115
|
-
| "Loan"
|
|
6116
|
-
| "Queue"
|
|
6117
|
-
| "POSFlagChanged"
|
|
6118
|
-
| "Verification"
|
|
6119
|
-
| "DocumentUploaded"
|
|
6120
|
-
| "LoanCreated"
|
|
6121
|
-
| "WorkflowSubmitted"
|
|
6122
|
-
| "UserInvitationSent"
|
|
6123
|
-
| "CoBorrowerAdded"
|
|
6124
|
-
| "TaskCompleted"
|
|
6125
|
-
| "LoanStatusChanged"
|
|
6126
|
-
| "EConsent"
|
|
6127
|
-
| "SensitiveDataPurge"
|
|
6128
|
-
| "ClosingDateUpdated";
|
|
6129
|
-
|
|
6130
|
-
export type LoanUserLoanRoleEnum =
|
|
6131
|
-
| "Borrower"
|
|
6132
|
-
| "CoBorrower"
|
|
6133
|
-
| "NonBorrower"
|
|
6134
|
-
| "LoanOfficer"
|
|
6135
|
-
| "LoanProcessor"
|
|
6136
|
-
| "LoanOfficerAssistant"
|
|
6137
|
-
| "SupportingLoanOfficer"
|
|
6138
|
-
| "BuyerAgent"
|
|
6139
|
-
| "SellerAgent"
|
|
6140
|
-
| "TitleInsuranceAgent"
|
|
6141
|
-
| "EscrowAgent"
|
|
6142
|
-
| "SettlementAgent";
|
|
6143
|
-
|
|
6144
|
-
export type SamlMetadataRequestSsoIntegrationEnum =
|
|
6145
|
-
| "ConsumerConnect"
|
|
6146
|
-
| "TheBigPOS"
|
|
6147
|
-
| "POSF";
|
|
6148
|
-
|
|
6149
|
-
export type SiteConfigurationTypeEnum =
|
|
6150
|
-
| "None"
|
|
6151
|
-
| "Account"
|
|
6152
|
-
| "Corporate"
|
|
6153
|
-
| "Branch"
|
|
6154
|
-
| "LoanOfficer"
|
|
6155
|
-
| "Partner";
|
|
6156
|
-
|
|
6157
|
-
export type SiteConfigurationByUrlTypeEnum =
|
|
6158
|
-
| "None"
|
|
6159
|
-
| "Account"
|
|
6160
|
-
| "Corporate"
|
|
6161
|
-
| "Branch"
|
|
6162
|
-
| "LoanOfficer"
|
|
6163
|
-
| "Partner";
|
|
6164
|
-
|
|
6165
|
-
export type SiteConfigurationReducedTypeEnum =
|
|
6166
|
-
| "None"
|
|
6167
|
-
| "Account"
|
|
6168
|
-
| "Corporate"
|
|
6169
|
-
| "Branch"
|
|
6170
|
-
| "LoanOfficer"
|
|
6171
|
-
| "Partner";
|
|
6172
|
-
|
|
6173
|
-
export type SiteConfigurationRequestTypeEnum =
|
|
6174
|
-
| "None"
|
|
6175
|
-
| "Account"
|
|
6176
|
-
| "Corporate"
|
|
6177
|
-
| "Branch"
|
|
6178
|
-
| "LoanOfficer"
|
|
6179
|
-
| "Partner";
|
|
6180
|
-
|
|
6181
|
-
export type SiteConfigurationSummaryTypeEnum =
|
|
6182
|
-
| "None"
|
|
6183
|
-
| "Account"
|
|
6184
|
-
| "Corporate"
|
|
6185
|
-
| "Branch"
|
|
6186
|
-
| "LoanOfficer"
|
|
6187
|
-
| "Partner";
|
|
6188
|
-
|
|
6189
|
-
export type UserDraftRoleEnum =
|
|
6190
|
-
| "Borrower"
|
|
6191
|
-
| "CoBorrower"
|
|
6192
|
-
| "NonBorrower"
|
|
6193
|
-
| "LoanOfficer"
|
|
6194
|
-
| "LoanProcessor"
|
|
6195
|
-
| "LoanOfficerAssistant"
|
|
6196
|
-
| "SupportingLoanOfficer"
|
|
6197
|
-
| "BuyerAgent"
|
|
6198
|
-
| "SellerAgent"
|
|
6199
|
-
| "TitleInsuranceAgent"
|
|
6200
|
-
| "EscrowAgent"
|
|
6201
|
-
| "SettlementAgent";
|
|
6202
|
-
|
|
6203
|
-
export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
|
|
6204
|
-
|
|
6205
|
-
export type UserLoanRoleEnum =
|
|
6206
|
-
| "Borrower"
|
|
6207
|
-
| "CoBorrower"
|
|
6208
|
-
| "NonBorrower"
|
|
6209
|
-
| "LoanOfficer"
|
|
6210
|
-
| "LoanProcessor"
|
|
6211
|
-
| "LoanOfficerAssistant"
|
|
6212
|
-
| "SupportingLoanOfficer"
|
|
6213
|
-
| "BuyerAgent"
|
|
6214
|
-
| "SellerAgent"
|
|
6215
|
-
| "TitleInsuranceAgent"
|
|
6216
|
-
| "EscrowAgent"
|
|
6217
|
-
| "SettlementAgent";
|
|
6218
|
-
|
|
6219
|
-
export type UserLoanConsentTypeEnum =
|
|
6220
|
-
| "Econsent"
|
|
6221
|
-
| "CreditAuthorization"
|
|
6222
|
-
| "Tcpa";
|
|
6223
|
-
|
|
6224
|
-
export type UserLoanConsentLosSyncStatusEnum =
|
|
6225
|
-
| "NotStarted"
|
|
6226
|
-
| "Failed"
|
|
6227
|
-
| "Success";
|
|
6228
|
-
|
|
6229
|
-
export type UserSummaryRoleEnum =
|
|
6230
|
-
| "Borrower"
|
|
6231
|
-
| "LoanOfficer"
|
|
6232
|
-
| "Admin"
|
|
6233
|
-
| "SuperAdmin"
|
|
6234
|
-
| "Realtor"
|
|
6235
|
-
| "SettlementAgent"
|
|
6236
|
-
| "LoanProcessor"
|
|
6237
|
-
| "LoanOfficerAssistant"
|
|
6238
|
-
| "SystemAdmin";
|
|
6239
|
-
|
|
6240
|
-
/** @default "Realtor" */
|
|
6241
|
-
export type GetPartnersParamsRoleEnum =
|
|
6242
|
-
| "Borrower"
|
|
6243
|
-
| "LoanOfficer"
|
|
6244
|
-
| "Admin"
|
|
6245
|
-
| "SuperAdmin"
|
|
6246
|
-
| "Realtor"
|
|
6247
|
-
| "SettlementAgent"
|
|
6248
|
-
| "LoanProcessor"
|
|
6249
|
-
| "LoanOfficerAssistant"
|
|
6250
|
-
| "SystemAdmin";
|
|
6251
|
-
|
|
6252
|
-
export type GetSamlMetadataParamsSSoIntegrationEnum =
|
|
6253
|
-
| "ConsumerConnect"
|
|
6254
|
-
| "TheBigPOS"
|
|
6255
|
-
| "POSF";
|
|
6256
|
-
|
|
6257
|
-
export type GetSamlMetadataParamsEnum =
|
|
6258
|
-
| "ConsumerConnect"
|
|
6259
|
-
| "TheBigPOS"
|
|
6260
|
-
| "POSF";
|
|
6261
|
-
|
|
6262
|
-
export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum =
|
|
6263
|
-
| "ConsumerConnect"
|
|
6264
|
-
| "TheBigPOS"
|
|
6265
|
-
| "POSF";
|
|
6266
|
-
|
|
6267
|
-
export type CreateOrReplaceSamlMetadataParamsEnum =
|
|
6268
|
-
| "ConsumerConnect"
|
|
6269
|
-
| "TheBigPOS"
|
|
6270
|
-
| "POSF";
|
|
6271
|
-
|
|
6272
6135
|
import type {
|
|
6273
6136
|
AxiosInstance,
|
|
6274
6137
|
AxiosRequestConfig,
|
|
@@ -6311,6 +6174,7 @@ export interface ApiConfig<SecurityDataType = unknown>
|
|
|
6311
6174
|
}
|
|
6312
6175
|
|
|
6313
6176
|
export enum ContentType {
|
|
6177
|
+
JsonPatch = "application/json-patch+json",
|
|
6314
6178
|
Json = "application/json",
|
|
6315
6179
|
JsonApi = "application/vnd.api+json",
|
|
6316
6180
|
FormData = "multipart/form-data",
|
|
@@ -6446,7 +6310,7 @@ export class HttpClient<SecurityDataType = unknown> {
|
|
|
6446
6310
|
|
|
6447
6311
|
/**
|
|
6448
6312
|
* @title The Big POS API
|
|
6449
|
-
* @version v2.
|
|
6313
|
+
* @version v2.38.0
|
|
6450
6314
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
6451
6315
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
6452
6316
|
*/
|
|
@@ -8050,6 +7914,8 @@ export class Api<
|
|
|
8050
7914
|
* @default 20
|
|
8051
7915
|
*/
|
|
8052
7916
|
pageSize?: number;
|
|
7917
|
+
/** @format uuid */
|
|
7918
|
+
loanId?: string;
|
|
8053
7919
|
},
|
|
8054
7920
|
params: RequestParams = {},
|
|
8055
7921
|
) =>
|
|
@@ -8775,7 +8641,7 @@ export class Api<
|
|
|
8775
8641
|
method: "PATCH",
|
|
8776
8642
|
body: data,
|
|
8777
8643
|
secure: true,
|
|
8778
|
-
type: ContentType.
|
|
8644
|
+
type: ContentType.JsonPatch,
|
|
8779
8645
|
format: "json",
|
|
8780
8646
|
...params,
|
|
8781
8647
|
}),
|
|
@@ -8796,7 +8662,7 @@ export class Api<
|
|
|
8796
8662
|
method: "POST",
|
|
8797
8663
|
body: data,
|
|
8798
8664
|
secure: true,
|
|
8799
|
-
type: ContentType.
|
|
8665
|
+
type: ContentType.JsonPatch,
|
|
8800
8666
|
format: "json",
|
|
8801
8667
|
...params,
|
|
8802
8668
|
}),
|
|
@@ -8885,7 +8751,7 @@ export class Api<
|
|
|
8885
8751
|
method: "PATCH",
|
|
8886
8752
|
body: data,
|
|
8887
8753
|
secure: true,
|
|
8888
|
-
type: ContentType.
|
|
8754
|
+
type: ContentType.JsonPatch,
|
|
8889
8755
|
format: "json",
|
|
8890
8756
|
...params,
|
|
8891
8757
|
}),
|
|
@@ -8912,7 +8778,7 @@ export class Api<
|
|
|
8912
8778
|
method: "PATCH",
|
|
8913
8779
|
body: data,
|
|
8914
8780
|
secure: true,
|
|
8915
|
-
type: ContentType.
|
|
8781
|
+
type: ContentType.JsonPatch,
|
|
8916
8782
|
format: "json",
|
|
8917
8783
|
...params,
|
|
8918
8784
|
}),
|
|
@@ -9069,7 +8935,7 @@ export class Api<
|
|
|
9069
8935
|
method: "POST",
|
|
9070
8936
|
body: data,
|
|
9071
8937
|
secure: true,
|
|
9072
|
-
type: ContentType.
|
|
8938
|
+
type: ContentType.JsonPatch,
|
|
9073
8939
|
format: "json",
|
|
9074
8940
|
...params,
|
|
9075
8941
|
}),
|
|
@@ -9154,7 +9020,7 @@ export class Api<
|
|
|
9154
9020
|
method: "PATCH",
|
|
9155
9021
|
body: data,
|
|
9156
9022
|
secure: true,
|
|
9157
|
-
type: ContentType.
|
|
9023
|
+
type: ContentType.JsonPatch,
|
|
9158
9024
|
format: "json",
|
|
9159
9025
|
...params,
|
|
9160
9026
|
}),
|
|
@@ -9234,7 +9100,7 @@ export class Api<
|
|
|
9234
9100
|
method: "PATCH",
|
|
9235
9101
|
body: data,
|
|
9236
9102
|
secure: true,
|
|
9237
|
-
type: ContentType.
|
|
9103
|
+
type: ContentType.JsonPatch,
|
|
9238
9104
|
format: "json",
|
|
9239
9105
|
...params,
|
|
9240
9106
|
}),
|
|
@@ -9308,7 +9174,7 @@ export class Api<
|
|
|
9308
9174
|
method: "POST",
|
|
9309
9175
|
body: data,
|
|
9310
9176
|
secure: true,
|
|
9311
|
-
type: ContentType.
|
|
9177
|
+
type: ContentType.JsonPatch,
|
|
9312
9178
|
format: "json",
|
|
9313
9179
|
...params,
|
|
9314
9180
|
}),
|
|
@@ -10828,7 +10694,7 @@ export class Api<
|
|
|
10828
10694
|
query: query,
|
|
10829
10695
|
body: data,
|
|
10830
10696
|
secure: true,
|
|
10831
|
-
type: ContentType.
|
|
10697
|
+
type: ContentType.JsonPatch,
|
|
10832
10698
|
format: "json",
|
|
10833
10699
|
...params,
|
|
10834
10700
|
}),
|
|
@@ -10880,7 +10746,7 @@ export class Api<
|
|
|
10880
10746
|
method: "POST",
|
|
10881
10747
|
body: data,
|
|
10882
10748
|
secure: true,
|
|
10883
|
-
type: ContentType.
|
|
10749
|
+
type: ContentType.JsonPatch,
|
|
10884
10750
|
format: "json",
|
|
10885
10751
|
...params,
|
|
10886
10752
|
}),
|
|
@@ -10994,6 +10860,28 @@ export class Api<
|
|
|
10994
10860
|
...params,
|
|
10995
10861
|
}),
|
|
10996
10862
|
|
|
10863
|
+
/**
|
|
10864
|
+
* No description
|
|
10865
|
+
*
|
|
10866
|
+
* @tags LoanTaskNotifications
|
|
10867
|
+
* @name SendOutstandingLoanTaskNotification
|
|
10868
|
+
* @summary Send Outstanding Task Notification
|
|
10869
|
+
* @request POST:/api/loans/{loanID}/tasks/reminders/outstanding
|
|
10870
|
+
* @secure
|
|
10871
|
+
* @response `204` `void` No Content
|
|
10872
|
+
* @response `404` `ProblemDetails` Not Found
|
|
10873
|
+
*/
|
|
10874
|
+
sendOutstandingLoanTaskNotification: (
|
|
10875
|
+
loanId: string,
|
|
10876
|
+
params: RequestParams = {},
|
|
10877
|
+
) =>
|
|
10878
|
+
this.request<void, ProblemDetails>({
|
|
10879
|
+
path: `/api/loans/${loanId}/tasks/reminders/outstanding`,
|
|
10880
|
+
method: "POST",
|
|
10881
|
+
secure: true,
|
|
10882
|
+
...params,
|
|
10883
|
+
}),
|
|
10884
|
+
|
|
10997
10885
|
/**
|
|
10998
10886
|
* No description
|
|
10999
10887
|
*
|
|
@@ -11157,28 +11045,6 @@ export class Api<
|
|
|
11157
11045
|
...params,
|
|
11158
11046
|
}),
|
|
11159
11047
|
|
|
11160
|
-
/**
|
|
11161
|
-
* No description
|
|
11162
|
-
*
|
|
11163
|
-
* @tags LoanTasks
|
|
11164
|
-
* @name SendOutstandingLoanTaskNotification
|
|
11165
|
-
* @summary Send Outstanding Task Notification
|
|
11166
|
-
* @request POST:/api/loans/{loanID}/tasks/reminders/outstanding
|
|
11167
|
-
* @secure
|
|
11168
|
-
* @response `204` `void` No Content
|
|
11169
|
-
* @response `404` `ProblemDetails` Not Found
|
|
11170
|
-
*/
|
|
11171
|
-
sendOutstandingLoanTaskNotification: (
|
|
11172
|
-
loanId: string,
|
|
11173
|
-
params: RequestParams = {},
|
|
11174
|
-
) =>
|
|
11175
|
-
this.request<void, ProblemDetails>({
|
|
11176
|
-
path: `/api/loans/${loanId}/tasks/reminders/outstanding`,
|
|
11177
|
-
method: "POST",
|
|
11178
|
-
secure: true,
|
|
11179
|
-
...params,
|
|
11180
|
-
}),
|
|
11181
|
-
|
|
11182
11048
|
/**
|
|
11183
11049
|
* No description
|
|
11184
11050
|
*
|
|
@@ -11625,6 +11491,39 @@ export class Api<
|
|
|
11625
11491
|
...params,
|
|
11626
11492
|
}),
|
|
11627
11493
|
|
|
11494
|
+
/**
|
|
11495
|
+
* No description
|
|
11496
|
+
*
|
|
11497
|
+
* @tags NotificationTemplates
|
|
11498
|
+
* @name SearchNotificationTemplates
|
|
11499
|
+
* @summary Search
|
|
11500
|
+
* @request POST:/api/notification-templates/search
|
|
11501
|
+
* @secure
|
|
11502
|
+
* @response `200` `NotificationTemplateBasePaginated` Success
|
|
11503
|
+
*/
|
|
11504
|
+
searchNotificationTemplates: (
|
|
11505
|
+
data: NotificationTemplateSearchCriteria,
|
|
11506
|
+
query?: {
|
|
11507
|
+
/** @format int32 */
|
|
11508
|
+
pageSize?: number;
|
|
11509
|
+
/** @format int32 */
|
|
11510
|
+
pageNumber?: number;
|
|
11511
|
+
sortBy?: string;
|
|
11512
|
+
sortDirection?: string;
|
|
11513
|
+
},
|
|
11514
|
+
params: RequestParams = {},
|
|
11515
|
+
) =>
|
|
11516
|
+
this.request<NotificationTemplateBasePaginated, any>({
|
|
11517
|
+
path: `/api/notification-templates/search`,
|
|
11518
|
+
method: "POST",
|
|
11519
|
+
query: query,
|
|
11520
|
+
body: data,
|
|
11521
|
+
secure: true,
|
|
11522
|
+
type: ContentType.Json,
|
|
11523
|
+
format: "json",
|
|
11524
|
+
...params,
|
|
11525
|
+
}),
|
|
11526
|
+
|
|
11628
11527
|
/**
|
|
11629
11528
|
* No description
|
|
11630
11529
|
*
|
|
@@ -11840,7 +11739,16 @@ export class Api<
|
|
|
11840
11739
|
query?: {
|
|
11841
11740
|
showAll?: boolean;
|
|
11842
11741
|
/** @default "Realtor" */
|
|
11843
|
-
role?:
|
|
11742
|
+
role?:
|
|
11743
|
+
| "Borrower"
|
|
11744
|
+
| "LoanOfficer"
|
|
11745
|
+
| "Admin"
|
|
11746
|
+
| "SuperAdmin"
|
|
11747
|
+
| "Realtor"
|
|
11748
|
+
| "SettlementAgent"
|
|
11749
|
+
| "LoanProcessor"
|
|
11750
|
+
| "LoanOfficerAssistant"
|
|
11751
|
+
| "SystemAdmin";
|
|
11844
11752
|
/** @format int32 */
|
|
11845
11753
|
pageSize?: number;
|
|
11846
11754
|
/** @format int32 */
|
|
@@ -12176,7 +12084,7 @@ export class Api<
|
|
|
12176
12084
|
* @response `404` `ProblemDetails` Not Found
|
|
12177
12085
|
*/
|
|
12178
12086
|
getSamlMetadata: (
|
|
12179
|
-
sSoIntegration:
|
|
12087
|
+
sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF",
|
|
12180
12088
|
ssoIntegration: string,
|
|
12181
12089
|
params: RequestParams = {},
|
|
12182
12090
|
) =>
|
|
@@ -12198,7 +12106,7 @@ export class Api<
|
|
|
12198
12106
|
* @response `200` `File` Success
|
|
12199
12107
|
*/
|
|
12200
12108
|
createOrReplaceSamlMetadata: (
|
|
12201
|
-
sSoIntegration:
|
|
12109
|
+
sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF",
|
|
12202
12110
|
ssoIntegration: string,
|
|
12203
12111
|
params: RequestParams = {},
|
|
12204
12112
|
) =>
|