@matech/thebigpos-sdk 2.43.1-rc.0 → 2.43.8
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 +2 -2
- package/dist/index.d.ts +89 -150
- package/dist/index.js +170 -161
- package/dist/index.js.map +1 -1
- package/package.json +4 -3
- package/src/index.ts +558 -778
- package/tsconfig.json +27 -27
package/dist/index.d.ts
CHANGED
|
@@ -117,7 +117,7 @@ export interface AccountBilling {
|
|
|
117
117
|
contractedRate: number;
|
|
118
118
|
}
|
|
119
119
|
export interface AccountBillingRequest {
|
|
120
|
-
billingType:
|
|
120
|
+
billingType: "ClosedLoan" | "LoanOfficer";
|
|
121
121
|
/** @format double */
|
|
122
122
|
contractedRate: number;
|
|
123
123
|
}
|
|
@@ -159,7 +159,7 @@ export interface Action {
|
|
|
159
159
|
comments?: string | null;
|
|
160
160
|
/** @format uuid */
|
|
161
161
|
siteConfigurationID: string;
|
|
162
|
-
applicationSettings?: any
|
|
162
|
+
applicationSettings?: any;
|
|
163
163
|
surveysToken?: string | null;
|
|
164
164
|
}
|
|
165
165
|
export interface Address {
|
|
@@ -396,14 +396,14 @@ export interface AuditLogEntry {
|
|
|
396
396
|
/** @format uuid */
|
|
397
397
|
id: string;
|
|
398
398
|
entityType: string;
|
|
399
|
-
changeType:
|
|
399
|
+
changeType: "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored" | "Deactivated" | "Reactivated";
|
|
400
400
|
/** @format uuid */
|
|
401
401
|
entityId: string;
|
|
402
402
|
performedBy?: AuditLogUser | null;
|
|
403
403
|
rootEntityType?: string | null;
|
|
404
404
|
/** @format uuid */
|
|
405
405
|
rootEntityId?: string | null;
|
|
406
|
-
changes?: any
|
|
406
|
+
changes?: any;
|
|
407
407
|
/** @format date-time */
|
|
408
408
|
createdAt: string;
|
|
409
409
|
}
|
|
@@ -443,7 +443,7 @@ export interface BorrowerCount {
|
|
|
443
443
|
firstName: string;
|
|
444
444
|
lastName: string;
|
|
445
445
|
email: string;
|
|
446
|
-
role:
|
|
446
|
+
role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
447
447
|
/** @format int32 */
|
|
448
448
|
count: number;
|
|
449
449
|
}
|
|
@@ -453,7 +453,7 @@ export interface BorrowerIdentity {
|
|
|
453
453
|
firstName: string;
|
|
454
454
|
lastName: string;
|
|
455
455
|
email: string;
|
|
456
|
-
role:
|
|
456
|
+
role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
457
457
|
}
|
|
458
458
|
export interface BorrowersNotUsingPosSummary {
|
|
459
459
|
/** @format int32 */
|
|
@@ -687,7 +687,7 @@ export interface CorporateSearchCriteria {
|
|
|
687
687
|
isActive?: boolean | null;
|
|
688
688
|
}
|
|
689
689
|
export interface CreateAccessScopeRequest {
|
|
690
|
-
scopeType:
|
|
690
|
+
scopeType: "User" | "Branch";
|
|
691
691
|
/** @format uuid */
|
|
692
692
|
userId?: string | null;
|
|
693
693
|
/** @format uuid */
|
|
@@ -705,7 +705,7 @@ export interface CreateAccountRequest {
|
|
|
705
705
|
/** @format int64 */
|
|
706
706
|
nlmsid: number;
|
|
707
707
|
settings: AccountSettingsRequest;
|
|
708
|
-
environment:
|
|
708
|
+
environment: "Development" | "Staging" | "UAT" | "Production";
|
|
709
709
|
losIntegration: LOSIntegration;
|
|
710
710
|
billingSettings: AccountBillingRequest;
|
|
711
711
|
}
|
|
@@ -730,8 +730,8 @@ export interface CreateCustomFieldDefinitionRequest {
|
|
|
730
730
|
name: string;
|
|
731
731
|
defaultValue?: string | null;
|
|
732
732
|
regexPattern?: string | null;
|
|
733
|
-
dataType:
|
|
734
|
-
entityType:
|
|
733
|
+
dataType: "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
734
|
+
entityType: "Loan";
|
|
735
735
|
options?: CustomFieldOptionRequest[] | null;
|
|
736
736
|
permissions?: CustomFieldPermissionRequest[] | null;
|
|
737
737
|
}
|
|
@@ -746,7 +746,7 @@ export interface CreateDocumentTemplateRequest {
|
|
|
746
746
|
export interface CreateGroupMemberRequest {
|
|
747
747
|
/** @format uuid */
|
|
748
748
|
userId: string;
|
|
749
|
-
loanRole:
|
|
749
|
+
loanRole: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
750
750
|
}
|
|
751
751
|
export interface CreateInviteRequest {
|
|
752
752
|
firstName: string;
|
|
@@ -754,7 +754,7 @@ export interface CreateInviteRequest {
|
|
|
754
754
|
emailAddress: string;
|
|
755
755
|
phoneNumber?: string | null;
|
|
756
756
|
/** @deprecated */
|
|
757
|
-
relationship:
|
|
757
|
+
relationship: "NotApplicable" | "Spouse" | "NonSpouse";
|
|
758
758
|
loanID: string;
|
|
759
759
|
route?: string | null;
|
|
760
760
|
/** @format uuid */
|
|
@@ -774,7 +774,7 @@ export interface CreateLoanImportRequest {
|
|
|
774
774
|
endDate: string;
|
|
775
775
|
/** @format date-time */
|
|
776
776
|
startDate: string;
|
|
777
|
-
importMode:
|
|
777
|
+
importMode: "All" | "NewOnly" | "UpdateOnly";
|
|
778
778
|
}
|
|
779
779
|
export interface CreateSession {
|
|
780
780
|
sessionId: string;
|
|
@@ -792,7 +792,7 @@ export interface CreateUserDeviceRequest {
|
|
|
792
792
|
token: string;
|
|
793
793
|
}
|
|
794
794
|
export interface CreateUserDraft {
|
|
795
|
-
loanRole:
|
|
795
|
+
loanRole: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
796
796
|
}
|
|
797
797
|
export interface CreateUserGroupRequest {
|
|
798
798
|
name: string;
|
|
@@ -853,8 +853,8 @@ export interface CustomFieldDefinition {
|
|
|
853
853
|
name: string;
|
|
854
854
|
defaultValue?: string | null;
|
|
855
855
|
regexPattern?: string | null;
|
|
856
|
-
dataType:
|
|
857
|
-
entityType:
|
|
856
|
+
dataType: "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
857
|
+
entityType: "Loan";
|
|
858
858
|
options: CustomFieldOption[];
|
|
859
859
|
permissions: CustomFieldPermission[];
|
|
860
860
|
encompassMapping?: EncompassMapping | null;
|
|
@@ -868,7 +868,7 @@ export interface CustomFieldEntry {
|
|
|
868
868
|
displayOrder: number;
|
|
869
869
|
name: string;
|
|
870
870
|
value: string;
|
|
871
|
-
dataType:
|
|
871
|
+
dataType: "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
872
872
|
}
|
|
873
873
|
export interface CustomFieldOption {
|
|
874
874
|
/** @format uuid */
|
|
@@ -885,12 +885,12 @@ export interface CustomFieldOptionRequest {
|
|
|
885
885
|
export interface CustomFieldPermission {
|
|
886
886
|
/** @format uuid */
|
|
887
887
|
id: string;
|
|
888
|
-
role:
|
|
889
|
-
accessLevel:
|
|
888
|
+
role: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
889
|
+
accessLevel: "NoAccess" | "ReadOnly" | "ReadWrite";
|
|
890
890
|
}
|
|
891
891
|
export interface CustomFieldPermissionRequest {
|
|
892
|
-
role:
|
|
893
|
-
accessLevel:
|
|
892
|
+
role: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
893
|
+
accessLevel: "NoAccess" | "ReadOnly" | "ReadWrite";
|
|
894
894
|
}
|
|
895
895
|
export interface CustomFieldValue {
|
|
896
896
|
/** @format uuid */
|
|
@@ -901,7 +901,7 @@ export interface CustomFieldValue {
|
|
|
901
901
|
customFieldDefinitionID: string;
|
|
902
902
|
value: string;
|
|
903
903
|
definitionName: string;
|
|
904
|
-
dataType:
|
|
904
|
+
dataType: "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
905
905
|
}
|
|
906
906
|
export interface DetailedUser {
|
|
907
907
|
/** @format date-time */
|
|
@@ -1139,7 +1139,7 @@ export interface Draft {
|
|
|
1139
1139
|
siteConfiguration: SiteConfigurationReduced;
|
|
1140
1140
|
/** @format uuid */
|
|
1141
1141
|
loanID?: string | null;
|
|
1142
|
-
type:
|
|
1142
|
+
type: "NewLoan" | "EditLoan";
|
|
1143
1143
|
isCoBorrower: boolean;
|
|
1144
1144
|
}
|
|
1145
1145
|
export interface DraftContent {
|
|
@@ -1157,7 +1157,7 @@ export interface DraftContent {
|
|
|
1157
1157
|
siteConfiguration: SiteConfigurationReduced;
|
|
1158
1158
|
/** @format uuid */
|
|
1159
1159
|
loanID?: string | null;
|
|
1160
|
-
type:
|
|
1160
|
+
type: "NewLoan" | "EditLoan";
|
|
1161
1161
|
isCoBorrower: boolean;
|
|
1162
1162
|
applicationPayload: any;
|
|
1163
1163
|
}
|
|
@@ -1173,7 +1173,7 @@ export interface DraftLoanOfficerReassignRequest {
|
|
|
1173
1173
|
}
|
|
1174
1174
|
export interface DraftRequest {
|
|
1175
1175
|
applicationPayload: any;
|
|
1176
|
-
customData?: any
|
|
1176
|
+
customData?: any;
|
|
1177
1177
|
isCoBorrower: boolean;
|
|
1178
1178
|
}
|
|
1179
1179
|
export interface EconsentPendingSummary {
|
|
@@ -1247,9 +1247,9 @@ export interface EncompassCredentialsDetail {
|
|
|
1247
1247
|
clearStateIfUnlicensed: boolean;
|
|
1248
1248
|
/** @deprecated */
|
|
1249
1249
|
baseUrl?: string | null;
|
|
1250
|
-
encompassEnvironment:
|
|
1250
|
+
encompassEnvironment: "Production" | "UAT";
|
|
1251
1251
|
consumerConnectWidgetHost?: string | null;
|
|
1252
|
-
signingMethod:
|
|
1252
|
+
signingMethod: "ConsumerConnect" | "POSF";
|
|
1253
1253
|
subscriptionId?: string | null;
|
|
1254
1254
|
environment?: string | null;
|
|
1255
1255
|
}
|
|
@@ -1265,9 +1265,9 @@ export interface EncompassCredentialsRequest {
|
|
|
1265
1265
|
clearStateIfUnlicensed: boolean;
|
|
1266
1266
|
/** @deprecated */
|
|
1267
1267
|
baseUrl?: string | null;
|
|
1268
|
-
encompassEnvironment:
|
|
1268
|
+
encompassEnvironment: "Production" | "UAT";
|
|
1269
1269
|
consumerConnectWidgetHost?: string | null;
|
|
1270
|
-
signingMethod:
|
|
1270
|
+
signingMethod: "ConsumerConnect" | "POSF";
|
|
1271
1271
|
subscriptionId?: string | null;
|
|
1272
1272
|
environment?: string | null;
|
|
1273
1273
|
clientID?: string | null;
|
|
@@ -1376,8 +1376,8 @@ export interface EncompassRequestLog {
|
|
|
1376
1376
|
losId?: string | null;
|
|
1377
1377
|
/** @format uuid */
|
|
1378
1378
|
accountId: string;
|
|
1379
|
-
operationType:
|
|
1380
|
-
outcome:
|
|
1379
|
+
operationType: "FieldUpdate" | "ConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
|
|
1380
|
+
outcome: "Success" | "Failure" | "PartialSuccess";
|
|
1381
1381
|
message: string;
|
|
1382
1382
|
endpoint?: string | null;
|
|
1383
1383
|
httpMethod?: string | null;
|
|
@@ -1385,7 +1385,7 @@ export interface EncompassRequestLog {
|
|
|
1385
1385
|
httpStatusCode?: number | null;
|
|
1386
1386
|
/** @format int64 */
|
|
1387
1387
|
durationMs?: number | null;
|
|
1388
|
-
context?: any
|
|
1388
|
+
context?: any;
|
|
1389
1389
|
/** @format date-time */
|
|
1390
1390
|
createdAt: string;
|
|
1391
1391
|
}
|
|
@@ -1424,7 +1424,7 @@ export interface FileSearchCriteria {
|
|
|
1424
1424
|
export interface FileWithBytes {
|
|
1425
1425
|
name: string;
|
|
1426
1426
|
/** @format byte */
|
|
1427
|
-
data:
|
|
1427
|
+
data: string;
|
|
1428
1428
|
fileName: string;
|
|
1429
1429
|
mimeType?: string | null;
|
|
1430
1430
|
extension?: string | null;
|
|
@@ -1500,7 +1500,7 @@ export interface FormSubmission {
|
|
|
1500
1500
|
subjectPropertyAddressCounty?: string | null;
|
|
1501
1501
|
subjectPropertyAddressState?: string | null;
|
|
1502
1502
|
subjectPropertyAddressZip?: string | null;
|
|
1503
|
-
data?: any
|
|
1503
|
+
data?: any;
|
|
1504
1504
|
/** @format uuid */
|
|
1505
1505
|
listingID?: string | null;
|
|
1506
1506
|
listing?: Listing | null;
|
|
@@ -1535,7 +1535,7 @@ export interface FormSubmissionRequest {
|
|
|
1535
1535
|
subjectPropertyAddressCounty?: string | null;
|
|
1536
1536
|
subjectPropertyAddressState?: string | null;
|
|
1537
1537
|
subjectPropertyAddressZip?: string | null;
|
|
1538
|
-
data?: any
|
|
1538
|
+
data?: any;
|
|
1539
1539
|
/** @format uuid */
|
|
1540
1540
|
listingID?: string | null;
|
|
1541
1541
|
}
|
|
@@ -1584,7 +1584,7 @@ export interface FusionFieldDisplay {
|
|
|
1584
1584
|
fieldValue: string;
|
|
1585
1585
|
}
|
|
1586
1586
|
export interface FusionReportFilter {
|
|
1587
|
-
filterType:
|
|
1587
|
+
filterType: "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
|
|
1588
1588
|
targetField: string;
|
|
1589
1589
|
targetValue: string;
|
|
1590
1590
|
}
|
|
@@ -1683,11 +1683,11 @@ export interface GetWorkflowRequest {
|
|
|
1683
1683
|
export interface GuidPatchOperation {
|
|
1684
1684
|
op: string;
|
|
1685
1685
|
path: string;
|
|
1686
|
-
value?: any
|
|
1686
|
+
value?: any;
|
|
1687
1687
|
from?: string | null;
|
|
1688
1688
|
}
|
|
1689
1689
|
export interface IPAddress {
|
|
1690
|
-
addressFamily:
|
|
1690
|
+
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";
|
|
1691
1691
|
/** @format int64 */
|
|
1692
1692
|
scopeId: number;
|
|
1693
1693
|
isIPv6Multicast: boolean;
|
|
@@ -1931,7 +1931,7 @@ export interface Loan {
|
|
|
1931
1931
|
userLoans: UserLoan[];
|
|
1932
1932
|
contacts: LoanContact[];
|
|
1933
1933
|
customFields: CustomFieldEntry[];
|
|
1934
|
-
signingMethod:
|
|
1934
|
+
signingMethod: "ConsumerConnect" | "POSF";
|
|
1935
1935
|
}
|
|
1936
1936
|
export interface LoanApplication {
|
|
1937
1937
|
/** @format uuid */
|
|
@@ -1967,7 +1967,7 @@ export interface LoanApplicationRequest {
|
|
|
1967
1967
|
nonOwningBorrowers: LoanNonOwningBorrowerRequest[];
|
|
1968
1968
|
/** @format uuid */
|
|
1969
1969
|
draftId?: string | null;
|
|
1970
|
-
additionalFields?: Record<string, any
|
|
1970
|
+
additionalFields?: Record<string, any>;
|
|
1971
1971
|
/** @format uuid */
|
|
1972
1972
|
existingLoanId?: string | null;
|
|
1973
1973
|
}
|
|
@@ -1986,7 +1986,7 @@ export interface LoanBorrower {
|
|
|
1986
1986
|
citizenship?: LoanCitizenship | null;
|
|
1987
1987
|
maritalStatus?: LoanMaritalStatus | null;
|
|
1988
1988
|
languagePreference?: LoanLanguagePreference | null;
|
|
1989
|
-
applicationStatus:
|
|
1989
|
+
applicationStatus: "Draft" | "Complete";
|
|
1990
1990
|
/** @format int32 */
|
|
1991
1991
|
numberOfDependents?: number | null;
|
|
1992
1992
|
isPrimaryBorrower: boolean;
|
|
@@ -2688,7 +2688,7 @@ export interface LoanConsentRequest {
|
|
|
2688
2688
|
borrowerEConsent?: boolean | null;
|
|
2689
2689
|
borrowerCreditAuth?: boolean | null;
|
|
2690
2690
|
borrowerTCPAOptIn?: boolean | null;
|
|
2691
|
-
additionalFields?: Record<string, string
|
|
2691
|
+
additionalFields?: Record<string, string>;
|
|
2692
2692
|
}
|
|
2693
2693
|
export interface LoanContact {
|
|
2694
2694
|
/** @format date-time */
|
|
@@ -2706,13 +2706,13 @@ export interface LoanContact {
|
|
|
2706
2706
|
email?: string | null;
|
|
2707
2707
|
phone?: string | null;
|
|
2708
2708
|
companyName?: string | null;
|
|
2709
|
-
role:
|
|
2709
|
+
role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
2710
2710
|
}
|
|
2711
2711
|
export interface LoanContactList {
|
|
2712
2712
|
email: string;
|
|
2713
2713
|
}
|
|
2714
2714
|
export interface LoanCustomFieldsRequest {
|
|
2715
|
-
additionalFields?: Record<string, string
|
|
2715
|
+
additionalFields?: Record<string, string>;
|
|
2716
2716
|
}
|
|
2717
2717
|
export interface LoanDocument {
|
|
2718
2718
|
/** @format date-time */
|
|
@@ -2755,12 +2755,12 @@ export interface LoanDocumentFolderPermission {
|
|
|
2755
2755
|
id: string;
|
|
2756
2756
|
/** @format uuid */
|
|
2757
2757
|
loanDocumentFolderID: string;
|
|
2758
|
-
role:
|
|
2759
|
-
level:
|
|
2758
|
+
role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
2759
|
+
level: "None" | "Read" | "Write" | "Manage";
|
|
2760
2760
|
}
|
|
2761
2761
|
export interface LoanDocumentFolderPermissionRequest {
|
|
2762
|
-
role:
|
|
2763
|
-
level:
|
|
2762
|
+
role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
2763
|
+
level: "None" | "Read" | "Write" | "Manage";
|
|
2764
2764
|
}
|
|
2765
2765
|
export interface LoanDocumentFolderUsage {
|
|
2766
2766
|
/** @format uuid */
|
|
@@ -2859,13 +2859,13 @@ export interface LoanImport {
|
|
|
2859
2859
|
/** @format int32 */
|
|
2860
2860
|
importedCount: number;
|
|
2861
2861
|
statusMessage?: string | null;
|
|
2862
|
-
status:
|
|
2863
|
-
importMode:
|
|
2862
|
+
status: "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
|
|
2863
|
+
importMode: "All" | "NewOnly" | "UpdateOnly";
|
|
2864
2864
|
/** @format date-time */
|
|
2865
2865
|
createdAt?: string | null;
|
|
2866
2866
|
}
|
|
2867
2867
|
export interface LoanImportLog {
|
|
2868
|
-
level:
|
|
2868
|
+
level: "None" | "Info" | "Warning" | "Error";
|
|
2869
2869
|
message: string;
|
|
2870
2870
|
/** @format date-time */
|
|
2871
2871
|
createdAt: string;
|
|
@@ -2920,8 +2920,8 @@ export interface LoanListPaginated {
|
|
|
2920
2920
|
export interface LoanLog {
|
|
2921
2921
|
/** @format uuid */
|
|
2922
2922
|
id: string;
|
|
2923
|
-
level:
|
|
2924
|
-
type:
|
|
2923
|
+
level: "None" | "Info" | "Warning" | "Error";
|
|
2924
|
+
type: "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
|
|
2925
2925
|
message: string;
|
|
2926
2926
|
/** @format date-time */
|
|
2927
2927
|
createdAt: string;
|
|
@@ -2929,8 +2929,8 @@ export interface LoanLog {
|
|
|
2929
2929
|
export interface LoanLogDetail {
|
|
2930
2930
|
/** @format uuid */
|
|
2931
2931
|
id: string;
|
|
2932
|
-
level:
|
|
2933
|
-
type:
|
|
2932
|
+
level: "None" | "Info" | "Warning" | "Error";
|
|
2933
|
+
type: "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
|
|
2934
2934
|
message: string;
|
|
2935
2935
|
/** @format date-time */
|
|
2936
2936
|
createdAt: string;
|
|
@@ -3138,7 +3138,7 @@ export interface LoanQueueWithData {
|
|
|
3138
3138
|
user: UserPublic;
|
|
3139
3139
|
loanOfficer: LoanOfficerPublic;
|
|
3140
3140
|
siteConfiguration: SiteConfigurationReduced;
|
|
3141
|
-
data?: any
|
|
3141
|
+
data?: any;
|
|
3142
3142
|
}
|
|
3143
3143
|
export interface LoanRecord {
|
|
3144
3144
|
loanGuid: string;
|
|
@@ -3169,7 +3169,7 @@ export interface LoanTaskSearchRequest {
|
|
|
3169
3169
|
loanStatus?: LoanTaskActivityFilter | null;
|
|
3170
3170
|
}
|
|
3171
3171
|
export interface LoanTaskStatusSummary {
|
|
3172
|
-
status:
|
|
3172
|
+
status: "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
|
|
3173
3173
|
/** @format int32 */
|
|
3174
3174
|
count: number;
|
|
3175
3175
|
}
|
|
@@ -3181,7 +3181,7 @@ export interface LoanUser {
|
|
|
3181
3181
|
email: string;
|
|
3182
3182
|
phone?: string | null;
|
|
3183
3183
|
role: string;
|
|
3184
|
-
loanRole:
|
|
3184
|
+
loanRole: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
3185
3185
|
isUser: boolean;
|
|
3186
3186
|
/** @format date-time */
|
|
3187
3187
|
createdAt: string;
|
|
@@ -3214,7 +3214,7 @@ export interface LosOperationTracking {
|
|
|
3214
3214
|
operationType: string;
|
|
3215
3215
|
correlationKey: string;
|
|
3216
3216
|
lastTriggerSource?: string | null;
|
|
3217
|
-
status:
|
|
3217
|
+
status: "Pending" | "Success" | "Failed" | "ConfigurationError" | "PermanentFailure" | "Locked";
|
|
3218
3218
|
/** @format date-time */
|
|
3219
3219
|
createdAt: string;
|
|
3220
3220
|
/** @format date-time */
|
|
@@ -3275,7 +3275,7 @@ export interface LosSyncStep {
|
|
|
3275
3275
|
/** @format int32 */
|
|
3276
3276
|
order: number;
|
|
3277
3277
|
name: string;
|
|
3278
|
-
severity:
|
|
3278
|
+
severity: "Success" | "Info" | "Warning" | "Error";
|
|
3279
3279
|
message: string;
|
|
3280
3280
|
/** @format date-time */
|
|
3281
3281
|
atUtc: string;
|
|
@@ -3365,7 +3365,7 @@ export interface ModuleParameterValue {
|
|
|
3365
3365
|
parameterID: string;
|
|
3366
3366
|
parameterName: string;
|
|
3367
3367
|
parameterType: string;
|
|
3368
|
-
value?: any
|
|
3368
|
+
value?: any;
|
|
3369
3369
|
isInherited: boolean;
|
|
3370
3370
|
}
|
|
3371
3371
|
export interface MonthlyPaymentCalculator {
|
|
@@ -3538,7 +3538,7 @@ export interface NotificationTemplateVersionUpdateRequest {
|
|
|
3538
3538
|
}
|
|
3539
3539
|
export interface Operation {
|
|
3540
3540
|
op?: string;
|
|
3541
|
-
value?:
|
|
3541
|
+
value?: string | number | boolean | null | object;
|
|
3542
3542
|
path?: string;
|
|
3543
3543
|
}
|
|
3544
3544
|
export interface OverridePasswordRequest {
|
|
@@ -3851,7 +3851,7 @@ export interface SiteConfiguration {
|
|
|
3851
3851
|
deletedAt?: string | null;
|
|
3852
3852
|
/** @format uuid */
|
|
3853
3853
|
id: string;
|
|
3854
|
-
type:
|
|
3854
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
3855
3855
|
/** @format uuid */
|
|
3856
3856
|
entityID: string;
|
|
3857
3857
|
/** @format int32 */
|
|
@@ -4044,7 +4044,7 @@ export interface SiteConfigurationByUrl {
|
|
|
4044
4044
|
deletedAt?: string | null;
|
|
4045
4045
|
/** @format uuid */
|
|
4046
4046
|
id: string;
|
|
4047
|
-
type:
|
|
4047
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
4048
4048
|
/** @format uuid */
|
|
4049
4049
|
entityID: string;
|
|
4050
4050
|
/** @format int32 */
|
|
@@ -4254,7 +4254,7 @@ export interface SiteConfigurationForm {
|
|
|
4254
4254
|
export interface SiteConfigurationReduced {
|
|
4255
4255
|
/** @format uuid */
|
|
4256
4256
|
id: string;
|
|
4257
|
-
type:
|
|
4257
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
4258
4258
|
url?: string | null;
|
|
4259
4259
|
name: string;
|
|
4260
4260
|
/** @format int64 */
|
|
@@ -4271,7 +4271,7 @@ export interface SiteConfigurationRequest {
|
|
|
4271
4271
|
entityID: string;
|
|
4272
4272
|
/** @format int32 */
|
|
4273
4273
|
entityType: number;
|
|
4274
|
-
type:
|
|
4274
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
4275
4275
|
url: string;
|
|
4276
4276
|
name: string;
|
|
4277
4277
|
introduction?: string | null;
|
|
@@ -4446,7 +4446,7 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
4446
4446
|
export interface SiteConfigurationSummary {
|
|
4447
4447
|
/** @format uuid */
|
|
4448
4448
|
id: string;
|
|
4449
|
-
type:
|
|
4449
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
4450
4450
|
url?: string | null;
|
|
4451
4451
|
name: string;
|
|
4452
4452
|
/** @format int64 */
|
|
@@ -4702,7 +4702,7 @@ export interface UnregisteredBorrower {
|
|
|
4702
4702
|
lastName?: string | null;
|
|
4703
4703
|
fullName?: string | null;
|
|
4704
4704
|
email?: string | null;
|
|
4705
|
-
role:
|
|
4705
|
+
role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
4706
4706
|
}
|
|
4707
4707
|
export interface UpdateAccountRequest {
|
|
4708
4708
|
name: string;
|
|
@@ -4998,7 +4998,7 @@ export interface UserDevice {
|
|
|
4998
4998
|
export interface UserDraft {
|
|
4999
4999
|
/** @format uuid */
|
|
5000
5000
|
draftID: string;
|
|
5001
|
-
role:
|
|
5001
|
+
role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5002
5002
|
user: User;
|
|
5003
5003
|
}
|
|
5004
5004
|
export interface UserDraftPaginated {
|
|
@@ -5022,7 +5022,7 @@ export interface UserGroupAccessScope {
|
|
|
5022
5022
|
id: string;
|
|
5023
5023
|
/** @format uuid */
|
|
5024
5024
|
groupId: string;
|
|
5025
|
-
scopeType:
|
|
5025
|
+
scopeType: "User" | "Branch";
|
|
5026
5026
|
/** @format uuid */
|
|
5027
5027
|
userId?: string | null;
|
|
5028
5028
|
/** @format uuid */
|
|
@@ -5055,7 +5055,7 @@ export interface UserLoan {
|
|
|
5055
5055
|
deletedAt?: string | null;
|
|
5056
5056
|
loanID: string;
|
|
5057
5057
|
user: User;
|
|
5058
|
-
role:
|
|
5058
|
+
role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5059
5059
|
/** @format int32 */
|
|
5060
5060
|
borrowerPair?: number | null;
|
|
5061
5061
|
/** @format int32 */
|
|
@@ -5067,11 +5067,11 @@ export interface UserLoanConsent {
|
|
|
5067
5067
|
id: string;
|
|
5068
5068
|
/** @format uuid */
|
|
5069
5069
|
userLoanID: string;
|
|
5070
|
-
type:
|
|
5070
|
+
type: "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
5071
5071
|
providedConsent: boolean;
|
|
5072
5072
|
source?: ConsentSource | null;
|
|
5073
5073
|
ipAddress?: string | null;
|
|
5074
|
-
losSyncStatus:
|
|
5074
|
+
losSyncStatus: "NotStarted" | "Failed" | "Success";
|
|
5075
5075
|
/** @format date-time */
|
|
5076
5076
|
createdAt: string;
|
|
5077
5077
|
/** @format date-time */
|
|
@@ -5201,7 +5201,7 @@ export interface UserSummary {
|
|
|
5201
5201
|
id: string;
|
|
5202
5202
|
name?: string | null;
|
|
5203
5203
|
email?: string | null;
|
|
5204
|
-
role:
|
|
5204
|
+
role: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5205
5205
|
}
|
|
5206
5206
|
export interface VerifyPasswordRequest {
|
|
5207
5207
|
email: string;
|
|
@@ -5228,74 +5228,6 @@ export interface Workflow {
|
|
|
5228
5228
|
tileSubtitle: string;
|
|
5229
5229
|
icon: string;
|
|
5230
5230
|
}
|
|
5231
|
-
export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
|
|
5232
|
-
export type AuditLogEntryChangeTypeEnum = "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored" | "Deactivated" | "Reactivated";
|
|
5233
|
-
export type BorrowerCountRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5234
|
-
export type BorrowerIdentityRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5235
|
-
export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
|
|
5236
|
-
export type CreateAccountRequestEnvironmentEnum = "Development" | "Staging" | "UAT" | "Production";
|
|
5237
|
-
export type CreateCustomFieldDefinitionRequestDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5238
|
-
export type CreateCustomFieldDefinitionRequestEntityTypeEnum = "Loan";
|
|
5239
|
-
export type CreateGroupMemberRequestLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5240
|
-
/** @deprecated */
|
|
5241
|
-
export type CreateInviteRequestRelationshipEnum = "NotApplicable" | "Spouse" | "NonSpouse";
|
|
5242
|
-
export type CreateLoanImportRequestImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5243
|
-
export type CreateUserDraftLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5244
|
-
export type CustomFieldDefinitionDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5245
|
-
export type CustomFieldDefinitionEntityTypeEnum = "Loan";
|
|
5246
|
-
export type CustomFieldEntryDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5247
|
-
export type CustomFieldPermissionRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5248
|
-
export type CustomFieldPermissionAccessLevelEnum = "NoAccess" | "ReadOnly" | "ReadWrite";
|
|
5249
|
-
export type CustomFieldPermissionRequestRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5250
|
-
export type CustomFieldPermissionRequestAccessLevelEnum = "NoAccess" | "ReadOnly" | "ReadWrite";
|
|
5251
|
-
export type CustomFieldValueDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5252
|
-
export type DraftTypeEnum = "NewLoan" | "EditLoan";
|
|
5253
|
-
export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
|
|
5254
|
-
export type EncompassCredentialsDetailEncompassEnvironmentEnum = "Production" | "UAT";
|
|
5255
|
-
export type EncompassCredentialsDetailSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5256
|
-
export type EncompassCredentialsRequestEncompassEnvironmentEnum = "Production" | "UAT";
|
|
5257
|
-
export type EncompassCredentialsRequestSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5258
|
-
export type EncompassRequestLogOperationTypeEnum = "FieldUpdate" | "ConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
|
|
5259
|
-
export type EncompassRequestLogOutcomeEnum = "Success" | "Failure" | "PartialSuccess";
|
|
5260
|
-
export type FusionReportFilterFilterTypeEnum = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
|
|
5261
|
-
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";
|
|
5262
|
-
export type LoanSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5263
|
-
export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
|
|
5264
|
-
export type LoanContactRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5265
|
-
export type LoanDocumentFolderPermissionRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5266
|
-
export type LoanDocumentFolderPermissionLevelEnum = "None" | "Read" | "Write" | "Manage";
|
|
5267
|
-
export type LoanDocumentFolderPermissionRequestRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5268
|
-
export type LoanDocumentFolderPermissionRequestLevelEnum = "None" | "Read" | "Write" | "Manage";
|
|
5269
|
-
export type LoanImportStatusEnum = "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
|
|
5270
|
-
export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5271
|
-
export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5272
|
-
export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5273
|
-
export type LoanLogTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
|
|
5274
|
-
export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5275
|
-
export type LoanLogDetailTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
|
|
5276
|
-
export type LoanTaskStatusSummaryStatusEnum = "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
|
|
5277
|
-
export type LoanUserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5278
|
-
export type LosOperationTrackingStatusEnum = "Pending" | "Success" | "Failed" | "ConfigurationError" | "PermanentFailure" | "Locked";
|
|
5279
|
-
export type LosSyncStepSeverityEnum = "Success" | "Info" | "Warning" | "Error";
|
|
5280
|
-
export type SiteConfigurationTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5281
|
-
export type SiteConfigurationByUrlTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5282
|
-
export type SiteConfigurationReducedTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5283
|
-
export type SiteConfigurationRequestTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5284
|
-
export type SiteConfigurationSummaryTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5285
|
-
export type UnregisteredBorrowerRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5286
|
-
export type UserDraftRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5287
|
-
export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
|
|
5288
|
-
export type UserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5289
|
-
export type UserLoanConsentTypeEnum = "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
5290
|
-
export type UserLoanConsentLosSyncStatusEnum = "NotStarted" | "Failed" | "Success";
|
|
5291
|
-
export type UserSummaryRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5292
|
-
export type GetCustomFieldDefinitionsParamsEntityTypeEnum = "Loan";
|
|
5293
|
-
/** @default "Realtor" */
|
|
5294
|
-
export type GetPartnersParamsRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5295
|
-
export type GetSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5296
|
-
export type GetSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5297
|
-
export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5298
|
-
export type CreateOrReplaceSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5299
5231
|
import type { AxiosInstance, AxiosRequestConfig, AxiosResponse, ResponseType } from "axios";
|
|
5300
5232
|
export type QueryParamsType = Record<string | number, any>;
|
|
5301
5233
|
export interface FullRequestParams extends Omit<AxiosRequestConfig, "data" | "params" | "url" | "responseType"> {
|
|
@@ -5318,7 +5250,14 @@ export interface ApiConfig<SecurityDataType = unknown> extends Omit<AxiosRequest
|
|
|
5318
5250
|
secure?: boolean;
|
|
5319
5251
|
format?: ResponseType;
|
|
5320
5252
|
}
|
|
5321
|
-
export
|
|
5253
|
+
export declare enum ContentType {
|
|
5254
|
+
JsonPatch = "application/json-patch+json",
|
|
5255
|
+
Json = "application/json",
|
|
5256
|
+
JsonApi = "application/vnd.api+json",
|
|
5257
|
+
FormData = "multipart/form-data",
|
|
5258
|
+
UrlEncoded = "application/x-www-form-urlencoded",
|
|
5259
|
+
Text = "text/plain"
|
|
5260
|
+
}
|
|
5322
5261
|
export declare class HttpClient<SecurityDataType = unknown> {
|
|
5323
5262
|
instance: AxiosInstance;
|
|
5324
5263
|
private securityData;
|
|
@@ -5334,7 +5273,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
|
|
|
5334
5273
|
}
|
|
5335
5274
|
/**
|
|
5336
5275
|
* @title The Big POS API
|
|
5337
|
-
* @version v2.43.
|
|
5276
|
+
* @version v2.43.8
|
|
5338
5277
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
5339
5278
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
5340
5279
|
*/
|
|
@@ -6019,7 +5958,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6019
5958
|
* @response `200` `(CustomFieldDefinition)[]` OK
|
|
6020
5959
|
*/
|
|
6021
5960
|
getCustomFieldDefinitions: (query?: {
|
|
6022
|
-
entityType?:
|
|
5961
|
+
entityType?: "Loan";
|
|
6023
5962
|
}, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition[], any, {}>>;
|
|
6024
5963
|
/**
|
|
6025
5964
|
* No description
|
|
@@ -7526,10 +7465,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7526
7465
|
* @summary Download By ID
|
|
7527
7466
|
* @request GET:/api/loans/{loanId}/documents/{documentId}/download
|
|
7528
7467
|
* @secure
|
|
7529
|
-
* @response `200` `
|
|
7468
|
+
* @response `200` `string` OK
|
|
7530
7469
|
* @response `404` `ProblemDetails` Not Found
|
|
7531
7470
|
*/
|
|
7532
|
-
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
7471
|
+
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
7533
7472
|
/**
|
|
7534
7473
|
* No description
|
|
7535
7474
|
*
|
|
@@ -8732,7 +8671,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8732
8671
|
getPartners: (query?: {
|
|
8733
8672
|
showAll?: boolean;
|
|
8734
8673
|
/** @default "Realtor" */
|
|
8735
|
-
role?:
|
|
8674
|
+
role?: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
8736
8675
|
/** @format int32 */
|
|
8737
8676
|
pageSize?: number;
|
|
8738
8677
|
/** @format int32 */
|
|
@@ -8910,7 +8849,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8910
8849
|
* @response `200` `File` OK
|
|
8911
8850
|
* @response `404` `ProblemDetails` Not Found
|
|
8912
8851
|
*/
|
|
8913
|
-
getSamlMetadata: (sSoIntegration:
|
|
8852
|
+
getSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
8914
8853
|
/**
|
|
8915
8854
|
* No description
|
|
8916
8855
|
*
|
|
@@ -8921,7 +8860,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8921
8860
|
* @secure
|
|
8922
8861
|
* @response `200` `File` OK
|
|
8923
8862
|
*/
|
|
8924
|
-
createOrReplaceSamlMetadata: (sSoIntegration:
|
|
8863
|
+
createOrReplaceSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
8925
8864
|
/**
|
|
8926
8865
|
* No description
|
|
8927
8866
|
*
|