@matech/thebigpos-sdk 2.38.0 → 2.38.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/dist/index.d.ts +1390 -395
- package/dist/index.js +516 -14
- package/dist/index.js.map +1 -1
- package/package.json +4 -3
- package/src/index.ts +2192 -446
- package/.claude/settings.local.json +0 -12
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
export type VersionStatusType = "Draft" | "Published";
|
|
2
2
|
export type UserRole = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
3
|
+
export type TaskStatus = "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
|
|
3
4
|
export type SiteConfigurationType = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5
|
+
export type SigningMethod = "ConsumerConnect" | "POSF";
|
|
4
6
|
export type SSOIntegrationType = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
7
|
+
export type LosOperationStatus = "Pending" | "Success" | "Failed" | "ConfigurationError" | "PermanentFailure" | "Locked";
|
|
5
8
|
export type LogLevel = "None" | "Info" | "Warning" | "Error";
|
|
6
9
|
export type LoanType = "Fha" | "Conventional" | "UsdaRd" | "Va" | "Other";
|
|
7
10
|
export type LoanTrustType = "Living" | "Land" | "Testamentary" | "Other";
|
|
8
11
|
export type LoanTitleHeld = "Sole" | "JointWithSpouse" | "JointWithOtherThanSpouse";
|
|
9
|
-
export type
|
|
12
|
+
export type LoanTaskActivityFilter = "Active" | "Inactive" | "All";
|
|
13
|
+
export type LoanRole = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
10
14
|
export type LoanRealEstateStatus = "Keep" | "Rent" | "Sell";
|
|
11
15
|
export type LoanQueueType = "Unknown" | "New" | "Append" | "Update" | "FieldUpdates" | "Document" | "Buckets";
|
|
12
16
|
export type LoanQueueReason = "Unknown" | "Locked" | "LOSError" | "Exception";
|
|
@@ -23,7 +27,7 @@ export type LoanNameSuffix = "Jr" | "Sr" | "II" | "III" | "IV" | "V" | "VI" | "V
|
|
|
23
27
|
export type LoanNamePrefix = "Mr" | "Mrs" | "Ms";
|
|
24
28
|
export type LoanMilitaryServiceType = "Current" | "RetiredDischargedSeparated" | "NonActivatedNationalGuard" | "SurvivingSpouse";
|
|
25
29
|
export type LoanMaritalStatus = "Married" | "Separated" | "Unmarried";
|
|
26
|
-
export type LoanLogType = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "
|
|
30
|
+
export type LoanLogType = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
|
|
27
31
|
export type LoanLienPosition = "First" | "Subordinate";
|
|
28
32
|
export type LoanLiabilityType = "Revolving" | "Installment" | "Open30Day" | "Lease" | "Other";
|
|
29
33
|
export type LoanLanguagePreference = "English" | "Chinese" | "Korean" | "Spanish" | "Tagalog" | "Vietnamese" | "Other";
|
|
@@ -42,12 +46,16 @@ export type LoanAsianRace = "AsianIndian" | "Chinese" | "Filipino" | "Japanese"
|
|
|
42
46
|
export type LoanAccountAssetType = "Checking" | "Savings" | "MoneyMarket" | "CertificateOfDeposit" | "MutualFund" | "Stocks" | "Bonds" | "Retirement" | "BridgeLoanProceeds" | "IndividualDevelopmentAccount" | "TrustAccount" | "CashValueOfLifeInsurance" | "Other";
|
|
43
47
|
export type LoanAccessScopeType = "User" | "Branch";
|
|
44
48
|
export type LOSStatus = "Unknown" | "Pending" | "Retrying" | "Successful" | "Failed" | "FailedPermanently" | "Uploaded" | "PendingSync";
|
|
49
|
+
export type FolderPermissionLevel = "None" | "Read" | "Write" | "Manage";
|
|
45
50
|
export type FilterType = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
|
|
46
51
|
export type Environment = "Development" | "Staging" | "UAT" | "Production";
|
|
47
52
|
export type EntityType = "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Realtor";
|
|
48
53
|
export type EncompassLogOutcome = "Success" | "Failure" | "PartialSuccess";
|
|
49
|
-
export type EncompassLogOperationType = "FieldUpdate" | "
|
|
54
|
+
export type EncompassLogOperationType = "FieldUpdate" | "ConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
|
|
50
55
|
export type DraftType = "NewLoan" | "EditLoan";
|
|
56
|
+
export type CustomFieldEntityType = "Loan";
|
|
57
|
+
export type CustomFieldDataType = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
58
|
+
export type CustomFieldAccessLevel = "NoAccess" | "ReadOnly" | "ReadWrite";
|
|
51
59
|
export type ConsentType = "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
52
60
|
export type ConsentLosSyncStatus = "NotStarted" | "Failed" | "Success";
|
|
53
61
|
export type BranchType = "Mortgage" | "RealEstate";
|
|
@@ -106,7 +114,7 @@ export interface AccountBilling {
|
|
|
106
114
|
contractedRate: number;
|
|
107
115
|
}
|
|
108
116
|
export interface AccountBillingRequest {
|
|
109
|
-
billingType:
|
|
117
|
+
billingType: AccountBillingRequestBillingTypeEnum;
|
|
110
118
|
/**
|
|
111
119
|
* @format double
|
|
112
120
|
* @min 0
|
|
@@ -384,17 +392,17 @@ export interface ApplicationRowData {
|
|
|
384
392
|
loanNumber?: string | null;
|
|
385
393
|
/** @deprecated */
|
|
386
394
|
role?: string | null;
|
|
387
|
-
/** @format date
|
|
395
|
+
/** @format date */
|
|
388
396
|
initialDisclosureDate?: string | null;
|
|
389
|
-
/** @format date
|
|
397
|
+
/** @format date */
|
|
390
398
|
closingDisclosureDate?: string | null;
|
|
391
|
-
/** @format date
|
|
399
|
+
/** @format date */
|
|
392
400
|
underwritingApprovalDate?: string | null;
|
|
393
401
|
/** @format date-time */
|
|
394
402
|
closedDate?: string | null;
|
|
395
403
|
/** @format date-time */
|
|
396
404
|
fundingDate?: string | null;
|
|
397
|
-
/** @format date
|
|
405
|
+
/** @format date */
|
|
398
406
|
currentStatusDate?: string | null;
|
|
399
407
|
channel?: string | null;
|
|
400
408
|
currentMilestone?: string | null;
|
|
@@ -418,11 +426,15 @@ export interface Attachment {
|
|
|
418
426
|
fileName: string;
|
|
419
427
|
base64Data: string;
|
|
420
428
|
}
|
|
429
|
+
export interface AuditEntityType {
|
|
430
|
+
entityType: string;
|
|
431
|
+
rootEntityType?: string | null;
|
|
432
|
+
}
|
|
421
433
|
export interface AuditLogEntry {
|
|
422
434
|
/** @format uuid */
|
|
423
435
|
id: string;
|
|
424
436
|
entityType: string;
|
|
425
|
-
changeType:
|
|
437
|
+
changeType: AuditLogEntryChangeTypeEnum;
|
|
426
438
|
/** @format uuid */
|
|
427
439
|
entityId: string;
|
|
428
440
|
performedBy?: AuditLogUser | null;
|
|
@@ -450,9 +462,6 @@ export interface AuditLogSearchCriteria {
|
|
|
450
462
|
startDate?: string | null;
|
|
451
463
|
/** @format date-time */
|
|
452
464
|
endDate?: string | null;
|
|
453
|
-
rootEntityType?: string | null;
|
|
454
|
-
/** @format uuid */
|
|
455
|
-
rootEntityId?: string | null;
|
|
456
465
|
}
|
|
457
466
|
export interface AuditLogUser {
|
|
458
467
|
/** @format uuid */
|
|
@@ -461,6 +470,11 @@ export interface AuditLogUser {
|
|
|
461
470
|
lastName: string;
|
|
462
471
|
email: string;
|
|
463
472
|
}
|
|
473
|
+
export interface AutomatedService {
|
|
474
|
+
triggered: string[];
|
|
475
|
+
skipped: string[];
|
|
476
|
+
rateLimited: string[];
|
|
477
|
+
}
|
|
464
478
|
export interface BranchBase {
|
|
465
479
|
/** @format date-time */
|
|
466
480
|
createdAt: string;
|
|
@@ -638,6 +652,24 @@ export interface ConditionComment {
|
|
|
638
652
|
createdBy: string;
|
|
639
653
|
createdByName: string;
|
|
640
654
|
}
|
|
655
|
+
export interface ConsumerConnectRetry {
|
|
656
|
+
correlationKey: string;
|
|
657
|
+
email: string;
|
|
658
|
+
status?: LosOperationStatus | null;
|
|
659
|
+
success: boolean;
|
|
660
|
+
}
|
|
661
|
+
export interface ConsumerConnectStatus {
|
|
662
|
+
correlationKey: string;
|
|
663
|
+
email: string;
|
|
664
|
+
status?: LosOperationStatus | null;
|
|
665
|
+
/** @format int32 */
|
|
666
|
+
attemptCount: number;
|
|
667
|
+
/** @format date-time */
|
|
668
|
+
lastAttemptAt?: string | null;
|
|
669
|
+
/** @format date-time */
|
|
670
|
+
nextRetryAt?: string | null;
|
|
671
|
+
lastTriggerSource?: string | null;
|
|
672
|
+
}
|
|
641
673
|
export interface ContactInfo {
|
|
642
674
|
phone: string;
|
|
643
675
|
tollFreePhone?: string | null;
|
|
@@ -686,7 +718,7 @@ export interface CorporateSearchCriteria {
|
|
|
686
718
|
isActive?: boolean | null;
|
|
687
719
|
}
|
|
688
720
|
export interface CreateAccessScopeRequest {
|
|
689
|
-
scopeType:
|
|
721
|
+
scopeType: CreateAccessScopeRequestScopeTypeEnum;
|
|
690
722
|
/** @format uuid */
|
|
691
723
|
userId?: string | null;
|
|
692
724
|
/** @format uuid */
|
|
@@ -709,7 +741,7 @@ export interface CreateAccountRequest {
|
|
|
709
741
|
*/
|
|
710
742
|
nlmsid: number;
|
|
711
743
|
settings: AccountSettingsRequest;
|
|
712
|
-
environment:
|
|
744
|
+
environment: CreateAccountRequestEnvironmentEnum;
|
|
713
745
|
losIntegration: LOSIntegration;
|
|
714
746
|
billingSettings: AccountBillingRequest;
|
|
715
747
|
}
|
|
@@ -723,6 +755,33 @@ export interface CreateBranchRequest {
|
|
|
723
755
|
corporateID: string;
|
|
724
756
|
type: string;
|
|
725
757
|
}
|
|
758
|
+
export interface CreateCustomFieldDefinitionRequest {
|
|
759
|
+
isRequired: boolean;
|
|
760
|
+
/**
|
|
761
|
+
* @format int32
|
|
762
|
+
* @min 0
|
|
763
|
+
*/
|
|
764
|
+
displayOrder: number;
|
|
765
|
+
/** @format int32 */
|
|
766
|
+
minLength?: number | null;
|
|
767
|
+
/** @format int32 */
|
|
768
|
+
maxLength?: number | null;
|
|
769
|
+
/** @format double */
|
|
770
|
+
minValue?: number | null;
|
|
771
|
+
/** @format double */
|
|
772
|
+
maxValue?: number | null;
|
|
773
|
+
/**
|
|
774
|
+
* @minLength 1
|
|
775
|
+
* @maxLength 250
|
|
776
|
+
*/
|
|
777
|
+
name: string;
|
|
778
|
+
defaultValue?: string | null;
|
|
779
|
+
regexPattern?: string | null;
|
|
780
|
+
dataType: CreateCustomFieldDefinitionRequestDataTypeEnum;
|
|
781
|
+
entityType: CreateCustomFieldDefinitionRequestEntityTypeEnum;
|
|
782
|
+
options?: CustomFieldOptionRequest[] | null;
|
|
783
|
+
permissions?: CustomFieldPermissionRequest[] | null;
|
|
784
|
+
}
|
|
726
785
|
export interface CreateDocumentTemplateRequest {
|
|
727
786
|
/** @minLength 1 */
|
|
728
787
|
htmlBody: string;
|
|
@@ -739,7 +798,7 @@ export interface CreateDocumentTemplateRequest {
|
|
|
739
798
|
export interface CreateGroupMemberRequest {
|
|
740
799
|
/** @format uuid */
|
|
741
800
|
userId: string;
|
|
742
|
-
loanRole:
|
|
801
|
+
loanRole: CreateGroupMemberRequestLoanRoleEnum;
|
|
743
802
|
}
|
|
744
803
|
export interface CreateInviteRequest {
|
|
745
804
|
/** @minLength 1 */
|
|
@@ -750,7 +809,7 @@ export interface CreateInviteRequest {
|
|
|
750
809
|
emailAddress: string;
|
|
751
810
|
phoneNumber?: string | null;
|
|
752
811
|
/** @deprecated */
|
|
753
|
-
relationship:
|
|
812
|
+
relationship: CreateInviteRequestRelationshipEnum;
|
|
754
813
|
loanID: string;
|
|
755
814
|
route?: string | null;
|
|
756
815
|
/** @format uuid */
|
|
@@ -759,6 +818,14 @@ export interface CreateInviteRequest {
|
|
|
759
818
|
userRole?: UserRole | null;
|
|
760
819
|
loanRole?: LoanRole | null;
|
|
761
820
|
}
|
|
821
|
+
export interface CreateLoanDocumentFolderRequest {
|
|
822
|
+
/**
|
|
823
|
+
* @minLength 1
|
|
824
|
+
* @maxLength 250
|
|
825
|
+
*/
|
|
826
|
+
name: string;
|
|
827
|
+
permissions: LoanDocumentFolderPermissionRequest[];
|
|
828
|
+
}
|
|
762
829
|
export interface CreateLoanImportRequest {
|
|
763
830
|
/** @format uuid */
|
|
764
831
|
accountID: string;
|
|
@@ -772,7 +839,7 @@ export interface CreateLoanImportRequest {
|
|
|
772
839
|
* @minLength 1
|
|
773
840
|
*/
|
|
774
841
|
startDate: string;
|
|
775
|
-
importMode:
|
|
842
|
+
importMode: CreateLoanImportRequestImportModeEnum;
|
|
776
843
|
}
|
|
777
844
|
export interface CreateSession {
|
|
778
845
|
sessionId: string;
|
|
@@ -790,7 +857,7 @@ export interface CreateUserDeviceRequest {
|
|
|
790
857
|
token: string;
|
|
791
858
|
}
|
|
792
859
|
export interface CreateUserDraft {
|
|
793
|
-
loanRole:
|
|
860
|
+
loanRole: CreateUserDraftLoanRoleEnum;
|
|
794
861
|
}
|
|
795
862
|
export interface CreateUserGroupRequest {
|
|
796
863
|
/**
|
|
@@ -842,8 +909,84 @@ export interface CreateUserRequest {
|
|
|
842
909
|
userRole: string;
|
|
843
910
|
isInternal?: boolean | null;
|
|
844
911
|
}
|
|
845
|
-
export interface
|
|
846
|
-
|
|
912
|
+
export interface CreateWebhookRequest {
|
|
913
|
+
webhookPath: string;
|
|
914
|
+
}
|
|
915
|
+
export interface CustomFieldDefinition {
|
|
916
|
+
/** @format date-time */
|
|
917
|
+
createdAt: string;
|
|
918
|
+
/** @format date-time */
|
|
919
|
+
updatedAt?: string | null;
|
|
920
|
+
/** @format date-time */
|
|
921
|
+
deletedAt?: string | null;
|
|
922
|
+
/** @format uuid */
|
|
923
|
+
id: string;
|
|
924
|
+
/** @format uuid */
|
|
925
|
+
accountID: string;
|
|
926
|
+
isActive: boolean;
|
|
927
|
+
isRequired: boolean;
|
|
928
|
+
/** @format int32 */
|
|
929
|
+
displayOrder: number;
|
|
930
|
+
/** @format int32 */
|
|
931
|
+
minLength?: number | null;
|
|
932
|
+
/** @format int32 */
|
|
933
|
+
maxLength?: number | null;
|
|
934
|
+
/** @format double */
|
|
935
|
+
minValue?: number | null;
|
|
936
|
+
/** @format double */
|
|
937
|
+
maxValue?: number | null;
|
|
938
|
+
name: string;
|
|
939
|
+
defaultValue?: string | null;
|
|
940
|
+
regexPattern?: string | null;
|
|
941
|
+
dataType: CustomFieldDefinitionDataTypeEnum;
|
|
942
|
+
entityType: CustomFieldDefinitionEntityTypeEnum;
|
|
943
|
+
options: CustomFieldOption[];
|
|
944
|
+
permissions: CustomFieldPermission[];
|
|
945
|
+
encompassMapping?: EncompassMapping | null;
|
|
946
|
+
}
|
|
947
|
+
export interface CustomFieldEntry {
|
|
948
|
+
/** @format uuid */
|
|
949
|
+
definitionId: string;
|
|
950
|
+
isActive: boolean;
|
|
951
|
+
isReadOnly: boolean;
|
|
952
|
+
/** @format int32 */
|
|
953
|
+
displayOrder: number;
|
|
954
|
+
name: string;
|
|
955
|
+
value: string;
|
|
956
|
+
dataType: CustomFieldEntryDataTypeEnum;
|
|
957
|
+
}
|
|
958
|
+
export interface CustomFieldOption {
|
|
959
|
+
/** @format uuid */
|
|
960
|
+
id: string;
|
|
961
|
+
/** @format int32 */
|
|
962
|
+
displayOrder: number;
|
|
963
|
+
value: string;
|
|
964
|
+
}
|
|
965
|
+
export interface CustomFieldOptionRequest {
|
|
966
|
+
/** @format int32 */
|
|
967
|
+
displayOrder: number;
|
|
968
|
+
value: string;
|
|
969
|
+
}
|
|
970
|
+
export interface CustomFieldPermission {
|
|
971
|
+
/** @format uuid */
|
|
972
|
+
id: string;
|
|
973
|
+
role: CustomFieldPermissionRoleEnum;
|
|
974
|
+
accessLevel: CustomFieldPermissionAccessLevelEnum;
|
|
975
|
+
}
|
|
976
|
+
export interface CustomFieldPermissionRequest {
|
|
977
|
+
role: CustomFieldPermissionRequestRoleEnum;
|
|
978
|
+
accessLevel: CustomFieldPermissionRequestAccessLevelEnum;
|
|
979
|
+
}
|
|
980
|
+
export interface CustomFieldValue {
|
|
981
|
+
/** @format uuid */
|
|
982
|
+
id: string;
|
|
983
|
+
/** @format uuid */
|
|
984
|
+
entityID: string;
|
|
985
|
+
/** @format uuid */
|
|
986
|
+
customFieldDefinitionID: string;
|
|
987
|
+
value: string;
|
|
988
|
+
definitionName: string;
|
|
989
|
+
dataType: CustomFieldValueDataTypeEnum;
|
|
847
990
|
}
|
|
848
991
|
export interface DetailedUser {
|
|
849
992
|
/** @format date-time */
|
|
@@ -1084,7 +1227,7 @@ export interface Draft {
|
|
|
1084
1227
|
siteConfiguration: SiteConfigurationReduced;
|
|
1085
1228
|
/** @format uuid */
|
|
1086
1229
|
loanID?: string | null;
|
|
1087
|
-
type:
|
|
1230
|
+
type: DraftTypeEnum;
|
|
1088
1231
|
isCoBorrower: boolean;
|
|
1089
1232
|
}
|
|
1090
1233
|
export interface DraftContent {
|
|
@@ -1102,7 +1245,7 @@ export interface DraftContent {
|
|
|
1102
1245
|
siteConfiguration: SiteConfigurationReduced;
|
|
1103
1246
|
/** @format uuid */
|
|
1104
1247
|
loanID?: string | null;
|
|
1105
|
-
type:
|
|
1248
|
+
type: DraftContentTypeEnum;
|
|
1106
1249
|
isCoBorrower: boolean;
|
|
1107
1250
|
applicationPayload: any;
|
|
1108
1251
|
}
|
|
@@ -1121,13 +1264,6 @@ export interface DraftRequest {
|
|
|
1121
1264
|
customData?: any;
|
|
1122
1265
|
isCoBorrower: boolean;
|
|
1123
1266
|
}
|
|
1124
|
-
export interface EConsentInformation {
|
|
1125
|
-
status: string;
|
|
1126
|
-
/** @format date-time */
|
|
1127
|
-
acceptedDate?: string | null;
|
|
1128
|
-
ipAddress?: string | null;
|
|
1129
|
-
source?: string | null;
|
|
1130
|
-
}
|
|
1131
1267
|
export interface EnabledServices {
|
|
1132
1268
|
/** @format date-time */
|
|
1133
1269
|
createdAt: string;
|
|
@@ -1141,7 +1277,6 @@ export interface EnabledServices {
|
|
|
1141
1277
|
fullApp?: boolean | null;
|
|
1142
1278
|
mobileApp?: boolean | null;
|
|
1143
1279
|
ringCentral?: boolean | null;
|
|
1144
|
-
rates?: boolean | null;
|
|
1145
1280
|
socialSurvey?: boolean | null;
|
|
1146
1281
|
borrowerTasks?: boolean | null;
|
|
1147
1282
|
docusign?: boolean | null;
|
|
@@ -1175,6 +1310,7 @@ export interface EnabledServices {
|
|
|
1175
1310
|
listings?: boolean | null;
|
|
1176
1311
|
addCoBorrower?: boolean | null;
|
|
1177
1312
|
autoNameTaskDocuments?: boolean | null;
|
|
1313
|
+
genericCalculatorsEnabled?: boolean | null;
|
|
1178
1314
|
}
|
|
1179
1315
|
export interface EncompassContact {
|
|
1180
1316
|
name?: string | null;
|
|
@@ -1182,11 +1318,66 @@ export interface EncompassContact {
|
|
|
1182
1318
|
phone?: string | null;
|
|
1183
1319
|
company?: string | null;
|
|
1184
1320
|
}
|
|
1321
|
+
export interface EncompassCredentialsDetail {
|
|
1322
|
+
/** @format uuid */
|
|
1323
|
+
id: string;
|
|
1324
|
+
/** @format uuid */
|
|
1325
|
+
accountID: string;
|
|
1326
|
+
instanceID: string;
|
|
1327
|
+
loanAssignmentRole?: string | null;
|
|
1328
|
+
loanTemplate?: string | null;
|
|
1329
|
+
defaultLoanOfficerUserName?: string | null;
|
|
1330
|
+
clearStateIfUnlicensed: boolean;
|
|
1331
|
+
baseUrl?: string | null;
|
|
1332
|
+
signingMethod: EncompassCredentialsDetailSigningMethodEnum;
|
|
1333
|
+
subscriptionId?: string | null;
|
|
1334
|
+
environment?: string | null;
|
|
1335
|
+
}
|
|
1336
|
+
export interface EncompassCredentialsRequest {
|
|
1337
|
+
/** @format uuid */
|
|
1338
|
+
id: string;
|
|
1339
|
+
/** @format uuid */
|
|
1340
|
+
accountID: string;
|
|
1341
|
+
instanceID: string;
|
|
1342
|
+
loanAssignmentRole?: string | null;
|
|
1343
|
+
loanTemplate?: string | null;
|
|
1344
|
+
defaultLoanOfficerUserName?: string | null;
|
|
1345
|
+
clearStateIfUnlicensed: boolean;
|
|
1346
|
+
baseUrl?: string | null;
|
|
1347
|
+
signingMethod: EncompassCredentialsRequestSigningMethodEnum;
|
|
1348
|
+
subscriptionId?: string | null;
|
|
1349
|
+
environment?: string | null;
|
|
1350
|
+
clientID?: string | null;
|
|
1351
|
+
clientSecret?: string | null;
|
|
1352
|
+
signingKeyId?: string | null;
|
|
1353
|
+
signingKey?: string | null;
|
|
1354
|
+
}
|
|
1355
|
+
export interface EncompassCustomFieldMapping {
|
|
1356
|
+
/** @format uuid */
|
|
1357
|
+
id: string;
|
|
1358
|
+
/** @format uuid */
|
|
1359
|
+
customFieldDefinitionId: string;
|
|
1360
|
+
encompassFieldId: string;
|
|
1361
|
+
encompassFieldType: string;
|
|
1362
|
+
isActive: boolean;
|
|
1363
|
+
/** @format date-time */
|
|
1364
|
+
createdAt: string;
|
|
1365
|
+
}
|
|
1366
|
+
export interface EncompassCustomFieldMappingRequest {
|
|
1367
|
+
encompassFieldId: string;
|
|
1368
|
+
encompassFieldType: string;
|
|
1369
|
+
}
|
|
1185
1370
|
export interface EncompassError {
|
|
1186
1371
|
errorCode: string;
|
|
1187
1372
|
message: string;
|
|
1188
1373
|
details?: string[] | null;
|
|
1189
1374
|
}
|
|
1375
|
+
export interface EncompassFieldListItem {
|
|
1376
|
+
fieldId: string;
|
|
1377
|
+
description: string;
|
|
1378
|
+
fieldType: string;
|
|
1379
|
+
inUse: boolean;
|
|
1380
|
+
}
|
|
1190
1381
|
export interface EncompassLogSearchCriteria {
|
|
1191
1382
|
searchText?: string | null;
|
|
1192
1383
|
operationTypes?: EncompassLogOperationType[] | null;
|
|
@@ -1198,6 +1389,12 @@ export interface EncompassLogSearchCriteria {
|
|
|
1198
1389
|
/** @format int32 */
|
|
1199
1390
|
httpStatusCode?: number | null;
|
|
1200
1391
|
}
|
|
1392
|
+
export interface EncompassMapping {
|
|
1393
|
+
/** @format uuid */
|
|
1394
|
+
id: string;
|
|
1395
|
+
encompassFieldId: string;
|
|
1396
|
+
status: string;
|
|
1397
|
+
}
|
|
1201
1398
|
export interface EncompassPackageItem {
|
|
1202
1399
|
packageId: string;
|
|
1203
1400
|
status: string;
|
|
@@ -1232,8 +1429,8 @@ export interface EncompassRequestLog {
|
|
|
1232
1429
|
losId?: string | null;
|
|
1233
1430
|
/** @format uuid */
|
|
1234
1431
|
accountId: string;
|
|
1235
|
-
operationType:
|
|
1236
|
-
outcome:
|
|
1432
|
+
operationType: EncompassRequestLogOperationTypeEnum;
|
|
1433
|
+
outcome: EncompassRequestLogOutcomeEnum;
|
|
1237
1434
|
message: string;
|
|
1238
1435
|
endpoint?: string | null;
|
|
1239
1436
|
httpMethod?: string | null;
|
|
@@ -1450,7 +1647,7 @@ export interface FusionFieldDisplay {
|
|
|
1450
1647
|
fieldValue: string;
|
|
1451
1648
|
}
|
|
1452
1649
|
export interface FusionReportFilter {
|
|
1453
|
-
filterType:
|
|
1650
|
+
filterType: FusionReportFilterFilterTypeEnum;
|
|
1454
1651
|
targetField: string;
|
|
1455
1652
|
targetValue: string;
|
|
1456
1653
|
}
|
|
@@ -1564,7 +1761,7 @@ export interface GuidPatchOperation {
|
|
|
1564
1761
|
from?: string | null;
|
|
1565
1762
|
}
|
|
1566
1763
|
export interface IPAddress {
|
|
1567
|
-
addressFamily:
|
|
1764
|
+
addressFamily: IpAddressAddressFamilyEnum;
|
|
1568
1765
|
/** @format int64 */
|
|
1569
1766
|
scopeId: number;
|
|
1570
1767
|
isIPv6Multicast: boolean;
|
|
@@ -1772,7 +1969,7 @@ export interface Loan {
|
|
|
1772
1969
|
currentLoanStatus?: string | null;
|
|
1773
1970
|
currentMilestone?: string | null;
|
|
1774
1971
|
lastCompletedMilestone?: string | null;
|
|
1775
|
-
/** @format date
|
|
1972
|
+
/** @format date */
|
|
1776
1973
|
currentStatusDate?: string | null;
|
|
1777
1974
|
isActive: boolean;
|
|
1778
1975
|
loanChannel?: string | null;
|
|
@@ -1786,17 +1983,17 @@ export interface Loan {
|
|
|
1786
1983
|
source?: string | null;
|
|
1787
1984
|
isPOSLoan?: boolean | null;
|
|
1788
1985
|
version?: string | null;
|
|
1789
|
-
/** @format date
|
|
1986
|
+
/** @format date */
|
|
1790
1987
|
startDate?: string | null;
|
|
1791
|
-
/** @format date
|
|
1988
|
+
/** @format date */
|
|
1792
1989
|
initialDisclosureProvidedDate?: string | null;
|
|
1793
|
-
/** @format date
|
|
1990
|
+
/** @format date */
|
|
1794
1991
|
closingDisclosureSentDate?: string | null;
|
|
1795
|
-
/** @format date
|
|
1992
|
+
/** @format date */
|
|
1796
1993
|
underwritingApprovalDate?: string | null;
|
|
1797
|
-
/** @format date
|
|
1994
|
+
/** @format date */
|
|
1798
1995
|
closingDate?: string | null;
|
|
1799
|
-
/** @format date
|
|
1996
|
+
/** @format date */
|
|
1800
1997
|
fundingOrderDate?: string | null;
|
|
1801
1998
|
isInSync: boolean;
|
|
1802
1999
|
/** @format date-time */
|
|
@@ -1817,6 +2014,8 @@ export interface Loan {
|
|
|
1817
2014
|
nonOwningBorrowers: LoanNonOwningBorrower[];
|
|
1818
2015
|
userLoans: UserLoan[];
|
|
1819
2016
|
contacts: LoanContact[];
|
|
2017
|
+
customFields: CustomFieldEntry[];
|
|
2018
|
+
signingMethod: LoanSigningMethodEnum;
|
|
1820
2019
|
}
|
|
1821
2020
|
export interface LoanApplication {
|
|
1822
2021
|
/** @format uuid */
|
|
@@ -1828,7 +2027,7 @@ export interface LoanApplication {
|
|
|
1828
2027
|
number?: string | null;
|
|
1829
2028
|
program?: string | null;
|
|
1830
2029
|
channel?: string | null;
|
|
1831
|
-
/** @format date
|
|
2030
|
+
/** @format date */
|
|
1832
2031
|
startDate?: string | null;
|
|
1833
2032
|
property?: LoanProperty | null;
|
|
1834
2033
|
financial?: LoanFinancial | null;
|
|
@@ -1853,6 +2052,7 @@ export interface LoanApplicationRequest {
|
|
|
1853
2052
|
nonOwningBorrowers: LoanNonOwningBorrowerRequest[];
|
|
1854
2053
|
/** @format uuid */
|
|
1855
2054
|
draftId?: string | null;
|
|
2055
|
+
additionalFields?: Record<string, any>;
|
|
1856
2056
|
/** @format uuid */
|
|
1857
2057
|
existingLoanId?: string | null;
|
|
1858
2058
|
}
|
|
@@ -1871,7 +2071,7 @@ export interface LoanBorrower {
|
|
|
1871
2071
|
citizenship?: LoanCitizenship | null;
|
|
1872
2072
|
maritalStatus?: LoanMaritalStatus | null;
|
|
1873
2073
|
languagePreference?: LoanLanguagePreference | null;
|
|
1874
|
-
applicationStatus:
|
|
2074
|
+
applicationStatus: LoanBorrowerApplicationStatusEnum;
|
|
1875
2075
|
/** @format int32 */
|
|
1876
2076
|
numberOfDependents?: number | null;
|
|
1877
2077
|
isPrimaryBorrower: boolean;
|
|
@@ -2728,7 +2928,7 @@ export interface LoanContact {
|
|
|
2728
2928
|
email?: string | null;
|
|
2729
2929
|
phone?: string | null;
|
|
2730
2930
|
companyName?: string | null;
|
|
2731
|
-
role:
|
|
2931
|
+
role: LoanContactRoleEnum;
|
|
2732
2932
|
}
|
|
2733
2933
|
export interface LoanContactList {
|
|
2734
2934
|
email: string;
|
|
@@ -2756,6 +2956,42 @@ export interface LoanDocument {
|
|
|
2756
2956
|
/** @format date-time */
|
|
2757
2957
|
sensitiveDataPurgedOn?: string | null;
|
|
2758
2958
|
}
|
|
2959
|
+
export interface LoanDocumentFolder {
|
|
2960
|
+
/** @format uuid */
|
|
2961
|
+
id: string;
|
|
2962
|
+
/** @format uuid */
|
|
2963
|
+
accountID: string;
|
|
2964
|
+
name: string;
|
|
2965
|
+
isSystemDefault: boolean;
|
|
2966
|
+
isActive: boolean;
|
|
2967
|
+
/** @format date-time */
|
|
2968
|
+
createdAt: string;
|
|
2969
|
+
/** @format date-time */
|
|
2970
|
+
updatedAt?: string | null;
|
|
2971
|
+
/** @format date-time */
|
|
2972
|
+
deletedAt?: string | null;
|
|
2973
|
+
permissions: LoanDocumentFolderPermission[];
|
|
2974
|
+
}
|
|
2975
|
+
export interface LoanDocumentFolderPermission {
|
|
2976
|
+
/** @format uuid */
|
|
2977
|
+
id: string;
|
|
2978
|
+
/** @format uuid */
|
|
2979
|
+
loanDocumentFolderID: string;
|
|
2980
|
+
role: LoanDocumentFolderPermissionRoleEnum;
|
|
2981
|
+
level: LoanDocumentFolderPermissionLevelEnum;
|
|
2982
|
+
}
|
|
2983
|
+
export interface LoanDocumentFolderPermissionRequest {
|
|
2984
|
+
role: LoanDocumentFolderPermissionRequestRoleEnum;
|
|
2985
|
+
level: LoanDocumentFolderPermissionRequestLevelEnum;
|
|
2986
|
+
}
|
|
2987
|
+
export interface LoanDocumentFolderUsage {
|
|
2988
|
+
/** @format uuid */
|
|
2989
|
+
folderID: string;
|
|
2990
|
+
hasEverBeenReferenced: boolean;
|
|
2991
|
+
}
|
|
2992
|
+
export interface LoanDocumentPreviewsRequest {
|
|
2993
|
+
documentIds: string[];
|
|
2994
|
+
}
|
|
2759
2995
|
export interface LoanDocumentSearch {
|
|
2760
2996
|
/** @format date-time */
|
|
2761
2997
|
createdAt: string;
|
|
@@ -2839,6 +3075,7 @@ export interface LoanIdentifier {
|
|
|
2839
3075
|
/** @format uuid */
|
|
2840
3076
|
id: string;
|
|
2841
3077
|
losLoanID: string;
|
|
3078
|
+
number?: string | null;
|
|
2842
3079
|
}
|
|
2843
3080
|
export interface LoanImport {
|
|
2844
3081
|
/** @format uuid */
|
|
@@ -2853,13 +3090,13 @@ export interface LoanImport {
|
|
|
2853
3090
|
/** @format int32 */
|
|
2854
3091
|
importedCount: number;
|
|
2855
3092
|
statusMessage?: string | null;
|
|
2856
|
-
status:
|
|
2857
|
-
importMode:
|
|
3093
|
+
status: LoanImportStatusEnum;
|
|
3094
|
+
importMode: LoanImportImportModeEnum;
|
|
2858
3095
|
/** @format date-time */
|
|
2859
3096
|
createdAt?: string | null;
|
|
2860
3097
|
}
|
|
2861
3098
|
export interface LoanImportLog {
|
|
2862
|
-
level:
|
|
3099
|
+
level: LoanImportLogLevelEnum;
|
|
2863
3100
|
message: string;
|
|
2864
3101
|
/** @format date-time */
|
|
2865
3102
|
createdAt: string;
|
|
@@ -2886,7 +3123,7 @@ export interface LoanList {
|
|
|
2886
3123
|
purpose?: LoanPurpose | null;
|
|
2887
3124
|
/** @format double */
|
|
2888
3125
|
totalLoanAmount?: number | null;
|
|
2889
|
-
/** @format date
|
|
3126
|
+
/** @format date */
|
|
2890
3127
|
startDate?: string | null;
|
|
2891
3128
|
isActive: boolean;
|
|
2892
3129
|
propertyAddress?: Address | null;
|
|
@@ -2914,8 +3151,8 @@ export interface LoanListPaginated {
|
|
|
2914
3151
|
export interface LoanLog {
|
|
2915
3152
|
/** @format uuid */
|
|
2916
3153
|
id: string;
|
|
2917
|
-
level:
|
|
2918
|
-
type:
|
|
3154
|
+
level: LoanLogLevelEnum;
|
|
3155
|
+
type: LoanLogTypeEnum;
|
|
2919
3156
|
message: string;
|
|
2920
3157
|
/** @format date-time */
|
|
2921
3158
|
createdAt: string;
|
|
@@ -2923,8 +3160,8 @@ export interface LoanLog {
|
|
|
2923
3160
|
export interface LoanLogDetail {
|
|
2924
3161
|
/** @format uuid */
|
|
2925
3162
|
id: string;
|
|
2926
|
-
level:
|
|
2927
|
-
type:
|
|
3163
|
+
level: LoanLogDetailLevelEnum;
|
|
3164
|
+
type: LoanLogDetailTypeEnum;
|
|
2928
3165
|
message: string;
|
|
2929
3166
|
/** @format date-time */
|
|
2930
3167
|
createdAt: string;
|
|
@@ -3179,6 +3416,21 @@ export interface LoanSearchCriteria {
|
|
|
3179
3416
|
export interface LoanSettings {
|
|
3180
3417
|
excludeFromAutoTaskReminders: boolean;
|
|
3181
3418
|
}
|
|
3419
|
+
export interface LoanTaskSearchRequest {
|
|
3420
|
+
searchText?: string | null;
|
|
3421
|
+
statuses?: TaskStatus[] | null;
|
|
3422
|
+
loanNumber?: string | null;
|
|
3423
|
+
/** @format uuid */
|
|
3424
|
+
borrowerId?: string | null;
|
|
3425
|
+
/** @format uuid */
|
|
3426
|
+
loanId?: string | null;
|
|
3427
|
+
loanStatus?: LoanTaskActivityFilter | null;
|
|
3428
|
+
}
|
|
3429
|
+
export interface LoanTaskStatusSummary {
|
|
3430
|
+
status: LoanTaskStatusSummaryStatusEnum;
|
|
3431
|
+
/** @format int32 */
|
|
3432
|
+
count: number;
|
|
3433
|
+
}
|
|
3182
3434
|
export interface LoanUser {
|
|
3183
3435
|
/** @format uuid */
|
|
3184
3436
|
id: string;
|
|
@@ -3187,11 +3439,18 @@ export interface LoanUser {
|
|
|
3187
3439
|
email: string;
|
|
3188
3440
|
phone?: string | null;
|
|
3189
3441
|
role: string;
|
|
3190
|
-
loanRole:
|
|
3442
|
+
loanRole: LoanUserLoanRoleEnum;
|
|
3191
3443
|
isUser: boolean;
|
|
3192
3444
|
/** @format date-time */
|
|
3193
3445
|
createdAt: string;
|
|
3194
3446
|
}
|
|
3447
|
+
export interface LosCredentials {
|
|
3448
|
+
/** @format uuid */
|
|
3449
|
+
id: string;
|
|
3450
|
+
/** @format uuid */
|
|
3451
|
+
accountID: string;
|
|
3452
|
+
instanceID: string;
|
|
3453
|
+
}
|
|
3195
3454
|
export interface LosLoanCreationRequest {
|
|
3196
3455
|
loanOfficerUserName?: string | null;
|
|
3197
3456
|
loanTemplate?: string | null;
|
|
@@ -3203,6 +3462,88 @@ export interface LosLoanCreationRequest {
|
|
|
3203
3462
|
siteID?: string | null;
|
|
3204
3463
|
existingLoanID?: string | null;
|
|
3205
3464
|
}
|
|
3465
|
+
export interface LosOperationTracking {
|
|
3466
|
+
/** @format uuid */
|
|
3467
|
+
id: string;
|
|
3468
|
+
/** @format uuid */
|
|
3469
|
+
loanId: string;
|
|
3470
|
+
/** @format int32 */
|
|
3471
|
+
attemptCount: number;
|
|
3472
|
+
operationType: string;
|
|
3473
|
+
correlationKey: string;
|
|
3474
|
+
lastTriggerSource?: string | null;
|
|
3475
|
+
status: LosOperationTrackingStatusEnum;
|
|
3476
|
+
/** @format date-time */
|
|
3477
|
+
createdAt: string;
|
|
3478
|
+
/** @format date-time */
|
|
3479
|
+
lastAttemptAt?: string | null;
|
|
3480
|
+
/** @format date-time */
|
|
3481
|
+
nextRetryAt?: string | null;
|
|
3482
|
+
}
|
|
3483
|
+
export interface LosOperationTrackingPaginated {
|
|
3484
|
+
rows: LosOperationTracking[];
|
|
3485
|
+
pagination: Pagination;
|
|
3486
|
+
/** @format int64 */
|
|
3487
|
+
count: number;
|
|
3488
|
+
}
|
|
3489
|
+
export interface LosOperationTrackingSearchCriteria {
|
|
3490
|
+
searchText?: string | null;
|
|
3491
|
+
/** @format uuid */
|
|
3492
|
+
loanId?: string | null;
|
|
3493
|
+
operationType?: string | null;
|
|
3494
|
+
status?: LosOperationStatus | null;
|
|
3495
|
+
}
|
|
3496
|
+
export interface LosSync {
|
|
3497
|
+
/** @format uuid */
|
|
3498
|
+
correlationId: string;
|
|
3499
|
+
/** @format uuid */
|
|
3500
|
+
loanId?: string | null;
|
|
3501
|
+
direction: string;
|
|
3502
|
+
currentState: string;
|
|
3503
|
+
encompassLoanId?: string | null;
|
|
3504
|
+
encompassLoanNumber?: string | null;
|
|
3505
|
+
/** @format int32 */
|
|
3506
|
+
retryCount: number;
|
|
3507
|
+
/** @format date-time */
|
|
3508
|
+
requestedAtUtc?: string | null;
|
|
3509
|
+
/** @format date-time */
|
|
3510
|
+
completedAtUtc?: string | null;
|
|
3511
|
+
/** @format date-time */
|
|
3512
|
+
failedAtUtc?: string | null;
|
|
3513
|
+
errors: string[];
|
|
3514
|
+
steps: LosSyncStep[];
|
|
3515
|
+
}
|
|
3516
|
+
export interface LosSyncPaginated {
|
|
3517
|
+
rows: LosSync[];
|
|
3518
|
+
pagination: Pagination;
|
|
3519
|
+
/** @format int64 */
|
|
3520
|
+
count: number;
|
|
3521
|
+
}
|
|
3522
|
+
export interface LosSyncSearchCriteria {
|
|
3523
|
+
searchText?: string | null;
|
|
3524
|
+
syncDirection?: string | null;
|
|
3525
|
+
status?: string | null;
|
|
3526
|
+
/** @format date-time */
|
|
3527
|
+
dateFrom?: string | null;
|
|
3528
|
+
/** @format date-time */
|
|
3529
|
+
dateTo?: string | null;
|
|
3530
|
+
}
|
|
3531
|
+
export interface LosSyncStep {
|
|
3532
|
+
name: string;
|
|
3533
|
+
completed: boolean;
|
|
3534
|
+
/** @format date-time */
|
|
3535
|
+
completedAtUtc?: string | null;
|
|
3536
|
+
/** @format int32 */
|
|
3537
|
+
order: number;
|
|
3538
|
+
}
|
|
3539
|
+
export interface LosWebhook {
|
|
3540
|
+
/** @format uuid */
|
|
3541
|
+
id: string;
|
|
3542
|
+
endpoint: string;
|
|
3543
|
+
resource: string;
|
|
3544
|
+
events: string[];
|
|
3545
|
+
enableSubscription: boolean;
|
|
3546
|
+
}
|
|
3206
3547
|
export interface MdmUser {
|
|
3207
3548
|
user_email?: string | null;
|
|
3208
3549
|
user_id?: string | null;
|
|
@@ -3355,6 +3696,8 @@ export interface NotificationTemplate {
|
|
|
3355
3696
|
isDefault: boolean;
|
|
3356
3697
|
status: string;
|
|
3357
3698
|
useDefaultHeaderAndFooter: boolean;
|
|
3699
|
+
multipleCustomTemplates: boolean;
|
|
3700
|
+
allowedRoles?: string[] | null;
|
|
3358
3701
|
versions: NotificationTemplateVersionBase[];
|
|
3359
3702
|
}
|
|
3360
3703
|
export interface NotificationTemplateBase {
|
|
@@ -3380,6 +3723,8 @@ export interface NotificationTemplateBase {
|
|
|
3380
3723
|
isDefault: boolean;
|
|
3381
3724
|
status: string;
|
|
3382
3725
|
useDefaultHeaderAndFooter: boolean;
|
|
3726
|
+
multipleCustomTemplates: boolean;
|
|
3727
|
+
allowedRoles?: string[] | null;
|
|
3383
3728
|
}
|
|
3384
3729
|
export interface NotificationTemplateBasePaginated {
|
|
3385
3730
|
rows: NotificationTemplateBase[];
|
|
@@ -3810,7 +4155,7 @@ export interface SSOTokenRequest {
|
|
|
3810
4155
|
redirectUri: string;
|
|
3811
4156
|
}
|
|
3812
4157
|
export interface SamlMetadataRequest {
|
|
3813
|
-
ssoIntegration:
|
|
4158
|
+
ssoIntegration: SamlMetadataRequestSsoIntegrationEnum;
|
|
3814
4159
|
}
|
|
3815
4160
|
export interface SendForgotPasswordRequest {
|
|
3816
4161
|
/**
|
|
@@ -3824,6 +4169,14 @@ export interface SendLoanDocumentsRequest {
|
|
|
3824
4169
|
loanUserIDs: string[];
|
|
3825
4170
|
emailAddresses: string[];
|
|
3826
4171
|
}
|
|
4172
|
+
export interface SendLoanTaskReminderRequest {
|
|
4173
|
+
/**
|
|
4174
|
+
* @format uuid
|
|
4175
|
+
* @minLength 1
|
|
4176
|
+
*/
|
|
4177
|
+
templateId: string;
|
|
4178
|
+
userIds?: string[] | null;
|
|
4179
|
+
}
|
|
3827
4180
|
export interface SendNotificationForLoanRequest {
|
|
3828
4181
|
/** @minLength 1 */
|
|
3829
4182
|
loanID: string;
|
|
@@ -3836,6 +4189,14 @@ export interface SendNotificationForLoanRequest {
|
|
|
3836
4189
|
phone?: string | null;
|
|
3837
4190
|
attachments: Attachment[];
|
|
3838
4191
|
}
|
|
4192
|
+
export interface SetCustomFieldValueRequest {
|
|
4193
|
+
/** @format uuid */
|
|
4194
|
+
definitionId: string;
|
|
4195
|
+
value?: string | null;
|
|
4196
|
+
}
|
|
4197
|
+
export interface SetSingleCustomFieldValueRequest {
|
|
4198
|
+
value?: string | null;
|
|
4199
|
+
}
|
|
3839
4200
|
export interface SiteConfiguration {
|
|
3840
4201
|
/** @format date-time */
|
|
3841
4202
|
createdAt: string;
|
|
@@ -3845,7 +4206,7 @@ export interface SiteConfiguration {
|
|
|
3845
4206
|
deletedAt?: string | null;
|
|
3846
4207
|
/** @format uuid */
|
|
3847
4208
|
id: string;
|
|
3848
|
-
type:
|
|
4209
|
+
type: SiteConfigurationTypeEnum;
|
|
3849
4210
|
/** @format uuid */
|
|
3850
4211
|
entityID: string;
|
|
3851
4212
|
/** @format int32 */
|
|
@@ -4039,7 +4400,7 @@ export interface SiteConfigurationByUrl {
|
|
|
4039
4400
|
deletedAt?: string | null;
|
|
4040
4401
|
/** @format uuid */
|
|
4041
4402
|
id: string;
|
|
4042
|
-
type:
|
|
4403
|
+
type: SiteConfigurationByUrlTypeEnum;
|
|
4043
4404
|
/** @format uuid */
|
|
4044
4405
|
entityID: string;
|
|
4045
4406
|
/** @format int32 */
|
|
@@ -4250,7 +4611,7 @@ export interface SiteConfigurationForm {
|
|
|
4250
4611
|
export interface SiteConfigurationReduced {
|
|
4251
4612
|
/** @format uuid */
|
|
4252
4613
|
id: string;
|
|
4253
|
-
type:
|
|
4614
|
+
type: SiteConfigurationReducedTypeEnum;
|
|
4254
4615
|
url?: string | null;
|
|
4255
4616
|
name: string;
|
|
4256
4617
|
/** @format int64 */
|
|
@@ -4267,7 +4628,7 @@ export interface SiteConfigurationRequest {
|
|
|
4267
4628
|
entityID: string;
|
|
4268
4629
|
/** @format int32 */
|
|
4269
4630
|
entityType: number;
|
|
4270
|
-
type:
|
|
4631
|
+
type: SiteConfigurationRequestTypeEnum;
|
|
4271
4632
|
url: string;
|
|
4272
4633
|
name: string;
|
|
4273
4634
|
introduction?: string | null;
|
|
@@ -4442,7 +4803,7 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
4442
4803
|
export interface SiteConfigurationSummary {
|
|
4443
4804
|
/** @format uuid */
|
|
4444
4805
|
id: string;
|
|
4445
|
-
type:
|
|
4806
|
+
type: SiteConfigurationSummaryTypeEnum;
|
|
4446
4807
|
url?: string | null;
|
|
4447
4808
|
name: string;
|
|
4448
4809
|
/** @format int64 */
|
|
@@ -4667,6 +5028,10 @@ export interface TokenRequest {
|
|
|
4667
5028
|
siteConfigurationId?: string | null;
|
|
4668
5029
|
isSupport: boolean;
|
|
4669
5030
|
}
|
|
5031
|
+
export interface TriggerAsoRequest {
|
|
5032
|
+
/** @maxItems 23 */
|
|
5033
|
+
serviceKeys: string[];
|
|
5034
|
+
}
|
|
4670
5035
|
export interface UnderwritingCondition {
|
|
4671
5036
|
/** @format uuid */
|
|
4672
5037
|
id: string;
|
|
@@ -4723,6 +5088,31 @@ export interface UpdateAccountRequest {
|
|
|
4723
5088
|
asoSettings?: ASOSettings | null;
|
|
4724
5089
|
settings: AccountSettingsRequest;
|
|
4725
5090
|
}
|
|
5091
|
+
export interface UpdateCustomFieldDefinitionRequest {
|
|
5092
|
+
isRequired: boolean;
|
|
5093
|
+
/**
|
|
5094
|
+
* @format int32
|
|
5095
|
+
* @min 0
|
|
5096
|
+
*/
|
|
5097
|
+
displayOrder: number;
|
|
5098
|
+
/** @format int32 */
|
|
5099
|
+
minLength?: number | null;
|
|
5100
|
+
/** @format int32 */
|
|
5101
|
+
maxLength?: number | null;
|
|
5102
|
+
/** @format double */
|
|
5103
|
+
minValue?: number | null;
|
|
5104
|
+
/** @format double */
|
|
5105
|
+
maxValue?: number | null;
|
|
5106
|
+
/**
|
|
5107
|
+
* @minLength 1
|
|
5108
|
+
* @maxLength 250
|
|
5109
|
+
*/
|
|
5110
|
+
name: string;
|
|
5111
|
+
defaultValue?: string | null;
|
|
5112
|
+
regexPattern?: string | null;
|
|
5113
|
+
options?: CustomFieldOptionRequest[] | null;
|
|
5114
|
+
permissions?: CustomFieldPermissionRequest[] | null;
|
|
5115
|
+
}
|
|
4726
5116
|
export interface UpdateDocumentTemplateRequest {
|
|
4727
5117
|
/** @minLength 1 */
|
|
4728
5118
|
htmlBody: string;
|
|
@@ -4759,6 +5149,14 @@ export interface UpdateListingPhotoRequest {
|
|
|
4759
5149
|
/** @format int32 */
|
|
4760
5150
|
weight: number;
|
|
4761
5151
|
}
|
|
5152
|
+
export interface UpdateLoanDocumentFolderRequest {
|
|
5153
|
+
/**
|
|
5154
|
+
* @minLength 1
|
|
5155
|
+
* @maxLength 250
|
|
5156
|
+
*/
|
|
5157
|
+
name: string;
|
|
5158
|
+
permissions: LoanDocumentFolderPermissionRequest[];
|
|
5159
|
+
}
|
|
4762
5160
|
export interface UpdateLoanQueueRequest {
|
|
4763
5161
|
data: any;
|
|
4764
5162
|
}
|
|
@@ -5021,7 +5419,7 @@ export interface UserDevice {
|
|
|
5021
5419
|
export interface UserDraft {
|
|
5022
5420
|
/** @format uuid */
|
|
5023
5421
|
draftID: string;
|
|
5024
|
-
role:
|
|
5422
|
+
role: UserDraftRoleEnum;
|
|
5025
5423
|
user: User;
|
|
5026
5424
|
}
|
|
5027
5425
|
export interface UserDraftPaginated {
|
|
@@ -5045,7 +5443,7 @@ export interface UserGroupAccessScope {
|
|
|
5045
5443
|
id: string;
|
|
5046
5444
|
/** @format uuid */
|
|
5047
5445
|
groupId: string;
|
|
5048
|
-
scopeType:
|
|
5446
|
+
scopeType: UserGroupAccessScopeScopeTypeEnum;
|
|
5049
5447
|
/** @format uuid */
|
|
5050
5448
|
userId?: string | null;
|
|
5051
5449
|
/** @format uuid */
|
|
@@ -5078,24 +5476,28 @@ export interface UserLoan {
|
|
|
5078
5476
|
deletedAt?: string | null;
|
|
5079
5477
|
loanID: string;
|
|
5080
5478
|
user: User;
|
|
5081
|
-
role:
|
|
5479
|
+
role: UserLoanRoleEnum;
|
|
5082
5480
|
/** @format int32 */
|
|
5083
5481
|
borrowerPair?: number | null;
|
|
5084
5482
|
/** @format int32 */
|
|
5085
5483
|
borrowerPosition?: number | null;
|
|
5086
|
-
|
|
5484
|
+
consents: UserLoanConsent[];
|
|
5087
5485
|
}
|
|
5088
5486
|
export interface UserLoanConsent {
|
|
5089
5487
|
/** @format uuid */
|
|
5090
5488
|
id: string;
|
|
5091
5489
|
/** @format uuid */
|
|
5092
5490
|
userLoanID: string;
|
|
5093
|
-
type:
|
|
5491
|
+
type: UserLoanConsentTypeEnum;
|
|
5094
5492
|
providedConsent: boolean;
|
|
5095
5493
|
ipAddress?: string | null;
|
|
5096
|
-
losSyncStatus:
|
|
5494
|
+
losSyncStatus: UserLoanConsentLosSyncStatusEnum;
|
|
5097
5495
|
/** @format date-time */
|
|
5098
5496
|
createdAt: string;
|
|
5497
|
+
/** @format date-time */
|
|
5498
|
+
updatedAt?: string | null;
|
|
5499
|
+
/** @format date-time */
|
|
5500
|
+
deletedAt?: string | null;
|
|
5099
5501
|
}
|
|
5100
5502
|
export interface UserLoanTask {
|
|
5101
5503
|
/** @format uuid */
|
|
@@ -5108,7 +5510,6 @@ export interface UserLoanTask {
|
|
|
5108
5510
|
value?: string | null;
|
|
5109
5511
|
documents: LoanDocument[];
|
|
5110
5512
|
loan: LoanIdentifier;
|
|
5111
|
-
/** @deprecated */
|
|
5112
5513
|
loanID: string;
|
|
5113
5514
|
/** @format date-time */
|
|
5114
5515
|
completedDate?: string | null;
|
|
@@ -5120,6 +5521,12 @@ export interface UserLoanTask {
|
|
|
5120
5521
|
/** @format int32 */
|
|
5121
5522
|
commentsCount: number;
|
|
5122
5523
|
}
|
|
5524
|
+
export interface UserLoanTaskPaginated {
|
|
5525
|
+
rows: UserLoanTask[];
|
|
5526
|
+
pagination: Pagination;
|
|
5527
|
+
/** @format int64 */
|
|
5528
|
+
count: number;
|
|
5529
|
+
}
|
|
5123
5530
|
export interface UserLoanTaskRequest {
|
|
5124
5531
|
value?: string | null;
|
|
5125
5532
|
/**
|
|
@@ -5225,7 +5632,7 @@ export interface UserSummary {
|
|
|
5225
5632
|
id: string;
|
|
5226
5633
|
name?: string | null;
|
|
5227
5634
|
email?: string | null;
|
|
5228
|
-
role:
|
|
5635
|
+
role: UserSummaryRoleEnum;
|
|
5229
5636
|
}
|
|
5230
5637
|
export interface VerifyPasswordRequest {
|
|
5231
5638
|
/**
|
|
@@ -5258,6 +5665,69 @@ export interface Workflow {
|
|
|
5258
5665
|
tileSubtitle: string;
|
|
5259
5666
|
icon: string;
|
|
5260
5667
|
}
|
|
5668
|
+
export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
|
|
5669
|
+
export type AuditLogEntryChangeTypeEnum = "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored";
|
|
5670
|
+
export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
|
|
5671
|
+
export type CreateAccountRequestEnvironmentEnum = "Development" | "Staging" | "UAT" | "Production";
|
|
5672
|
+
export type CreateCustomFieldDefinitionRequestDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5673
|
+
export type CreateCustomFieldDefinitionRequestEntityTypeEnum = "Loan";
|
|
5674
|
+
export type CreateGroupMemberRequestLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5675
|
+
/** @deprecated */
|
|
5676
|
+
export type CreateInviteRequestRelationshipEnum = "NotApplicable" | "Spouse" | "NonSpouse";
|
|
5677
|
+
export type CreateLoanImportRequestImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5678
|
+
export type CreateUserDraftLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5679
|
+
export type CustomFieldDefinitionDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5680
|
+
export type CustomFieldDefinitionEntityTypeEnum = "Loan";
|
|
5681
|
+
export type CustomFieldEntryDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5682
|
+
export type CustomFieldPermissionRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5683
|
+
export type CustomFieldPermissionAccessLevelEnum = "NoAccess" | "ReadOnly" | "ReadWrite";
|
|
5684
|
+
export type CustomFieldPermissionRequestRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5685
|
+
export type CustomFieldPermissionRequestAccessLevelEnum = "NoAccess" | "ReadOnly" | "ReadWrite";
|
|
5686
|
+
export type CustomFieldValueDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5687
|
+
export type DraftTypeEnum = "NewLoan" | "EditLoan";
|
|
5688
|
+
export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
|
|
5689
|
+
export type EncompassCredentialsDetailSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5690
|
+
export type EncompassCredentialsRequestSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5691
|
+
export type EncompassRequestLogOperationTypeEnum = "FieldUpdate" | "ConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
|
|
5692
|
+
export type EncompassRequestLogOutcomeEnum = "Success" | "Failure" | "PartialSuccess";
|
|
5693
|
+
export type FusionReportFilterFilterTypeEnum = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
|
|
5694
|
+
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";
|
|
5695
|
+
export type LoanSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5696
|
+
export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
|
|
5697
|
+
export type LoanContactRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5698
|
+
export type LoanDocumentFolderPermissionRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5699
|
+
export type LoanDocumentFolderPermissionLevelEnum = "None" | "Read" | "Write" | "Manage";
|
|
5700
|
+
export type LoanDocumentFolderPermissionRequestRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5701
|
+
export type LoanDocumentFolderPermissionRequestLevelEnum = "None" | "Read" | "Write" | "Manage";
|
|
5702
|
+
export type LoanImportStatusEnum = "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
|
|
5703
|
+
export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5704
|
+
export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5705
|
+
export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5706
|
+
export type LoanLogTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
|
|
5707
|
+
export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5708
|
+
export type LoanLogDetailTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
|
|
5709
|
+
export type LoanTaskStatusSummaryStatusEnum = "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
|
|
5710
|
+
export type LoanUserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5711
|
+
export type LosOperationTrackingStatusEnum = "Pending" | "Success" | "Failed" | "ConfigurationError" | "PermanentFailure" | "Locked";
|
|
5712
|
+
export type SamlMetadataRequestSsoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5713
|
+
export type SiteConfigurationTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5714
|
+
export type SiteConfigurationByUrlTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5715
|
+
export type SiteConfigurationReducedTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5716
|
+
export type SiteConfigurationRequestTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5717
|
+
export type SiteConfigurationSummaryTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5718
|
+
export type UserDraftRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5719
|
+
export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
|
|
5720
|
+
export type UserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5721
|
+
export type UserLoanConsentTypeEnum = "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
5722
|
+
export type UserLoanConsentLosSyncStatusEnum = "NotStarted" | "Failed" | "Success";
|
|
5723
|
+
export type UserSummaryRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5724
|
+
export type GetCustomFieldDefinitionsParamsEntityTypeEnum = "Loan";
|
|
5725
|
+
/** @default "Realtor" */
|
|
5726
|
+
export type GetPartnersParamsRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5727
|
+
export type GetSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5728
|
+
export type GetSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5729
|
+
export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5730
|
+
export type CreateOrReplaceSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5261
5731
|
import type { AxiosInstance, AxiosRequestConfig, AxiosResponse, ResponseType } from "axios";
|
|
5262
5732
|
export type QueryParamsType = Record<string | number, any>;
|
|
5263
5733
|
export interface FullRequestParams extends Omit<AxiosRequestConfig, "data" | "params" | "url" | "responseType"> {
|
|
@@ -5303,7 +5773,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
|
|
|
5303
5773
|
}
|
|
5304
5774
|
/**
|
|
5305
5775
|
* @title The Big POS API
|
|
5306
|
-
* @version v2.
|
|
5776
|
+
* @version v2.39.0
|
|
5307
5777
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
5308
5778
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
5309
5779
|
*/
|
|
@@ -5317,7 +5787,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5317
5787
|
* @secure
|
|
5318
5788
|
* @response `200` `void` Success
|
|
5319
5789
|
*/
|
|
5320
|
-
postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5790
|
+
postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5321
5791
|
/**
|
|
5322
5792
|
* No description
|
|
5323
5793
|
*
|
|
@@ -5327,7 +5797,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5327
5797
|
* @secure
|
|
5328
5798
|
* @response `200` `string` Success
|
|
5329
5799
|
*/
|
|
5330
|
-
getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
5800
|
+
getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
5331
5801
|
api: {
|
|
5332
5802
|
/**
|
|
5333
5803
|
* No description
|
|
@@ -5340,7 +5810,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5340
5810
|
* @response `200` `Account` Success
|
|
5341
5811
|
* @response `404` `ProblemDetails` Not Found
|
|
5342
5812
|
*/
|
|
5343
|
-
getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5813
|
+
getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5344
5814
|
/**
|
|
5345
5815
|
* No description
|
|
5346
5816
|
*
|
|
@@ -5353,7 +5823,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5353
5823
|
* @response `404` `ProblemDetails` Not Found
|
|
5354
5824
|
* @response `422` `ProblemDetails` Client Error
|
|
5355
5825
|
*/
|
|
5356
|
-
replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5826
|
+
replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5357
5827
|
/**
|
|
5358
5828
|
* No description
|
|
5359
5829
|
*
|
|
@@ -5364,7 +5834,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5364
5834
|
* @secure
|
|
5365
5835
|
* @response `200` `SiteConfiguration` Success
|
|
5366
5836
|
*/
|
|
5367
|
-
getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5837
|
+
getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5368
5838
|
/**
|
|
5369
5839
|
* No description
|
|
5370
5840
|
*
|
|
@@ -5376,7 +5846,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5376
5846
|
* @response `200` `SiteConfiguration` Success
|
|
5377
5847
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5378
5848
|
*/
|
|
5379
|
-
updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5849
|
+
updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5380
5850
|
/**
|
|
5381
5851
|
* No description
|
|
5382
5852
|
*
|
|
@@ -5387,7 +5857,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5387
5857
|
* @secure
|
|
5388
5858
|
* @response `200` `(Account)[]` Success
|
|
5389
5859
|
*/
|
|
5390
|
-
getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any>>;
|
|
5860
|
+
getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any, {}>>;
|
|
5391
5861
|
/**
|
|
5392
5862
|
* No description
|
|
5393
5863
|
*
|
|
@@ -5399,7 +5869,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5399
5869
|
* @response `201` `Account` Created
|
|
5400
5870
|
* @response `422` `ProblemDetails` Client Error
|
|
5401
5871
|
*/
|
|
5402
|
-
createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5872
|
+
createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5403
5873
|
/**
|
|
5404
5874
|
* No description
|
|
5405
5875
|
*
|
|
@@ -5411,7 +5881,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5411
5881
|
* @response `201` `Account` Created
|
|
5412
5882
|
* @response `422` `ProblemDetails` Client Error
|
|
5413
5883
|
*/
|
|
5414
|
-
getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5884
|
+
getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5415
5885
|
/**
|
|
5416
5886
|
* No description
|
|
5417
5887
|
*
|
|
@@ -5427,7 +5897,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5427
5897
|
deleteAccount: (id: string, query?: {
|
|
5428
5898
|
/** @default false */
|
|
5429
5899
|
hardDelete?: boolean;
|
|
5430
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5900
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5431
5901
|
/**
|
|
5432
5902
|
* No description
|
|
5433
5903
|
*
|
|
@@ -5440,7 +5910,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5440
5910
|
* @response `404` `ProblemDetails` Not Found
|
|
5441
5911
|
* @response `422` `ProblemDetails` Client Error
|
|
5442
5912
|
*/
|
|
5443
|
-
updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any>>;
|
|
5913
|
+
updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any, {}>>;
|
|
5444
5914
|
/**
|
|
5445
5915
|
* No description
|
|
5446
5916
|
*
|
|
@@ -5458,19 +5928,30 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5458
5928
|
pageNumber?: number;
|
|
5459
5929
|
sortBy?: string;
|
|
5460
5930
|
sortDirection?: string;
|
|
5461
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any>>;
|
|
5931
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any, {}>>;
|
|
5462
5932
|
/**
|
|
5463
5933
|
* No description
|
|
5464
5934
|
*
|
|
5465
5935
|
* @tags AuditLog
|
|
5466
|
-
* @name
|
|
5467
|
-
* @summary Get
|
|
5468
|
-
* @request GET:/api/audit-logs/
|
|
5936
|
+
* @name GetAuditLogEntityTypes
|
|
5937
|
+
* @summary Get entity types
|
|
5938
|
+
* @request GET:/api/audit-logs/entity-types
|
|
5469
5939
|
* @secure
|
|
5470
|
-
* @response `200` `
|
|
5940
|
+
* @response `200` `(AuditEntityType)[]` Success
|
|
5941
|
+
*/
|
|
5942
|
+
getAuditLogEntityTypes: (params?: RequestParams) => Promise<AxiosResponse<AuditEntityType[], any, {}>>;
|
|
5943
|
+
/**
|
|
5944
|
+
* No description
|
|
5945
|
+
*
|
|
5946
|
+
* @tags AuditLog
|
|
5947
|
+
* @name GetAuditLogById
|
|
5948
|
+
* @summary Get by ID
|
|
5949
|
+
* @request GET:/api/audit-logs/{id}
|
|
5950
|
+
* @secure
|
|
5951
|
+
* @response `200` `AuditLogEntry` Success
|
|
5471
5952
|
* @response `404` `ProblemDetails` Not Found
|
|
5472
5953
|
*/
|
|
5473
|
-
getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any>>;
|
|
5954
|
+
getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any, {}>>;
|
|
5474
5955
|
/**
|
|
5475
5956
|
* No description
|
|
5476
5957
|
*
|
|
@@ -5483,7 +5964,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5483
5964
|
* @response `401` `ProblemDetails` Unauthorized
|
|
5484
5965
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5485
5966
|
*/
|
|
5486
|
-
getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
5967
|
+
getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
|
|
5487
5968
|
/**
|
|
5488
5969
|
* No description
|
|
5489
5970
|
*
|
|
@@ -5495,7 +5976,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5495
5976
|
* @response `200` `ForcePasswordReset` Success
|
|
5496
5977
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5497
5978
|
*/
|
|
5498
|
-
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
|
|
5979
|
+
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any, {}>>;
|
|
5499
5980
|
/**
|
|
5500
5981
|
* No description
|
|
5501
5982
|
*
|
|
@@ -5507,7 +5988,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5507
5988
|
* @response `200` `ForcePasswordReset` Success
|
|
5508
5989
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5509
5990
|
*/
|
|
5510
|
-
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
|
|
5991
|
+
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any, {}>>;
|
|
5511
5992
|
/**
|
|
5512
5993
|
* No description
|
|
5513
5994
|
*
|
|
@@ -5519,7 +6000,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5519
6000
|
* @response `200` `Token` Success
|
|
5520
6001
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5521
6002
|
*/
|
|
5522
|
-
getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
6003
|
+
getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
|
|
5523
6004
|
/**
|
|
5524
6005
|
* No description
|
|
5525
6006
|
*
|
|
@@ -5531,7 +6012,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5531
6012
|
* @response `200` `SSOToken` Success
|
|
5532
6013
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5533
6014
|
*/
|
|
5534
|
-
getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any>>;
|
|
6015
|
+
getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any, {}>>;
|
|
5535
6016
|
/**
|
|
5536
6017
|
* No description
|
|
5537
6018
|
*
|
|
@@ -5543,7 +6024,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5543
6024
|
* @response `204` `NoContentResult` No Content
|
|
5544
6025
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5545
6026
|
*/
|
|
5546
|
-
logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any>>;
|
|
6027
|
+
logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any, {}>>;
|
|
5547
6028
|
/**
|
|
5548
6029
|
* No description
|
|
5549
6030
|
*
|
|
@@ -5562,7 +6043,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5562
6043
|
pageNumber?: number;
|
|
5563
6044
|
sortBy?: string;
|
|
5564
6045
|
sortDirection?: string;
|
|
5565
|
-
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
|
|
6046
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
|
|
5566
6047
|
/**
|
|
5567
6048
|
* No description
|
|
5568
6049
|
*
|
|
@@ -5574,7 +6055,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5574
6055
|
* @response `200` `GetBranch` Success
|
|
5575
6056
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5576
6057
|
*/
|
|
5577
|
-
createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
6058
|
+
createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
5578
6059
|
/**
|
|
5579
6060
|
* No description
|
|
5580
6061
|
*
|
|
@@ -5592,7 +6073,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5592
6073
|
pageNumber?: number;
|
|
5593
6074
|
sortBy?: string;
|
|
5594
6075
|
sortDirection?: string;
|
|
5595
|
-
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
|
|
6076
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
|
|
5596
6077
|
/**
|
|
5597
6078
|
* No description
|
|
5598
6079
|
*
|
|
@@ -5603,7 +6084,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5603
6084
|
* @secure
|
|
5604
6085
|
* @response `200` `GetBranch` Success
|
|
5605
6086
|
*/
|
|
5606
|
-
getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
6087
|
+
getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
5607
6088
|
/**
|
|
5608
6089
|
* No description
|
|
5609
6090
|
*
|
|
@@ -5615,7 +6096,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5615
6096
|
* @response `200` `GetBranch` Success
|
|
5616
6097
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5617
6098
|
*/
|
|
5618
|
-
replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
6099
|
+
replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
5619
6100
|
/**
|
|
5620
6101
|
* No description
|
|
5621
6102
|
*
|
|
@@ -5626,7 +6107,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5626
6107
|
* @secure
|
|
5627
6108
|
* @response `204` `void` No Content
|
|
5628
6109
|
*/
|
|
5629
|
-
deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6110
|
+
deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5630
6111
|
/**
|
|
5631
6112
|
* No description
|
|
5632
6113
|
*
|
|
@@ -5638,7 +6119,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5638
6119
|
* @response `204` `void` No Content
|
|
5639
6120
|
* @response `400` `ProblemDetails` Bad Request
|
|
5640
6121
|
*/
|
|
5641
|
-
restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6122
|
+
restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5642
6123
|
/**
|
|
5643
6124
|
* No description
|
|
5644
6125
|
*
|
|
@@ -5650,7 +6131,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5650
6131
|
* @response `200` `SiteConfiguration` Success
|
|
5651
6132
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5652
6133
|
*/
|
|
5653
|
-
createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
6134
|
+
createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5654
6135
|
/**
|
|
5655
6136
|
* No description
|
|
5656
6137
|
*
|
|
@@ -5661,7 +6142,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5661
6142
|
* @secure
|
|
5662
6143
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
5663
6144
|
*/
|
|
5664
|
-
getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
6145
|
+
getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
5665
6146
|
/**
|
|
5666
6147
|
* No description
|
|
5667
6148
|
*
|
|
@@ -5675,7 +6156,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5675
6156
|
*/
|
|
5676
6157
|
replaceBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
5677
6158
|
applyToChildren?: boolean;
|
|
5678
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
6159
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5679
6160
|
/**
|
|
5680
6161
|
* No description
|
|
5681
6162
|
*
|
|
@@ -5686,7 +6167,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5686
6167
|
* @secure
|
|
5687
6168
|
* @response `200` `(LoanOfficerPublic)[]` Success
|
|
5688
6169
|
*/
|
|
5689
|
-
getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
|
|
6170
|
+
getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any, {}>>;
|
|
5690
6171
|
/**
|
|
5691
6172
|
* No description
|
|
5692
6173
|
*
|
|
@@ -5699,7 +6180,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5699
6180
|
*/
|
|
5700
6181
|
getBusinessRules: (query?: {
|
|
5701
6182
|
showAll?: boolean;
|
|
5702
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any>>;
|
|
6183
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any, {}>>;
|
|
5703
6184
|
/**
|
|
5704
6185
|
* No description
|
|
5705
6186
|
*
|
|
@@ -5711,7 +6192,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5711
6192
|
* @response `200` `BusinessRule` Success
|
|
5712
6193
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5713
6194
|
*/
|
|
5714
|
-
createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
6195
|
+
createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5715
6196
|
/**
|
|
5716
6197
|
* No description
|
|
5717
6198
|
*
|
|
@@ -5722,7 +6203,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5722
6203
|
* @secure
|
|
5723
6204
|
* @response `200` `BusinessRule` Success
|
|
5724
6205
|
*/
|
|
5725
|
-
getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
6206
|
+
getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5726
6207
|
/**
|
|
5727
6208
|
* No description
|
|
5728
6209
|
*
|
|
@@ -5734,7 +6215,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5734
6215
|
* @response `200` `BusinessRule` Success
|
|
5735
6216
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5736
6217
|
*/
|
|
5737
|
-
replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
6218
|
+
replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5738
6219
|
/**
|
|
5739
6220
|
* No description
|
|
5740
6221
|
*
|
|
@@ -5745,7 +6226,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5745
6226
|
* @secure
|
|
5746
6227
|
* @response `204` `void` No Content
|
|
5747
6228
|
*/
|
|
5748
|
-
deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6229
|
+
deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5749
6230
|
/**
|
|
5750
6231
|
* No description
|
|
5751
6232
|
*
|
|
@@ -5756,7 +6237,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5756
6237
|
* @secure
|
|
5757
6238
|
* @response `200` `BusinessRule` Success
|
|
5758
6239
|
*/
|
|
5759
|
-
restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
6240
|
+
restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5760
6241
|
/**
|
|
5761
6242
|
* @description Returns closed loan counts per account within the specified date range, including POS vs non-POS breakdown and utilization ratios.
|
|
5762
6243
|
*
|
|
@@ -5767,7 +6248,29 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5767
6248
|
* @secure
|
|
5768
6249
|
* @response `200` `ClosedLoansReport` Success
|
|
5769
6250
|
*/
|
|
5770
|
-
getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any>>;
|
|
6251
|
+
getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any, {}>>;
|
|
6252
|
+
/**
|
|
6253
|
+
* No description
|
|
6254
|
+
*
|
|
6255
|
+
* @tags ConsumerConnect
|
|
6256
|
+
* @name GetConsumerConnectStatus
|
|
6257
|
+
* @summary Get Consumer Connect association status for all borrowers on a loan
|
|
6258
|
+
* @request GET:/api/loans/{loanId}/consumer-connect/status
|
|
6259
|
+
* @secure
|
|
6260
|
+
* @response `200` `(ConsumerConnectStatus)[]` Success
|
|
6261
|
+
*/
|
|
6262
|
+
getConsumerConnectStatus: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectStatus[], any, {}>>;
|
|
6263
|
+
/**
|
|
6264
|
+
* No description
|
|
6265
|
+
*
|
|
6266
|
+
* @tags ConsumerConnect
|
|
6267
|
+
* @name RetryConsumerConnectAssociation
|
|
6268
|
+
* @summary Manually retry Consumer Connect association for failed borrowers on a loan. Returns per-borrower results; check individual Success fields for partial failures.
|
|
6269
|
+
* @request POST:/api/loans/{loanId}/consumer-connect/retry
|
|
6270
|
+
* @secure
|
|
6271
|
+
* @response `200` `(ConsumerConnectRetry)[]` Success
|
|
6272
|
+
*/
|
|
6273
|
+
retryConsumerConnectAssociation: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectRetry[], any, {}>>;
|
|
5771
6274
|
/**
|
|
5772
6275
|
* No description
|
|
5773
6276
|
*
|
|
@@ -5786,7 +6289,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5786
6289
|
pageNumber?: number;
|
|
5787
6290
|
sortBy?: string;
|
|
5788
6291
|
sortDirection?: string;
|
|
5789
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
|
|
6292
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
|
|
5790
6293
|
/**
|
|
5791
6294
|
* No description
|
|
5792
6295
|
*
|
|
@@ -5798,7 +6301,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5798
6301
|
* @response `200` `Corporate` Success
|
|
5799
6302
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5800
6303
|
*/
|
|
5801
|
-
createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
6304
|
+
createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
5802
6305
|
/**
|
|
5803
6306
|
* No description
|
|
5804
6307
|
*
|
|
@@ -5816,7 +6319,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5816
6319
|
pageNumber?: number;
|
|
5817
6320
|
sortBy?: string;
|
|
5818
6321
|
sortDirection?: string;
|
|
5819
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
|
|
6322
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
|
|
5820
6323
|
/**
|
|
5821
6324
|
* No description
|
|
5822
6325
|
*
|
|
@@ -5827,7 +6330,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5827
6330
|
* @secure
|
|
5828
6331
|
* @response `200` `Corporate` Success
|
|
5829
6332
|
*/
|
|
5830
|
-
getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
6333
|
+
getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
5831
6334
|
/**
|
|
5832
6335
|
* No description
|
|
5833
6336
|
*
|
|
@@ -5839,7 +6342,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5839
6342
|
* @response `200` `Corporate` Success
|
|
5840
6343
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5841
6344
|
*/
|
|
5842
|
-
replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
6345
|
+
replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
5843
6346
|
/**
|
|
5844
6347
|
* No description
|
|
5845
6348
|
*
|
|
@@ -5850,7 +6353,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5850
6353
|
* @secure
|
|
5851
6354
|
* @response `204` `void` No Content
|
|
5852
6355
|
*/
|
|
5853
|
-
deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6356
|
+
deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5854
6357
|
/**
|
|
5855
6358
|
* No description
|
|
5856
6359
|
*
|
|
@@ -5861,7 +6364,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5861
6364
|
* @secure
|
|
5862
6365
|
* @response `204` `void` No Content
|
|
5863
6366
|
*/
|
|
5864
|
-
restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6367
|
+
restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5865
6368
|
/**
|
|
5866
6369
|
* No description
|
|
5867
6370
|
*
|
|
@@ -5873,7 +6376,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5873
6376
|
* @response `200` `SiteConfiguration` Success
|
|
5874
6377
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5875
6378
|
*/
|
|
5876
|
-
createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
6379
|
+
createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5877
6380
|
/**
|
|
5878
6381
|
* No description
|
|
5879
6382
|
*
|
|
@@ -5884,7 +6387,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5884
6387
|
* @secure
|
|
5885
6388
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
5886
6389
|
*/
|
|
5887
|
-
getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
6390
|
+
getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
5888
6391
|
/**
|
|
5889
6392
|
* No description
|
|
5890
6393
|
*
|
|
@@ -5898,7 +6401,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5898
6401
|
*/
|
|
5899
6402
|
replaceCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
5900
6403
|
applyToChildren?: boolean;
|
|
5901
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
6404
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5902
6405
|
/**
|
|
5903
6406
|
* No description
|
|
5904
6407
|
*
|
|
@@ -5909,7 +6412,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5909
6412
|
* @secure
|
|
5910
6413
|
* @response `200` `(BranchReduced)[]` Success
|
|
5911
6414
|
*/
|
|
5912
|
-
getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any>>;
|
|
6415
|
+
getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any, {}>>;
|
|
5913
6416
|
/**
|
|
5914
6417
|
* No description
|
|
5915
6418
|
*
|
|
@@ -5920,7 +6423,97 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5920
6423
|
* @secure
|
|
5921
6424
|
* @response `200` `(LoanOfficerPublic)[]` Success
|
|
5922
6425
|
*/
|
|
5923
|
-
getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
|
|
6426
|
+
getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any, {}>>;
|
|
6427
|
+
/**
|
|
6428
|
+
* No description
|
|
6429
|
+
*
|
|
6430
|
+
* @tags CustomFieldDefinitions
|
|
6431
|
+
* @name GetCustomFieldDefinitions
|
|
6432
|
+
* @summary Get all custom field definitions by entity type
|
|
6433
|
+
* @request GET:/api/custom-field-definitions
|
|
6434
|
+
* @secure
|
|
6435
|
+
* @response `200` `(CustomFieldDefinition)[]` Success
|
|
6436
|
+
*/
|
|
6437
|
+
getCustomFieldDefinitions: (query?: {
|
|
6438
|
+
entityType?: GetCustomFieldDefinitionsParamsEntityTypeEnum;
|
|
6439
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition[], any, {}>>;
|
|
6440
|
+
/**
|
|
6441
|
+
* No description
|
|
6442
|
+
*
|
|
6443
|
+
* @tags CustomFieldDefinitions
|
|
6444
|
+
* @name CreateCustomFieldDefinition
|
|
6445
|
+
* @summary Create a custom field definition
|
|
6446
|
+
* @request POST:/api/custom-field-definitions
|
|
6447
|
+
* @secure
|
|
6448
|
+
* @response `201` `CustomFieldDefinition` Created
|
|
6449
|
+
* @response `409` `ProblemDetails` Conflict
|
|
6450
|
+
* @response `422` `ProblemDetails` Client Error
|
|
6451
|
+
*/
|
|
6452
|
+
createCustomFieldDefinition: (data: CreateCustomFieldDefinitionRequest, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any, {}>>;
|
|
6453
|
+
/**
|
|
6454
|
+
* No description
|
|
6455
|
+
*
|
|
6456
|
+
* @tags CustomFieldDefinitions
|
|
6457
|
+
* @name GetCustomFieldDefinitionById
|
|
6458
|
+
* @summary Get a custom field definition by ID
|
|
6459
|
+
* @request GET:/api/custom-field-definitions/{id}
|
|
6460
|
+
* @secure
|
|
6461
|
+
* @response `200` `CustomFieldDefinition` Success
|
|
6462
|
+
* @response `404` `ProblemDetails` Not Found
|
|
6463
|
+
*/
|
|
6464
|
+
getCustomFieldDefinitionById: (id: string, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any, {}>>;
|
|
6465
|
+
/**
|
|
6466
|
+
* No description
|
|
6467
|
+
*
|
|
6468
|
+
* @tags CustomFieldDefinitions
|
|
6469
|
+
* @name UpdateCustomFieldDefinition
|
|
6470
|
+
* @summary Update a custom field definition
|
|
6471
|
+
* @request PUT:/api/custom-field-definitions/{id}
|
|
6472
|
+
* @secure
|
|
6473
|
+
* @response `200` `CustomFieldDefinition` Success
|
|
6474
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
6475
|
+
* @response `404` `ProblemDetails` Not Found
|
|
6476
|
+
* @response `409` `ProblemDetails` Conflict
|
|
6477
|
+
* @response `422` `ProblemDetails` Client Error
|
|
6478
|
+
*/
|
|
6479
|
+
updateCustomFieldDefinition: (id: string, data: UpdateCustomFieldDefinitionRequest, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any, {}>>;
|
|
6480
|
+
/**
|
|
6481
|
+
* No description
|
|
6482
|
+
*
|
|
6483
|
+
* @tags CustomFieldDefinitions
|
|
6484
|
+
* @name DeleteCustomFieldDefinition
|
|
6485
|
+
* @summary Delete a custom field definition
|
|
6486
|
+
* @request DELETE:/api/custom-field-definitions/{id}
|
|
6487
|
+
* @secure
|
|
6488
|
+
* @response `204` `void` No Content
|
|
6489
|
+
* @response `404` `ProblemDetails` Not Found
|
|
6490
|
+
* @response `409` `ProblemDetails` Conflict
|
|
6491
|
+
*/
|
|
6492
|
+
deleteCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6493
|
+
/**
|
|
6494
|
+
* No description
|
|
6495
|
+
*
|
|
6496
|
+
* @tags CustomFieldDefinitions
|
|
6497
|
+
* @name DisableCustomFieldDefinition
|
|
6498
|
+
* @summary Disable a custom field definition
|
|
6499
|
+
* @request POST:/api/custom-field-definitions/{id}/disable
|
|
6500
|
+
* @secure
|
|
6501
|
+
* @response `204` `void` No Content
|
|
6502
|
+
* @response `404` `ProblemDetails` Not Found
|
|
6503
|
+
*/
|
|
6504
|
+
disableCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6505
|
+
/**
|
|
6506
|
+
* No description
|
|
6507
|
+
*
|
|
6508
|
+
* @tags CustomFieldDefinitions
|
|
6509
|
+
* @name EnableCustomFieldDefinition
|
|
6510
|
+
* @summary Enable a custom field definition
|
|
6511
|
+
* @request POST:/api/custom-field-definitions/{id}/enable
|
|
6512
|
+
* @secure
|
|
6513
|
+
* @response `204` `void` No Content
|
|
6514
|
+
* @response `404` `ProblemDetails` Not Found
|
|
6515
|
+
*/
|
|
6516
|
+
enableCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5924
6517
|
/**
|
|
5925
6518
|
* No description
|
|
5926
6519
|
*
|
|
@@ -5940,7 +6533,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5940
6533
|
pageNumber?: number;
|
|
5941
6534
|
sortBy?: string;
|
|
5942
6535
|
sortDirection?: string;
|
|
5943
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any>>;
|
|
6536
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any, {}>>;
|
|
5944
6537
|
/**
|
|
5945
6538
|
* No description
|
|
5946
6539
|
*
|
|
@@ -5951,7 +6544,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5951
6544
|
* @secure
|
|
5952
6545
|
* @response `200` `Device` Success
|
|
5953
6546
|
*/
|
|
5954
|
-
getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
|
|
6547
|
+
getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
|
|
5955
6548
|
/**
|
|
5956
6549
|
* No description
|
|
5957
6550
|
*
|
|
@@ -5962,7 +6555,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5962
6555
|
* @secure
|
|
5963
6556
|
* @response `200` `Device` Success
|
|
5964
6557
|
*/
|
|
5965
|
-
updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
|
|
6558
|
+
updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
|
|
5966
6559
|
/**
|
|
5967
6560
|
* No description
|
|
5968
6561
|
*
|
|
@@ -5973,7 +6566,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5973
6566
|
* @secure
|
|
5974
6567
|
* @response `200` `DeviceMDM` Success
|
|
5975
6568
|
*/
|
|
5976
|
-
getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any>>;
|
|
6569
|
+
getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any, {}>>;
|
|
5977
6570
|
/**
|
|
5978
6571
|
* No description
|
|
5979
6572
|
*
|
|
@@ -5984,7 +6577,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5984
6577
|
* @secure
|
|
5985
6578
|
* @response `200` `Action` Success
|
|
5986
6579
|
*/
|
|
5987
|
-
createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any>>;
|
|
6580
|
+
createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any, {}>>;
|
|
5988
6581
|
/**
|
|
5989
6582
|
* No description
|
|
5990
6583
|
*
|
|
@@ -5998,7 +6591,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5998
6591
|
getDocumentBuckets: (query?: {
|
|
5999
6592
|
/** @default false */
|
|
6000
6593
|
includeSystemBuckets?: boolean;
|
|
6001
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
6594
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
6002
6595
|
/**
|
|
6003
6596
|
* No description
|
|
6004
6597
|
*
|
|
@@ -6011,7 +6604,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6011
6604
|
*/
|
|
6012
6605
|
getDocumentTemplates: (query?: {
|
|
6013
6606
|
showAll?: boolean;
|
|
6014
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
|
|
6607
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
|
|
6015
6608
|
/**
|
|
6016
6609
|
* No description
|
|
6017
6610
|
*
|
|
@@ -6024,7 +6617,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6024
6617
|
* @response `404` `ProblemDetails` Not Found
|
|
6025
6618
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6026
6619
|
*/
|
|
6027
|
-
createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
|
|
6620
|
+
createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
|
|
6028
6621
|
/**
|
|
6029
6622
|
* No description
|
|
6030
6623
|
*
|
|
@@ -6040,7 +6633,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6040
6633
|
showAll?: boolean;
|
|
6041
6634
|
/** @default true */
|
|
6042
6635
|
publishedOnly?: boolean;
|
|
6043
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
|
|
6636
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
|
|
6044
6637
|
/**
|
|
6045
6638
|
* No description
|
|
6046
6639
|
*
|
|
@@ -6052,7 +6645,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6052
6645
|
* @response `200` `DocumentTemplate` Success
|
|
6053
6646
|
* @response `404` `ProblemDetails` Not Found
|
|
6054
6647
|
*/
|
|
6055
|
-
getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any>>;
|
|
6648
|
+
getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any, {}>>;
|
|
6056
6649
|
/**
|
|
6057
6650
|
* No description
|
|
6058
6651
|
*
|
|
@@ -6066,7 +6659,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6066
6659
|
* @response `404` `ProblemDetails` Not Found
|
|
6067
6660
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6068
6661
|
*/
|
|
6069
|
-
replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
|
|
6662
|
+
replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
|
|
6070
6663
|
/**
|
|
6071
6664
|
* No description
|
|
6072
6665
|
*
|
|
@@ -6079,7 +6672,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6079
6672
|
* @response `401` `ProblemDetails` Unauthorized
|
|
6080
6673
|
* @response `404` `ProblemDetails` Not Found
|
|
6081
6674
|
*/
|
|
6082
|
-
deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6675
|
+
deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6083
6676
|
/**
|
|
6084
6677
|
* No description
|
|
6085
6678
|
*
|
|
@@ -6092,7 +6685,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6092
6685
|
* @response `401` `ProblemDetails` Unauthorized
|
|
6093
6686
|
* @response `404` `ProblemDetails` Not Found
|
|
6094
6687
|
*/
|
|
6095
|
-
restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6688
|
+
restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6096
6689
|
/**
|
|
6097
6690
|
* No description
|
|
6098
6691
|
*
|
|
@@ -6103,7 +6696,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6103
6696
|
* @secure
|
|
6104
6697
|
* @response `200` `(DocumentTemplateVersion)[]` Success
|
|
6105
6698
|
*/
|
|
6106
|
-
getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any>>;
|
|
6699
|
+
getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any, {}>>;
|
|
6107
6700
|
/**
|
|
6108
6701
|
* No description
|
|
6109
6702
|
*
|
|
@@ -6114,7 +6707,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6114
6707
|
* @secure
|
|
6115
6708
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6116
6709
|
*/
|
|
6117
|
-
createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6710
|
+
createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6118
6711
|
/**
|
|
6119
6712
|
* No description
|
|
6120
6713
|
*
|
|
@@ -6125,7 +6718,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6125
6718
|
* @secure
|
|
6126
6719
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6127
6720
|
*/
|
|
6128
|
-
getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6721
|
+
getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6129
6722
|
/**
|
|
6130
6723
|
* No description
|
|
6131
6724
|
*
|
|
@@ -6136,7 +6729,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6136
6729
|
* @secure
|
|
6137
6730
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6138
6731
|
*/
|
|
6139
|
-
replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6732
|
+
replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6140
6733
|
/**
|
|
6141
6734
|
* No description
|
|
6142
6735
|
*
|
|
@@ -6147,7 +6740,77 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6147
6740
|
* @secure
|
|
6148
6741
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6149
6742
|
*/
|
|
6150
|
-
deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6743
|
+
deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6744
|
+
/**
|
|
6745
|
+
* No description
|
|
6746
|
+
*
|
|
6747
|
+
* @tags Encompass Custom Field Mappings
|
|
6748
|
+
* @name GetEncompassCustomFieldMapping
|
|
6749
|
+
* @request GET:/api/los/encompass/custom-field-mappings/{definitionId}
|
|
6750
|
+
* @secure
|
|
6751
|
+
* @response `200` `EncompassCustomFieldMapping` Success
|
|
6752
|
+
* @response `404` `void` Not Found
|
|
6753
|
+
*/
|
|
6754
|
+
getEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<EncompassCustomFieldMapping, any, {}>>;
|
|
6755
|
+
/**
|
|
6756
|
+
* No description
|
|
6757
|
+
*
|
|
6758
|
+
* @tags Encompass Custom Field Mappings
|
|
6759
|
+
* @name AddEncompassCustomFieldMapping
|
|
6760
|
+
* @request POST:/api/los/encompass/custom-field-mappings/{definitionId}
|
|
6761
|
+
* @secure
|
|
6762
|
+
* @response `201` `EncompassCustomFieldMapping` Created
|
|
6763
|
+
* @response `400` `void` Bad Request
|
|
6764
|
+
* @response `404` `void` Not Found
|
|
6765
|
+
* @response `409` `void` Conflict
|
|
6766
|
+
* @response `422` `ProblemDetails` Client Error
|
|
6767
|
+
*/
|
|
6768
|
+
addEncompassCustomFieldMapping: (definitionId: string, data: EncompassCustomFieldMappingRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCustomFieldMapping, any, {}>>;
|
|
6769
|
+
/**
|
|
6770
|
+
* No description
|
|
6771
|
+
*
|
|
6772
|
+
* @tags Encompass Custom Field Mappings
|
|
6773
|
+
* @name DeleteEncompassCustomFieldMapping
|
|
6774
|
+
* @request DELETE:/api/los/encompass/custom-field-mappings/{definitionId}
|
|
6775
|
+
* @secure
|
|
6776
|
+
* @response `204` `void` No Content
|
|
6777
|
+
* @response `404` `void` Not Found
|
|
6778
|
+
* @response `409` `void` Conflict
|
|
6779
|
+
*/
|
|
6780
|
+
deleteEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6781
|
+
/**
|
|
6782
|
+
* No description
|
|
6783
|
+
*
|
|
6784
|
+
* @tags Encompass Custom Field Mappings
|
|
6785
|
+
* @name DisableEncompassCustomFieldMapping
|
|
6786
|
+
* @request POST:/api/los/encompass/custom-field-mappings/{definitionId}/disable
|
|
6787
|
+
* @secure
|
|
6788
|
+
* @response `204` `void` No Content
|
|
6789
|
+
* @response `404` `void` Not Found
|
|
6790
|
+
*/
|
|
6791
|
+
disableEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6792
|
+
/**
|
|
6793
|
+
* No description
|
|
6794
|
+
*
|
|
6795
|
+
* @tags Encompass Custom Field Mappings
|
|
6796
|
+
* @name EnableEncompassCustomFieldMapping
|
|
6797
|
+
* @request POST:/api/los/encompass/custom-field-mappings/{definitionId}/enable
|
|
6798
|
+
* @secure
|
|
6799
|
+
* @response `204` `void` No Content
|
|
6800
|
+
* @response `404` `void` Not Found
|
|
6801
|
+
*/
|
|
6802
|
+
enableEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6803
|
+
/**
|
|
6804
|
+
* No description
|
|
6805
|
+
*
|
|
6806
|
+
* @tags Encompass Custom Fields
|
|
6807
|
+
* @name GetEncompassFields
|
|
6808
|
+
* @request GET:/api/los/encompass/custom-fields
|
|
6809
|
+
* @secure
|
|
6810
|
+
* @response `200` `(EncompassFieldListItem)[]` Success
|
|
6811
|
+
* @response `502` `ProblemDetails` Server Error
|
|
6812
|
+
*/
|
|
6813
|
+
getEncompassFields: (params?: RequestParams) => Promise<AxiosResponse<EncompassFieldListItem[], any, {}>>;
|
|
6151
6814
|
/**
|
|
6152
6815
|
* No description
|
|
6153
6816
|
*
|
|
@@ -6175,7 +6838,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6175
6838
|
pageSize?: number;
|
|
6176
6839
|
/** @format uuid */
|
|
6177
6840
|
loanId?: string;
|
|
6178
|
-
}, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any>>;
|
|
6841
|
+
}, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any, {}>>;
|
|
6179
6842
|
/**
|
|
6180
6843
|
* No description
|
|
6181
6844
|
*
|
|
@@ -6187,7 +6850,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6187
6850
|
* @response `401` `EncompassError` Unauthorized
|
|
6188
6851
|
* @response `500` `EncompassError` Server Error
|
|
6189
6852
|
*/
|
|
6190
|
-
getUserRecipients: (params?: RequestParams) => Promise<AxiosResponse<EncompassRecipientItem[], any>>;
|
|
6853
|
+
getUserRecipients: (params?: RequestParams) => Promise<AxiosResponse<EncompassRecipientItem[], any, {}>>;
|
|
6191
6854
|
/**
|
|
6192
6855
|
* No description
|
|
6193
6856
|
*
|
|
@@ -6202,7 +6865,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6202
6865
|
* @response `404` `EncompassError` Not Found
|
|
6203
6866
|
* @response `500` `EncompassError` Server Error
|
|
6204
6867
|
*/
|
|
6205
|
-
createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any>>;
|
|
6868
|
+
createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any, {}>>;
|
|
6206
6869
|
/**
|
|
6207
6870
|
* No description
|
|
6208
6871
|
*
|
|
@@ -6222,7 +6885,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6222
6885
|
sortDirection?: string;
|
|
6223
6886
|
/** @default false */
|
|
6224
6887
|
includeDeleted?: boolean;
|
|
6225
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
|
|
6888
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
|
|
6226
6889
|
/**
|
|
6227
6890
|
* No description
|
|
6228
6891
|
*
|
|
@@ -6240,7 +6903,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6240
6903
|
file?: File;
|
|
6241
6904
|
isPublic?: boolean;
|
|
6242
6905
|
bucket?: string;
|
|
6243
|
-
}, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6906
|
+
}, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
6244
6907
|
/**
|
|
6245
6908
|
* No description
|
|
6246
6909
|
*
|
|
@@ -6251,7 +6914,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6251
6914
|
* @secure
|
|
6252
6915
|
* @response `201` `File` Created
|
|
6253
6916
|
*/
|
|
6254
|
-
getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6917
|
+
getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
6255
6918
|
/**
|
|
6256
6919
|
* No description
|
|
6257
6920
|
*
|
|
@@ -6263,7 +6926,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6263
6926
|
* @response `200` `string` Success
|
|
6264
6927
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6265
6928
|
*/
|
|
6266
|
-
replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6929
|
+
replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6267
6930
|
/**
|
|
6268
6931
|
* No description
|
|
6269
6932
|
*
|
|
@@ -6274,7 +6937,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6274
6937
|
* @secure
|
|
6275
6938
|
* @response `204` `void` No Content
|
|
6276
6939
|
*/
|
|
6277
|
-
deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6940
|
+
deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6278
6941
|
/**
|
|
6279
6942
|
* No description
|
|
6280
6943
|
*
|
|
@@ -6292,7 +6955,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6292
6955
|
pageNumber?: number;
|
|
6293
6956
|
sortBy?: string;
|
|
6294
6957
|
sortDirection?: string;
|
|
6295
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
|
|
6958
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
|
|
6296
6959
|
/**
|
|
6297
6960
|
* No description
|
|
6298
6961
|
*
|
|
@@ -6305,7 +6968,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6305
6968
|
*/
|
|
6306
6969
|
getForms: (query?: {
|
|
6307
6970
|
showAll?: boolean;
|
|
6308
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
|
|
6971
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
|
|
6309
6972
|
/**
|
|
6310
6973
|
* No description
|
|
6311
6974
|
*
|
|
@@ -6317,7 +6980,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6317
6980
|
* @response `201` `Form` Created
|
|
6318
6981
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6319
6982
|
*/
|
|
6320
|
-
createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6983
|
+
createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6321
6984
|
/**
|
|
6322
6985
|
* No description
|
|
6323
6986
|
*
|
|
@@ -6328,7 +6991,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6328
6991
|
* @secure
|
|
6329
6992
|
* @response `200` `Form` Success
|
|
6330
6993
|
*/
|
|
6331
|
-
getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6994
|
+
getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6332
6995
|
/**
|
|
6333
6996
|
* No description
|
|
6334
6997
|
*
|
|
@@ -6340,7 +7003,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6340
7003
|
* @response `200` `Form` Success
|
|
6341
7004
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6342
7005
|
*/
|
|
6343
|
-
replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
7006
|
+
replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6344
7007
|
/**
|
|
6345
7008
|
* No description
|
|
6346
7009
|
*
|
|
@@ -6351,7 +7014,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6351
7014
|
* @secure
|
|
6352
7015
|
* @response `204` `void` No Content
|
|
6353
7016
|
*/
|
|
6354
|
-
deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7017
|
+
deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6355
7018
|
/**
|
|
6356
7019
|
* No description
|
|
6357
7020
|
*
|
|
@@ -6362,7 +7025,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6362
7025
|
* @secure
|
|
6363
7026
|
* @response `200` `Form` Success
|
|
6364
7027
|
*/
|
|
6365
|
-
restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
7028
|
+
restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6366
7029
|
/**
|
|
6367
7030
|
* No description
|
|
6368
7031
|
*
|
|
@@ -6377,7 +7040,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6377
7040
|
/** @format binary */
|
|
6378
7041
|
file?: File;
|
|
6379
7042
|
name?: string;
|
|
6380
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any>>;
|
|
7043
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any, {}>>;
|
|
6381
7044
|
/**
|
|
6382
7045
|
* No description
|
|
6383
7046
|
*
|
|
@@ -6388,7 +7051,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6388
7051
|
* @secure
|
|
6389
7052
|
* @response `204` `void` No Content
|
|
6390
7053
|
*/
|
|
6391
|
-
deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7054
|
+
deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6392
7055
|
/**
|
|
6393
7056
|
* No description
|
|
6394
7057
|
*
|
|
@@ -6402,7 +7065,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6402
7065
|
downloadFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, query?: {
|
|
6403
7066
|
/** @format uuid */
|
|
6404
7067
|
siteConfigurationId?: string;
|
|
6405
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any>>;
|
|
7068
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any, {}>>;
|
|
6406
7069
|
/**
|
|
6407
7070
|
* No description
|
|
6408
7071
|
*
|
|
@@ -6420,7 +7083,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6420
7083
|
pageNumber?: number;
|
|
6421
7084
|
sortBy?: string;
|
|
6422
7085
|
sortDirection?: string;
|
|
6423
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
|
|
7086
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
|
|
6424
7087
|
/**
|
|
6425
7088
|
* No description
|
|
6426
7089
|
*
|
|
@@ -6433,7 +7096,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6433
7096
|
*/
|
|
6434
7097
|
createFormSubmission: (data: FormSubmissionRequest, query?: {
|
|
6435
7098
|
formID?: string;
|
|
6436
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
7099
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
6437
7100
|
/**
|
|
6438
7101
|
* No description
|
|
6439
7102
|
*
|
|
@@ -6444,7 +7107,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6444
7107
|
* @secure
|
|
6445
7108
|
* @response `200` `FormSubmission` Success
|
|
6446
7109
|
*/
|
|
6447
|
-
getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
7110
|
+
getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
6448
7111
|
/**
|
|
6449
7112
|
* No description
|
|
6450
7113
|
*
|
|
@@ -6455,7 +7118,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6455
7118
|
* @secure
|
|
6456
7119
|
* @response `200` `FormSubmission` Success
|
|
6457
7120
|
*/
|
|
6458
|
-
replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
7121
|
+
replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
6459
7122
|
/**
|
|
6460
7123
|
* No description
|
|
6461
7124
|
*
|
|
@@ -6466,7 +7129,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6466
7129
|
* @secure
|
|
6467
7130
|
* @response `204` `void` No Content
|
|
6468
7131
|
*/
|
|
6469
|
-
deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7132
|
+
deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6470
7133
|
/**
|
|
6471
7134
|
* No description
|
|
6472
7135
|
*
|
|
@@ -6484,7 +7147,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6484
7147
|
pageNumber?: number;
|
|
6485
7148
|
sortBy?: string;
|
|
6486
7149
|
sortDirection?: string;
|
|
6487
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
|
|
7150
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
|
|
6488
7151
|
/**
|
|
6489
7152
|
* No description
|
|
6490
7153
|
*
|
|
@@ -6495,7 +7158,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6495
7158
|
* @secure
|
|
6496
7159
|
* @response `200` `(FormVersion)[]` Success
|
|
6497
7160
|
*/
|
|
6498
|
-
getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any>>;
|
|
7161
|
+
getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any, {}>>;
|
|
6499
7162
|
/**
|
|
6500
7163
|
* No description
|
|
6501
7164
|
*
|
|
@@ -6506,7 +7169,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6506
7169
|
* @secure
|
|
6507
7170
|
* @response `200` `FormVersion` Success
|
|
6508
7171
|
*/
|
|
6509
|
-
createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
7172
|
+
createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6510
7173
|
/**
|
|
6511
7174
|
* No description
|
|
6512
7175
|
*
|
|
@@ -6517,7 +7180,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6517
7180
|
* @secure
|
|
6518
7181
|
* @response `200` `FormVersion` Success
|
|
6519
7182
|
*/
|
|
6520
|
-
getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
7183
|
+
getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6521
7184
|
/**
|
|
6522
7185
|
* No description
|
|
6523
7186
|
*
|
|
@@ -6528,7 +7191,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6528
7191
|
* @secure
|
|
6529
7192
|
* @response `200` `FormVersion` Success
|
|
6530
7193
|
*/
|
|
6531
|
-
replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
7194
|
+
replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6532
7195
|
/**
|
|
6533
7196
|
* No description
|
|
6534
7197
|
*
|
|
@@ -6539,7 +7202,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6539
7202
|
* @secure
|
|
6540
7203
|
* @response `200` `FormVersion` Success
|
|
6541
7204
|
*/
|
|
6542
|
-
deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
7205
|
+
deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6543
7206
|
/**
|
|
6544
7207
|
* No description
|
|
6545
7208
|
*
|
|
@@ -6550,7 +7213,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6550
7213
|
* @secure
|
|
6551
7214
|
* @response `200` `Record<string,any>` Success
|
|
6552
7215
|
*/
|
|
6553
|
-
getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any>>;
|
|
7216
|
+
getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any, {}>>;
|
|
6554
7217
|
/**
|
|
6555
7218
|
* No description
|
|
6556
7219
|
*
|
|
@@ -6563,7 +7226,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6563
7226
|
* @response `200` `string` Success
|
|
6564
7227
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6565
7228
|
*/
|
|
6566
|
-
updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7229
|
+
updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6567
7230
|
/**
|
|
6568
7231
|
* No description
|
|
6569
7232
|
*
|
|
@@ -6574,7 +7237,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6574
7237
|
* @secure
|
|
6575
7238
|
* @response `200` `GetReport` Success
|
|
6576
7239
|
*/
|
|
6577
|
-
getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any>>;
|
|
7240
|
+
getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any, {}>>;
|
|
6578
7241
|
/**
|
|
6579
7242
|
* No description
|
|
6580
7243
|
*
|
|
@@ -6591,7 +7254,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6591
7254
|
createLoan: (data: any, query?: {
|
|
6592
7255
|
/** @default false */
|
|
6593
7256
|
isPatch?: boolean;
|
|
6594
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7257
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6595
7258
|
/**
|
|
6596
7259
|
* No description
|
|
6597
7260
|
*
|
|
@@ -6607,7 +7270,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6607
7270
|
createLoanInternal: (data: any, query?: {
|
|
6608
7271
|
/** @default false */
|
|
6609
7272
|
isPatch?: boolean;
|
|
6610
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7273
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6611
7274
|
/**
|
|
6612
7275
|
* No description
|
|
6613
7276
|
*
|
|
@@ -6619,7 +7282,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6619
7282
|
* @response `200` `string` Success
|
|
6620
7283
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6621
7284
|
*/
|
|
6622
|
-
updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7285
|
+
updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6623
7286
|
/**
|
|
6624
7287
|
* No description
|
|
6625
7288
|
*
|
|
@@ -6632,7 +7295,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6632
7295
|
* @response `202` `string` Accepted
|
|
6633
7296
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6634
7297
|
*/
|
|
6635
|
-
updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7298
|
+
updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6636
7299
|
/**
|
|
6637
7300
|
* No description
|
|
6638
7301
|
*
|
|
@@ -6643,7 +7306,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6643
7306
|
* @secure
|
|
6644
7307
|
* @response `200` `(DocumentData)[]` Success
|
|
6645
7308
|
*/
|
|
6646
|
-
getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any>>;
|
|
7309
|
+
getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any, {}>>;
|
|
6647
7310
|
/**
|
|
6648
7311
|
* No description
|
|
6649
7312
|
*
|
|
@@ -6657,7 +7320,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6657
7320
|
getLoanDocumentContent: (loanId: string, documentId: string, query?: {
|
|
6658
7321
|
/** @default "base64" */
|
|
6659
7322
|
contentType?: string;
|
|
6660
|
-
}, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7323
|
+
}, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6661
7324
|
/**
|
|
6662
7325
|
* No description
|
|
6663
7326
|
*
|
|
@@ -6668,7 +7331,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6668
7331
|
* @secure
|
|
6669
7332
|
* @response `204` `void` No Content
|
|
6670
7333
|
*/
|
|
6671
|
-
getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7334
|
+
getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6672
7335
|
/**
|
|
6673
7336
|
* No description
|
|
6674
7337
|
*
|
|
@@ -6679,7 +7342,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6679
7342
|
* @secure
|
|
6680
7343
|
* @response `200` `(PreliminaryCondition)[]` Success
|
|
6681
7344
|
*/
|
|
6682
|
-
getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any>>;
|
|
7345
|
+
getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any, {}>>;
|
|
6683
7346
|
/**
|
|
6684
7347
|
* No description
|
|
6685
7348
|
*
|
|
@@ -6690,7 +7353,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6690
7353
|
* @secure
|
|
6691
7354
|
* @response `200` `(UnderwritingCondition)[]` Success
|
|
6692
7355
|
*/
|
|
6693
|
-
getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any>>;
|
|
7356
|
+
getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any, {}>>;
|
|
6694
7357
|
/**
|
|
6695
7358
|
* No description
|
|
6696
7359
|
*
|
|
@@ -6701,7 +7364,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6701
7364
|
* @secure
|
|
6702
7365
|
* @response `200` `string` Success
|
|
6703
7366
|
*/
|
|
6704
|
-
getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7367
|
+
getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6705
7368
|
/**
|
|
6706
7369
|
* No description
|
|
6707
7370
|
*
|
|
@@ -6713,7 +7376,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6713
7376
|
* @secure
|
|
6714
7377
|
* @response `200` `DocumentDataRequest` Success
|
|
6715
7378
|
*/
|
|
6716
|
-
createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
|
|
7379
|
+
createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
|
|
6717
7380
|
/**
|
|
6718
7381
|
* No description
|
|
6719
7382
|
*
|
|
@@ -6730,7 +7393,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6730
7393
|
createEditDraftForLoan: (loanId: string, query?: {
|
|
6731
7394
|
/** @default false */
|
|
6732
7395
|
isCoBorrower?: boolean;
|
|
6733
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7396
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
6734
7397
|
/**
|
|
6735
7398
|
* No description
|
|
6736
7399
|
*
|
|
@@ -6746,7 +7409,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6746
7409
|
file?: File;
|
|
6747
7410
|
/** @format int32 */
|
|
6748
7411
|
weight?: number;
|
|
6749
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
|
|
7412
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
|
|
6750
7413
|
/**
|
|
6751
7414
|
* No description
|
|
6752
7415
|
*
|
|
@@ -6757,7 +7420,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6757
7420
|
* @secure
|
|
6758
7421
|
* @response `200` `ListingFile` Success
|
|
6759
7422
|
*/
|
|
6760
|
-
updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
|
|
7423
|
+
updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
|
|
6761
7424
|
/**
|
|
6762
7425
|
* No description
|
|
6763
7426
|
*
|
|
@@ -6768,7 +7431,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6768
7431
|
* @secure
|
|
6769
7432
|
* @response `204` `Listing` No Content
|
|
6770
7433
|
*/
|
|
6771
|
-
removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7434
|
+
removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6772
7435
|
/**
|
|
6773
7436
|
* No description
|
|
6774
7437
|
*
|
|
@@ -6786,7 +7449,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6786
7449
|
file?: File;
|
|
6787
7450
|
/** @format int32 */
|
|
6788
7451
|
weight?: number;
|
|
6789
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any>>;
|
|
7452
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any, {}>>;
|
|
6790
7453
|
/**
|
|
6791
7454
|
* No description
|
|
6792
7455
|
*
|
|
@@ -6797,7 +7460,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6797
7460
|
* @secure
|
|
6798
7461
|
* @response `200` `(ListingPhoto)[]` Success
|
|
6799
7462
|
*/
|
|
6800
|
-
updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any>>;
|
|
7463
|
+
updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any, {}>>;
|
|
6801
7464
|
/**
|
|
6802
7465
|
* No description
|
|
6803
7466
|
*
|
|
@@ -6808,7 +7471,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6808
7471
|
* @secure
|
|
6809
7472
|
* @response `204` `Listing` No Content
|
|
6810
7473
|
*/
|
|
6811
|
-
removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7474
|
+
removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6812
7475
|
/**
|
|
6813
7476
|
* No description
|
|
6814
7477
|
*
|
|
@@ -6826,7 +7489,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6826
7489
|
pageNumber?: number;
|
|
6827
7490
|
sortBy?: string;
|
|
6828
7491
|
sortDirection?: string;
|
|
6829
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
|
|
7492
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
|
|
6830
7493
|
/**
|
|
6831
7494
|
* No description
|
|
6832
7495
|
*
|
|
@@ -6837,7 +7500,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6837
7500
|
* @secure
|
|
6838
7501
|
* @response `201` `Listing` Created
|
|
6839
7502
|
*/
|
|
6840
|
-
createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7503
|
+
createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6841
7504
|
/**
|
|
6842
7505
|
* No description
|
|
6843
7506
|
*
|
|
@@ -6848,7 +7511,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6848
7511
|
* @secure
|
|
6849
7512
|
* @response `200` `Listing` Success
|
|
6850
7513
|
*/
|
|
6851
|
-
getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7514
|
+
getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6852
7515
|
/**
|
|
6853
7516
|
* No description
|
|
6854
7517
|
*
|
|
@@ -6859,7 +7522,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6859
7522
|
* @secure
|
|
6860
7523
|
* @response `200` `Listing` Success
|
|
6861
7524
|
*/
|
|
6862
|
-
getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7525
|
+
getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6863
7526
|
/**
|
|
6864
7527
|
* No description
|
|
6865
7528
|
*
|
|
@@ -6870,7 +7533,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6870
7533
|
* @secure
|
|
6871
7534
|
* @response `200` `Listing` Success
|
|
6872
7535
|
*/
|
|
6873
|
-
replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7536
|
+
replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6874
7537
|
/**
|
|
6875
7538
|
* No description
|
|
6876
7539
|
*
|
|
@@ -6881,7 +7544,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6881
7544
|
* @secure
|
|
6882
7545
|
* @response `204` `void` No Content
|
|
6883
7546
|
*/
|
|
6884
|
-
deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7547
|
+
deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6885
7548
|
/**
|
|
6886
7549
|
* No description
|
|
6887
7550
|
*
|
|
@@ -6899,7 +7562,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6899
7562
|
pageNumber?: number;
|
|
6900
7563
|
sortBy?: string;
|
|
6901
7564
|
sortDirection?: string;
|
|
6902
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
|
|
7565
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
|
|
6903
7566
|
/**
|
|
6904
7567
|
* No description
|
|
6905
7568
|
*
|
|
@@ -6913,7 +7576,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6913
7576
|
updateListingBackgroundImage: (id: string, data: {
|
|
6914
7577
|
/** @format binary */
|
|
6915
7578
|
file?: File;
|
|
6916
|
-
}, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
7579
|
+
}, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
6917
7580
|
/**
|
|
6918
7581
|
* No description
|
|
6919
7582
|
*
|
|
@@ -6924,7 +7587,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6924
7587
|
* @secure
|
|
6925
7588
|
* @response `204` `void` No Content
|
|
6926
7589
|
*/
|
|
6927
|
-
deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7590
|
+
deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6928
7591
|
/**
|
|
6929
7592
|
* No description
|
|
6930
7593
|
*
|
|
@@ -6935,7 +7598,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6935
7598
|
* @secure
|
|
6936
7599
|
* @response `200` `File` Success
|
|
6937
7600
|
*/
|
|
6938
|
-
getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
7601
|
+
getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
6939
7602
|
/**
|
|
6940
7603
|
* No description
|
|
6941
7604
|
*
|
|
@@ -6946,7 +7609,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6946
7609
|
* @secure
|
|
6947
7610
|
* @response `200` `RunLOCalculation` Success
|
|
6948
7611
|
*/
|
|
6949
|
-
getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
|
|
7612
|
+
getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
|
|
6950
7613
|
/**
|
|
6951
7614
|
* No description
|
|
6952
7615
|
*
|
|
@@ -6959,7 +7622,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6959
7622
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6960
7623
|
* @response `423` `UnprocessableEntity` Client Error
|
|
6961
7624
|
*/
|
|
6962
|
-
runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
|
|
7625
|
+
runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
|
|
6963
7626
|
/**
|
|
6964
7627
|
* No description
|
|
6965
7628
|
*
|
|
@@ -6970,7 +7633,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6970
7633
|
* @secure
|
|
6971
7634
|
* @response `200` `LoanComparison` Success
|
|
6972
7635
|
*/
|
|
6973
|
-
getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any>>;
|
|
7636
|
+
getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any, {}>>;
|
|
6974
7637
|
/**
|
|
6975
7638
|
* No description
|
|
6976
7639
|
*
|
|
@@ -6983,7 +7646,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6983
7646
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6984
7647
|
* @response `423` `UnprocessableEntity` Client Error
|
|
6985
7648
|
*/
|
|
6986
|
-
createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any>>;
|
|
7649
|
+
createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any, {}>>;
|
|
6987
7650
|
/**
|
|
6988
7651
|
* No description
|
|
6989
7652
|
*
|
|
@@ -6994,7 +7657,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6994
7657
|
* @secure
|
|
6995
7658
|
* @response `204` `void` No Content
|
|
6996
7659
|
*/
|
|
6997
|
-
deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7660
|
+
deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6998
7661
|
/**
|
|
6999
7662
|
* No description
|
|
7000
7663
|
*
|
|
@@ -7006,7 +7669,70 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7006
7669
|
* @response `204` `void` No Content
|
|
7007
7670
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7008
7671
|
*/
|
|
7009
|
-
createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7672
|
+
createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7673
|
+
/**
|
|
7674
|
+
* No description
|
|
7675
|
+
*
|
|
7676
|
+
* @tags LoanConsents
|
|
7677
|
+
* @name ResyncLoanConsents
|
|
7678
|
+
* @summary Resync loan consents to LOS
|
|
7679
|
+
* @request POST:/api/loans/{loanId}/consents/resync
|
|
7680
|
+
* @secure
|
|
7681
|
+
* @response `204` `void` No Content
|
|
7682
|
+
* @response `404` `ProblemDetails` Not Found
|
|
7683
|
+
* @response `422` `ProblemDetails` Client Error
|
|
7684
|
+
*/
|
|
7685
|
+
resyncLoanConsents: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7686
|
+
/**
|
|
7687
|
+
* No description
|
|
7688
|
+
*
|
|
7689
|
+
* @tags LoanCustomFieldValues
|
|
7690
|
+
* @name GetLoanCustomFieldValues
|
|
7691
|
+
* @summary Get all custom field values for a loan
|
|
7692
|
+
* @request GET:/api/loans/{loanId}/custom-fields
|
|
7693
|
+
* @secure
|
|
7694
|
+
* @response `200` `(CustomFieldValue)[]` Success
|
|
7695
|
+
*/
|
|
7696
|
+
getLoanCustomFieldValues: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<CustomFieldValue[], any, {}>>;
|
|
7697
|
+
/**
|
|
7698
|
+
* No description
|
|
7699
|
+
*
|
|
7700
|
+
* @tags LoanCustomFieldValues
|
|
7701
|
+
* @name BulkSetLoanCustomFieldValues
|
|
7702
|
+
* @summary Bulk set custom field values for a loan
|
|
7703
|
+
* @request PUT:/api/loans/{loanId}/custom-fields
|
|
7704
|
+
* @secure
|
|
7705
|
+
* @response `204` `void` No Content
|
|
7706
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
7707
|
+
* @response `422` `ProblemDetails` Client Error
|
|
7708
|
+
*/
|
|
7709
|
+
bulkSetLoanCustomFieldValues: (loanId: string, data: SetCustomFieldValueRequest[], params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7710
|
+
/**
|
|
7711
|
+
* No description
|
|
7712
|
+
*
|
|
7713
|
+
* @tags LoanCustomFieldValues
|
|
7714
|
+
* @name SetLoanCustomFieldValue
|
|
7715
|
+
* @summary Set a single custom field value
|
|
7716
|
+
* @request PUT:/api/loans/{loanId}/custom-fields/{definitionId}
|
|
7717
|
+
* @secure
|
|
7718
|
+
* @response `204` `void` No Content
|
|
7719
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
7720
|
+
* @response `404` `ProblemDetails` Not Found
|
|
7721
|
+
* @response `422` `ProblemDetails` Client Error
|
|
7722
|
+
*/
|
|
7723
|
+
setLoanCustomFieldValue: (loanId: string, definitionId: string, data: SetSingleCustomFieldValueRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7724
|
+
/**
|
|
7725
|
+
* No description
|
|
7726
|
+
*
|
|
7727
|
+
* @tags LoanCustomFieldValues
|
|
7728
|
+
* @name DeleteLoanCustomFieldValue
|
|
7729
|
+
* @summary Remove a custom field value
|
|
7730
|
+
* @request DELETE:/api/loans/{loanId}/custom-fields/{definitionId}
|
|
7731
|
+
* @secure
|
|
7732
|
+
* @response `204` `void` No Content
|
|
7733
|
+
* @response `404` `ProblemDetails` Not Found
|
|
7734
|
+
*/
|
|
7735
|
+
deleteLoanCustomFieldValue: (loanId: string, definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7010
7736
|
/**
|
|
7011
7737
|
* No description
|
|
7012
7738
|
*
|
|
@@ -7017,7 +7743,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7017
7743
|
* @secure
|
|
7018
7744
|
* @response `200` `(string)[]` Success
|
|
7019
7745
|
*/
|
|
7020
|
-
getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
7746
|
+
getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
7021
7747
|
/**
|
|
7022
7748
|
* No description
|
|
7023
7749
|
*
|
|
@@ -7028,7 +7754,109 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7028
7754
|
* @secure
|
|
7029
7755
|
* @response `201` `(string)[]` Created
|
|
7030
7756
|
*/
|
|
7031
|
-
createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
7757
|
+
createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
7758
|
+
/**
|
|
7759
|
+
* No description
|
|
7760
|
+
*
|
|
7761
|
+
* @tags LoanDocumentFolders
|
|
7762
|
+
* @name GetLoanDocumentFolders
|
|
7763
|
+
* @summary Get all loan document folders for the current account
|
|
7764
|
+
* @request GET:/api/loan-document-folders
|
|
7765
|
+
* @secure
|
|
7766
|
+
* @response `200` `(LoanDocumentFolder)[]` Success
|
|
7767
|
+
*/
|
|
7768
|
+
getLoanDocumentFolders: (params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder[], any, {}>>;
|
|
7769
|
+
/**
|
|
7770
|
+
* No description
|
|
7771
|
+
*
|
|
7772
|
+
* @tags LoanDocumentFolders
|
|
7773
|
+
* @name CreateLoanDocumentFolder
|
|
7774
|
+
* @summary Create a loan document folder
|
|
7775
|
+
* @request POST:/api/loan-document-folders
|
|
7776
|
+
* @secure
|
|
7777
|
+
* @response `201` `LoanDocumentFolder` Created
|
|
7778
|
+
* @response `409` `ProblemDetails` Conflict
|
|
7779
|
+
* @response `422` `ProblemDetails` Client Error
|
|
7780
|
+
*/
|
|
7781
|
+
createLoanDocumentFolder: (data: CreateLoanDocumentFolderRequest, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder, any, {}>>;
|
|
7782
|
+
/**
|
|
7783
|
+
* No description
|
|
7784
|
+
*
|
|
7785
|
+
* @tags LoanDocumentFolders
|
|
7786
|
+
* @name GetLoanDocumentFolderById
|
|
7787
|
+
* @summary Get a loan document folder by ID
|
|
7788
|
+
* @request GET:/api/loan-document-folders/{id}
|
|
7789
|
+
* @secure
|
|
7790
|
+
* @response `200` `LoanDocumentFolder` Success
|
|
7791
|
+
* @response `404` `ProblemDetails` Not Found
|
|
7792
|
+
*/
|
|
7793
|
+
getLoanDocumentFolderById: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder, any, {}>>;
|
|
7794
|
+
/**
|
|
7795
|
+
* No description
|
|
7796
|
+
*
|
|
7797
|
+
* @tags LoanDocumentFolders
|
|
7798
|
+
* @name UpdateLoanDocumentFolder
|
|
7799
|
+
* @summary Update a loan document folder. Blocked when folder has ever been referenced, except for permission edits on the system-default Unassigned folder.
|
|
7800
|
+
* @request PUT:/api/loan-document-folders/{id}
|
|
7801
|
+
* @secure
|
|
7802
|
+
* @response `200` `LoanDocumentFolder` Success
|
|
7803
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
7804
|
+
* @response `404` `ProblemDetails` Not Found
|
|
7805
|
+
* @response `409` `ProblemDetails` Conflict
|
|
7806
|
+
* @response `422` `ProblemDetails` Client Error
|
|
7807
|
+
*/
|
|
7808
|
+
updateLoanDocumentFolder: (id: string, data: UpdateLoanDocumentFolderRequest, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder, any, {}>>;
|
|
7809
|
+
/**
|
|
7810
|
+
* No description
|
|
7811
|
+
*
|
|
7812
|
+
* @tags LoanDocumentFolders
|
|
7813
|
+
* @name DeleteLoanDocumentFolder
|
|
7814
|
+
* @summary Delete a loan document folder. Allowed only when the folder has never been referenced and is not the system-default Unassigned folder.
|
|
7815
|
+
* @request DELETE:/api/loan-document-folders/{id}
|
|
7816
|
+
* @secure
|
|
7817
|
+
* @response `204` `void` No Content
|
|
7818
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
7819
|
+
* @response `404` `ProblemDetails` Not Found
|
|
7820
|
+
* @response `409` `ProblemDetails` Conflict
|
|
7821
|
+
*/
|
|
7822
|
+
deleteLoanDocumentFolder: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7823
|
+
/**
|
|
7824
|
+
* No description
|
|
7825
|
+
*
|
|
7826
|
+
* @tags LoanDocumentFolders
|
|
7827
|
+
* @name DeactivateLoanDocumentFolder
|
|
7828
|
+
* @summary Deactivate a loan document folder. Rejected for the system-default Unassigned folder.
|
|
7829
|
+
* @request POST:/api/loan-document-folders/{id}/deactivate
|
|
7830
|
+
* @secure
|
|
7831
|
+
* @response `204` `void` No Content
|
|
7832
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
7833
|
+
* @response `404` `ProblemDetails` Not Found
|
|
7834
|
+
*/
|
|
7835
|
+
deactivateLoanDocumentFolder: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7836
|
+
/**
|
|
7837
|
+
* No description
|
|
7838
|
+
*
|
|
7839
|
+
* @tags LoanDocumentFolders
|
|
7840
|
+
* @name ReactivateLoanDocumentFolder
|
|
7841
|
+
* @summary Reactivate a loan document folder.
|
|
7842
|
+
* @request POST:/api/loan-document-folders/{id}/reactivate
|
|
7843
|
+
* @secure
|
|
7844
|
+
* @response `204` `void` No Content
|
|
7845
|
+
* @response `404` `ProblemDetails` Not Found
|
|
7846
|
+
*/
|
|
7847
|
+
reactivateLoanDocumentFolder: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7848
|
+
/**
|
|
7849
|
+
* No description
|
|
7850
|
+
*
|
|
7851
|
+
* @tags LoanDocumentFolders
|
|
7852
|
+
* @name GetLoanDocumentFolderUsage
|
|
7853
|
+
* @summary Get folder usage. Returns HasEverBeenReferenced including soft-deleted documents and tasks.
|
|
7854
|
+
* @request GET:/api/loan-document-folders/{id}/usage
|
|
7855
|
+
* @secure
|
|
7856
|
+
* @response `200` `LoanDocumentFolderUsage` Success
|
|
7857
|
+
* @response `404` `ProblemDetails` Not Found
|
|
7858
|
+
*/
|
|
7859
|
+
getLoanDocumentFolderUsage: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolderUsage, any, {}>>;
|
|
7032
7860
|
/**
|
|
7033
7861
|
* No description
|
|
7034
7862
|
*
|
|
@@ -7043,7 +7871,19 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7043
7871
|
getLoanDocument: (loanId: string, documentId: string, query?: {
|
|
7044
7872
|
/** @default false */
|
|
7045
7873
|
preview?: boolean;
|
|
7046
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7874
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
7875
|
+
/**
|
|
7876
|
+
* No description
|
|
7877
|
+
*
|
|
7878
|
+
* @tags LoanDocuments
|
|
7879
|
+
* @name GetLoanDocumentPreviews
|
|
7880
|
+
* @summary Get document previews in batch
|
|
7881
|
+
* @request POST:/api/loans/{loanId}/documents/previews
|
|
7882
|
+
* @secure
|
|
7883
|
+
* @response `200` `Record<string,string>` Success
|
|
7884
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
7885
|
+
*/
|
|
7886
|
+
getLoanDocumentPreviews: (loanId: string, data: LoanDocumentPreviewsRequest, params?: RequestParams) => Promise<AxiosResponse<Record<string, string>, any, {}>>;
|
|
7047
7887
|
/**
|
|
7048
7888
|
* No description
|
|
7049
7889
|
*
|
|
@@ -7061,21 +7901,23 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7061
7901
|
pageNumber?: number;
|
|
7062
7902
|
sortBy?: string;
|
|
7063
7903
|
sortDirection?: string;
|
|
7064
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any>>;
|
|
7904
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any, {}>>;
|
|
7065
7905
|
/**
|
|
7066
7906
|
* @description Returns all documents grouped by folder for sidebar display. Use folderNamesOnly=true to get simplified response with folder names and counts for mobile (Files array will be empty).
|
|
7067
7907
|
*
|
|
7068
7908
|
* @tags LoanDocuments
|
|
7069
|
-
* @name
|
|
7909
|
+
* @name GetLoanDocumentFolders2
|
|
7070
7910
|
* @summary Get document folder hierarchy
|
|
7071
7911
|
* @request POST:/api/loans/{loanId}/documents/folders
|
|
7912
|
+
* @originalName getLoanDocumentFolders
|
|
7913
|
+
* @duplicate
|
|
7072
7914
|
* @secure
|
|
7073
7915
|
* @response `200` `(DocumentFolder)[]` Success
|
|
7074
7916
|
*/
|
|
7075
|
-
|
|
7917
|
+
getLoanDocumentFolders2: (loanId: string, data: DocumentFoldersRequest, query?: {
|
|
7076
7918
|
/** @default false */
|
|
7077
7919
|
folderNamesOnly?: boolean;
|
|
7078
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any>>;
|
|
7920
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any, {}>>;
|
|
7079
7921
|
/**
|
|
7080
7922
|
* No description
|
|
7081
7923
|
*
|
|
@@ -7087,7 +7929,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7087
7929
|
* @response `200` `string` Success
|
|
7088
7930
|
* @response `404` `ProblemDetails` Not Found
|
|
7089
7931
|
*/
|
|
7090
|
-
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7932
|
+
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
7091
7933
|
/**
|
|
7092
7934
|
* No description
|
|
7093
7935
|
*
|
|
@@ -7105,7 +7947,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7105
7947
|
/** @format binary */
|
|
7106
7948
|
file?: File;
|
|
7107
7949
|
bucket?: string;
|
|
7108
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7950
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
7109
7951
|
/**
|
|
7110
7952
|
* No description
|
|
7111
7953
|
*
|
|
@@ -7118,7 +7960,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7118
7960
|
* @response `404` `ProblemDetails` Not Found
|
|
7119
7961
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7120
7962
|
*/
|
|
7121
|
-
retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7963
|
+
retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
7122
7964
|
/**
|
|
7123
7965
|
* No description
|
|
7124
7966
|
*
|
|
@@ -7129,7 +7971,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7129
7971
|
* @secure
|
|
7130
7972
|
* @response `200` `DocumentDataRequest` Success
|
|
7131
7973
|
*/
|
|
7132
|
-
generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
|
|
7974
|
+
generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
|
|
7133
7975
|
/**
|
|
7134
7976
|
* No description
|
|
7135
7977
|
*
|
|
@@ -7142,7 +7984,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7142
7984
|
* @response `400` `ProblemDetails` Bad Request
|
|
7143
7985
|
* @response `404` `ProblemDetails` Not Found
|
|
7144
7986
|
*/
|
|
7145
|
-
sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7987
|
+
sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7146
7988
|
/**
|
|
7147
7989
|
* @description Fetches all documents from Encompass that don't exist locally and stores them in S3
|
|
7148
7990
|
*
|
|
@@ -7154,7 +7996,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7154
7996
|
* @response `200` `DocumentSync` Success
|
|
7155
7997
|
* @response `404` `ProblemDetails` Not Found
|
|
7156
7998
|
*/
|
|
7157
|
-
syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any>>;
|
|
7999
|
+
syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any, {}>>;
|
|
7158
8000
|
/**
|
|
7159
8001
|
* @description Re-attempts to push a failed document to LOS
|
|
7160
8002
|
*
|
|
@@ -7167,7 +8009,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7167
8009
|
* @response `404` `ProblemDetails` Not Found
|
|
7168
8010
|
* @response `423` `ProblemDetails` Client Error
|
|
7169
8011
|
*/
|
|
7170
|
-
retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8012
|
+
retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7171
8013
|
/**
|
|
7172
8014
|
* No description
|
|
7173
8015
|
*
|
|
@@ -7178,7 +8020,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7178
8020
|
* @secure
|
|
7179
8021
|
* @response `201` `Draft` Created
|
|
7180
8022
|
*/
|
|
7181
|
-
createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
8023
|
+
createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7182
8024
|
/**
|
|
7183
8025
|
* No description
|
|
7184
8026
|
*
|
|
@@ -7189,7 +8031,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7189
8031
|
* @secure
|
|
7190
8032
|
* @response `200` `(DraftContent)[]` Success
|
|
7191
8033
|
*/
|
|
7192
|
-
getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any>>;
|
|
8034
|
+
getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any, {}>>;
|
|
7193
8035
|
/**
|
|
7194
8036
|
* No description
|
|
7195
8037
|
*
|
|
@@ -7200,7 +8042,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7200
8042
|
* @secure
|
|
7201
8043
|
* @response `200` `DraftContent` Success
|
|
7202
8044
|
*/
|
|
7203
|
-
getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any>>;
|
|
8045
|
+
getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any, {}>>;
|
|
7204
8046
|
/**
|
|
7205
8047
|
* No description
|
|
7206
8048
|
*
|
|
@@ -7211,7 +8053,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7211
8053
|
* @secure
|
|
7212
8054
|
* @response `200` `Draft` Success
|
|
7213
8055
|
*/
|
|
7214
|
-
replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
8056
|
+
replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7215
8057
|
/**
|
|
7216
8058
|
* No description
|
|
7217
8059
|
*
|
|
@@ -7222,7 +8064,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7222
8064
|
* @secure
|
|
7223
8065
|
* @response `204` `void` No Content
|
|
7224
8066
|
*/
|
|
7225
|
-
deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8067
|
+
deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7226
8068
|
/**
|
|
7227
8069
|
* No description
|
|
7228
8070
|
*
|
|
@@ -7240,7 +8082,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7240
8082
|
pageNumber?: number;
|
|
7241
8083
|
sortBy?: string;
|
|
7242
8084
|
sortDirection?: string;
|
|
7243
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any>>;
|
|
8085
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any, {}>>;
|
|
7244
8086
|
/**
|
|
7245
8087
|
* No description
|
|
7246
8088
|
*
|
|
@@ -7251,7 +8093,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7251
8093
|
* @secure
|
|
7252
8094
|
* @response `200` `Draft` Success
|
|
7253
8095
|
*/
|
|
7254
|
-
reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
8096
|
+
reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7255
8097
|
/**
|
|
7256
8098
|
* No description
|
|
7257
8099
|
*
|
|
@@ -7262,7 +8104,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7262
8104
|
* @secure
|
|
7263
8105
|
* @response `200` `Draft` Success
|
|
7264
8106
|
*/
|
|
7265
|
-
restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
8107
|
+
restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7266
8108
|
/**
|
|
7267
8109
|
* No description
|
|
7268
8110
|
*
|
|
@@ -7282,7 +8124,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7282
8124
|
pageNumber?: number;
|
|
7283
8125
|
sortBy?: string;
|
|
7284
8126
|
sortDirection?: string;
|
|
7285
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any>>;
|
|
8127
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any, {}>>;
|
|
7286
8128
|
/**
|
|
7287
8129
|
* No description
|
|
7288
8130
|
*
|
|
@@ -7293,7 +8135,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7293
8135
|
* @secure
|
|
7294
8136
|
* @response `201` `LoanImport` Created
|
|
7295
8137
|
*/
|
|
7296
|
-
createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
|
|
8138
|
+
createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
|
|
7297
8139
|
/**
|
|
7298
8140
|
* No description
|
|
7299
8141
|
*
|
|
@@ -7304,7 +8146,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7304
8146
|
* @secure
|
|
7305
8147
|
* @response `200` `LoanImport` Success
|
|
7306
8148
|
*/
|
|
7307
|
-
getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
|
|
8149
|
+
getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
|
|
7308
8150
|
/**
|
|
7309
8151
|
* No description
|
|
7310
8152
|
*
|
|
@@ -7322,7 +8164,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7322
8164
|
pageNumber?: number;
|
|
7323
8165
|
sortBy?: string;
|
|
7324
8166
|
sortDirection?: string;
|
|
7325
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any>>;
|
|
8167
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any, {}>>;
|
|
7326
8168
|
/**
|
|
7327
8169
|
* No description
|
|
7328
8170
|
*
|
|
@@ -7334,7 +8176,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7334
8176
|
* @response `200` `(Invite)[]` Success
|
|
7335
8177
|
* @response `404` `ProblemDetails` Not Found
|
|
7336
8178
|
*/
|
|
7337
|
-
getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
|
|
8179
|
+
getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
|
|
7338
8180
|
/**
|
|
7339
8181
|
* No description
|
|
7340
8182
|
*
|
|
@@ -7346,7 +8188,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7346
8188
|
* @response `200` `(Invite)[]` Success
|
|
7347
8189
|
* @response `404` `ProblemDetails` Not Found
|
|
7348
8190
|
*/
|
|
7349
|
-
inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
|
|
8191
|
+
inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
|
|
7350
8192
|
/**
|
|
7351
8193
|
* No description
|
|
7352
8194
|
*
|
|
@@ -7364,7 +8206,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7364
8206
|
pageNumber?: number;
|
|
7365
8207
|
sortBy?: string;
|
|
7366
8208
|
sortDirection?: string;
|
|
7367
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any>>;
|
|
8209
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any, {}>>;
|
|
7368
8210
|
/**
|
|
7369
8211
|
* No description
|
|
7370
8212
|
*
|
|
@@ -7376,7 +8218,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7376
8218
|
* @response `200` `LoanLogDetail` Success
|
|
7377
8219
|
* @response `404` `ProblemDetails` Not Found
|
|
7378
8220
|
*/
|
|
7379
|
-
getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any>>;
|
|
8221
|
+
getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any, {}>>;
|
|
7380
8222
|
/**
|
|
7381
8223
|
* No description
|
|
7382
8224
|
*
|
|
@@ -7395,7 +8237,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7395
8237
|
pageNumber?: number;
|
|
7396
8238
|
sortBy?: string;
|
|
7397
8239
|
sortDirection?: string;
|
|
7398
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
8240
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
7399
8241
|
/**
|
|
7400
8242
|
* No description
|
|
7401
8243
|
*
|
|
@@ -7413,7 +8255,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7413
8255
|
pageNumber?: number;
|
|
7414
8256
|
sortBy?: string;
|
|
7415
8257
|
sortDirection?: string;
|
|
7416
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
8258
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
7417
8259
|
/**
|
|
7418
8260
|
* No description
|
|
7419
8261
|
*
|
|
@@ -7424,7 +8266,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7424
8266
|
* @secure
|
|
7425
8267
|
* @response `200` `BranchUser` Success
|
|
7426
8268
|
*/
|
|
7427
|
-
getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
|
|
8269
|
+
getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
|
|
7428
8270
|
/**
|
|
7429
8271
|
* No description
|
|
7430
8272
|
*
|
|
@@ -7436,7 +8278,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7436
8278
|
* @response `200` `SiteConfiguration` Success
|
|
7437
8279
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7438
8280
|
*/
|
|
7439
|
-
createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8281
|
+
createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
7440
8282
|
/**
|
|
7441
8283
|
* No description
|
|
7442
8284
|
*
|
|
@@ -7447,7 +8289,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7447
8289
|
* @secure
|
|
7448
8290
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
7449
8291
|
*/
|
|
7450
|
-
getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
8292
|
+
getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
7451
8293
|
/**
|
|
7452
8294
|
* No description
|
|
7453
8295
|
*
|
|
@@ -7461,7 +8303,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7461
8303
|
*/
|
|
7462
8304
|
replaceLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
7463
8305
|
applyToChildren?: boolean;
|
|
7464
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8306
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
7465
8307
|
/**
|
|
7466
8308
|
* No description
|
|
7467
8309
|
*
|
|
@@ -7479,7 +8321,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7479
8321
|
pageNumber?: number;
|
|
7480
8322
|
sortBy?: string;
|
|
7481
8323
|
sortDirection?: string;
|
|
7482
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any>>;
|
|
8324
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any, {}>>;
|
|
7483
8325
|
/**
|
|
7484
8326
|
* No description
|
|
7485
8327
|
*
|
|
@@ -7491,7 +8333,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7491
8333
|
* @response `200` `any` Success
|
|
7492
8334
|
* @response `404` `ProblemDetails` Not Found
|
|
7493
8335
|
*/
|
|
7494
|
-
getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
8336
|
+
getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
7495
8337
|
/**
|
|
7496
8338
|
* No description
|
|
7497
8339
|
*
|
|
@@ -7503,7 +8345,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7503
8345
|
* @response `200` `LoanQueueWithData` Success
|
|
7504
8346
|
* @response `404` `ProblemDetails` Not Found
|
|
7505
8347
|
*/
|
|
7506
|
-
replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any>>;
|
|
8348
|
+
replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any, {}>>;
|
|
7507
8349
|
/**
|
|
7508
8350
|
* No description
|
|
7509
8351
|
*
|
|
@@ -7515,7 +8357,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7515
8357
|
* @response `204` `void` No Content
|
|
7516
8358
|
* @response `404` `ProblemDetails` Not Found
|
|
7517
8359
|
*/
|
|
7518
|
-
deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8360
|
+
deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7519
8361
|
/**
|
|
7520
8362
|
* No description
|
|
7521
8363
|
*
|
|
@@ -7527,7 +8369,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7527
8369
|
* @response `204` `void` No Content
|
|
7528
8370
|
* @response `404` `ProblemDetails` Not Found
|
|
7529
8371
|
*/
|
|
7530
|
-
retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8372
|
+
retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7531
8373
|
/**
|
|
7532
8374
|
* No description
|
|
7533
8375
|
*
|
|
@@ -7539,7 +8381,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7539
8381
|
* @response `200` `Loan` Success
|
|
7540
8382
|
* @response `404` `ProblemDetails` Not Found
|
|
7541
8383
|
*/
|
|
7542
|
-
getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
8384
|
+
getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
7543
8385
|
/**
|
|
7544
8386
|
* No description
|
|
7545
8387
|
*
|
|
@@ -7550,7 +8392,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7550
8392
|
* @secure
|
|
7551
8393
|
* @response `200` `GetApplications` Success
|
|
7552
8394
|
*/
|
|
7553
|
-
getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any>>;
|
|
8395
|
+
getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any, {}>>;
|
|
7554
8396
|
/**
|
|
7555
8397
|
* No description
|
|
7556
8398
|
*
|
|
@@ -7564,7 +8406,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7564
8406
|
* @response `401` `ProblemDetails` Unauthorized
|
|
7565
8407
|
* @response `403` `ProblemDetails` Forbidden
|
|
7566
8408
|
*/
|
|
7567
|
-
createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any>>;
|
|
8409
|
+
createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any, {}>>;
|
|
7568
8410
|
/**
|
|
7569
8411
|
* No description
|
|
7570
8412
|
*
|
|
@@ -7582,7 +8424,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7582
8424
|
pageNumber?: number;
|
|
7583
8425
|
sortBy?: string;
|
|
7584
8426
|
sortDirection?: string;
|
|
7585
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any>>;
|
|
8427
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any, {}>>;
|
|
7586
8428
|
/**
|
|
7587
8429
|
* No description
|
|
7588
8430
|
*
|
|
@@ -7598,7 +8440,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7598
8440
|
* @response `404` `ProblemDetails` Not Found
|
|
7599
8441
|
* @response `409` `any` Conflict
|
|
7600
8442
|
*/
|
|
7601
|
-
updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
8443
|
+
updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
7602
8444
|
/**
|
|
7603
8445
|
* No description
|
|
7604
8446
|
*
|
|
@@ -7611,7 +8453,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7611
8453
|
* @response `400` `ProblemDetails` Bad Request
|
|
7612
8454
|
* @response `404` `ProblemDetails` Not Found
|
|
7613
8455
|
*/
|
|
7614
|
-
completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8456
|
+
completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7615
8457
|
/**
|
|
7616
8458
|
* No description
|
|
7617
8459
|
*
|
|
@@ -7622,7 +8464,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7622
8464
|
* @secure
|
|
7623
8465
|
* @response `200` `Loan` Success
|
|
7624
8466
|
*/
|
|
7625
|
-
importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
8467
|
+
importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
7626
8468
|
/**
|
|
7627
8469
|
* No description
|
|
7628
8470
|
*
|
|
@@ -7634,7 +8476,20 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7634
8476
|
* @response `202` `void` Accepted
|
|
7635
8477
|
* @response `404` `ProblemDetails` Not Found
|
|
7636
8478
|
*/
|
|
7637
|
-
syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8479
|
+
syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8480
|
+
/**
|
|
8481
|
+
* No description
|
|
8482
|
+
*
|
|
8483
|
+
* @tags Loans
|
|
8484
|
+
* @name TriggerAso
|
|
8485
|
+
* @summary Trigger ASO services
|
|
8486
|
+
* @request POST:/api/loans/{loanId}/aso
|
|
8487
|
+
* @secure
|
|
8488
|
+
* @response `200` `AutomatedService` Success
|
|
8489
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
8490
|
+
* @response `404` `ProblemDetails` Not Found
|
|
8491
|
+
*/
|
|
8492
|
+
triggerAso: (loanId: string, data: TriggerAsoRequest, params?: RequestParams) => Promise<AxiosResponse<AutomatedService, any, {}>>;
|
|
7638
8493
|
/**
|
|
7639
8494
|
* No description
|
|
7640
8495
|
*
|
|
@@ -7653,7 +8508,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7653
8508
|
pageNumber?: number;
|
|
7654
8509
|
sortBy?: string;
|
|
7655
8510
|
sortDirection?: string;
|
|
7656
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any>>;
|
|
8511
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any, {}>>;
|
|
7657
8512
|
/**
|
|
7658
8513
|
* No description
|
|
7659
8514
|
*
|
|
@@ -7665,7 +8520,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7665
8520
|
* @response `200` `TaskComment` Success
|
|
7666
8521
|
* @response `404` `ProblemDetails` Not Found
|
|
7667
8522
|
*/
|
|
7668
|
-
getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
8523
|
+
getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
|
|
7669
8524
|
/**
|
|
7670
8525
|
* No description
|
|
7671
8526
|
*
|
|
@@ -7677,7 +8532,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7677
8532
|
* @response `201` `TaskComment` Created
|
|
7678
8533
|
* @response `404` `ProblemDetails` Not Found
|
|
7679
8534
|
*/
|
|
7680
|
-
createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
8535
|
+
createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
|
|
7681
8536
|
/**
|
|
7682
8537
|
* No description
|
|
7683
8538
|
*
|
|
@@ -7689,7 +8544,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7689
8544
|
* @response `200` `TaskComment` Success
|
|
7690
8545
|
* @response `404` `ProblemDetails` Not Found
|
|
7691
8546
|
*/
|
|
7692
|
-
replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
8547
|
+
replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
|
|
7693
8548
|
/**
|
|
7694
8549
|
* No description
|
|
7695
8550
|
*
|
|
@@ -7701,7 +8556,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7701
8556
|
* @response `204` `void` No Content
|
|
7702
8557
|
* @response `404` `ProblemDetails` Not Found
|
|
7703
8558
|
*/
|
|
7704
|
-
deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8559
|
+
deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7705
8560
|
/**
|
|
7706
8561
|
* No description
|
|
7707
8562
|
*
|
|
@@ -7719,7 +8574,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7719
8574
|
/** @format binary */
|
|
7720
8575
|
file?: File;
|
|
7721
8576
|
bucket?: string;
|
|
7722
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8577
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7723
8578
|
/**
|
|
7724
8579
|
* No description
|
|
7725
8580
|
*
|
|
@@ -7731,7 +8586,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7731
8586
|
* @response `204` `UserLoanTask` No Content
|
|
7732
8587
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7733
8588
|
*/
|
|
7734
|
-
createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8589
|
+
createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7735
8590
|
/**
|
|
7736
8591
|
* No description
|
|
7737
8592
|
*
|
|
@@ -7743,11 +8598,54 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7743
8598
|
* @response `204` `void` No Content
|
|
7744
8599
|
* @response `404` `ProblemDetails` Not Found
|
|
7745
8600
|
*/
|
|
7746
|
-
sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8601
|
+
sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7747
8602
|
/**
|
|
7748
8603
|
* No description
|
|
7749
8604
|
*
|
|
8605
|
+
* @tags LoanTaskNotifications
|
|
8606
|
+
* @name SendLoanTaskReminder
|
|
8607
|
+
* @summary Send Loan Task Reminder
|
|
8608
|
+
* @request POST:/api/loans/{loanID}/tasks/reminders
|
|
8609
|
+
* @secure
|
|
8610
|
+
* @response `204` `void` No Content
|
|
8611
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
8612
|
+
* @response `404` `ProblemDetails` Not Found
|
|
8613
|
+
*/
|
|
8614
|
+
sendLoanTaskReminder: (loanId: string, data: SendLoanTaskReminderRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8615
|
+
/**
|
|
8616
|
+
* @description Search tasks across all loans
|
|
8617
|
+
*
|
|
8618
|
+
* @tags LoanTasks
|
|
8619
|
+
* @name SearchLoanTasks
|
|
8620
|
+
* @summary Search
|
|
8621
|
+
* @request POST:/api/loans/tasks/search
|
|
8622
|
+
* @secure
|
|
8623
|
+
* @response `200` `UserLoanTaskPaginated` Success
|
|
8624
|
+
*/
|
|
8625
|
+
searchLoanTasks: (data: LoanTaskSearchRequest, query?: {
|
|
8626
|
+
/** @format int32 */
|
|
8627
|
+
pageSize?: number;
|
|
8628
|
+
/** @format int32 */
|
|
8629
|
+
pageNumber?: number;
|
|
8630
|
+
sortBy?: string;
|
|
8631
|
+
sortDirection?: string;
|
|
8632
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTaskPaginated, any, {}>>;
|
|
8633
|
+
/**
|
|
8634
|
+
* @description Returns task counts grouped by status for loans accessible to the current user based on their role
|
|
8635
|
+
*
|
|
7750
8636
|
* @tags LoanTasks
|
|
8637
|
+
* @name SearchLoanTasksSummary
|
|
8638
|
+
* @summary Search Summary
|
|
8639
|
+
* @request POST:/api/loans/tasks/search/summary
|
|
8640
|
+
* @secure
|
|
8641
|
+
* @response `200` `(LoanTaskStatusSummary)[]` Success
|
|
8642
|
+
* @response `422` `UnprocessableEntity` Client Error
|
|
8643
|
+
*/
|
|
8644
|
+
searchLoanTasksSummary: (data: LoanTaskSearchRequest, params?: RequestParams) => Promise<AxiosResponse<LoanTaskStatusSummary[], any, {}>>;
|
|
8645
|
+
/**
|
|
8646
|
+
* No description
|
|
8647
|
+
*
|
|
8648
|
+
* @tags LoanTasksForSingleLoan
|
|
7751
8649
|
* @name GetLoanTasks
|
|
7752
8650
|
* @summary Get All
|
|
7753
8651
|
* @request GET:/api/loans/{loanID}/tasks
|
|
@@ -7755,11 +8653,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7755
8653
|
* @response `200` `(UserLoanTask)[]` Success
|
|
7756
8654
|
* @response `404` `ProblemDetails` Not Found
|
|
7757
8655
|
*/
|
|
7758
|
-
getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
8656
|
+
getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
7759
8657
|
/**
|
|
7760
8658
|
* No description
|
|
7761
8659
|
*
|
|
7762
|
-
* @tags
|
|
8660
|
+
* @tags LoanTasksForSingleLoan
|
|
7763
8661
|
* @name GetLoanTask
|
|
7764
8662
|
* @summary Get by ID
|
|
7765
8663
|
* @request GET:/api/loans/{loanID}/tasks/{id}
|
|
@@ -7767,11 +8665,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7767
8665
|
* @response `200` `UserLoanTask` Success
|
|
7768
8666
|
* @response `404` `ProblemDetails` Not Found
|
|
7769
8667
|
*/
|
|
7770
|
-
getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8668
|
+
getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7771
8669
|
/**
|
|
7772
8670
|
* @description Get the difference between the current loan tasks and the tasks generated by business rules
|
|
7773
8671
|
*
|
|
7774
|
-
* @tags
|
|
8672
|
+
* @tags LoanTasksForSingleLoan
|
|
7775
8673
|
* @name GetLoanTaskDifference
|
|
7776
8674
|
* @summary Get Difference
|
|
7777
8675
|
* @request GET:/api/loans/{loanID}/tasks/diff
|
|
@@ -7779,11 +8677,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7779
8677
|
* @response `200` `(UserLoanTask)[]` Success
|
|
7780
8678
|
* @response `404` `ProblemDetails` Not Found
|
|
7781
8679
|
*/
|
|
7782
|
-
getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
8680
|
+
getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
7783
8681
|
/**
|
|
7784
8682
|
* No description
|
|
7785
8683
|
*
|
|
7786
|
-
* @tags
|
|
8684
|
+
* @tags LoanTasksForSingleLoan
|
|
7787
8685
|
* @name CreateLoanTask
|
|
7788
8686
|
* @summary Create
|
|
7789
8687
|
* @request POST:/api/loans/{loanID}/tasks/{taskID}
|
|
@@ -7791,11 +8689,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7791
8689
|
* @response `201` `UserLoanTask` Created
|
|
7792
8690
|
* @response `404` `ProblemDetails` Not Found
|
|
7793
8691
|
*/
|
|
7794
|
-
createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8692
|
+
createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7795
8693
|
/**
|
|
7796
8694
|
* No description
|
|
7797
8695
|
*
|
|
7798
|
-
* @tags
|
|
8696
|
+
* @tags LoanTasksForSingleLoan
|
|
7799
8697
|
* @name ImportLoanTask
|
|
7800
8698
|
* @summary Import
|
|
7801
8699
|
* @request POST:/api/loans/{loanID}/tasks/import
|
|
@@ -7803,11 +8701,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7803
8701
|
* @response `201` `(UserLoanTask)[]` Created
|
|
7804
8702
|
* @response `404` `ProblemDetails` Not Found
|
|
7805
8703
|
*/
|
|
7806
|
-
importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
8704
|
+
importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
7807
8705
|
/**
|
|
7808
8706
|
* No description
|
|
7809
8707
|
*
|
|
7810
|
-
* @tags
|
|
8708
|
+
* @tags LoanTasksForSingleLoan
|
|
7811
8709
|
* @name ReplaceLoanTask
|
|
7812
8710
|
* @summary Replace
|
|
7813
8711
|
* @request PUT:/api/loans/{loanID}/tasks/{userLoanTaskID}
|
|
@@ -7815,11 +8713,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7815
8713
|
* @response `200` `UserLoanTask` Success
|
|
7816
8714
|
* @response `404` `ProblemDetails` Not Found
|
|
7817
8715
|
*/
|
|
7818
|
-
replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8716
|
+
replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7819
8717
|
/**
|
|
7820
8718
|
* No description
|
|
7821
8719
|
*
|
|
7822
|
-
* @tags
|
|
8720
|
+
* @tags LoanTasksForSingleLoan
|
|
7823
8721
|
* @name DeleteLoanTask
|
|
7824
8722
|
* @summary Delete
|
|
7825
8723
|
* @request DELETE:/api/loans/{loanID}/tasks/{userLoanTaskID}
|
|
@@ -7827,7 +8725,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7827
8725
|
* @response `204` `void` No Content
|
|
7828
8726
|
* @response `404` `ProblemDetails` Not Found
|
|
7829
8727
|
*/
|
|
7830
|
-
deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8728
|
+
deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7831
8729
|
/**
|
|
7832
8730
|
* No description
|
|
7833
8731
|
*
|
|
@@ -7840,7 +8738,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7840
8738
|
* @response `404` `ProblemDetails` Not Found
|
|
7841
8739
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7842
8740
|
*/
|
|
7843
|
-
createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8741
|
+
createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7844
8742
|
/**
|
|
7845
8743
|
* No description
|
|
7846
8744
|
*
|
|
@@ -7850,8 +8748,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7850
8748
|
* @request GET:/api/loans/{loanId}/users/{userId}/consents
|
|
7851
8749
|
* @secure
|
|
7852
8750
|
* @response `200` `(UserLoanConsent)[]` Success
|
|
8751
|
+
* @response `403` `ProblemDetails` Forbidden
|
|
7853
8752
|
*/
|
|
7854
|
-
getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any>>;
|
|
8753
|
+
getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any, {}>>;
|
|
7855
8754
|
/**
|
|
7856
8755
|
* No description
|
|
7857
8756
|
*
|
|
@@ -7862,7 +8761,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7862
8761
|
* @secure
|
|
7863
8762
|
* @response `200` `LoanUser` Success
|
|
7864
8763
|
*/
|
|
7865
|
-
getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
8764
|
+
getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
7866
8765
|
/**
|
|
7867
8766
|
* No description
|
|
7868
8767
|
*
|
|
@@ -7873,7 +8772,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7873
8772
|
* @secure
|
|
7874
8773
|
* @response `201` `LoanUser` Created
|
|
7875
8774
|
*/
|
|
7876
|
-
addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
8775
|
+
addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
7877
8776
|
/**
|
|
7878
8777
|
* No description
|
|
7879
8778
|
*
|
|
@@ -7884,7 +8783,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7884
8783
|
* @secure
|
|
7885
8784
|
* @response `204` `LoanUser` No Content
|
|
7886
8785
|
*/
|
|
7887
|
-
removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
8786
|
+
removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
7888
8787
|
/**
|
|
7889
8788
|
* No description
|
|
7890
8789
|
*
|
|
@@ -7895,7 +8794,25 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7895
8794
|
* @secure
|
|
7896
8795
|
* @response `204` `void` No Content
|
|
7897
8796
|
*/
|
|
7898
|
-
sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8797
|
+
sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8798
|
+
/**
|
|
8799
|
+
* No description
|
|
8800
|
+
*
|
|
8801
|
+
* @tags LosOperationTracking
|
|
8802
|
+
* @name SearchLosOperationTracking
|
|
8803
|
+
* @summary Search LOS operation tracking
|
|
8804
|
+
* @request POST:/api/los-operation-tracking/search
|
|
8805
|
+
* @secure
|
|
8806
|
+
* @response `200` `LosOperationTrackingPaginated` Success
|
|
8807
|
+
*/
|
|
8808
|
+
searchLosOperationTracking: (data: LosOperationTrackingSearchCriteria, query?: {
|
|
8809
|
+
/** @format int32 */
|
|
8810
|
+
pageSize?: number;
|
|
8811
|
+
/** @format int32 */
|
|
8812
|
+
pageNumber?: number;
|
|
8813
|
+
sortBy?: string;
|
|
8814
|
+
sortDirection?: string;
|
|
8815
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LosOperationTrackingPaginated, any, {}>>;
|
|
7899
8816
|
/**
|
|
7900
8817
|
* No description
|
|
7901
8818
|
*
|
|
@@ -7906,7 +8823,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7906
8823
|
* @secure
|
|
7907
8824
|
* @response `200` `(MilestoneConfiguration)[]` Success
|
|
7908
8825
|
*/
|
|
7909
|
-
getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any>>;
|
|
8826
|
+
getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any, {}>>;
|
|
7910
8827
|
/**
|
|
7911
8828
|
* No description
|
|
7912
8829
|
*
|
|
@@ -7918,7 +8835,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7918
8835
|
* @response `201` `MilestoneConfiguration` Created
|
|
7919
8836
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7920
8837
|
*/
|
|
7921
|
-
createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
8838
|
+
createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
7922
8839
|
/**
|
|
7923
8840
|
* No description
|
|
7924
8841
|
*
|
|
@@ -7930,7 +8847,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7930
8847
|
* @response `200` `MilestoneConfiguration` Success
|
|
7931
8848
|
* @response `404` `Error` Not Found
|
|
7932
8849
|
*/
|
|
7933
|
-
getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
8850
|
+
getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
7934
8851
|
/**
|
|
7935
8852
|
* No description
|
|
7936
8853
|
*
|
|
@@ -7943,7 +8860,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7943
8860
|
* @response `404` `Error` Not Found
|
|
7944
8861
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7945
8862
|
*/
|
|
7946
|
-
replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
8863
|
+
replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
7947
8864
|
/**
|
|
7948
8865
|
* No description
|
|
7949
8866
|
*
|
|
@@ -7955,7 +8872,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7955
8872
|
* @response `204` `void` No Content
|
|
7956
8873
|
* @response `404` `Error` Not Found
|
|
7957
8874
|
*/
|
|
7958
|
-
deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8875
|
+
deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7959
8876
|
/**
|
|
7960
8877
|
* No description
|
|
7961
8878
|
*
|
|
@@ -7967,7 +8884,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7967
8884
|
* @response `200` `MonthlyPaymentCalculator` Success
|
|
7968
8885
|
* @response `422` `ProblemDetails` Client Error
|
|
7969
8886
|
*/
|
|
7970
|
-
calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any>>;
|
|
8887
|
+
calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any, {}>>;
|
|
7971
8888
|
/**
|
|
7972
8889
|
* No description
|
|
7973
8890
|
*
|
|
@@ -7979,7 +8896,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7979
8896
|
* @response `200` `AffordabilityCalculator` Success
|
|
7980
8897
|
* @response `422` `ProblemDetails` Client Error
|
|
7981
8898
|
*/
|
|
7982
|
-
calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any>>;
|
|
8899
|
+
calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any, {}>>;
|
|
7983
8900
|
/**
|
|
7984
8901
|
* No description
|
|
7985
8902
|
*
|
|
@@ -7991,7 +8908,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7991
8908
|
* @response `200` `LoanComparisonCalculator` Success
|
|
7992
8909
|
* @response `422` `ProblemDetails` Client Error
|
|
7993
8910
|
*/
|
|
7994
|
-
calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any>>;
|
|
8911
|
+
calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any, {}>>;
|
|
7995
8912
|
/**
|
|
7996
8913
|
* No description
|
|
7997
8914
|
*
|
|
@@ -8003,7 +8920,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8003
8920
|
* @response `200` `RefinanceCalculator` Success
|
|
8004
8921
|
* @response `422` `ProblemDetails` Client Error
|
|
8005
8922
|
*/
|
|
8006
|
-
calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any>>;
|
|
8923
|
+
calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any, {}>>;
|
|
8007
8924
|
/**
|
|
8008
8925
|
* No description
|
|
8009
8926
|
*
|
|
@@ -8015,7 +8932,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8015
8932
|
* @response `200` `void` Success
|
|
8016
8933
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8017
8934
|
*/
|
|
8018
|
-
sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8935
|
+
sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8019
8936
|
/**
|
|
8020
8937
|
* No description
|
|
8021
8938
|
*
|
|
@@ -8027,7 +8944,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8027
8944
|
* @response `200` `void` Success
|
|
8028
8945
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8029
8946
|
*/
|
|
8030
|
-
sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8947
|
+
sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8031
8948
|
/**
|
|
8032
8949
|
* No description
|
|
8033
8950
|
*
|
|
@@ -8040,7 +8957,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8040
8957
|
*/
|
|
8041
8958
|
getNotificationTemplates: (query?: {
|
|
8042
8959
|
showAll?: boolean;
|
|
8043
|
-
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any>>;
|
|
8960
|
+
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any, {}>>;
|
|
8044
8961
|
/**
|
|
8045
8962
|
* No description
|
|
8046
8963
|
*
|
|
@@ -8052,7 +8969,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8052
8969
|
* @response `201` `NotificationTemplate` Created
|
|
8053
8970
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8054
8971
|
*/
|
|
8055
|
-
createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8972
|
+
createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8056
8973
|
/**
|
|
8057
8974
|
* No description
|
|
8058
8975
|
*
|
|
@@ -8070,7 +8987,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8070
8987
|
pageNumber?: number;
|
|
8071
8988
|
sortBy?: string;
|
|
8072
8989
|
sortDirection?: string;
|
|
8073
|
-
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBasePaginated, any>>;
|
|
8990
|
+
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBasePaginated, any, {}>>;
|
|
8074
8991
|
/**
|
|
8075
8992
|
* No description
|
|
8076
8993
|
*
|
|
@@ -8081,7 +8998,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8081
8998
|
* @secure
|
|
8082
8999
|
* @response `200` `NotificationTemplate` Success
|
|
8083
9000
|
*/
|
|
8084
|
-
getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
9001
|
+
getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8085
9002
|
/**
|
|
8086
9003
|
* No description
|
|
8087
9004
|
*
|
|
@@ -8093,7 +9010,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8093
9010
|
* @response `200` `NotificationTemplate` Success
|
|
8094
9011
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8095
9012
|
*/
|
|
8096
|
-
replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
9013
|
+
replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8097
9014
|
/**
|
|
8098
9015
|
* No description
|
|
8099
9016
|
*
|
|
@@ -8104,7 +9021,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8104
9021
|
* @secure
|
|
8105
9022
|
* @response `204` `void` No Content
|
|
8106
9023
|
*/
|
|
8107
|
-
deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9024
|
+
deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8108
9025
|
/**
|
|
8109
9026
|
* No description
|
|
8110
9027
|
*
|
|
@@ -8115,7 +9032,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8115
9032
|
* @secure
|
|
8116
9033
|
* @response `200` `NotificationTemplate` Success
|
|
8117
9034
|
*/
|
|
8118
|
-
restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
9035
|
+
restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8119
9036
|
/**
|
|
8120
9037
|
* No description
|
|
8121
9038
|
*
|
|
@@ -8126,7 +9043,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8126
9043
|
* @secure
|
|
8127
9044
|
* @response `200` `(NotificationTemplateVersion)[]` Success
|
|
8128
9045
|
*/
|
|
8129
|
-
getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any>>;
|
|
9046
|
+
getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any, {}>>;
|
|
8130
9047
|
/**
|
|
8131
9048
|
* No description
|
|
8132
9049
|
*
|
|
@@ -8137,7 +9054,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8137
9054
|
* @secure
|
|
8138
9055
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8139
9056
|
*/
|
|
8140
|
-
createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
9057
|
+
createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8141
9058
|
/**
|
|
8142
9059
|
* No description
|
|
8143
9060
|
*
|
|
@@ -8148,7 +9065,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8148
9065
|
* @secure
|
|
8149
9066
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8150
9067
|
*/
|
|
8151
|
-
getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
9068
|
+
getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8152
9069
|
/**
|
|
8153
9070
|
* No description
|
|
8154
9071
|
*
|
|
@@ -8159,7 +9076,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8159
9076
|
* @secure
|
|
8160
9077
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8161
9078
|
*/
|
|
8162
|
-
replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
9079
|
+
replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8163
9080
|
/**
|
|
8164
9081
|
* No description
|
|
8165
9082
|
*
|
|
@@ -8170,7 +9087,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8170
9087
|
* @secure
|
|
8171
9088
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8172
9089
|
*/
|
|
8173
|
-
deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
9090
|
+
deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8174
9091
|
/**
|
|
8175
9092
|
* No description
|
|
8176
9093
|
*
|
|
@@ -8184,14 +9101,14 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8184
9101
|
getPartners: (query?: {
|
|
8185
9102
|
showAll?: boolean;
|
|
8186
9103
|
/** @default "Realtor" */
|
|
8187
|
-
role?:
|
|
9104
|
+
role?: GetPartnersParamsRoleEnum;
|
|
8188
9105
|
/** @format int32 */
|
|
8189
9106
|
pageSize?: number;
|
|
8190
9107
|
/** @format int32 */
|
|
8191
9108
|
pageNumber?: number;
|
|
8192
9109
|
sortBy?: string;
|
|
8193
9110
|
sortDirection?: string;
|
|
8194
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
9111
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
8195
9112
|
/**
|
|
8196
9113
|
* No description
|
|
8197
9114
|
*
|
|
@@ -8209,7 +9126,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8209
9126
|
pageNumber?: number;
|
|
8210
9127
|
sortBy?: string;
|
|
8211
9128
|
sortDirection?: string;
|
|
8212
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
9129
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
8213
9130
|
/**
|
|
8214
9131
|
* No description
|
|
8215
9132
|
*
|
|
@@ -8220,7 +9137,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8220
9137
|
* @secure
|
|
8221
9138
|
* @response `200` `BranchUser` Success
|
|
8222
9139
|
*/
|
|
8223
|
-
getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
|
|
9140
|
+
getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
|
|
8224
9141
|
/**
|
|
8225
9142
|
* No description
|
|
8226
9143
|
*
|
|
@@ -8232,7 +9149,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8232
9149
|
* @response `200` `SiteConfiguration` Success
|
|
8233
9150
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8234
9151
|
*/
|
|
8235
|
-
createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
9152
|
+
createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8236
9153
|
/**
|
|
8237
9154
|
* No description
|
|
8238
9155
|
*
|
|
@@ -8243,7 +9160,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8243
9160
|
* @secure
|
|
8244
9161
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
8245
9162
|
*/
|
|
8246
|
-
getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
9163
|
+
getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
8247
9164
|
/**
|
|
8248
9165
|
* No description
|
|
8249
9166
|
*
|
|
@@ -8257,7 +9174,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8257
9174
|
*/
|
|
8258
9175
|
replacePartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
8259
9176
|
applyToChildren?: boolean;
|
|
8260
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
9177
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8261
9178
|
/**
|
|
8262
9179
|
* No description
|
|
8263
9180
|
*
|
|
@@ -8268,7 +9185,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8268
9185
|
* @secure
|
|
8269
9186
|
* @response `200` `SiteConfiguration` Success
|
|
8270
9187
|
*/
|
|
8271
|
-
getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
9188
|
+
getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8272
9189
|
/**
|
|
8273
9190
|
* No description
|
|
8274
9191
|
*
|
|
@@ -8281,7 +9198,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8281
9198
|
* @response `200` `SiteConfigurationByUrl` Success
|
|
8282
9199
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8283
9200
|
*/
|
|
8284
|
-
searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
|
|
9201
|
+
searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
|
|
8285
9202
|
/**
|
|
8286
9203
|
* No description
|
|
8287
9204
|
*
|
|
@@ -8295,7 +9212,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8295
9212
|
*/
|
|
8296
9213
|
getSiteConfigurationByUrl: (query?: {
|
|
8297
9214
|
url?: string;
|
|
8298
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
|
|
9215
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
|
|
8299
9216
|
/**
|
|
8300
9217
|
* No description
|
|
8301
9218
|
*
|
|
@@ -8308,7 +9225,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8308
9225
|
* @response `200` `SiteConfiguration` Success
|
|
8309
9226
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8310
9227
|
*/
|
|
8311
|
-
searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
9228
|
+
searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8312
9229
|
/**
|
|
8313
9230
|
* No description
|
|
8314
9231
|
*
|
|
@@ -8320,7 +9237,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8320
9237
|
* @response `200` `SiteConfiguration` Success
|
|
8321
9238
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8322
9239
|
*/
|
|
8323
|
-
getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
9240
|
+
getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8324
9241
|
/**
|
|
8325
9242
|
* No description
|
|
8326
9243
|
*
|
|
@@ -8339,7 +9256,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8339
9256
|
pageNumber?: number;
|
|
8340
9257
|
sortBy?: string;
|
|
8341
9258
|
sortDirection?: string;
|
|
8342
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any>>;
|
|
9259
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any, {}>>;
|
|
8343
9260
|
/**
|
|
8344
9261
|
* No description
|
|
8345
9262
|
*
|
|
@@ -8350,7 +9267,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8350
9267
|
* @secure
|
|
8351
9268
|
* @response `200` `(AdminAccessGetForms)[]` Success
|
|
8352
9269
|
*/
|
|
8353
|
-
getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
|
|
9270
|
+
getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
|
|
8354
9271
|
/**
|
|
8355
9272
|
* No description
|
|
8356
9273
|
*
|
|
@@ -8362,7 +9279,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8362
9279
|
* @response `200` `File` Success
|
|
8363
9280
|
* @response `404` `ProblemDetails` Not Found
|
|
8364
9281
|
*/
|
|
8365
|
-
getSamlMetadata: (sSoIntegration:
|
|
9282
|
+
getSamlMetadata: (sSoIntegration: GetSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
8366
9283
|
/**
|
|
8367
9284
|
* No description
|
|
8368
9285
|
*
|
|
@@ -8373,7 +9290,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8373
9290
|
* @secure
|
|
8374
9291
|
* @response `200` `File` Success
|
|
8375
9292
|
*/
|
|
8376
|
-
createOrReplaceSamlMetadata: (sSoIntegration:
|
|
9293
|
+
createOrReplaceSamlMetadata: (sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
8377
9294
|
/**
|
|
8378
9295
|
* No description
|
|
8379
9296
|
*
|
|
@@ -8384,7 +9301,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8384
9301
|
* @secure
|
|
8385
9302
|
* @response `200` `(SiteConfigurationForm)[]` Success
|
|
8386
9303
|
*/
|
|
8387
|
-
getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any>>;
|
|
9304
|
+
getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any, {}>>;
|
|
8388
9305
|
/**
|
|
8389
9306
|
* No description
|
|
8390
9307
|
*
|
|
@@ -8396,7 +9313,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8396
9313
|
* @response `200` `SiteConfigurationForm` Success
|
|
8397
9314
|
* @response `404` `ProblemDetails` Not Found
|
|
8398
9315
|
*/
|
|
8399
|
-
getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
|
|
9316
|
+
getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
|
|
8400
9317
|
/**
|
|
8401
9318
|
* No description
|
|
8402
9319
|
*
|
|
@@ -8409,7 +9326,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8409
9326
|
* @response `409` `ProblemDetails` Conflict
|
|
8410
9327
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8411
9328
|
*/
|
|
8412
|
-
createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
|
|
9329
|
+
createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
|
|
8413
9330
|
/**
|
|
8414
9331
|
* No description
|
|
8415
9332
|
*
|
|
@@ -8420,7 +9337,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8420
9337
|
* @secure
|
|
8421
9338
|
* @response `204` `void` No Content
|
|
8422
9339
|
*/
|
|
8423
|
-
deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9340
|
+
deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8424
9341
|
/**
|
|
8425
9342
|
* No description
|
|
8426
9343
|
*
|
|
@@ -8431,7 +9348,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8431
9348
|
* @secure
|
|
8432
9349
|
* @response `200` `GetForm` Success
|
|
8433
9350
|
*/
|
|
8434
|
-
getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
|
|
9351
|
+
getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
|
|
8435
9352
|
/**
|
|
8436
9353
|
* No description
|
|
8437
9354
|
*
|
|
@@ -8445,7 +9362,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8445
9362
|
getSurveysByUsers: (query?: {
|
|
8446
9363
|
/** @format int32 */
|
|
8447
9364
|
limit?: number;
|
|
8448
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
|
|
9365
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
|
|
8449
9366
|
/**
|
|
8450
9367
|
* No description
|
|
8451
9368
|
*
|
|
@@ -8457,7 +9374,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8457
9374
|
* @response `200` `(SocialSurveyRecord)[]` Success
|
|
8458
9375
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8459
9376
|
*/
|
|
8460
|
-
getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
|
|
9377
|
+
getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
|
|
8461
9378
|
/**
|
|
8462
9379
|
* No description
|
|
8463
9380
|
*
|
|
@@ -8476,7 +9393,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8476
9393
|
pageNumber?: number;
|
|
8477
9394
|
sortBy?: string;
|
|
8478
9395
|
sortDirection?: string;
|
|
8479
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
9396
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
8480
9397
|
/**
|
|
8481
9398
|
* No description
|
|
8482
9399
|
*
|
|
@@ -8487,7 +9404,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8487
9404
|
* @secure
|
|
8488
9405
|
* @response `201` `Task` Created
|
|
8489
9406
|
*/
|
|
8490
|
-
createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
9407
|
+
createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
8491
9408
|
/**
|
|
8492
9409
|
* No description
|
|
8493
9410
|
*
|
|
@@ -8499,7 +9416,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8499
9416
|
* @response `200` `Task` Success
|
|
8500
9417
|
* @response `404` `ProblemDetails` Not Found
|
|
8501
9418
|
*/
|
|
8502
|
-
getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
9419
|
+
getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
8503
9420
|
/**
|
|
8504
9421
|
* No description
|
|
8505
9422
|
*
|
|
@@ -8511,7 +9428,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8511
9428
|
* @response `200` `void` Success
|
|
8512
9429
|
* @response `404` `ProblemDetails` Not Found
|
|
8513
9430
|
*/
|
|
8514
|
-
replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9431
|
+
replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8515
9432
|
/**
|
|
8516
9433
|
* No description
|
|
8517
9434
|
*
|
|
@@ -8523,7 +9440,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8523
9440
|
* @response `204` `void` No Content
|
|
8524
9441
|
* @response `404` `ProblemDetails` Not Found
|
|
8525
9442
|
*/
|
|
8526
|
-
deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9443
|
+
deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8527
9444
|
/**
|
|
8528
9445
|
* No description
|
|
8529
9446
|
*
|
|
@@ -8541,7 +9458,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8541
9458
|
pageNumber?: number;
|
|
8542
9459
|
sortBy?: string;
|
|
8543
9460
|
sortDirection?: string;
|
|
8544
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any>>;
|
|
9461
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any, {}>>;
|
|
8545
9462
|
/**
|
|
8546
9463
|
* No description
|
|
8547
9464
|
*
|
|
@@ -8551,7 +9468,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8551
9468
|
* @secure
|
|
8552
9469
|
* @response `200` `void` Success
|
|
8553
9470
|
*/
|
|
8554
|
-
integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9471
|
+
integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8555
9472
|
/**
|
|
8556
9473
|
* No description
|
|
8557
9474
|
*
|
|
@@ -8568,7 +9485,85 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8568
9485
|
pageNumber: number;
|
|
8569
9486
|
sortBy?: string;
|
|
8570
9487
|
sortDirection?: string;
|
|
8571
|
-
}, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any>>;
|
|
9488
|
+
}, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any, {}>>;
|
|
9489
|
+
/**
|
|
9490
|
+
* No description
|
|
9491
|
+
*
|
|
9492
|
+
* @tags TheBigPOS
|
|
9493
|
+
* @name GetEncompassCredentials
|
|
9494
|
+
* @request GET:/api/los/encompass/credentials
|
|
9495
|
+
* @secure
|
|
9496
|
+
* @response `200` `EncompassCredentialsDetail` Success
|
|
9497
|
+
* @response `204` `void` No Content
|
|
9498
|
+
*/
|
|
9499
|
+
getEncompassCredentials: (params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any, {}>>;
|
|
9500
|
+
/**
|
|
9501
|
+
* No description
|
|
9502
|
+
*
|
|
9503
|
+
* @tags TheBigPOS
|
|
9504
|
+
* @name CreateEncompassCredentials
|
|
9505
|
+
* @request POST:/api/los/encompass/credentials
|
|
9506
|
+
* @secure
|
|
9507
|
+
* @response `201` `LosCredentials` Created
|
|
9508
|
+
*/
|
|
9509
|
+
createEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<LosCredentials, any, {}>>;
|
|
9510
|
+
/**
|
|
9511
|
+
* No description
|
|
9512
|
+
*
|
|
9513
|
+
* @tags TheBigPOS
|
|
9514
|
+
* @name UpdateEncompassCredentials
|
|
9515
|
+
* @request PUT:/api/los/encompass/credentials
|
|
9516
|
+
* @secure
|
|
9517
|
+
* @response `200` `EncompassCredentialsDetail` Success
|
|
9518
|
+
*/
|
|
9519
|
+
updateEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any, {}>>;
|
|
9520
|
+
/**
|
|
9521
|
+
* No description
|
|
9522
|
+
*
|
|
9523
|
+
* @tags TheBigPOS
|
|
9524
|
+
* @name GetEncompassWebhooks
|
|
9525
|
+
* @request GET:/api/los/encompass/webhooks
|
|
9526
|
+
* @secure
|
|
9527
|
+
* @response `200` `(LosWebhook)[]` Success
|
|
9528
|
+
*/
|
|
9529
|
+
getEncompassWebhooks: (params?: RequestParams) => Promise<AxiosResponse<LosWebhook[], any, {}>>;
|
|
9530
|
+
/**
|
|
9531
|
+
* No description
|
|
9532
|
+
*
|
|
9533
|
+
* @tags TheBigPOS
|
|
9534
|
+
* @name CreateEncompassWebhook
|
|
9535
|
+
* @request POST:/api/los/encompass/webhooks
|
|
9536
|
+
* @secure
|
|
9537
|
+
* @response `201` `LosWebhook` Created
|
|
9538
|
+
*/
|
|
9539
|
+
createEncompassWebhook: (data: CreateWebhookRequest, params?: RequestParams) => Promise<AxiosResponse<LosWebhook, any, {}>>;
|
|
9540
|
+
/**
|
|
9541
|
+
* No description
|
|
9542
|
+
*
|
|
9543
|
+
* @tags TheBigPOS
|
|
9544
|
+
* @name DeleteEncompassWebhook
|
|
9545
|
+
* @request DELETE:/api/los/encompass/webhooks/{webhookId}
|
|
9546
|
+
* @secure
|
|
9547
|
+
* @response `204` `void` No Content
|
|
9548
|
+
*/
|
|
9549
|
+
deleteEncompassWebhook: (webhookId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9550
|
+
/**
|
|
9551
|
+
* No description
|
|
9552
|
+
*
|
|
9553
|
+
* @tags TheBigPOS
|
|
9554
|
+
* @name SearchLosSyncs
|
|
9555
|
+
* @request POST:/api/los/encompass/syncs/{loanId}/search
|
|
9556
|
+
* @secure
|
|
9557
|
+
* @response `200` `LosSyncPaginated` Success
|
|
9558
|
+
*/
|
|
9559
|
+
searchLosSyncs: (loanId: string, query: {
|
|
9560
|
+
/** @format int32 */
|
|
9561
|
+
pageSize: number;
|
|
9562
|
+
/** @format int32 */
|
|
9563
|
+
pageNumber: number;
|
|
9564
|
+
sortBy?: string;
|
|
9565
|
+
sortDirection?: string;
|
|
9566
|
+
}, data: LosSyncSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<LosSyncPaginated, any, {}>>;
|
|
8572
9567
|
/**
|
|
8573
9568
|
* No description
|
|
8574
9569
|
*
|
|
@@ -8580,7 +9575,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8580
9575
|
* @response `200` `UsageReport` Success
|
|
8581
9576
|
* @response `404` `ProblemDetails` Not Found
|
|
8582
9577
|
*/
|
|
8583
|
-
getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any>>;
|
|
9578
|
+
getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any, {}>>;
|
|
8584
9579
|
/**
|
|
8585
9580
|
* No description
|
|
8586
9581
|
*
|
|
@@ -8597,7 +9592,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8597
9592
|
month?: number;
|
|
8598
9593
|
/** @format int32 */
|
|
8599
9594
|
year?: number;
|
|
8600
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any>>;
|
|
9595
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any, {}>>;
|
|
8601
9596
|
/**
|
|
8602
9597
|
* No description
|
|
8603
9598
|
*
|
|
@@ -8614,7 +9609,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8614
9609
|
month?: number;
|
|
8615
9610
|
/** @format int32 */
|
|
8616
9611
|
year?: number;
|
|
8617
|
-
}, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
9612
|
+
}, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
8618
9613
|
/**
|
|
8619
9614
|
* No description
|
|
8620
9615
|
*
|
|
@@ -8625,7 +9620,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8625
9620
|
* @secure
|
|
8626
9621
|
* @response `200` `UsageReportDashboard` Success
|
|
8627
9622
|
*/
|
|
8628
|
-
getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any>>;
|
|
9623
|
+
getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any, {}>>;
|
|
8629
9624
|
/**
|
|
8630
9625
|
* No description
|
|
8631
9626
|
*
|
|
@@ -8637,7 +9632,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8637
9632
|
* @response `200` `UsageReportExecution` Success
|
|
8638
9633
|
* @response `404` `ProblemDetails` Not Found
|
|
8639
9634
|
*/
|
|
8640
|
-
getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any>>;
|
|
9635
|
+
getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any, {}>>;
|
|
8641
9636
|
/**
|
|
8642
9637
|
* No description
|
|
8643
9638
|
*
|
|
@@ -8654,7 +9649,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8654
9649
|
month?: number;
|
|
8655
9650
|
/** @format int32 */
|
|
8656
9651
|
year?: number;
|
|
8657
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any>>;
|
|
9652
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any, {}>>;
|
|
8658
9653
|
/**
|
|
8659
9654
|
* No description
|
|
8660
9655
|
*
|
|
@@ -8666,7 +9661,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8666
9661
|
* @response `201` `UserDevice` Created
|
|
8667
9662
|
* @response `400` `ProblemDetails` Bad Request
|
|
8668
9663
|
*/
|
|
8669
|
-
createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any>>;
|
|
9664
|
+
createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any, {}>>;
|
|
8670
9665
|
/**
|
|
8671
9666
|
* No description
|
|
8672
9667
|
*
|
|
@@ -8678,7 +9673,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8678
9673
|
* @response `204` `void` No Content
|
|
8679
9674
|
* @response `404` `ProblemDetails` Not Found
|
|
8680
9675
|
*/
|
|
8681
|
-
deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9676
|
+
deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8682
9677
|
/**
|
|
8683
9678
|
* No description
|
|
8684
9679
|
*
|
|
@@ -8696,7 +9691,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8696
9691
|
pageNumber?: number;
|
|
8697
9692
|
sortBy?: string;
|
|
8698
9693
|
sortDirection?: string;
|
|
8699
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any>>;
|
|
9694
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any, {}>>;
|
|
8700
9695
|
/**
|
|
8701
9696
|
* No description
|
|
8702
9697
|
*
|
|
@@ -8707,7 +9702,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8707
9702
|
* @secure
|
|
8708
9703
|
* @response `200` `UserDraft` Success
|
|
8709
9704
|
*/
|
|
8710
|
-
getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
|
|
9705
|
+
getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
|
|
8711
9706
|
/**
|
|
8712
9707
|
* No description
|
|
8713
9708
|
*
|
|
@@ -8718,7 +9713,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8718
9713
|
* @secure
|
|
8719
9714
|
* @response `200` `UserDraft` Success
|
|
8720
9715
|
*/
|
|
8721
|
-
addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
|
|
9716
|
+
addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
|
|
8722
9717
|
/**
|
|
8723
9718
|
* No description
|
|
8724
9719
|
*
|
|
@@ -8729,7 +9724,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8729
9724
|
* @secure
|
|
8730
9725
|
* @response `204` `void` No Content
|
|
8731
9726
|
*/
|
|
8732
|
-
deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9727
|
+
deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8733
9728
|
/**
|
|
8734
9729
|
* No description
|
|
8735
9730
|
*
|
|
@@ -8740,7 +9735,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8740
9735
|
* @secure
|
|
8741
9736
|
* @response `200` `(UserGroupAccessScope)[]` Success
|
|
8742
9737
|
*/
|
|
8743
|
-
getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any>>;
|
|
9738
|
+
getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any, {}>>;
|
|
8744
9739
|
/**
|
|
8745
9740
|
* No description
|
|
8746
9741
|
*
|
|
@@ -8751,7 +9746,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8751
9746
|
* @secure
|
|
8752
9747
|
* @response `200` `UserGroupAccessScope` Success
|
|
8753
9748
|
*/
|
|
8754
|
-
createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any>>;
|
|
9749
|
+
createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any, {}>>;
|
|
8755
9750
|
/**
|
|
8756
9751
|
* No description
|
|
8757
9752
|
*
|
|
@@ -8762,7 +9757,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8762
9757
|
* @secure
|
|
8763
9758
|
* @response `204` `void` No Content
|
|
8764
9759
|
*/
|
|
8765
|
-
deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9760
|
+
deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8766
9761
|
/**
|
|
8767
9762
|
* No description
|
|
8768
9763
|
*
|
|
@@ -8773,7 +9768,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8773
9768
|
* @secure
|
|
8774
9769
|
* @response `200` `(UserGroupMember)[]` Success
|
|
8775
9770
|
*/
|
|
8776
|
-
getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any>>;
|
|
9771
|
+
getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any, {}>>;
|
|
8777
9772
|
/**
|
|
8778
9773
|
* No description
|
|
8779
9774
|
*
|
|
@@ -8787,7 +9782,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8787
9782
|
createUserGroupMember: (groupId: string, data: CreateGroupMemberRequest, query?: {
|
|
8788
9783
|
/** @format uuid */
|
|
8789
9784
|
userId?: string;
|
|
8790
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any>>;
|
|
9785
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any, {}>>;
|
|
8791
9786
|
/**
|
|
8792
9787
|
* No description
|
|
8793
9788
|
*
|
|
@@ -8798,7 +9793,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8798
9793
|
* @secure
|
|
8799
9794
|
* @response `204` `void` No Content
|
|
8800
9795
|
*/
|
|
8801
|
-
deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9796
|
+
deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8802
9797
|
/**
|
|
8803
9798
|
* No description
|
|
8804
9799
|
*
|
|
@@ -8817,7 +9812,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8817
9812
|
pageNumber?: number;
|
|
8818
9813
|
sortBy?: string;
|
|
8819
9814
|
sortDirection?: string;
|
|
8820
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any>>;
|
|
9815
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any, {}>>;
|
|
8821
9816
|
/**
|
|
8822
9817
|
* No description
|
|
8823
9818
|
*
|
|
@@ -8828,7 +9823,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8828
9823
|
* @secure
|
|
8829
9824
|
* @response `200` `UserGroup` Success
|
|
8830
9825
|
*/
|
|
8831
|
-
getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
9826
|
+
getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
8832
9827
|
/**
|
|
8833
9828
|
* No description
|
|
8834
9829
|
*
|
|
@@ -8839,7 +9834,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8839
9834
|
* @secure
|
|
8840
9835
|
* @response `200` `UserGroup` Success
|
|
8841
9836
|
*/
|
|
8842
|
-
updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
9837
|
+
updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
8843
9838
|
/**
|
|
8844
9839
|
* No description
|
|
8845
9840
|
*
|
|
@@ -8850,7 +9845,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8850
9845
|
* @secure
|
|
8851
9846
|
* @response `204` `void` No Content
|
|
8852
9847
|
*/
|
|
8853
|
-
deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9848
|
+
deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8854
9849
|
/**
|
|
8855
9850
|
* No description
|
|
8856
9851
|
*
|
|
@@ -8861,7 +9856,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8861
9856
|
* @secure
|
|
8862
9857
|
* @response `201` `UserGroup` Created
|
|
8863
9858
|
*/
|
|
8864
|
-
createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
9859
|
+
createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
8865
9860
|
/**
|
|
8866
9861
|
* No description
|
|
8867
9862
|
*
|
|
@@ -8874,7 +9869,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8874
9869
|
* @response `404` `Error` Not Found
|
|
8875
9870
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8876
9871
|
*/
|
|
8877
|
-
requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9872
|
+
requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8878
9873
|
/**
|
|
8879
9874
|
* No description
|
|
8880
9875
|
*
|
|
@@ -8887,7 +9882,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8887
9882
|
* @response `404` `Error` Not Found
|
|
8888
9883
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8889
9884
|
*/
|
|
8890
|
-
allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9885
|
+
allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8891
9886
|
/**
|
|
8892
9887
|
* No description
|
|
8893
9888
|
*
|
|
@@ -8900,7 +9895,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8900
9895
|
* @response `404` `Error` Not Found
|
|
8901
9896
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8902
9897
|
*/
|
|
8903
|
-
allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9898
|
+
allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8904
9899
|
/**
|
|
8905
9900
|
* No description
|
|
8906
9901
|
*
|
|
@@ -8912,7 +9907,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8912
9907
|
* @response `204` `void` No Content
|
|
8913
9908
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8914
9909
|
*/
|
|
8915
|
-
beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9910
|
+
beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8916
9911
|
/**
|
|
8917
9912
|
* No description
|
|
8918
9913
|
*
|
|
@@ -8924,7 +9919,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8924
9919
|
* @response `204` `void` No Content
|
|
8925
9920
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8926
9921
|
*/
|
|
8927
|
-
stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9922
|
+
stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8928
9923
|
/**
|
|
8929
9924
|
* No description
|
|
8930
9925
|
*
|
|
@@ -8937,7 +9932,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8937
9932
|
* @response `404` `Error` Not Found
|
|
8938
9933
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8939
9934
|
*/
|
|
8940
|
-
forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9935
|
+
forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8941
9936
|
/**
|
|
8942
9937
|
* No description
|
|
8943
9938
|
*
|
|
@@ -8949,7 +9944,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8949
9944
|
* @response `204` `void` No Content
|
|
8950
9945
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8951
9946
|
*/
|
|
8952
|
-
extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9947
|
+
extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8953
9948
|
/**
|
|
8954
9949
|
* No description
|
|
8955
9950
|
*
|
|
@@ -8961,7 +9956,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8961
9956
|
* @response `204` `void` No Content
|
|
8962
9957
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8963
9958
|
*/
|
|
8964
|
-
inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9959
|
+
inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8965
9960
|
/**
|
|
8966
9961
|
* No description
|
|
8967
9962
|
*
|
|
@@ -8974,7 +9969,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8974
9969
|
* @response `401` `UnprocessableEntity` Unauthorized
|
|
8975
9970
|
* @response `404` `UnprocessableEntity` Not Found
|
|
8976
9971
|
*/
|
|
8977
|
-
resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9972
|
+
resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8978
9973
|
/**
|
|
8979
9974
|
* No description
|
|
8980
9975
|
*
|
|
@@ -8986,7 +9981,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8986
9981
|
* @response `200` `Invite` Success
|
|
8987
9982
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8988
9983
|
*/
|
|
8989
|
-
verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any>>;
|
|
9984
|
+
verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any, {}>>;
|
|
8990
9985
|
/**
|
|
8991
9986
|
* No description
|
|
8992
9987
|
*
|
|
@@ -8997,7 +9992,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8997
9992
|
* @secure
|
|
8998
9993
|
* @response `200` `(UserRelation)[]` Success
|
|
8999
9994
|
*/
|
|
9000
|
-
getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any>>;
|
|
9995
|
+
getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any, {}>>;
|
|
9001
9996
|
/**
|
|
9002
9997
|
* No description
|
|
9003
9998
|
*
|
|
@@ -9008,7 +10003,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9008
10003
|
* @secure
|
|
9009
10004
|
* @response `204` `void` No Content
|
|
9010
10005
|
*/
|
|
9011
|
-
createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10006
|
+
createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9012
10007
|
/**
|
|
9013
10008
|
* No description
|
|
9014
10009
|
*
|
|
@@ -9019,7 +10014,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9019
10014
|
* @secure
|
|
9020
10015
|
* @response `200` `UserRelation` Success
|
|
9021
10016
|
*/
|
|
9022
|
-
getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any>>;
|
|
10017
|
+
getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any, {}>>;
|
|
9023
10018
|
/**
|
|
9024
10019
|
* No description
|
|
9025
10020
|
*
|
|
@@ -9030,7 +10025,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9030
10025
|
* @secure
|
|
9031
10026
|
* @response `204` `void` No Content
|
|
9032
10027
|
*/
|
|
9033
|
-
deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10028
|
+
deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9034
10029
|
/**
|
|
9035
10030
|
* No description
|
|
9036
10031
|
*
|
|
@@ -9048,7 +10043,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9048
10043
|
pageNumber?: number;
|
|
9049
10044
|
sortBy?: string;
|
|
9050
10045
|
sortDirection?: string;
|
|
9051
|
-
}, params?: RequestParams) => Promise<AxiosResponse<User[], any>>;
|
|
10046
|
+
}, params?: RequestParams) => Promise<AxiosResponse<User[], any, {}>>;
|
|
9052
10047
|
/**
|
|
9053
10048
|
* No description
|
|
9054
10049
|
*
|
|
@@ -9060,7 +10055,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9060
10055
|
* @response `200` `DetailedUser` Success
|
|
9061
10056
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9062
10057
|
*/
|
|
9063
|
-
createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
10058
|
+
createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
9064
10059
|
/**
|
|
9065
10060
|
* No description
|
|
9066
10061
|
*
|
|
@@ -9078,7 +10073,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9078
10073
|
pageNumber?: number;
|
|
9079
10074
|
sortBy?: string;
|
|
9080
10075
|
sortDirection?: string;
|
|
9081
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any>>;
|
|
10076
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any, {}>>;
|
|
9082
10077
|
/**
|
|
9083
10078
|
* No description
|
|
9084
10079
|
*
|
|
@@ -9089,7 +10084,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9089
10084
|
* @secure
|
|
9090
10085
|
* @response `200` `AdminAccessUser` Success
|
|
9091
10086
|
*/
|
|
9092
|
-
getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any>>;
|
|
10087
|
+
getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any, {}>>;
|
|
9093
10088
|
/**
|
|
9094
10089
|
* No description
|
|
9095
10090
|
*
|
|
@@ -9101,7 +10096,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9101
10096
|
* @response `200` `User` Success
|
|
9102
10097
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9103
10098
|
*/
|
|
9104
|
-
signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any>>;
|
|
10099
|
+
signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any, {}>>;
|
|
9105
10100
|
/**
|
|
9106
10101
|
* No description
|
|
9107
10102
|
*
|
|
@@ -9113,7 +10108,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9113
10108
|
* @response `200` `DetailedUser` Success
|
|
9114
10109
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9115
10110
|
*/
|
|
9116
|
-
replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
10111
|
+
replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
9117
10112
|
/**
|
|
9118
10113
|
* No description
|
|
9119
10114
|
*
|
|
@@ -9127,7 +10122,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9127
10122
|
deleteUser: (id: string, query?: {
|
|
9128
10123
|
/** @default false */
|
|
9129
10124
|
permanent?: boolean;
|
|
9130
|
-
}, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10125
|
+
}, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9131
10126
|
/**
|
|
9132
10127
|
* No description
|
|
9133
10128
|
*
|
|
@@ -9138,7 +10133,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9138
10133
|
* @secure
|
|
9139
10134
|
* @response `204` `void` No Content
|
|
9140
10135
|
*/
|
|
9141
|
-
restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10136
|
+
restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9142
10137
|
/**
|
|
9143
10138
|
* No description
|
|
9144
10139
|
*
|
|
@@ -9150,7 +10145,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9150
10145
|
* @response `204` `void` No Content
|
|
9151
10146
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9152
10147
|
*/
|
|
9153
|
-
changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10148
|
+
changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9154
10149
|
/**
|
|
9155
10150
|
* No description
|
|
9156
10151
|
*
|
|
@@ -9162,7 +10157,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9162
10157
|
* @response `204` `void` No Content
|
|
9163
10158
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9164
10159
|
*/
|
|
9165
|
-
verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10160
|
+
verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9166
10161
|
/**
|
|
9167
10162
|
* No description
|
|
9168
10163
|
*
|
|
@@ -9174,7 +10169,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9174
10169
|
* @response `204` `void` No Content
|
|
9175
10170
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9176
10171
|
*/
|
|
9177
|
-
overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10172
|
+
overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9178
10173
|
/**
|
|
9179
10174
|
* No description
|
|
9180
10175
|
*
|
|
@@ -9186,7 +10181,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9186
10181
|
* @response `204` `void` No Content
|
|
9187
10182
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9188
10183
|
*/
|
|
9189
|
-
forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10184
|
+
forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9190
10185
|
/**
|
|
9191
10186
|
* No description
|
|
9192
10187
|
*
|
|
@@ -9198,7 +10193,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9198
10193
|
* @response `204` `void` No Content
|
|
9199
10194
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9200
10195
|
*/
|
|
9201
|
-
sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10196
|
+
sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9202
10197
|
/**
|
|
9203
10198
|
* No description
|
|
9204
10199
|
*
|
|
@@ -9210,7 +10205,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9210
10205
|
* @response `204` `void` No Content
|
|
9211
10206
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9212
10207
|
*/
|
|
9213
|
-
verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10208
|
+
verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9214
10209
|
/**
|
|
9215
10210
|
* No description
|
|
9216
10211
|
*
|
|
@@ -9222,7 +10217,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9222
10217
|
* @response `200` `ImpersonatedDetailedUser` Success
|
|
9223
10218
|
* @response `401` `ProblemDetails` Unauthorized
|
|
9224
10219
|
*/
|
|
9225
|
-
getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any>>;
|
|
10220
|
+
getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any, {}>>;
|
|
9226
10221
|
/**
|
|
9227
10222
|
* No description
|
|
9228
10223
|
*
|
|
@@ -9233,7 +10228,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9233
10228
|
* @secure
|
|
9234
10229
|
* @response `200` `DetailedUser` Success
|
|
9235
10230
|
*/
|
|
9236
|
-
replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
10231
|
+
replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
9237
10232
|
/**
|
|
9238
10233
|
* @description Update the phone number If changed will send a verification code to the new number
|
|
9239
10234
|
*
|
|
@@ -9244,7 +10239,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9244
10239
|
* @secure
|
|
9245
10240
|
* @response `204` `DetailedUser` No Content
|
|
9246
10241
|
*/
|
|
9247
|
-
updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
10242
|
+
updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
9248
10243
|
/**
|
|
9249
10244
|
* No description
|
|
9250
10245
|
*
|
|
@@ -9255,7 +10250,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9255
10250
|
* @secure
|
|
9256
10251
|
* @response `200` `(UserRelationship)[]` Success
|
|
9257
10252
|
*/
|
|
9258
|
-
getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any>>;
|
|
10253
|
+
getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any, {}>>;
|
|
9259
10254
|
/**
|
|
9260
10255
|
* No description
|
|
9261
10256
|
*
|
|
@@ -9266,7 +10261,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9266
10261
|
* @secure
|
|
9267
10262
|
* @response `200` `(UserRelationshipProspect)[]` Success
|
|
9268
10263
|
*/
|
|
9269
|
-
getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any>>;
|
|
10264
|
+
getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any, {}>>;
|
|
9270
10265
|
/**
|
|
9271
10266
|
* No description
|
|
9272
10267
|
*
|
|
@@ -9277,7 +10272,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9277
10272
|
* @secure
|
|
9278
10273
|
* @response `204` `void` No Content
|
|
9279
10274
|
*/
|
|
9280
|
-
deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10275
|
+
deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9281
10276
|
/**
|
|
9282
10277
|
* No description
|
|
9283
10278
|
*
|
|
@@ -9288,7 +10283,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9288
10283
|
* @secure
|
|
9289
10284
|
* @response `204` `void` No Content
|
|
9290
10285
|
*/
|
|
9291
|
-
deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10286
|
+
deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9292
10287
|
/**
|
|
9293
10288
|
* No description
|
|
9294
10289
|
*
|
|
@@ -9299,7 +10294,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9299
10294
|
* @secure
|
|
9300
10295
|
* @response `200` `GetForm` Success
|
|
9301
10296
|
*/
|
|
9302
|
-
getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
|
|
10297
|
+
getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
|
|
9303
10298
|
};
|
|
9304
10299
|
sso: {
|
|
9305
10300
|
/**
|
|
@@ -9311,6 +10306,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9311
10306
|
* @secure
|
|
9312
10307
|
* @response `200` `void` Success
|
|
9313
10308
|
*/
|
|
9314
|
-
logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10309
|
+
logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9315
10310
|
};
|
|
9316
10311
|
}
|