@matech/thebigpos-sdk 2.46.8-aibi-rc1 → 2.47.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/.claude/settings.local.json +52 -0
- package/.husky/pre-commit +2 -2
- package/LICENSE +21 -21
- package/README.md +10 -0
- package/dist/index.d.ts +335 -153
- package/dist/index.js +258 -213
- package/dist/index.js.map +1 -1
- package/package.json +4 -1
- package/scripts/apply-json-patch-content-type.js +129 -36
- package/src/index.ts +1299 -870
- package/tsconfig.json +27 -27
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export type VersionStatusType = "Draft" | "Published";
|
|
2
2
|
export type UserRole = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
3
3
|
export type TaskStatus = "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
|
|
4
|
+
export type SiteTileLocation = "HomePage" | "Dashboard";
|
|
4
5
|
export type SiteConfigurationType = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5
6
|
export type SigningMethod = "ConsumerConnect" | "POSF";
|
|
6
7
|
export type SSOIntegrationType = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
@@ -49,6 +50,7 @@ export type LoanAsianRace = "AsianIndian" | "Chinese" | "Filipino" | "Japanese"
|
|
|
49
50
|
export type LoanAmortizationType = "Fixed" | "Arm" | "Balloon" | "Other";
|
|
50
51
|
export type LoanAccountAssetType = "Checking" | "Savings" | "MoneyMarket" | "CertificateOfDeposit" | "MutualFund" | "Stocks" | "Bonds" | "Retirement" | "BridgeLoanProceeds" | "IndividualDevelopmentAccount" | "TrustAccount" | "CashValueOfLifeInsurance" | "Other";
|
|
51
52
|
export type LoanAccessScopeType = "User" | "Branch";
|
|
53
|
+
export type LinkTarget = "Self" | "Blank";
|
|
52
54
|
export type LOSStatus = "Unknown" | "Pending" | "Retrying" | "Successful" | "Failed" | "FailedPermanently" | "Uploaded" | "PendingSync";
|
|
53
55
|
export type FilterType = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
|
|
54
56
|
export type Environment = "Development" | "Staging" | "UAT" | "Production";
|
|
@@ -74,13 +76,12 @@ export type AiUrlSourceScope = "FullDomain" | "SpecificPath";
|
|
|
74
76
|
export type AiUrlSourceCategory = "Regulatory" | "Guidelines" | "MarketData" | "Custom";
|
|
75
77
|
export type AiStructuredDataType = "Table" | "DocumentAnalysis" | "DocumentList" | "GeneratedDocument";
|
|
76
78
|
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" | "TaskStatusBreakdown" | "ConsentSyncHealth";
|
|
77
|
-
export type AiPromptScope = "General" | "LoanSpecific";
|
|
78
79
|
export type AiPromptCategory = "DocumentAnalysis" | "DataQuery" | "General" | "Action";
|
|
79
80
|
export type AiOutputType = "Text" | "Document";
|
|
80
81
|
export type AiIntent = "Greeting" | "Invalid" | "Relevant" | "LoanSpecific" | "DocumentList" | "GeneralKnowledge" | "Blocked" | "Action" | "ConversationMeta" | "Capabilities" | "UsageReport";
|
|
81
82
|
export type AiGuardrailCategory = "ContentSafety" | "PromptInjection" | "Privacy" | "Legal";
|
|
82
83
|
export type AiDisplayHint = "Table" | "SummaryCards" | "RankedList" | "Comparison" | "ExecutiveBrief";
|
|
83
|
-
export type AiAuditEventType = "Error" | "GuardrailBlockedPre" | "GuardrailPassedPre" | "IntentClassified" | "LoanResolvedFromMessage" | "DocumentNotFound" | "GuardrailBlockedPost" | "GuardrailPassedPost" | "DocumentAnalyzed" | "DocumentList" | "DocumentResolutionAmbiguous" | "ResponseGenerated" | "ParametersExtracted" | "QueryExecuted" | "LoanContextNotFound" | "LoanContextLoaded" | "GuardrailBlockedBedrock" | "PromptMatched" | "QueryCondensed" | "IntentParseFailed" | "LoanSearchTermDiscarded" | "CanonicalFieldsSelected" | "LoanAccessDenied"
|
|
84
|
+
export type AiAuditEventType = "Error" | "GuardrailBlockedPre" | "GuardrailPassedPre" | "IntentClassified" | "LoanResolvedFromMessage" | "DocumentNotFound" | "GuardrailBlockedPost" | "GuardrailPassedPost" | "DocumentAnalyzed" | "DocumentList" | "DocumentResolutionAmbiguous" | "ResponseGenerated" | "ParametersExtracted" | "QueryExecuted" | "LoanContextNotFound" | "LoanContextLoaded" | "GuardrailBlockedBedrock" | "PromptMatched" | "QueryCondensed" | "IntentParseFailed" | "LoanSearchTermDiscarded" | "CanonicalFieldsSelected" | "LoanAccessDenied";
|
|
84
85
|
export type AddressFamily = "Unspecified" | "Unix" | "InterNetwork" | "ImpLink" | "Pup" | "Chaos" | "NS" | "Ipx" | "Iso" | "Osi" | "Ecma" | "DataKit" | "Ccitt" | "Sna" | "DecNet" | "DataLink" | "Lat" | "HyperChannel" | "AppleTalk" | "NetBios" | "VoiceView" | "FireFox" | "Banyan" | "Atm" | "InterNetworkV6" | "Cluster" | "Ieee12844" | "Irda" | "NetworkDesigners" | "Max" | "Packet" | "ControllerAreaNetwork" | "Unknown";
|
|
85
86
|
export interface ASOSettings {
|
|
86
87
|
enabled: boolean;
|
|
@@ -131,7 +132,7 @@ export interface AccountBilling {
|
|
|
131
132
|
contractedRate: number;
|
|
132
133
|
}
|
|
133
134
|
export interface AccountBillingRequest {
|
|
134
|
-
billingType:
|
|
135
|
+
billingType: AccountBillingRequestBillingTypeEnum;
|
|
135
136
|
/** @format double */
|
|
136
137
|
contractedRate: number;
|
|
137
138
|
}
|
|
@@ -173,7 +174,7 @@ export interface Action {
|
|
|
173
174
|
comments?: string | null;
|
|
174
175
|
/** @format uuid */
|
|
175
176
|
siteConfigurationID: string;
|
|
176
|
-
applicationSettings?: any;
|
|
177
|
+
applicationSettings?: any | null;
|
|
177
178
|
surveysToken?: string | null;
|
|
178
179
|
}
|
|
179
180
|
export interface Address {
|
|
@@ -351,7 +352,6 @@ export interface AiAdminSettings {
|
|
|
351
352
|
requestTimeoutSeconds: number;
|
|
352
353
|
/** @format int32 */
|
|
353
354
|
defaultTokenLimit: number;
|
|
354
|
-
useAgentLoop: boolean;
|
|
355
355
|
bedrockRegion: string;
|
|
356
356
|
}
|
|
357
357
|
export interface AiAdminSettingsRequest {
|
|
@@ -366,7 +366,6 @@ export interface AiAdminSettingsRequest {
|
|
|
366
366
|
requestTimeoutSeconds?: number | null;
|
|
367
367
|
/** @format int32 */
|
|
368
368
|
defaultTokenLimit?: number | null;
|
|
369
|
-
useAgentLoop?: boolean | null;
|
|
370
369
|
}
|
|
371
370
|
export interface AiAdminStats {
|
|
372
371
|
/** @format int32 */
|
|
@@ -396,7 +395,7 @@ export interface AiAuditLog {
|
|
|
396
395
|
conversationId?: string | null;
|
|
397
396
|
/** @format uuid */
|
|
398
397
|
messageId?: string | null;
|
|
399
|
-
eventType:
|
|
398
|
+
eventType: AiAuditLogEventTypeEnum;
|
|
400
399
|
modelId?: string | null;
|
|
401
400
|
/** @format int32 */
|
|
402
401
|
inputTokens?: number | null;
|
|
@@ -409,7 +408,7 @@ export interface AiAuditLog {
|
|
|
409
408
|
guardrailCategory?: string | null;
|
|
410
409
|
rawRequest?: string | null;
|
|
411
410
|
rawResponse?: string | null;
|
|
412
|
-
details?: any;
|
|
411
|
+
details?: any | null;
|
|
413
412
|
/** @format date-time */
|
|
414
413
|
createdAt: string;
|
|
415
414
|
}
|
|
@@ -471,7 +470,7 @@ export interface AiChatMessagePaginated {
|
|
|
471
470
|
count: number;
|
|
472
471
|
}
|
|
473
472
|
export interface AiChatMetadata {
|
|
474
|
-
intent:
|
|
473
|
+
intent: AiChatMetadataIntentEnum;
|
|
475
474
|
fieldsAccessed: string[];
|
|
476
475
|
/** @format int64 */
|
|
477
476
|
queryTimeMs: number;
|
|
@@ -497,7 +496,7 @@ export interface AiChatRequest {
|
|
|
497
496
|
promptId?: string | null;
|
|
498
497
|
}
|
|
499
498
|
export interface AiChatStructuredData {
|
|
500
|
-
type:
|
|
499
|
+
type: AiChatStructuredDataTypeEnum;
|
|
501
500
|
displayHint?: AiDisplayHint | null;
|
|
502
501
|
detectedDocumentType?: string | null;
|
|
503
502
|
columns: string[];
|
|
@@ -575,7 +574,7 @@ export interface AiGuardrail {
|
|
|
575
574
|
/** @format uuid */
|
|
576
575
|
id: string;
|
|
577
576
|
name: string;
|
|
578
|
-
category:
|
|
577
|
+
category: AiGuardrailCategoryEnum;
|
|
579
578
|
description?: string | null;
|
|
580
579
|
keywords: string[];
|
|
581
580
|
responseTemplate: string;
|
|
@@ -609,10 +608,6 @@ export interface AiPrompt {
|
|
|
609
608
|
bedrockModelId?: string | null;
|
|
610
609
|
requiredDataSources?: string[] | null;
|
|
611
610
|
outputType?: AiOutputType | null;
|
|
612
|
-
scope?: AiPromptScope | null;
|
|
613
|
-
inputHint?: string | null;
|
|
614
|
-
agentSystemPrompt?: string | null;
|
|
615
|
-
tools?: AiPromptTool[] | null;
|
|
616
611
|
hasAccountOverride: boolean;
|
|
617
612
|
/** @format date-time */
|
|
618
613
|
createdAt: string;
|
|
@@ -635,14 +630,6 @@ export interface AiPromptSummary {
|
|
|
635
630
|
bedrockModelId?: string | null;
|
|
636
631
|
requiredDataSources?: string[] | null;
|
|
637
632
|
outputType?: AiOutputType | null;
|
|
638
|
-
scope?: AiPromptScope | null;
|
|
639
|
-
inputHint?: string | null;
|
|
640
|
-
}
|
|
641
|
-
export interface AiPromptTool {
|
|
642
|
-
toolName: string;
|
|
643
|
-
}
|
|
644
|
-
export interface AiPromptToolInput {
|
|
645
|
-
toolName: string;
|
|
646
633
|
}
|
|
647
634
|
export interface AiTokenBudgetStatus {
|
|
648
635
|
/** @format int32 */
|
|
@@ -686,11 +673,6 @@ export interface AiTokenUsageWindowPaginated {
|
|
|
686
673
|
/** @format int64 */
|
|
687
674
|
count: number;
|
|
688
675
|
}
|
|
689
|
-
export interface AiToolCatalogItem {
|
|
690
|
-
toolName: string;
|
|
691
|
-
displayName: string;
|
|
692
|
-
description: string;
|
|
693
|
-
}
|
|
694
676
|
export interface AiUrlSource {
|
|
695
677
|
/** @format uuid */
|
|
696
678
|
id: string;
|
|
@@ -698,8 +680,8 @@ export interface AiUrlSource {
|
|
|
698
680
|
name: string;
|
|
699
681
|
url: string;
|
|
700
682
|
description?: string | null;
|
|
701
|
-
category:
|
|
702
|
-
scope:
|
|
683
|
+
category: AiUrlSourceCategoryEnum;
|
|
684
|
+
scope: AiUrlSourceScopeEnum;
|
|
703
685
|
isActive: boolean;
|
|
704
686
|
isDefault: boolean;
|
|
705
687
|
hasAccountOverride: boolean;
|
|
@@ -806,14 +788,14 @@ export interface AuditLogEntry {
|
|
|
806
788
|
/** @format uuid */
|
|
807
789
|
id: string;
|
|
808
790
|
entityType: string;
|
|
809
|
-
changeType:
|
|
791
|
+
changeType: AuditLogEntryChangeTypeEnum;
|
|
810
792
|
/** @format uuid */
|
|
811
793
|
entityId: string;
|
|
812
794
|
performedBy?: AuditLogUser | null;
|
|
813
795
|
rootEntityType?: string | null;
|
|
814
796
|
/** @format uuid */
|
|
815
797
|
rootEntityId?: string | null;
|
|
816
|
-
changes?: any;
|
|
798
|
+
changes?: any | null;
|
|
817
799
|
/** @format date-time */
|
|
818
800
|
createdAt: string;
|
|
819
801
|
}
|
|
@@ -853,7 +835,7 @@ export interface BorrowerCount {
|
|
|
853
835
|
firstName: string;
|
|
854
836
|
lastName: string;
|
|
855
837
|
email: string;
|
|
856
|
-
role:
|
|
838
|
+
role: BorrowerCountRoleEnum;
|
|
857
839
|
/** @format int32 */
|
|
858
840
|
count: number;
|
|
859
841
|
}
|
|
@@ -863,7 +845,7 @@ export interface BorrowerIdentity {
|
|
|
863
845
|
firstName: string;
|
|
864
846
|
lastName: string;
|
|
865
847
|
email: string;
|
|
866
|
-
role:
|
|
848
|
+
role: BorrowerIdentityRoleEnum;
|
|
867
849
|
}
|
|
868
850
|
export interface BorrowersNotUsingPosSummary {
|
|
869
851
|
/** @format int32 */
|
|
@@ -1098,7 +1080,7 @@ export interface CorporateSearchCriteria {
|
|
|
1098
1080
|
isActive?: boolean | null;
|
|
1099
1081
|
}
|
|
1100
1082
|
export interface CreateAccessScopeRequest {
|
|
1101
|
-
scopeType:
|
|
1083
|
+
scopeType: CreateAccessScopeRequestScopeTypeEnum;
|
|
1102
1084
|
/** @format uuid */
|
|
1103
1085
|
userId?: string | null;
|
|
1104
1086
|
/** @format uuid */
|
|
@@ -1116,7 +1098,7 @@ export interface CreateAccountRequest {
|
|
|
1116
1098
|
/** @format int64 */
|
|
1117
1099
|
nlmsid: number;
|
|
1118
1100
|
settings: AccountSettingsRequest;
|
|
1119
|
-
environment:
|
|
1101
|
+
environment: CreateAccountRequestEnvironmentEnum;
|
|
1120
1102
|
losIntegration: LOSIntegration;
|
|
1121
1103
|
billingSettings: AccountBillingRequest;
|
|
1122
1104
|
}
|
|
@@ -1130,7 +1112,7 @@ export interface CreateAiCanonicalFieldRequest {
|
|
|
1130
1112
|
}
|
|
1131
1113
|
export interface CreateAiGuardrailRequest {
|
|
1132
1114
|
name: string;
|
|
1133
|
-
category:
|
|
1115
|
+
category: CreateAiGuardrailRequestCategoryEnum;
|
|
1134
1116
|
description?: string | null;
|
|
1135
1117
|
keywords: string[];
|
|
1136
1118
|
responseTemplate: string;
|
|
@@ -1156,8 +1138,8 @@ export interface CreateAiUrlSourceRequest {
|
|
|
1156
1138
|
name: string;
|
|
1157
1139
|
url: string;
|
|
1158
1140
|
description?: string | null;
|
|
1159
|
-
category:
|
|
1160
|
-
scope:
|
|
1141
|
+
category: CreateAiUrlSourceRequestCategoryEnum;
|
|
1142
|
+
scope: CreateAiUrlSourceRequestScopeEnum;
|
|
1161
1143
|
}
|
|
1162
1144
|
export interface CreateBranchRequest {
|
|
1163
1145
|
name: string;
|
|
@@ -1180,8 +1162,8 @@ export interface CreateCustomFieldDefinitionRequest {
|
|
|
1180
1162
|
name: string;
|
|
1181
1163
|
defaultValue?: string | null;
|
|
1182
1164
|
regexPattern?: string | null;
|
|
1183
|
-
dataType:
|
|
1184
|
-
entityType:
|
|
1165
|
+
dataType: CreateCustomFieldDefinitionRequestDataTypeEnum;
|
|
1166
|
+
entityType: CreateCustomFieldDefinitionRequestEntityTypeEnum;
|
|
1185
1167
|
options?: CustomFieldOptionRequest[] | null;
|
|
1186
1168
|
permissions?: CustomFieldPermissionRequest[] | null;
|
|
1187
1169
|
}
|
|
@@ -1196,7 +1178,7 @@ export interface CreateDocumentTemplateRequest {
|
|
|
1196
1178
|
export interface CreateGroupMemberRequest {
|
|
1197
1179
|
/** @format uuid */
|
|
1198
1180
|
userId: string;
|
|
1199
|
-
loanRole:
|
|
1181
|
+
loanRole: CreateGroupMemberRequestLoanRoleEnum;
|
|
1200
1182
|
}
|
|
1201
1183
|
export interface CreateInviteRequest {
|
|
1202
1184
|
firstName: string;
|
|
@@ -1204,7 +1186,7 @@ export interface CreateInviteRequest {
|
|
|
1204
1186
|
emailAddress: string;
|
|
1205
1187
|
phoneNumber?: string | null;
|
|
1206
1188
|
/** @deprecated */
|
|
1207
|
-
relationship:
|
|
1189
|
+
relationship: CreateInviteRequestRelationshipEnum;
|
|
1208
1190
|
loanID: string;
|
|
1209
1191
|
route?: string | null;
|
|
1210
1192
|
/** @format uuid */
|
|
@@ -1224,7 +1206,7 @@ export interface CreateLoanImportRequest {
|
|
|
1224
1206
|
endDate: string;
|
|
1225
1207
|
/** @format date-time */
|
|
1226
1208
|
startDate: string;
|
|
1227
|
-
importMode:
|
|
1209
|
+
importMode: CreateLoanImportRequestImportModeEnum;
|
|
1228
1210
|
}
|
|
1229
1211
|
export interface CreateSession {
|
|
1230
1212
|
sessionId: string;
|
|
@@ -1242,7 +1224,7 @@ export interface CreateUserDeviceRequest {
|
|
|
1242
1224
|
token: string;
|
|
1243
1225
|
}
|
|
1244
1226
|
export interface CreateUserDraft {
|
|
1245
|
-
loanRole:
|
|
1227
|
+
loanRole: CreateUserDraftLoanRoleEnum;
|
|
1246
1228
|
}
|
|
1247
1229
|
export interface CreateUserGroupRequest {
|
|
1248
1230
|
name: string;
|
|
@@ -1303,8 +1285,8 @@ export interface CustomFieldDefinition {
|
|
|
1303
1285
|
name: string;
|
|
1304
1286
|
defaultValue?: string | null;
|
|
1305
1287
|
regexPattern?: string | null;
|
|
1306
|
-
dataType:
|
|
1307
|
-
entityType:
|
|
1288
|
+
dataType: CustomFieldDefinitionDataTypeEnum;
|
|
1289
|
+
entityType: CustomFieldDefinitionEntityTypeEnum;
|
|
1308
1290
|
options: CustomFieldOption[];
|
|
1309
1291
|
permissions: CustomFieldPermission[];
|
|
1310
1292
|
encompassMapping?: EncompassMapping | null;
|
|
@@ -1318,7 +1300,7 @@ export interface CustomFieldEntry {
|
|
|
1318
1300
|
displayOrder: number;
|
|
1319
1301
|
name: string;
|
|
1320
1302
|
value: string;
|
|
1321
|
-
dataType:
|
|
1303
|
+
dataType: CustomFieldEntryDataTypeEnum;
|
|
1322
1304
|
}
|
|
1323
1305
|
export interface CustomFieldOption {
|
|
1324
1306
|
/** @format uuid */
|
|
@@ -1335,12 +1317,12 @@ export interface CustomFieldOptionRequest {
|
|
|
1335
1317
|
export interface CustomFieldPermission {
|
|
1336
1318
|
/** @format uuid */
|
|
1337
1319
|
id: string;
|
|
1338
|
-
role:
|
|
1339
|
-
accessLevel:
|
|
1320
|
+
role: CustomFieldPermissionRoleEnum;
|
|
1321
|
+
accessLevel: CustomFieldPermissionAccessLevelEnum;
|
|
1340
1322
|
}
|
|
1341
1323
|
export interface CustomFieldPermissionRequest {
|
|
1342
|
-
role:
|
|
1343
|
-
accessLevel:
|
|
1324
|
+
role: CustomFieldPermissionRequestRoleEnum;
|
|
1325
|
+
accessLevel: CustomFieldPermissionRequestAccessLevelEnum;
|
|
1344
1326
|
}
|
|
1345
1327
|
export interface CustomFieldValue {
|
|
1346
1328
|
/** @format uuid */
|
|
@@ -1351,7 +1333,7 @@ export interface CustomFieldValue {
|
|
|
1351
1333
|
customFieldDefinitionID: string;
|
|
1352
1334
|
value: string;
|
|
1353
1335
|
definitionName: string;
|
|
1354
|
-
dataType:
|
|
1336
|
+
dataType: CustomFieldValueDataTypeEnum;
|
|
1355
1337
|
}
|
|
1356
1338
|
export interface DetailedUser {
|
|
1357
1339
|
/** @format date-time */
|
|
@@ -1577,7 +1559,7 @@ export interface Draft {
|
|
|
1577
1559
|
siteConfiguration: SiteConfigurationReduced;
|
|
1578
1560
|
/** @format uuid */
|
|
1579
1561
|
loanID?: string | null;
|
|
1580
|
-
type:
|
|
1562
|
+
type: DraftTypeEnum;
|
|
1581
1563
|
isCoBorrower: boolean;
|
|
1582
1564
|
}
|
|
1583
1565
|
export interface DraftContent {
|
|
@@ -1595,7 +1577,7 @@ export interface DraftContent {
|
|
|
1595
1577
|
siteConfiguration: SiteConfigurationReduced;
|
|
1596
1578
|
/** @format uuid */
|
|
1597
1579
|
loanID?: string | null;
|
|
1598
|
-
type:
|
|
1580
|
+
type: DraftContentTypeEnum;
|
|
1599
1581
|
isCoBorrower: boolean;
|
|
1600
1582
|
applicationPayload: any;
|
|
1601
1583
|
}
|
|
@@ -1611,7 +1593,7 @@ export interface DraftLoanOfficerReassignRequest {
|
|
|
1611
1593
|
}
|
|
1612
1594
|
export interface DraftRequest {
|
|
1613
1595
|
applicationPayload: any;
|
|
1614
|
-
customData?: any;
|
|
1596
|
+
customData?: any | null;
|
|
1615
1597
|
isCoBorrower: boolean;
|
|
1616
1598
|
}
|
|
1617
1599
|
export interface EconsentPendingSummary {
|
|
@@ -1681,9 +1663,9 @@ export interface EncompassCredentialsDetail {
|
|
|
1681
1663
|
clearStateIfUnlicensed: boolean;
|
|
1682
1664
|
/** @deprecated */
|
|
1683
1665
|
baseUrl?: string | null;
|
|
1684
|
-
encompassEnvironment:
|
|
1666
|
+
encompassEnvironment: EncompassCredentialsDetailEncompassEnvironmentEnum;
|
|
1685
1667
|
consumerConnectWidgetHost?: string | null;
|
|
1686
|
-
signingMethod:
|
|
1668
|
+
signingMethod: EncompassCredentialsDetailSigningMethodEnum;
|
|
1687
1669
|
subscriptionId?: string | null;
|
|
1688
1670
|
environment?: string | null;
|
|
1689
1671
|
/** @format uuid */
|
|
@@ -1699,9 +1681,9 @@ export interface EncompassCredentialsRequest {
|
|
|
1699
1681
|
clearStateIfUnlicensed: boolean;
|
|
1700
1682
|
/** @deprecated */
|
|
1701
1683
|
baseUrl?: string | null;
|
|
1702
|
-
encompassEnvironment:
|
|
1684
|
+
encompassEnvironment: EncompassCredentialsRequestEncompassEnvironmentEnum;
|
|
1703
1685
|
consumerConnectWidgetHost?: string | null;
|
|
1704
|
-
signingMethod:
|
|
1686
|
+
signingMethod: EncompassCredentialsRequestSigningMethodEnum;
|
|
1705
1687
|
subscriptionId?: string | null;
|
|
1706
1688
|
environment?: string | null;
|
|
1707
1689
|
clientID?: string | null;
|
|
@@ -1811,8 +1793,8 @@ export interface EncompassRequestLog {
|
|
|
1811
1793
|
losId?: string | null;
|
|
1812
1794
|
/** @format uuid */
|
|
1813
1795
|
accountId: string;
|
|
1814
|
-
operationType:
|
|
1815
|
-
outcome:
|
|
1796
|
+
operationType: EncompassRequestLogOperationTypeEnum;
|
|
1797
|
+
outcome: EncompassRequestLogOutcomeEnum;
|
|
1816
1798
|
message: string;
|
|
1817
1799
|
endpoint?: string | null;
|
|
1818
1800
|
httpMethod?: string | null;
|
|
@@ -1820,7 +1802,7 @@ export interface EncompassRequestLog {
|
|
|
1820
1802
|
httpStatusCode?: number | null;
|
|
1821
1803
|
/** @format int64 */
|
|
1822
1804
|
durationMs?: number | null;
|
|
1823
|
-
context?: any;
|
|
1805
|
+
context?: any | null;
|
|
1824
1806
|
/** @format date-time */
|
|
1825
1807
|
createdAt: string;
|
|
1826
1808
|
}
|
|
@@ -1859,7 +1841,7 @@ export interface FileSearchCriteria {
|
|
|
1859
1841
|
export interface FileWithBytes {
|
|
1860
1842
|
name: string;
|
|
1861
1843
|
/** @format byte */
|
|
1862
|
-
data:
|
|
1844
|
+
data: Blob;
|
|
1863
1845
|
fileName: string;
|
|
1864
1846
|
mimeType?: string | null;
|
|
1865
1847
|
extension?: string | null;
|
|
@@ -1935,7 +1917,7 @@ export interface FormSubmission {
|
|
|
1935
1917
|
subjectPropertyAddressCounty?: string | null;
|
|
1936
1918
|
subjectPropertyAddressState?: string | null;
|
|
1937
1919
|
subjectPropertyAddressZip?: string | null;
|
|
1938
|
-
data?: any;
|
|
1920
|
+
data?: any | null;
|
|
1939
1921
|
/** @format uuid */
|
|
1940
1922
|
listingID?: string | null;
|
|
1941
1923
|
listing?: Listing | null;
|
|
@@ -1970,7 +1952,7 @@ export interface FormSubmissionRequest {
|
|
|
1970
1952
|
subjectPropertyAddressCounty?: string | null;
|
|
1971
1953
|
subjectPropertyAddressState?: string | null;
|
|
1972
1954
|
subjectPropertyAddressZip?: string | null;
|
|
1973
|
-
data?: any;
|
|
1955
|
+
data?: any | null;
|
|
1974
1956
|
/** @format uuid */
|
|
1975
1957
|
listingID?: string | null;
|
|
1976
1958
|
}
|
|
@@ -2019,7 +2001,7 @@ export interface FusionFieldDisplay {
|
|
|
2019
2001
|
fieldValue: string;
|
|
2020
2002
|
}
|
|
2021
2003
|
export interface FusionReportFilter {
|
|
2022
|
-
filterType:
|
|
2004
|
+
filterType: FusionReportFilterFilterTypeEnum;
|
|
2023
2005
|
targetField: string;
|
|
2024
2006
|
targetValue: string;
|
|
2025
2007
|
}
|
|
@@ -2039,7 +2021,7 @@ export interface GenerateSystemPrompt {
|
|
|
2039
2021
|
}
|
|
2040
2022
|
export interface GenerateSystemPromptRequest {
|
|
2041
2023
|
description: string;
|
|
2042
|
-
category:
|
|
2024
|
+
category: GenerateSystemPromptRequestCategoryEnum;
|
|
2043
2025
|
}
|
|
2044
2026
|
export interface GetApplications {
|
|
2045
2027
|
applications: ApplicationRowData[];
|
|
@@ -2123,11 +2105,11 @@ export interface GetWorkflowRequest {
|
|
|
2123
2105
|
export interface GuidPatchOperation {
|
|
2124
2106
|
op: string;
|
|
2125
2107
|
path: string;
|
|
2126
|
-
value?: any;
|
|
2108
|
+
value?: any | null;
|
|
2127
2109
|
from?: string | null;
|
|
2128
2110
|
}
|
|
2129
2111
|
export interface IPAddress {
|
|
2130
|
-
addressFamily:
|
|
2112
|
+
addressFamily: IpAddressAddressFamilyEnum;
|
|
2131
2113
|
/** @format int64 */
|
|
2132
2114
|
scopeId: number;
|
|
2133
2115
|
isIPv6Multicast: boolean;
|
|
@@ -2376,7 +2358,7 @@ export interface Loan {
|
|
|
2376
2358
|
contacts: LoanContact[];
|
|
2377
2359
|
customFields: CustomFieldEntry[];
|
|
2378
2360
|
milestones: LoanMilestone[];
|
|
2379
|
-
signingMethod:
|
|
2361
|
+
signingMethod: LoanSigningMethodEnum;
|
|
2380
2362
|
}
|
|
2381
2363
|
export interface LoanApplication {
|
|
2382
2364
|
/** @format uuid */
|
|
@@ -2414,7 +2396,7 @@ export interface LoanApplicationRequest {
|
|
|
2414
2396
|
nonOwningBorrowers: LoanNonOwningBorrowerRequest[];
|
|
2415
2397
|
/** @format uuid */
|
|
2416
2398
|
draftId?: string | null;
|
|
2417
|
-
additionalFields?: Record<string, any
|
|
2399
|
+
additionalFields?: Record<string, any> | null;
|
|
2418
2400
|
/** @format uuid */
|
|
2419
2401
|
existingLoanId?: string | null;
|
|
2420
2402
|
}
|
|
@@ -2433,7 +2415,7 @@ export interface LoanBorrower {
|
|
|
2433
2415
|
citizenship?: LoanCitizenship | null;
|
|
2434
2416
|
maritalStatus?: LoanMaritalStatus | null;
|
|
2435
2417
|
languagePreference?: LoanLanguagePreference | null;
|
|
2436
|
-
applicationStatus:
|
|
2418
|
+
applicationStatus: LoanBorrowerApplicationStatusEnum;
|
|
2437
2419
|
/** @format int32 */
|
|
2438
2420
|
numberOfDependents?: number | null;
|
|
2439
2421
|
/** @format int32 */
|
|
@@ -3159,7 +3141,7 @@ export interface LoanConsentRequest {
|
|
|
3159
3141
|
borrowerEConsent?: boolean | null;
|
|
3160
3142
|
borrowerCreditAuth?: boolean | null;
|
|
3161
3143
|
borrowerTCPAOptIn?: boolean | null;
|
|
3162
|
-
additionalFields?: Record<string, string
|
|
3144
|
+
additionalFields?: Record<string, string> | null;
|
|
3163
3145
|
}
|
|
3164
3146
|
export interface LoanContact {
|
|
3165
3147
|
/** @format date-time */
|
|
@@ -3177,7 +3159,7 @@ export interface LoanContact {
|
|
|
3177
3159
|
email?: string | null;
|
|
3178
3160
|
phone?: string | null;
|
|
3179
3161
|
companyName?: string | null;
|
|
3180
|
-
role:
|
|
3162
|
+
role: LoanContactRoleEnum;
|
|
3181
3163
|
}
|
|
3182
3164
|
export interface LoanContactList {
|
|
3183
3165
|
email: string;
|
|
@@ -3199,7 +3181,7 @@ export interface LoanCostDetails {
|
|
|
3199
3181
|
totalFinancing?: number | null;
|
|
3200
3182
|
}
|
|
3201
3183
|
export interface LoanCustomFieldsRequest {
|
|
3202
|
-
additionalFields?: Record<string, string
|
|
3184
|
+
additionalFields?: Record<string, string> | null;
|
|
3203
3185
|
}
|
|
3204
3186
|
export interface LoanDocument {
|
|
3205
3187
|
/** @format date-time */
|
|
@@ -3249,12 +3231,12 @@ export interface LoanDocumentFolderPermission {
|
|
|
3249
3231
|
id: string;
|
|
3250
3232
|
/** @format uuid */
|
|
3251
3233
|
loanDocumentFolderID: string;
|
|
3252
|
-
role:
|
|
3253
|
-
level:
|
|
3234
|
+
role: LoanDocumentFolderPermissionRoleEnum;
|
|
3235
|
+
level: LoanDocumentFolderPermissionLevelEnum;
|
|
3254
3236
|
}
|
|
3255
3237
|
export interface LoanDocumentFolderPermissionRequest {
|
|
3256
|
-
role:
|
|
3257
|
-
level:
|
|
3238
|
+
role: LoanDocumentFolderPermissionRequestRoleEnum;
|
|
3239
|
+
level: LoanDocumentFolderPermissionRequestLevelEnum;
|
|
3258
3240
|
}
|
|
3259
3241
|
export interface LoanDocumentFolderUsage {
|
|
3260
3242
|
/** @format uuid */
|
|
@@ -3388,13 +3370,13 @@ export interface LoanImport {
|
|
|
3388
3370
|
/** @format int32 */
|
|
3389
3371
|
importedCount: number;
|
|
3390
3372
|
statusMessage?: string | null;
|
|
3391
|
-
status:
|
|
3392
|
-
importMode:
|
|
3373
|
+
status: LoanImportStatusEnum;
|
|
3374
|
+
importMode: LoanImportImportModeEnum;
|
|
3393
3375
|
/** @format date-time */
|
|
3394
3376
|
createdAt?: string | null;
|
|
3395
3377
|
}
|
|
3396
3378
|
export interface LoanImportLog {
|
|
3397
|
-
level:
|
|
3379
|
+
level: LoanImportLogLevelEnum;
|
|
3398
3380
|
message: string;
|
|
3399
3381
|
/** @format date-time */
|
|
3400
3382
|
createdAt: string;
|
|
@@ -3449,8 +3431,8 @@ export interface LoanListPaginated {
|
|
|
3449
3431
|
export interface LoanLog {
|
|
3450
3432
|
/** @format uuid */
|
|
3451
3433
|
id: string;
|
|
3452
|
-
level:
|
|
3453
|
-
type:
|
|
3434
|
+
level: LoanLogLevelEnum;
|
|
3435
|
+
type: LoanLogTypeEnum;
|
|
3454
3436
|
message: string;
|
|
3455
3437
|
/** @format date-time */
|
|
3456
3438
|
createdAt: string;
|
|
@@ -3458,8 +3440,8 @@ export interface LoanLog {
|
|
|
3458
3440
|
export interface LoanLogDetail {
|
|
3459
3441
|
/** @format uuid */
|
|
3460
3442
|
id: string;
|
|
3461
|
-
level:
|
|
3462
|
-
type:
|
|
3443
|
+
level: LoanLogDetailLevelEnum;
|
|
3444
|
+
type: LoanLogDetailTypeEnum;
|
|
3463
3445
|
message: string;
|
|
3464
3446
|
/** @format date-time */
|
|
3465
3447
|
createdAt: string;
|
|
@@ -3721,7 +3703,7 @@ export interface LoanQueueWithData {
|
|
|
3721
3703
|
user: UserPublic;
|
|
3722
3704
|
loanOfficer: LoanOfficerPublic;
|
|
3723
3705
|
siteConfiguration: SiteConfigurationReduced;
|
|
3724
|
-
data?: any;
|
|
3706
|
+
data?: any | null;
|
|
3725
3707
|
}
|
|
3726
3708
|
export interface LoanRecord {
|
|
3727
3709
|
loanGuid: string;
|
|
@@ -3752,7 +3734,7 @@ export interface LoanTaskSearchRequest {
|
|
|
3752
3734
|
loanStatus?: LoanTaskActivityFilter | null;
|
|
3753
3735
|
}
|
|
3754
3736
|
export interface LoanTaskStatusSummary {
|
|
3755
|
-
status:
|
|
3737
|
+
status: LoanTaskStatusSummaryStatusEnum;
|
|
3756
3738
|
/** @format int32 */
|
|
3757
3739
|
count: number;
|
|
3758
3740
|
}
|
|
@@ -3764,7 +3746,7 @@ export interface LoanUser {
|
|
|
3764
3746
|
email: string;
|
|
3765
3747
|
phone?: string | null;
|
|
3766
3748
|
role: string;
|
|
3767
|
-
loanRole:
|
|
3749
|
+
loanRole: LoanUserLoanRoleEnum;
|
|
3768
3750
|
isUser: boolean;
|
|
3769
3751
|
/** @format date-time */
|
|
3770
3752
|
createdAt: string;
|
|
@@ -3797,7 +3779,7 @@ export interface LosOperationTracking {
|
|
|
3797
3779
|
operationType: string;
|
|
3798
3780
|
correlationKey: string;
|
|
3799
3781
|
lastTriggerSource?: string | null;
|
|
3800
|
-
status:
|
|
3782
|
+
status: LosOperationTrackingStatusEnum;
|
|
3801
3783
|
/** @format date-time */
|
|
3802
3784
|
createdAt: string;
|
|
3803
3785
|
/** @format date-time */
|
|
@@ -3858,7 +3840,7 @@ export interface LosSyncStep {
|
|
|
3858
3840
|
/** @format int32 */
|
|
3859
3841
|
order: number;
|
|
3860
3842
|
name: string;
|
|
3861
|
-
severity:
|
|
3843
|
+
severity: LosSyncStepSeverityEnum;
|
|
3862
3844
|
message: string;
|
|
3863
3845
|
/** @format date-time */
|
|
3864
3846
|
atUtc: string;
|
|
@@ -3872,7 +3854,7 @@ export interface LosWebhook {
|
|
|
3872
3854
|
enableSubscription: boolean;
|
|
3873
3855
|
}
|
|
3874
3856
|
export interface ManualDocumentClassificationRequest {
|
|
3875
|
-
documentType:
|
|
3857
|
+
documentType: ManualDocumentClassificationRequestDocumentTypeEnum;
|
|
3876
3858
|
}
|
|
3877
3859
|
export interface MdmUser {
|
|
3878
3860
|
user_email?: string | null;
|
|
@@ -3951,7 +3933,7 @@ export interface ModuleParameterValue {
|
|
|
3951
3933
|
parameterID: string;
|
|
3952
3934
|
parameterName: string;
|
|
3953
3935
|
parameterType: string;
|
|
3954
|
-
value?: any;
|
|
3936
|
+
value?: any | null;
|
|
3955
3937
|
isInherited: boolean;
|
|
3956
3938
|
}
|
|
3957
3939
|
export interface MonthlyPaymentCalculator {
|
|
@@ -4124,7 +4106,7 @@ export interface NotificationTemplateVersionUpdateRequest {
|
|
|
4124
4106
|
}
|
|
4125
4107
|
export interface Operation {
|
|
4126
4108
|
op?: string;
|
|
4127
|
-
value?:
|
|
4109
|
+
value?: object | null;
|
|
4128
4110
|
path?: string;
|
|
4129
4111
|
}
|
|
4130
4112
|
export interface OverridePasswordRequest {
|
|
@@ -4450,7 +4432,7 @@ export interface SiteConfiguration {
|
|
|
4450
4432
|
deletedAt?: string | null;
|
|
4451
4433
|
/** @format uuid */
|
|
4452
4434
|
id: string;
|
|
4453
|
-
type:
|
|
4435
|
+
type: SiteConfigurationTypeEnum;
|
|
4454
4436
|
/** @format uuid */
|
|
4455
4437
|
entityID: string;
|
|
4456
4438
|
/** @format int32 */
|
|
@@ -4643,7 +4625,7 @@ export interface SiteConfigurationByUrl {
|
|
|
4643
4625
|
deletedAt?: string | null;
|
|
4644
4626
|
/** @format uuid */
|
|
4645
4627
|
id: string;
|
|
4646
|
-
type:
|
|
4628
|
+
type: SiteConfigurationByUrlTypeEnum;
|
|
4647
4629
|
/** @format uuid */
|
|
4648
4630
|
entityID: string;
|
|
4649
4631
|
/** @format int32 */
|
|
@@ -4853,7 +4835,7 @@ export interface SiteConfigurationForm {
|
|
|
4853
4835
|
export interface SiteConfigurationReduced {
|
|
4854
4836
|
/** @format uuid */
|
|
4855
4837
|
id: string;
|
|
4856
|
-
type:
|
|
4838
|
+
type: SiteConfigurationReducedTypeEnum;
|
|
4857
4839
|
url?: string | null;
|
|
4858
4840
|
name: string;
|
|
4859
4841
|
/** @format int64 */
|
|
@@ -4870,7 +4852,7 @@ export interface SiteConfigurationRequest {
|
|
|
4870
4852
|
entityID: string;
|
|
4871
4853
|
/** @format int32 */
|
|
4872
4854
|
entityType: number;
|
|
4873
|
-
type:
|
|
4855
|
+
type: SiteConfigurationRequestTypeEnum;
|
|
4874
4856
|
url: string;
|
|
4875
4857
|
name: string;
|
|
4876
4858
|
introduction?: string | null;
|
|
@@ -5045,7 +5027,7 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
5045
5027
|
export interface SiteConfigurationSummary {
|
|
5046
5028
|
/** @format uuid */
|
|
5047
5029
|
id: string;
|
|
5048
|
-
type:
|
|
5030
|
+
type: SiteConfigurationSummaryTypeEnum;
|
|
5049
5031
|
url?: string | null;
|
|
5050
5032
|
name: string;
|
|
5051
5033
|
/** @format int64 */
|
|
@@ -5072,6 +5054,66 @@ export interface SiteConfigurationWithInherited {
|
|
|
5072
5054
|
siteConfiguration: SiteConfiguration;
|
|
5073
5055
|
inheritedSiteConfiguration?: SiteConfiguration | null;
|
|
5074
5056
|
}
|
|
5057
|
+
export interface SiteTile {
|
|
5058
|
+
/** @format uuid */
|
|
5059
|
+
id: string;
|
|
5060
|
+
/** @format uuid */
|
|
5061
|
+
brandSiteConfigurationID: string;
|
|
5062
|
+
icon: string;
|
|
5063
|
+
title: string;
|
|
5064
|
+
description: string;
|
|
5065
|
+
linkUrl: string;
|
|
5066
|
+
linkTarget: SiteTileLinkTargetEnum;
|
|
5067
|
+
siteTypes: SiteConfigurationType[];
|
|
5068
|
+
locations: SiteTileLocation[];
|
|
5069
|
+
audience: UserRole[];
|
|
5070
|
+
/** @format int32 */
|
|
5071
|
+
weight: number;
|
|
5072
|
+
excludedSiteConfigurationIDs: string[];
|
|
5073
|
+
/** @format date-time */
|
|
5074
|
+
createdAt: string;
|
|
5075
|
+
/** @format date-time */
|
|
5076
|
+
updatedAt?: string | null;
|
|
5077
|
+
}
|
|
5078
|
+
export interface SiteTilePaginated {
|
|
5079
|
+
rows: SiteTile[];
|
|
5080
|
+
pagination: Pagination;
|
|
5081
|
+
/** @format int64 */
|
|
5082
|
+
count: number;
|
|
5083
|
+
}
|
|
5084
|
+
export interface SiteTileRequest {
|
|
5085
|
+
/** @format uuid */
|
|
5086
|
+
brandSiteConfigurationID: string;
|
|
5087
|
+
icon: string;
|
|
5088
|
+
title: string;
|
|
5089
|
+
description: string;
|
|
5090
|
+
linkUrl: string;
|
|
5091
|
+
linkTarget: SiteTileRequestLinkTargetEnum;
|
|
5092
|
+
siteTypes: SiteConfigurationType[];
|
|
5093
|
+
locations: SiteTileLocation[];
|
|
5094
|
+
audience: UserRole[];
|
|
5095
|
+
/** @format int32 */
|
|
5096
|
+
weight: number;
|
|
5097
|
+
excludedSiteConfigurationIDs: string[];
|
|
5098
|
+
}
|
|
5099
|
+
export interface SiteTileSearchCriteria {
|
|
5100
|
+
searchText?: string | null;
|
|
5101
|
+
/** @format uuid */
|
|
5102
|
+
brandSiteConfigurationID?: string | null;
|
|
5103
|
+
siteType?: SiteConfigurationType | null;
|
|
5104
|
+
location?: SiteTileLocation | null;
|
|
5105
|
+
}
|
|
5106
|
+
export interface SiteTileView {
|
|
5107
|
+
/** @format uuid */
|
|
5108
|
+
id: string;
|
|
5109
|
+
icon: string;
|
|
5110
|
+
title: string;
|
|
5111
|
+
description: string;
|
|
5112
|
+
linkUrl: string;
|
|
5113
|
+
linkTarget: SiteTileViewLinkTargetEnum;
|
|
5114
|
+
/** @format int32 */
|
|
5115
|
+
weight: number;
|
|
5116
|
+
}
|
|
5075
5117
|
export interface SocialSurveyRecord {
|
|
5076
5118
|
/** @format date-time */
|
|
5077
5119
|
createdAt: string;
|
|
@@ -5299,7 +5341,7 @@ export interface UnregisteredBorrower {
|
|
|
5299
5341
|
lastName?: string | null;
|
|
5300
5342
|
fullName?: string | null;
|
|
5301
5343
|
email?: string | null;
|
|
5302
|
-
role:
|
|
5344
|
+
role: UnregisteredBorrowerRoleEnum;
|
|
5303
5345
|
}
|
|
5304
5346
|
export interface UpdateAccountRequest {
|
|
5305
5347
|
name: string;
|
|
@@ -5323,7 +5365,7 @@ export interface UpdateAiCanonicalFieldRequest {
|
|
|
5323
5365
|
}
|
|
5324
5366
|
export interface UpdateAiGuardrailRequest {
|
|
5325
5367
|
name: string;
|
|
5326
|
-
category:
|
|
5368
|
+
category: UpdateAiGuardrailRequestCategoryEnum;
|
|
5327
5369
|
description?: string | null;
|
|
5328
5370
|
keywords: string[];
|
|
5329
5371
|
responseTemplate: string;
|
|
@@ -5344,16 +5386,12 @@ export interface UpdateAiPromptRequest {
|
|
|
5344
5386
|
requiredDataSources?: string[] | null;
|
|
5345
5387
|
outputType?: AiOutputType | null;
|
|
5346
5388
|
}
|
|
5347
|
-
export interface UpdateAiPromptToolsRequest {
|
|
5348
|
-
tools: AiPromptToolInput[];
|
|
5349
|
-
agentSystemPrompt?: string | null;
|
|
5350
|
-
}
|
|
5351
5389
|
export interface UpdateAiUrlSourceRequest {
|
|
5352
5390
|
name: string;
|
|
5353
5391
|
url: string;
|
|
5354
5392
|
description?: string | null;
|
|
5355
|
-
category:
|
|
5356
|
-
scope:
|
|
5393
|
+
category: UpdateAiUrlSourceRequestCategoryEnum;
|
|
5394
|
+
scope: UpdateAiUrlSourceRequestScopeEnum;
|
|
5357
5395
|
}
|
|
5358
5396
|
export interface UpdateCustomFieldDefinitionRequest {
|
|
5359
5397
|
isRequired: boolean;
|
|
@@ -5640,7 +5678,7 @@ export interface UserDevice {
|
|
|
5640
5678
|
export interface UserDraft {
|
|
5641
5679
|
/** @format uuid */
|
|
5642
5680
|
draftID: string;
|
|
5643
|
-
role:
|
|
5681
|
+
role: UserDraftRoleEnum;
|
|
5644
5682
|
user: User;
|
|
5645
5683
|
}
|
|
5646
5684
|
export interface UserDraftPaginated {
|
|
@@ -5664,7 +5702,7 @@ export interface UserGroupAccessScope {
|
|
|
5664
5702
|
id: string;
|
|
5665
5703
|
/** @format uuid */
|
|
5666
5704
|
groupId: string;
|
|
5667
|
-
scopeType:
|
|
5705
|
+
scopeType: UserGroupAccessScopeScopeTypeEnum;
|
|
5668
5706
|
/** @format uuid */
|
|
5669
5707
|
userId?: string | null;
|
|
5670
5708
|
/** @format uuid */
|
|
@@ -5697,7 +5735,7 @@ export interface UserLoan {
|
|
|
5697
5735
|
deletedAt?: string | null;
|
|
5698
5736
|
loanID: string;
|
|
5699
5737
|
user: User;
|
|
5700
|
-
role:
|
|
5738
|
+
role: UserLoanRoleEnum;
|
|
5701
5739
|
/** @format int32 */
|
|
5702
5740
|
borrowerPair?: number | null;
|
|
5703
5741
|
/** @format int32 */
|
|
@@ -5709,11 +5747,11 @@ export interface UserLoanConsent {
|
|
|
5709
5747
|
id: string;
|
|
5710
5748
|
/** @format uuid */
|
|
5711
5749
|
userLoanID: string;
|
|
5712
|
-
type:
|
|
5750
|
+
type: UserLoanConsentTypeEnum;
|
|
5713
5751
|
providedConsent: boolean;
|
|
5714
5752
|
source?: ConsentSource | null;
|
|
5715
5753
|
ipAddress?: string | null;
|
|
5716
|
-
losSyncStatus:
|
|
5754
|
+
losSyncStatus: UserLoanConsentLosSyncStatusEnum;
|
|
5717
5755
|
/** @format date-time */
|
|
5718
5756
|
createdAt: string;
|
|
5719
5757
|
/** @format date-time */
|
|
@@ -5843,7 +5881,7 @@ export interface UserSummary {
|
|
|
5843
5881
|
id: string;
|
|
5844
5882
|
name?: string | null;
|
|
5845
5883
|
email?: string | null;
|
|
5846
|
-
role:
|
|
5884
|
+
role: UserSummaryRoleEnum;
|
|
5847
5885
|
}
|
|
5848
5886
|
export interface VerifyPasswordRequest {
|
|
5849
5887
|
email: string;
|
|
@@ -5870,6 +5908,92 @@ export interface Workflow {
|
|
|
5870
5908
|
tileSubtitle: string;
|
|
5871
5909
|
icon: string;
|
|
5872
5910
|
}
|
|
5911
|
+
export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
|
|
5912
|
+
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" | "LoanAccessDenied";
|
|
5913
|
+
export type AiChatMetadataIntentEnum = "Greeting" | "Invalid" | "Relevant" | "LoanSpecific" | "DocumentList" | "GeneralKnowledge" | "Blocked" | "Action" | "ConversationMeta" | "Capabilities" | "UsageReport";
|
|
5914
|
+
export type AiChatStructuredDataTypeEnum = "Table" | "DocumentAnalysis" | "DocumentList" | "GeneratedDocument";
|
|
5915
|
+
export type AiGuardrailCategoryEnum = "ContentSafety" | "PromptInjection" | "Privacy" | "Legal";
|
|
5916
|
+
export type AiUrlSourceCategoryEnum = "Regulatory" | "Guidelines" | "MarketData" | "Custom";
|
|
5917
|
+
export type AiUrlSourceScopeEnum = "FullDomain" | "SpecificPath";
|
|
5918
|
+
export type AuditLogEntryChangeTypeEnum = "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored" | "Deactivated" | "Reactivated";
|
|
5919
|
+
export type BorrowerCountRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5920
|
+
export type BorrowerIdentityRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5921
|
+
export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
|
|
5922
|
+
export type CreateAccountRequestEnvironmentEnum = "Development" | "Staging" | "UAT" | "Production";
|
|
5923
|
+
export type CreateAiGuardrailRequestCategoryEnum = "ContentSafety" | "PromptInjection" | "Privacy" | "Legal";
|
|
5924
|
+
export type CreateAiUrlSourceRequestCategoryEnum = "Regulatory" | "Guidelines" | "MarketData" | "Custom";
|
|
5925
|
+
export type CreateAiUrlSourceRequestScopeEnum = "FullDomain" | "SpecificPath";
|
|
5926
|
+
export type CreateCustomFieldDefinitionRequestDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5927
|
+
export type CreateCustomFieldDefinitionRequestEntityTypeEnum = "Loan";
|
|
5928
|
+
export type CreateGroupMemberRequestLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5929
|
+
/** @deprecated */
|
|
5930
|
+
export type CreateInviteRequestRelationshipEnum = "NotApplicable" | "Spouse" | "NonSpouse";
|
|
5931
|
+
export type CreateLoanImportRequestImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5932
|
+
export type CreateUserDraftLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5933
|
+
export type CustomFieldDefinitionDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5934
|
+
export type CustomFieldDefinitionEntityTypeEnum = "Loan";
|
|
5935
|
+
export type CustomFieldEntryDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5936
|
+
export type CustomFieldPermissionRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5937
|
+
export type CustomFieldPermissionAccessLevelEnum = "NoAccess" | "ReadOnly" | "ReadWrite";
|
|
5938
|
+
export type CustomFieldPermissionRequestRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5939
|
+
export type CustomFieldPermissionRequestAccessLevelEnum = "NoAccess" | "ReadOnly" | "ReadWrite";
|
|
5940
|
+
export type CustomFieldValueDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5941
|
+
export type DraftTypeEnum = "NewLoan" | "EditLoan";
|
|
5942
|
+
export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
|
|
5943
|
+
export type EncompassCredentialsDetailEncompassEnvironmentEnum = "Production" | "UAT";
|
|
5944
|
+
export type EncompassCredentialsDetailSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5945
|
+
export type EncompassCredentialsRequestEncompassEnvironmentEnum = "Production" | "UAT";
|
|
5946
|
+
export type EncompassCredentialsRequestSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5947
|
+
export type EncompassRequestLogOperationTypeEnum = "FieldUpdate" | "ConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
|
|
5948
|
+
export type EncompassRequestLogOutcomeEnum = "Success" | "Failure" | "PartialSuccess";
|
|
5949
|
+
export type FusionReportFilterFilterTypeEnum = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
|
|
5950
|
+
export type GenerateSystemPromptRequestCategoryEnum = "DocumentAnalysis" | "DataQuery" | "General" | "Action";
|
|
5951
|
+
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";
|
|
5952
|
+
export type LoanSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5953
|
+
export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
|
|
5954
|
+
export type LoanContactRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5955
|
+
export type LoanDocumentFolderPermissionRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5956
|
+
export type LoanDocumentFolderPermissionLevelEnum = "None" | "Read" | "Write" | "Manage";
|
|
5957
|
+
export type LoanDocumentFolderPermissionRequestRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5958
|
+
export type LoanDocumentFolderPermissionRequestLevelEnum = "None" | "Read" | "Write" | "Manage";
|
|
5959
|
+
export type LoanImportStatusEnum = "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
|
|
5960
|
+
export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5961
|
+
export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5962
|
+
export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5963
|
+
export type LoanLogTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent" | "DocumentClassified" | "CoBorrowerEmailAutoFixed";
|
|
5964
|
+
export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5965
|
+
export type LoanLogDetailTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent" | "DocumentClassified" | "CoBorrowerEmailAutoFixed";
|
|
5966
|
+
export type LoanTaskStatusSummaryStatusEnum = "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
|
|
5967
|
+
export type LoanUserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5968
|
+
export type LosOperationTrackingStatusEnum = "Pending" | "Success" | "Failed" | "ConfigurationError" | "PermanentFailure" | "Locked";
|
|
5969
|
+
export type LosSyncStepSeverityEnum = "Success" | "Info" | "Warning" | "Error";
|
|
5970
|
+
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";
|
|
5971
|
+
export type SiteConfigurationTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5972
|
+
export type SiteConfigurationByUrlTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5973
|
+
export type SiteConfigurationReducedTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5974
|
+
export type SiteConfigurationRequestTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5975
|
+
export type SiteConfigurationSummaryTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5976
|
+
export type SiteTileLinkTargetEnum = "Self" | "Blank";
|
|
5977
|
+
export type SiteTileRequestLinkTargetEnum = "Self" | "Blank";
|
|
5978
|
+
export type SiteTileViewLinkTargetEnum = "Self" | "Blank";
|
|
5979
|
+
export type UnregisteredBorrowerRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5980
|
+
export type UpdateAiGuardrailRequestCategoryEnum = "ContentSafety" | "PromptInjection" | "Privacy" | "Legal";
|
|
5981
|
+
export type UpdateAiUrlSourceRequestCategoryEnum = "Regulatory" | "Guidelines" | "MarketData" | "Custom";
|
|
5982
|
+
export type UpdateAiUrlSourceRequestScopeEnum = "FullDomain" | "SpecificPath";
|
|
5983
|
+
export type UserDraftRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5984
|
+
export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
|
|
5985
|
+
export type UserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5986
|
+
export type UserLoanConsentTypeEnum = "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
5987
|
+
export type UserLoanConsentLosSyncStatusEnum = "NotStarted" | "Failed" | "Success";
|
|
5988
|
+
export type UserSummaryRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5989
|
+
export type GetCustomFieldDefinitionsParamsEntityTypeEnum = "Loan";
|
|
5990
|
+
/** @default "Realtor" */
|
|
5991
|
+
export type GetPartnersParamsRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5992
|
+
export type GetSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5993
|
+
export type GetSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5994
|
+
export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5995
|
+
export type CreateOrReplaceSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5996
|
+
export type GetSiteTilesBySiteConfigurationParamsLocationEnum = "HomePage" | "Dashboard";
|
|
5873
5997
|
import type { AxiosInstance, AxiosRequestConfig, AxiosResponse, ResponseType } from "axios";
|
|
5874
5998
|
export type QueryParamsType = Record<string | number, any>;
|
|
5875
5999
|
export interface FullRequestParams extends Omit<AxiosRequestConfig, "data" | "params" | "url" | "responseType"> {
|
|
@@ -5892,14 +6016,7 @@ export interface ApiConfig<SecurityDataType = unknown> extends Omit<AxiosRequest
|
|
|
5892
6016
|
secure?: boolean;
|
|
5893
6017
|
format?: ResponseType;
|
|
5894
6018
|
}
|
|
5895
|
-
export
|
|
5896
|
-
JsonPatch = "application/json-patch+json",
|
|
5897
|
-
Json = "application/json",
|
|
5898
|
-
JsonApi = "application/vnd.api+json",
|
|
5899
|
-
FormData = "multipart/form-data",
|
|
5900
|
-
UrlEncoded = "application/x-www-form-urlencoded",
|
|
5901
|
-
Text = "text/plain"
|
|
5902
|
-
}
|
|
6019
|
+
export type ContentType = "application/json" | "application/vnd.api+json" | "multipart/form-data" | "application/x-www-form-urlencoded" | "text/plain";
|
|
5903
6020
|
export declare class HttpClient<SecurityDataType = unknown> {
|
|
5904
6021
|
instance: AxiosInstance;
|
|
5905
6022
|
private securityData;
|
|
@@ -5915,7 +6032,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
|
|
|
5915
6032
|
}
|
|
5916
6033
|
/**
|
|
5917
6034
|
* @title The Big POS API
|
|
5918
|
-
* @version v2.
|
|
6035
|
+
* @version v2.47.0
|
|
5919
6036
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
5920
6037
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
5921
6038
|
*/
|
|
@@ -6193,30 +6310,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6193
6310
|
* @response `404` `ProblemDetails` Not Found
|
|
6194
6311
|
*/
|
|
6195
6312
|
deleteAiPrompt: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6196
|
-
/**
|
|
6197
|
-
* No description
|
|
6198
|
-
*
|
|
6199
|
-
* @tags AiAdminPrompt
|
|
6200
|
-
* @name GetAiTools
|
|
6201
|
-
* @summary List available agent tools and their settings schema
|
|
6202
|
-
* @request GET:/api/ai/prompts/tools
|
|
6203
|
-
* @secure
|
|
6204
|
-
* @response `200` `(AiToolCatalogItem)[]` OK
|
|
6205
|
-
*/
|
|
6206
|
-
getAiTools: (params?: RequestParams) => Promise<AxiosResponse<AiToolCatalogItem[], any, {}>>;
|
|
6207
|
-
/**
|
|
6208
|
-
* No description
|
|
6209
|
-
*
|
|
6210
|
-
* @tags AiAdminPrompt
|
|
6211
|
-
* @name UpdateAiPromptTools
|
|
6212
|
-
* @summary Replace the prompt's agent tool configuration
|
|
6213
|
-
* @request PUT:/api/ai/prompts/{id}/tools
|
|
6214
|
-
* @secure
|
|
6215
|
-
* @response `200` `AiPrompt` OK
|
|
6216
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
6217
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6218
|
-
*/
|
|
6219
|
-
updateAiPromptTools: (id: string, data: UpdateAiPromptToolsRequest, params?: RequestParams) => Promise<AxiosResponse<AiPrompt, any, {}>>;
|
|
6220
6313
|
/**
|
|
6221
6314
|
* No description
|
|
6222
6315
|
*
|
|
@@ -7409,7 +7502,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7409
7502
|
* @response `200` `(CustomFieldDefinition)[]` OK
|
|
7410
7503
|
*/
|
|
7411
7504
|
getCustomFieldDefinitions: (query?: {
|
|
7412
|
-
entityType?:
|
|
7505
|
+
entityType?: GetCustomFieldDefinitionsParamsEntityTypeEnum;
|
|
7413
7506
|
}, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition[], any, {}>>;
|
|
7414
7507
|
/**
|
|
7415
7508
|
* No description
|
|
@@ -8921,10 +9014,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8921
9014
|
* @summary Download By ID
|
|
8922
9015
|
* @request GET:/api/loans/{loanId}/documents/{documentId}/download
|
|
8923
9016
|
* @secure
|
|
8924
|
-
* @response `200` `
|
|
9017
|
+
* @response `200` `Blob` OK
|
|
8925
9018
|
* @response `404` `ProblemDetails` Not Found
|
|
8926
9019
|
*/
|
|
8927
|
-
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
9020
|
+
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<Blob, any, {}>>;
|
|
8928
9021
|
/**
|
|
8929
9022
|
* No description
|
|
8930
9023
|
*
|
|
@@ -10132,7 +10225,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10132
10225
|
getPartners: (query?: {
|
|
10133
10226
|
showAll?: boolean;
|
|
10134
10227
|
/** @default "Realtor" */
|
|
10135
|
-
role?:
|
|
10228
|
+
role?: GetPartnersParamsRoleEnum;
|
|
10136
10229
|
/** @format int32 */
|
|
10137
10230
|
pageSize?: number;
|
|
10138
10231
|
/** @format int32 */
|
|
@@ -10310,7 +10403,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10310
10403
|
* @response `200` `File` OK
|
|
10311
10404
|
* @response `404` `ProblemDetails` Not Found
|
|
10312
10405
|
*/
|
|
10313
|
-
getSamlMetadata: (sSoIntegration:
|
|
10406
|
+
getSamlMetadata: (sSoIntegration: GetSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
10314
10407
|
/**
|
|
10315
10408
|
* No description
|
|
10316
10409
|
*
|
|
@@ -10321,7 +10414,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10321
10414
|
* @secure
|
|
10322
10415
|
* @response `200` `File` OK
|
|
10323
10416
|
*/
|
|
10324
|
-
createOrReplaceSamlMetadata: (sSoIntegration:
|
|
10417
|
+
createOrReplaceSamlMetadata: (sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
10325
10418
|
/**
|
|
10326
10419
|
* No description
|
|
10327
10420
|
*
|
|
@@ -10380,6 +10473,95 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10380
10473
|
* @response `200` `GetForm` OK
|
|
10381
10474
|
*/
|
|
10382
10475
|
getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
|
|
10476
|
+
/**
|
|
10477
|
+
* No description
|
|
10478
|
+
*
|
|
10479
|
+
* @tags SiteTiles
|
|
10480
|
+
* @name SearchSiteTiles
|
|
10481
|
+
* @summary Search Site Tiles
|
|
10482
|
+
* @request POST:/api/site-tiles/search
|
|
10483
|
+
* @secure
|
|
10484
|
+
* @response `200` `SiteTilePaginated` OK
|
|
10485
|
+
* @response `403` `ProblemDetails` Forbidden
|
|
10486
|
+
*/
|
|
10487
|
+
searchSiteTiles: (data: SiteTileSearchCriteria, query?: {
|
|
10488
|
+
/** @format int32 */
|
|
10489
|
+
pageSize?: number;
|
|
10490
|
+
/** @format int32 */
|
|
10491
|
+
pageNumber?: number;
|
|
10492
|
+
sortBy?: string;
|
|
10493
|
+
sortDirection?: string;
|
|
10494
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteTilePaginated, any, {}>>;
|
|
10495
|
+
/**
|
|
10496
|
+
* No description
|
|
10497
|
+
*
|
|
10498
|
+
* @tags SiteTiles
|
|
10499
|
+
* @name GetSiteTilesBySiteConfiguration
|
|
10500
|
+
* @summary Get Site Tiles by site configuration and location
|
|
10501
|
+
* @request GET:/api/site-tiles/by-site-configuration
|
|
10502
|
+
* @secure
|
|
10503
|
+
* @response `200` `(SiteTileView)[]` OK
|
|
10504
|
+
* @response `401` `ProblemDetails` Unauthorized
|
|
10505
|
+
* @response `404` `ProblemDetails` Not Found
|
|
10506
|
+
*/
|
|
10507
|
+
getSiteTilesBySiteConfiguration: (query?: {
|
|
10508
|
+
/** @format uuid */
|
|
10509
|
+
siteConfigurationId?: string;
|
|
10510
|
+
location?: GetSiteTilesBySiteConfigurationParamsLocationEnum;
|
|
10511
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteTileView[], any, {}>>;
|
|
10512
|
+
/**
|
|
10513
|
+
* No description
|
|
10514
|
+
*
|
|
10515
|
+
* @tags SiteTiles
|
|
10516
|
+
* @name GetSiteTile
|
|
10517
|
+
* @summary Get Site Tile by ID
|
|
10518
|
+
* @request GET:/api/site-tiles/{siteTileId}
|
|
10519
|
+
* @secure
|
|
10520
|
+
* @response `200` `SiteTile` OK
|
|
10521
|
+
* @response `403` `ProblemDetails` Forbidden
|
|
10522
|
+
* @response `404` `ProblemDetails` Not Found
|
|
10523
|
+
*/
|
|
10524
|
+
getSiteTile: (siteTileId: string, params?: RequestParams) => Promise<AxiosResponse<SiteTile, any, {}>>;
|
|
10525
|
+
/**
|
|
10526
|
+
* No description
|
|
10527
|
+
*
|
|
10528
|
+
* @tags SiteTiles
|
|
10529
|
+
* @name UpdateSiteTile
|
|
10530
|
+
* @summary Update Site Tile
|
|
10531
|
+
* @request PUT:/api/site-tiles/{siteTileId}
|
|
10532
|
+
* @secure
|
|
10533
|
+
* @response `200` `SiteTile` OK
|
|
10534
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
10535
|
+
* @response `403` `ProblemDetails` Forbidden
|
|
10536
|
+
* @response `404` `ProblemDetails` Not Found
|
|
10537
|
+
*/
|
|
10538
|
+
updateSiteTile: (siteTileId: string, data: SiteTileRequest, params?: RequestParams) => Promise<AxiosResponse<SiteTile, any, {}>>;
|
|
10539
|
+
/**
|
|
10540
|
+
* No description
|
|
10541
|
+
*
|
|
10542
|
+
* @tags SiteTiles
|
|
10543
|
+
* @name DeleteSiteTile
|
|
10544
|
+
* @summary Delete Site Tile
|
|
10545
|
+
* @request DELETE:/api/site-tiles/{siteTileId}
|
|
10546
|
+
* @secure
|
|
10547
|
+
* @response `204` `void` No Content
|
|
10548
|
+
* @response `403` `ProblemDetails` Forbidden
|
|
10549
|
+
* @response `404` `ProblemDetails` Not Found
|
|
10550
|
+
*/
|
|
10551
|
+
deleteSiteTile: (siteTileId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10552
|
+
/**
|
|
10553
|
+
* No description
|
|
10554
|
+
*
|
|
10555
|
+
* @tags SiteTiles
|
|
10556
|
+
* @name CreateSiteTile
|
|
10557
|
+
* @summary Create Site Tile
|
|
10558
|
+
* @request POST:/api/site-tiles
|
|
10559
|
+
* @secure
|
|
10560
|
+
* @response `201` `SiteTile` Created
|
|
10561
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
10562
|
+
* @response `403` `ProblemDetails` Forbidden
|
|
10563
|
+
*/
|
|
10564
|
+
createSiteTile: (data: SiteTileRequest, params?: RequestParams) => Promise<AxiosResponse<SiteTile, any, {}>>;
|
|
10383
10565
|
/**
|
|
10384
10566
|
* No description
|
|
10385
10567
|
*
|