@matech/thebigpos-sdk 2.46.8-aibi-rc2 → 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 -157
- 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 -874
- 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;
|
|
@@ -1151,15 +1133,13 @@ export interface CreateAiPromptRequest {
|
|
|
1151
1133
|
bedrockModelId?: string | null;
|
|
1152
1134
|
requiredDataSources?: string[] | null;
|
|
1153
1135
|
outputType?: AiOutputType | null;
|
|
1154
|
-
scope?: AiPromptScope | null;
|
|
1155
|
-
inputHint?: string | null;
|
|
1156
1136
|
}
|
|
1157
1137
|
export interface CreateAiUrlSourceRequest {
|
|
1158
1138
|
name: string;
|
|
1159
1139
|
url: string;
|
|
1160
1140
|
description?: string | null;
|
|
1161
|
-
category:
|
|
1162
|
-
scope:
|
|
1141
|
+
category: CreateAiUrlSourceRequestCategoryEnum;
|
|
1142
|
+
scope: CreateAiUrlSourceRequestScopeEnum;
|
|
1163
1143
|
}
|
|
1164
1144
|
export interface CreateBranchRequest {
|
|
1165
1145
|
name: string;
|
|
@@ -1182,8 +1162,8 @@ export interface CreateCustomFieldDefinitionRequest {
|
|
|
1182
1162
|
name: string;
|
|
1183
1163
|
defaultValue?: string | null;
|
|
1184
1164
|
regexPattern?: string | null;
|
|
1185
|
-
dataType:
|
|
1186
|
-
entityType:
|
|
1165
|
+
dataType: CreateCustomFieldDefinitionRequestDataTypeEnum;
|
|
1166
|
+
entityType: CreateCustomFieldDefinitionRequestEntityTypeEnum;
|
|
1187
1167
|
options?: CustomFieldOptionRequest[] | null;
|
|
1188
1168
|
permissions?: CustomFieldPermissionRequest[] | null;
|
|
1189
1169
|
}
|
|
@@ -1198,7 +1178,7 @@ export interface CreateDocumentTemplateRequest {
|
|
|
1198
1178
|
export interface CreateGroupMemberRequest {
|
|
1199
1179
|
/** @format uuid */
|
|
1200
1180
|
userId: string;
|
|
1201
|
-
loanRole:
|
|
1181
|
+
loanRole: CreateGroupMemberRequestLoanRoleEnum;
|
|
1202
1182
|
}
|
|
1203
1183
|
export interface CreateInviteRequest {
|
|
1204
1184
|
firstName: string;
|
|
@@ -1206,7 +1186,7 @@ export interface CreateInviteRequest {
|
|
|
1206
1186
|
emailAddress: string;
|
|
1207
1187
|
phoneNumber?: string | null;
|
|
1208
1188
|
/** @deprecated */
|
|
1209
|
-
relationship:
|
|
1189
|
+
relationship: CreateInviteRequestRelationshipEnum;
|
|
1210
1190
|
loanID: string;
|
|
1211
1191
|
route?: string | null;
|
|
1212
1192
|
/** @format uuid */
|
|
@@ -1226,7 +1206,7 @@ export interface CreateLoanImportRequest {
|
|
|
1226
1206
|
endDate: string;
|
|
1227
1207
|
/** @format date-time */
|
|
1228
1208
|
startDate: string;
|
|
1229
|
-
importMode:
|
|
1209
|
+
importMode: CreateLoanImportRequestImportModeEnum;
|
|
1230
1210
|
}
|
|
1231
1211
|
export interface CreateSession {
|
|
1232
1212
|
sessionId: string;
|
|
@@ -1244,7 +1224,7 @@ export interface CreateUserDeviceRequest {
|
|
|
1244
1224
|
token: string;
|
|
1245
1225
|
}
|
|
1246
1226
|
export interface CreateUserDraft {
|
|
1247
|
-
loanRole:
|
|
1227
|
+
loanRole: CreateUserDraftLoanRoleEnum;
|
|
1248
1228
|
}
|
|
1249
1229
|
export interface CreateUserGroupRequest {
|
|
1250
1230
|
name: string;
|
|
@@ -1305,8 +1285,8 @@ export interface CustomFieldDefinition {
|
|
|
1305
1285
|
name: string;
|
|
1306
1286
|
defaultValue?: string | null;
|
|
1307
1287
|
regexPattern?: string | null;
|
|
1308
|
-
dataType:
|
|
1309
|
-
entityType:
|
|
1288
|
+
dataType: CustomFieldDefinitionDataTypeEnum;
|
|
1289
|
+
entityType: CustomFieldDefinitionEntityTypeEnum;
|
|
1310
1290
|
options: CustomFieldOption[];
|
|
1311
1291
|
permissions: CustomFieldPermission[];
|
|
1312
1292
|
encompassMapping?: EncompassMapping | null;
|
|
@@ -1320,7 +1300,7 @@ export interface CustomFieldEntry {
|
|
|
1320
1300
|
displayOrder: number;
|
|
1321
1301
|
name: string;
|
|
1322
1302
|
value: string;
|
|
1323
|
-
dataType:
|
|
1303
|
+
dataType: CustomFieldEntryDataTypeEnum;
|
|
1324
1304
|
}
|
|
1325
1305
|
export interface CustomFieldOption {
|
|
1326
1306
|
/** @format uuid */
|
|
@@ -1337,12 +1317,12 @@ export interface CustomFieldOptionRequest {
|
|
|
1337
1317
|
export interface CustomFieldPermission {
|
|
1338
1318
|
/** @format uuid */
|
|
1339
1319
|
id: string;
|
|
1340
|
-
role:
|
|
1341
|
-
accessLevel:
|
|
1320
|
+
role: CustomFieldPermissionRoleEnum;
|
|
1321
|
+
accessLevel: CustomFieldPermissionAccessLevelEnum;
|
|
1342
1322
|
}
|
|
1343
1323
|
export interface CustomFieldPermissionRequest {
|
|
1344
|
-
role:
|
|
1345
|
-
accessLevel:
|
|
1324
|
+
role: CustomFieldPermissionRequestRoleEnum;
|
|
1325
|
+
accessLevel: CustomFieldPermissionRequestAccessLevelEnum;
|
|
1346
1326
|
}
|
|
1347
1327
|
export interface CustomFieldValue {
|
|
1348
1328
|
/** @format uuid */
|
|
@@ -1353,7 +1333,7 @@ export interface CustomFieldValue {
|
|
|
1353
1333
|
customFieldDefinitionID: string;
|
|
1354
1334
|
value: string;
|
|
1355
1335
|
definitionName: string;
|
|
1356
|
-
dataType:
|
|
1336
|
+
dataType: CustomFieldValueDataTypeEnum;
|
|
1357
1337
|
}
|
|
1358
1338
|
export interface DetailedUser {
|
|
1359
1339
|
/** @format date-time */
|
|
@@ -1579,7 +1559,7 @@ export interface Draft {
|
|
|
1579
1559
|
siteConfiguration: SiteConfigurationReduced;
|
|
1580
1560
|
/** @format uuid */
|
|
1581
1561
|
loanID?: string | null;
|
|
1582
|
-
type:
|
|
1562
|
+
type: DraftTypeEnum;
|
|
1583
1563
|
isCoBorrower: boolean;
|
|
1584
1564
|
}
|
|
1585
1565
|
export interface DraftContent {
|
|
@@ -1597,7 +1577,7 @@ export interface DraftContent {
|
|
|
1597
1577
|
siteConfiguration: SiteConfigurationReduced;
|
|
1598
1578
|
/** @format uuid */
|
|
1599
1579
|
loanID?: string | null;
|
|
1600
|
-
type:
|
|
1580
|
+
type: DraftContentTypeEnum;
|
|
1601
1581
|
isCoBorrower: boolean;
|
|
1602
1582
|
applicationPayload: any;
|
|
1603
1583
|
}
|
|
@@ -1613,7 +1593,7 @@ export interface DraftLoanOfficerReassignRequest {
|
|
|
1613
1593
|
}
|
|
1614
1594
|
export interface DraftRequest {
|
|
1615
1595
|
applicationPayload: any;
|
|
1616
|
-
customData?: any;
|
|
1596
|
+
customData?: any | null;
|
|
1617
1597
|
isCoBorrower: boolean;
|
|
1618
1598
|
}
|
|
1619
1599
|
export interface EconsentPendingSummary {
|
|
@@ -1683,9 +1663,9 @@ export interface EncompassCredentialsDetail {
|
|
|
1683
1663
|
clearStateIfUnlicensed: boolean;
|
|
1684
1664
|
/** @deprecated */
|
|
1685
1665
|
baseUrl?: string | null;
|
|
1686
|
-
encompassEnvironment:
|
|
1666
|
+
encompassEnvironment: EncompassCredentialsDetailEncompassEnvironmentEnum;
|
|
1687
1667
|
consumerConnectWidgetHost?: string | null;
|
|
1688
|
-
signingMethod:
|
|
1668
|
+
signingMethod: EncompassCredentialsDetailSigningMethodEnum;
|
|
1689
1669
|
subscriptionId?: string | null;
|
|
1690
1670
|
environment?: string | null;
|
|
1691
1671
|
/** @format uuid */
|
|
@@ -1701,9 +1681,9 @@ export interface EncompassCredentialsRequest {
|
|
|
1701
1681
|
clearStateIfUnlicensed: boolean;
|
|
1702
1682
|
/** @deprecated */
|
|
1703
1683
|
baseUrl?: string | null;
|
|
1704
|
-
encompassEnvironment:
|
|
1684
|
+
encompassEnvironment: EncompassCredentialsRequestEncompassEnvironmentEnum;
|
|
1705
1685
|
consumerConnectWidgetHost?: string | null;
|
|
1706
|
-
signingMethod:
|
|
1686
|
+
signingMethod: EncompassCredentialsRequestSigningMethodEnum;
|
|
1707
1687
|
subscriptionId?: string | null;
|
|
1708
1688
|
environment?: string | null;
|
|
1709
1689
|
clientID?: string | null;
|
|
@@ -1813,8 +1793,8 @@ export interface EncompassRequestLog {
|
|
|
1813
1793
|
losId?: string | null;
|
|
1814
1794
|
/** @format uuid */
|
|
1815
1795
|
accountId: string;
|
|
1816
|
-
operationType:
|
|
1817
|
-
outcome:
|
|
1796
|
+
operationType: EncompassRequestLogOperationTypeEnum;
|
|
1797
|
+
outcome: EncompassRequestLogOutcomeEnum;
|
|
1818
1798
|
message: string;
|
|
1819
1799
|
endpoint?: string | null;
|
|
1820
1800
|
httpMethod?: string | null;
|
|
@@ -1822,7 +1802,7 @@ export interface EncompassRequestLog {
|
|
|
1822
1802
|
httpStatusCode?: number | null;
|
|
1823
1803
|
/** @format int64 */
|
|
1824
1804
|
durationMs?: number | null;
|
|
1825
|
-
context?: any;
|
|
1805
|
+
context?: any | null;
|
|
1826
1806
|
/** @format date-time */
|
|
1827
1807
|
createdAt: string;
|
|
1828
1808
|
}
|
|
@@ -1861,7 +1841,7 @@ export interface FileSearchCriteria {
|
|
|
1861
1841
|
export interface FileWithBytes {
|
|
1862
1842
|
name: string;
|
|
1863
1843
|
/** @format byte */
|
|
1864
|
-
data:
|
|
1844
|
+
data: Blob;
|
|
1865
1845
|
fileName: string;
|
|
1866
1846
|
mimeType?: string | null;
|
|
1867
1847
|
extension?: string | null;
|
|
@@ -1937,7 +1917,7 @@ export interface FormSubmission {
|
|
|
1937
1917
|
subjectPropertyAddressCounty?: string | null;
|
|
1938
1918
|
subjectPropertyAddressState?: string | null;
|
|
1939
1919
|
subjectPropertyAddressZip?: string | null;
|
|
1940
|
-
data?: any;
|
|
1920
|
+
data?: any | null;
|
|
1941
1921
|
/** @format uuid */
|
|
1942
1922
|
listingID?: string | null;
|
|
1943
1923
|
listing?: Listing | null;
|
|
@@ -1972,7 +1952,7 @@ export interface FormSubmissionRequest {
|
|
|
1972
1952
|
subjectPropertyAddressCounty?: string | null;
|
|
1973
1953
|
subjectPropertyAddressState?: string | null;
|
|
1974
1954
|
subjectPropertyAddressZip?: string | null;
|
|
1975
|
-
data?: any;
|
|
1955
|
+
data?: any | null;
|
|
1976
1956
|
/** @format uuid */
|
|
1977
1957
|
listingID?: string | null;
|
|
1978
1958
|
}
|
|
@@ -2021,7 +2001,7 @@ export interface FusionFieldDisplay {
|
|
|
2021
2001
|
fieldValue: string;
|
|
2022
2002
|
}
|
|
2023
2003
|
export interface FusionReportFilter {
|
|
2024
|
-
filterType:
|
|
2004
|
+
filterType: FusionReportFilterFilterTypeEnum;
|
|
2025
2005
|
targetField: string;
|
|
2026
2006
|
targetValue: string;
|
|
2027
2007
|
}
|
|
@@ -2041,7 +2021,7 @@ export interface GenerateSystemPrompt {
|
|
|
2041
2021
|
}
|
|
2042
2022
|
export interface GenerateSystemPromptRequest {
|
|
2043
2023
|
description: string;
|
|
2044
|
-
category:
|
|
2024
|
+
category: GenerateSystemPromptRequestCategoryEnum;
|
|
2045
2025
|
}
|
|
2046
2026
|
export interface GetApplications {
|
|
2047
2027
|
applications: ApplicationRowData[];
|
|
@@ -2125,11 +2105,11 @@ export interface GetWorkflowRequest {
|
|
|
2125
2105
|
export interface GuidPatchOperation {
|
|
2126
2106
|
op: string;
|
|
2127
2107
|
path: string;
|
|
2128
|
-
value?: any;
|
|
2108
|
+
value?: any | null;
|
|
2129
2109
|
from?: string | null;
|
|
2130
2110
|
}
|
|
2131
2111
|
export interface IPAddress {
|
|
2132
|
-
addressFamily:
|
|
2112
|
+
addressFamily: IpAddressAddressFamilyEnum;
|
|
2133
2113
|
/** @format int64 */
|
|
2134
2114
|
scopeId: number;
|
|
2135
2115
|
isIPv6Multicast: boolean;
|
|
@@ -2378,7 +2358,7 @@ export interface Loan {
|
|
|
2378
2358
|
contacts: LoanContact[];
|
|
2379
2359
|
customFields: CustomFieldEntry[];
|
|
2380
2360
|
milestones: LoanMilestone[];
|
|
2381
|
-
signingMethod:
|
|
2361
|
+
signingMethod: LoanSigningMethodEnum;
|
|
2382
2362
|
}
|
|
2383
2363
|
export interface LoanApplication {
|
|
2384
2364
|
/** @format uuid */
|
|
@@ -2416,7 +2396,7 @@ export interface LoanApplicationRequest {
|
|
|
2416
2396
|
nonOwningBorrowers: LoanNonOwningBorrowerRequest[];
|
|
2417
2397
|
/** @format uuid */
|
|
2418
2398
|
draftId?: string | null;
|
|
2419
|
-
additionalFields?: Record<string, any
|
|
2399
|
+
additionalFields?: Record<string, any> | null;
|
|
2420
2400
|
/** @format uuid */
|
|
2421
2401
|
existingLoanId?: string | null;
|
|
2422
2402
|
}
|
|
@@ -2435,7 +2415,7 @@ export interface LoanBorrower {
|
|
|
2435
2415
|
citizenship?: LoanCitizenship | null;
|
|
2436
2416
|
maritalStatus?: LoanMaritalStatus | null;
|
|
2437
2417
|
languagePreference?: LoanLanguagePreference | null;
|
|
2438
|
-
applicationStatus:
|
|
2418
|
+
applicationStatus: LoanBorrowerApplicationStatusEnum;
|
|
2439
2419
|
/** @format int32 */
|
|
2440
2420
|
numberOfDependents?: number | null;
|
|
2441
2421
|
/** @format int32 */
|
|
@@ -3161,7 +3141,7 @@ export interface LoanConsentRequest {
|
|
|
3161
3141
|
borrowerEConsent?: boolean | null;
|
|
3162
3142
|
borrowerCreditAuth?: boolean | null;
|
|
3163
3143
|
borrowerTCPAOptIn?: boolean | null;
|
|
3164
|
-
additionalFields?: Record<string, string
|
|
3144
|
+
additionalFields?: Record<string, string> | null;
|
|
3165
3145
|
}
|
|
3166
3146
|
export interface LoanContact {
|
|
3167
3147
|
/** @format date-time */
|
|
@@ -3179,7 +3159,7 @@ export interface LoanContact {
|
|
|
3179
3159
|
email?: string | null;
|
|
3180
3160
|
phone?: string | null;
|
|
3181
3161
|
companyName?: string | null;
|
|
3182
|
-
role:
|
|
3162
|
+
role: LoanContactRoleEnum;
|
|
3183
3163
|
}
|
|
3184
3164
|
export interface LoanContactList {
|
|
3185
3165
|
email: string;
|
|
@@ -3201,7 +3181,7 @@ export interface LoanCostDetails {
|
|
|
3201
3181
|
totalFinancing?: number | null;
|
|
3202
3182
|
}
|
|
3203
3183
|
export interface LoanCustomFieldsRequest {
|
|
3204
|
-
additionalFields?: Record<string, string
|
|
3184
|
+
additionalFields?: Record<string, string> | null;
|
|
3205
3185
|
}
|
|
3206
3186
|
export interface LoanDocument {
|
|
3207
3187
|
/** @format date-time */
|
|
@@ -3251,12 +3231,12 @@ export interface LoanDocumentFolderPermission {
|
|
|
3251
3231
|
id: string;
|
|
3252
3232
|
/** @format uuid */
|
|
3253
3233
|
loanDocumentFolderID: string;
|
|
3254
|
-
role:
|
|
3255
|
-
level:
|
|
3234
|
+
role: LoanDocumentFolderPermissionRoleEnum;
|
|
3235
|
+
level: LoanDocumentFolderPermissionLevelEnum;
|
|
3256
3236
|
}
|
|
3257
3237
|
export interface LoanDocumentFolderPermissionRequest {
|
|
3258
|
-
role:
|
|
3259
|
-
level:
|
|
3238
|
+
role: LoanDocumentFolderPermissionRequestRoleEnum;
|
|
3239
|
+
level: LoanDocumentFolderPermissionRequestLevelEnum;
|
|
3260
3240
|
}
|
|
3261
3241
|
export interface LoanDocumentFolderUsage {
|
|
3262
3242
|
/** @format uuid */
|
|
@@ -3390,13 +3370,13 @@ export interface LoanImport {
|
|
|
3390
3370
|
/** @format int32 */
|
|
3391
3371
|
importedCount: number;
|
|
3392
3372
|
statusMessage?: string | null;
|
|
3393
|
-
status:
|
|
3394
|
-
importMode:
|
|
3373
|
+
status: LoanImportStatusEnum;
|
|
3374
|
+
importMode: LoanImportImportModeEnum;
|
|
3395
3375
|
/** @format date-time */
|
|
3396
3376
|
createdAt?: string | null;
|
|
3397
3377
|
}
|
|
3398
3378
|
export interface LoanImportLog {
|
|
3399
|
-
level:
|
|
3379
|
+
level: LoanImportLogLevelEnum;
|
|
3400
3380
|
message: string;
|
|
3401
3381
|
/** @format date-time */
|
|
3402
3382
|
createdAt: string;
|
|
@@ -3451,8 +3431,8 @@ export interface LoanListPaginated {
|
|
|
3451
3431
|
export interface LoanLog {
|
|
3452
3432
|
/** @format uuid */
|
|
3453
3433
|
id: string;
|
|
3454
|
-
level:
|
|
3455
|
-
type:
|
|
3434
|
+
level: LoanLogLevelEnum;
|
|
3435
|
+
type: LoanLogTypeEnum;
|
|
3456
3436
|
message: string;
|
|
3457
3437
|
/** @format date-time */
|
|
3458
3438
|
createdAt: string;
|
|
@@ -3460,8 +3440,8 @@ export interface LoanLog {
|
|
|
3460
3440
|
export interface LoanLogDetail {
|
|
3461
3441
|
/** @format uuid */
|
|
3462
3442
|
id: string;
|
|
3463
|
-
level:
|
|
3464
|
-
type:
|
|
3443
|
+
level: LoanLogDetailLevelEnum;
|
|
3444
|
+
type: LoanLogDetailTypeEnum;
|
|
3465
3445
|
message: string;
|
|
3466
3446
|
/** @format date-time */
|
|
3467
3447
|
createdAt: string;
|
|
@@ -3723,7 +3703,7 @@ export interface LoanQueueWithData {
|
|
|
3723
3703
|
user: UserPublic;
|
|
3724
3704
|
loanOfficer: LoanOfficerPublic;
|
|
3725
3705
|
siteConfiguration: SiteConfigurationReduced;
|
|
3726
|
-
data?: any;
|
|
3706
|
+
data?: any | null;
|
|
3727
3707
|
}
|
|
3728
3708
|
export interface LoanRecord {
|
|
3729
3709
|
loanGuid: string;
|
|
@@ -3754,7 +3734,7 @@ export interface LoanTaskSearchRequest {
|
|
|
3754
3734
|
loanStatus?: LoanTaskActivityFilter | null;
|
|
3755
3735
|
}
|
|
3756
3736
|
export interface LoanTaskStatusSummary {
|
|
3757
|
-
status:
|
|
3737
|
+
status: LoanTaskStatusSummaryStatusEnum;
|
|
3758
3738
|
/** @format int32 */
|
|
3759
3739
|
count: number;
|
|
3760
3740
|
}
|
|
@@ -3766,7 +3746,7 @@ export interface LoanUser {
|
|
|
3766
3746
|
email: string;
|
|
3767
3747
|
phone?: string | null;
|
|
3768
3748
|
role: string;
|
|
3769
|
-
loanRole:
|
|
3749
|
+
loanRole: LoanUserLoanRoleEnum;
|
|
3770
3750
|
isUser: boolean;
|
|
3771
3751
|
/** @format date-time */
|
|
3772
3752
|
createdAt: string;
|
|
@@ -3799,7 +3779,7 @@ export interface LosOperationTracking {
|
|
|
3799
3779
|
operationType: string;
|
|
3800
3780
|
correlationKey: string;
|
|
3801
3781
|
lastTriggerSource?: string | null;
|
|
3802
|
-
status:
|
|
3782
|
+
status: LosOperationTrackingStatusEnum;
|
|
3803
3783
|
/** @format date-time */
|
|
3804
3784
|
createdAt: string;
|
|
3805
3785
|
/** @format date-time */
|
|
@@ -3860,7 +3840,7 @@ export interface LosSyncStep {
|
|
|
3860
3840
|
/** @format int32 */
|
|
3861
3841
|
order: number;
|
|
3862
3842
|
name: string;
|
|
3863
|
-
severity:
|
|
3843
|
+
severity: LosSyncStepSeverityEnum;
|
|
3864
3844
|
message: string;
|
|
3865
3845
|
/** @format date-time */
|
|
3866
3846
|
atUtc: string;
|
|
@@ -3874,7 +3854,7 @@ export interface LosWebhook {
|
|
|
3874
3854
|
enableSubscription: boolean;
|
|
3875
3855
|
}
|
|
3876
3856
|
export interface ManualDocumentClassificationRequest {
|
|
3877
|
-
documentType:
|
|
3857
|
+
documentType: ManualDocumentClassificationRequestDocumentTypeEnum;
|
|
3878
3858
|
}
|
|
3879
3859
|
export interface MdmUser {
|
|
3880
3860
|
user_email?: string | null;
|
|
@@ -3953,7 +3933,7 @@ export interface ModuleParameterValue {
|
|
|
3953
3933
|
parameterID: string;
|
|
3954
3934
|
parameterName: string;
|
|
3955
3935
|
parameterType: string;
|
|
3956
|
-
value?: any;
|
|
3936
|
+
value?: any | null;
|
|
3957
3937
|
isInherited: boolean;
|
|
3958
3938
|
}
|
|
3959
3939
|
export interface MonthlyPaymentCalculator {
|
|
@@ -4126,7 +4106,7 @@ export interface NotificationTemplateVersionUpdateRequest {
|
|
|
4126
4106
|
}
|
|
4127
4107
|
export interface Operation {
|
|
4128
4108
|
op?: string;
|
|
4129
|
-
value?:
|
|
4109
|
+
value?: object | null;
|
|
4130
4110
|
path?: string;
|
|
4131
4111
|
}
|
|
4132
4112
|
export interface OverridePasswordRequest {
|
|
@@ -4452,7 +4432,7 @@ export interface SiteConfiguration {
|
|
|
4452
4432
|
deletedAt?: string | null;
|
|
4453
4433
|
/** @format uuid */
|
|
4454
4434
|
id: string;
|
|
4455
|
-
type:
|
|
4435
|
+
type: SiteConfigurationTypeEnum;
|
|
4456
4436
|
/** @format uuid */
|
|
4457
4437
|
entityID: string;
|
|
4458
4438
|
/** @format int32 */
|
|
@@ -4645,7 +4625,7 @@ export interface SiteConfigurationByUrl {
|
|
|
4645
4625
|
deletedAt?: string | null;
|
|
4646
4626
|
/** @format uuid */
|
|
4647
4627
|
id: string;
|
|
4648
|
-
type:
|
|
4628
|
+
type: SiteConfigurationByUrlTypeEnum;
|
|
4649
4629
|
/** @format uuid */
|
|
4650
4630
|
entityID: string;
|
|
4651
4631
|
/** @format int32 */
|
|
@@ -4855,7 +4835,7 @@ export interface SiteConfigurationForm {
|
|
|
4855
4835
|
export interface SiteConfigurationReduced {
|
|
4856
4836
|
/** @format uuid */
|
|
4857
4837
|
id: string;
|
|
4858
|
-
type:
|
|
4838
|
+
type: SiteConfigurationReducedTypeEnum;
|
|
4859
4839
|
url?: string | null;
|
|
4860
4840
|
name: string;
|
|
4861
4841
|
/** @format int64 */
|
|
@@ -4872,7 +4852,7 @@ export interface SiteConfigurationRequest {
|
|
|
4872
4852
|
entityID: string;
|
|
4873
4853
|
/** @format int32 */
|
|
4874
4854
|
entityType: number;
|
|
4875
|
-
type:
|
|
4855
|
+
type: SiteConfigurationRequestTypeEnum;
|
|
4876
4856
|
url: string;
|
|
4877
4857
|
name: string;
|
|
4878
4858
|
introduction?: string | null;
|
|
@@ -5047,7 +5027,7 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
5047
5027
|
export interface SiteConfigurationSummary {
|
|
5048
5028
|
/** @format uuid */
|
|
5049
5029
|
id: string;
|
|
5050
|
-
type:
|
|
5030
|
+
type: SiteConfigurationSummaryTypeEnum;
|
|
5051
5031
|
url?: string | null;
|
|
5052
5032
|
name: string;
|
|
5053
5033
|
/** @format int64 */
|
|
@@ -5074,6 +5054,66 @@ export interface SiteConfigurationWithInherited {
|
|
|
5074
5054
|
siteConfiguration: SiteConfiguration;
|
|
5075
5055
|
inheritedSiteConfiguration?: SiteConfiguration | null;
|
|
5076
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
|
+
}
|
|
5077
5117
|
export interface SocialSurveyRecord {
|
|
5078
5118
|
/** @format date-time */
|
|
5079
5119
|
createdAt: string;
|
|
@@ -5301,7 +5341,7 @@ export interface UnregisteredBorrower {
|
|
|
5301
5341
|
lastName?: string | null;
|
|
5302
5342
|
fullName?: string | null;
|
|
5303
5343
|
email?: string | null;
|
|
5304
|
-
role:
|
|
5344
|
+
role: UnregisteredBorrowerRoleEnum;
|
|
5305
5345
|
}
|
|
5306
5346
|
export interface UpdateAccountRequest {
|
|
5307
5347
|
name: string;
|
|
@@ -5325,7 +5365,7 @@ export interface UpdateAiCanonicalFieldRequest {
|
|
|
5325
5365
|
}
|
|
5326
5366
|
export interface UpdateAiGuardrailRequest {
|
|
5327
5367
|
name: string;
|
|
5328
|
-
category:
|
|
5368
|
+
category: UpdateAiGuardrailRequestCategoryEnum;
|
|
5329
5369
|
description?: string | null;
|
|
5330
5370
|
keywords: string[];
|
|
5331
5371
|
responseTemplate: string;
|
|
@@ -5345,19 +5385,13 @@ export interface UpdateAiPromptRequest {
|
|
|
5345
5385
|
bedrockModelId?: string | null;
|
|
5346
5386
|
requiredDataSources?: string[] | null;
|
|
5347
5387
|
outputType?: AiOutputType | null;
|
|
5348
|
-
scope?: AiPromptScope | null;
|
|
5349
|
-
inputHint?: string | null;
|
|
5350
|
-
}
|
|
5351
|
-
export interface UpdateAiPromptToolsRequest {
|
|
5352
|
-
tools: AiPromptToolInput[];
|
|
5353
|
-
agentSystemPrompt?: string | null;
|
|
5354
5388
|
}
|
|
5355
5389
|
export interface UpdateAiUrlSourceRequest {
|
|
5356
5390
|
name: string;
|
|
5357
5391
|
url: string;
|
|
5358
5392
|
description?: string | null;
|
|
5359
|
-
category:
|
|
5360
|
-
scope:
|
|
5393
|
+
category: UpdateAiUrlSourceRequestCategoryEnum;
|
|
5394
|
+
scope: UpdateAiUrlSourceRequestScopeEnum;
|
|
5361
5395
|
}
|
|
5362
5396
|
export interface UpdateCustomFieldDefinitionRequest {
|
|
5363
5397
|
isRequired: boolean;
|
|
@@ -5644,7 +5678,7 @@ export interface UserDevice {
|
|
|
5644
5678
|
export interface UserDraft {
|
|
5645
5679
|
/** @format uuid */
|
|
5646
5680
|
draftID: string;
|
|
5647
|
-
role:
|
|
5681
|
+
role: UserDraftRoleEnum;
|
|
5648
5682
|
user: User;
|
|
5649
5683
|
}
|
|
5650
5684
|
export interface UserDraftPaginated {
|
|
@@ -5668,7 +5702,7 @@ export interface UserGroupAccessScope {
|
|
|
5668
5702
|
id: string;
|
|
5669
5703
|
/** @format uuid */
|
|
5670
5704
|
groupId: string;
|
|
5671
|
-
scopeType:
|
|
5705
|
+
scopeType: UserGroupAccessScopeScopeTypeEnum;
|
|
5672
5706
|
/** @format uuid */
|
|
5673
5707
|
userId?: string | null;
|
|
5674
5708
|
/** @format uuid */
|
|
@@ -5701,7 +5735,7 @@ export interface UserLoan {
|
|
|
5701
5735
|
deletedAt?: string | null;
|
|
5702
5736
|
loanID: string;
|
|
5703
5737
|
user: User;
|
|
5704
|
-
role:
|
|
5738
|
+
role: UserLoanRoleEnum;
|
|
5705
5739
|
/** @format int32 */
|
|
5706
5740
|
borrowerPair?: number | null;
|
|
5707
5741
|
/** @format int32 */
|
|
@@ -5713,11 +5747,11 @@ export interface UserLoanConsent {
|
|
|
5713
5747
|
id: string;
|
|
5714
5748
|
/** @format uuid */
|
|
5715
5749
|
userLoanID: string;
|
|
5716
|
-
type:
|
|
5750
|
+
type: UserLoanConsentTypeEnum;
|
|
5717
5751
|
providedConsent: boolean;
|
|
5718
5752
|
source?: ConsentSource | null;
|
|
5719
5753
|
ipAddress?: string | null;
|
|
5720
|
-
losSyncStatus:
|
|
5754
|
+
losSyncStatus: UserLoanConsentLosSyncStatusEnum;
|
|
5721
5755
|
/** @format date-time */
|
|
5722
5756
|
createdAt: string;
|
|
5723
5757
|
/** @format date-time */
|
|
@@ -5847,7 +5881,7 @@ export interface UserSummary {
|
|
|
5847
5881
|
id: string;
|
|
5848
5882
|
name?: string | null;
|
|
5849
5883
|
email?: string | null;
|
|
5850
|
-
role:
|
|
5884
|
+
role: UserSummaryRoleEnum;
|
|
5851
5885
|
}
|
|
5852
5886
|
export interface VerifyPasswordRequest {
|
|
5853
5887
|
email: string;
|
|
@@ -5874,6 +5908,92 @@ export interface Workflow {
|
|
|
5874
5908
|
tileSubtitle: string;
|
|
5875
5909
|
icon: string;
|
|
5876
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";
|
|
5877
5997
|
import type { AxiosInstance, AxiosRequestConfig, AxiosResponse, ResponseType } from "axios";
|
|
5878
5998
|
export type QueryParamsType = Record<string | number, any>;
|
|
5879
5999
|
export interface FullRequestParams extends Omit<AxiosRequestConfig, "data" | "params" | "url" | "responseType"> {
|
|
@@ -5896,14 +6016,7 @@ export interface ApiConfig<SecurityDataType = unknown> extends Omit<AxiosRequest
|
|
|
5896
6016
|
secure?: boolean;
|
|
5897
6017
|
format?: ResponseType;
|
|
5898
6018
|
}
|
|
5899
|
-
export
|
|
5900
|
-
JsonPatch = "application/json-patch+json",
|
|
5901
|
-
Json = "application/json",
|
|
5902
|
-
JsonApi = "application/vnd.api+json",
|
|
5903
|
-
FormData = "multipart/form-data",
|
|
5904
|
-
UrlEncoded = "application/x-www-form-urlencoded",
|
|
5905
|
-
Text = "text/plain"
|
|
5906
|
-
}
|
|
6019
|
+
export type ContentType = "application/json" | "application/vnd.api+json" | "multipart/form-data" | "application/x-www-form-urlencoded" | "text/plain";
|
|
5907
6020
|
export declare class HttpClient<SecurityDataType = unknown> {
|
|
5908
6021
|
instance: AxiosInstance;
|
|
5909
6022
|
private securityData;
|
|
@@ -5919,7 +6032,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
|
|
|
5919
6032
|
}
|
|
5920
6033
|
/**
|
|
5921
6034
|
* @title The Big POS API
|
|
5922
|
-
* @version v2.
|
|
6035
|
+
* @version v2.47.0
|
|
5923
6036
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
5924
6037
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
5925
6038
|
*/
|
|
@@ -6197,30 +6310,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6197
6310
|
* @response `404` `ProblemDetails` Not Found
|
|
6198
6311
|
*/
|
|
6199
6312
|
deleteAiPrompt: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6200
|
-
/**
|
|
6201
|
-
* No description
|
|
6202
|
-
*
|
|
6203
|
-
* @tags AiAdminPrompt
|
|
6204
|
-
* @name GetAiTools
|
|
6205
|
-
* @summary List available agent tools and their settings schema
|
|
6206
|
-
* @request GET:/api/ai/prompts/tools
|
|
6207
|
-
* @secure
|
|
6208
|
-
* @response `200` `(AiToolCatalogItem)[]` OK
|
|
6209
|
-
*/
|
|
6210
|
-
getAiTools: (params?: RequestParams) => Promise<AxiosResponse<AiToolCatalogItem[], any, {}>>;
|
|
6211
|
-
/**
|
|
6212
|
-
* No description
|
|
6213
|
-
*
|
|
6214
|
-
* @tags AiAdminPrompt
|
|
6215
|
-
* @name UpdateAiPromptTools
|
|
6216
|
-
* @summary Replace the prompt's agent tool configuration
|
|
6217
|
-
* @request PUT:/api/ai/prompts/{id}/tools
|
|
6218
|
-
* @secure
|
|
6219
|
-
* @response `200` `AiPrompt` OK
|
|
6220
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
6221
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6222
|
-
*/
|
|
6223
|
-
updateAiPromptTools: (id: string, data: UpdateAiPromptToolsRequest, params?: RequestParams) => Promise<AxiosResponse<AiPrompt, any, {}>>;
|
|
6224
6313
|
/**
|
|
6225
6314
|
* No description
|
|
6226
6315
|
*
|
|
@@ -7413,7 +7502,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7413
7502
|
* @response `200` `(CustomFieldDefinition)[]` OK
|
|
7414
7503
|
*/
|
|
7415
7504
|
getCustomFieldDefinitions: (query?: {
|
|
7416
|
-
entityType?:
|
|
7505
|
+
entityType?: GetCustomFieldDefinitionsParamsEntityTypeEnum;
|
|
7417
7506
|
}, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition[], any, {}>>;
|
|
7418
7507
|
/**
|
|
7419
7508
|
* No description
|
|
@@ -8925,10 +9014,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8925
9014
|
* @summary Download By ID
|
|
8926
9015
|
* @request GET:/api/loans/{loanId}/documents/{documentId}/download
|
|
8927
9016
|
* @secure
|
|
8928
|
-
* @response `200` `
|
|
9017
|
+
* @response `200` `Blob` OK
|
|
8929
9018
|
* @response `404` `ProblemDetails` Not Found
|
|
8930
9019
|
*/
|
|
8931
|
-
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
9020
|
+
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<Blob, any, {}>>;
|
|
8932
9021
|
/**
|
|
8933
9022
|
* No description
|
|
8934
9023
|
*
|
|
@@ -10136,7 +10225,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10136
10225
|
getPartners: (query?: {
|
|
10137
10226
|
showAll?: boolean;
|
|
10138
10227
|
/** @default "Realtor" */
|
|
10139
|
-
role?:
|
|
10228
|
+
role?: GetPartnersParamsRoleEnum;
|
|
10140
10229
|
/** @format int32 */
|
|
10141
10230
|
pageSize?: number;
|
|
10142
10231
|
/** @format int32 */
|
|
@@ -10314,7 +10403,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10314
10403
|
* @response `200` `File` OK
|
|
10315
10404
|
* @response `404` `ProblemDetails` Not Found
|
|
10316
10405
|
*/
|
|
10317
|
-
getSamlMetadata: (sSoIntegration:
|
|
10406
|
+
getSamlMetadata: (sSoIntegration: GetSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
10318
10407
|
/**
|
|
10319
10408
|
* No description
|
|
10320
10409
|
*
|
|
@@ -10325,7 +10414,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10325
10414
|
* @secure
|
|
10326
10415
|
* @response `200` `File` OK
|
|
10327
10416
|
*/
|
|
10328
|
-
createOrReplaceSamlMetadata: (sSoIntegration:
|
|
10417
|
+
createOrReplaceSamlMetadata: (sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
10329
10418
|
/**
|
|
10330
10419
|
* No description
|
|
10331
10420
|
*
|
|
@@ -10384,6 +10473,95 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10384
10473
|
* @response `200` `GetForm` OK
|
|
10385
10474
|
*/
|
|
10386
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, {}>>;
|
|
10387
10565
|
/**
|
|
10388
10566
|
* No description
|
|
10389
10567
|
*
|