@matech/thebigpos-sdk 2.40.3-aibi-1 → 2.40.4-rc0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.husky/pre-commit +2 -2
- package/LICENSE +21 -21
- package/README.md +73 -73
- package/dist/index.d.ts +126 -887
- package/dist/index.js +8 -407
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +814 -1878
- package/tsconfig.json +27 -27
package/dist/index.d.ts
CHANGED
|
@@ -65,16 +65,6 @@ export type BorrowerRelationship = "NotApplicable" | "Spouse" | "NonSpouse";
|
|
|
65
65
|
export type BorrowerApplicationStatus = "Draft" | "Complete";
|
|
66
66
|
export type BillingType = "ClosedLoan" | "LoanOfficer";
|
|
67
67
|
export type AuditChangeType = "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored";
|
|
68
|
-
export type AiUrlSourceScope = "FullDomain" | "SpecificPath";
|
|
69
|
-
export type AiUrlSourceCategory = "Regulatory" | "Guidelines" | "MarketData" | "Custom";
|
|
70
|
-
export type AiStructuredDataType = "Table" | "DocumentAnalysis" | "DocumentList" | "GeneratedDocument";
|
|
71
|
-
export type AiQueryTemplateName = "PipelineSummary" | "LoanDetail" | "LoansClosing" | "StaleLoans" | "LoansByType" | "LoansByOfficer" | "AverageLoanAmount" | "LockedVsUnlocked" | "LoansByPurpose" | "LoansByPropertyState" | "LoansByRate" | "DtiLtvRisk" | "DisclosureTracking" | "NewLoans" | "ExpiringLocks" | "ClosedLoans";
|
|
72
|
-
export type AiPromptCategory = "DocumentAnalysis" | "DataQuery" | "General" | "Action";
|
|
73
|
-
export type AiOutputType = "Text" | "Document";
|
|
74
|
-
export type AiIntent = "Greeting" | "Invalid" | "Relevant" | "LoanSpecific" | "DocumentList" | "GeneralKnowledge" | "Blocked" | "Action";
|
|
75
|
-
export type AiGuardrailCategory = "ContentSafety" | "PromptInjection" | "Privacy" | "Legal";
|
|
76
|
-
export type AiDisplayHint = "Table" | "SummaryCards" | "RankedList" | "Comparison" | "ExecutiveBrief";
|
|
77
|
-
export type AiAuditEventType = "Error" | "GuardrailBlockedPre" | "GuardrailPassedPre" | "IntentClassified" | "LoanResolvedFromMessage" | "DocumentNotFound" | "GuardrailBlockedPost" | "GuardrailPassedPost" | "DocumentAnalyzed" | "DocumentList" | "DocumentResolutionAmbiguous" | "ResponseGenerated" | "ParametersExtracted" | "QueryExecuted" | "LoanContextNotFound" | "LoanContextLoaded" | "GuardrailBlockedBedrock" | "PromptMatched";
|
|
78
68
|
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";
|
|
79
69
|
export interface ASOSettings {
|
|
80
70
|
enabled: boolean;
|
|
@@ -125,7 +115,7 @@ export interface AccountBilling {
|
|
|
125
115
|
contractedRate: number;
|
|
126
116
|
}
|
|
127
117
|
export interface AccountBillingRequest {
|
|
128
|
-
billingType:
|
|
118
|
+
billingType: AccountBillingRequestBillingTypeEnum;
|
|
129
119
|
/**
|
|
130
120
|
* @format double
|
|
131
121
|
* @min 0
|
|
@@ -139,7 +129,6 @@ export interface AccountSettings {
|
|
|
139
129
|
smsNumber?: string | null;
|
|
140
130
|
ssoHostOverride?: string | null;
|
|
141
131
|
isEarlyAdopter: boolean;
|
|
142
|
-
isAIEnabled: boolean;
|
|
143
132
|
}
|
|
144
133
|
export interface AccountSettingsRequest {
|
|
145
134
|
isSmsEnabled: boolean;
|
|
@@ -340,220 +329,6 @@ export interface AffordabilityCalculatorRequest {
|
|
|
340
329
|
*/
|
|
341
330
|
annualInsurance: number;
|
|
342
331
|
}
|
|
343
|
-
export interface AiAdminStats {
|
|
344
|
-
/** @format int32 */
|
|
345
|
-
totalRequests: number;
|
|
346
|
-
/** @format int32 */
|
|
347
|
-
blockedRequests: number;
|
|
348
|
-
/** @format double */
|
|
349
|
-
averageResponseTimeMs: number;
|
|
350
|
-
intentDistribution: Record<string, number>;
|
|
351
|
-
topQueryTemplates: Record<string, number>;
|
|
352
|
-
period: string;
|
|
353
|
-
}
|
|
354
|
-
export interface AiAuditLog {
|
|
355
|
-
/** @format uuid */
|
|
356
|
-
id: string;
|
|
357
|
-
/** @format uuid */
|
|
358
|
-
requestId: string;
|
|
359
|
-
/** @format uuid */
|
|
360
|
-
userId: string;
|
|
361
|
-
eventType: "Error" | "GuardrailBlockedPre" | "GuardrailPassedPre" | "IntentClassified" | "LoanResolvedFromMessage" | "DocumentNotFound" | "GuardrailBlockedPost" | "GuardrailPassedPost" | "DocumentAnalyzed" | "DocumentList" | "DocumentResolutionAmbiguous" | "ResponseGenerated" | "ParametersExtracted" | "QueryExecuted" | "LoanContextNotFound" | "LoanContextLoaded" | "GuardrailBlockedBedrock" | "PromptMatched";
|
|
362
|
-
details?: any;
|
|
363
|
-
/** @format date-time */
|
|
364
|
-
createdAt: string;
|
|
365
|
-
}
|
|
366
|
-
export interface AiAuditLogPaginated {
|
|
367
|
-
rows: AiAuditLog[];
|
|
368
|
-
pagination: Pagination;
|
|
369
|
-
/** @format int64 */
|
|
370
|
-
count: number;
|
|
371
|
-
}
|
|
372
|
-
export interface AiCanonicalField {
|
|
373
|
-
/** @format uuid */
|
|
374
|
-
id: string;
|
|
375
|
-
canonicalName: string;
|
|
376
|
-
displayName: string;
|
|
377
|
-
description: string;
|
|
378
|
-
allowedRoles: string[];
|
|
379
|
-
efPath?: string | null;
|
|
380
|
-
isPii: boolean;
|
|
381
|
-
isActive: boolean;
|
|
382
|
-
dataSource: string;
|
|
383
|
-
isDefault: boolean;
|
|
384
|
-
category?: string | null;
|
|
385
|
-
jsonPropertyName?: string | null;
|
|
386
|
-
textractKey?: string | null;
|
|
387
|
-
textractKeyAliases?: string | null;
|
|
388
|
-
hasAccountOverride: boolean;
|
|
389
|
-
/** @format date-time */
|
|
390
|
-
createdAt: string;
|
|
391
|
-
/** @format date-time */
|
|
392
|
-
updatedAt?: string | null;
|
|
393
|
-
}
|
|
394
|
-
export interface AiChat {
|
|
395
|
-
/** @format uuid */
|
|
396
|
-
conversationId: string;
|
|
397
|
-
/** @format uuid */
|
|
398
|
-
messageId: string;
|
|
399
|
-
response: AiChatBody;
|
|
400
|
-
metadata: AiChatMetadata;
|
|
401
|
-
}
|
|
402
|
-
export interface AiChatBody {
|
|
403
|
-
text: string;
|
|
404
|
-
data?: AiChatStructuredData | null;
|
|
405
|
-
suggestedFollowUps: string[];
|
|
406
|
-
}
|
|
407
|
-
export interface AiChatMessage {
|
|
408
|
-
/** @format uuid */
|
|
409
|
-
id: string;
|
|
410
|
-
userMessage: string;
|
|
411
|
-
assistantResponse: string;
|
|
412
|
-
intent?: AiIntent | null;
|
|
413
|
-
fieldsAccessed?: string[] | null;
|
|
414
|
-
/** @format date-time */
|
|
415
|
-
createdAt: string;
|
|
416
|
-
}
|
|
417
|
-
export interface AiChatMetadata {
|
|
418
|
-
intent: "Greeting" | "Invalid" | "Relevant" | "LoanSpecific" | "DocumentList" | "GeneralKnowledge" | "Blocked" | "Action";
|
|
419
|
-
fieldsAccessed: string[];
|
|
420
|
-
/** @format int64 */
|
|
421
|
-
queryTimeMs: number;
|
|
422
|
-
/** @format int64 */
|
|
423
|
-
llmTimeMs: number;
|
|
424
|
-
wasBlocked: boolean;
|
|
425
|
-
blockedReason?: string | null;
|
|
426
|
-
}
|
|
427
|
-
export interface AiChatRequest {
|
|
428
|
-
/**
|
|
429
|
-
* @minLength 1
|
|
430
|
-
* @maxLength 2000
|
|
431
|
-
*/
|
|
432
|
-
message: string;
|
|
433
|
-
/** @format uuid */
|
|
434
|
-
conversationId?: string | null;
|
|
435
|
-
/** @format uuid */
|
|
436
|
-
loanId?: string | null;
|
|
437
|
-
documentIds?: string[] | null;
|
|
438
|
-
/** @format uuid */
|
|
439
|
-
promptId?: string | null;
|
|
440
|
-
}
|
|
441
|
-
export interface AiChatStructuredData {
|
|
442
|
-
type: "Table" | "DocumentAnalysis" | "DocumentList" | "GeneratedDocument";
|
|
443
|
-
displayHint?: AiDisplayHint | null;
|
|
444
|
-
detectedDocumentType?: string | null;
|
|
445
|
-
columns: string[];
|
|
446
|
-
rows: string[][];
|
|
447
|
-
/** @format uuid */
|
|
448
|
-
generatedDocumentId?: string | null;
|
|
449
|
-
generatedFileName?: string | null;
|
|
450
|
-
}
|
|
451
|
-
export interface AiConversationDetail {
|
|
452
|
-
/** @format uuid */
|
|
453
|
-
id: string;
|
|
454
|
-
/** @format date-time */
|
|
455
|
-
createdAt: string;
|
|
456
|
-
/** @format date-time */
|
|
457
|
-
updatedAt?: string | null;
|
|
458
|
-
messages: AiChatMessage[];
|
|
459
|
-
}
|
|
460
|
-
export interface AiConversationListItem {
|
|
461
|
-
/** @format uuid */
|
|
462
|
-
id: string;
|
|
463
|
-
preview: string;
|
|
464
|
-
/** @format int32 */
|
|
465
|
-
messageCount: number;
|
|
466
|
-
/** @format date-time */
|
|
467
|
-
createdAt: string;
|
|
468
|
-
/** @format date-time */
|
|
469
|
-
updatedAt?: string | null;
|
|
470
|
-
}
|
|
471
|
-
export interface AiConversationListItemPaginated {
|
|
472
|
-
rows: AiConversationListItem[];
|
|
473
|
-
pagination: Pagination;
|
|
474
|
-
/** @format int64 */
|
|
475
|
-
count: number;
|
|
476
|
-
}
|
|
477
|
-
export interface AiGuardrail {
|
|
478
|
-
/** @format uuid */
|
|
479
|
-
id: string;
|
|
480
|
-
name: string;
|
|
481
|
-
category: "ContentSafety" | "PromptInjection" | "Privacy" | "Legal";
|
|
482
|
-
description?: string | null;
|
|
483
|
-
keywords: string[];
|
|
484
|
-
responseTemplate: string;
|
|
485
|
-
isDefault: boolean;
|
|
486
|
-
isEnabled: boolean;
|
|
487
|
-
hasAccountOverride: boolean;
|
|
488
|
-
/** @format date-time */
|
|
489
|
-
createdAt: string;
|
|
490
|
-
/** @format date-time */
|
|
491
|
-
updatedAt?: string | null;
|
|
492
|
-
}
|
|
493
|
-
export interface AiPrompt {
|
|
494
|
-
/** @format uuid */
|
|
495
|
-
id: string;
|
|
496
|
-
title: string;
|
|
497
|
-
icon: string;
|
|
498
|
-
slug: string;
|
|
499
|
-
description: string;
|
|
500
|
-
documentTypes: string[];
|
|
501
|
-
applicableGuidelines: string[];
|
|
502
|
-
allowedRoles: string[];
|
|
503
|
-
systemPrompt: string;
|
|
504
|
-
userPromptTemplate: string;
|
|
505
|
-
followUpPrompts: string[];
|
|
506
|
-
/** @format int32 */
|
|
507
|
-
sortOrder: number;
|
|
508
|
-
isDefault: boolean;
|
|
509
|
-
/** @format uuid */
|
|
510
|
-
accountId?: string | null;
|
|
511
|
-
isActive: boolean;
|
|
512
|
-
category?: AiPromptCategory | null;
|
|
513
|
-
queryTemplateName?: AiQueryTemplateName | null;
|
|
514
|
-
displayHint?: AiDisplayHint | null;
|
|
515
|
-
bedrockModelId?: string | null;
|
|
516
|
-
requiredDataSources?: string[] | null;
|
|
517
|
-
outputType?: AiOutputType | null;
|
|
518
|
-
hasAccountOverride: boolean;
|
|
519
|
-
/** @format date-time */
|
|
520
|
-
createdAt: string;
|
|
521
|
-
/** @format date-time */
|
|
522
|
-
updatedAt?: string | null;
|
|
523
|
-
}
|
|
524
|
-
export interface AiPromptSummary {
|
|
525
|
-
/** @format uuid */
|
|
526
|
-
id: string;
|
|
527
|
-
title: string;
|
|
528
|
-
icon: string;
|
|
529
|
-
slug: string;
|
|
530
|
-
description: string;
|
|
531
|
-
documentTypes: string[];
|
|
532
|
-
applicableGuidelines: string[];
|
|
533
|
-
followUpPrompts: string[];
|
|
534
|
-
/** @format int32 */
|
|
535
|
-
sortOrder: number;
|
|
536
|
-
category?: AiPromptCategory | null;
|
|
537
|
-
queryTemplateName?: AiQueryTemplateName | null;
|
|
538
|
-
displayHint?: AiDisplayHint | null;
|
|
539
|
-
bedrockModelId?: string | null;
|
|
540
|
-
requiredDataSources?: string[] | null;
|
|
541
|
-
outputType?: AiOutputType | null;
|
|
542
|
-
}
|
|
543
|
-
export interface AiUrlSource {
|
|
544
|
-
/** @format uuid */
|
|
545
|
-
id: string;
|
|
546
|
-
name: string;
|
|
547
|
-
url: string;
|
|
548
|
-
description?: string | null;
|
|
549
|
-
category: "Regulatory" | "Guidelines" | "MarketData" | "Custom";
|
|
550
|
-
scope: "FullDomain" | "SpecificPath";
|
|
551
|
-
isActive: boolean;
|
|
552
|
-
/** @format date-time */
|
|
553
|
-
createdAt: string;
|
|
554
|
-
/** @format date-time */
|
|
555
|
-
updatedAt?: string | null;
|
|
556
|
-
}
|
|
557
332
|
export interface AllowImpersonationRequest {
|
|
558
333
|
/**
|
|
559
334
|
* @format email
|
|
@@ -660,7 +435,7 @@ export interface AuditLogEntry {
|
|
|
660
435
|
/** @format uuid */
|
|
661
436
|
id: string;
|
|
662
437
|
entityType: string;
|
|
663
|
-
changeType:
|
|
438
|
+
changeType: AuditLogEntryChangeTypeEnum;
|
|
664
439
|
/** @format uuid */
|
|
665
440
|
entityId: string;
|
|
666
441
|
performedBy?: AuditLogUser | null;
|
|
@@ -944,7 +719,7 @@ export interface CorporateSearchCriteria {
|
|
|
944
719
|
isActive?: boolean | null;
|
|
945
720
|
}
|
|
946
721
|
export interface CreateAccessScopeRequest {
|
|
947
|
-
scopeType:
|
|
722
|
+
scopeType: CreateAccessScopeRequestScopeTypeEnum;
|
|
948
723
|
/** @format uuid */
|
|
949
724
|
userId?: string | null;
|
|
950
725
|
/** @format uuid */
|
|
@@ -967,87 +742,10 @@ export interface CreateAccountRequest {
|
|
|
967
742
|
*/
|
|
968
743
|
nlmsid: number;
|
|
969
744
|
settings: AccountSettingsRequest;
|
|
970
|
-
environment:
|
|
745
|
+
environment: CreateAccountRequestEnvironmentEnum;
|
|
971
746
|
losIntegration: LOSIntegration;
|
|
972
747
|
billingSettings: AccountBillingRequest;
|
|
973
748
|
}
|
|
974
|
-
export interface CreateAiCanonicalFieldRequest {
|
|
975
|
-
/**
|
|
976
|
-
* @minLength 1
|
|
977
|
-
* @maxLength 200
|
|
978
|
-
*/
|
|
979
|
-
displayName: string;
|
|
980
|
-
/** @minLength 1 */
|
|
981
|
-
description: string;
|
|
982
|
-
/** @minItems 1 */
|
|
983
|
-
allowedRoles: string[];
|
|
984
|
-
isPii: boolean;
|
|
985
|
-
/** @minLength 1 */
|
|
986
|
-
dataSource: string;
|
|
987
|
-
category?: string | null;
|
|
988
|
-
}
|
|
989
|
-
export interface CreateAiGuardrailRequest {
|
|
990
|
-
/**
|
|
991
|
-
* @minLength 1
|
|
992
|
-
* @maxLength 200
|
|
993
|
-
*/
|
|
994
|
-
name: string;
|
|
995
|
-
category: "ContentSafety" | "PromptInjection" | "Privacy" | "Legal";
|
|
996
|
-
description?: string | null;
|
|
997
|
-
/** @minItems 1 */
|
|
998
|
-
keywords: string[];
|
|
999
|
-
/** @minLength 1 */
|
|
1000
|
-
responseTemplate: string;
|
|
1001
|
-
}
|
|
1002
|
-
export interface CreateAiPromptRequest {
|
|
1003
|
-
/**
|
|
1004
|
-
* @minLength 1
|
|
1005
|
-
* @maxLength 200
|
|
1006
|
-
*/
|
|
1007
|
-
title: string;
|
|
1008
|
-
icon: string;
|
|
1009
|
-
/**
|
|
1010
|
-
* @minLength 1
|
|
1011
|
-
* @maxLength 100
|
|
1012
|
-
*/
|
|
1013
|
-
slug: string;
|
|
1014
|
-
/**
|
|
1015
|
-
* @minLength 1
|
|
1016
|
-
* @maxLength 500
|
|
1017
|
-
*/
|
|
1018
|
-
description: string;
|
|
1019
|
-
documentTypes: string[];
|
|
1020
|
-
applicableGuidelines: string[];
|
|
1021
|
-
allowedRoles: string[];
|
|
1022
|
-
/** @minLength 1 */
|
|
1023
|
-
systemPrompt: string;
|
|
1024
|
-
/** @minLength 1 */
|
|
1025
|
-
userPromptTemplate: string;
|
|
1026
|
-
followUpPrompts: string[];
|
|
1027
|
-
/** @format int32 */
|
|
1028
|
-
sortOrder: number;
|
|
1029
|
-
category?: AiPromptCategory | null;
|
|
1030
|
-
queryTemplateName?: AiQueryTemplateName | null;
|
|
1031
|
-
displayHint?: AiDisplayHint | null;
|
|
1032
|
-
bedrockModelId?: string | null;
|
|
1033
|
-
requiredDataSources?: string[] | null;
|
|
1034
|
-
outputType?: AiOutputType | null;
|
|
1035
|
-
}
|
|
1036
|
-
export interface CreateAiUrlSourceRequest {
|
|
1037
|
-
/**
|
|
1038
|
-
* @minLength 1
|
|
1039
|
-
* @maxLength 200
|
|
1040
|
-
*/
|
|
1041
|
-
name: string;
|
|
1042
|
-
/**
|
|
1043
|
-
* @minLength 1
|
|
1044
|
-
* @maxLength 2048
|
|
1045
|
-
*/
|
|
1046
|
-
url: string;
|
|
1047
|
-
description?: string | null;
|
|
1048
|
-
category: "Regulatory" | "Guidelines" | "MarketData" | "Custom";
|
|
1049
|
-
scope: "FullDomain" | "SpecificPath";
|
|
1050
|
-
}
|
|
1051
749
|
export interface CreateBranchRequest {
|
|
1052
750
|
/**
|
|
1053
751
|
* @minLength 1
|
|
@@ -1080,8 +778,8 @@ export interface CreateCustomFieldDefinitionRequest {
|
|
|
1080
778
|
name: string;
|
|
1081
779
|
defaultValue?: string | null;
|
|
1082
780
|
regexPattern?: string | null;
|
|
1083
|
-
dataType:
|
|
1084
|
-
entityType:
|
|
781
|
+
dataType: CreateCustomFieldDefinitionRequestDataTypeEnum;
|
|
782
|
+
entityType: CreateCustomFieldDefinitionRequestEntityTypeEnum;
|
|
1085
783
|
options?: CustomFieldOptionRequest[] | null;
|
|
1086
784
|
permissions?: CustomFieldPermissionRequest[] | null;
|
|
1087
785
|
}
|
|
@@ -1101,7 +799,7 @@ export interface CreateDocumentTemplateRequest {
|
|
|
1101
799
|
export interface CreateGroupMemberRequest {
|
|
1102
800
|
/** @format uuid */
|
|
1103
801
|
userId: string;
|
|
1104
|
-
loanRole:
|
|
802
|
+
loanRole: CreateGroupMemberRequestLoanRoleEnum;
|
|
1105
803
|
}
|
|
1106
804
|
export interface CreateInviteRequest {
|
|
1107
805
|
/** @minLength 1 */
|
|
@@ -1112,7 +810,7 @@ export interface CreateInviteRequest {
|
|
|
1112
810
|
emailAddress: string;
|
|
1113
811
|
phoneNumber?: string | null;
|
|
1114
812
|
/** @deprecated */
|
|
1115
|
-
relationship:
|
|
813
|
+
relationship: CreateInviteRequestRelationshipEnum;
|
|
1116
814
|
loanID: string;
|
|
1117
815
|
route?: string | null;
|
|
1118
816
|
/** @format uuid */
|
|
@@ -1142,7 +840,7 @@ export interface CreateLoanImportRequest {
|
|
|
1142
840
|
* @minLength 1
|
|
1143
841
|
*/
|
|
1144
842
|
startDate: string;
|
|
1145
|
-
importMode:
|
|
843
|
+
importMode: CreateLoanImportRequestImportModeEnum;
|
|
1146
844
|
}
|
|
1147
845
|
export interface CreateSession {
|
|
1148
846
|
sessionId: string;
|
|
@@ -1160,7 +858,7 @@ export interface CreateUserDeviceRequest {
|
|
|
1160
858
|
token: string;
|
|
1161
859
|
}
|
|
1162
860
|
export interface CreateUserDraft {
|
|
1163
|
-
loanRole:
|
|
861
|
+
loanRole: CreateUserDraftLoanRoleEnum;
|
|
1164
862
|
}
|
|
1165
863
|
export interface CreateUserGroupRequest {
|
|
1166
864
|
/**
|
|
@@ -1241,8 +939,8 @@ export interface CustomFieldDefinition {
|
|
|
1241
939
|
name: string;
|
|
1242
940
|
defaultValue?: string | null;
|
|
1243
941
|
regexPattern?: string | null;
|
|
1244
|
-
dataType:
|
|
1245
|
-
entityType:
|
|
942
|
+
dataType: CustomFieldDefinitionDataTypeEnum;
|
|
943
|
+
entityType: CustomFieldDefinitionEntityTypeEnum;
|
|
1246
944
|
options: CustomFieldOption[];
|
|
1247
945
|
permissions: CustomFieldPermission[];
|
|
1248
946
|
encompassMapping?: EncompassMapping | null;
|
|
@@ -1256,7 +954,7 @@ export interface CustomFieldEntry {
|
|
|
1256
954
|
displayOrder: number;
|
|
1257
955
|
name: string;
|
|
1258
956
|
value: string;
|
|
1259
|
-
dataType:
|
|
957
|
+
dataType: CustomFieldEntryDataTypeEnum;
|
|
1260
958
|
}
|
|
1261
959
|
export interface CustomFieldOption {
|
|
1262
960
|
/** @format uuid */
|
|
@@ -1273,12 +971,12 @@ export interface CustomFieldOptionRequest {
|
|
|
1273
971
|
export interface CustomFieldPermission {
|
|
1274
972
|
/** @format uuid */
|
|
1275
973
|
id: string;
|
|
1276
|
-
role:
|
|
1277
|
-
accessLevel:
|
|
974
|
+
role: CustomFieldPermissionRoleEnum;
|
|
975
|
+
accessLevel: CustomFieldPermissionAccessLevelEnum;
|
|
1278
976
|
}
|
|
1279
977
|
export interface CustomFieldPermissionRequest {
|
|
1280
|
-
role:
|
|
1281
|
-
accessLevel:
|
|
978
|
+
role: CustomFieldPermissionRequestRoleEnum;
|
|
979
|
+
accessLevel: CustomFieldPermissionRequestAccessLevelEnum;
|
|
1282
980
|
}
|
|
1283
981
|
export interface CustomFieldValue {
|
|
1284
982
|
/** @format uuid */
|
|
@@ -1289,10 +987,7 @@ export interface CustomFieldValue {
|
|
|
1289
987
|
customFieldDefinitionID: string;
|
|
1290
988
|
value: string;
|
|
1291
989
|
definitionName: string;
|
|
1292
|
-
dataType:
|
|
1293
|
-
}
|
|
1294
|
-
export interface CustomLoanData {
|
|
1295
|
-
eConsentInformation?: EConsentInformation | null;
|
|
990
|
+
dataType: CustomFieldValueDataTypeEnum;
|
|
1296
991
|
}
|
|
1297
992
|
export interface DetailedUser {
|
|
1298
993
|
/** @format date-time */
|
|
@@ -1533,7 +1228,7 @@ export interface Draft {
|
|
|
1533
1228
|
siteConfiguration: SiteConfigurationReduced;
|
|
1534
1229
|
/** @format uuid */
|
|
1535
1230
|
loanID?: string | null;
|
|
1536
|
-
type:
|
|
1231
|
+
type: DraftTypeEnum;
|
|
1537
1232
|
isCoBorrower: boolean;
|
|
1538
1233
|
}
|
|
1539
1234
|
export interface DraftContent {
|
|
@@ -1551,7 +1246,7 @@ export interface DraftContent {
|
|
|
1551
1246
|
siteConfiguration: SiteConfigurationReduced;
|
|
1552
1247
|
/** @format uuid */
|
|
1553
1248
|
loanID?: string | null;
|
|
1554
|
-
type:
|
|
1249
|
+
type: DraftContentTypeEnum;
|
|
1555
1250
|
isCoBorrower: boolean;
|
|
1556
1251
|
applicationPayload: any;
|
|
1557
1252
|
}
|
|
@@ -1570,13 +1265,6 @@ export interface DraftRequest {
|
|
|
1570
1265
|
customData?: any;
|
|
1571
1266
|
isCoBorrower: boolean;
|
|
1572
1267
|
}
|
|
1573
|
-
export interface EConsentInformation {
|
|
1574
|
-
status: string;
|
|
1575
|
-
/** @format date-time */
|
|
1576
|
-
acceptedDate?: string | null;
|
|
1577
|
-
ipAddress?: string | null;
|
|
1578
|
-
source?: string | null;
|
|
1579
|
-
}
|
|
1580
1268
|
export interface EnabledServices {
|
|
1581
1269
|
/** @format date-time */
|
|
1582
1270
|
createdAt: string;
|
|
@@ -1642,7 +1330,7 @@ export interface EncompassCredentialsDetail {
|
|
|
1642
1330
|
defaultLoanOfficerUserName?: string | null;
|
|
1643
1331
|
clearStateIfUnlicensed: boolean;
|
|
1644
1332
|
baseUrl?: string | null;
|
|
1645
|
-
signingMethod:
|
|
1333
|
+
signingMethod: EncompassCredentialsDetailSigningMethodEnum;
|
|
1646
1334
|
subscriptionId?: string | null;
|
|
1647
1335
|
environment?: string | null;
|
|
1648
1336
|
}
|
|
@@ -1657,7 +1345,7 @@ export interface EncompassCredentialsRequest {
|
|
|
1657
1345
|
defaultLoanOfficerUserName?: string | null;
|
|
1658
1346
|
clearStateIfUnlicensed: boolean;
|
|
1659
1347
|
baseUrl?: string | null;
|
|
1660
|
-
signingMethod:
|
|
1348
|
+
signingMethod: EncompassCredentialsRequestSigningMethodEnum;
|
|
1661
1349
|
subscriptionId?: string | null;
|
|
1662
1350
|
environment?: string | null;
|
|
1663
1351
|
clientID?: string | null;
|
|
@@ -1763,8 +1451,8 @@ export interface EncompassRequestLog {
|
|
|
1763
1451
|
losId?: string | null;
|
|
1764
1452
|
/** @format uuid */
|
|
1765
1453
|
accountId: string;
|
|
1766
|
-
operationType:
|
|
1767
|
-
outcome:
|
|
1454
|
+
operationType: EncompassRequestLogOperationTypeEnum;
|
|
1455
|
+
outcome: EncompassRequestLogOutcomeEnum;
|
|
1768
1456
|
message: string;
|
|
1769
1457
|
endpoint?: string | null;
|
|
1770
1458
|
httpMethod?: string | null;
|
|
@@ -1981,7 +1669,7 @@ export interface FusionFieldDisplay {
|
|
|
1981
1669
|
fieldValue: string;
|
|
1982
1670
|
}
|
|
1983
1671
|
export interface FusionReportFilter {
|
|
1984
|
-
filterType:
|
|
1672
|
+
filterType: FusionReportFilterFilterTypeEnum;
|
|
1985
1673
|
targetField: string;
|
|
1986
1674
|
targetValue: string;
|
|
1987
1675
|
}
|
|
@@ -2001,17 +1689,6 @@ export interface GenerateDocumentRequest {
|
|
|
2001
1689
|
preview: boolean;
|
|
2002
1690
|
recipients: string[];
|
|
2003
1691
|
}
|
|
2004
|
-
export interface GenerateSystemPrompt {
|
|
2005
|
-
systemPrompt: string;
|
|
2006
|
-
}
|
|
2007
|
-
export interface GenerateSystemPromptRequest {
|
|
2008
|
-
/**
|
|
2009
|
-
* @minLength 1
|
|
2010
|
-
* @maxLength 2000
|
|
2011
|
-
*/
|
|
2012
|
-
description: string;
|
|
2013
|
-
category: "DocumentAnalysis" | "DataQuery" | "General" | "Action";
|
|
2014
|
-
}
|
|
2015
1692
|
export interface GetApplications {
|
|
2016
1693
|
applications: ApplicationRowData[];
|
|
2017
1694
|
}
|
|
@@ -2106,7 +1783,7 @@ export interface GuidPatchOperation {
|
|
|
2106
1783
|
from?: string | null;
|
|
2107
1784
|
}
|
|
2108
1785
|
export interface IPAddress {
|
|
2109
|
-
addressFamily:
|
|
1786
|
+
addressFamily: IpAddressAddressFamilyEnum;
|
|
2110
1787
|
/** @format int64 */
|
|
2111
1788
|
scopeId: number;
|
|
2112
1789
|
isIPv6Multicast: boolean;
|
|
@@ -2360,7 +2037,7 @@ export interface Loan {
|
|
|
2360
2037
|
userLoans: UserLoan[];
|
|
2361
2038
|
contacts: LoanContact[];
|
|
2362
2039
|
customFields: CustomFieldEntry[];
|
|
2363
|
-
signingMethod:
|
|
2040
|
+
signingMethod: LoanSigningMethodEnum;
|
|
2364
2041
|
}
|
|
2365
2042
|
export interface LoanApplication {
|
|
2366
2043
|
/** @format uuid */
|
|
@@ -2416,7 +2093,7 @@ export interface LoanBorrower {
|
|
|
2416
2093
|
citizenship?: LoanCitizenship | null;
|
|
2417
2094
|
maritalStatus?: LoanMaritalStatus | null;
|
|
2418
2095
|
languagePreference?: LoanLanguagePreference | null;
|
|
2419
|
-
applicationStatus:
|
|
2096
|
+
applicationStatus: LoanBorrowerApplicationStatusEnum;
|
|
2420
2097
|
/** @format int32 */
|
|
2421
2098
|
numberOfDependents?: number | null;
|
|
2422
2099
|
isPrimaryBorrower: boolean;
|
|
@@ -3273,7 +2950,7 @@ export interface LoanContact {
|
|
|
3273
2950
|
email?: string | null;
|
|
3274
2951
|
phone?: string | null;
|
|
3275
2952
|
companyName?: string | null;
|
|
3276
|
-
role:
|
|
2953
|
+
role: LoanContactRoleEnum;
|
|
3277
2954
|
}
|
|
3278
2955
|
export interface LoanContactList {
|
|
3279
2956
|
email: string;
|
|
@@ -3322,12 +2999,12 @@ export interface LoanDocumentFolderPermission {
|
|
|
3322
2999
|
id: string;
|
|
3323
3000
|
/** @format uuid */
|
|
3324
3001
|
loanDocumentFolderID: string;
|
|
3325
|
-
role:
|
|
3326
|
-
level:
|
|
3002
|
+
role: LoanDocumentFolderPermissionRoleEnum;
|
|
3003
|
+
level: LoanDocumentFolderPermissionLevelEnum;
|
|
3327
3004
|
}
|
|
3328
3005
|
export interface LoanDocumentFolderPermissionRequest {
|
|
3329
|
-
role:
|
|
3330
|
-
level:
|
|
3006
|
+
role: LoanDocumentFolderPermissionRequestRoleEnum;
|
|
3007
|
+
level: LoanDocumentFolderPermissionRequestLevelEnum;
|
|
3331
3008
|
}
|
|
3332
3009
|
export interface LoanDocumentFolderUsage {
|
|
3333
3010
|
/** @format uuid */
|
|
@@ -3435,13 +3112,13 @@ export interface LoanImport {
|
|
|
3435
3112
|
/** @format int32 */
|
|
3436
3113
|
importedCount: number;
|
|
3437
3114
|
statusMessage?: string | null;
|
|
3438
|
-
status:
|
|
3439
|
-
importMode:
|
|
3115
|
+
status: LoanImportStatusEnum;
|
|
3116
|
+
importMode: LoanImportImportModeEnum;
|
|
3440
3117
|
/** @format date-time */
|
|
3441
3118
|
createdAt?: string | null;
|
|
3442
3119
|
}
|
|
3443
3120
|
export interface LoanImportLog {
|
|
3444
|
-
level:
|
|
3121
|
+
level: LoanImportLogLevelEnum;
|
|
3445
3122
|
message: string;
|
|
3446
3123
|
/** @format date-time */
|
|
3447
3124
|
createdAt: string;
|
|
@@ -3496,8 +3173,8 @@ export interface LoanListPaginated {
|
|
|
3496
3173
|
export interface LoanLog {
|
|
3497
3174
|
/** @format uuid */
|
|
3498
3175
|
id: string;
|
|
3499
|
-
level:
|
|
3500
|
-
type:
|
|
3176
|
+
level: LoanLogLevelEnum;
|
|
3177
|
+
type: LoanLogTypeEnum;
|
|
3501
3178
|
message: string;
|
|
3502
3179
|
/** @format date-time */
|
|
3503
3180
|
createdAt: string;
|
|
@@ -3505,8 +3182,8 @@ export interface LoanLog {
|
|
|
3505
3182
|
export interface LoanLogDetail {
|
|
3506
3183
|
/** @format uuid */
|
|
3507
3184
|
id: string;
|
|
3508
|
-
level:
|
|
3509
|
-
type:
|
|
3185
|
+
level: LoanLogDetailLevelEnum;
|
|
3186
|
+
type: LoanLogDetailTypeEnum;
|
|
3510
3187
|
message: string;
|
|
3511
3188
|
/** @format date-time */
|
|
3512
3189
|
createdAt: string;
|
|
@@ -3772,7 +3449,7 @@ export interface LoanTaskSearchRequest {
|
|
|
3772
3449
|
loanStatus?: LoanTaskActivityFilter | null;
|
|
3773
3450
|
}
|
|
3774
3451
|
export interface LoanTaskStatusSummary {
|
|
3775
|
-
status:
|
|
3452
|
+
status: LoanTaskStatusSummaryStatusEnum;
|
|
3776
3453
|
/** @format int32 */
|
|
3777
3454
|
count: number;
|
|
3778
3455
|
}
|
|
@@ -3784,7 +3461,7 @@ export interface LoanUser {
|
|
|
3784
3461
|
email: string;
|
|
3785
3462
|
phone?: string | null;
|
|
3786
3463
|
role: string;
|
|
3787
|
-
loanRole:
|
|
3464
|
+
loanRole: LoanUserLoanRoleEnum;
|
|
3788
3465
|
isUser: boolean;
|
|
3789
3466
|
/** @format date-time */
|
|
3790
3467
|
createdAt: string;
|
|
@@ -3817,7 +3494,7 @@ export interface LosOperationTracking {
|
|
|
3817
3494
|
operationType: string;
|
|
3818
3495
|
correlationKey: string;
|
|
3819
3496
|
lastTriggerSource?: string | null;
|
|
3820
|
-
status:
|
|
3497
|
+
status: LosOperationTrackingStatusEnum;
|
|
3821
3498
|
/** @format date-time */
|
|
3822
3499
|
createdAt: string;
|
|
3823
3500
|
/** @format date-time */
|
|
@@ -3878,7 +3555,7 @@ export interface LosSyncStep {
|
|
|
3878
3555
|
/** @format int32 */
|
|
3879
3556
|
order: number;
|
|
3880
3557
|
name: string;
|
|
3881
|
-
severity:
|
|
3558
|
+
severity: LosSyncStepSeverityEnum;
|
|
3882
3559
|
message: string;
|
|
3883
3560
|
/** @format date-time */
|
|
3884
3561
|
atUtc: string;
|
|
@@ -4189,7 +3866,7 @@ export interface NotificationTemplateVersionUpdateRequest {
|
|
|
4189
3866
|
}
|
|
4190
3867
|
export interface Operation {
|
|
4191
3868
|
op?: string;
|
|
4192
|
-
value?:
|
|
3869
|
+
value?: object | null;
|
|
4193
3870
|
path?: string;
|
|
4194
3871
|
}
|
|
4195
3872
|
export interface OverridePasswordRequest {
|
|
@@ -4525,7 +4202,7 @@ export interface SSOTokenRequest {
|
|
|
4525
4202
|
redirectUri: string;
|
|
4526
4203
|
}
|
|
4527
4204
|
export interface SamlMetadataRequest {
|
|
4528
|
-
ssoIntegration:
|
|
4205
|
+
ssoIntegration: SamlMetadataRequestSsoIntegrationEnum;
|
|
4529
4206
|
}
|
|
4530
4207
|
export interface SendForgotPasswordRequest {
|
|
4531
4208
|
/**
|
|
@@ -4576,7 +4253,7 @@ export interface SiteConfiguration {
|
|
|
4576
4253
|
deletedAt?: string | null;
|
|
4577
4254
|
/** @format uuid */
|
|
4578
4255
|
id: string;
|
|
4579
|
-
type:
|
|
4256
|
+
type: SiteConfigurationTypeEnum;
|
|
4580
4257
|
/** @format uuid */
|
|
4581
4258
|
entityID: string;
|
|
4582
4259
|
/** @format int32 */
|
|
@@ -4770,7 +4447,7 @@ export interface SiteConfigurationByUrl {
|
|
|
4770
4447
|
deletedAt?: string | null;
|
|
4771
4448
|
/** @format uuid */
|
|
4772
4449
|
id: string;
|
|
4773
|
-
type:
|
|
4450
|
+
type: SiteConfigurationByUrlTypeEnum;
|
|
4774
4451
|
/** @format uuid */
|
|
4775
4452
|
entityID: string;
|
|
4776
4453
|
/** @format int32 */
|
|
@@ -4981,7 +4658,7 @@ export interface SiteConfigurationForm {
|
|
|
4981
4658
|
export interface SiteConfigurationReduced {
|
|
4982
4659
|
/** @format uuid */
|
|
4983
4660
|
id: string;
|
|
4984
|
-
type:
|
|
4661
|
+
type: SiteConfigurationReducedTypeEnum;
|
|
4985
4662
|
url?: string | null;
|
|
4986
4663
|
name: string;
|
|
4987
4664
|
/** @format int64 */
|
|
@@ -4998,7 +4675,7 @@ export interface SiteConfigurationRequest {
|
|
|
4998
4675
|
entityID: string;
|
|
4999
4676
|
/** @format int32 */
|
|
5000
4677
|
entityType: number;
|
|
5001
|
-
type:
|
|
4678
|
+
type: SiteConfigurationRequestTypeEnum;
|
|
5002
4679
|
url: string;
|
|
5003
4680
|
name: string;
|
|
5004
4681
|
introduction?: string | null;
|
|
@@ -5173,7 +4850,7 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
5173
4850
|
export interface SiteConfigurationSummary {
|
|
5174
4851
|
/** @format uuid */
|
|
5175
4852
|
id: string;
|
|
5176
|
-
type:
|
|
4853
|
+
type: SiteConfigurationSummaryTypeEnum;
|
|
5177
4854
|
url?: string | null;
|
|
5178
4855
|
name: string;
|
|
5179
4856
|
/** @format int64 */
|
|
@@ -5217,13 +4894,6 @@ export interface SocialSurveyRecord {
|
|
|
5217
4894
|
/** @format date-time */
|
|
5218
4895
|
reviewCompletedTimeStamp?: string | null;
|
|
5219
4896
|
}
|
|
5220
|
-
export interface SupportedModel {
|
|
5221
|
-
modelId: string;
|
|
5222
|
-
displayName: string;
|
|
5223
|
-
provider: string;
|
|
5224
|
-
description?: string | null;
|
|
5225
|
-
isDefault: boolean;
|
|
5226
|
-
}
|
|
5227
4897
|
export interface SurveyEmailRequest {
|
|
5228
4898
|
/** @minLength 1 */
|
|
5229
4899
|
loanOfficerEmailAddress: string;
|
|
@@ -5465,75 +5135,6 @@ export interface UpdateAccountRequest {
|
|
|
5465
5135
|
asoSettings?: ASOSettings | null;
|
|
5466
5136
|
settings: AccountSettingsRequest;
|
|
5467
5137
|
}
|
|
5468
|
-
export interface UpdateAiCanonicalFieldRequest {
|
|
5469
|
-
/**
|
|
5470
|
-
* @minLength 1
|
|
5471
|
-
* @maxLength 200
|
|
5472
|
-
*/
|
|
5473
|
-
displayName: string;
|
|
5474
|
-
/** @minLength 1 */
|
|
5475
|
-
description: string;
|
|
5476
|
-
/** @minItems 1 */
|
|
5477
|
-
allowedRoles: string[];
|
|
5478
|
-
isPii: boolean;
|
|
5479
|
-
}
|
|
5480
|
-
export interface UpdateAiGuardrailRequest {
|
|
5481
|
-
/**
|
|
5482
|
-
* @minLength 1
|
|
5483
|
-
* @maxLength 200
|
|
5484
|
-
*/
|
|
5485
|
-
name: string;
|
|
5486
|
-
category: "ContentSafety" | "PromptInjection" | "Privacy" | "Legal";
|
|
5487
|
-
description?: string | null;
|
|
5488
|
-
/** @minItems 1 */
|
|
5489
|
-
keywords: string[];
|
|
5490
|
-
/** @minLength 1 */
|
|
5491
|
-
responseTemplate: string;
|
|
5492
|
-
}
|
|
5493
|
-
export interface UpdateAiPromptRequest {
|
|
5494
|
-
/**
|
|
5495
|
-
* @minLength 1
|
|
5496
|
-
* @maxLength 200
|
|
5497
|
-
*/
|
|
5498
|
-
title: string;
|
|
5499
|
-
icon: string;
|
|
5500
|
-
/**
|
|
5501
|
-
* @minLength 1
|
|
5502
|
-
* @maxLength 500
|
|
5503
|
-
*/
|
|
5504
|
-
description: string;
|
|
5505
|
-
documentTypes: string[];
|
|
5506
|
-
applicableGuidelines: string[];
|
|
5507
|
-
allowedRoles: string[];
|
|
5508
|
-
/** @minLength 1 */
|
|
5509
|
-
systemPrompt: string;
|
|
5510
|
-
/** @minLength 1 */
|
|
5511
|
-
userPromptTemplate: string;
|
|
5512
|
-
followUpPrompts: string[];
|
|
5513
|
-
/** @format int32 */
|
|
5514
|
-
sortOrder: number;
|
|
5515
|
-
category?: AiPromptCategory | null;
|
|
5516
|
-
queryTemplateName?: AiQueryTemplateName | null;
|
|
5517
|
-
displayHint?: AiDisplayHint | null;
|
|
5518
|
-
bedrockModelId?: string | null;
|
|
5519
|
-
requiredDataSources?: string[] | null;
|
|
5520
|
-
outputType?: AiOutputType | null;
|
|
5521
|
-
}
|
|
5522
|
-
export interface UpdateAiUrlSourceRequest {
|
|
5523
|
-
/**
|
|
5524
|
-
* @minLength 1
|
|
5525
|
-
* @maxLength 200
|
|
5526
|
-
*/
|
|
5527
|
-
name: string;
|
|
5528
|
-
/**
|
|
5529
|
-
* @minLength 1
|
|
5530
|
-
* @maxLength 2048
|
|
5531
|
-
*/
|
|
5532
|
-
url: string;
|
|
5533
|
-
description?: string | null;
|
|
5534
|
-
category: "Regulatory" | "Guidelines" | "MarketData" | "Custom";
|
|
5535
|
-
scope: "FullDomain" | "SpecificPath";
|
|
5536
|
-
}
|
|
5537
5138
|
export interface UpdateCustomFieldDefinitionRequest {
|
|
5538
5139
|
isRequired: boolean;
|
|
5539
5140
|
/**
|
|
@@ -5865,7 +5466,7 @@ export interface UserDevice {
|
|
|
5865
5466
|
export interface UserDraft {
|
|
5866
5467
|
/** @format uuid */
|
|
5867
5468
|
draftID: string;
|
|
5868
|
-
role:
|
|
5469
|
+
role: UserDraftRoleEnum;
|
|
5869
5470
|
user: User;
|
|
5870
5471
|
}
|
|
5871
5472
|
export interface UserDraftPaginated {
|
|
@@ -5889,7 +5490,7 @@ export interface UserGroupAccessScope {
|
|
|
5889
5490
|
id: string;
|
|
5890
5491
|
/** @format uuid */
|
|
5891
5492
|
groupId: string;
|
|
5892
|
-
scopeType:
|
|
5493
|
+
scopeType: UserGroupAccessScopeScopeTypeEnum;
|
|
5893
5494
|
/** @format uuid */
|
|
5894
5495
|
userId?: string | null;
|
|
5895
5496
|
/** @format uuid */
|
|
@@ -5922,12 +5523,11 @@ export interface UserLoan {
|
|
|
5922
5523
|
deletedAt?: string | null;
|
|
5923
5524
|
loanID: string;
|
|
5924
5525
|
user: User;
|
|
5925
|
-
role:
|
|
5526
|
+
role: UserLoanRoleEnum;
|
|
5926
5527
|
/** @format int32 */
|
|
5927
5528
|
borrowerPair?: number | null;
|
|
5928
5529
|
/** @format int32 */
|
|
5929
5530
|
borrowerPosition?: number | null;
|
|
5930
|
-
customLoanData?: CustomLoanData | null;
|
|
5931
5531
|
consents: UserLoanConsent[];
|
|
5932
5532
|
}
|
|
5933
5533
|
export interface UserLoanConsent {
|
|
@@ -5935,10 +5535,10 @@ export interface UserLoanConsent {
|
|
|
5935
5535
|
id: string;
|
|
5936
5536
|
/** @format uuid */
|
|
5937
5537
|
userLoanID: string;
|
|
5938
|
-
type:
|
|
5538
|
+
type: UserLoanConsentTypeEnum;
|
|
5939
5539
|
providedConsent: boolean;
|
|
5940
5540
|
ipAddress?: string | null;
|
|
5941
|
-
losSyncStatus:
|
|
5541
|
+
losSyncStatus: UserLoanConsentLosSyncStatusEnum;
|
|
5942
5542
|
/** @format date-time */
|
|
5943
5543
|
createdAt: string;
|
|
5944
5544
|
/** @format date-time */
|
|
@@ -6079,7 +5679,7 @@ export interface UserSummary {
|
|
|
6079
5679
|
id: string;
|
|
6080
5680
|
name?: string | null;
|
|
6081
5681
|
email?: string | null;
|
|
6082
|
-
role:
|
|
5682
|
+
role: UserSummaryRoleEnum;
|
|
6083
5683
|
}
|
|
6084
5684
|
export interface VerifyPasswordRequest {
|
|
6085
5685
|
/**
|
|
@@ -6112,6 +5712,70 @@ export interface Workflow {
|
|
|
6112
5712
|
tileSubtitle: string;
|
|
6113
5713
|
icon: string;
|
|
6114
5714
|
}
|
|
5715
|
+
export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
|
|
5716
|
+
export type AuditLogEntryChangeTypeEnum = "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored";
|
|
5717
|
+
export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
|
|
5718
|
+
export type CreateAccountRequestEnvironmentEnum = "Development" | "Staging" | "UAT" | "Production";
|
|
5719
|
+
export type CreateCustomFieldDefinitionRequestDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5720
|
+
export type CreateCustomFieldDefinitionRequestEntityTypeEnum = "Loan";
|
|
5721
|
+
export type CreateGroupMemberRequestLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5722
|
+
/** @deprecated */
|
|
5723
|
+
export type CreateInviteRequestRelationshipEnum = "NotApplicable" | "Spouse" | "NonSpouse";
|
|
5724
|
+
export type CreateLoanImportRequestImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5725
|
+
export type CreateUserDraftLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5726
|
+
export type CustomFieldDefinitionDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5727
|
+
export type CustomFieldDefinitionEntityTypeEnum = "Loan";
|
|
5728
|
+
export type CustomFieldEntryDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5729
|
+
export type CustomFieldPermissionRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5730
|
+
export type CustomFieldPermissionAccessLevelEnum = "NoAccess" | "ReadOnly" | "ReadWrite";
|
|
5731
|
+
export type CustomFieldPermissionRequestRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5732
|
+
export type CustomFieldPermissionRequestAccessLevelEnum = "NoAccess" | "ReadOnly" | "ReadWrite";
|
|
5733
|
+
export type CustomFieldValueDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5734
|
+
export type DraftTypeEnum = "NewLoan" | "EditLoan";
|
|
5735
|
+
export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
|
|
5736
|
+
export type EncompassCredentialsDetailSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5737
|
+
export type EncompassCredentialsRequestSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5738
|
+
export type EncompassRequestLogOperationTypeEnum = "FieldUpdate" | "ConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
|
|
5739
|
+
export type EncompassRequestLogOutcomeEnum = "Success" | "Failure" | "PartialSuccess";
|
|
5740
|
+
export type FusionReportFilterFilterTypeEnum = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
|
|
5741
|
+
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";
|
|
5742
|
+
export type LoanSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5743
|
+
export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
|
|
5744
|
+
export type LoanContactRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5745
|
+
export type LoanDocumentFolderPermissionRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5746
|
+
export type LoanDocumentFolderPermissionLevelEnum = "None" | "Read" | "Write" | "Manage";
|
|
5747
|
+
export type LoanDocumentFolderPermissionRequestRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5748
|
+
export type LoanDocumentFolderPermissionRequestLevelEnum = "None" | "Read" | "Write" | "Manage";
|
|
5749
|
+
export type LoanImportStatusEnum = "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
|
|
5750
|
+
export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5751
|
+
export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5752
|
+
export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5753
|
+
export type LoanLogTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
|
|
5754
|
+
export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5755
|
+
export type LoanLogDetailTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
|
|
5756
|
+
export type LoanTaskStatusSummaryStatusEnum = "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
|
|
5757
|
+
export type LoanUserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5758
|
+
export type LosOperationTrackingStatusEnum = "Pending" | "Success" | "Failed" | "ConfigurationError" | "PermanentFailure" | "Locked";
|
|
5759
|
+
export type LosSyncStepSeverityEnum = "Success" | "Info" | "Warning" | "Error";
|
|
5760
|
+
export type SamlMetadataRequestSsoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5761
|
+
export type SiteConfigurationTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5762
|
+
export type SiteConfigurationByUrlTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5763
|
+
export type SiteConfigurationReducedTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5764
|
+
export type SiteConfigurationRequestTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5765
|
+
export type SiteConfigurationSummaryTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5766
|
+
export type UserDraftRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5767
|
+
export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
|
|
5768
|
+
export type UserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5769
|
+
export type UserLoanConsentTypeEnum = "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
5770
|
+
export type UserLoanConsentLosSyncStatusEnum = "NotStarted" | "Failed" | "Success";
|
|
5771
|
+
export type UserSummaryRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5772
|
+
export type GetCustomFieldDefinitionsParamsEntityTypeEnum = "Loan";
|
|
5773
|
+
/** @default "Realtor" */
|
|
5774
|
+
export type GetPartnersParamsRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5775
|
+
export type GetSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5776
|
+
export type GetSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5777
|
+
export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5778
|
+
export type CreateOrReplaceSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
6115
5779
|
import type { AxiosInstance, AxiosRequestConfig, AxiosResponse, ResponseType } from "axios";
|
|
6116
5780
|
export type QueryParamsType = Record<string | number, any>;
|
|
6117
5781
|
export interface FullRequestParams extends Omit<AxiosRequestConfig, "data" | "params" | "url" | "responseType"> {
|
|
@@ -6135,7 +5799,6 @@ export interface ApiConfig<SecurityDataType = unknown> extends Omit<AxiosRequest
|
|
|
6135
5799
|
format?: ResponseType;
|
|
6136
5800
|
}
|
|
6137
5801
|
export declare enum ContentType {
|
|
6138
|
-
JsonPatch = "application/json-patch+json",
|
|
6139
5802
|
Json = "application/json",
|
|
6140
5803
|
JsonApi = "application/vnd.api+json",
|
|
6141
5804
|
FormData = "multipart/form-data",
|
|
@@ -6157,7 +5820,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
|
|
|
6157
5820
|
}
|
|
6158
5821
|
/**
|
|
6159
5822
|
* @title The Big POS API
|
|
6160
|
-
* @version v2.40.
|
|
5823
|
+
* @version v2.40.4
|
|
6161
5824
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
6162
5825
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
6163
5826
|
*/
|
|
@@ -6295,430 +5958,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6295
5958
|
* @response `422` `ProblemDetails` Client Error
|
|
6296
5959
|
*/
|
|
6297
5960
|
updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any, {}>>;
|
|
6298
|
-
/**
|
|
6299
|
-
* No description
|
|
6300
|
-
*
|
|
6301
|
-
* @tags AiAdmin
|
|
6302
|
-
* @name GetAiAuditLogs
|
|
6303
|
-
* @summary Get paginated audit logs
|
|
6304
|
-
* @request GET:/api/ai/admin/audit-logs
|
|
6305
|
-
* @secure
|
|
6306
|
-
* @response `200` `AiAuditLogPaginated` Success
|
|
6307
|
-
*/
|
|
6308
|
-
getAiAuditLogs: (query?: {
|
|
6309
|
-
eventType?: AiAuditEventType;
|
|
6310
|
-
/** @format date-time */
|
|
6311
|
-
startDate?: string;
|
|
6312
|
-
/** @format date-time */
|
|
6313
|
-
endDate?: string;
|
|
6314
|
-
/** @format int32 */
|
|
6315
|
-
pageSize?: number;
|
|
6316
|
-
/** @format int32 */
|
|
6317
|
-
pageNumber?: number;
|
|
6318
|
-
sortBy?: string;
|
|
6319
|
-
sortDirection?: string;
|
|
6320
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AiAuditLogPaginated, any, {}>>;
|
|
6321
|
-
/**
|
|
6322
|
-
* No description
|
|
6323
|
-
*
|
|
6324
|
-
* @tags AiAdmin
|
|
6325
|
-
* @name GetAiAdminStats
|
|
6326
|
-
* @summary Get AI admin dashboard stats
|
|
6327
|
-
* @request GET:/api/ai/admin/stats
|
|
6328
|
-
* @secure
|
|
6329
|
-
* @response `200` `AiAdminStats` Success
|
|
6330
|
-
*/
|
|
6331
|
-
getAiAdminStats: (query?: {
|
|
6332
|
-
/** @format date-time */
|
|
6333
|
-
startDate?: string;
|
|
6334
|
-
/** @format date-time */
|
|
6335
|
-
endDate?: string;
|
|
6336
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AiAdminStats, any, {}>>;
|
|
6337
|
-
/**
|
|
6338
|
-
* No description
|
|
6339
|
-
*
|
|
6340
|
-
* @tags AiAdminPrompt
|
|
6341
|
-
* @name GetAiPrompts
|
|
6342
|
-
* @summary Get all prompts
|
|
6343
|
-
* @request GET:/api/ai/admin/prompts
|
|
6344
|
-
* @secure
|
|
6345
|
-
* @response `200` `(AiPrompt)[]` Success
|
|
6346
|
-
*/
|
|
6347
|
-
getAiPrompts: (params?: RequestParams) => Promise<AxiosResponse<AiPrompt[], any, {}>>;
|
|
6348
|
-
/**
|
|
6349
|
-
* No description
|
|
6350
|
-
*
|
|
6351
|
-
* @tags AiAdminPrompt
|
|
6352
|
-
* @name CreateAiPrompt
|
|
6353
|
-
* @summary Create custom prompt
|
|
6354
|
-
* @request POST:/api/ai/admin/prompts
|
|
6355
|
-
* @secure
|
|
6356
|
-
* @response `201` `AiPrompt` Created
|
|
6357
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
6358
|
-
*/
|
|
6359
|
-
createAiPrompt: (data: CreateAiPromptRequest, params?: RequestParams) => Promise<AxiosResponse<AiPrompt, any, {}>>;
|
|
6360
|
-
/**
|
|
6361
|
-
* No description
|
|
6362
|
-
*
|
|
6363
|
-
* @tags AiAdminPrompt
|
|
6364
|
-
* @name GetAiPrompt
|
|
6365
|
-
* @summary Get prompt by ID
|
|
6366
|
-
* @request GET:/api/ai/admin/prompts/{id}
|
|
6367
|
-
* @secure
|
|
6368
|
-
* @response `200` `AiPrompt` Success
|
|
6369
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6370
|
-
*/
|
|
6371
|
-
getAiPrompt: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiPrompt, any, {}>>;
|
|
6372
|
-
/**
|
|
6373
|
-
* No description
|
|
6374
|
-
*
|
|
6375
|
-
* @tags AiAdminPrompt
|
|
6376
|
-
* @name UpdateAiPrompt
|
|
6377
|
-
* @summary Update prompt
|
|
6378
|
-
* @request PUT:/api/ai/admin/prompts/{id}
|
|
6379
|
-
* @secure
|
|
6380
|
-
* @response `200` `AiPrompt` Success
|
|
6381
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
6382
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6383
|
-
*/
|
|
6384
|
-
updateAiPrompt: (id: string, data: UpdateAiPromptRequest, params?: RequestParams) => Promise<AxiosResponse<AiPrompt, any, {}>>;
|
|
6385
|
-
/**
|
|
6386
|
-
* No description
|
|
6387
|
-
*
|
|
6388
|
-
* @tags AiAdminPrompt
|
|
6389
|
-
* @name DeleteAiPrompt
|
|
6390
|
-
* @summary Delete prompt
|
|
6391
|
-
* @request DELETE:/api/ai/admin/prompts/{id}
|
|
6392
|
-
* @secure
|
|
6393
|
-
* @response `204` `void` No Content
|
|
6394
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
6395
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6396
|
-
*/
|
|
6397
|
-
deleteAiPrompt: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6398
|
-
/**
|
|
6399
|
-
* No description
|
|
6400
|
-
*
|
|
6401
|
-
* @tags AiAdminPrompt
|
|
6402
|
-
* @name ToggleAiPrompt
|
|
6403
|
-
* @summary Toggle prompt active/inactive
|
|
6404
|
-
* @request PATCH:/api/ai/admin/prompts/{id}/toggle
|
|
6405
|
-
* @secure
|
|
6406
|
-
* @response `200` `AiPrompt` Success
|
|
6407
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6408
|
-
*/
|
|
6409
|
-
toggleAiPrompt: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiPrompt, any, {}>>;
|
|
6410
|
-
/**
|
|
6411
|
-
* No description
|
|
6412
|
-
*
|
|
6413
|
-
* @tags AiAdminPrompt
|
|
6414
|
-
* @name GenerateAiSystemPrompt
|
|
6415
|
-
* @summary Generate a system prompt from description
|
|
6416
|
-
* @request POST:/api/ai/admin/prompts/generate
|
|
6417
|
-
* @secure
|
|
6418
|
-
* @response `200` `GenerateSystemPrompt` Success
|
|
6419
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
6420
|
-
*/
|
|
6421
|
-
generateAiSystemPrompt: (data: GenerateSystemPromptRequest, params?: RequestParams) => Promise<AxiosResponse<GenerateSystemPrompt, any, {}>>;
|
|
6422
|
-
/**
|
|
6423
|
-
* No description
|
|
6424
|
-
*
|
|
6425
|
-
* @tags AiAdminPrompt
|
|
6426
|
-
* @name GetSupportedModels
|
|
6427
|
-
* @summary Get supported LLM models
|
|
6428
|
-
* @request GET:/api/ai/admin/prompts/supported-models
|
|
6429
|
-
* @secure
|
|
6430
|
-
* @response `200` `(SupportedModel)[]` Success
|
|
6431
|
-
*/
|
|
6432
|
-
getSupportedModels: (params?: RequestParams) => Promise<AxiosResponse<SupportedModel[], any, {}>>;
|
|
6433
|
-
/**
|
|
6434
|
-
* No description
|
|
6435
|
-
*
|
|
6436
|
-
* @tags AiCanonicalField
|
|
6437
|
-
* @name GetAiCanonicalFields
|
|
6438
|
-
* @summary Get all canonical fields
|
|
6439
|
-
* @request GET:/api/ai/admin/fields
|
|
6440
|
-
* @secure
|
|
6441
|
-
* @response `200` `(AiCanonicalField)[]` Success
|
|
6442
|
-
*/
|
|
6443
|
-
getAiCanonicalFields: (params?: RequestParams) => Promise<AxiosResponse<AiCanonicalField[], any, {}>>;
|
|
6444
|
-
/**
|
|
6445
|
-
* No description
|
|
6446
|
-
*
|
|
6447
|
-
* @tags AiCanonicalField
|
|
6448
|
-
* @name CreateAiCanonicalField
|
|
6449
|
-
* @summary Create canonical field
|
|
6450
|
-
* @request POST:/api/ai/admin/fields
|
|
6451
|
-
* @secure
|
|
6452
|
-
* @response `201` `AiCanonicalField` Created
|
|
6453
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
6454
|
-
*/
|
|
6455
|
-
createAiCanonicalField: (data: CreateAiCanonicalFieldRequest, params?: RequestParams) => Promise<AxiosResponse<AiCanonicalField, any, {}>>;
|
|
6456
|
-
/**
|
|
6457
|
-
* No description
|
|
6458
|
-
*
|
|
6459
|
-
* @tags AiCanonicalField
|
|
6460
|
-
* @name GetAiCanonicalField
|
|
6461
|
-
* @summary Get canonical field by ID
|
|
6462
|
-
* @request GET:/api/ai/admin/fields/{id}
|
|
6463
|
-
* @secure
|
|
6464
|
-
* @response `200` `AiCanonicalField` Success
|
|
6465
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6466
|
-
*/
|
|
6467
|
-
getAiCanonicalField: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiCanonicalField, any, {}>>;
|
|
6468
|
-
/**
|
|
6469
|
-
* No description
|
|
6470
|
-
*
|
|
6471
|
-
* @tags AiCanonicalField
|
|
6472
|
-
* @name UpdateAiCanonicalField
|
|
6473
|
-
* @summary Update canonical field
|
|
6474
|
-
* @request PUT:/api/ai/admin/fields/{id}
|
|
6475
|
-
* @secure
|
|
6476
|
-
* @response `200` `AiCanonicalField` Success
|
|
6477
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
6478
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6479
|
-
*/
|
|
6480
|
-
updateAiCanonicalField: (id: string, data: UpdateAiCanonicalFieldRequest, params?: RequestParams) => Promise<AxiosResponse<AiCanonicalField, any, {}>>;
|
|
6481
|
-
/**
|
|
6482
|
-
* No description
|
|
6483
|
-
*
|
|
6484
|
-
* @tags AiCanonicalField
|
|
6485
|
-
* @name DeleteAiCanonicalField
|
|
6486
|
-
* @summary Delete canonical field
|
|
6487
|
-
* @request DELETE:/api/ai/admin/fields/{id}
|
|
6488
|
-
* @secure
|
|
6489
|
-
* @response `204` `void` No Content
|
|
6490
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6491
|
-
*/
|
|
6492
|
-
deleteAiCanonicalField: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6493
|
-
/**
|
|
6494
|
-
* No description
|
|
6495
|
-
*
|
|
6496
|
-
* @tags AiCanonicalField
|
|
6497
|
-
* @name ToggleAiCanonicalField
|
|
6498
|
-
* @summary Toggle canonical field active/inactive
|
|
6499
|
-
* @request PATCH:/api/ai/admin/fields/{id}/toggle
|
|
6500
|
-
* @secure
|
|
6501
|
-
* @response `200` `AiCanonicalField` Success
|
|
6502
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6503
|
-
*/
|
|
6504
|
-
toggleAiCanonicalField: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiCanonicalField, any, {}>>;
|
|
6505
|
-
/**
|
|
6506
|
-
* No description
|
|
6507
|
-
*
|
|
6508
|
-
* @tags AiChat
|
|
6509
|
-
* @name AiChat
|
|
6510
|
-
* @summary Send AI chat message
|
|
6511
|
-
* @request POST:/api/ai/chat
|
|
6512
|
-
* @secure
|
|
6513
|
-
* @response `200` `AiChat` Success
|
|
6514
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
6515
|
-
* @response `401` `ProblemDetails` Unauthorized
|
|
6516
|
-
*/
|
|
6517
|
-
aiChat: (data: AiChatRequest, params?: RequestParams) => Promise<AxiosResponse<AiChat, any, {}>>;
|
|
6518
|
-
/**
|
|
6519
|
-
* No description
|
|
6520
|
-
*
|
|
6521
|
-
* @tags AiConversation
|
|
6522
|
-
* @name GetAiConversations
|
|
6523
|
-
* @summary Get user conversations
|
|
6524
|
-
* @request GET:/api/ai/conversations
|
|
6525
|
-
* @secure
|
|
6526
|
-
* @response `200` `AiConversationListItemPaginated` Success
|
|
6527
|
-
*/
|
|
6528
|
-
getAiConversations: (query?: {
|
|
6529
|
-
/** @format int32 */
|
|
6530
|
-
pageSize?: number;
|
|
6531
|
-
/** @format int32 */
|
|
6532
|
-
pageNumber?: number;
|
|
6533
|
-
sortBy?: string;
|
|
6534
|
-
sortDirection?: string;
|
|
6535
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AiConversationListItemPaginated, any, {}>>;
|
|
6536
|
-
/**
|
|
6537
|
-
* No description
|
|
6538
|
-
*
|
|
6539
|
-
* @tags AiConversation
|
|
6540
|
-
* @name GetAiConversation
|
|
6541
|
-
* @summary Get conversation with messages
|
|
6542
|
-
* @request GET:/api/ai/conversations/{id}
|
|
6543
|
-
* @secure
|
|
6544
|
-
* @response `200` `AiConversationDetail` Success
|
|
6545
|
-
* @response `403` `ProblemDetails` Forbidden
|
|
6546
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6547
|
-
*/
|
|
6548
|
-
getAiConversation: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiConversationDetail, any, {}>>;
|
|
6549
|
-
/**
|
|
6550
|
-
* No description
|
|
6551
|
-
*
|
|
6552
|
-
* @tags AiConversation
|
|
6553
|
-
* @name DeleteAiConversation
|
|
6554
|
-
* @summary Delete conversation
|
|
6555
|
-
* @request DELETE:/api/ai/conversations/{id}
|
|
6556
|
-
* @secure
|
|
6557
|
-
* @response `204` `void` No Content
|
|
6558
|
-
* @response `403` `ProblemDetails` Forbidden
|
|
6559
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6560
|
-
*/
|
|
6561
|
-
deleteAiConversation: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6562
|
-
/**
|
|
6563
|
-
* No description
|
|
6564
|
-
*
|
|
6565
|
-
* @tags AiGuardrail
|
|
6566
|
-
* @name GetAiGuardrails
|
|
6567
|
-
* @summary Get all guardrails
|
|
6568
|
-
* @request GET:/api/ai/admin/guardrails
|
|
6569
|
-
* @secure
|
|
6570
|
-
* @response `200` `(AiGuardrail)[]` Success
|
|
6571
|
-
*/
|
|
6572
|
-
getAiGuardrails: (params?: RequestParams) => Promise<AxiosResponse<AiGuardrail[], any, {}>>;
|
|
6573
|
-
/**
|
|
6574
|
-
* No description
|
|
6575
|
-
*
|
|
6576
|
-
* @tags AiGuardrail
|
|
6577
|
-
* @name CreateAiGuardrail
|
|
6578
|
-
* @summary Create custom guardrail
|
|
6579
|
-
* @request POST:/api/ai/admin/guardrails
|
|
6580
|
-
* @secure
|
|
6581
|
-
* @response `201` `AiGuardrail` Created
|
|
6582
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
6583
|
-
*/
|
|
6584
|
-
createAiGuardrail: (data: CreateAiGuardrailRequest, params?: RequestParams) => Promise<AxiosResponse<AiGuardrail, any, {}>>;
|
|
6585
|
-
/**
|
|
6586
|
-
* No description
|
|
6587
|
-
*
|
|
6588
|
-
* @tags AiGuardrail
|
|
6589
|
-
* @name GetAiGuardrail
|
|
6590
|
-
* @summary Get guardrail by ID
|
|
6591
|
-
* @request GET:/api/ai/admin/guardrails/{id}
|
|
6592
|
-
* @secure
|
|
6593
|
-
* @response `200` `AiGuardrail` Success
|
|
6594
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6595
|
-
*/
|
|
6596
|
-
getAiGuardrail: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiGuardrail, any, {}>>;
|
|
6597
|
-
/**
|
|
6598
|
-
* No description
|
|
6599
|
-
*
|
|
6600
|
-
* @tags AiGuardrail
|
|
6601
|
-
* @name UpdateAiGuardrail
|
|
6602
|
-
* @summary Update guardrail
|
|
6603
|
-
* @request PUT:/api/ai/admin/guardrails/{id}
|
|
6604
|
-
* @secure
|
|
6605
|
-
* @response `200` `AiGuardrail` Success
|
|
6606
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
6607
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6608
|
-
*/
|
|
6609
|
-
updateAiGuardrail: (id: string, data: UpdateAiGuardrailRequest, params?: RequestParams) => Promise<AxiosResponse<AiGuardrail, any, {}>>;
|
|
6610
|
-
/**
|
|
6611
|
-
* No description
|
|
6612
|
-
*
|
|
6613
|
-
* @tags AiGuardrail
|
|
6614
|
-
* @name DeleteAiGuardrail
|
|
6615
|
-
* @summary Delete guardrail
|
|
6616
|
-
* @request DELETE:/api/ai/admin/guardrails/{id}
|
|
6617
|
-
* @secure
|
|
6618
|
-
* @response `204` `void` No Content
|
|
6619
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
6620
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6621
|
-
*/
|
|
6622
|
-
deleteAiGuardrail: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6623
|
-
/**
|
|
6624
|
-
* No description
|
|
6625
|
-
*
|
|
6626
|
-
* @tags AiGuardrail
|
|
6627
|
-
* @name ToggleAiGuardrail
|
|
6628
|
-
* @summary Toggle guardrail enabled/disabled
|
|
6629
|
-
* @request PATCH:/api/ai/admin/guardrails/{id}/toggle
|
|
6630
|
-
* @secure
|
|
6631
|
-
* @response `200` `AiGuardrail` Success
|
|
6632
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6633
|
-
*/
|
|
6634
|
-
toggleAiGuardrail: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiGuardrail, any, {}>>;
|
|
6635
|
-
/**
|
|
6636
|
-
* No description
|
|
6637
|
-
*
|
|
6638
|
-
* @tags AiPrompt
|
|
6639
|
-
* @name GetAvailablePrompts
|
|
6640
|
-
* @summary Get available prompts for current user
|
|
6641
|
-
* @request GET:/api/ai/prompts
|
|
6642
|
-
* @secure
|
|
6643
|
-
* @response `200` `(AiPromptSummary)[]` Success
|
|
6644
|
-
*/
|
|
6645
|
-
getAvailablePrompts: (query?: {
|
|
6646
|
-
documentType?: string;
|
|
6647
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AiPromptSummary[], any, {}>>;
|
|
6648
|
-
/**
|
|
6649
|
-
* No description
|
|
6650
|
-
*
|
|
6651
|
-
* @tags AiUrlSource
|
|
6652
|
-
* @name GetAiUrlSources
|
|
6653
|
-
* @summary Get all URL sources
|
|
6654
|
-
* @request GET:/api/ai/admin/url-sources
|
|
6655
|
-
* @secure
|
|
6656
|
-
* @response `200` `(AiUrlSource)[]` Success
|
|
6657
|
-
*/
|
|
6658
|
-
getAiUrlSources: (params?: RequestParams) => Promise<AxiosResponse<AiUrlSource[], any, {}>>;
|
|
6659
|
-
/**
|
|
6660
|
-
* No description
|
|
6661
|
-
*
|
|
6662
|
-
* @tags AiUrlSource
|
|
6663
|
-
* @name CreateAiUrlSource
|
|
6664
|
-
* @summary Create URL source
|
|
6665
|
-
* @request POST:/api/ai/admin/url-sources
|
|
6666
|
-
* @secure
|
|
6667
|
-
* @response `201` `AiUrlSource` Created
|
|
6668
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
6669
|
-
* @response `409` `ProblemDetails` Conflict
|
|
6670
|
-
*/
|
|
6671
|
-
createAiUrlSource: (data: CreateAiUrlSourceRequest, params?: RequestParams) => Promise<AxiosResponse<AiUrlSource, any, {}>>;
|
|
6672
|
-
/**
|
|
6673
|
-
* No description
|
|
6674
|
-
*
|
|
6675
|
-
* @tags AiUrlSource
|
|
6676
|
-
* @name GetAiUrlSource
|
|
6677
|
-
* @summary Get URL source by ID
|
|
6678
|
-
* @request GET:/api/ai/admin/url-sources/{id}
|
|
6679
|
-
* @secure
|
|
6680
|
-
* @response `200` `AiUrlSource` Success
|
|
6681
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6682
|
-
*/
|
|
6683
|
-
getAiUrlSource: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiUrlSource, any, {}>>;
|
|
6684
|
-
/**
|
|
6685
|
-
* No description
|
|
6686
|
-
*
|
|
6687
|
-
* @tags AiUrlSource
|
|
6688
|
-
* @name UpdateAiUrlSource
|
|
6689
|
-
* @summary Update URL source
|
|
6690
|
-
* @request PUT:/api/ai/admin/url-sources/{id}
|
|
6691
|
-
* @secure
|
|
6692
|
-
* @response `200` `AiUrlSource` Success
|
|
6693
|
-
* @response `400` `ProblemDetails` Bad Request
|
|
6694
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6695
|
-
* @response `409` `ProblemDetails` Conflict
|
|
6696
|
-
*/
|
|
6697
|
-
updateAiUrlSource: (id: string, data: UpdateAiUrlSourceRequest, params?: RequestParams) => Promise<AxiosResponse<AiUrlSource, any, {}>>;
|
|
6698
|
-
/**
|
|
6699
|
-
* No description
|
|
6700
|
-
*
|
|
6701
|
-
* @tags AiUrlSource
|
|
6702
|
-
* @name DeleteAiUrlSource
|
|
6703
|
-
* @summary Delete URL source
|
|
6704
|
-
* @request DELETE:/api/ai/admin/url-sources/{id}
|
|
6705
|
-
* @secure
|
|
6706
|
-
* @response `204` `void` No Content
|
|
6707
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6708
|
-
*/
|
|
6709
|
-
deleteAiUrlSource: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6710
|
-
/**
|
|
6711
|
-
* No description
|
|
6712
|
-
*
|
|
6713
|
-
* @tags AiUrlSource
|
|
6714
|
-
* @name ToggleAiUrlSource
|
|
6715
|
-
* @summary Toggle URL source active/inactive
|
|
6716
|
-
* @request PATCH:/api/ai/admin/url-sources/{id}/toggle
|
|
6717
|
-
* @secure
|
|
6718
|
-
* @response `200` `AiUrlSource` Success
|
|
6719
|
-
* @response `404` `ProblemDetails` Not Found
|
|
6720
|
-
*/
|
|
6721
|
-
toggleAiUrlSource: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiUrlSource, any, {}>>;
|
|
6722
5961
|
/**
|
|
6723
5962
|
* No description
|
|
6724
5963
|
*
|
|
@@ -7243,7 +6482,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7243
6482
|
* @response `200` `(CustomFieldDefinition)[]` Success
|
|
7244
6483
|
*/
|
|
7245
6484
|
getCustomFieldDefinitions: (query?: {
|
|
7246
|
-
entityType?:
|
|
6485
|
+
entityType?: GetCustomFieldDefinitionsParamsEntityTypeEnum;
|
|
7247
6486
|
}, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition[], any, {}>>;
|
|
7248
6487
|
/**
|
|
7249
6488
|
* No description
|
|
@@ -9925,7 +9164,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9925
9164
|
getPartners: (query?: {
|
|
9926
9165
|
showAll?: boolean;
|
|
9927
9166
|
/** @default "Realtor" */
|
|
9928
|
-
role?:
|
|
9167
|
+
role?: GetPartnersParamsRoleEnum;
|
|
9929
9168
|
/** @format int32 */
|
|
9930
9169
|
pageSize?: number;
|
|
9931
9170
|
/** @format int32 */
|
|
@@ -10103,7 +9342,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10103
9342
|
* @response `200` `File` Success
|
|
10104
9343
|
* @response `404` `ProblemDetails` Not Found
|
|
10105
9344
|
*/
|
|
10106
|
-
getSamlMetadata: (sSoIntegration:
|
|
9345
|
+
getSamlMetadata: (sSoIntegration: GetSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
10107
9346
|
/**
|
|
10108
9347
|
* No description
|
|
10109
9348
|
*
|
|
@@ -10114,7 +9353,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10114
9353
|
* @secure
|
|
10115
9354
|
* @response `200` `File` Success
|
|
10116
9355
|
*/
|
|
10117
|
-
createOrReplaceSamlMetadata: (sSoIntegration:
|
|
9356
|
+
createOrReplaceSamlMetadata: (sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
10118
9357
|
/**
|
|
10119
9358
|
* No description
|
|
10120
9359
|
*
|