@matech/thebigpos-sdk 2.45.0-rc0 → 2.45.1-rc0
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/dist/index.d.ts +185 -108
- package/dist/index.js +180 -189
- package/dist/index.js.map +1 -1
- package/package.json +6 -5
- package/src/index.ts +987 -697
- package/tsconfig.json +27 -27
package/dist/index.d.ts
CHANGED
|
@@ -73,7 +73,7 @@ export type AuditChangeType = "Created" | "Modified" | "SoftDeleted" | "HardDele
|
|
|
73
73
|
export type AiUrlSourceScope = "FullDomain" | "SpecificPath";
|
|
74
74
|
export type AiUrlSourceCategory = "Regulatory" | "Guidelines" | "MarketData" | "Custom";
|
|
75
75
|
export type AiStructuredDataType = "Table" | "DocumentAnalysis" | "DocumentList" | "GeneratedDocument";
|
|
76
|
-
export type AiQueryTemplateName = "PipelineSummary" | "LoanDetail" | "LoansClosing" | "StaleLoans" | "LoansByType" | "LoansByOfficer" | "AverageLoanAmount" | "LockedVsUnlocked" | "LoansByPurpose" | "LoansByPropertyState" | "LoansByRate" | "DtiLtvRisk" | "DisclosureTracking" | "NewLoans" | "ExpiringLocks" | "ClosedLoans" | "VerificationGaps" | "CreditScoreDistribution" | "OccupancyMix" | "PropertyTypeMix" | "FirstTimeHomebuyer" | "SelfEmployed" | "ReferralSourcePerformance" | "AmortizationMix" | "TimeToClose" | "ConversionFunnel" | "MonthlyProduction" | "PaymentAffordability" | "DownPaymentCashToClose" | "ApprovalExpirations" | "ApplicationCompleteness" | "LosSyncHealth" | "DeclarationsRisk" | "MilitaryEligibility";
|
|
76
|
+
export type AiQueryTemplateName = "PipelineSummary" | "LoanDetail" | "LoansClosing" | "StaleLoans" | "LoansByType" | "LoansByOfficer" | "AverageLoanAmount" | "LockedVsUnlocked" | "LoansByPurpose" | "LoansByPropertyState" | "LoansByRate" | "DtiLtvRisk" | "DisclosureTracking" | "NewLoans" | "ExpiringLocks" | "ClosedLoans" | "VerificationGaps" | "CreditScoreDistribution" | "OccupancyMix" | "PropertyTypeMix" | "FirstTimeHomebuyer" | "SelfEmployed" | "ReferralSourcePerformance" | "AmortizationMix" | "TimeToClose" | "ConversionFunnel" | "MonthlyProduction" | "PaymentAffordability" | "DownPaymentCashToClose" | "ApprovalExpirations" | "ApplicationCompleteness" | "LosSyncHealth" | "DeclarationsRisk" | "MilitaryEligibility" | "OutstandingTasks" | "ConsentTracking";
|
|
77
77
|
export type AiPromptCategory = "DocumentAnalysis" | "DataQuery" | "General" | "Action";
|
|
78
78
|
export type AiOutputType = "Text" | "Document";
|
|
79
79
|
export type AiIntent = "Greeting" | "Invalid" | "Relevant" | "LoanSpecific" | "DocumentList" | "GeneralKnowledge" | "Blocked" | "Action" | "ConversationMeta" | "Capabilities" | "UsageReport";
|
|
@@ -132,7 +132,7 @@ export interface AccountBilling {
|
|
|
132
132
|
contractedRate: number;
|
|
133
133
|
}
|
|
134
134
|
export interface AccountBillingRequest {
|
|
135
|
-
billingType:
|
|
135
|
+
billingType: AccountBillingRequestBillingTypeEnum;
|
|
136
136
|
/** @format double */
|
|
137
137
|
contractedRate: number;
|
|
138
138
|
}
|
|
@@ -176,7 +176,7 @@ export interface Action {
|
|
|
176
176
|
comments?: string | null;
|
|
177
177
|
/** @format uuid */
|
|
178
178
|
siteConfigurationID: string;
|
|
179
|
-
applicationSettings?: any;
|
|
179
|
+
applicationSettings?: any | null;
|
|
180
180
|
surveysToken?: string | null;
|
|
181
181
|
}
|
|
182
182
|
export interface Address {
|
|
@@ -397,7 +397,7 @@ export interface AiAuditLog {
|
|
|
397
397
|
conversationId?: string | null;
|
|
398
398
|
/** @format uuid */
|
|
399
399
|
messageId?: string | null;
|
|
400
|
-
eventType:
|
|
400
|
+
eventType: AiAuditLogEventTypeEnum;
|
|
401
401
|
modelId?: string | null;
|
|
402
402
|
/** @format int32 */
|
|
403
403
|
inputTokens?: number | null;
|
|
@@ -410,7 +410,7 @@ export interface AiAuditLog {
|
|
|
410
410
|
guardrailCategory?: string | null;
|
|
411
411
|
rawRequest?: string | null;
|
|
412
412
|
rawResponse?: string | null;
|
|
413
|
-
details?: any;
|
|
413
|
+
details?: any | null;
|
|
414
414
|
/** @format date-time */
|
|
415
415
|
createdAt: string;
|
|
416
416
|
}
|
|
@@ -472,7 +472,7 @@ export interface AiChatMessagePaginated {
|
|
|
472
472
|
count: number;
|
|
473
473
|
}
|
|
474
474
|
export interface AiChatMetadata {
|
|
475
|
-
intent:
|
|
475
|
+
intent: AiChatMetadataIntentEnum;
|
|
476
476
|
fieldsAccessed: string[];
|
|
477
477
|
/** @format int64 */
|
|
478
478
|
queryTimeMs: number;
|
|
@@ -498,7 +498,7 @@ export interface AiChatRequest {
|
|
|
498
498
|
promptId?: string | null;
|
|
499
499
|
}
|
|
500
500
|
export interface AiChatStructuredData {
|
|
501
|
-
type:
|
|
501
|
+
type: AiChatStructuredDataTypeEnum;
|
|
502
502
|
displayHint?: AiDisplayHint | null;
|
|
503
503
|
detectedDocumentType?: string | null;
|
|
504
504
|
columns: string[];
|
|
@@ -514,12 +514,12 @@ export interface AiConfigChangeLog {
|
|
|
514
514
|
accountId?: string | null;
|
|
515
515
|
/** @format uuid */
|
|
516
516
|
actorUserId: string;
|
|
517
|
-
entityType:
|
|
517
|
+
entityType: AiConfigChangeLogEntityTypeEnum;
|
|
518
518
|
/** @format uuid */
|
|
519
519
|
entityId?: string | null;
|
|
520
|
-
action:
|
|
521
|
-
before?: any;
|
|
522
|
-
after?: any;
|
|
520
|
+
action: AiConfigChangeLogActionEnum;
|
|
521
|
+
before?: any | null;
|
|
522
|
+
after?: any | null;
|
|
523
523
|
/** @format date-time */
|
|
524
524
|
createdAt: string;
|
|
525
525
|
}
|
|
@@ -593,7 +593,7 @@ export interface AiGuardrail {
|
|
|
593
593
|
/** @format uuid */
|
|
594
594
|
id: string;
|
|
595
595
|
name: string;
|
|
596
|
-
category:
|
|
596
|
+
category: AiGuardrailCategoryEnum;
|
|
597
597
|
description?: string | null;
|
|
598
598
|
keywords: string[];
|
|
599
599
|
responseTemplate: string;
|
|
@@ -699,8 +699,8 @@ export interface AiUrlSource {
|
|
|
699
699
|
name: string;
|
|
700
700
|
url: string;
|
|
701
701
|
description?: string | null;
|
|
702
|
-
category:
|
|
703
|
-
scope:
|
|
702
|
+
category: AiUrlSourceCategoryEnum;
|
|
703
|
+
scope: AiUrlSourceScopeEnum;
|
|
704
704
|
isActive: boolean;
|
|
705
705
|
isDefault: boolean;
|
|
706
706
|
hasAccountOverride: boolean;
|
|
@@ -811,14 +811,14 @@ export interface AuditLogEntry {
|
|
|
811
811
|
/** @format uuid */
|
|
812
812
|
id: string;
|
|
813
813
|
entityType: string;
|
|
814
|
-
changeType:
|
|
814
|
+
changeType: AuditLogEntryChangeTypeEnum;
|
|
815
815
|
/** @format uuid */
|
|
816
816
|
entityId: string;
|
|
817
817
|
performedBy?: AuditLogUser | null;
|
|
818
818
|
rootEntityType?: string | null;
|
|
819
819
|
/** @format uuid */
|
|
820
820
|
rootEntityId?: string | null;
|
|
821
|
-
changes?: any;
|
|
821
|
+
changes?: any | null;
|
|
822
822
|
/** @format date-time */
|
|
823
823
|
createdAt: string;
|
|
824
824
|
}
|
|
@@ -858,7 +858,7 @@ export interface BorrowerCount {
|
|
|
858
858
|
firstName: string;
|
|
859
859
|
lastName: string;
|
|
860
860
|
email: string;
|
|
861
|
-
role:
|
|
861
|
+
role: BorrowerCountRoleEnum;
|
|
862
862
|
/** @format int32 */
|
|
863
863
|
count: number;
|
|
864
864
|
}
|
|
@@ -868,7 +868,7 @@ export interface BorrowerIdentity {
|
|
|
868
868
|
firstName: string;
|
|
869
869
|
lastName: string;
|
|
870
870
|
email: string;
|
|
871
|
-
role:
|
|
871
|
+
role: BorrowerIdentityRoleEnum;
|
|
872
872
|
}
|
|
873
873
|
export interface BorrowersNotUsingPosSummary {
|
|
874
874
|
/** @format int32 */
|
|
@@ -1102,7 +1102,7 @@ export interface CorporateSearchCriteria {
|
|
|
1102
1102
|
isActive?: boolean | null;
|
|
1103
1103
|
}
|
|
1104
1104
|
export interface CreateAccessScopeRequest {
|
|
1105
|
-
scopeType:
|
|
1105
|
+
scopeType: CreateAccessScopeRequestScopeTypeEnum;
|
|
1106
1106
|
/** @format uuid */
|
|
1107
1107
|
userId?: string | null;
|
|
1108
1108
|
/** @format uuid */
|
|
@@ -1120,7 +1120,7 @@ export interface CreateAccountRequest {
|
|
|
1120
1120
|
/** @format int64 */
|
|
1121
1121
|
nlmsid: number;
|
|
1122
1122
|
settings: AccountSettingsRequest;
|
|
1123
|
-
environment:
|
|
1123
|
+
environment: CreateAccountRequestEnvironmentEnum;
|
|
1124
1124
|
losIntegration: LOSIntegration;
|
|
1125
1125
|
billingSettings: AccountBillingRequest;
|
|
1126
1126
|
}
|
|
@@ -1134,7 +1134,7 @@ export interface CreateAiCanonicalFieldRequest {
|
|
|
1134
1134
|
}
|
|
1135
1135
|
export interface CreateAiGuardrailRequest {
|
|
1136
1136
|
name: string;
|
|
1137
|
-
category:
|
|
1137
|
+
category: CreateAiGuardrailRequestCategoryEnum;
|
|
1138
1138
|
description?: string | null;
|
|
1139
1139
|
keywords: string[];
|
|
1140
1140
|
responseTemplate: string;
|
|
@@ -1160,8 +1160,8 @@ export interface CreateAiUrlSourceRequest {
|
|
|
1160
1160
|
name: string;
|
|
1161
1161
|
url: string;
|
|
1162
1162
|
description?: string | null;
|
|
1163
|
-
category:
|
|
1164
|
-
scope:
|
|
1163
|
+
category: CreateAiUrlSourceRequestCategoryEnum;
|
|
1164
|
+
scope: CreateAiUrlSourceRequestScopeEnum;
|
|
1165
1165
|
}
|
|
1166
1166
|
export interface CreateBranchRequest {
|
|
1167
1167
|
name: string;
|
|
@@ -1184,8 +1184,8 @@ export interface CreateCustomFieldDefinitionRequest {
|
|
|
1184
1184
|
name: string;
|
|
1185
1185
|
defaultValue?: string | null;
|
|
1186
1186
|
regexPattern?: string | null;
|
|
1187
|
-
dataType:
|
|
1188
|
-
entityType:
|
|
1187
|
+
dataType: CreateCustomFieldDefinitionRequestDataTypeEnum;
|
|
1188
|
+
entityType: CreateCustomFieldDefinitionRequestEntityTypeEnum;
|
|
1189
1189
|
options?: CustomFieldOptionRequest[] | null;
|
|
1190
1190
|
permissions?: CustomFieldPermissionRequest[] | null;
|
|
1191
1191
|
}
|
|
@@ -1200,7 +1200,7 @@ export interface CreateDocumentTemplateRequest {
|
|
|
1200
1200
|
export interface CreateGroupMemberRequest {
|
|
1201
1201
|
/** @format uuid */
|
|
1202
1202
|
userId: string;
|
|
1203
|
-
loanRole:
|
|
1203
|
+
loanRole: CreateGroupMemberRequestLoanRoleEnum;
|
|
1204
1204
|
}
|
|
1205
1205
|
export interface CreateInviteRequest {
|
|
1206
1206
|
firstName: string;
|
|
@@ -1208,7 +1208,7 @@ export interface CreateInviteRequest {
|
|
|
1208
1208
|
emailAddress: string;
|
|
1209
1209
|
phoneNumber?: string | null;
|
|
1210
1210
|
/** @deprecated */
|
|
1211
|
-
relationship:
|
|
1211
|
+
relationship: CreateInviteRequestRelationshipEnum;
|
|
1212
1212
|
loanID: string;
|
|
1213
1213
|
route?: string | null;
|
|
1214
1214
|
/** @format uuid */
|
|
@@ -1228,7 +1228,7 @@ export interface CreateLoanImportRequest {
|
|
|
1228
1228
|
endDate: string;
|
|
1229
1229
|
/** @format date-time */
|
|
1230
1230
|
startDate: string;
|
|
1231
|
-
importMode:
|
|
1231
|
+
importMode: CreateLoanImportRequestImportModeEnum;
|
|
1232
1232
|
}
|
|
1233
1233
|
export interface CreateSession {
|
|
1234
1234
|
sessionId: string;
|
|
@@ -1246,7 +1246,7 @@ export interface CreateUserDeviceRequest {
|
|
|
1246
1246
|
token: string;
|
|
1247
1247
|
}
|
|
1248
1248
|
export interface CreateUserDraft {
|
|
1249
|
-
loanRole:
|
|
1249
|
+
loanRole: CreateUserDraftLoanRoleEnum;
|
|
1250
1250
|
}
|
|
1251
1251
|
export interface CreateUserGroupRequest {
|
|
1252
1252
|
name: string;
|
|
@@ -1307,8 +1307,8 @@ export interface CustomFieldDefinition {
|
|
|
1307
1307
|
name: string;
|
|
1308
1308
|
defaultValue?: string | null;
|
|
1309
1309
|
regexPattern?: string | null;
|
|
1310
|
-
dataType:
|
|
1311
|
-
entityType:
|
|
1310
|
+
dataType: CustomFieldDefinitionDataTypeEnum;
|
|
1311
|
+
entityType: CustomFieldDefinitionEntityTypeEnum;
|
|
1312
1312
|
options: CustomFieldOption[];
|
|
1313
1313
|
permissions: CustomFieldPermission[];
|
|
1314
1314
|
encompassMapping?: EncompassMapping | null;
|
|
@@ -1322,7 +1322,7 @@ export interface CustomFieldEntry {
|
|
|
1322
1322
|
displayOrder: number;
|
|
1323
1323
|
name: string;
|
|
1324
1324
|
value: string;
|
|
1325
|
-
dataType:
|
|
1325
|
+
dataType: CustomFieldEntryDataTypeEnum;
|
|
1326
1326
|
}
|
|
1327
1327
|
export interface CustomFieldOption {
|
|
1328
1328
|
/** @format uuid */
|
|
@@ -1339,12 +1339,12 @@ export interface CustomFieldOptionRequest {
|
|
|
1339
1339
|
export interface CustomFieldPermission {
|
|
1340
1340
|
/** @format uuid */
|
|
1341
1341
|
id: string;
|
|
1342
|
-
role:
|
|
1343
|
-
accessLevel:
|
|
1342
|
+
role: CustomFieldPermissionRoleEnum;
|
|
1343
|
+
accessLevel: CustomFieldPermissionAccessLevelEnum;
|
|
1344
1344
|
}
|
|
1345
1345
|
export interface CustomFieldPermissionRequest {
|
|
1346
|
-
role:
|
|
1347
|
-
accessLevel:
|
|
1346
|
+
role: CustomFieldPermissionRequestRoleEnum;
|
|
1347
|
+
accessLevel: CustomFieldPermissionRequestAccessLevelEnum;
|
|
1348
1348
|
}
|
|
1349
1349
|
export interface CustomFieldValue {
|
|
1350
1350
|
/** @format uuid */
|
|
@@ -1355,7 +1355,7 @@ export interface CustomFieldValue {
|
|
|
1355
1355
|
customFieldDefinitionID: string;
|
|
1356
1356
|
value: string;
|
|
1357
1357
|
definitionName: string;
|
|
1358
|
-
dataType:
|
|
1358
|
+
dataType: CustomFieldValueDataTypeEnum;
|
|
1359
1359
|
}
|
|
1360
1360
|
export interface DetailedUser {
|
|
1361
1361
|
/** @format date-time */
|
|
@@ -1593,7 +1593,7 @@ export interface Draft {
|
|
|
1593
1593
|
siteConfiguration: SiteConfigurationReduced;
|
|
1594
1594
|
/** @format uuid */
|
|
1595
1595
|
loanID?: string | null;
|
|
1596
|
-
type:
|
|
1596
|
+
type: DraftTypeEnum;
|
|
1597
1597
|
isCoBorrower: boolean;
|
|
1598
1598
|
}
|
|
1599
1599
|
export interface DraftContent {
|
|
@@ -1611,7 +1611,7 @@ export interface DraftContent {
|
|
|
1611
1611
|
siteConfiguration: SiteConfigurationReduced;
|
|
1612
1612
|
/** @format uuid */
|
|
1613
1613
|
loanID?: string | null;
|
|
1614
|
-
type:
|
|
1614
|
+
type: DraftContentTypeEnum;
|
|
1615
1615
|
isCoBorrower: boolean;
|
|
1616
1616
|
applicationPayload: any;
|
|
1617
1617
|
}
|
|
@@ -1627,7 +1627,7 @@ export interface DraftLoanOfficerReassignRequest {
|
|
|
1627
1627
|
}
|
|
1628
1628
|
export interface DraftRequest {
|
|
1629
1629
|
applicationPayload: any;
|
|
1630
|
-
customData?: any;
|
|
1630
|
+
customData?: any | null;
|
|
1631
1631
|
isCoBorrower: boolean;
|
|
1632
1632
|
}
|
|
1633
1633
|
export interface EconsentPendingSummary {
|
|
@@ -1701,9 +1701,9 @@ export interface EncompassCredentialsDetail {
|
|
|
1701
1701
|
clearStateIfUnlicensed: boolean;
|
|
1702
1702
|
/** @deprecated */
|
|
1703
1703
|
baseUrl?: string | null;
|
|
1704
|
-
encompassEnvironment:
|
|
1704
|
+
encompassEnvironment: EncompassCredentialsDetailEncompassEnvironmentEnum;
|
|
1705
1705
|
consumerConnectWidgetHost?: string | null;
|
|
1706
|
-
signingMethod:
|
|
1706
|
+
signingMethod: EncompassCredentialsDetailSigningMethodEnum;
|
|
1707
1707
|
subscriptionId?: string | null;
|
|
1708
1708
|
environment?: string | null;
|
|
1709
1709
|
}
|
|
@@ -1719,9 +1719,9 @@ export interface EncompassCredentialsRequest {
|
|
|
1719
1719
|
clearStateIfUnlicensed: boolean;
|
|
1720
1720
|
/** @deprecated */
|
|
1721
1721
|
baseUrl?: string | null;
|
|
1722
|
-
encompassEnvironment:
|
|
1722
|
+
encompassEnvironment: EncompassCredentialsRequestEncompassEnvironmentEnum;
|
|
1723
1723
|
consumerConnectWidgetHost?: string | null;
|
|
1724
|
-
signingMethod:
|
|
1724
|
+
signingMethod: EncompassCredentialsRequestSigningMethodEnum;
|
|
1725
1725
|
subscriptionId?: string | null;
|
|
1726
1726
|
environment?: string | null;
|
|
1727
1727
|
clientID?: string | null;
|
|
@@ -1830,8 +1830,8 @@ export interface EncompassRequestLog {
|
|
|
1830
1830
|
losId?: string | null;
|
|
1831
1831
|
/** @format uuid */
|
|
1832
1832
|
accountId: string;
|
|
1833
|
-
operationType:
|
|
1834
|
-
outcome:
|
|
1833
|
+
operationType: EncompassRequestLogOperationTypeEnum;
|
|
1834
|
+
outcome: EncompassRequestLogOutcomeEnum;
|
|
1835
1835
|
message: string;
|
|
1836
1836
|
endpoint?: string | null;
|
|
1837
1837
|
httpMethod?: string | null;
|
|
@@ -1839,7 +1839,7 @@ export interface EncompassRequestLog {
|
|
|
1839
1839
|
httpStatusCode?: number | null;
|
|
1840
1840
|
/** @format int64 */
|
|
1841
1841
|
durationMs?: number | null;
|
|
1842
|
-
context?: any;
|
|
1842
|
+
context?: any | null;
|
|
1843
1843
|
/** @format date-time */
|
|
1844
1844
|
createdAt: string;
|
|
1845
1845
|
}
|
|
@@ -1878,7 +1878,7 @@ export interface FileSearchCriteria {
|
|
|
1878
1878
|
export interface FileWithBytes {
|
|
1879
1879
|
name: string;
|
|
1880
1880
|
/** @format byte */
|
|
1881
|
-
data:
|
|
1881
|
+
data: Blob;
|
|
1882
1882
|
fileName: string;
|
|
1883
1883
|
mimeType?: string | null;
|
|
1884
1884
|
extension?: string | null;
|
|
@@ -1954,7 +1954,7 @@ export interface FormSubmission {
|
|
|
1954
1954
|
subjectPropertyAddressCounty?: string | null;
|
|
1955
1955
|
subjectPropertyAddressState?: string | null;
|
|
1956
1956
|
subjectPropertyAddressZip?: string | null;
|
|
1957
|
-
data?: any;
|
|
1957
|
+
data?: any | null;
|
|
1958
1958
|
/** @format uuid */
|
|
1959
1959
|
listingID?: string | null;
|
|
1960
1960
|
listing?: Listing | null;
|
|
@@ -1989,7 +1989,7 @@ export interface FormSubmissionRequest {
|
|
|
1989
1989
|
subjectPropertyAddressCounty?: string | null;
|
|
1990
1990
|
subjectPropertyAddressState?: string | null;
|
|
1991
1991
|
subjectPropertyAddressZip?: string | null;
|
|
1992
|
-
data?: any;
|
|
1992
|
+
data?: any | null;
|
|
1993
1993
|
/** @format uuid */
|
|
1994
1994
|
listingID?: string | null;
|
|
1995
1995
|
}
|
|
@@ -2038,7 +2038,7 @@ export interface FusionFieldDisplay {
|
|
|
2038
2038
|
fieldValue: string;
|
|
2039
2039
|
}
|
|
2040
2040
|
export interface FusionReportFilter {
|
|
2041
|
-
filterType:
|
|
2041
|
+
filterType: FusionReportFilterFilterTypeEnum;
|
|
2042
2042
|
targetField: string;
|
|
2043
2043
|
targetValue: string;
|
|
2044
2044
|
}
|
|
@@ -2060,7 +2060,7 @@ export interface GenerateSystemPrompt {
|
|
|
2060
2060
|
}
|
|
2061
2061
|
export interface GenerateSystemPromptRequest {
|
|
2062
2062
|
description: string;
|
|
2063
|
-
category:
|
|
2063
|
+
category: GenerateSystemPromptRequestCategoryEnum;
|
|
2064
2064
|
}
|
|
2065
2065
|
export interface GetApplications {
|
|
2066
2066
|
applications: ApplicationRowData[];
|
|
@@ -2144,11 +2144,11 @@ export interface GetWorkflowRequest {
|
|
|
2144
2144
|
export interface GuidPatchOperation {
|
|
2145
2145
|
op: string;
|
|
2146
2146
|
path: string;
|
|
2147
|
-
value?: any;
|
|
2147
|
+
value?: any | null;
|
|
2148
2148
|
from?: string | null;
|
|
2149
2149
|
}
|
|
2150
2150
|
export interface IPAddress {
|
|
2151
|
-
addressFamily:
|
|
2151
|
+
addressFamily: IpAddressAddressFamilyEnum;
|
|
2152
2152
|
/** @format int64 */
|
|
2153
2153
|
scopeId: number;
|
|
2154
2154
|
isIPv6Multicast: boolean;
|
|
@@ -2395,7 +2395,7 @@ export interface Loan {
|
|
|
2395
2395
|
contacts: LoanContact[];
|
|
2396
2396
|
customFields: CustomFieldEntry[];
|
|
2397
2397
|
milestones: LoanMilestone[];
|
|
2398
|
-
signingMethod:
|
|
2398
|
+
signingMethod: LoanSigningMethodEnum;
|
|
2399
2399
|
}
|
|
2400
2400
|
export interface LoanApplication {
|
|
2401
2401
|
/** @format uuid */
|
|
@@ -2431,7 +2431,7 @@ export interface LoanApplicationRequest {
|
|
|
2431
2431
|
nonOwningBorrowers: LoanNonOwningBorrowerRequest[];
|
|
2432
2432
|
/** @format uuid */
|
|
2433
2433
|
draftId?: string | null;
|
|
2434
|
-
additionalFields?: Record<string, any
|
|
2434
|
+
additionalFields?: Record<string, any> | null;
|
|
2435
2435
|
/** @format uuid */
|
|
2436
2436
|
existingLoanId?: string | null;
|
|
2437
2437
|
}
|
|
@@ -2450,7 +2450,7 @@ export interface LoanBorrower {
|
|
|
2450
2450
|
citizenship?: LoanCitizenship | null;
|
|
2451
2451
|
maritalStatus?: LoanMaritalStatus | null;
|
|
2452
2452
|
languagePreference?: LoanLanguagePreference | null;
|
|
2453
|
-
applicationStatus:
|
|
2453
|
+
applicationStatus: LoanBorrowerApplicationStatusEnum;
|
|
2454
2454
|
/** @format int32 */
|
|
2455
2455
|
numberOfDependents?: number | null;
|
|
2456
2456
|
isPrimaryBorrower: boolean;
|
|
@@ -3152,7 +3152,7 @@ export interface LoanConsentRequest {
|
|
|
3152
3152
|
borrowerEConsent?: boolean | null;
|
|
3153
3153
|
borrowerCreditAuth?: boolean | null;
|
|
3154
3154
|
borrowerTCPAOptIn?: boolean | null;
|
|
3155
|
-
additionalFields?: Record<string, string
|
|
3155
|
+
additionalFields?: Record<string, string> | null;
|
|
3156
3156
|
}
|
|
3157
3157
|
export interface LoanContact {
|
|
3158
3158
|
/** @format date-time */
|
|
@@ -3170,13 +3170,13 @@ export interface LoanContact {
|
|
|
3170
3170
|
email?: string | null;
|
|
3171
3171
|
phone?: string | null;
|
|
3172
3172
|
companyName?: string | null;
|
|
3173
|
-
role:
|
|
3173
|
+
role: LoanContactRoleEnum;
|
|
3174
3174
|
}
|
|
3175
3175
|
export interface LoanContactList {
|
|
3176
3176
|
email: string;
|
|
3177
3177
|
}
|
|
3178
3178
|
export interface LoanCustomFieldsRequest {
|
|
3179
|
-
additionalFields?: Record<string, string
|
|
3179
|
+
additionalFields?: Record<string, string> | null;
|
|
3180
3180
|
}
|
|
3181
3181
|
export interface LoanDocument {
|
|
3182
3182
|
/** @format date-time */
|
|
@@ -3226,12 +3226,12 @@ export interface LoanDocumentFolderPermission {
|
|
|
3226
3226
|
id: string;
|
|
3227
3227
|
/** @format uuid */
|
|
3228
3228
|
loanDocumentFolderID: string;
|
|
3229
|
-
role:
|
|
3230
|
-
level:
|
|
3229
|
+
role: LoanDocumentFolderPermissionRoleEnum;
|
|
3230
|
+
level: LoanDocumentFolderPermissionLevelEnum;
|
|
3231
3231
|
}
|
|
3232
3232
|
export interface LoanDocumentFolderPermissionRequest {
|
|
3233
|
-
role:
|
|
3234
|
-
level:
|
|
3233
|
+
role: LoanDocumentFolderPermissionRequestRoleEnum;
|
|
3234
|
+
level: LoanDocumentFolderPermissionRequestLevelEnum;
|
|
3235
3235
|
}
|
|
3236
3236
|
export interface LoanDocumentFolderUsage {
|
|
3237
3237
|
/** @format uuid */
|
|
@@ -3347,13 +3347,13 @@ export interface LoanImport {
|
|
|
3347
3347
|
/** @format int32 */
|
|
3348
3348
|
importedCount: number;
|
|
3349
3349
|
statusMessage?: string | null;
|
|
3350
|
-
status:
|
|
3351
|
-
importMode:
|
|
3350
|
+
status: LoanImportStatusEnum;
|
|
3351
|
+
importMode: LoanImportImportModeEnum;
|
|
3352
3352
|
/** @format date-time */
|
|
3353
3353
|
createdAt?: string | null;
|
|
3354
3354
|
}
|
|
3355
3355
|
export interface LoanImportLog {
|
|
3356
|
-
level:
|
|
3356
|
+
level: LoanImportLogLevelEnum;
|
|
3357
3357
|
message: string;
|
|
3358
3358
|
/** @format date-time */
|
|
3359
3359
|
createdAt: string;
|
|
@@ -3408,8 +3408,8 @@ export interface LoanListPaginated {
|
|
|
3408
3408
|
export interface LoanLog {
|
|
3409
3409
|
/** @format uuid */
|
|
3410
3410
|
id: string;
|
|
3411
|
-
level:
|
|
3412
|
-
type:
|
|
3411
|
+
level: LoanLogLevelEnum;
|
|
3412
|
+
type: LoanLogTypeEnum;
|
|
3413
3413
|
message: string;
|
|
3414
3414
|
/** @format date-time */
|
|
3415
3415
|
createdAt: string;
|
|
@@ -3417,8 +3417,8 @@ export interface LoanLog {
|
|
|
3417
3417
|
export interface LoanLogDetail {
|
|
3418
3418
|
/** @format uuid */
|
|
3419
3419
|
id: string;
|
|
3420
|
-
level:
|
|
3421
|
-
type:
|
|
3420
|
+
level: LoanLogDetailLevelEnum;
|
|
3421
|
+
type: LoanLogDetailTypeEnum;
|
|
3422
3422
|
message: string;
|
|
3423
3423
|
/** @format date-time */
|
|
3424
3424
|
createdAt: string;
|
|
@@ -3652,7 +3652,7 @@ export interface LoanQueueWithData {
|
|
|
3652
3652
|
user: UserPublic;
|
|
3653
3653
|
loanOfficer: LoanOfficerPublic;
|
|
3654
3654
|
siteConfiguration: SiteConfigurationReduced;
|
|
3655
|
-
data?: any;
|
|
3655
|
+
data?: any | null;
|
|
3656
3656
|
}
|
|
3657
3657
|
export interface LoanRecord {
|
|
3658
3658
|
loanGuid: string;
|
|
@@ -3683,7 +3683,7 @@ export interface LoanTaskSearchRequest {
|
|
|
3683
3683
|
loanStatus?: LoanTaskActivityFilter | null;
|
|
3684
3684
|
}
|
|
3685
3685
|
export interface LoanTaskStatusSummary {
|
|
3686
|
-
status:
|
|
3686
|
+
status: LoanTaskStatusSummaryStatusEnum;
|
|
3687
3687
|
/** @format int32 */
|
|
3688
3688
|
count: number;
|
|
3689
3689
|
}
|
|
@@ -3695,7 +3695,7 @@ export interface LoanUser {
|
|
|
3695
3695
|
email: string;
|
|
3696
3696
|
phone?: string | null;
|
|
3697
3697
|
role: string;
|
|
3698
|
-
loanRole:
|
|
3698
|
+
loanRole: LoanUserLoanRoleEnum;
|
|
3699
3699
|
isUser: boolean;
|
|
3700
3700
|
/** @format date-time */
|
|
3701
3701
|
createdAt: string;
|
|
@@ -3728,7 +3728,7 @@ export interface LosOperationTracking {
|
|
|
3728
3728
|
operationType: string;
|
|
3729
3729
|
correlationKey: string;
|
|
3730
3730
|
lastTriggerSource?: string | null;
|
|
3731
|
-
status:
|
|
3731
|
+
status: LosOperationTrackingStatusEnum;
|
|
3732
3732
|
/** @format date-time */
|
|
3733
3733
|
createdAt: string;
|
|
3734
3734
|
/** @format date-time */
|
|
@@ -3789,7 +3789,7 @@ export interface LosSyncStep {
|
|
|
3789
3789
|
/** @format int32 */
|
|
3790
3790
|
order: number;
|
|
3791
3791
|
name: string;
|
|
3792
|
-
severity:
|
|
3792
|
+
severity: LosSyncStepSeverityEnum;
|
|
3793
3793
|
message: string;
|
|
3794
3794
|
/** @format date-time */
|
|
3795
3795
|
atUtc: string;
|
|
@@ -3803,7 +3803,7 @@ export interface LosWebhook {
|
|
|
3803
3803
|
enableSubscription: boolean;
|
|
3804
3804
|
}
|
|
3805
3805
|
export interface ManualDocumentClassificationRequest {
|
|
3806
|
-
documentType:
|
|
3806
|
+
documentType: ManualDocumentClassificationRequestDocumentTypeEnum;
|
|
3807
3807
|
}
|
|
3808
3808
|
export interface MdmUser {
|
|
3809
3809
|
user_email?: string | null;
|
|
@@ -3882,7 +3882,7 @@ export interface ModuleParameterValue {
|
|
|
3882
3882
|
parameterID: string;
|
|
3883
3883
|
parameterName: string;
|
|
3884
3884
|
parameterType: string;
|
|
3885
|
-
value?: any;
|
|
3885
|
+
value?: any | null;
|
|
3886
3886
|
isInherited: boolean;
|
|
3887
3887
|
}
|
|
3888
3888
|
export interface MonthlyPaymentCalculator {
|
|
@@ -4055,7 +4055,7 @@ export interface NotificationTemplateVersionUpdateRequest {
|
|
|
4055
4055
|
}
|
|
4056
4056
|
export interface Operation {
|
|
4057
4057
|
op?: string;
|
|
4058
|
-
value?:
|
|
4058
|
+
value?: object | null;
|
|
4059
4059
|
path?: string;
|
|
4060
4060
|
}
|
|
4061
4061
|
export interface OverridePasswordRequest {
|
|
@@ -4385,7 +4385,7 @@ export interface SiteConfiguration {
|
|
|
4385
4385
|
deletedAt?: string | null;
|
|
4386
4386
|
/** @format uuid */
|
|
4387
4387
|
id: string;
|
|
4388
|
-
type:
|
|
4388
|
+
type: SiteConfigurationTypeEnum;
|
|
4389
4389
|
/** @format uuid */
|
|
4390
4390
|
entityID: string;
|
|
4391
4391
|
/** @format int32 */
|
|
@@ -4578,7 +4578,7 @@ export interface SiteConfigurationByUrl {
|
|
|
4578
4578
|
deletedAt?: string | null;
|
|
4579
4579
|
/** @format uuid */
|
|
4580
4580
|
id: string;
|
|
4581
|
-
type:
|
|
4581
|
+
type: SiteConfigurationByUrlTypeEnum;
|
|
4582
4582
|
/** @format uuid */
|
|
4583
4583
|
entityID: string;
|
|
4584
4584
|
/** @format int32 */
|
|
@@ -4788,7 +4788,7 @@ export interface SiteConfigurationForm {
|
|
|
4788
4788
|
export interface SiteConfigurationReduced {
|
|
4789
4789
|
/** @format uuid */
|
|
4790
4790
|
id: string;
|
|
4791
|
-
type:
|
|
4791
|
+
type: SiteConfigurationReducedTypeEnum;
|
|
4792
4792
|
url?: string | null;
|
|
4793
4793
|
name: string;
|
|
4794
4794
|
/** @format int64 */
|
|
@@ -4805,7 +4805,7 @@ export interface SiteConfigurationRequest {
|
|
|
4805
4805
|
entityID: string;
|
|
4806
4806
|
/** @format int32 */
|
|
4807
4807
|
entityType: number;
|
|
4808
|
-
type:
|
|
4808
|
+
type: SiteConfigurationRequestTypeEnum;
|
|
4809
4809
|
url: string;
|
|
4810
4810
|
name: string;
|
|
4811
4811
|
introduction?: string | null;
|
|
@@ -4980,7 +4980,7 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
4980
4980
|
export interface SiteConfigurationSummary {
|
|
4981
4981
|
/** @format uuid */
|
|
4982
4982
|
id: string;
|
|
4983
|
-
type:
|
|
4983
|
+
type: SiteConfigurationSummaryTypeEnum;
|
|
4984
4984
|
url?: string | null;
|
|
4985
4985
|
name: string;
|
|
4986
4986
|
/** @format int64 */
|
|
@@ -5243,7 +5243,7 @@ export interface UnregisteredBorrower {
|
|
|
5243
5243
|
lastName?: string | null;
|
|
5244
5244
|
fullName?: string | null;
|
|
5245
5245
|
email?: string | null;
|
|
5246
|
-
role:
|
|
5246
|
+
role: UnregisteredBorrowerRoleEnum;
|
|
5247
5247
|
}
|
|
5248
5248
|
export interface UpdateAccountRequest {
|
|
5249
5249
|
name: string;
|
|
@@ -5267,7 +5267,7 @@ export interface UpdateAiCanonicalFieldRequest {
|
|
|
5267
5267
|
}
|
|
5268
5268
|
export interface UpdateAiGuardrailRequest {
|
|
5269
5269
|
name: string;
|
|
5270
|
-
category:
|
|
5270
|
+
category: UpdateAiGuardrailRequestCategoryEnum;
|
|
5271
5271
|
description?: string | null;
|
|
5272
5272
|
keywords: string[];
|
|
5273
5273
|
responseTemplate: string;
|
|
@@ -5292,8 +5292,8 @@ export interface UpdateAiUrlSourceRequest {
|
|
|
5292
5292
|
name: string;
|
|
5293
5293
|
url: string;
|
|
5294
5294
|
description?: string | null;
|
|
5295
|
-
category:
|
|
5296
|
-
scope:
|
|
5295
|
+
category: UpdateAiUrlSourceRequestCategoryEnum;
|
|
5296
|
+
scope: UpdateAiUrlSourceRequestScopeEnum;
|
|
5297
5297
|
}
|
|
5298
5298
|
export interface UpdateCustomFieldDefinitionRequest {
|
|
5299
5299
|
isRequired: boolean;
|
|
@@ -5580,7 +5580,7 @@ export interface UserDevice {
|
|
|
5580
5580
|
export interface UserDraft {
|
|
5581
5581
|
/** @format uuid */
|
|
5582
5582
|
draftID: string;
|
|
5583
|
-
role:
|
|
5583
|
+
role: UserDraftRoleEnum;
|
|
5584
5584
|
user: User;
|
|
5585
5585
|
}
|
|
5586
5586
|
export interface UserDraftPaginated {
|
|
@@ -5604,7 +5604,7 @@ export interface UserGroupAccessScope {
|
|
|
5604
5604
|
id: string;
|
|
5605
5605
|
/** @format uuid */
|
|
5606
5606
|
groupId: string;
|
|
5607
|
-
scopeType:
|
|
5607
|
+
scopeType: UserGroupAccessScopeScopeTypeEnum;
|
|
5608
5608
|
/** @format uuid */
|
|
5609
5609
|
userId?: string | null;
|
|
5610
5610
|
/** @format uuid */
|
|
@@ -5637,7 +5637,7 @@ export interface UserLoan {
|
|
|
5637
5637
|
deletedAt?: string | null;
|
|
5638
5638
|
loanID: string;
|
|
5639
5639
|
user: User;
|
|
5640
|
-
role:
|
|
5640
|
+
role: UserLoanRoleEnum;
|
|
5641
5641
|
/** @format int32 */
|
|
5642
5642
|
borrowerPair?: number | null;
|
|
5643
5643
|
/** @format int32 */
|
|
@@ -5649,11 +5649,11 @@ export interface UserLoanConsent {
|
|
|
5649
5649
|
id: string;
|
|
5650
5650
|
/** @format uuid */
|
|
5651
5651
|
userLoanID: string;
|
|
5652
|
-
type:
|
|
5652
|
+
type: UserLoanConsentTypeEnum;
|
|
5653
5653
|
providedConsent: boolean;
|
|
5654
5654
|
source?: ConsentSource | null;
|
|
5655
5655
|
ipAddress?: string | null;
|
|
5656
|
-
losSyncStatus:
|
|
5656
|
+
losSyncStatus: UserLoanConsentLosSyncStatusEnum;
|
|
5657
5657
|
/** @format date-time */
|
|
5658
5658
|
createdAt: string;
|
|
5659
5659
|
/** @format date-time */
|
|
@@ -5783,7 +5783,7 @@ export interface UserSummary {
|
|
|
5783
5783
|
id: string;
|
|
5784
5784
|
name?: string | null;
|
|
5785
5785
|
email?: string | null;
|
|
5786
|
-
role:
|
|
5786
|
+
role: UserSummaryRoleEnum;
|
|
5787
5787
|
}
|
|
5788
5788
|
export interface VerifyPasswordRequest {
|
|
5789
5789
|
email: string;
|
|
@@ -5810,6 +5810,90 @@ export interface Workflow {
|
|
|
5810
5810
|
tileSubtitle: string;
|
|
5811
5811
|
icon: string;
|
|
5812
5812
|
}
|
|
5813
|
+
export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
|
|
5814
|
+
export type AiAuditLogEventTypeEnum = "Error" | "GuardrailBlockedPre" | "GuardrailPassedPre" | "IntentClassified" | "LoanResolvedFromMessage" | "DocumentNotFound" | "GuardrailBlockedPost" | "GuardrailPassedPost" | "DocumentAnalyzed" | "DocumentList" | "DocumentResolutionAmbiguous" | "ResponseGenerated" | "ParametersExtracted" | "QueryExecuted" | "LoanContextNotFound" | "LoanContextLoaded" | "GuardrailBlockedBedrock" | "PromptMatched" | "QueryCondensed" | "IntentParseFailed" | "LoanSearchTermDiscarded" | "CanonicalFieldsSelected";
|
|
5815
|
+
export type AiChatMetadataIntentEnum = "Greeting" | "Invalid" | "Relevant" | "LoanSpecific" | "DocumentList" | "GeneralKnowledge" | "Blocked" | "Action" | "ConversationMeta" | "Capabilities" | "UsageReport";
|
|
5816
|
+
export type AiChatStructuredDataTypeEnum = "Table" | "DocumentAnalysis" | "DocumentList" | "GeneratedDocument";
|
|
5817
|
+
export type AiConfigChangeLogEntityTypeEnum = "Prompt" | "Guardrail" | "CanonicalField" | "UrlSource" | "AdminSettings" | "AccountTokenSettings" | "AccountSettings";
|
|
5818
|
+
export type AiConfigChangeLogActionEnum = "Created" | "Updated" | "Deleted" | "Toggled";
|
|
5819
|
+
export type AiGuardrailCategoryEnum = "ContentSafety" | "PromptInjection" | "Privacy" | "Legal";
|
|
5820
|
+
export type AiUrlSourceCategoryEnum = "Regulatory" | "Guidelines" | "MarketData" | "Custom";
|
|
5821
|
+
export type AiUrlSourceScopeEnum = "FullDomain" | "SpecificPath";
|
|
5822
|
+
export type AuditLogEntryChangeTypeEnum = "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored" | "Deactivated" | "Reactivated";
|
|
5823
|
+
export type BorrowerCountRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5824
|
+
export type BorrowerIdentityRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5825
|
+
export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
|
|
5826
|
+
export type CreateAccountRequestEnvironmentEnum = "Development" | "Staging" | "UAT" | "Production";
|
|
5827
|
+
export type CreateAiGuardrailRequestCategoryEnum = "ContentSafety" | "PromptInjection" | "Privacy" | "Legal";
|
|
5828
|
+
export type CreateAiUrlSourceRequestCategoryEnum = "Regulatory" | "Guidelines" | "MarketData" | "Custom";
|
|
5829
|
+
export type CreateAiUrlSourceRequestScopeEnum = "FullDomain" | "SpecificPath";
|
|
5830
|
+
export type CreateCustomFieldDefinitionRequestDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5831
|
+
export type CreateCustomFieldDefinitionRequestEntityTypeEnum = "Loan";
|
|
5832
|
+
export type CreateGroupMemberRequestLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5833
|
+
/** @deprecated */
|
|
5834
|
+
export type CreateInviteRequestRelationshipEnum = "NotApplicable" | "Spouse" | "NonSpouse";
|
|
5835
|
+
export type CreateLoanImportRequestImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5836
|
+
export type CreateUserDraftLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5837
|
+
export type CustomFieldDefinitionDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5838
|
+
export type CustomFieldDefinitionEntityTypeEnum = "Loan";
|
|
5839
|
+
export type CustomFieldEntryDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5840
|
+
export type CustomFieldPermissionRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5841
|
+
export type CustomFieldPermissionAccessLevelEnum = "NoAccess" | "ReadOnly" | "ReadWrite";
|
|
5842
|
+
export type CustomFieldPermissionRequestRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5843
|
+
export type CustomFieldPermissionRequestAccessLevelEnum = "NoAccess" | "ReadOnly" | "ReadWrite";
|
|
5844
|
+
export type CustomFieldValueDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5845
|
+
export type DraftTypeEnum = "NewLoan" | "EditLoan";
|
|
5846
|
+
export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
|
|
5847
|
+
export type EncompassCredentialsDetailEncompassEnvironmentEnum = "Production" | "UAT";
|
|
5848
|
+
export type EncompassCredentialsDetailSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5849
|
+
export type EncompassCredentialsRequestEncompassEnvironmentEnum = "Production" | "UAT";
|
|
5850
|
+
export type EncompassCredentialsRequestSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5851
|
+
export type EncompassRequestLogOperationTypeEnum = "FieldUpdate" | "ConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
|
|
5852
|
+
export type EncompassRequestLogOutcomeEnum = "Success" | "Failure" | "PartialSuccess";
|
|
5853
|
+
export type FusionReportFilterFilterTypeEnum = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
|
|
5854
|
+
export type GenerateSystemPromptRequestCategoryEnum = "DocumentAnalysis" | "DataQuery" | "General" | "Action";
|
|
5855
|
+
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";
|
|
5856
|
+
export type LoanSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5857
|
+
export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
|
|
5858
|
+
export type LoanContactRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5859
|
+
export type LoanDocumentFolderPermissionRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5860
|
+
export type LoanDocumentFolderPermissionLevelEnum = "None" | "Read" | "Write" | "Manage";
|
|
5861
|
+
export type LoanDocumentFolderPermissionRequestRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5862
|
+
export type LoanDocumentFolderPermissionRequestLevelEnum = "None" | "Read" | "Write" | "Manage";
|
|
5863
|
+
export type LoanImportStatusEnum = "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
|
|
5864
|
+
export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5865
|
+
export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5866
|
+
export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5867
|
+
export type LoanLogTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent" | "DocumentClassified";
|
|
5868
|
+
export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5869
|
+
export type LoanLogDetailTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent" | "DocumentClassified";
|
|
5870
|
+
export type LoanTaskStatusSummaryStatusEnum = "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
|
|
5871
|
+
export type LoanUserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5872
|
+
export type LosOperationTrackingStatusEnum = "Pending" | "Success" | "Failed" | "ConfigurationError" | "PermanentFailure" | "Locked";
|
|
5873
|
+
export type LosSyncStepSeverityEnum = "Success" | "Info" | "Warning" | "Error";
|
|
5874
|
+
export type ManualDocumentClassificationRequestDocumentTypeEnum = "W2" | "Paystub" | "Form1099" | "Form1099Int" | "Form1099Misc" | "Form1099Nec" | "Form1099R" | "Form1099G" | "Form1099Div" | "Form1099Ssa" | "FederalTaxReturn1040" | "TaxReturnScheduleC" | "TaxReturnScheduleD" | "TaxReturnScheduleE" | "Form1065" | "Form1120" | "Form1120S" | "ProfitAndLossStatement" | "VerificationOfEmployment" | "BankStatement" | "InvestmentStatement" | "CreditCardStatement" | "MortgageStatement" | "PayoffStatement" | "HoaDocuments" | "UtilityBill" | "IdentityDocument" | "DemographicAddendum" | "Ssa89" | "Vba260551" | "Hud92900B" | "Check" | "Invoice" | "Receipt" | "LoanApplication1003" | "UnderwritingTransmittal1008" | "Other" | "SalesContract" | "TitleCommitment" | "DriversLicense" | "VerificationOfIncome" | "VerificationOfAssets" | "FloodCertificate" | "FraudReport" | "AddendumToSalesContract" | "GiftLetter" | "CpaLetter" | "TaxBill" | "CondoQuestionnaire" | "CondoBudget" | "CondoBylaws" | "RentalAgreements" | "Lease" | "HazardInsurance" | "VaCertificateOfEligibility" | "Appraisal" | "CreditReport" | "CondoMasterPolicy";
|
|
5875
|
+
export type SiteConfigurationTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5876
|
+
export type SiteConfigurationByUrlTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5877
|
+
export type SiteConfigurationReducedTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5878
|
+
export type SiteConfigurationRequestTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5879
|
+
export type SiteConfigurationSummaryTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5880
|
+
export type UnregisteredBorrowerRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5881
|
+
export type UpdateAiGuardrailRequestCategoryEnum = "ContentSafety" | "PromptInjection" | "Privacy" | "Legal";
|
|
5882
|
+
export type UpdateAiUrlSourceRequestCategoryEnum = "Regulatory" | "Guidelines" | "MarketData" | "Custom";
|
|
5883
|
+
export type UpdateAiUrlSourceRequestScopeEnum = "FullDomain" | "SpecificPath";
|
|
5884
|
+
export type UserDraftRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5885
|
+
export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
|
|
5886
|
+
export type UserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5887
|
+
export type UserLoanConsentTypeEnum = "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
5888
|
+
export type UserLoanConsentLosSyncStatusEnum = "NotStarted" | "Failed" | "Success";
|
|
5889
|
+
export type UserSummaryRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5890
|
+
export type GetCustomFieldDefinitionsParamsEntityTypeEnum = "Loan";
|
|
5891
|
+
/** @default "Realtor" */
|
|
5892
|
+
export type GetPartnersParamsRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5893
|
+
export type GetSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5894
|
+
export type GetSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5895
|
+
export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5896
|
+
export type CreateOrReplaceSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5813
5897
|
import type { AxiosInstance, AxiosRequestConfig, AxiosResponse, ResponseType } from "axios";
|
|
5814
5898
|
export type QueryParamsType = Record<string | number, any>;
|
|
5815
5899
|
export interface FullRequestParams extends Omit<AxiosRequestConfig, "data" | "params" | "url" | "responseType"> {
|
|
@@ -5832,14 +5916,7 @@ export interface ApiConfig<SecurityDataType = unknown> extends Omit<AxiosRequest
|
|
|
5832
5916
|
secure?: boolean;
|
|
5833
5917
|
format?: ResponseType;
|
|
5834
5918
|
}
|
|
5835
|
-
export
|
|
5836
|
-
JsonPatch = "application/json-patch+json",
|
|
5837
|
-
Json = "application/json",
|
|
5838
|
-
JsonApi = "application/vnd.api+json",
|
|
5839
|
-
FormData = "multipart/form-data",
|
|
5840
|
-
UrlEncoded = "application/x-www-form-urlencoded",
|
|
5841
|
-
Text = "text/plain"
|
|
5842
|
-
}
|
|
5919
|
+
export type ContentType = "application/json" | "application/vnd.api+json" | "multipart/form-data" | "application/x-www-form-urlencoded" | "text/plain";
|
|
5843
5920
|
export declare class HttpClient<SecurityDataType = unknown> {
|
|
5844
5921
|
instance: AxiosInstance;
|
|
5845
5922
|
private securityData;
|
|
@@ -7372,7 +7449,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7372
7449
|
* @response `200` `(CustomFieldDefinition)[]` OK
|
|
7373
7450
|
*/
|
|
7374
7451
|
getCustomFieldDefinitions: (query?: {
|
|
7375
|
-
entityType?:
|
|
7452
|
+
entityType?: GetCustomFieldDefinitionsParamsEntityTypeEnum;
|
|
7376
7453
|
}, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition[], any, {}>>;
|
|
7377
7454
|
/**
|
|
7378
7455
|
* No description
|
|
@@ -8879,10 +8956,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8879
8956
|
* @summary Download By ID
|
|
8880
8957
|
* @request GET:/api/loans/{loanId}/documents/{documentId}/download
|
|
8881
8958
|
* @secure
|
|
8882
|
-
* @response `200` `
|
|
8959
|
+
* @response `200` `Blob` OK
|
|
8883
8960
|
* @response `404` `ProblemDetails` Not Found
|
|
8884
8961
|
*/
|
|
8885
|
-
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
8962
|
+
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<Blob, any, {}>>;
|
|
8886
8963
|
/**
|
|
8887
8964
|
* No description
|
|
8888
8965
|
*
|
|
@@ -10126,7 +10203,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10126
10203
|
getPartners: (query?: {
|
|
10127
10204
|
showAll?: boolean;
|
|
10128
10205
|
/** @default "Realtor" */
|
|
10129
|
-
role?:
|
|
10206
|
+
role?: GetPartnersParamsRoleEnum;
|
|
10130
10207
|
/** @format int32 */
|
|
10131
10208
|
pageSize?: number;
|
|
10132
10209
|
/** @format int32 */
|
|
@@ -10304,7 +10381,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10304
10381
|
* @response `200` `File` OK
|
|
10305
10382
|
* @response `404` `ProblemDetails` Not Found
|
|
10306
10383
|
*/
|
|
10307
|
-
getSamlMetadata: (sSoIntegration:
|
|
10384
|
+
getSamlMetadata: (sSoIntegration: GetSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
10308
10385
|
/**
|
|
10309
10386
|
* No description
|
|
10310
10387
|
*
|
|
@@ -10315,7 +10392,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10315
10392
|
* @secure
|
|
10316
10393
|
* @response `200` `File` OK
|
|
10317
10394
|
*/
|
|
10318
|
-
createOrReplaceSamlMetadata: (sSoIntegration:
|
|
10395
|
+
createOrReplaceSamlMetadata: (sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
10319
10396
|
/**
|
|
10320
10397
|
* No description
|
|
10321
10398
|
*
|