@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/dist/index.d.ts
CHANGED
|
@@ -53,6 +53,7 @@ export type Environment = "Development" | "Staging" | "UAT" | "Production";
|
|
|
53
53
|
export type EntityType = "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Realtor";
|
|
54
54
|
export type EncompassLogOutcome = "Success" | "Failure" | "PartialSuccess";
|
|
55
55
|
export type EncompassLogOperationType = "FieldUpdate" | "ConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
|
|
56
|
+
export type EncompassEnvironment = "Production" | "UAT";
|
|
56
57
|
export type DraftType = "NewLoan" | "EditLoan";
|
|
57
58
|
export type CustomFieldEntityType = "Loan";
|
|
58
59
|
export type CustomFieldDataType = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
@@ -64,7 +65,7 @@ export type BorrowerType = "Borrower" | "CoBorrower" | "Unknown";
|
|
|
64
65
|
export type BorrowerRelationship = "NotApplicable" | "Spouse" | "NonSpouse";
|
|
65
66
|
export type BorrowerApplicationStatus = "Draft" | "Complete";
|
|
66
67
|
export type BillingType = "ClosedLoan" | "LoanOfficer";
|
|
67
|
-
export type AuditChangeType = "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored";
|
|
68
|
+
export type AuditChangeType = "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored" | "Deactivated" | "Reactivated";
|
|
68
69
|
export type AddressFamily = "Unspecified" | "Unix" | "InterNetwork" | "ImpLink" | "Pup" | "Chaos" | "NS" | "Ipx" | "Iso" | "Osi" | "Ecma" | "DataKit" | "Ccitt" | "Sna" | "DecNet" | "DataLink" | "Lat" | "HyperChannel" | "AppleTalk" | "NetBios" | "VoiceView" | "FireFox" | "Banyan" | "Atm" | "InterNetworkV6" | "Cluster" | "Ieee12844" | "Irda" | "NetworkDesigners" | "Max" | "Packet" | "ControllerAreaNetwork" | "Unknown";
|
|
69
70
|
export interface ASOSettings {
|
|
70
71
|
enabled: boolean;
|
|
@@ -115,7 +116,7 @@ export interface AccountBilling {
|
|
|
115
116
|
contractedRate: number;
|
|
116
117
|
}
|
|
117
118
|
export interface AccountBillingRequest {
|
|
118
|
-
billingType:
|
|
119
|
+
billingType: "ClosedLoan" | "LoanOfficer";
|
|
119
120
|
/**
|
|
120
121
|
* @format double
|
|
121
122
|
* @min 0
|
|
@@ -123,6 +124,25 @@ export interface AccountBillingRequest {
|
|
|
123
124
|
*/
|
|
124
125
|
contractedRate: number;
|
|
125
126
|
}
|
|
127
|
+
export interface AccountDeactivated {
|
|
128
|
+
accountDeactivated: boolean;
|
|
129
|
+
email: string;
|
|
130
|
+
}
|
|
131
|
+
export interface AccountReactivationCompleteRequest {
|
|
132
|
+
/** @format uuid */
|
|
133
|
+
token: string;
|
|
134
|
+
/** @minLength 8 */
|
|
135
|
+
newPassword: string;
|
|
136
|
+
}
|
|
137
|
+
export interface AccountReactivationRequest {
|
|
138
|
+
/**
|
|
139
|
+
* @format email
|
|
140
|
+
* @minLength 1
|
|
141
|
+
*/
|
|
142
|
+
email: string;
|
|
143
|
+
/** @format uuid */
|
|
144
|
+
siteConfigurationId: string;
|
|
145
|
+
}
|
|
126
146
|
export interface AccountSettings {
|
|
127
147
|
isSmsEnabled: boolean;
|
|
128
148
|
isLoanEditEnabled: boolean;
|
|
@@ -435,7 +455,7 @@ export interface AuditLogEntry {
|
|
|
435
455
|
/** @format uuid */
|
|
436
456
|
id: string;
|
|
437
457
|
entityType: string;
|
|
438
|
-
changeType:
|
|
458
|
+
changeType: "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored" | "Deactivated" | "Reactivated";
|
|
439
459
|
/** @format uuid */
|
|
440
460
|
entityId: string;
|
|
441
461
|
performedBy?: AuditLogUser | null;
|
|
@@ -719,7 +739,7 @@ export interface CorporateSearchCriteria {
|
|
|
719
739
|
isActive?: boolean | null;
|
|
720
740
|
}
|
|
721
741
|
export interface CreateAccessScopeRequest {
|
|
722
|
-
scopeType:
|
|
742
|
+
scopeType: "User" | "Branch";
|
|
723
743
|
/** @format uuid */
|
|
724
744
|
userId?: string | null;
|
|
725
745
|
/** @format uuid */
|
|
@@ -742,7 +762,7 @@ export interface CreateAccountRequest {
|
|
|
742
762
|
*/
|
|
743
763
|
nlmsid: number;
|
|
744
764
|
settings: AccountSettingsRequest;
|
|
745
|
-
environment:
|
|
765
|
+
environment: "Development" | "Staging" | "UAT" | "Production";
|
|
746
766
|
losIntegration: LOSIntegration;
|
|
747
767
|
billingSettings: AccountBillingRequest;
|
|
748
768
|
}
|
|
@@ -778,8 +798,8 @@ export interface CreateCustomFieldDefinitionRequest {
|
|
|
778
798
|
name: string;
|
|
779
799
|
defaultValue?: string | null;
|
|
780
800
|
regexPattern?: string | null;
|
|
781
|
-
dataType:
|
|
782
|
-
entityType:
|
|
801
|
+
dataType: "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
802
|
+
entityType: "Loan";
|
|
783
803
|
options?: CustomFieldOptionRequest[] | null;
|
|
784
804
|
permissions?: CustomFieldPermissionRequest[] | null;
|
|
785
805
|
}
|
|
@@ -799,7 +819,7 @@ export interface CreateDocumentTemplateRequest {
|
|
|
799
819
|
export interface CreateGroupMemberRequest {
|
|
800
820
|
/** @format uuid */
|
|
801
821
|
userId: string;
|
|
802
|
-
loanRole:
|
|
822
|
+
loanRole: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
803
823
|
}
|
|
804
824
|
export interface CreateInviteRequest {
|
|
805
825
|
/** @minLength 1 */
|
|
@@ -810,7 +830,7 @@ export interface CreateInviteRequest {
|
|
|
810
830
|
emailAddress: string;
|
|
811
831
|
phoneNumber?: string | null;
|
|
812
832
|
/** @deprecated */
|
|
813
|
-
relationship:
|
|
833
|
+
relationship: "NotApplicable" | "Spouse" | "NonSpouse";
|
|
814
834
|
loanID: string;
|
|
815
835
|
route?: string | null;
|
|
816
836
|
/** @format uuid */
|
|
@@ -840,7 +860,7 @@ export interface CreateLoanImportRequest {
|
|
|
840
860
|
* @minLength 1
|
|
841
861
|
*/
|
|
842
862
|
startDate: string;
|
|
843
|
-
importMode:
|
|
863
|
+
importMode: "All" | "NewOnly" | "UpdateOnly";
|
|
844
864
|
}
|
|
845
865
|
export interface CreateSession {
|
|
846
866
|
sessionId: string;
|
|
@@ -858,7 +878,7 @@ export interface CreateUserDeviceRequest {
|
|
|
858
878
|
token: string;
|
|
859
879
|
}
|
|
860
880
|
export interface CreateUserDraft {
|
|
861
|
-
loanRole:
|
|
881
|
+
loanRole: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
862
882
|
}
|
|
863
883
|
export interface CreateUserGroupRequest {
|
|
864
884
|
/**
|
|
@@ -939,8 +959,8 @@ export interface CustomFieldDefinition {
|
|
|
939
959
|
name: string;
|
|
940
960
|
defaultValue?: string | null;
|
|
941
961
|
regexPattern?: string | null;
|
|
942
|
-
dataType:
|
|
943
|
-
entityType:
|
|
962
|
+
dataType: "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
963
|
+
entityType: "Loan";
|
|
944
964
|
options: CustomFieldOption[];
|
|
945
965
|
permissions: CustomFieldPermission[];
|
|
946
966
|
encompassMapping?: EncompassMapping | null;
|
|
@@ -954,7 +974,7 @@ export interface CustomFieldEntry {
|
|
|
954
974
|
displayOrder: number;
|
|
955
975
|
name: string;
|
|
956
976
|
value: string;
|
|
957
|
-
dataType:
|
|
977
|
+
dataType: "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
958
978
|
}
|
|
959
979
|
export interface CustomFieldOption {
|
|
960
980
|
/** @format uuid */
|
|
@@ -971,12 +991,12 @@ export interface CustomFieldOptionRequest {
|
|
|
971
991
|
export interface CustomFieldPermission {
|
|
972
992
|
/** @format uuid */
|
|
973
993
|
id: string;
|
|
974
|
-
role:
|
|
975
|
-
accessLevel:
|
|
994
|
+
role: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
995
|
+
accessLevel: "NoAccess" | "ReadOnly" | "ReadWrite";
|
|
976
996
|
}
|
|
977
997
|
export interface CustomFieldPermissionRequest {
|
|
978
|
-
role:
|
|
979
|
-
accessLevel:
|
|
998
|
+
role: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
999
|
+
accessLevel: "NoAccess" | "ReadOnly" | "ReadWrite";
|
|
980
1000
|
}
|
|
981
1001
|
export interface CustomFieldValue {
|
|
982
1002
|
/** @format uuid */
|
|
@@ -987,7 +1007,7 @@ export interface CustomFieldValue {
|
|
|
987
1007
|
customFieldDefinitionID: string;
|
|
988
1008
|
value: string;
|
|
989
1009
|
definitionName: string;
|
|
990
|
-
dataType:
|
|
1010
|
+
dataType: "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
991
1011
|
}
|
|
992
1012
|
export interface DetailedUser {
|
|
993
1013
|
/** @format date-time */
|
|
@@ -1228,7 +1248,7 @@ export interface Draft {
|
|
|
1228
1248
|
siteConfiguration: SiteConfigurationReduced;
|
|
1229
1249
|
/** @format uuid */
|
|
1230
1250
|
loanID?: string | null;
|
|
1231
|
-
type:
|
|
1251
|
+
type: "NewLoan" | "EditLoan";
|
|
1232
1252
|
isCoBorrower: boolean;
|
|
1233
1253
|
}
|
|
1234
1254
|
export interface DraftContent {
|
|
@@ -1246,7 +1266,7 @@ export interface DraftContent {
|
|
|
1246
1266
|
siteConfiguration: SiteConfigurationReduced;
|
|
1247
1267
|
/** @format uuid */
|
|
1248
1268
|
loanID?: string | null;
|
|
1249
|
-
type:
|
|
1269
|
+
type: "NewLoan" | "EditLoan";
|
|
1250
1270
|
isCoBorrower: boolean;
|
|
1251
1271
|
applicationPayload: any;
|
|
1252
1272
|
}
|
|
@@ -1330,7 +1350,9 @@ export interface EncompassCredentialsDetail {
|
|
|
1330
1350
|
defaultLoanOfficerUserName?: string | null;
|
|
1331
1351
|
clearStateIfUnlicensed: boolean;
|
|
1332
1352
|
baseUrl?: string | null;
|
|
1333
|
-
|
|
1353
|
+
encompassEnvironment: "Production" | "UAT";
|
|
1354
|
+
consumerConnectWidgetHost?: string | null;
|
|
1355
|
+
signingMethod: "ConsumerConnect" | "POSF";
|
|
1334
1356
|
subscriptionId?: string | null;
|
|
1335
1357
|
environment?: string | null;
|
|
1336
1358
|
}
|
|
@@ -1345,7 +1367,9 @@ export interface EncompassCredentialsRequest {
|
|
|
1345
1367
|
defaultLoanOfficerUserName?: string | null;
|
|
1346
1368
|
clearStateIfUnlicensed: boolean;
|
|
1347
1369
|
baseUrl?: string | null;
|
|
1348
|
-
|
|
1370
|
+
encompassEnvironment: "Production" | "UAT";
|
|
1371
|
+
consumerConnectWidgetHost?: string | null;
|
|
1372
|
+
signingMethod: "ConsumerConnect" | "POSF";
|
|
1349
1373
|
subscriptionId?: string | null;
|
|
1350
1374
|
environment?: string | null;
|
|
1351
1375
|
clientID?: string | null;
|
|
@@ -1379,6 +1403,9 @@ export interface EncompassFieldListItem {
|
|
|
1379
1403
|
fieldType: string;
|
|
1380
1404
|
inUse: boolean;
|
|
1381
1405
|
}
|
|
1406
|
+
export interface EncompassIntegrationSettings {
|
|
1407
|
+
consumerConnectWidgetHost?: string | null;
|
|
1408
|
+
}
|
|
1382
1409
|
export interface EncompassLogSearchCriteria {
|
|
1383
1410
|
searchText?: string | null;
|
|
1384
1411
|
operationTypes?: EncompassLogOperationType[] | null;
|
|
@@ -1451,8 +1478,8 @@ export interface EncompassRequestLog {
|
|
|
1451
1478
|
losId?: string | null;
|
|
1452
1479
|
/** @format uuid */
|
|
1453
1480
|
accountId: string;
|
|
1454
|
-
operationType:
|
|
1455
|
-
outcome:
|
|
1481
|
+
operationType: "FieldUpdate" | "ConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
|
|
1482
|
+
outcome: "Success" | "Failure" | "PartialSuccess";
|
|
1456
1483
|
message: string;
|
|
1457
1484
|
endpoint?: string | null;
|
|
1458
1485
|
httpMethod?: string | null;
|
|
@@ -1508,10 +1535,6 @@ export interface FileWithBytes {
|
|
|
1508
1535
|
mimeType?: string | null;
|
|
1509
1536
|
extension?: string | null;
|
|
1510
1537
|
}
|
|
1511
|
-
export interface ForcePasswordReset {
|
|
1512
|
-
forcePasswordReset: boolean;
|
|
1513
|
-
email: string;
|
|
1514
|
-
}
|
|
1515
1538
|
export interface Form {
|
|
1516
1539
|
/** @format date-time */
|
|
1517
1540
|
createdAt: string;
|
|
@@ -1669,7 +1692,7 @@ export interface FusionFieldDisplay {
|
|
|
1669
1692
|
fieldValue: string;
|
|
1670
1693
|
}
|
|
1671
1694
|
export interface FusionReportFilter {
|
|
1672
|
-
filterType:
|
|
1695
|
+
filterType: "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
|
|
1673
1696
|
targetField: string;
|
|
1674
1697
|
targetValue: string;
|
|
1675
1698
|
}
|
|
@@ -1783,7 +1806,7 @@ export interface GuidPatchOperation {
|
|
|
1783
1806
|
from?: string | null;
|
|
1784
1807
|
}
|
|
1785
1808
|
export interface IPAddress {
|
|
1786
|
-
addressFamily:
|
|
1809
|
+
addressFamily: "Unspecified" | "Unix" | "InterNetwork" | "ImpLink" | "Pup" | "Chaos" | "NS" | "Ipx" | "Iso" | "Osi" | "Ecma" | "DataKit" | "Ccitt" | "Sna" | "DecNet" | "DataLink" | "Lat" | "HyperChannel" | "AppleTalk" | "NetBios" | "VoiceView" | "FireFox" | "Banyan" | "Atm" | "InterNetworkV6" | "Cluster" | "Ieee12844" | "Irda" | "NetworkDesigners" | "Max" | "Packet" | "ControllerAreaNetwork" | "Unknown";
|
|
1787
1810
|
/** @format int64 */
|
|
1788
1811
|
scopeId: number;
|
|
1789
1812
|
isIPv6Multicast: boolean;
|
|
@@ -1840,6 +1863,9 @@ export interface ImportUserLoanTaskRequest {
|
|
|
1840
1863
|
*/
|
|
1841
1864
|
userID: string;
|
|
1842
1865
|
}
|
|
1866
|
+
export interface IntegrationSettings {
|
|
1867
|
+
encompass?: EncompassIntegrationSettings | null;
|
|
1868
|
+
}
|
|
1843
1869
|
export interface Invite {
|
|
1844
1870
|
/** @format uuid */
|
|
1845
1871
|
id: string;
|
|
@@ -2037,7 +2063,7 @@ export interface Loan {
|
|
|
2037
2063
|
userLoans: UserLoan[];
|
|
2038
2064
|
contacts: LoanContact[];
|
|
2039
2065
|
customFields: CustomFieldEntry[];
|
|
2040
|
-
signingMethod:
|
|
2066
|
+
signingMethod: "ConsumerConnect" | "POSF";
|
|
2041
2067
|
}
|
|
2042
2068
|
export interface LoanApplication {
|
|
2043
2069
|
/** @format uuid */
|
|
@@ -2093,7 +2119,7 @@ export interface LoanBorrower {
|
|
|
2093
2119
|
citizenship?: LoanCitizenship | null;
|
|
2094
2120
|
maritalStatus?: LoanMaritalStatus | null;
|
|
2095
2121
|
languagePreference?: LoanLanguagePreference | null;
|
|
2096
|
-
applicationStatus:
|
|
2122
|
+
applicationStatus: "Draft" | "Complete";
|
|
2097
2123
|
/** @format int32 */
|
|
2098
2124
|
numberOfDependents?: number | null;
|
|
2099
2125
|
isPrimaryBorrower: boolean;
|
|
@@ -2950,7 +2976,7 @@ export interface LoanContact {
|
|
|
2950
2976
|
email?: string | null;
|
|
2951
2977
|
phone?: string | null;
|
|
2952
2978
|
companyName?: string | null;
|
|
2953
|
-
role:
|
|
2979
|
+
role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
2954
2980
|
}
|
|
2955
2981
|
export interface LoanContactList {
|
|
2956
2982
|
email: string;
|
|
@@ -2999,12 +3025,12 @@ export interface LoanDocumentFolderPermission {
|
|
|
2999
3025
|
id: string;
|
|
3000
3026
|
/** @format uuid */
|
|
3001
3027
|
loanDocumentFolderID: string;
|
|
3002
|
-
role:
|
|
3003
|
-
level:
|
|
3028
|
+
role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
3029
|
+
level: "None" | "Read" | "Write" | "Manage";
|
|
3004
3030
|
}
|
|
3005
3031
|
export interface LoanDocumentFolderPermissionRequest {
|
|
3006
|
-
role:
|
|
3007
|
-
level:
|
|
3032
|
+
role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
3033
|
+
level: "None" | "Read" | "Write" | "Manage";
|
|
3008
3034
|
}
|
|
3009
3035
|
export interface LoanDocumentFolderUsage {
|
|
3010
3036
|
/** @format uuid */
|
|
@@ -3112,13 +3138,13 @@ export interface LoanImport {
|
|
|
3112
3138
|
/** @format int32 */
|
|
3113
3139
|
importedCount: number;
|
|
3114
3140
|
statusMessage?: string | null;
|
|
3115
|
-
status:
|
|
3116
|
-
importMode:
|
|
3141
|
+
status: "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
|
|
3142
|
+
importMode: "All" | "NewOnly" | "UpdateOnly";
|
|
3117
3143
|
/** @format date-time */
|
|
3118
3144
|
createdAt?: string | null;
|
|
3119
3145
|
}
|
|
3120
3146
|
export interface LoanImportLog {
|
|
3121
|
-
level:
|
|
3147
|
+
level: "None" | "Info" | "Warning" | "Error";
|
|
3122
3148
|
message: string;
|
|
3123
3149
|
/** @format date-time */
|
|
3124
3150
|
createdAt: string;
|
|
@@ -3173,8 +3199,8 @@ export interface LoanListPaginated {
|
|
|
3173
3199
|
export interface LoanLog {
|
|
3174
3200
|
/** @format uuid */
|
|
3175
3201
|
id: string;
|
|
3176
|
-
level:
|
|
3177
|
-
type:
|
|
3202
|
+
level: "None" | "Info" | "Warning" | "Error";
|
|
3203
|
+
type: "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
|
|
3178
3204
|
message: string;
|
|
3179
3205
|
/** @format date-time */
|
|
3180
3206
|
createdAt: string;
|
|
@@ -3182,8 +3208,8 @@ export interface LoanLog {
|
|
|
3182
3208
|
export interface LoanLogDetail {
|
|
3183
3209
|
/** @format uuid */
|
|
3184
3210
|
id: string;
|
|
3185
|
-
level:
|
|
3186
|
-
type:
|
|
3211
|
+
level: "None" | "Info" | "Warning" | "Error";
|
|
3212
|
+
type: "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
|
|
3187
3213
|
message: string;
|
|
3188
3214
|
/** @format date-time */
|
|
3189
3215
|
createdAt: string;
|
|
@@ -3449,7 +3475,7 @@ export interface LoanTaskSearchRequest {
|
|
|
3449
3475
|
loanStatus?: LoanTaskActivityFilter | null;
|
|
3450
3476
|
}
|
|
3451
3477
|
export interface LoanTaskStatusSummary {
|
|
3452
|
-
status:
|
|
3478
|
+
status: "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
|
|
3453
3479
|
/** @format int32 */
|
|
3454
3480
|
count: number;
|
|
3455
3481
|
}
|
|
@@ -3461,7 +3487,7 @@ export interface LoanUser {
|
|
|
3461
3487
|
email: string;
|
|
3462
3488
|
phone?: string | null;
|
|
3463
3489
|
role: string;
|
|
3464
|
-
loanRole:
|
|
3490
|
+
loanRole: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
3465
3491
|
isUser: boolean;
|
|
3466
3492
|
/** @format date-time */
|
|
3467
3493
|
createdAt: string;
|
|
@@ -3494,7 +3520,7 @@ export interface LosOperationTracking {
|
|
|
3494
3520
|
operationType: string;
|
|
3495
3521
|
correlationKey: string;
|
|
3496
3522
|
lastTriggerSource?: string | null;
|
|
3497
|
-
status:
|
|
3523
|
+
status: "Pending" | "Success" | "Failed" | "ConfigurationError" | "PermanentFailure" | "Locked";
|
|
3498
3524
|
/** @format date-time */
|
|
3499
3525
|
createdAt: string;
|
|
3500
3526
|
/** @format date-time */
|
|
@@ -3555,7 +3581,7 @@ export interface LosSyncStep {
|
|
|
3555
3581
|
/** @format int32 */
|
|
3556
3582
|
order: number;
|
|
3557
3583
|
name: string;
|
|
3558
|
-
severity:
|
|
3584
|
+
severity: "Success" | "Info" | "Warning" | "Error";
|
|
3559
3585
|
message: string;
|
|
3560
3586
|
/** @format date-time */
|
|
3561
3587
|
atUtc: string;
|
|
@@ -3866,7 +3892,7 @@ export interface NotificationTemplateVersionUpdateRequest {
|
|
|
3866
3892
|
}
|
|
3867
3893
|
export interface Operation {
|
|
3868
3894
|
op?: string;
|
|
3869
|
-
value?:
|
|
3895
|
+
value?: string | number | boolean | null | object;
|
|
3870
3896
|
path?: string;
|
|
3871
3897
|
}
|
|
3872
3898
|
export interface OverridePasswordRequest {
|
|
@@ -4202,7 +4228,7 @@ export interface SSOTokenRequest {
|
|
|
4202
4228
|
redirectUri: string;
|
|
4203
4229
|
}
|
|
4204
4230
|
export interface SamlMetadataRequest {
|
|
4205
|
-
ssoIntegration:
|
|
4231
|
+
ssoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
4206
4232
|
}
|
|
4207
4233
|
export interface SendForgotPasswordRequest {
|
|
4208
4234
|
/**
|
|
@@ -4253,7 +4279,7 @@ export interface SiteConfiguration {
|
|
|
4253
4279
|
deletedAt?: string | null;
|
|
4254
4280
|
/** @format uuid */
|
|
4255
4281
|
id: string;
|
|
4256
|
-
type:
|
|
4282
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
4257
4283
|
/** @format uuid */
|
|
4258
4284
|
entityID: string;
|
|
4259
4285
|
/** @format int32 */
|
|
@@ -4447,7 +4473,7 @@ export interface SiteConfigurationByUrl {
|
|
|
4447
4473
|
deletedAt?: string | null;
|
|
4448
4474
|
/** @format uuid */
|
|
4449
4475
|
id: string;
|
|
4450
|
-
type:
|
|
4476
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
4451
4477
|
/** @format uuid */
|
|
4452
4478
|
entityID: string;
|
|
4453
4479
|
/** @format int32 */
|
|
@@ -4658,7 +4684,7 @@ export interface SiteConfigurationForm {
|
|
|
4658
4684
|
export interface SiteConfigurationReduced {
|
|
4659
4685
|
/** @format uuid */
|
|
4660
4686
|
id: string;
|
|
4661
|
-
type:
|
|
4687
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
4662
4688
|
url?: string | null;
|
|
4663
4689
|
name: string;
|
|
4664
4690
|
/** @format int64 */
|
|
@@ -4675,7 +4701,7 @@ export interface SiteConfigurationRequest {
|
|
|
4675
4701
|
entityID: string;
|
|
4676
4702
|
/** @format int32 */
|
|
4677
4703
|
entityType: number;
|
|
4678
|
-
type:
|
|
4704
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
4679
4705
|
url: string;
|
|
4680
4706
|
name: string;
|
|
4681
4707
|
introduction?: string | null;
|
|
@@ -4850,7 +4876,7 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
4850
4876
|
export interface SiteConfigurationSummary {
|
|
4851
4877
|
/** @format uuid */
|
|
4852
4878
|
id: string;
|
|
4853
|
-
type:
|
|
4879
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
4854
4880
|
url?: string | null;
|
|
4855
4881
|
name: string;
|
|
4856
4882
|
/** @format int64 */
|
|
@@ -5466,7 +5492,7 @@ export interface UserDevice {
|
|
|
5466
5492
|
export interface UserDraft {
|
|
5467
5493
|
/** @format uuid */
|
|
5468
5494
|
draftID: string;
|
|
5469
|
-
role:
|
|
5495
|
+
role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5470
5496
|
user: User;
|
|
5471
5497
|
}
|
|
5472
5498
|
export interface UserDraftPaginated {
|
|
@@ -5490,7 +5516,7 @@ export interface UserGroupAccessScope {
|
|
|
5490
5516
|
id: string;
|
|
5491
5517
|
/** @format uuid */
|
|
5492
5518
|
groupId: string;
|
|
5493
|
-
scopeType:
|
|
5519
|
+
scopeType: "User" | "Branch";
|
|
5494
5520
|
/** @format uuid */
|
|
5495
5521
|
userId?: string | null;
|
|
5496
5522
|
/** @format uuid */
|
|
@@ -5523,7 +5549,7 @@ export interface UserLoan {
|
|
|
5523
5549
|
deletedAt?: string | null;
|
|
5524
5550
|
loanID: string;
|
|
5525
5551
|
user: User;
|
|
5526
|
-
role:
|
|
5552
|
+
role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5527
5553
|
/** @format int32 */
|
|
5528
5554
|
borrowerPair?: number | null;
|
|
5529
5555
|
/** @format int32 */
|
|
@@ -5535,10 +5561,10 @@ export interface UserLoanConsent {
|
|
|
5535
5561
|
id: string;
|
|
5536
5562
|
/** @format uuid */
|
|
5537
5563
|
userLoanID: string;
|
|
5538
|
-
type:
|
|
5564
|
+
type: "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
5539
5565
|
providedConsent: boolean;
|
|
5540
5566
|
ipAddress?: string | null;
|
|
5541
|
-
losSyncStatus:
|
|
5567
|
+
losSyncStatus: "NotStarted" | "Failed" | "Success";
|
|
5542
5568
|
/** @format date-time */
|
|
5543
5569
|
createdAt: string;
|
|
5544
5570
|
/** @format date-time */
|
|
@@ -5679,7 +5705,7 @@ export interface UserSummary {
|
|
|
5679
5705
|
id: string;
|
|
5680
5706
|
name?: string | null;
|
|
5681
5707
|
email?: string | null;
|
|
5682
|
-
role:
|
|
5708
|
+
role: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5683
5709
|
}
|
|
5684
5710
|
export interface VerifyPasswordRequest {
|
|
5685
5711
|
/**
|
|
@@ -5712,70 +5738,6 @@ export interface Workflow {
|
|
|
5712
5738
|
tileSubtitle: string;
|
|
5713
5739
|
icon: string;
|
|
5714
5740
|
}
|
|
5715
|
-
export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
|
|
5716
|
-
export type AuditLogEntryChangeTypeEnum = "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored";
|
|
5717
|
-
export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
|
|
5718
|
-
export type CreateAccountRequestEnvironmentEnum = "Development" | "Staging" | "UAT" | "Production";
|
|
5719
|
-
export type CreateCustomFieldDefinitionRequestDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5720
|
-
export type CreateCustomFieldDefinitionRequestEntityTypeEnum = "Loan";
|
|
5721
|
-
export type CreateGroupMemberRequestLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5722
|
-
/** @deprecated */
|
|
5723
|
-
export type CreateInviteRequestRelationshipEnum = "NotApplicable" | "Spouse" | "NonSpouse";
|
|
5724
|
-
export type CreateLoanImportRequestImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5725
|
-
export type CreateUserDraftLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5726
|
-
export type CustomFieldDefinitionDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5727
|
-
export type CustomFieldDefinitionEntityTypeEnum = "Loan";
|
|
5728
|
-
export type CustomFieldEntryDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5729
|
-
export type CustomFieldPermissionRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5730
|
-
export type CustomFieldPermissionAccessLevelEnum = "NoAccess" | "ReadOnly" | "ReadWrite";
|
|
5731
|
-
export type CustomFieldPermissionRequestRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5732
|
-
export type CustomFieldPermissionRequestAccessLevelEnum = "NoAccess" | "ReadOnly" | "ReadWrite";
|
|
5733
|
-
export type CustomFieldValueDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5734
|
-
export type DraftTypeEnum = "NewLoan" | "EditLoan";
|
|
5735
|
-
export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
|
|
5736
|
-
export type EncompassCredentialsDetailSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5737
|
-
export type EncompassCredentialsRequestSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5738
|
-
export type EncompassRequestLogOperationTypeEnum = "FieldUpdate" | "ConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
|
|
5739
|
-
export type EncompassRequestLogOutcomeEnum = "Success" | "Failure" | "PartialSuccess";
|
|
5740
|
-
export type FusionReportFilterFilterTypeEnum = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
|
|
5741
|
-
export type IpAddressAddressFamilyEnum = "Unspecified" | "Unix" | "InterNetwork" | "ImpLink" | "Pup" | "Chaos" | "NS" | "Ipx" | "Iso" | "Osi" | "Ecma" | "DataKit" | "Ccitt" | "Sna" | "DecNet" | "DataLink" | "Lat" | "HyperChannel" | "AppleTalk" | "NetBios" | "VoiceView" | "FireFox" | "Banyan" | "Atm" | "InterNetworkV6" | "Cluster" | "Ieee12844" | "Irda" | "NetworkDesigners" | "Max" | "Packet" | "ControllerAreaNetwork" | "Unknown";
|
|
5742
|
-
export type LoanSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5743
|
-
export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
|
|
5744
|
-
export type LoanContactRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5745
|
-
export type LoanDocumentFolderPermissionRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5746
|
-
export type LoanDocumentFolderPermissionLevelEnum = "None" | "Read" | "Write" | "Manage";
|
|
5747
|
-
export type LoanDocumentFolderPermissionRequestRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5748
|
-
export type LoanDocumentFolderPermissionRequestLevelEnum = "None" | "Read" | "Write" | "Manage";
|
|
5749
|
-
export type LoanImportStatusEnum = "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
|
|
5750
|
-
export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5751
|
-
export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5752
|
-
export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5753
|
-
export type LoanLogTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
|
|
5754
|
-
export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5755
|
-
export type LoanLogDetailTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
|
|
5756
|
-
export type LoanTaskStatusSummaryStatusEnum = "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
|
|
5757
|
-
export type LoanUserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5758
|
-
export type LosOperationTrackingStatusEnum = "Pending" | "Success" | "Failed" | "ConfigurationError" | "PermanentFailure" | "Locked";
|
|
5759
|
-
export type LosSyncStepSeverityEnum = "Success" | "Info" | "Warning" | "Error";
|
|
5760
|
-
export type SamlMetadataRequestSsoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5761
|
-
export type SiteConfigurationTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5762
|
-
export type SiteConfigurationByUrlTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5763
|
-
export type SiteConfigurationReducedTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5764
|
-
export type SiteConfigurationRequestTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5765
|
-
export type SiteConfigurationSummaryTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5766
|
-
export type UserDraftRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5767
|
-
export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
|
|
5768
|
-
export type UserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5769
|
-
export type UserLoanConsentTypeEnum = "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
5770
|
-
export type UserLoanConsentLosSyncStatusEnum = "NotStarted" | "Failed" | "Success";
|
|
5771
|
-
export type UserSummaryRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5772
|
-
export type GetCustomFieldDefinitionsParamsEntityTypeEnum = "Loan";
|
|
5773
|
-
/** @default "Realtor" */
|
|
5774
|
-
export type GetPartnersParamsRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5775
|
-
export type GetSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5776
|
-
export type GetSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5777
|
-
export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5778
|
-
export type CreateOrReplaceSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5779
5741
|
import type { AxiosInstance, AxiosRequestConfig, AxiosResponse, ResponseType } from "axios";
|
|
5780
5742
|
export type QueryParamsType = Record<string | number, any>;
|
|
5781
5743
|
export interface FullRequestParams extends Omit<AxiosRequestConfig, "data" | "params" | "url" | "responseType"> {
|
|
@@ -5799,6 +5761,7 @@ export interface ApiConfig<SecurityDataType = unknown> extends Omit<AxiosRequest
|
|
|
5799
5761
|
format?: ResponseType;
|
|
5800
5762
|
}
|
|
5801
5763
|
export declare enum ContentType {
|
|
5764
|
+
JsonPatch = "application/json-patch+json",
|
|
5802
5765
|
Json = "application/json",
|
|
5803
5766
|
JsonApi = "application/vnd.api+json",
|
|
5804
5767
|
FormData = "multipart/form-data",
|
|
@@ -5894,6 +5857,29 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5894
5857
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5895
5858
|
*/
|
|
5896
5859
|
updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5860
|
+
/**
|
|
5861
|
+
* No description
|
|
5862
|
+
*
|
|
5863
|
+
* @tags AccountReactivation
|
|
5864
|
+
* @name RequestAccountReactivation
|
|
5865
|
+
* @summary Request account reactivation
|
|
5866
|
+
* @request POST:/api/account/reactivation/request
|
|
5867
|
+
* @secure
|
|
5868
|
+
* @response `204` `void` No Content
|
|
5869
|
+
*/
|
|
5870
|
+
requestAccountReactivation: (data: AccountReactivationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5871
|
+
/**
|
|
5872
|
+
* No description
|
|
5873
|
+
*
|
|
5874
|
+
* @tags AccountReactivation
|
|
5875
|
+
* @name CompleteAccountReactivation
|
|
5876
|
+
* @summary Complete account reactivation with new password
|
|
5877
|
+
* @request POST:/api/account/reactivation/complete
|
|
5878
|
+
* @secure
|
|
5879
|
+
* @response `204` `void` No Content
|
|
5880
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
5881
|
+
*/
|
|
5882
|
+
completeAccountReactivation: (data: AccountReactivationCompleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5897
5883
|
/**
|
|
5898
5884
|
* No description
|
|
5899
5885
|
*
|
|
@@ -6020,10 +6006,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6020
6006
|
* @summary Get Token
|
|
6021
6007
|
* @request POST:/api/token
|
|
6022
6008
|
* @secure
|
|
6023
|
-
* @response `200` `
|
|
6009
|
+
* @response `200` `AccountDeactivated` Success
|
|
6024
6010
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6025
6011
|
*/
|
|
6026
|
-
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
6012
|
+
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<AccountDeactivated, any, {}>>;
|
|
6027
6013
|
/**
|
|
6028
6014
|
* No description
|
|
6029
6015
|
*
|
|
@@ -6032,10 +6018,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6032
6018
|
* @summary Get Token From Challenge Code
|
|
6033
6019
|
* @request POST:/api/token/code
|
|
6034
6020
|
* @secure
|
|
6035
|
-
* @response `200` `
|
|
6021
|
+
* @response `200` `AccountDeactivated` Success
|
|
6036
6022
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6037
6023
|
*/
|
|
6038
|
-
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
6024
|
+
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<AccountDeactivated, any, {}>>;
|
|
6039
6025
|
/**
|
|
6040
6026
|
* No description
|
|
6041
6027
|
*
|
|
@@ -6482,7 +6468,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6482
6468
|
* @response `200` `(CustomFieldDefinition)[]` Success
|
|
6483
6469
|
*/
|
|
6484
6470
|
getCustomFieldDefinitions: (query?: {
|
|
6485
|
-
entityType?:
|
|
6471
|
+
entityType?: "Loan";
|
|
6486
6472
|
}, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition[], any, {}>>;
|
|
6487
6473
|
/**
|
|
6488
6474
|
* No description
|
|
@@ -7250,6 +7236,17 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7250
7236
|
* @response `200` `FormVersion` Success
|
|
7251
7237
|
*/
|
|
7252
7238
|
deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
7239
|
+
/**
|
|
7240
|
+
* No description
|
|
7241
|
+
*
|
|
7242
|
+
* @tags IntegrationSettings
|
|
7243
|
+
* @name GetIntegrationSettings
|
|
7244
|
+
* @summary Get Integration Settings
|
|
7245
|
+
* @request GET:/api/integrations/settings
|
|
7246
|
+
* @secure
|
|
7247
|
+
* @response `200` `IntegrationSettings` Success
|
|
7248
|
+
*/
|
|
7249
|
+
getIntegrationSettings: (params?: RequestParams) => Promise<AxiosResponse<IntegrationSettings, any, {}>>;
|
|
7253
7250
|
/**
|
|
7254
7251
|
* No description
|
|
7255
7252
|
*
|
|
@@ -9164,7 +9161,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9164
9161
|
getPartners: (query?: {
|
|
9165
9162
|
showAll?: boolean;
|
|
9166
9163
|
/** @default "Realtor" */
|
|
9167
|
-
role?:
|
|
9164
|
+
role?: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
9168
9165
|
/** @format int32 */
|
|
9169
9166
|
pageSize?: number;
|
|
9170
9167
|
/** @format int32 */
|
|
@@ -9342,7 +9339,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9342
9339
|
* @response `200` `File` Success
|
|
9343
9340
|
* @response `404` `ProblemDetails` Not Found
|
|
9344
9341
|
*/
|
|
9345
|
-
getSamlMetadata: (sSoIntegration:
|
|
9342
|
+
getSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
9346
9343
|
/**
|
|
9347
9344
|
* No description
|
|
9348
9345
|
*
|
|
@@ -9353,7 +9350,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9353
9350
|
* @secure
|
|
9354
9351
|
* @response `200` `File` Success
|
|
9355
9352
|
*/
|
|
9356
|
-
createOrReplaceSamlMetadata: (sSoIntegration:
|
|
9353
|
+
createOrReplaceSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
9357
9354
|
/**
|
|
9358
9355
|
* No description
|
|
9359
9356
|
*
|