@matech/thebigpos-sdk 2.38.1 → 2.38.2-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 +310 -57
- package/dist/index.js +118 -13
- package/dist/index.js.map +1 -1
- package/docs/sdk_generation.md +149 -149
- package/package.json +39 -43
- package/scripts/apply-json-patch-content-type.js +56 -56
- package/src/index.ts +751 -242
- package/tsconfig.json +27 -27
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
export type VersionStatusType = "Draft" | "Published";
|
|
2
2
|
export type UserRole = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
3
|
+
export type TaskStatus = "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
|
|
3
4
|
export type SiteConfigurationType = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
4
|
-
export type SigningMethod = "
|
|
5
|
+
export type SigningMethod = "ConsumerConnect" | "POSF";
|
|
5
6
|
export type SSOIntegrationType = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
6
7
|
export type LogLevel = "None" | "Info" | "Warning" | "Error";
|
|
7
8
|
export type LoanType = "Fha" | "Conventional" | "UsdaRd" | "Va" | "Other";
|
|
8
9
|
export type LoanTrustType = "Living" | "Land" | "Testamentary" | "Other";
|
|
9
10
|
export type LoanTitleHeld = "Sole" | "JointWithSpouse" | "JointWithOtherThanSpouse";
|
|
11
|
+
export type LoanTaskActivityFilter = "Active" | "Inactive" | "All";
|
|
10
12
|
export type LoanRole = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
11
13
|
export type LoanRealEstateStatus = "Keep" | "Rent" | "Sell";
|
|
12
14
|
export type LoanQueueType = "Unknown" | "New" | "Append" | "Update" | "FieldUpdates" | "Document" | "Buckets";
|
|
@@ -24,7 +26,7 @@ export type LoanNameSuffix = "Jr" | "Sr" | "II" | "III" | "IV" | "V" | "VI" | "V
|
|
|
24
26
|
export type LoanNamePrefix = "Mr" | "Mrs" | "Ms";
|
|
25
27
|
export type LoanMilitaryServiceType = "Current" | "RetiredDischargedSeparated" | "NonActivatedNationalGuard" | "SurvivingSpouse";
|
|
26
28
|
export type LoanMaritalStatus = "Married" | "Separated" | "Unmarried";
|
|
27
|
-
export type LoanLogType = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "EConsent" | "SensitiveDataPurge" | "ClosingDateUpdated";
|
|
29
|
+
export type LoanLogType = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "EConsent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation";
|
|
28
30
|
export type LoanLienPosition = "First" | "Subordinate";
|
|
29
31
|
export type LoanLiabilityType = "Revolving" | "Installment" | "Open30Day" | "Lease" | "Other";
|
|
30
32
|
export type LoanLanguagePreference = "English" | "Chinese" | "Korean" | "Spanish" | "Tagalog" | "Vietnamese" | "Other";
|
|
@@ -49,6 +51,7 @@ export type EntityType = "Account" | "Corporate" | "Branch" | "LoanOfficer" | "R
|
|
|
49
51
|
export type EncompassLogOutcome = "Success" | "Failure" | "PartialSuccess";
|
|
50
52
|
export type EncompassLogOperationType = "FieldUpdate" | "EConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
|
|
51
53
|
export type DraftType = "NewLoan" | "EditLoan";
|
|
54
|
+
export type ConsumerConnectAssociationStatus = "Legacy" | "Pending" | "Success" | "Failed" | "ConfigurationError" | "PermanentFailure";
|
|
52
55
|
export type ConsentType = "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
53
56
|
export type ConsentLosSyncStatus = "NotStarted" | "Failed" | "Success";
|
|
54
57
|
export type BranchType = "Mortgage" | "RealEstate";
|
|
@@ -107,7 +110,7 @@ export interface AccountBilling {
|
|
|
107
110
|
contractedRate: number;
|
|
108
111
|
}
|
|
109
112
|
export interface AccountBillingRequest {
|
|
110
|
-
billingType:
|
|
113
|
+
billingType: AccountBillingRequestBillingTypeEnum;
|
|
111
114
|
/**
|
|
112
115
|
* @format double
|
|
113
116
|
* @min 0
|
|
@@ -419,11 +422,15 @@ export interface Attachment {
|
|
|
419
422
|
fileName: string;
|
|
420
423
|
base64Data: string;
|
|
421
424
|
}
|
|
425
|
+
export interface AuditEntityType {
|
|
426
|
+
entityType: string;
|
|
427
|
+
rootEntityType?: string | null;
|
|
428
|
+
}
|
|
422
429
|
export interface AuditLogEntry {
|
|
423
430
|
/** @format uuid */
|
|
424
431
|
id: string;
|
|
425
432
|
entityType: string;
|
|
426
|
-
changeType:
|
|
433
|
+
changeType: AuditLogEntryChangeTypeEnum;
|
|
427
434
|
/** @format uuid */
|
|
428
435
|
entityId: string;
|
|
429
436
|
performedBy?: AuditLogUser | null;
|
|
@@ -451,9 +458,6 @@ export interface AuditLogSearchCriteria {
|
|
|
451
458
|
startDate?: string | null;
|
|
452
459
|
/** @format date-time */
|
|
453
460
|
endDate?: string | null;
|
|
454
|
-
rootEntityType?: string | null;
|
|
455
|
-
/** @format uuid */
|
|
456
|
-
rootEntityId?: string | null;
|
|
457
461
|
}
|
|
458
462
|
export interface AuditLogUser {
|
|
459
463
|
/** @format uuid */
|
|
@@ -639,6 +643,28 @@ export interface ConditionComment {
|
|
|
639
643
|
createdBy: string;
|
|
640
644
|
createdByName: string;
|
|
641
645
|
}
|
|
646
|
+
export interface ConsumerConnectRetry {
|
|
647
|
+
/** @format uuid */
|
|
648
|
+
userLoanId: string;
|
|
649
|
+
email: string;
|
|
650
|
+
status?: ConsumerConnectAssociationStatus | null;
|
|
651
|
+
success: boolean;
|
|
652
|
+
}
|
|
653
|
+
export interface ConsumerConnectStatus {
|
|
654
|
+
/** @format uuid */
|
|
655
|
+
userLoanId: string;
|
|
656
|
+
/** @format uuid */
|
|
657
|
+
userId: string;
|
|
658
|
+
email: string;
|
|
659
|
+
role: ConsumerConnectStatusRoleEnum;
|
|
660
|
+
status?: ConsumerConnectAssociationStatus | null;
|
|
661
|
+
/** @format int32 */
|
|
662
|
+
attemptCount: number;
|
|
663
|
+
/** @format date-time */
|
|
664
|
+
lastAttemptAt?: string | null;
|
|
665
|
+
/** @format date-time */
|
|
666
|
+
nextRetryAt?: string | null;
|
|
667
|
+
}
|
|
642
668
|
export interface ContactInfo {
|
|
643
669
|
phone: string;
|
|
644
670
|
tollFreePhone?: string | null;
|
|
@@ -687,7 +713,7 @@ export interface CorporateSearchCriteria {
|
|
|
687
713
|
isActive?: boolean | null;
|
|
688
714
|
}
|
|
689
715
|
export interface CreateAccessScopeRequest {
|
|
690
|
-
scopeType:
|
|
716
|
+
scopeType: CreateAccessScopeRequestScopeTypeEnum;
|
|
691
717
|
/** @format uuid */
|
|
692
718
|
userId?: string | null;
|
|
693
719
|
/** @format uuid */
|
|
@@ -710,7 +736,7 @@ export interface CreateAccountRequest {
|
|
|
710
736
|
*/
|
|
711
737
|
nlmsid: number;
|
|
712
738
|
settings: AccountSettingsRequest;
|
|
713
|
-
environment:
|
|
739
|
+
environment: CreateAccountRequestEnvironmentEnum;
|
|
714
740
|
losIntegration: LOSIntegration;
|
|
715
741
|
billingSettings: AccountBillingRequest;
|
|
716
742
|
}
|
|
@@ -740,7 +766,7 @@ export interface CreateDocumentTemplateRequest {
|
|
|
740
766
|
export interface CreateGroupMemberRequest {
|
|
741
767
|
/** @format uuid */
|
|
742
768
|
userId: string;
|
|
743
|
-
loanRole:
|
|
769
|
+
loanRole: CreateGroupMemberRequestLoanRoleEnum;
|
|
744
770
|
}
|
|
745
771
|
export interface CreateInviteRequest {
|
|
746
772
|
/** @minLength 1 */
|
|
@@ -751,7 +777,7 @@ export interface CreateInviteRequest {
|
|
|
751
777
|
emailAddress: string;
|
|
752
778
|
phoneNumber?: string | null;
|
|
753
779
|
/** @deprecated */
|
|
754
|
-
relationship:
|
|
780
|
+
relationship: CreateInviteRequestRelationshipEnum;
|
|
755
781
|
loanID: string;
|
|
756
782
|
route?: string | null;
|
|
757
783
|
/** @format uuid */
|
|
@@ -773,7 +799,7 @@ export interface CreateLoanImportRequest {
|
|
|
773
799
|
* @minLength 1
|
|
774
800
|
*/
|
|
775
801
|
startDate: string;
|
|
776
|
-
importMode:
|
|
802
|
+
importMode: CreateLoanImportRequestImportModeEnum;
|
|
777
803
|
}
|
|
778
804
|
export interface CreateSession {
|
|
779
805
|
sessionId: string;
|
|
@@ -791,7 +817,7 @@ export interface CreateUserDeviceRequest {
|
|
|
791
817
|
token: string;
|
|
792
818
|
}
|
|
793
819
|
export interface CreateUserDraft {
|
|
794
|
-
loanRole:
|
|
820
|
+
loanRole: CreateUserDraftLoanRoleEnum;
|
|
795
821
|
}
|
|
796
822
|
export interface CreateUserGroupRequest {
|
|
797
823
|
/**
|
|
@@ -843,6 +869,9 @@ export interface CreateUserRequest {
|
|
|
843
869
|
userRole: string;
|
|
844
870
|
isInternal?: boolean | null;
|
|
845
871
|
}
|
|
872
|
+
export interface CreateWebhookRequest {
|
|
873
|
+
webhookPath: string;
|
|
874
|
+
}
|
|
846
875
|
export interface CustomLoanData {
|
|
847
876
|
eConsentInformation?: EConsentInformation | null;
|
|
848
877
|
}
|
|
@@ -1085,7 +1114,7 @@ export interface Draft {
|
|
|
1085
1114
|
siteConfiguration: SiteConfigurationReduced;
|
|
1086
1115
|
/** @format uuid */
|
|
1087
1116
|
loanID?: string | null;
|
|
1088
|
-
type:
|
|
1117
|
+
type: DraftTypeEnum;
|
|
1089
1118
|
isCoBorrower: boolean;
|
|
1090
1119
|
}
|
|
1091
1120
|
export interface DraftContent {
|
|
@@ -1103,7 +1132,7 @@ export interface DraftContent {
|
|
|
1103
1132
|
siteConfiguration: SiteConfigurationReduced;
|
|
1104
1133
|
/** @format uuid */
|
|
1105
1134
|
loanID?: string | null;
|
|
1106
|
-
type:
|
|
1135
|
+
type: DraftContentTypeEnum;
|
|
1107
1136
|
isCoBorrower: boolean;
|
|
1108
1137
|
applicationPayload: any;
|
|
1109
1138
|
}
|
|
@@ -1183,6 +1212,40 @@ export interface EncompassContact {
|
|
|
1183
1212
|
phone?: string | null;
|
|
1184
1213
|
company?: string | null;
|
|
1185
1214
|
}
|
|
1215
|
+
export interface EncompassCredentialsDetail {
|
|
1216
|
+
/** @format uuid */
|
|
1217
|
+
id: string;
|
|
1218
|
+
/** @format uuid */
|
|
1219
|
+
accountID: string;
|
|
1220
|
+
instanceID: string;
|
|
1221
|
+
loanAssignmentRole?: string | null;
|
|
1222
|
+
loanTemplate?: string | null;
|
|
1223
|
+
defaultLoanOfficerUserName?: string | null;
|
|
1224
|
+
clearStateIfUnlicensed: boolean;
|
|
1225
|
+
baseUrl?: string | null;
|
|
1226
|
+
signingMethod: EncompassCredentialsDetailSigningMethodEnum;
|
|
1227
|
+
subscriptionId?: string | null;
|
|
1228
|
+
environment?: string | null;
|
|
1229
|
+
}
|
|
1230
|
+
export interface EncompassCredentialsRequest {
|
|
1231
|
+
/** @format uuid */
|
|
1232
|
+
id: string;
|
|
1233
|
+
/** @format uuid */
|
|
1234
|
+
accountID: string;
|
|
1235
|
+
instanceID: string;
|
|
1236
|
+
loanAssignmentRole?: string | null;
|
|
1237
|
+
loanTemplate?: string | null;
|
|
1238
|
+
defaultLoanOfficerUserName?: string | null;
|
|
1239
|
+
clearStateIfUnlicensed: boolean;
|
|
1240
|
+
baseUrl?: string | null;
|
|
1241
|
+
signingMethod: EncompassCredentialsRequestSigningMethodEnum;
|
|
1242
|
+
subscriptionId?: string | null;
|
|
1243
|
+
environment?: string | null;
|
|
1244
|
+
clientID?: string | null;
|
|
1245
|
+
clientSecret?: string | null;
|
|
1246
|
+
signingKeyId?: string | null;
|
|
1247
|
+
signingKey?: string | null;
|
|
1248
|
+
}
|
|
1186
1249
|
export interface EncompassError {
|
|
1187
1250
|
errorCode: string;
|
|
1188
1251
|
message: string;
|
|
@@ -1233,8 +1296,8 @@ export interface EncompassRequestLog {
|
|
|
1233
1296
|
losId?: string | null;
|
|
1234
1297
|
/** @format uuid */
|
|
1235
1298
|
accountId: string;
|
|
1236
|
-
operationType:
|
|
1237
|
-
outcome:
|
|
1299
|
+
operationType: EncompassRequestLogOperationTypeEnum;
|
|
1300
|
+
outcome: EncompassRequestLogOutcomeEnum;
|
|
1238
1301
|
message: string;
|
|
1239
1302
|
endpoint?: string | null;
|
|
1240
1303
|
httpMethod?: string | null;
|
|
@@ -1285,7 +1348,7 @@ export interface FileSearchCriteria {
|
|
|
1285
1348
|
export interface FileWithBytes {
|
|
1286
1349
|
name: string;
|
|
1287
1350
|
/** @format byte */
|
|
1288
|
-
data:
|
|
1351
|
+
data: Blob;
|
|
1289
1352
|
fileName: string;
|
|
1290
1353
|
mimeType?: string | null;
|
|
1291
1354
|
extension?: string | null;
|
|
@@ -1451,7 +1514,7 @@ export interface FusionFieldDisplay {
|
|
|
1451
1514
|
fieldValue: string;
|
|
1452
1515
|
}
|
|
1453
1516
|
export interface FusionReportFilter {
|
|
1454
|
-
filterType:
|
|
1517
|
+
filterType: FusionReportFilterFilterTypeEnum;
|
|
1455
1518
|
targetField: string;
|
|
1456
1519
|
targetValue: string;
|
|
1457
1520
|
}
|
|
@@ -1565,7 +1628,7 @@ export interface GuidPatchOperation {
|
|
|
1565
1628
|
from?: string | null;
|
|
1566
1629
|
}
|
|
1567
1630
|
export interface IPAddress {
|
|
1568
|
-
addressFamily:
|
|
1631
|
+
addressFamily: IpAddressAddressFamilyEnum;
|
|
1569
1632
|
/** @format int64 */
|
|
1570
1633
|
scopeId: number;
|
|
1571
1634
|
isIPv6Multicast: boolean;
|
|
@@ -1818,7 +1881,7 @@ export interface Loan {
|
|
|
1818
1881
|
nonOwningBorrowers: LoanNonOwningBorrower[];
|
|
1819
1882
|
userLoans: UserLoan[];
|
|
1820
1883
|
contacts: LoanContact[];
|
|
1821
|
-
signingMethod:
|
|
1884
|
+
signingMethod: LoanSigningMethodEnum;
|
|
1822
1885
|
}
|
|
1823
1886
|
export interface LoanApplication {
|
|
1824
1887
|
/** @format uuid */
|
|
@@ -1873,7 +1936,7 @@ export interface LoanBorrower {
|
|
|
1873
1936
|
citizenship?: LoanCitizenship | null;
|
|
1874
1937
|
maritalStatus?: LoanMaritalStatus | null;
|
|
1875
1938
|
languagePreference?: LoanLanguagePreference | null;
|
|
1876
|
-
applicationStatus:
|
|
1939
|
+
applicationStatus: LoanBorrowerApplicationStatusEnum;
|
|
1877
1940
|
/** @format int32 */
|
|
1878
1941
|
numberOfDependents?: number | null;
|
|
1879
1942
|
isPrimaryBorrower: boolean;
|
|
@@ -2730,7 +2793,7 @@ export interface LoanContact {
|
|
|
2730
2793
|
email?: string | null;
|
|
2731
2794
|
phone?: string | null;
|
|
2732
2795
|
companyName?: string | null;
|
|
2733
|
-
role:
|
|
2796
|
+
role: LoanContactRoleEnum;
|
|
2734
2797
|
}
|
|
2735
2798
|
export interface LoanContactList {
|
|
2736
2799
|
email: string;
|
|
@@ -2841,6 +2904,7 @@ export interface LoanIdentifier {
|
|
|
2841
2904
|
/** @format uuid */
|
|
2842
2905
|
id: string;
|
|
2843
2906
|
losLoanID: string;
|
|
2907
|
+
number?: string | null;
|
|
2844
2908
|
}
|
|
2845
2909
|
export interface LoanImport {
|
|
2846
2910
|
/** @format uuid */
|
|
@@ -2855,13 +2919,13 @@ export interface LoanImport {
|
|
|
2855
2919
|
/** @format int32 */
|
|
2856
2920
|
importedCount: number;
|
|
2857
2921
|
statusMessage?: string | null;
|
|
2858
|
-
status:
|
|
2859
|
-
importMode:
|
|
2922
|
+
status: LoanImportStatusEnum;
|
|
2923
|
+
importMode: LoanImportImportModeEnum;
|
|
2860
2924
|
/** @format date-time */
|
|
2861
2925
|
createdAt?: string | null;
|
|
2862
2926
|
}
|
|
2863
2927
|
export interface LoanImportLog {
|
|
2864
|
-
level:
|
|
2928
|
+
level: LoanImportLogLevelEnum;
|
|
2865
2929
|
message: string;
|
|
2866
2930
|
/** @format date-time */
|
|
2867
2931
|
createdAt: string;
|
|
@@ -2916,8 +2980,8 @@ export interface LoanListPaginated {
|
|
|
2916
2980
|
export interface LoanLog {
|
|
2917
2981
|
/** @format uuid */
|
|
2918
2982
|
id: string;
|
|
2919
|
-
level:
|
|
2920
|
-
type:
|
|
2983
|
+
level: LoanLogLevelEnum;
|
|
2984
|
+
type: LoanLogTypeEnum;
|
|
2921
2985
|
message: string;
|
|
2922
2986
|
/** @format date-time */
|
|
2923
2987
|
createdAt: string;
|
|
@@ -2925,8 +2989,8 @@ export interface LoanLog {
|
|
|
2925
2989
|
export interface LoanLogDetail {
|
|
2926
2990
|
/** @format uuid */
|
|
2927
2991
|
id: string;
|
|
2928
|
-
level:
|
|
2929
|
-
type:
|
|
2992
|
+
level: LoanLogDetailLevelEnum;
|
|
2993
|
+
type: LoanLogDetailTypeEnum;
|
|
2930
2994
|
message: string;
|
|
2931
2995
|
/** @format date-time */
|
|
2932
2996
|
createdAt: string;
|
|
@@ -3181,6 +3245,16 @@ export interface LoanSearchCriteria {
|
|
|
3181
3245
|
export interface LoanSettings {
|
|
3182
3246
|
excludeFromAutoTaskReminders: boolean;
|
|
3183
3247
|
}
|
|
3248
|
+
export interface LoanTaskSearchRequest {
|
|
3249
|
+
searchText?: string | null;
|
|
3250
|
+
statuses?: TaskStatus[] | null;
|
|
3251
|
+
loanNumber?: string | null;
|
|
3252
|
+
/** @format uuid */
|
|
3253
|
+
borrowerId?: string | null;
|
|
3254
|
+
/** @format uuid */
|
|
3255
|
+
loanId?: string | null;
|
|
3256
|
+
loanStatus?: LoanTaskActivityFilter | null;
|
|
3257
|
+
}
|
|
3184
3258
|
export interface LoanUser {
|
|
3185
3259
|
/** @format uuid */
|
|
3186
3260
|
id: string;
|
|
@@ -3189,11 +3263,18 @@ export interface LoanUser {
|
|
|
3189
3263
|
email: string;
|
|
3190
3264
|
phone?: string | null;
|
|
3191
3265
|
role: string;
|
|
3192
|
-
loanRole:
|
|
3266
|
+
loanRole: LoanUserLoanRoleEnum;
|
|
3193
3267
|
isUser: boolean;
|
|
3194
3268
|
/** @format date-time */
|
|
3195
3269
|
createdAt: string;
|
|
3196
3270
|
}
|
|
3271
|
+
export interface LosCredentials {
|
|
3272
|
+
/** @format uuid */
|
|
3273
|
+
id: string;
|
|
3274
|
+
/** @format uuid */
|
|
3275
|
+
accountID: string;
|
|
3276
|
+
instanceID: string;
|
|
3277
|
+
}
|
|
3197
3278
|
export interface LosLoanCreationRequest {
|
|
3198
3279
|
loanOfficerUserName?: string | null;
|
|
3199
3280
|
loanTemplate?: string | null;
|
|
@@ -3205,6 +3286,14 @@ export interface LosLoanCreationRequest {
|
|
|
3205
3286
|
siteID?: string | null;
|
|
3206
3287
|
existingLoanID?: string | null;
|
|
3207
3288
|
}
|
|
3289
|
+
export interface LosWebhook {
|
|
3290
|
+
/** @format uuid */
|
|
3291
|
+
id: string;
|
|
3292
|
+
endpoint: string;
|
|
3293
|
+
resource: string;
|
|
3294
|
+
events: string[];
|
|
3295
|
+
enableSubscription: boolean;
|
|
3296
|
+
}
|
|
3208
3297
|
export interface MdmUser {
|
|
3209
3298
|
user_email?: string | null;
|
|
3210
3299
|
user_id?: string | null;
|
|
@@ -3812,7 +3901,7 @@ export interface SSOTokenRequest {
|
|
|
3812
3901
|
redirectUri: string;
|
|
3813
3902
|
}
|
|
3814
3903
|
export interface SamlMetadataRequest {
|
|
3815
|
-
ssoIntegration:
|
|
3904
|
+
ssoIntegration: SamlMetadataRequestSsoIntegrationEnum;
|
|
3816
3905
|
}
|
|
3817
3906
|
export interface SendForgotPasswordRequest {
|
|
3818
3907
|
/**
|
|
@@ -3847,7 +3936,7 @@ export interface SiteConfiguration {
|
|
|
3847
3936
|
deletedAt?: string | null;
|
|
3848
3937
|
/** @format uuid */
|
|
3849
3938
|
id: string;
|
|
3850
|
-
type:
|
|
3939
|
+
type: SiteConfigurationTypeEnum;
|
|
3851
3940
|
/** @format uuid */
|
|
3852
3941
|
entityID: string;
|
|
3853
3942
|
/** @format int32 */
|
|
@@ -4041,7 +4130,7 @@ export interface SiteConfigurationByUrl {
|
|
|
4041
4130
|
deletedAt?: string | null;
|
|
4042
4131
|
/** @format uuid */
|
|
4043
4132
|
id: string;
|
|
4044
|
-
type:
|
|
4133
|
+
type: SiteConfigurationByUrlTypeEnum;
|
|
4045
4134
|
/** @format uuid */
|
|
4046
4135
|
entityID: string;
|
|
4047
4136
|
/** @format int32 */
|
|
@@ -4252,7 +4341,7 @@ export interface SiteConfigurationForm {
|
|
|
4252
4341
|
export interface SiteConfigurationReduced {
|
|
4253
4342
|
/** @format uuid */
|
|
4254
4343
|
id: string;
|
|
4255
|
-
type:
|
|
4344
|
+
type: SiteConfigurationReducedTypeEnum;
|
|
4256
4345
|
url?: string | null;
|
|
4257
4346
|
name: string;
|
|
4258
4347
|
/** @format int64 */
|
|
@@ -4269,7 +4358,7 @@ export interface SiteConfigurationRequest {
|
|
|
4269
4358
|
entityID: string;
|
|
4270
4359
|
/** @format int32 */
|
|
4271
4360
|
entityType: number;
|
|
4272
|
-
type:
|
|
4361
|
+
type: SiteConfigurationRequestTypeEnum;
|
|
4273
4362
|
url: string;
|
|
4274
4363
|
name: string;
|
|
4275
4364
|
introduction?: string | null;
|
|
@@ -4444,7 +4533,7 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
4444
4533
|
export interface SiteConfigurationSummary {
|
|
4445
4534
|
/** @format uuid */
|
|
4446
4535
|
id: string;
|
|
4447
|
-
type:
|
|
4536
|
+
type: SiteConfigurationSummaryTypeEnum;
|
|
4448
4537
|
url?: string | null;
|
|
4449
4538
|
name: string;
|
|
4450
4539
|
/** @format int64 */
|
|
@@ -5023,7 +5112,7 @@ export interface UserDevice {
|
|
|
5023
5112
|
export interface UserDraft {
|
|
5024
5113
|
/** @format uuid */
|
|
5025
5114
|
draftID: string;
|
|
5026
|
-
role:
|
|
5115
|
+
role: UserDraftRoleEnum;
|
|
5027
5116
|
user: User;
|
|
5028
5117
|
}
|
|
5029
5118
|
export interface UserDraftPaginated {
|
|
@@ -5047,7 +5136,7 @@ export interface UserGroupAccessScope {
|
|
|
5047
5136
|
id: string;
|
|
5048
5137
|
/** @format uuid */
|
|
5049
5138
|
groupId: string;
|
|
5050
|
-
scopeType:
|
|
5139
|
+
scopeType: UserGroupAccessScopeScopeTypeEnum;
|
|
5051
5140
|
/** @format uuid */
|
|
5052
5141
|
userId?: string | null;
|
|
5053
5142
|
/** @format uuid */
|
|
@@ -5080,7 +5169,7 @@ export interface UserLoan {
|
|
|
5080
5169
|
deletedAt?: string | null;
|
|
5081
5170
|
loanID: string;
|
|
5082
5171
|
user: User;
|
|
5083
|
-
role:
|
|
5172
|
+
role: UserLoanRoleEnum;
|
|
5084
5173
|
/** @format int32 */
|
|
5085
5174
|
borrowerPair?: number | null;
|
|
5086
5175
|
/** @format int32 */
|
|
@@ -5092,10 +5181,10 @@ export interface UserLoanConsent {
|
|
|
5092
5181
|
id: string;
|
|
5093
5182
|
/** @format uuid */
|
|
5094
5183
|
userLoanID: string;
|
|
5095
|
-
type:
|
|
5184
|
+
type: UserLoanConsentTypeEnum;
|
|
5096
5185
|
providedConsent: boolean;
|
|
5097
5186
|
ipAddress?: string | null;
|
|
5098
|
-
losSyncStatus:
|
|
5187
|
+
losSyncStatus: UserLoanConsentLosSyncStatusEnum;
|
|
5099
5188
|
/** @format date-time */
|
|
5100
5189
|
createdAt: string;
|
|
5101
5190
|
}
|
|
@@ -5110,7 +5199,6 @@ export interface UserLoanTask {
|
|
|
5110
5199
|
value?: string | null;
|
|
5111
5200
|
documents: LoanDocument[];
|
|
5112
5201
|
loan: LoanIdentifier;
|
|
5113
|
-
/** @deprecated */
|
|
5114
5202
|
loanID: string;
|
|
5115
5203
|
/** @format date-time */
|
|
5116
5204
|
completedDate?: string | null;
|
|
@@ -5122,6 +5210,12 @@ export interface UserLoanTask {
|
|
|
5122
5210
|
/** @format int32 */
|
|
5123
5211
|
commentsCount: number;
|
|
5124
5212
|
}
|
|
5213
|
+
export interface UserLoanTaskPaginated {
|
|
5214
|
+
rows: UserLoanTask[];
|
|
5215
|
+
pagination: Pagination;
|
|
5216
|
+
/** @format int64 */
|
|
5217
|
+
count: number;
|
|
5218
|
+
}
|
|
5125
5219
|
export interface UserLoanTaskRequest {
|
|
5126
5220
|
value?: string | null;
|
|
5127
5221
|
/**
|
|
@@ -5227,7 +5321,7 @@ export interface UserSummary {
|
|
|
5227
5321
|
id: string;
|
|
5228
5322
|
name?: string | null;
|
|
5229
5323
|
email?: string | null;
|
|
5230
|
-
role:
|
|
5324
|
+
role: UserSummaryRoleEnum;
|
|
5231
5325
|
}
|
|
5232
5326
|
export interface VerifyPasswordRequest {
|
|
5233
5327
|
/**
|
|
@@ -5260,6 +5354,53 @@ export interface Workflow {
|
|
|
5260
5354
|
tileSubtitle: string;
|
|
5261
5355
|
icon: string;
|
|
5262
5356
|
}
|
|
5357
|
+
export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
|
|
5358
|
+
export type AuditLogEntryChangeTypeEnum = "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored";
|
|
5359
|
+
export type ConsumerConnectStatusRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5360
|
+
export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
|
|
5361
|
+
export type CreateAccountRequestEnvironmentEnum = "Development" | "Staging" | "UAT" | "Production";
|
|
5362
|
+
export type CreateGroupMemberRequestLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5363
|
+
/** @deprecated */
|
|
5364
|
+
export type CreateInviteRequestRelationshipEnum = "NotApplicable" | "Spouse" | "NonSpouse";
|
|
5365
|
+
export type CreateLoanImportRequestImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5366
|
+
export type CreateUserDraftLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5367
|
+
export type DraftTypeEnum = "NewLoan" | "EditLoan";
|
|
5368
|
+
export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
|
|
5369
|
+
export type EncompassCredentialsDetailSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5370
|
+
export type EncompassCredentialsRequestSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5371
|
+
export type EncompassRequestLogOperationTypeEnum = "FieldUpdate" | "EConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
|
|
5372
|
+
export type EncompassRequestLogOutcomeEnum = "Success" | "Failure" | "PartialSuccess";
|
|
5373
|
+
export type FusionReportFilterFilterTypeEnum = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
|
|
5374
|
+
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";
|
|
5375
|
+
export type LoanSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5376
|
+
export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
|
|
5377
|
+
export type LoanContactRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5378
|
+
export type LoanImportStatusEnum = "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
|
|
5379
|
+
export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5380
|
+
export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5381
|
+
export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5382
|
+
export type LoanLogTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "EConsent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation";
|
|
5383
|
+
export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5384
|
+
export type LoanLogDetailTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "EConsent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation";
|
|
5385
|
+
export type LoanUserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5386
|
+
export type SamlMetadataRequestSsoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5387
|
+
export type SiteConfigurationTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5388
|
+
export type SiteConfigurationByUrlTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5389
|
+
export type SiteConfigurationReducedTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5390
|
+
export type SiteConfigurationRequestTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5391
|
+
export type SiteConfigurationSummaryTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5392
|
+
export type UserDraftRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5393
|
+
export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
|
|
5394
|
+
export type UserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5395
|
+
export type UserLoanConsentTypeEnum = "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
5396
|
+
export type UserLoanConsentLosSyncStatusEnum = "NotStarted" | "Failed" | "Success";
|
|
5397
|
+
export type UserSummaryRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5398
|
+
/** @default "Realtor" */
|
|
5399
|
+
export type GetPartnersParamsRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5400
|
+
export type GetSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5401
|
+
export type GetSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5402
|
+
export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5403
|
+
export type CreateOrReplaceSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5263
5404
|
import type { AxiosInstance, AxiosRequestConfig, AxiosResponse, ResponseType } from "axios";
|
|
5264
5405
|
export type QueryParamsType = Record<string | number, any>;
|
|
5265
5406
|
export interface FullRequestParams extends Omit<AxiosRequestConfig, "data" | "params" | "url" | "responseType"> {
|
|
@@ -5305,7 +5446,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
|
|
|
5305
5446
|
}
|
|
5306
5447
|
/**
|
|
5307
5448
|
* @title The Big POS API
|
|
5308
|
-
* @version v2.38.
|
|
5449
|
+
* @version v2.38.1
|
|
5309
5450
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
5310
5451
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
5311
5452
|
*/
|
|
@@ -5461,6 +5602,17 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5461
5602
|
sortBy?: string;
|
|
5462
5603
|
sortDirection?: string;
|
|
5463
5604
|
}, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any>>;
|
|
5605
|
+
/**
|
|
5606
|
+
* No description
|
|
5607
|
+
*
|
|
5608
|
+
* @tags AuditLog
|
|
5609
|
+
* @name GetAuditLogEntityTypes
|
|
5610
|
+
* @summary Get entity types
|
|
5611
|
+
* @request GET:/api/audit-logs/entity-types
|
|
5612
|
+
* @secure
|
|
5613
|
+
* @response `200` `(AuditEntityType)[]` Success
|
|
5614
|
+
*/
|
|
5615
|
+
getAuditLogEntityTypes: (params?: RequestParams) => Promise<AxiosResponse<AuditEntityType[], any>>;
|
|
5464
5616
|
/**
|
|
5465
5617
|
* No description
|
|
5466
5618
|
*
|
|
@@ -5770,6 +5922,28 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5770
5922
|
* @response `200` `ClosedLoansReport` Success
|
|
5771
5923
|
*/
|
|
5772
5924
|
getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any>>;
|
|
5925
|
+
/**
|
|
5926
|
+
* No description
|
|
5927
|
+
*
|
|
5928
|
+
* @tags ConsumerConnect
|
|
5929
|
+
* @name GetConsumerConnectStatus
|
|
5930
|
+
* @summary Get Consumer Connect association status for all borrowers on a loan
|
|
5931
|
+
* @request GET:/api/loans/{loanId}/consumer-connect/status
|
|
5932
|
+
* @secure
|
|
5933
|
+
* @response `200` `(ConsumerConnectStatus)[]` Success
|
|
5934
|
+
*/
|
|
5935
|
+
getConsumerConnectStatus: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectStatus[], any>>;
|
|
5936
|
+
/**
|
|
5937
|
+
* No description
|
|
5938
|
+
*
|
|
5939
|
+
* @tags ConsumerConnect
|
|
5940
|
+
* @name RetryConsumerConnectAssociation
|
|
5941
|
+
* @summary Manually retry Consumer Connect association for failed borrowers on a loan. Returns per-borrower results; check individual Success fields for partial failures.
|
|
5942
|
+
* @request POST:/api/loans/{loanId}/consumer-connect/retry
|
|
5943
|
+
* @secure
|
|
5944
|
+
* @response `200` `(ConsumerConnectRetry)[]` Success
|
|
5945
|
+
*/
|
|
5946
|
+
retryConsumerConnectAssociation: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectRetry[], any>>;
|
|
5773
5947
|
/**
|
|
5774
5948
|
* No description
|
|
5775
5949
|
*
|
|
@@ -7086,10 +7260,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7086
7260
|
* @summary Download By ID
|
|
7087
7261
|
* @request GET:/api/loans/{loanId}/documents/{documentId}/download
|
|
7088
7262
|
* @secure
|
|
7089
|
-
* @response `200` `
|
|
7263
|
+
* @response `200` `Blob` Success
|
|
7090
7264
|
* @response `404` `ProblemDetails` Not Found
|
|
7091
7265
|
*/
|
|
7092
|
-
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
7266
|
+
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<Blob, any>>;
|
|
7093
7267
|
/**
|
|
7094
7268
|
* No description
|
|
7095
7269
|
*
|
|
@@ -7747,9 +7921,27 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7747
7921
|
*/
|
|
7748
7922
|
sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7749
7923
|
/**
|
|
7750
|
-
*
|
|
7924
|
+
* @description Search tasks across all loans
|
|
7751
7925
|
*
|
|
7752
7926
|
* @tags LoanTasks
|
|
7927
|
+
* @name SearchLoanTasks
|
|
7928
|
+
* @summary Search
|
|
7929
|
+
* @request POST:/api/loans/tasks/search
|
|
7930
|
+
* @secure
|
|
7931
|
+
* @response `200` `UserLoanTaskPaginated` Success
|
|
7932
|
+
*/
|
|
7933
|
+
searchLoanTasks: (data: LoanTaskSearchRequest, query?: {
|
|
7934
|
+
/** @format int32 */
|
|
7935
|
+
pageSize?: number;
|
|
7936
|
+
/** @format int32 */
|
|
7937
|
+
pageNumber?: number;
|
|
7938
|
+
sortBy?: string;
|
|
7939
|
+
sortDirection?: string;
|
|
7940
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTaskPaginated, any>>;
|
|
7941
|
+
/**
|
|
7942
|
+
* No description
|
|
7943
|
+
*
|
|
7944
|
+
* @tags LoanTasksForSingleLoan
|
|
7753
7945
|
* @name GetLoanTasks
|
|
7754
7946
|
* @summary Get All
|
|
7755
7947
|
* @request GET:/api/loans/{loanID}/tasks
|
|
@@ -7761,7 +7953,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7761
7953
|
/**
|
|
7762
7954
|
* No description
|
|
7763
7955
|
*
|
|
7764
|
-
* @tags
|
|
7956
|
+
* @tags LoanTasksForSingleLoan
|
|
7765
7957
|
* @name GetLoanTask
|
|
7766
7958
|
* @summary Get by ID
|
|
7767
7959
|
* @request GET:/api/loans/{loanID}/tasks/{id}
|
|
@@ -7773,7 +7965,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7773
7965
|
/**
|
|
7774
7966
|
* @description Get the difference between the current loan tasks and the tasks generated by business rules
|
|
7775
7967
|
*
|
|
7776
|
-
* @tags
|
|
7968
|
+
* @tags LoanTasksForSingleLoan
|
|
7777
7969
|
* @name GetLoanTaskDifference
|
|
7778
7970
|
* @summary Get Difference
|
|
7779
7971
|
* @request GET:/api/loans/{loanID}/tasks/diff
|
|
@@ -7785,7 +7977,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7785
7977
|
/**
|
|
7786
7978
|
* No description
|
|
7787
7979
|
*
|
|
7788
|
-
* @tags
|
|
7980
|
+
* @tags LoanTasksForSingleLoan
|
|
7789
7981
|
* @name CreateLoanTask
|
|
7790
7982
|
* @summary Create
|
|
7791
7983
|
* @request POST:/api/loans/{loanID}/tasks/{taskID}
|
|
@@ -7797,7 +7989,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7797
7989
|
/**
|
|
7798
7990
|
* No description
|
|
7799
7991
|
*
|
|
7800
|
-
* @tags
|
|
7992
|
+
* @tags LoanTasksForSingleLoan
|
|
7801
7993
|
* @name ImportLoanTask
|
|
7802
7994
|
* @summary Import
|
|
7803
7995
|
* @request POST:/api/loans/{loanID}/tasks/import
|
|
@@ -7809,7 +8001,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7809
8001
|
/**
|
|
7810
8002
|
* No description
|
|
7811
8003
|
*
|
|
7812
|
-
* @tags
|
|
8004
|
+
* @tags LoanTasksForSingleLoan
|
|
7813
8005
|
* @name ReplaceLoanTask
|
|
7814
8006
|
* @summary Replace
|
|
7815
8007
|
* @request PUT:/api/loans/{loanID}/tasks/{userLoanTaskID}
|
|
@@ -7821,7 +8013,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7821
8013
|
/**
|
|
7822
8014
|
* No description
|
|
7823
8015
|
*
|
|
7824
|
-
* @tags
|
|
8016
|
+
* @tags LoanTasksForSingleLoan
|
|
7825
8017
|
* @name DeleteLoanTask
|
|
7826
8018
|
* @summary Delete
|
|
7827
8019
|
* @request DELETE:/api/loans/{loanID}/tasks/{userLoanTaskID}
|
|
@@ -8186,7 +8378,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8186
8378
|
getPartners: (query?: {
|
|
8187
8379
|
showAll?: boolean;
|
|
8188
8380
|
/** @default "Realtor" */
|
|
8189
|
-
role?:
|
|
8381
|
+
role?: GetPartnersParamsRoleEnum;
|
|
8190
8382
|
/** @format int32 */
|
|
8191
8383
|
pageSize?: number;
|
|
8192
8384
|
/** @format int32 */
|
|
@@ -8364,7 +8556,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8364
8556
|
* @response `200` `File` Success
|
|
8365
8557
|
* @response `404` `ProblemDetails` Not Found
|
|
8366
8558
|
*/
|
|
8367
|
-
getSamlMetadata: (sSoIntegration:
|
|
8559
|
+
getSamlMetadata: (sSoIntegration: GetSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
8368
8560
|
/**
|
|
8369
8561
|
* No description
|
|
8370
8562
|
*
|
|
@@ -8375,7 +8567,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8375
8567
|
* @secure
|
|
8376
8568
|
* @response `200` `File` Success
|
|
8377
8569
|
*/
|
|
8378
|
-
createOrReplaceSamlMetadata: (sSoIntegration:
|
|
8570
|
+
createOrReplaceSamlMetadata: (sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
8379
8571
|
/**
|
|
8380
8572
|
* No description
|
|
8381
8573
|
*
|
|
@@ -8571,6 +8763,67 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8571
8763
|
sortBy?: string;
|
|
8572
8764
|
sortDirection?: string;
|
|
8573
8765
|
}, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any>>;
|
|
8766
|
+
/**
|
|
8767
|
+
* No description
|
|
8768
|
+
*
|
|
8769
|
+
* @tags TheBigPOS
|
|
8770
|
+
* @name GetEncompassCredentials
|
|
8771
|
+
* @request GET:/api/los/encompass/credentials
|
|
8772
|
+
* @secure
|
|
8773
|
+
* @response `200` `EncompassCredentialsDetail` Success
|
|
8774
|
+
* @response `204` `void` No Content
|
|
8775
|
+
*/
|
|
8776
|
+
getEncompassCredentials: (params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any>>;
|
|
8777
|
+
/**
|
|
8778
|
+
* No description
|
|
8779
|
+
*
|
|
8780
|
+
* @tags TheBigPOS
|
|
8781
|
+
* @name CreateEncompassCredentials
|
|
8782
|
+
* @request POST:/api/los/encompass/credentials
|
|
8783
|
+
* @secure
|
|
8784
|
+
* @response `201` `LosCredentials` Created
|
|
8785
|
+
*/
|
|
8786
|
+
createEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<LosCredentials, any>>;
|
|
8787
|
+
/**
|
|
8788
|
+
* No description
|
|
8789
|
+
*
|
|
8790
|
+
* @tags TheBigPOS
|
|
8791
|
+
* @name UpdateEncompassCredentials
|
|
8792
|
+
* @request PUT:/api/los/encompass/credentials
|
|
8793
|
+
* @secure
|
|
8794
|
+
* @response `200` `EncompassCredentialsDetail` Success
|
|
8795
|
+
*/
|
|
8796
|
+
updateEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any>>;
|
|
8797
|
+
/**
|
|
8798
|
+
* No description
|
|
8799
|
+
*
|
|
8800
|
+
* @tags TheBigPOS
|
|
8801
|
+
* @name GetEncompassWebhooks
|
|
8802
|
+
* @request GET:/api/los/encompass/webhooks
|
|
8803
|
+
* @secure
|
|
8804
|
+
* @response `200` `(LosWebhook)[]` Success
|
|
8805
|
+
*/
|
|
8806
|
+
getEncompassWebhooks: (params?: RequestParams) => Promise<AxiosResponse<LosWebhook[], any>>;
|
|
8807
|
+
/**
|
|
8808
|
+
* No description
|
|
8809
|
+
*
|
|
8810
|
+
* @tags TheBigPOS
|
|
8811
|
+
* @name CreateEncompassWebhook
|
|
8812
|
+
* @request POST:/api/los/encompass/webhooks
|
|
8813
|
+
* @secure
|
|
8814
|
+
* @response `201` `LosWebhook` Created
|
|
8815
|
+
*/
|
|
8816
|
+
createEncompassWebhook: (data: CreateWebhookRequest, params?: RequestParams) => Promise<AxiosResponse<LosWebhook, any>>;
|
|
8817
|
+
/**
|
|
8818
|
+
* No description
|
|
8819
|
+
*
|
|
8820
|
+
* @tags TheBigPOS
|
|
8821
|
+
* @name DeleteEncompassWebhook
|
|
8822
|
+
* @request DELETE:/api/los/encompass/webhooks/{webhookId}
|
|
8823
|
+
* @secure
|
|
8824
|
+
* @response `204` `void` No Content
|
|
8825
|
+
*/
|
|
8826
|
+
deleteEncompassWebhook: (webhookId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8574
8827
|
/**
|
|
8575
8828
|
* No description
|
|
8576
8829
|
*
|