@matech/thebigpos-sdk 2.38.2 → 2.38.3-rc0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +41 -6
- package/.husky/pre-commit +2 -2
- package/LICENSE +21 -21
- package/README.md +73 -73
- package/dist/index.d.ts +464 -375
- package/dist/index.js +37 -13
- package/dist/index.js.map +1 -1
- package/docs/sdk_generation.md +149 -149
- package/package.json +43 -43
- package/scripts/apply-json-patch-content-type.js +56 -56
- package/src/index.ts +505 -267
- package/tsconfig.json +27 -27
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export type TaskStatus = "Outstanding" | "Pending" | "Completed" | "Rejected" |
|
|
|
4
4
|
export type SiteConfigurationType = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5
5
|
export type SigningMethod = "ConsumerConnect" | "POSF";
|
|
6
6
|
export type SSOIntegrationType = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
7
|
+
export type LosOperationStatus = "Pending" | "Success" | "Failed" | "ConfigurationError" | "PermanentFailure";
|
|
7
8
|
export type LogLevel = "None" | "Info" | "Warning" | "Error";
|
|
8
9
|
export type LoanType = "Fha" | "Conventional" | "UsdaRd" | "Va" | "Other";
|
|
9
10
|
export type LoanTrustType = "Living" | "Land" | "Testamentary" | "Other";
|
|
@@ -26,7 +27,7 @@ export type LoanNameSuffix = "Jr" | "Sr" | "II" | "III" | "IV" | "V" | "VI" | "V
|
|
|
26
27
|
export type LoanNamePrefix = "Mr" | "Mrs" | "Ms";
|
|
27
28
|
export type LoanMilitaryServiceType = "Current" | "RetiredDischargedSeparated" | "NonActivatedNationalGuard" | "SurvivingSpouse";
|
|
28
29
|
export type LoanMaritalStatus = "Married" | "Separated" | "Unmarried";
|
|
29
|
-
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";
|
|
30
31
|
export type LoanLienPosition = "First" | "Subordinate";
|
|
31
32
|
export type LoanLiabilityType = "Revolving" | "Installment" | "Open30Day" | "Lease" | "Other";
|
|
32
33
|
export type LoanLanguagePreference = "English" | "Chinese" | "Korean" | "Spanish" | "Tagalog" | "Vietnamese" | "Other";
|
|
@@ -49,9 +50,8 @@ export type FilterType = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateL
|
|
|
49
50
|
export type Environment = "Development" | "Staging" | "UAT" | "Production";
|
|
50
51
|
export type EntityType = "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Realtor";
|
|
51
52
|
export type EncompassLogOutcome = "Success" | "Failure" | "PartialSuccess";
|
|
52
|
-
export type EncompassLogOperationType = "FieldUpdate" | "
|
|
53
|
+
export type EncompassLogOperationType = "FieldUpdate" | "ConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
|
|
53
54
|
export type DraftType = "NewLoan" | "EditLoan";
|
|
54
|
-
export type ConsumerConnectAssociationStatus = "Legacy" | "Pending" | "Success" | "Failed" | "ConfigurationError" | "PermanentFailure";
|
|
55
55
|
export type ConsentType = "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
56
56
|
export type ConsentLosSyncStatus = "NotStarted" | "Failed" | "Success";
|
|
57
57
|
export type BranchType = "Mortgage" | "RealEstate";
|
|
@@ -110,7 +110,7 @@ export interface AccountBilling {
|
|
|
110
110
|
contractedRate: number;
|
|
111
111
|
}
|
|
112
112
|
export interface AccountBillingRequest {
|
|
113
|
-
billingType:
|
|
113
|
+
billingType: AccountBillingRequestBillingTypeEnum;
|
|
114
114
|
/**
|
|
115
115
|
* @format double
|
|
116
116
|
* @min 0
|
|
@@ -430,7 +430,7 @@ export interface AuditLogEntry {
|
|
|
430
430
|
/** @format uuid */
|
|
431
431
|
id: string;
|
|
432
432
|
entityType: string;
|
|
433
|
-
changeType:
|
|
433
|
+
changeType: AuditLogEntryChangeTypeEnum;
|
|
434
434
|
/** @format uuid */
|
|
435
435
|
entityId: string;
|
|
436
436
|
performedBy?: AuditLogUser | null;
|
|
@@ -647,7 +647,7 @@ export interface ConsumerConnectRetry {
|
|
|
647
647
|
/** @format uuid */
|
|
648
648
|
userLoanId: string;
|
|
649
649
|
email: string;
|
|
650
|
-
status?:
|
|
650
|
+
status?: LosOperationStatus | null;
|
|
651
651
|
success: boolean;
|
|
652
652
|
}
|
|
653
653
|
export interface ConsumerConnectStatus {
|
|
@@ -656,8 +656,8 @@ export interface ConsumerConnectStatus {
|
|
|
656
656
|
/** @format uuid */
|
|
657
657
|
userId: string;
|
|
658
658
|
email: string;
|
|
659
|
-
role:
|
|
660
|
-
status?:
|
|
659
|
+
role: ConsumerConnectStatusRoleEnum;
|
|
660
|
+
status?: LosOperationStatus | null;
|
|
661
661
|
/** @format int32 */
|
|
662
662
|
attemptCount: number;
|
|
663
663
|
/** @format date-time */
|
|
@@ -713,7 +713,7 @@ export interface CorporateSearchCriteria {
|
|
|
713
713
|
isActive?: boolean | null;
|
|
714
714
|
}
|
|
715
715
|
export interface CreateAccessScopeRequest {
|
|
716
|
-
scopeType:
|
|
716
|
+
scopeType: CreateAccessScopeRequestScopeTypeEnum;
|
|
717
717
|
/** @format uuid */
|
|
718
718
|
userId?: string | null;
|
|
719
719
|
/** @format uuid */
|
|
@@ -736,7 +736,7 @@ export interface CreateAccountRequest {
|
|
|
736
736
|
*/
|
|
737
737
|
nlmsid: number;
|
|
738
738
|
settings: AccountSettingsRequest;
|
|
739
|
-
environment:
|
|
739
|
+
environment: CreateAccountRequestEnvironmentEnum;
|
|
740
740
|
losIntegration: LOSIntegration;
|
|
741
741
|
billingSettings: AccountBillingRequest;
|
|
742
742
|
}
|
|
@@ -766,7 +766,7 @@ export interface CreateDocumentTemplateRequest {
|
|
|
766
766
|
export interface CreateGroupMemberRequest {
|
|
767
767
|
/** @format uuid */
|
|
768
768
|
userId: string;
|
|
769
|
-
loanRole:
|
|
769
|
+
loanRole: CreateGroupMemberRequestLoanRoleEnum;
|
|
770
770
|
}
|
|
771
771
|
export interface CreateInviteRequest {
|
|
772
772
|
/** @minLength 1 */
|
|
@@ -777,7 +777,7 @@ export interface CreateInviteRequest {
|
|
|
777
777
|
emailAddress: string;
|
|
778
778
|
phoneNumber?: string | null;
|
|
779
779
|
/** @deprecated */
|
|
780
|
-
relationship:
|
|
780
|
+
relationship: CreateInviteRequestRelationshipEnum;
|
|
781
781
|
loanID: string;
|
|
782
782
|
route?: string | null;
|
|
783
783
|
/** @format uuid */
|
|
@@ -799,7 +799,7 @@ export interface CreateLoanImportRequest {
|
|
|
799
799
|
* @minLength 1
|
|
800
800
|
*/
|
|
801
801
|
startDate: string;
|
|
802
|
-
importMode:
|
|
802
|
+
importMode: CreateLoanImportRequestImportModeEnum;
|
|
803
803
|
}
|
|
804
804
|
export interface CreateSession {
|
|
805
805
|
sessionId: string;
|
|
@@ -817,7 +817,7 @@ export interface CreateUserDeviceRequest {
|
|
|
817
817
|
token: string;
|
|
818
818
|
}
|
|
819
819
|
export interface CreateUserDraft {
|
|
820
|
-
loanRole:
|
|
820
|
+
loanRole: CreateUserDraftLoanRoleEnum;
|
|
821
821
|
}
|
|
822
822
|
export interface CreateUserGroupRequest {
|
|
823
823
|
/**
|
|
@@ -1114,7 +1114,7 @@ export interface Draft {
|
|
|
1114
1114
|
siteConfiguration: SiteConfigurationReduced;
|
|
1115
1115
|
/** @format uuid */
|
|
1116
1116
|
loanID?: string | null;
|
|
1117
|
-
type:
|
|
1117
|
+
type: DraftTypeEnum;
|
|
1118
1118
|
isCoBorrower: boolean;
|
|
1119
1119
|
}
|
|
1120
1120
|
export interface DraftContent {
|
|
@@ -1132,7 +1132,7 @@ export interface DraftContent {
|
|
|
1132
1132
|
siteConfiguration: SiteConfigurationReduced;
|
|
1133
1133
|
/** @format uuid */
|
|
1134
1134
|
loanID?: string | null;
|
|
1135
|
-
type:
|
|
1135
|
+
type: DraftContentTypeEnum;
|
|
1136
1136
|
isCoBorrower: boolean;
|
|
1137
1137
|
applicationPayload: any;
|
|
1138
1138
|
}
|
|
@@ -1223,7 +1223,7 @@ export interface EncompassCredentialsDetail {
|
|
|
1223
1223
|
defaultLoanOfficerUserName?: string | null;
|
|
1224
1224
|
clearStateIfUnlicensed: boolean;
|
|
1225
1225
|
baseUrl?: string | null;
|
|
1226
|
-
signingMethod:
|
|
1226
|
+
signingMethod: EncompassCredentialsDetailSigningMethodEnum;
|
|
1227
1227
|
subscriptionId?: string | null;
|
|
1228
1228
|
environment?: string | null;
|
|
1229
1229
|
}
|
|
@@ -1238,7 +1238,7 @@ export interface EncompassCredentialsRequest {
|
|
|
1238
1238
|
defaultLoanOfficerUserName?: string | null;
|
|
1239
1239
|
clearStateIfUnlicensed: boolean;
|
|
1240
1240
|
baseUrl?: string | null;
|
|
1241
|
-
signingMethod:
|
|
1241
|
+
signingMethod: EncompassCredentialsRequestSigningMethodEnum;
|
|
1242
1242
|
subscriptionId?: string | null;
|
|
1243
1243
|
environment?: string | null;
|
|
1244
1244
|
clientID?: string | null;
|
|
@@ -1296,8 +1296,8 @@ export interface EncompassRequestLog {
|
|
|
1296
1296
|
losId?: string | null;
|
|
1297
1297
|
/** @format uuid */
|
|
1298
1298
|
accountId: string;
|
|
1299
|
-
operationType:
|
|
1300
|
-
outcome:
|
|
1299
|
+
operationType: EncompassRequestLogOperationTypeEnum;
|
|
1300
|
+
outcome: EncompassRequestLogOutcomeEnum;
|
|
1301
1301
|
message: string;
|
|
1302
1302
|
endpoint?: string | null;
|
|
1303
1303
|
httpMethod?: string | null;
|
|
@@ -1348,7 +1348,7 @@ export interface FileSearchCriteria {
|
|
|
1348
1348
|
export interface FileWithBytes {
|
|
1349
1349
|
name: string;
|
|
1350
1350
|
/** @format byte */
|
|
1351
|
-
data:
|
|
1351
|
+
data: Blob;
|
|
1352
1352
|
fileName: string;
|
|
1353
1353
|
mimeType?: string | null;
|
|
1354
1354
|
extension?: string | null;
|
|
@@ -1514,7 +1514,7 @@ export interface FusionFieldDisplay {
|
|
|
1514
1514
|
fieldValue: string;
|
|
1515
1515
|
}
|
|
1516
1516
|
export interface FusionReportFilter {
|
|
1517
|
-
filterType:
|
|
1517
|
+
filterType: FusionReportFilterFilterTypeEnum;
|
|
1518
1518
|
targetField: string;
|
|
1519
1519
|
targetValue: string;
|
|
1520
1520
|
}
|
|
@@ -1628,7 +1628,7 @@ export interface GuidPatchOperation {
|
|
|
1628
1628
|
from?: string | null;
|
|
1629
1629
|
}
|
|
1630
1630
|
export interface IPAddress {
|
|
1631
|
-
addressFamily:
|
|
1631
|
+
addressFamily: IpAddressAddressFamilyEnum;
|
|
1632
1632
|
/** @format int64 */
|
|
1633
1633
|
scopeId: number;
|
|
1634
1634
|
isIPv6Multicast: boolean;
|
|
@@ -1881,7 +1881,7 @@ export interface Loan {
|
|
|
1881
1881
|
nonOwningBorrowers: LoanNonOwningBorrower[];
|
|
1882
1882
|
userLoans: UserLoan[];
|
|
1883
1883
|
contacts: LoanContact[];
|
|
1884
|
-
signingMethod:
|
|
1884
|
+
signingMethod: LoanSigningMethodEnum;
|
|
1885
1885
|
}
|
|
1886
1886
|
export interface LoanApplication {
|
|
1887
1887
|
/** @format uuid */
|
|
@@ -1936,7 +1936,7 @@ export interface LoanBorrower {
|
|
|
1936
1936
|
citizenship?: LoanCitizenship | null;
|
|
1937
1937
|
maritalStatus?: LoanMaritalStatus | null;
|
|
1938
1938
|
languagePreference?: LoanLanguagePreference | null;
|
|
1939
|
-
applicationStatus:
|
|
1939
|
+
applicationStatus: LoanBorrowerApplicationStatusEnum;
|
|
1940
1940
|
/** @format int32 */
|
|
1941
1941
|
numberOfDependents?: number | null;
|
|
1942
1942
|
isPrimaryBorrower: boolean;
|
|
@@ -2793,7 +2793,7 @@ export interface LoanContact {
|
|
|
2793
2793
|
email?: string | null;
|
|
2794
2794
|
phone?: string | null;
|
|
2795
2795
|
companyName?: string | null;
|
|
2796
|
-
role:
|
|
2796
|
+
role: LoanContactRoleEnum;
|
|
2797
2797
|
}
|
|
2798
2798
|
export interface LoanContactList {
|
|
2799
2799
|
email: string;
|
|
@@ -2919,13 +2919,13 @@ export interface LoanImport {
|
|
|
2919
2919
|
/** @format int32 */
|
|
2920
2920
|
importedCount: number;
|
|
2921
2921
|
statusMessage?: string | null;
|
|
2922
|
-
status:
|
|
2923
|
-
importMode:
|
|
2922
|
+
status: LoanImportStatusEnum;
|
|
2923
|
+
importMode: LoanImportImportModeEnum;
|
|
2924
2924
|
/** @format date-time */
|
|
2925
2925
|
createdAt?: string | null;
|
|
2926
2926
|
}
|
|
2927
2927
|
export interface LoanImportLog {
|
|
2928
|
-
level:
|
|
2928
|
+
level: LoanImportLogLevelEnum;
|
|
2929
2929
|
message: string;
|
|
2930
2930
|
/** @format date-time */
|
|
2931
2931
|
createdAt: string;
|
|
@@ -2980,8 +2980,8 @@ export interface LoanListPaginated {
|
|
|
2980
2980
|
export interface LoanLog {
|
|
2981
2981
|
/** @format uuid */
|
|
2982
2982
|
id: string;
|
|
2983
|
-
level:
|
|
2984
|
-
type:
|
|
2983
|
+
level: LoanLogLevelEnum;
|
|
2984
|
+
type: LoanLogTypeEnum;
|
|
2985
2985
|
message: string;
|
|
2986
2986
|
/** @format date-time */
|
|
2987
2987
|
createdAt: string;
|
|
@@ -2989,8 +2989,8 @@ export interface LoanLog {
|
|
|
2989
2989
|
export interface LoanLogDetail {
|
|
2990
2990
|
/** @format uuid */
|
|
2991
2991
|
id: string;
|
|
2992
|
-
level:
|
|
2993
|
-
type:
|
|
2992
|
+
level: LoanLogDetailLevelEnum;
|
|
2993
|
+
type: LoanLogDetailTypeEnum;
|
|
2994
2994
|
message: string;
|
|
2995
2995
|
/** @format date-time */
|
|
2996
2996
|
createdAt: string;
|
|
@@ -3255,6 +3255,11 @@ export interface LoanTaskSearchRequest {
|
|
|
3255
3255
|
loanId?: string | null;
|
|
3256
3256
|
loanStatus?: LoanTaskActivityFilter | null;
|
|
3257
3257
|
}
|
|
3258
|
+
export interface LoanTaskStatusSummary {
|
|
3259
|
+
status: LoanTaskStatusSummaryStatusEnum;
|
|
3260
|
+
/** @format int32 */
|
|
3261
|
+
count: number;
|
|
3262
|
+
}
|
|
3258
3263
|
export interface LoanUser {
|
|
3259
3264
|
/** @format uuid */
|
|
3260
3265
|
id: string;
|
|
@@ -3263,7 +3268,7 @@ export interface LoanUser {
|
|
|
3263
3268
|
email: string;
|
|
3264
3269
|
phone?: string | null;
|
|
3265
3270
|
role: string;
|
|
3266
|
-
loanRole:
|
|
3271
|
+
loanRole: LoanUserLoanRoleEnum;
|
|
3267
3272
|
isUser: boolean;
|
|
3268
3273
|
/** @format date-time */
|
|
3269
3274
|
createdAt: string;
|
|
@@ -3446,6 +3451,8 @@ export interface NotificationTemplate {
|
|
|
3446
3451
|
isDefault: boolean;
|
|
3447
3452
|
status: string;
|
|
3448
3453
|
useDefaultHeaderAndFooter: boolean;
|
|
3454
|
+
multipleCustomTemplates: boolean;
|
|
3455
|
+
allowedRoles?: string[] | null;
|
|
3449
3456
|
versions: NotificationTemplateVersionBase[];
|
|
3450
3457
|
}
|
|
3451
3458
|
export interface NotificationTemplateBase {
|
|
@@ -3471,6 +3478,8 @@ export interface NotificationTemplateBase {
|
|
|
3471
3478
|
isDefault: boolean;
|
|
3472
3479
|
status: string;
|
|
3473
3480
|
useDefaultHeaderAndFooter: boolean;
|
|
3481
|
+
multipleCustomTemplates: boolean;
|
|
3482
|
+
allowedRoles?: string[] | null;
|
|
3474
3483
|
}
|
|
3475
3484
|
export interface NotificationTemplateBasePaginated {
|
|
3476
3485
|
rows: NotificationTemplateBase[];
|
|
@@ -3565,7 +3574,7 @@ export interface NotificationTemplateVersionUpdateRequest {
|
|
|
3565
3574
|
}
|
|
3566
3575
|
export interface Operation {
|
|
3567
3576
|
op?: string;
|
|
3568
|
-
value?:
|
|
3577
|
+
value?: object | null;
|
|
3569
3578
|
path?: string;
|
|
3570
3579
|
}
|
|
3571
3580
|
export interface OverridePasswordRequest {
|
|
@@ -3901,7 +3910,7 @@ export interface SSOTokenRequest {
|
|
|
3901
3910
|
redirectUri: string;
|
|
3902
3911
|
}
|
|
3903
3912
|
export interface SamlMetadataRequest {
|
|
3904
|
-
ssoIntegration:
|
|
3913
|
+
ssoIntegration: SamlMetadataRequestSsoIntegrationEnum;
|
|
3905
3914
|
}
|
|
3906
3915
|
export interface SendForgotPasswordRequest {
|
|
3907
3916
|
/**
|
|
@@ -3915,6 +3924,14 @@ export interface SendLoanDocumentsRequest {
|
|
|
3915
3924
|
loanUserIDs: string[];
|
|
3916
3925
|
emailAddresses: string[];
|
|
3917
3926
|
}
|
|
3927
|
+
export interface SendLoanTaskReminderRequest {
|
|
3928
|
+
/**
|
|
3929
|
+
* @format uuid
|
|
3930
|
+
* @minLength 1
|
|
3931
|
+
*/
|
|
3932
|
+
templateId: string;
|
|
3933
|
+
userIds?: string[] | null;
|
|
3934
|
+
}
|
|
3918
3935
|
export interface SendNotificationForLoanRequest {
|
|
3919
3936
|
/** @minLength 1 */
|
|
3920
3937
|
loanID: string;
|
|
@@ -3936,7 +3953,7 @@ export interface SiteConfiguration {
|
|
|
3936
3953
|
deletedAt?: string | null;
|
|
3937
3954
|
/** @format uuid */
|
|
3938
3955
|
id: string;
|
|
3939
|
-
type:
|
|
3956
|
+
type: SiteConfigurationTypeEnum;
|
|
3940
3957
|
/** @format uuid */
|
|
3941
3958
|
entityID: string;
|
|
3942
3959
|
/** @format int32 */
|
|
@@ -4130,7 +4147,7 @@ export interface SiteConfigurationByUrl {
|
|
|
4130
4147
|
deletedAt?: string | null;
|
|
4131
4148
|
/** @format uuid */
|
|
4132
4149
|
id: string;
|
|
4133
|
-
type:
|
|
4150
|
+
type: SiteConfigurationByUrlTypeEnum;
|
|
4134
4151
|
/** @format uuid */
|
|
4135
4152
|
entityID: string;
|
|
4136
4153
|
/** @format int32 */
|
|
@@ -4341,7 +4358,7 @@ export interface SiteConfigurationForm {
|
|
|
4341
4358
|
export interface SiteConfigurationReduced {
|
|
4342
4359
|
/** @format uuid */
|
|
4343
4360
|
id: string;
|
|
4344
|
-
type:
|
|
4361
|
+
type: SiteConfigurationReducedTypeEnum;
|
|
4345
4362
|
url?: string | null;
|
|
4346
4363
|
name: string;
|
|
4347
4364
|
/** @format int64 */
|
|
@@ -4358,7 +4375,7 @@ export interface SiteConfigurationRequest {
|
|
|
4358
4375
|
entityID: string;
|
|
4359
4376
|
/** @format int32 */
|
|
4360
4377
|
entityType: number;
|
|
4361
|
-
type:
|
|
4378
|
+
type: SiteConfigurationRequestTypeEnum;
|
|
4362
4379
|
url: string;
|
|
4363
4380
|
name: string;
|
|
4364
4381
|
introduction?: string | null;
|
|
@@ -4533,7 +4550,7 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
4533
4550
|
export interface SiteConfigurationSummary {
|
|
4534
4551
|
/** @format uuid */
|
|
4535
4552
|
id: string;
|
|
4536
|
-
type:
|
|
4553
|
+
type: SiteConfigurationSummaryTypeEnum;
|
|
4537
4554
|
url?: string | null;
|
|
4538
4555
|
name: string;
|
|
4539
4556
|
/** @format int64 */
|
|
@@ -5112,7 +5129,7 @@ export interface UserDevice {
|
|
|
5112
5129
|
export interface UserDraft {
|
|
5113
5130
|
/** @format uuid */
|
|
5114
5131
|
draftID: string;
|
|
5115
|
-
role:
|
|
5132
|
+
role: UserDraftRoleEnum;
|
|
5116
5133
|
user: User;
|
|
5117
5134
|
}
|
|
5118
5135
|
export interface UserDraftPaginated {
|
|
@@ -5136,7 +5153,7 @@ export interface UserGroupAccessScope {
|
|
|
5136
5153
|
id: string;
|
|
5137
5154
|
/** @format uuid */
|
|
5138
5155
|
groupId: string;
|
|
5139
|
-
scopeType:
|
|
5156
|
+
scopeType: UserGroupAccessScopeScopeTypeEnum;
|
|
5140
5157
|
/** @format uuid */
|
|
5141
5158
|
userId?: string | null;
|
|
5142
5159
|
/** @format uuid */
|
|
@@ -5169,7 +5186,7 @@ export interface UserLoan {
|
|
|
5169
5186
|
deletedAt?: string | null;
|
|
5170
5187
|
loanID: string;
|
|
5171
5188
|
user: User;
|
|
5172
|
-
role:
|
|
5189
|
+
role: UserLoanRoleEnum;
|
|
5173
5190
|
/** @format int32 */
|
|
5174
5191
|
borrowerPair?: number | null;
|
|
5175
5192
|
/** @format int32 */
|
|
@@ -5181,10 +5198,10 @@ export interface UserLoanConsent {
|
|
|
5181
5198
|
id: string;
|
|
5182
5199
|
/** @format uuid */
|
|
5183
5200
|
userLoanID: string;
|
|
5184
|
-
type:
|
|
5201
|
+
type: UserLoanConsentTypeEnum;
|
|
5185
5202
|
providedConsent: boolean;
|
|
5186
5203
|
ipAddress?: string | null;
|
|
5187
|
-
losSyncStatus:
|
|
5204
|
+
losSyncStatus: UserLoanConsentLosSyncStatusEnum;
|
|
5188
5205
|
/** @format date-time */
|
|
5189
5206
|
createdAt: string;
|
|
5190
5207
|
}
|
|
@@ -5321,7 +5338,7 @@ export interface UserSummary {
|
|
|
5321
5338
|
id: string;
|
|
5322
5339
|
name?: string | null;
|
|
5323
5340
|
email?: string | null;
|
|
5324
|
-
role:
|
|
5341
|
+
role: UserSummaryRoleEnum;
|
|
5325
5342
|
}
|
|
5326
5343
|
export interface VerifyPasswordRequest {
|
|
5327
5344
|
/**
|
|
@@ -5354,6 +5371,54 @@ export interface Workflow {
|
|
|
5354
5371
|
tileSubtitle: string;
|
|
5355
5372
|
icon: string;
|
|
5356
5373
|
}
|
|
5374
|
+
export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
|
|
5375
|
+
export type AuditLogEntryChangeTypeEnum = "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored";
|
|
5376
|
+
export type ConsumerConnectStatusRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5377
|
+
export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
|
|
5378
|
+
export type CreateAccountRequestEnvironmentEnum = "Development" | "Staging" | "UAT" | "Production";
|
|
5379
|
+
export type CreateGroupMemberRequestLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5380
|
+
/** @deprecated */
|
|
5381
|
+
export type CreateInviteRequestRelationshipEnum = "NotApplicable" | "Spouse" | "NonSpouse";
|
|
5382
|
+
export type CreateLoanImportRequestImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5383
|
+
export type CreateUserDraftLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5384
|
+
export type DraftTypeEnum = "NewLoan" | "EditLoan";
|
|
5385
|
+
export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
|
|
5386
|
+
export type EncompassCredentialsDetailSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5387
|
+
export type EncompassCredentialsRequestSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5388
|
+
export type EncompassRequestLogOperationTypeEnum = "FieldUpdate" | "ConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
|
|
5389
|
+
export type EncompassRequestLogOutcomeEnum = "Success" | "Failure" | "PartialSuccess";
|
|
5390
|
+
export type FusionReportFilterFilterTypeEnum = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
|
|
5391
|
+
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";
|
|
5392
|
+
export type LoanSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5393
|
+
export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
|
|
5394
|
+
export type LoanContactRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5395
|
+
export type LoanImportStatusEnum = "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
|
|
5396
|
+
export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5397
|
+
export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5398
|
+
export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5399
|
+
export type LoanLogTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
|
|
5400
|
+
export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5401
|
+
export type LoanLogDetailTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
|
|
5402
|
+
export type LoanTaskStatusSummaryStatusEnum = "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
|
|
5403
|
+
export type LoanUserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5404
|
+
export type SamlMetadataRequestSsoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5405
|
+
export type SiteConfigurationTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5406
|
+
export type SiteConfigurationByUrlTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5407
|
+
export type SiteConfigurationReducedTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5408
|
+
export type SiteConfigurationRequestTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5409
|
+
export type SiteConfigurationSummaryTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5410
|
+
export type UserDraftRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5411
|
+
export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
|
|
5412
|
+
export type UserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5413
|
+
export type UserLoanConsentTypeEnum = "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
5414
|
+
export type UserLoanConsentLosSyncStatusEnum = "NotStarted" | "Failed" | "Success";
|
|
5415
|
+
export type UserSummaryRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5416
|
+
/** @default "Realtor" */
|
|
5417
|
+
export type GetPartnersParamsRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5418
|
+
export type GetSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5419
|
+
export type GetSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5420
|
+
export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5421
|
+
export type CreateOrReplaceSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5357
5422
|
import type { AxiosInstance, AxiosRequestConfig, AxiosResponse, ResponseType } from "axios";
|
|
5358
5423
|
export type QueryParamsType = Record<string | number, any>;
|
|
5359
5424
|
export interface FullRequestParams extends Omit<AxiosRequestConfig, "data" | "params" | "url" | "responseType"> {
|
|
@@ -5377,7 +5442,6 @@ export interface ApiConfig<SecurityDataType = unknown> extends Omit<AxiosRequest
|
|
|
5377
5442
|
format?: ResponseType;
|
|
5378
5443
|
}
|
|
5379
5444
|
export declare enum ContentType {
|
|
5380
|
-
JsonPatch = "application/json-patch+json",
|
|
5381
5445
|
Json = "application/json",
|
|
5382
5446
|
JsonApi = "application/vnd.api+json",
|
|
5383
5447
|
FormData = "multipart/form-data",
|
|
@@ -5399,7 +5463,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
|
|
|
5399
5463
|
}
|
|
5400
5464
|
/**
|
|
5401
5465
|
* @title The Big POS API
|
|
5402
|
-
* @version v2.38.
|
|
5466
|
+
* @version v2.38.2
|
|
5403
5467
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
5404
5468
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
5405
5469
|
*/
|
|
@@ -5413,7 +5477,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5413
5477
|
* @secure
|
|
5414
5478
|
* @response `200` `void` Success
|
|
5415
5479
|
*/
|
|
5416
|
-
postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5480
|
+
postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5417
5481
|
/**
|
|
5418
5482
|
* No description
|
|
5419
5483
|
*
|
|
@@ -5423,7 +5487,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5423
5487
|
* @secure
|
|
5424
5488
|
* @response `200` `string` Success
|
|
5425
5489
|
*/
|
|
5426
|
-
getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
5490
|
+
getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
5427
5491
|
api: {
|
|
5428
5492
|
/**
|
|
5429
5493
|
* No description
|
|
@@ -5436,7 +5500,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5436
5500
|
* @response `200` `Account` Success
|
|
5437
5501
|
* @response `404` `ProblemDetails` Not Found
|
|
5438
5502
|
*/
|
|
5439
|
-
getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5503
|
+
getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5440
5504
|
/**
|
|
5441
5505
|
* No description
|
|
5442
5506
|
*
|
|
@@ -5449,7 +5513,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5449
5513
|
* @response `404` `ProblemDetails` Not Found
|
|
5450
5514
|
* @response `422` `ProblemDetails` Client Error
|
|
5451
5515
|
*/
|
|
5452
|
-
replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5516
|
+
replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5453
5517
|
/**
|
|
5454
5518
|
* No description
|
|
5455
5519
|
*
|
|
@@ -5460,7 +5524,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5460
5524
|
* @secure
|
|
5461
5525
|
* @response `200` `SiteConfiguration` Success
|
|
5462
5526
|
*/
|
|
5463
|
-
getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5527
|
+
getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5464
5528
|
/**
|
|
5465
5529
|
* No description
|
|
5466
5530
|
*
|
|
@@ -5472,7 +5536,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5472
5536
|
* @response `200` `SiteConfiguration` Success
|
|
5473
5537
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5474
5538
|
*/
|
|
5475
|
-
updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5539
|
+
updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5476
5540
|
/**
|
|
5477
5541
|
* No description
|
|
5478
5542
|
*
|
|
@@ -5483,7 +5547,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5483
5547
|
* @secure
|
|
5484
5548
|
* @response `200` `(Account)[]` Success
|
|
5485
5549
|
*/
|
|
5486
|
-
getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any>>;
|
|
5550
|
+
getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any, {}>>;
|
|
5487
5551
|
/**
|
|
5488
5552
|
* No description
|
|
5489
5553
|
*
|
|
@@ -5495,7 +5559,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5495
5559
|
* @response `201` `Account` Created
|
|
5496
5560
|
* @response `422` `ProblemDetails` Client Error
|
|
5497
5561
|
*/
|
|
5498
|
-
createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5562
|
+
createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5499
5563
|
/**
|
|
5500
5564
|
* No description
|
|
5501
5565
|
*
|
|
@@ -5507,7 +5571,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5507
5571
|
* @response `201` `Account` Created
|
|
5508
5572
|
* @response `422` `ProblemDetails` Client Error
|
|
5509
5573
|
*/
|
|
5510
|
-
getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5574
|
+
getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5511
5575
|
/**
|
|
5512
5576
|
* No description
|
|
5513
5577
|
*
|
|
@@ -5523,7 +5587,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5523
5587
|
deleteAccount: (id: string, query?: {
|
|
5524
5588
|
/** @default false */
|
|
5525
5589
|
hardDelete?: boolean;
|
|
5526
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5590
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5527
5591
|
/**
|
|
5528
5592
|
* No description
|
|
5529
5593
|
*
|
|
@@ -5536,7 +5600,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5536
5600
|
* @response `404` `ProblemDetails` Not Found
|
|
5537
5601
|
* @response `422` `ProblemDetails` Client Error
|
|
5538
5602
|
*/
|
|
5539
|
-
updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any>>;
|
|
5603
|
+
updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any, {}>>;
|
|
5540
5604
|
/**
|
|
5541
5605
|
* No description
|
|
5542
5606
|
*
|
|
@@ -5554,7 +5618,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5554
5618
|
pageNumber?: number;
|
|
5555
5619
|
sortBy?: string;
|
|
5556
5620
|
sortDirection?: string;
|
|
5557
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any>>;
|
|
5621
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any, {}>>;
|
|
5558
5622
|
/**
|
|
5559
5623
|
* No description
|
|
5560
5624
|
*
|
|
@@ -5565,7 +5629,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5565
5629
|
* @secure
|
|
5566
5630
|
* @response `200` `(AuditEntityType)[]` Success
|
|
5567
5631
|
*/
|
|
5568
|
-
getAuditLogEntityTypes: (params?: RequestParams) => Promise<AxiosResponse<AuditEntityType[], any>>;
|
|
5632
|
+
getAuditLogEntityTypes: (params?: RequestParams) => Promise<AxiosResponse<AuditEntityType[], any, {}>>;
|
|
5569
5633
|
/**
|
|
5570
5634
|
* No description
|
|
5571
5635
|
*
|
|
@@ -5577,7 +5641,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5577
5641
|
* @response `200` `AuditLogEntry` Success
|
|
5578
5642
|
* @response `404` `ProblemDetails` Not Found
|
|
5579
5643
|
*/
|
|
5580
|
-
getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any>>;
|
|
5644
|
+
getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any, {}>>;
|
|
5581
5645
|
/**
|
|
5582
5646
|
* No description
|
|
5583
5647
|
*
|
|
@@ -5590,7 +5654,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5590
5654
|
* @response `401` `ProblemDetails` Unauthorized
|
|
5591
5655
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5592
5656
|
*/
|
|
5593
|
-
getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
5657
|
+
getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
|
|
5594
5658
|
/**
|
|
5595
5659
|
* No description
|
|
5596
5660
|
*
|
|
@@ -5602,7 +5666,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5602
5666
|
* @response `200` `ForcePasswordReset` Success
|
|
5603
5667
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5604
5668
|
*/
|
|
5605
|
-
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
|
|
5669
|
+
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any, {}>>;
|
|
5606
5670
|
/**
|
|
5607
5671
|
* No description
|
|
5608
5672
|
*
|
|
@@ -5614,7 +5678,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5614
5678
|
* @response `200` `ForcePasswordReset` Success
|
|
5615
5679
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5616
5680
|
*/
|
|
5617
|
-
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
|
|
5681
|
+
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any, {}>>;
|
|
5618
5682
|
/**
|
|
5619
5683
|
* No description
|
|
5620
5684
|
*
|
|
@@ -5626,7 +5690,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5626
5690
|
* @response `200` `Token` Success
|
|
5627
5691
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5628
5692
|
*/
|
|
5629
|
-
getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
5693
|
+
getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
|
|
5630
5694
|
/**
|
|
5631
5695
|
* No description
|
|
5632
5696
|
*
|
|
@@ -5638,7 +5702,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5638
5702
|
* @response `200` `SSOToken` Success
|
|
5639
5703
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5640
5704
|
*/
|
|
5641
|
-
getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any>>;
|
|
5705
|
+
getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any, {}>>;
|
|
5642
5706
|
/**
|
|
5643
5707
|
* No description
|
|
5644
5708
|
*
|
|
@@ -5650,7 +5714,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5650
5714
|
* @response `204` `NoContentResult` No Content
|
|
5651
5715
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5652
5716
|
*/
|
|
5653
|
-
logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any>>;
|
|
5717
|
+
logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any, {}>>;
|
|
5654
5718
|
/**
|
|
5655
5719
|
* No description
|
|
5656
5720
|
*
|
|
@@ -5669,7 +5733,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5669
5733
|
pageNumber?: number;
|
|
5670
5734
|
sortBy?: string;
|
|
5671
5735
|
sortDirection?: string;
|
|
5672
|
-
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
|
|
5736
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
|
|
5673
5737
|
/**
|
|
5674
5738
|
* No description
|
|
5675
5739
|
*
|
|
@@ -5681,7 +5745,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5681
5745
|
* @response `200` `GetBranch` Success
|
|
5682
5746
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5683
5747
|
*/
|
|
5684
|
-
createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
5748
|
+
createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
5685
5749
|
/**
|
|
5686
5750
|
* No description
|
|
5687
5751
|
*
|
|
@@ -5699,7 +5763,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5699
5763
|
pageNumber?: number;
|
|
5700
5764
|
sortBy?: string;
|
|
5701
5765
|
sortDirection?: string;
|
|
5702
|
-
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
|
|
5766
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
|
|
5703
5767
|
/**
|
|
5704
5768
|
* No description
|
|
5705
5769
|
*
|
|
@@ -5710,7 +5774,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5710
5774
|
* @secure
|
|
5711
5775
|
* @response `200` `GetBranch` Success
|
|
5712
5776
|
*/
|
|
5713
|
-
getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
5777
|
+
getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
5714
5778
|
/**
|
|
5715
5779
|
* No description
|
|
5716
5780
|
*
|
|
@@ -5722,7 +5786,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5722
5786
|
* @response `200` `GetBranch` Success
|
|
5723
5787
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5724
5788
|
*/
|
|
5725
|
-
replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
5789
|
+
replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
5726
5790
|
/**
|
|
5727
5791
|
* No description
|
|
5728
5792
|
*
|
|
@@ -5733,7 +5797,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5733
5797
|
* @secure
|
|
5734
5798
|
* @response `204` `void` No Content
|
|
5735
5799
|
*/
|
|
5736
|
-
deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5800
|
+
deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5737
5801
|
/**
|
|
5738
5802
|
* No description
|
|
5739
5803
|
*
|
|
@@ -5745,7 +5809,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5745
5809
|
* @response `204` `void` No Content
|
|
5746
5810
|
* @response `400` `ProblemDetails` Bad Request
|
|
5747
5811
|
*/
|
|
5748
|
-
restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5812
|
+
restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5749
5813
|
/**
|
|
5750
5814
|
* No description
|
|
5751
5815
|
*
|
|
@@ -5757,7 +5821,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5757
5821
|
* @response `200` `SiteConfiguration` Success
|
|
5758
5822
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5759
5823
|
*/
|
|
5760
|
-
createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5824
|
+
createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5761
5825
|
/**
|
|
5762
5826
|
* No description
|
|
5763
5827
|
*
|
|
@@ -5768,7 +5832,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5768
5832
|
* @secure
|
|
5769
5833
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
5770
5834
|
*/
|
|
5771
|
-
getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
5835
|
+
getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
5772
5836
|
/**
|
|
5773
5837
|
* No description
|
|
5774
5838
|
*
|
|
@@ -5782,7 +5846,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5782
5846
|
*/
|
|
5783
5847
|
replaceBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
5784
5848
|
applyToChildren?: boolean;
|
|
5785
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5849
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5786
5850
|
/**
|
|
5787
5851
|
* No description
|
|
5788
5852
|
*
|
|
@@ -5793,7 +5857,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5793
5857
|
* @secure
|
|
5794
5858
|
* @response `200` `(LoanOfficerPublic)[]` Success
|
|
5795
5859
|
*/
|
|
5796
|
-
getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
|
|
5860
|
+
getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any, {}>>;
|
|
5797
5861
|
/**
|
|
5798
5862
|
* No description
|
|
5799
5863
|
*
|
|
@@ -5806,7 +5870,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5806
5870
|
*/
|
|
5807
5871
|
getBusinessRules: (query?: {
|
|
5808
5872
|
showAll?: boolean;
|
|
5809
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any>>;
|
|
5873
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any, {}>>;
|
|
5810
5874
|
/**
|
|
5811
5875
|
* No description
|
|
5812
5876
|
*
|
|
@@ -5818,7 +5882,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5818
5882
|
* @response `200` `BusinessRule` Success
|
|
5819
5883
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5820
5884
|
*/
|
|
5821
|
-
createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5885
|
+
createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5822
5886
|
/**
|
|
5823
5887
|
* No description
|
|
5824
5888
|
*
|
|
@@ -5829,7 +5893,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5829
5893
|
* @secure
|
|
5830
5894
|
* @response `200` `BusinessRule` Success
|
|
5831
5895
|
*/
|
|
5832
|
-
getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5896
|
+
getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5833
5897
|
/**
|
|
5834
5898
|
* No description
|
|
5835
5899
|
*
|
|
@@ -5841,7 +5905,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5841
5905
|
* @response `200` `BusinessRule` Success
|
|
5842
5906
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5843
5907
|
*/
|
|
5844
|
-
replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5908
|
+
replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5845
5909
|
/**
|
|
5846
5910
|
* No description
|
|
5847
5911
|
*
|
|
@@ -5852,7 +5916,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5852
5916
|
* @secure
|
|
5853
5917
|
* @response `204` `void` No Content
|
|
5854
5918
|
*/
|
|
5855
|
-
deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5919
|
+
deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5856
5920
|
/**
|
|
5857
5921
|
* No description
|
|
5858
5922
|
*
|
|
@@ -5863,7 +5927,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5863
5927
|
* @secure
|
|
5864
5928
|
* @response `200` `BusinessRule` Success
|
|
5865
5929
|
*/
|
|
5866
|
-
restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5930
|
+
restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5867
5931
|
/**
|
|
5868
5932
|
* @description Returns closed loan counts per account within the specified date range, including POS vs non-POS breakdown and utilization ratios.
|
|
5869
5933
|
*
|
|
@@ -5874,7 +5938,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5874
5938
|
* @secure
|
|
5875
5939
|
* @response `200` `ClosedLoansReport` Success
|
|
5876
5940
|
*/
|
|
5877
|
-
getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any>>;
|
|
5941
|
+
getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any, {}>>;
|
|
5878
5942
|
/**
|
|
5879
5943
|
* No description
|
|
5880
5944
|
*
|
|
@@ -5885,7 +5949,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5885
5949
|
* @secure
|
|
5886
5950
|
* @response `200` `(ConsumerConnectStatus)[]` Success
|
|
5887
5951
|
*/
|
|
5888
|
-
getConsumerConnectStatus: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectStatus[], any>>;
|
|
5952
|
+
getConsumerConnectStatus: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectStatus[], any, {}>>;
|
|
5889
5953
|
/**
|
|
5890
5954
|
* No description
|
|
5891
5955
|
*
|
|
@@ -5896,7 +5960,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5896
5960
|
* @secure
|
|
5897
5961
|
* @response `200` `(ConsumerConnectRetry)[]` Success
|
|
5898
5962
|
*/
|
|
5899
|
-
retryConsumerConnectAssociation: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectRetry[], any>>;
|
|
5963
|
+
retryConsumerConnectAssociation: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectRetry[], any, {}>>;
|
|
5900
5964
|
/**
|
|
5901
5965
|
* No description
|
|
5902
5966
|
*
|
|
@@ -5915,7 +5979,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5915
5979
|
pageNumber?: number;
|
|
5916
5980
|
sortBy?: string;
|
|
5917
5981
|
sortDirection?: string;
|
|
5918
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
|
|
5982
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
|
|
5919
5983
|
/**
|
|
5920
5984
|
* No description
|
|
5921
5985
|
*
|
|
@@ -5927,7 +5991,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5927
5991
|
* @response `200` `Corporate` Success
|
|
5928
5992
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5929
5993
|
*/
|
|
5930
|
-
createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
5994
|
+
createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
5931
5995
|
/**
|
|
5932
5996
|
* No description
|
|
5933
5997
|
*
|
|
@@ -5945,7 +6009,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5945
6009
|
pageNumber?: number;
|
|
5946
6010
|
sortBy?: string;
|
|
5947
6011
|
sortDirection?: string;
|
|
5948
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
|
|
6012
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
|
|
5949
6013
|
/**
|
|
5950
6014
|
* No description
|
|
5951
6015
|
*
|
|
@@ -5956,7 +6020,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5956
6020
|
* @secure
|
|
5957
6021
|
* @response `200` `Corporate` Success
|
|
5958
6022
|
*/
|
|
5959
|
-
getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
6023
|
+
getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
5960
6024
|
/**
|
|
5961
6025
|
* No description
|
|
5962
6026
|
*
|
|
@@ -5968,7 +6032,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5968
6032
|
* @response `200` `Corporate` Success
|
|
5969
6033
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5970
6034
|
*/
|
|
5971
|
-
replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
6035
|
+
replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
5972
6036
|
/**
|
|
5973
6037
|
* No description
|
|
5974
6038
|
*
|
|
@@ -5979,7 +6043,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5979
6043
|
* @secure
|
|
5980
6044
|
* @response `204` `void` No Content
|
|
5981
6045
|
*/
|
|
5982
|
-
deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6046
|
+
deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5983
6047
|
/**
|
|
5984
6048
|
* No description
|
|
5985
6049
|
*
|
|
@@ -5990,7 +6054,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5990
6054
|
* @secure
|
|
5991
6055
|
* @response `204` `void` No Content
|
|
5992
6056
|
*/
|
|
5993
|
-
restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6057
|
+
restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5994
6058
|
/**
|
|
5995
6059
|
* No description
|
|
5996
6060
|
*
|
|
@@ -6002,7 +6066,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6002
6066
|
* @response `200` `SiteConfiguration` Success
|
|
6003
6067
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6004
6068
|
*/
|
|
6005
|
-
createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
6069
|
+
createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
6006
6070
|
/**
|
|
6007
6071
|
* No description
|
|
6008
6072
|
*
|
|
@@ -6013,7 +6077,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6013
6077
|
* @secure
|
|
6014
6078
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
6015
6079
|
*/
|
|
6016
|
-
getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
6080
|
+
getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
6017
6081
|
/**
|
|
6018
6082
|
* No description
|
|
6019
6083
|
*
|
|
@@ -6027,7 +6091,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6027
6091
|
*/
|
|
6028
6092
|
replaceCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
6029
6093
|
applyToChildren?: boolean;
|
|
6030
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
6094
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
6031
6095
|
/**
|
|
6032
6096
|
* No description
|
|
6033
6097
|
*
|
|
@@ -6038,7 +6102,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6038
6102
|
* @secure
|
|
6039
6103
|
* @response `200` `(BranchReduced)[]` Success
|
|
6040
6104
|
*/
|
|
6041
|
-
getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any>>;
|
|
6105
|
+
getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any, {}>>;
|
|
6042
6106
|
/**
|
|
6043
6107
|
* No description
|
|
6044
6108
|
*
|
|
@@ -6049,7 +6113,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6049
6113
|
* @secure
|
|
6050
6114
|
* @response `200` `(LoanOfficerPublic)[]` Success
|
|
6051
6115
|
*/
|
|
6052
|
-
getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
|
|
6116
|
+
getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any, {}>>;
|
|
6053
6117
|
/**
|
|
6054
6118
|
* No description
|
|
6055
6119
|
*
|
|
@@ -6069,7 +6133,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6069
6133
|
pageNumber?: number;
|
|
6070
6134
|
sortBy?: string;
|
|
6071
6135
|
sortDirection?: string;
|
|
6072
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any>>;
|
|
6136
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any, {}>>;
|
|
6073
6137
|
/**
|
|
6074
6138
|
* No description
|
|
6075
6139
|
*
|
|
@@ -6080,7 +6144,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6080
6144
|
* @secure
|
|
6081
6145
|
* @response `200` `Device` Success
|
|
6082
6146
|
*/
|
|
6083
|
-
getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
|
|
6147
|
+
getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
|
|
6084
6148
|
/**
|
|
6085
6149
|
* No description
|
|
6086
6150
|
*
|
|
@@ -6091,7 +6155,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6091
6155
|
* @secure
|
|
6092
6156
|
* @response `200` `Device` Success
|
|
6093
6157
|
*/
|
|
6094
|
-
updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
|
|
6158
|
+
updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
|
|
6095
6159
|
/**
|
|
6096
6160
|
* No description
|
|
6097
6161
|
*
|
|
@@ -6102,7 +6166,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6102
6166
|
* @secure
|
|
6103
6167
|
* @response `200` `DeviceMDM` Success
|
|
6104
6168
|
*/
|
|
6105
|
-
getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any>>;
|
|
6169
|
+
getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any, {}>>;
|
|
6106
6170
|
/**
|
|
6107
6171
|
* No description
|
|
6108
6172
|
*
|
|
@@ -6113,7 +6177,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6113
6177
|
* @secure
|
|
6114
6178
|
* @response `200` `Action` Success
|
|
6115
6179
|
*/
|
|
6116
|
-
createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any>>;
|
|
6180
|
+
createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any, {}>>;
|
|
6117
6181
|
/**
|
|
6118
6182
|
* No description
|
|
6119
6183
|
*
|
|
@@ -6127,7 +6191,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6127
6191
|
getDocumentBuckets: (query?: {
|
|
6128
6192
|
/** @default false */
|
|
6129
6193
|
includeSystemBuckets?: boolean;
|
|
6130
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
6194
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
6131
6195
|
/**
|
|
6132
6196
|
* No description
|
|
6133
6197
|
*
|
|
@@ -6140,7 +6204,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6140
6204
|
*/
|
|
6141
6205
|
getDocumentTemplates: (query?: {
|
|
6142
6206
|
showAll?: boolean;
|
|
6143
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
|
|
6207
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
|
|
6144
6208
|
/**
|
|
6145
6209
|
* No description
|
|
6146
6210
|
*
|
|
@@ -6153,7 +6217,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6153
6217
|
* @response `404` `ProblemDetails` Not Found
|
|
6154
6218
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6155
6219
|
*/
|
|
6156
|
-
createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
|
|
6220
|
+
createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
|
|
6157
6221
|
/**
|
|
6158
6222
|
* No description
|
|
6159
6223
|
*
|
|
@@ -6169,7 +6233,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6169
6233
|
showAll?: boolean;
|
|
6170
6234
|
/** @default true */
|
|
6171
6235
|
publishedOnly?: boolean;
|
|
6172
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
|
|
6236
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
|
|
6173
6237
|
/**
|
|
6174
6238
|
* No description
|
|
6175
6239
|
*
|
|
@@ -6181,7 +6245,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6181
6245
|
* @response `200` `DocumentTemplate` Success
|
|
6182
6246
|
* @response `404` `ProblemDetails` Not Found
|
|
6183
6247
|
*/
|
|
6184
|
-
getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any>>;
|
|
6248
|
+
getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any, {}>>;
|
|
6185
6249
|
/**
|
|
6186
6250
|
* No description
|
|
6187
6251
|
*
|
|
@@ -6195,7 +6259,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6195
6259
|
* @response `404` `ProblemDetails` Not Found
|
|
6196
6260
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6197
6261
|
*/
|
|
6198
|
-
replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
|
|
6262
|
+
replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
|
|
6199
6263
|
/**
|
|
6200
6264
|
* No description
|
|
6201
6265
|
*
|
|
@@ -6208,7 +6272,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6208
6272
|
* @response `401` `ProblemDetails` Unauthorized
|
|
6209
6273
|
* @response `404` `ProblemDetails` Not Found
|
|
6210
6274
|
*/
|
|
6211
|
-
deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6275
|
+
deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6212
6276
|
/**
|
|
6213
6277
|
* No description
|
|
6214
6278
|
*
|
|
@@ -6221,7 +6285,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6221
6285
|
* @response `401` `ProblemDetails` Unauthorized
|
|
6222
6286
|
* @response `404` `ProblemDetails` Not Found
|
|
6223
6287
|
*/
|
|
6224
|
-
restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6288
|
+
restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6225
6289
|
/**
|
|
6226
6290
|
* No description
|
|
6227
6291
|
*
|
|
@@ -6232,7 +6296,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6232
6296
|
* @secure
|
|
6233
6297
|
* @response `200` `(DocumentTemplateVersion)[]` Success
|
|
6234
6298
|
*/
|
|
6235
|
-
getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any>>;
|
|
6299
|
+
getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any, {}>>;
|
|
6236
6300
|
/**
|
|
6237
6301
|
* No description
|
|
6238
6302
|
*
|
|
@@ -6243,7 +6307,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6243
6307
|
* @secure
|
|
6244
6308
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6245
6309
|
*/
|
|
6246
|
-
createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6310
|
+
createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6247
6311
|
/**
|
|
6248
6312
|
* No description
|
|
6249
6313
|
*
|
|
@@ -6254,7 +6318,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6254
6318
|
* @secure
|
|
6255
6319
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6256
6320
|
*/
|
|
6257
|
-
getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6321
|
+
getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6258
6322
|
/**
|
|
6259
6323
|
* No description
|
|
6260
6324
|
*
|
|
@@ -6265,7 +6329,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6265
6329
|
* @secure
|
|
6266
6330
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6267
6331
|
*/
|
|
6268
|
-
replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6332
|
+
replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6269
6333
|
/**
|
|
6270
6334
|
* No description
|
|
6271
6335
|
*
|
|
@@ -6276,7 +6340,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6276
6340
|
* @secure
|
|
6277
6341
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6278
6342
|
*/
|
|
6279
|
-
deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6343
|
+
deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6280
6344
|
/**
|
|
6281
6345
|
* No description
|
|
6282
6346
|
*
|
|
@@ -6304,7 +6368,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6304
6368
|
pageSize?: number;
|
|
6305
6369
|
/** @format uuid */
|
|
6306
6370
|
loanId?: string;
|
|
6307
|
-
}, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any>>;
|
|
6371
|
+
}, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any, {}>>;
|
|
6308
6372
|
/**
|
|
6309
6373
|
* No description
|
|
6310
6374
|
*
|
|
@@ -6316,7 +6380,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6316
6380
|
* @response `401` `EncompassError` Unauthorized
|
|
6317
6381
|
* @response `500` `EncompassError` Server Error
|
|
6318
6382
|
*/
|
|
6319
|
-
getUserRecipients: (params?: RequestParams) => Promise<AxiosResponse<EncompassRecipientItem[], any>>;
|
|
6383
|
+
getUserRecipients: (params?: RequestParams) => Promise<AxiosResponse<EncompassRecipientItem[], any, {}>>;
|
|
6320
6384
|
/**
|
|
6321
6385
|
* No description
|
|
6322
6386
|
*
|
|
@@ -6331,7 +6395,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6331
6395
|
* @response `404` `EncompassError` Not Found
|
|
6332
6396
|
* @response `500` `EncompassError` Server Error
|
|
6333
6397
|
*/
|
|
6334
|
-
createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any>>;
|
|
6398
|
+
createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any, {}>>;
|
|
6335
6399
|
/**
|
|
6336
6400
|
* No description
|
|
6337
6401
|
*
|
|
@@ -6351,7 +6415,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6351
6415
|
sortDirection?: string;
|
|
6352
6416
|
/** @default false */
|
|
6353
6417
|
includeDeleted?: boolean;
|
|
6354
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
|
|
6418
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
|
|
6355
6419
|
/**
|
|
6356
6420
|
* No description
|
|
6357
6421
|
*
|
|
@@ -6369,7 +6433,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6369
6433
|
file?: File;
|
|
6370
6434
|
isPublic?: boolean;
|
|
6371
6435
|
bucket?: string;
|
|
6372
|
-
}, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6436
|
+
}, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
6373
6437
|
/**
|
|
6374
6438
|
* No description
|
|
6375
6439
|
*
|
|
@@ -6380,7 +6444,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6380
6444
|
* @secure
|
|
6381
6445
|
* @response `201` `File` Created
|
|
6382
6446
|
*/
|
|
6383
|
-
getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6447
|
+
getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
6384
6448
|
/**
|
|
6385
6449
|
* No description
|
|
6386
6450
|
*
|
|
@@ -6392,7 +6456,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6392
6456
|
* @response `200` `string` Success
|
|
6393
6457
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6394
6458
|
*/
|
|
6395
|
-
replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6459
|
+
replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6396
6460
|
/**
|
|
6397
6461
|
* No description
|
|
6398
6462
|
*
|
|
@@ -6403,7 +6467,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6403
6467
|
* @secure
|
|
6404
6468
|
* @response `204` `void` No Content
|
|
6405
6469
|
*/
|
|
6406
|
-
deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6470
|
+
deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6407
6471
|
/**
|
|
6408
6472
|
* No description
|
|
6409
6473
|
*
|
|
@@ -6421,7 +6485,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6421
6485
|
pageNumber?: number;
|
|
6422
6486
|
sortBy?: string;
|
|
6423
6487
|
sortDirection?: string;
|
|
6424
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
|
|
6488
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
|
|
6425
6489
|
/**
|
|
6426
6490
|
* No description
|
|
6427
6491
|
*
|
|
@@ -6434,7 +6498,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6434
6498
|
*/
|
|
6435
6499
|
getForms: (query?: {
|
|
6436
6500
|
showAll?: boolean;
|
|
6437
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
|
|
6501
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
|
|
6438
6502
|
/**
|
|
6439
6503
|
* No description
|
|
6440
6504
|
*
|
|
@@ -6446,7 +6510,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6446
6510
|
* @response `201` `Form` Created
|
|
6447
6511
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6448
6512
|
*/
|
|
6449
|
-
createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6513
|
+
createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6450
6514
|
/**
|
|
6451
6515
|
* No description
|
|
6452
6516
|
*
|
|
@@ -6457,7 +6521,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6457
6521
|
* @secure
|
|
6458
6522
|
* @response `200` `Form` Success
|
|
6459
6523
|
*/
|
|
6460
|
-
getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6524
|
+
getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6461
6525
|
/**
|
|
6462
6526
|
* No description
|
|
6463
6527
|
*
|
|
@@ -6469,7 +6533,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6469
6533
|
* @response `200` `Form` Success
|
|
6470
6534
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6471
6535
|
*/
|
|
6472
|
-
replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6536
|
+
replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6473
6537
|
/**
|
|
6474
6538
|
* No description
|
|
6475
6539
|
*
|
|
@@ -6480,7 +6544,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6480
6544
|
* @secure
|
|
6481
6545
|
* @response `204` `void` No Content
|
|
6482
6546
|
*/
|
|
6483
|
-
deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6547
|
+
deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6484
6548
|
/**
|
|
6485
6549
|
* No description
|
|
6486
6550
|
*
|
|
@@ -6491,7 +6555,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6491
6555
|
* @secure
|
|
6492
6556
|
* @response `200` `Form` Success
|
|
6493
6557
|
*/
|
|
6494
|
-
restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6558
|
+
restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6495
6559
|
/**
|
|
6496
6560
|
* No description
|
|
6497
6561
|
*
|
|
@@ -6506,7 +6570,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6506
6570
|
/** @format binary */
|
|
6507
6571
|
file?: File;
|
|
6508
6572
|
name?: string;
|
|
6509
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any>>;
|
|
6573
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any, {}>>;
|
|
6510
6574
|
/**
|
|
6511
6575
|
* No description
|
|
6512
6576
|
*
|
|
@@ -6517,7 +6581,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6517
6581
|
* @secure
|
|
6518
6582
|
* @response `204` `void` No Content
|
|
6519
6583
|
*/
|
|
6520
|
-
deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6584
|
+
deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6521
6585
|
/**
|
|
6522
6586
|
* No description
|
|
6523
6587
|
*
|
|
@@ -6531,7 +6595,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6531
6595
|
downloadFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, query?: {
|
|
6532
6596
|
/** @format uuid */
|
|
6533
6597
|
siteConfigurationId?: string;
|
|
6534
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any>>;
|
|
6598
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any, {}>>;
|
|
6535
6599
|
/**
|
|
6536
6600
|
* No description
|
|
6537
6601
|
*
|
|
@@ -6549,7 +6613,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6549
6613
|
pageNumber?: number;
|
|
6550
6614
|
sortBy?: string;
|
|
6551
6615
|
sortDirection?: string;
|
|
6552
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
|
|
6616
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
|
|
6553
6617
|
/**
|
|
6554
6618
|
* No description
|
|
6555
6619
|
*
|
|
@@ -6562,7 +6626,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6562
6626
|
*/
|
|
6563
6627
|
createFormSubmission: (data: FormSubmissionRequest, query?: {
|
|
6564
6628
|
formID?: string;
|
|
6565
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
6629
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
6566
6630
|
/**
|
|
6567
6631
|
* No description
|
|
6568
6632
|
*
|
|
@@ -6573,7 +6637,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6573
6637
|
* @secure
|
|
6574
6638
|
* @response `200` `FormSubmission` Success
|
|
6575
6639
|
*/
|
|
6576
|
-
getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
6640
|
+
getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
6577
6641
|
/**
|
|
6578
6642
|
* No description
|
|
6579
6643
|
*
|
|
@@ -6584,7 +6648,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6584
6648
|
* @secure
|
|
6585
6649
|
* @response `200` `FormSubmission` Success
|
|
6586
6650
|
*/
|
|
6587
|
-
replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
6651
|
+
replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
6588
6652
|
/**
|
|
6589
6653
|
* No description
|
|
6590
6654
|
*
|
|
@@ -6595,7 +6659,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6595
6659
|
* @secure
|
|
6596
6660
|
* @response `204` `void` No Content
|
|
6597
6661
|
*/
|
|
6598
|
-
deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6662
|
+
deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6599
6663
|
/**
|
|
6600
6664
|
* No description
|
|
6601
6665
|
*
|
|
@@ -6613,7 +6677,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6613
6677
|
pageNumber?: number;
|
|
6614
6678
|
sortBy?: string;
|
|
6615
6679
|
sortDirection?: string;
|
|
6616
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
|
|
6680
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
|
|
6617
6681
|
/**
|
|
6618
6682
|
* No description
|
|
6619
6683
|
*
|
|
@@ -6624,7 +6688,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6624
6688
|
* @secure
|
|
6625
6689
|
* @response `200` `(FormVersion)[]` Success
|
|
6626
6690
|
*/
|
|
6627
|
-
getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any>>;
|
|
6691
|
+
getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any, {}>>;
|
|
6628
6692
|
/**
|
|
6629
6693
|
* No description
|
|
6630
6694
|
*
|
|
@@ -6635,7 +6699,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6635
6699
|
* @secure
|
|
6636
6700
|
* @response `200` `FormVersion` Success
|
|
6637
6701
|
*/
|
|
6638
|
-
createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6702
|
+
createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6639
6703
|
/**
|
|
6640
6704
|
* No description
|
|
6641
6705
|
*
|
|
@@ -6646,7 +6710,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6646
6710
|
* @secure
|
|
6647
6711
|
* @response `200` `FormVersion` Success
|
|
6648
6712
|
*/
|
|
6649
|
-
getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6713
|
+
getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6650
6714
|
/**
|
|
6651
6715
|
* No description
|
|
6652
6716
|
*
|
|
@@ -6657,7 +6721,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6657
6721
|
* @secure
|
|
6658
6722
|
* @response `200` `FormVersion` Success
|
|
6659
6723
|
*/
|
|
6660
|
-
replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6724
|
+
replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6661
6725
|
/**
|
|
6662
6726
|
* No description
|
|
6663
6727
|
*
|
|
@@ -6668,7 +6732,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6668
6732
|
* @secure
|
|
6669
6733
|
* @response `200` `FormVersion` Success
|
|
6670
6734
|
*/
|
|
6671
|
-
deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6735
|
+
deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6672
6736
|
/**
|
|
6673
6737
|
* No description
|
|
6674
6738
|
*
|
|
@@ -6679,7 +6743,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6679
6743
|
* @secure
|
|
6680
6744
|
* @response `200` `Record<string,any>` Success
|
|
6681
6745
|
*/
|
|
6682
|
-
getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any>>;
|
|
6746
|
+
getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any, {}>>;
|
|
6683
6747
|
/**
|
|
6684
6748
|
* No description
|
|
6685
6749
|
*
|
|
@@ -6692,7 +6756,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6692
6756
|
* @response `200` `string` Success
|
|
6693
6757
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6694
6758
|
*/
|
|
6695
|
-
updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6759
|
+
updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6696
6760
|
/**
|
|
6697
6761
|
* No description
|
|
6698
6762
|
*
|
|
@@ -6703,7 +6767,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6703
6767
|
* @secure
|
|
6704
6768
|
* @response `200` `GetReport` Success
|
|
6705
6769
|
*/
|
|
6706
|
-
getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any>>;
|
|
6770
|
+
getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any, {}>>;
|
|
6707
6771
|
/**
|
|
6708
6772
|
* No description
|
|
6709
6773
|
*
|
|
@@ -6720,7 +6784,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6720
6784
|
createLoan: (data: any, query?: {
|
|
6721
6785
|
/** @default false */
|
|
6722
6786
|
isPatch?: boolean;
|
|
6723
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6787
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6724
6788
|
/**
|
|
6725
6789
|
* No description
|
|
6726
6790
|
*
|
|
@@ -6736,7 +6800,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6736
6800
|
createLoanInternal: (data: any, query?: {
|
|
6737
6801
|
/** @default false */
|
|
6738
6802
|
isPatch?: boolean;
|
|
6739
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6803
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6740
6804
|
/**
|
|
6741
6805
|
* No description
|
|
6742
6806
|
*
|
|
@@ -6748,7 +6812,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6748
6812
|
* @response `200` `string` Success
|
|
6749
6813
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6750
6814
|
*/
|
|
6751
|
-
updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6815
|
+
updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6752
6816
|
/**
|
|
6753
6817
|
* No description
|
|
6754
6818
|
*
|
|
@@ -6761,7 +6825,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6761
6825
|
* @response `202` `string` Accepted
|
|
6762
6826
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6763
6827
|
*/
|
|
6764
|
-
updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6828
|
+
updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6765
6829
|
/**
|
|
6766
6830
|
* No description
|
|
6767
6831
|
*
|
|
@@ -6772,7 +6836,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6772
6836
|
* @secure
|
|
6773
6837
|
* @response `200` `(DocumentData)[]` Success
|
|
6774
6838
|
*/
|
|
6775
|
-
getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any>>;
|
|
6839
|
+
getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any, {}>>;
|
|
6776
6840
|
/**
|
|
6777
6841
|
* No description
|
|
6778
6842
|
*
|
|
@@ -6786,7 +6850,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6786
6850
|
getLoanDocumentContent: (loanId: string, documentId: string, query?: {
|
|
6787
6851
|
/** @default "base64" */
|
|
6788
6852
|
contentType?: string;
|
|
6789
|
-
}, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6853
|
+
}, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6790
6854
|
/**
|
|
6791
6855
|
* No description
|
|
6792
6856
|
*
|
|
@@ -6797,7 +6861,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6797
6861
|
* @secure
|
|
6798
6862
|
* @response `204` `void` No Content
|
|
6799
6863
|
*/
|
|
6800
|
-
getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6864
|
+
getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6801
6865
|
/**
|
|
6802
6866
|
* No description
|
|
6803
6867
|
*
|
|
@@ -6808,7 +6872,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6808
6872
|
* @secure
|
|
6809
6873
|
* @response `200` `(PreliminaryCondition)[]` Success
|
|
6810
6874
|
*/
|
|
6811
|
-
getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any>>;
|
|
6875
|
+
getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any, {}>>;
|
|
6812
6876
|
/**
|
|
6813
6877
|
* No description
|
|
6814
6878
|
*
|
|
@@ -6819,7 +6883,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6819
6883
|
* @secure
|
|
6820
6884
|
* @response `200` `(UnderwritingCondition)[]` Success
|
|
6821
6885
|
*/
|
|
6822
|
-
getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any>>;
|
|
6886
|
+
getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any, {}>>;
|
|
6823
6887
|
/**
|
|
6824
6888
|
* No description
|
|
6825
6889
|
*
|
|
@@ -6830,7 +6894,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6830
6894
|
* @secure
|
|
6831
6895
|
* @response `200` `string` Success
|
|
6832
6896
|
*/
|
|
6833
|
-
getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6897
|
+
getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6834
6898
|
/**
|
|
6835
6899
|
* No description
|
|
6836
6900
|
*
|
|
@@ -6842,7 +6906,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6842
6906
|
* @secure
|
|
6843
6907
|
* @response `200` `DocumentDataRequest` Success
|
|
6844
6908
|
*/
|
|
6845
|
-
createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
|
|
6909
|
+
createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
|
|
6846
6910
|
/**
|
|
6847
6911
|
* No description
|
|
6848
6912
|
*
|
|
@@ -6859,7 +6923,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6859
6923
|
createEditDraftForLoan: (loanId: string, query?: {
|
|
6860
6924
|
/** @default false */
|
|
6861
6925
|
isCoBorrower?: boolean;
|
|
6862
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
6926
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
6863
6927
|
/**
|
|
6864
6928
|
* No description
|
|
6865
6929
|
*
|
|
@@ -6875,7 +6939,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6875
6939
|
file?: File;
|
|
6876
6940
|
/** @format int32 */
|
|
6877
6941
|
weight?: number;
|
|
6878
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
|
|
6942
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
|
|
6879
6943
|
/**
|
|
6880
6944
|
* No description
|
|
6881
6945
|
*
|
|
@@ -6886,7 +6950,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6886
6950
|
* @secure
|
|
6887
6951
|
* @response `200` `ListingFile` Success
|
|
6888
6952
|
*/
|
|
6889
|
-
updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
|
|
6953
|
+
updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
|
|
6890
6954
|
/**
|
|
6891
6955
|
* No description
|
|
6892
6956
|
*
|
|
@@ -6897,7 +6961,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6897
6961
|
* @secure
|
|
6898
6962
|
* @response `204` `Listing` No Content
|
|
6899
6963
|
*/
|
|
6900
|
-
removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
6964
|
+
removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6901
6965
|
/**
|
|
6902
6966
|
* No description
|
|
6903
6967
|
*
|
|
@@ -6915,7 +6979,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6915
6979
|
file?: File;
|
|
6916
6980
|
/** @format int32 */
|
|
6917
6981
|
weight?: number;
|
|
6918
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any>>;
|
|
6982
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any, {}>>;
|
|
6919
6983
|
/**
|
|
6920
6984
|
* No description
|
|
6921
6985
|
*
|
|
@@ -6926,7 +6990,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6926
6990
|
* @secure
|
|
6927
6991
|
* @response `200` `(ListingPhoto)[]` Success
|
|
6928
6992
|
*/
|
|
6929
|
-
updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any>>;
|
|
6993
|
+
updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any, {}>>;
|
|
6930
6994
|
/**
|
|
6931
6995
|
* No description
|
|
6932
6996
|
*
|
|
@@ -6937,7 +7001,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6937
7001
|
* @secure
|
|
6938
7002
|
* @response `204` `Listing` No Content
|
|
6939
7003
|
*/
|
|
6940
|
-
removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7004
|
+
removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6941
7005
|
/**
|
|
6942
7006
|
* No description
|
|
6943
7007
|
*
|
|
@@ -6955,7 +7019,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6955
7019
|
pageNumber?: number;
|
|
6956
7020
|
sortBy?: string;
|
|
6957
7021
|
sortDirection?: string;
|
|
6958
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
|
|
7022
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
|
|
6959
7023
|
/**
|
|
6960
7024
|
* No description
|
|
6961
7025
|
*
|
|
@@ -6966,7 +7030,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6966
7030
|
* @secure
|
|
6967
7031
|
* @response `201` `Listing` Created
|
|
6968
7032
|
*/
|
|
6969
|
-
createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7033
|
+
createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6970
7034
|
/**
|
|
6971
7035
|
* No description
|
|
6972
7036
|
*
|
|
@@ -6977,7 +7041,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6977
7041
|
* @secure
|
|
6978
7042
|
* @response `200` `Listing` Success
|
|
6979
7043
|
*/
|
|
6980
|
-
getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7044
|
+
getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6981
7045
|
/**
|
|
6982
7046
|
* No description
|
|
6983
7047
|
*
|
|
@@ -6988,7 +7052,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6988
7052
|
* @secure
|
|
6989
7053
|
* @response `200` `Listing` Success
|
|
6990
7054
|
*/
|
|
6991
|
-
getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7055
|
+
getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6992
7056
|
/**
|
|
6993
7057
|
* No description
|
|
6994
7058
|
*
|
|
@@ -6999,7 +7063,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6999
7063
|
* @secure
|
|
7000
7064
|
* @response `200` `Listing` Success
|
|
7001
7065
|
*/
|
|
7002
|
-
replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7066
|
+
replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
7003
7067
|
/**
|
|
7004
7068
|
* No description
|
|
7005
7069
|
*
|
|
@@ -7010,7 +7074,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7010
7074
|
* @secure
|
|
7011
7075
|
* @response `204` `void` No Content
|
|
7012
7076
|
*/
|
|
7013
|
-
deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7077
|
+
deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7014
7078
|
/**
|
|
7015
7079
|
* No description
|
|
7016
7080
|
*
|
|
@@ -7028,7 +7092,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7028
7092
|
pageNumber?: number;
|
|
7029
7093
|
sortBy?: string;
|
|
7030
7094
|
sortDirection?: string;
|
|
7031
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
|
|
7095
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
|
|
7032
7096
|
/**
|
|
7033
7097
|
* No description
|
|
7034
7098
|
*
|
|
@@ -7042,7 +7106,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7042
7106
|
updateListingBackgroundImage: (id: string, data: {
|
|
7043
7107
|
/** @format binary */
|
|
7044
7108
|
file?: File;
|
|
7045
|
-
}, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
7109
|
+
}, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
7046
7110
|
/**
|
|
7047
7111
|
* No description
|
|
7048
7112
|
*
|
|
@@ -7053,7 +7117,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7053
7117
|
* @secure
|
|
7054
7118
|
* @response `204` `void` No Content
|
|
7055
7119
|
*/
|
|
7056
|
-
deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7120
|
+
deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7057
7121
|
/**
|
|
7058
7122
|
* No description
|
|
7059
7123
|
*
|
|
@@ -7064,7 +7128,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7064
7128
|
* @secure
|
|
7065
7129
|
* @response `200` `File` Success
|
|
7066
7130
|
*/
|
|
7067
|
-
getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
7131
|
+
getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
7068
7132
|
/**
|
|
7069
7133
|
* No description
|
|
7070
7134
|
*
|
|
@@ -7075,7 +7139,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7075
7139
|
* @secure
|
|
7076
7140
|
* @response `200` `RunLOCalculation` Success
|
|
7077
7141
|
*/
|
|
7078
|
-
getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
|
|
7142
|
+
getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
|
|
7079
7143
|
/**
|
|
7080
7144
|
* No description
|
|
7081
7145
|
*
|
|
@@ -7088,7 +7152,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7088
7152
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7089
7153
|
* @response `423` `UnprocessableEntity` Client Error
|
|
7090
7154
|
*/
|
|
7091
|
-
runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
|
|
7155
|
+
runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
|
|
7092
7156
|
/**
|
|
7093
7157
|
* No description
|
|
7094
7158
|
*
|
|
@@ -7099,7 +7163,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7099
7163
|
* @secure
|
|
7100
7164
|
* @response `200` `LoanComparison` Success
|
|
7101
7165
|
*/
|
|
7102
|
-
getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any>>;
|
|
7166
|
+
getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any, {}>>;
|
|
7103
7167
|
/**
|
|
7104
7168
|
* No description
|
|
7105
7169
|
*
|
|
@@ -7112,7 +7176,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7112
7176
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7113
7177
|
* @response `423` `UnprocessableEntity` Client Error
|
|
7114
7178
|
*/
|
|
7115
|
-
createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any>>;
|
|
7179
|
+
createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any, {}>>;
|
|
7116
7180
|
/**
|
|
7117
7181
|
* No description
|
|
7118
7182
|
*
|
|
@@ -7123,7 +7187,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7123
7187
|
* @secure
|
|
7124
7188
|
* @response `204` `void` No Content
|
|
7125
7189
|
*/
|
|
7126
|
-
deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7190
|
+
deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7127
7191
|
/**
|
|
7128
7192
|
* No description
|
|
7129
7193
|
*
|
|
@@ -7135,7 +7199,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7135
7199
|
* @response `204` `void` No Content
|
|
7136
7200
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7137
7201
|
*/
|
|
7138
|
-
createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7202
|
+
createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7139
7203
|
/**
|
|
7140
7204
|
* No description
|
|
7141
7205
|
*
|
|
@@ -7146,7 +7210,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7146
7210
|
* @secure
|
|
7147
7211
|
* @response `200` `(string)[]` Success
|
|
7148
7212
|
*/
|
|
7149
|
-
getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
7213
|
+
getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
7150
7214
|
/**
|
|
7151
7215
|
* No description
|
|
7152
7216
|
*
|
|
@@ -7157,7 +7221,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7157
7221
|
* @secure
|
|
7158
7222
|
* @response `201` `(string)[]` Created
|
|
7159
7223
|
*/
|
|
7160
|
-
createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
7224
|
+
createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
7161
7225
|
/**
|
|
7162
7226
|
* No description
|
|
7163
7227
|
*
|
|
@@ -7172,7 +7236,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7172
7236
|
getLoanDocument: (loanId: string, documentId: string, query?: {
|
|
7173
7237
|
/** @default false */
|
|
7174
7238
|
preview?: boolean;
|
|
7175
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7239
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
7176
7240
|
/**
|
|
7177
7241
|
* No description
|
|
7178
7242
|
*
|
|
@@ -7190,7 +7254,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7190
7254
|
pageNumber?: number;
|
|
7191
7255
|
sortBy?: string;
|
|
7192
7256
|
sortDirection?: string;
|
|
7193
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any>>;
|
|
7257
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any, {}>>;
|
|
7194
7258
|
/**
|
|
7195
7259
|
* @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).
|
|
7196
7260
|
*
|
|
@@ -7204,7 +7268,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7204
7268
|
getLoanDocumentFolders: (loanId: string, data: DocumentFoldersRequest, query?: {
|
|
7205
7269
|
/** @default false */
|
|
7206
7270
|
folderNamesOnly?: boolean;
|
|
7207
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any>>;
|
|
7271
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any, {}>>;
|
|
7208
7272
|
/**
|
|
7209
7273
|
* No description
|
|
7210
7274
|
*
|
|
@@ -7213,10 +7277,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7213
7277
|
* @summary Download By ID
|
|
7214
7278
|
* @request GET:/api/loans/{loanId}/documents/{documentId}/download
|
|
7215
7279
|
* @secure
|
|
7216
|
-
* @response `200` `
|
|
7280
|
+
* @response `200` `Blob` Success
|
|
7217
7281
|
* @response `404` `ProblemDetails` Not Found
|
|
7218
7282
|
*/
|
|
7219
|
-
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
7283
|
+
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<Blob, any, {}>>;
|
|
7220
7284
|
/**
|
|
7221
7285
|
* No description
|
|
7222
7286
|
*
|
|
@@ -7234,7 +7298,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7234
7298
|
/** @format binary */
|
|
7235
7299
|
file?: File;
|
|
7236
7300
|
bucket?: string;
|
|
7237
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7301
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
7238
7302
|
/**
|
|
7239
7303
|
* No description
|
|
7240
7304
|
*
|
|
@@ -7247,7 +7311,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7247
7311
|
* @response `404` `ProblemDetails` Not Found
|
|
7248
7312
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7249
7313
|
*/
|
|
7250
|
-
retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7314
|
+
retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
7251
7315
|
/**
|
|
7252
7316
|
* No description
|
|
7253
7317
|
*
|
|
@@ -7258,7 +7322,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7258
7322
|
* @secure
|
|
7259
7323
|
* @response `200` `DocumentDataRequest` Success
|
|
7260
7324
|
*/
|
|
7261
|
-
generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
|
|
7325
|
+
generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
|
|
7262
7326
|
/**
|
|
7263
7327
|
* No description
|
|
7264
7328
|
*
|
|
@@ -7271,7 +7335,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7271
7335
|
* @response `400` `ProblemDetails` Bad Request
|
|
7272
7336
|
* @response `404` `ProblemDetails` Not Found
|
|
7273
7337
|
*/
|
|
7274
|
-
sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7338
|
+
sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7275
7339
|
/**
|
|
7276
7340
|
* @description Fetches all documents from Encompass that don't exist locally and stores them in S3
|
|
7277
7341
|
*
|
|
@@ -7283,7 +7347,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7283
7347
|
* @response `200` `DocumentSync` Success
|
|
7284
7348
|
* @response `404` `ProblemDetails` Not Found
|
|
7285
7349
|
*/
|
|
7286
|
-
syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any>>;
|
|
7350
|
+
syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any, {}>>;
|
|
7287
7351
|
/**
|
|
7288
7352
|
* @description Re-attempts to push a failed document to LOS
|
|
7289
7353
|
*
|
|
@@ -7296,7 +7360,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7296
7360
|
* @response `404` `ProblemDetails` Not Found
|
|
7297
7361
|
* @response `423` `ProblemDetails` Client Error
|
|
7298
7362
|
*/
|
|
7299
|
-
retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7363
|
+
retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7300
7364
|
/**
|
|
7301
7365
|
* No description
|
|
7302
7366
|
*
|
|
@@ -7307,7 +7371,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7307
7371
|
* @secure
|
|
7308
7372
|
* @response `201` `Draft` Created
|
|
7309
7373
|
*/
|
|
7310
|
-
createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7374
|
+
createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7311
7375
|
/**
|
|
7312
7376
|
* No description
|
|
7313
7377
|
*
|
|
@@ -7318,7 +7382,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7318
7382
|
* @secure
|
|
7319
7383
|
* @response `200` `(DraftContent)[]` Success
|
|
7320
7384
|
*/
|
|
7321
|
-
getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any>>;
|
|
7385
|
+
getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any, {}>>;
|
|
7322
7386
|
/**
|
|
7323
7387
|
* No description
|
|
7324
7388
|
*
|
|
@@ -7329,7 +7393,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7329
7393
|
* @secure
|
|
7330
7394
|
* @response `200` `DraftContent` Success
|
|
7331
7395
|
*/
|
|
7332
|
-
getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any>>;
|
|
7396
|
+
getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any, {}>>;
|
|
7333
7397
|
/**
|
|
7334
7398
|
* No description
|
|
7335
7399
|
*
|
|
@@ -7340,7 +7404,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7340
7404
|
* @secure
|
|
7341
7405
|
* @response `200` `Draft` Success
|
|
7342
7406
|
*/
|
|
7343
|
-
replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7407
|
+
replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7344
7408
|
/**
|
|
7345
7409
|
* No description
|
|
7346
7410
|
*
|
|
@@ -7351,7 +7415,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7351
7415
|
* @secure
|
|
7352
7416
|
* @response `204` `void` No Content
|
|
7353
7417
|
*/
|
|
7354
|
-
deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7418
|
+
deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7355
7419
|
/**
|
|
7356
7420
|
* No description
|
|
7357
7421
|
*
|
|
@@ -7369,7 +7433,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7369
7433
|
pageNumber?: number;
|
|
7370
7434
|
sortBy?: string;
|
|
7371
7435
|
sortDirection?: string;
|
|
7372
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any>>;
|
|
7436
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any, {}>>;
|
|
7373
7437
|
/**
|
|
7374
7438
|
* No description
|
|
7375
7439
|
*
|
|
@@ -7380,7 +7444,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7380
7444
|
* @secure
|
|
7381
7445
|
* @response `200` `Draft` Success
|
|
7382
7446
|
*/
|
|
7383
|
-
reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7447
|
+
reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7384
7448
|
/**
|
|
7385
7449
|
* No description
|
|
7386
7450
|
*
|
|
@@ -7391,7 +7455,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7391
7455
|
* @secure
|
|
7392
7456
|
* @response `200` `Draft` Success
|
|
7393
7457
|
*/
|
|
7394
|
-
restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7458
|
+
restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7395
7459
|
/**
|
|
7396
7460
|
* No description
|
|
7397
7461
|
*
|
|
@@ -7411,7 +7475,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7411
7475
|
pageNumber?: number;
|
|
7412
7476
|
sortBy?: string;
|
|
7413
7477
|
sortDirection?: string;
|
|
7414
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any>>;
|
|
7478
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any, {}>>;
|
|
7415
7479
|
/**
|
|
7416
7480
|
* No description
|
|
7417
7481
|
*
|
|
@@ -7422,7 +7486,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7422
7486
|
* @secure
|
|
7423
7487
|
* @response `201` `LoanImport` Created
|
|
7424
7488
|
*/
|
|
7425
|
-
createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
|
|
7489
|
+
createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
|
|
7426
7490
|
/**
|
|
7427
7491
|
* No description
|
|
7428
7492
|
*
|
|
@@ -7433,7 +7497,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7433
7497
|
* @secure
|
|
7434
7498
|
* @response `200` `LoanImport` Success
|
|
7435
7499
|
*/
|
|
7436
|
-
getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
|
|
7500
|
+
getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
|
|
7437
7501
|
/**
|
|
7438
7502
|
* No description
|
|
7439
7503
|
*
|
|
@@ -7451,7 +7515,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7451
7515
|
pageNumber?: number;
|
|
7452
7516
|
sortBy?: string;
|
|
7453
7517
|
sortDirection?: string;
|
|
7454
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any>>;
|
|
7518
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any, {}>>;
|
|
7455
7519
|
/**
|
|
7456
7520
|
* No description
|
|
7457
7521
|
*
|
|
@@ -7463,7 +7527,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7463
7527
|
* @response `200` `(Invite)[]` Success
|
|
7464
7528
|
* @response `404` `ProblemDetails` Not Found
|
|
7465
7529
|
*/
|
|
7466
|
-
getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
|
|
7530
|
+
getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
|
|
7467
7531
|
/**
|
|
7468
7532
|
* No description
|
|
7469
7533
|
*
|
|
@@ -7475,7 +7539,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7475
7539
|
* @response `200` `(Invite)[]` Success
|
|
7476
7540
|
* @response `404` `ProblemDetails` Not Found
|
|
7477
7541
|
*/
|
|
7478
|
-
inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
|
|
7542
|
+
inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
|
|
7479
7543
|
/**
|
|
7480
7544
|
* No description
|
|
7481
7545
|
*
|
|
@@ -7493,7 +7557,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7493
7557
|
pageNumber?: number;
|
|
7494
7558
|
sortBy?: string;
|
|
7495
7559
|
sortDirection?: string;
|
|
7496
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any>>;
|
|
7560
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any, {}>>;
|
|
7497
7561
|
/**
|
|
7498
7562
|
* No description
|
|
7499
7563
|
*
|
|
@@ -7505,7 +7569,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7505
7569
|
* @response `200` `LoanLogDetail` Success
|
|
7506
7570
|
* @response `404` `ProblemDetails` Not Found
|
|
7507
7571
|
*/
|
|
7508
|
-
getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any>>;
|
|
7572
|
+
getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any, {}>>;
|
|
7509
7573
|
/**
|
|
7510
7574
|
* No description
|
|
7511
7575
|
*
|
|
@@ -7524,7 +7588,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7524
7588
|
pageNumber?: number;
|
|
7525
7589
|
sortBy?: string;
|
|
7526
7590
|
sortDirection?: string;
|
|
7527
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
7591
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
7528
7592
|
/**
|
|
7529
7593
|
* No description
|
|
7530
7594
|
*
|
|
@@ -7542,7 +7606,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7542
7606
|
pageNumber?: number;
|
|
7543
7607
|
sortBy?: string;
|
|
7544
7608
|
sortDirection?: string;
|
|
7545
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
7609
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
7546
7610
|
/**
|
|
7547
7611
|
* No description
|
|
7548
7612
|
*
|
|
@@ -7553,7 +7617,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7553
7617
|
* @secure
|
|
7554
7618
|
* @response `200` `BranchUser` Success
|
|
7555
7619
|
*/
|
|
7556
|
-
getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
|
|
7620
|
+
getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
|
|
7557
7621
|
/**
|
|
7558
7622
|
* No description
|
|
7559
7623
|
*
|
|
@@ -7565,7 +7629,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7565
7629
|
* @response `200` `SiteConfiguration` Success
|
|
7566
7630
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7567
7631
|
*/
|
|
7568
|
-
createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
7632
|
+
createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
7569
7633
|
/**
|
|
7570
7634
|
* No description
|
|
7571
7635
|
*
|
|
@@ -7576,7 +7640,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7576
7640
|
* @secure
|
|
7577
7641
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
7578
7642
|
*/
|
|
7579
|
-
getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
7643
|
+
getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
7580
7644
|
/**
|
|
7581
7645
|
* No description
|
|
7582
7646
|
*
|
|
@@ -7590,7 +7654,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7590
7654
|
*/
|
|
7591
7655
|
replaceLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
7592
7656
|
applyToChildren?: boolean;
|
|
7593
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
7657
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
7594
7658
|
/**
|
|
7595
7659
|
* No description
|
|
7596
7660
|
*
|
|
@@ -7608,7 +7672,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7608
7672
|
pageNumber?: number;
|
|
7609
7673
|
sortBy?: string;
|
|
7610
7674
|
sortDirection?: string;
|
|
7611
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any>>;
|
|
7675
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any, {}>>;
|
|
7612
7676
|
/**
|
|
7613
7677
|
* No description
|
|
7614
7678
|
*
|
|
@@ -7620,7 +7684,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7620
7684
|
* @response `200` `any` Success
|
|
7621
7685
|
* @response `404` `ProblemDetails` Not Found
|
|
7622
7686
|
*/
|
|
7623
|
-
getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
7687
|
+
getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
7624
7688
|
/**
|
|
7625
7689
|
* No description
|
|
7626
7690
|
*
|
|
@@ -7632,7 +7696,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7632
7696
|
* @response `200` `LoanQueueWithData` Success
|
|
7633
7697
|
* @response `404` `ProblemDetails` Not Found
|
|
7634
7698
|
*/
|
|
7635
|
-
replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any>>;
|
|
7699
|
+
replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any, {}>>;
|
|
7636
7700
|
/**
|
|
7637
7701
|
* No description
|
|
7638
7702
|
*
|
|
@@ -7644,7 +7708,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7644
7708
|
* @response `204` `void` No Content
|
|
7645
7709
|
* @response `404` `ProblemDetails` Not Found
|
|
7646
7710
|
*/
|
|
7647
|
-
deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7711
|
+
deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7648
7712
|
/**
|
|
7649
7713
|
* No description
|
|
7650
7714
|
*
|
|
@@ -7656,7 +7720,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7656
7720
|
* @response `204` `void` No Content
|
|
7657
7721
|
* @response `404` `ProblemDetails` Not Found
|
|
7658
7722
|
*/
|
|
7659
|
-
retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7723
|
+
retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7660
7724
|
/**
|
|
7661
7725
|
* No description
|
|
7662
7726
|
*
|
|
@@ -7668,7 +7732,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7668
7732
|
* @response `200` `Loan` Success
|
|
7669
7733
|
* @response `404` `ProblemDetails` Not Found
|
|
7670
7734
|
*/
|
|
7671
|
-
getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
7735
|
+
getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
7672
7736
|
/**
|
|
7673
7737
|
* No description
|
|
7674
7738
|
*
|
|
@@ -7679,7 +7743,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7679
7743
|
* @secure
|
|
7680
7744
|
* @response `200` `GetApplications` Success
|
|
7681
7745
|
*/
|
|
7682
|
-
getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any>>;
|
|
7746
|
+
getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any, {}>>;
|
|
7683
7747
|
/**
|
|
7684
7748
|
* No description
|
|
7685
7749
|
*
|
|
@@ -7693,7 +7757,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7693
7757
|
* @response `401` `ProblemDetails` Unauthorized
|
|
7694
7758
|
* @response `403` `ProblemDetails` Forbidden
|
|
7695
7759
|
*/
|
|
7696
|
-
createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any>>;
|
|
7760
|
+
createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any, {}>>;
|
|
7697
7761
|
/**
|
|
7698
7762
|
* No description
|
|
7699
7763
|
*
|
|
@@ -7711,7 +7775,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7711
7775
|
pageNumber?: number;
|
|
7712
7776
|
sortBy?: string;
|
|
7713
7777
|
sortDirection?: string;
|
|
7714
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any>>;
|
|
7778
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any, {}>>;
|
|
7715
7779
|
/**
|
|
7716
7780
|
* No description
|
|
7717
7781
|
*
|
|
@@ -7727,7 +7791,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7727
7791
|
* @response `404` `ProblemDetails` Not Found
|
|
7728
7792
|
* @response `409` `any` Conflict
|
|
7729
7793
|
*/
|
|
7730
|
-
updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
7794
|
+
updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
7731
7795
|
/**
|
|
7732
7796
|
* No description
|
|
7733
7797
|
*
|
|
@@ -7740,7 +7804,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7740
7804
|
* @response `400` `ProblemDetails` Bad Request
|
|
7741
7805
|
* @response `404` `ProblemDetails` Not Found
|
|
7742
7806
|
*/
|
|
7743
|
-
completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7807
|
+
completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7744
7808
|
/**
|
|
7745
7809
|
* No description
|
|
7746
7810
|
*
|
|
@@ -7751,7 +7815,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7751
7815
|
* @secure
|
|
7752
7816
|
* @response `200` `Loan` Success
|
|
7753
7817
|
*/
|
|
7754
|
-
importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
7818
|
+
importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
7755
7819
|
/**
|
|
7756
7820
|
* No description
|
|
7757
7821
|
*
|
|
@@ -7763,7 +7827,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7763
7827
|
* @response `202` `void` Accepted
|
|
7764
7828
|
* @response `404` `ProblemDetails` Not Found
|
|
7765
7829
|
*/
|
|
7766
|
-
syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7830
|
+
syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7767
7831
|
/**
|
|
7768
7832
|
* No description
|
|
7769
7833
|
*
|
|
@@ -7782,7 +7846,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7782
7846
|
pageNumber?: number;
|
|
7783
7847
|
sortBy?: string;
|
|
7784
7848
|
sortDirection?: string;
|
|
7785
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any>>;
|
|
7849
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any, {}>>;
|
|
7786
7850
|
/**
|
|
7787
7851
|
* No description
|
|
7788
7852
|
*
|
|
@@ -7794,7 +7858,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7794
7858
|
* @response `200` `TaskComment` Success
|
|
7795
7859
|
* @response `404` `ProblemDetails` Not Found
|
|
7796
7860
|
*/
|
|
7797
|
-
getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
7861
|
+
getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
|
|
7798
7862
|
/**
|
|
7799
7863
|
* No description
|
|
7800
7864
|
*
|
|
@@ -7806,7 +7870,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7806
7870
|
* @response `201` `TaskComment` Created
|
|
7807
7871
|
* @response `404` `ProblemDetails` Not Found
|
|
7808
7872
|
*/
|
|
7809
|
-
createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
7873
|
+
createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
|
|
7810
7874
|
/**
|
|
7811
7875
|
* No description
|
|
7812
7876
|
*
|
|
@@ -7818,7 +7882,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7818
7882
|
* @response `200` `TaskComment` Success
|
|
7819
7883
|
* @response `404` `ProblemDetails` Not Found
|
|
7820
7884
|
*/
|
|
7821
|
-
replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
7885
|
+
replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
|
|
7822
7886
|
/**
|
|
7823
7887
|
* No description
|
|
7824
7888
|
*
|
|
@@ -7830,7 +7894,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7830
7894
|
* @response `204` `void` No Content
|
|
7831
7895
|
* @response `404` `ProblemDetails` Not Found
|
|
7832
7896
|
*/
|
|
7833
|
-
deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7897
|
+
deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7834
7898
|
/**
|
|
7835
7899
|
* No description
|
|
7836
7900
|
*
|
|
@@ -7848,7 +7912,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7848
7912
|
/** @format binary */
|
|
7849
7913
|
file?: File;
|
|
7850
7914
|
bucket?: string;
|
|
7851
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7915
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7852
7916
|
/**
|
|
7853
7917
|
* No description
|
|
7854
7918
|
*
|
|
@@ -7860,7 +7924,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7860
7924
|
* @response `204` `UserLoanTask` No Content
|
|
7861
7925
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7862
7926
|
*/
|
|
7863
|
-
createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7927
|
+
createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7864
7928
|
/**
|
|
7865
7929
|
* No description
|
|
7866
7930
|
*
|
|
@@ -7872,7 +7936,20 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7872
7936
|
* @response `204` `void` No Content
|
|
7873
7937
|
* @response `404` `ProblemDetails` Not Found
|
|
7874
7938
|
*/
|
|
7875
|
-
sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7939
|
+
sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7940
|
+
/**
|
|
7941
|
+
* No description
|
|
7942
|
+
*
|
|
7943
|
+
* @tags LoanTaskNotifications
|
|
7944
|
+
* @name SendLoanTaskReminder
|
|
7945
|
+
* @summary Send Loan Task Reminder
|
|
7946
|
+
* @request POST:/api/loans/{loanID}/tasks/reminders
|
|
7947
|
+
* @secure
|
|
7948
|
+
* @response `204` `void` No Content
|
|
7949
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
7950
|
+
* @response `404` `ProblemDetails` Not Found
|
|
7951
|
+
*/
|
|
7952
|
+
sendLoanTaskReminder: (loanId: string, data: SendLoanTaskReminderRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7876
7953
|
/**
|
|
7877
7954
|
* @description Search tasks across all loans
|
|
7878
7955
|
*
|
|
@@ -7890,7 +7967,19 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7890
7967
|
pageNumber?: number;
|
|
7891
7968
|
sortBy?: string;
|
|
7892
7969
|
sortDirection?: string;
|
|
7893
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTaskPaginated, any>>;
|
|
7970
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTaskPaginated, any, {}>>;
|
|
7971
|
+
/**
|
|
7972
|
+
* @description Returns task counts grouped by status for loans accessible to the current user based on their role
|
|
7973
|
+
*
|
|
7974
|
+
* @tags LoanTasks
|
|
7975
|
+
* @name SearchLoanTasksSummary
|
|
7976
|
+
* @summary Search Summary
|
|
7977
|
+
* @request POST:/api/loans/tasks/search/summary
|
|
7978
|
+
* @secure
|
|
7979
|
+
* @response `200` `(LoanTaskStatusSummary)[]` Success
|
|
7980
|
+
* @response `422` `UnprocessableEntity` Client Error
|
|
7981
|
+
*/
|
|
7982
|
+
searchLoanTasksSummary: (data: LoanTaskSearchRequest, params?: RequestParams) => Promise<AxiosResponse<LoanTaskStatusSummary[], any, {}>>;
|
|
7894
7983
|
/**
|
|
7895
7984
|
* No description
|
|
7896
7985
|
*
|
|
@@ -7902,7 +7991,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7902
7991
|
* @response `200` `(UserLoanTask)[]` Success
|
|
7903
7992
|
* @response `404` `ProblemDetails` Not Found
|
|
7904
7993
|
*/
|
|
7905
|
-
getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
7994
|
+
getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
7906
7995
|
/**
|
|
7907
7996
|
* No description
|
|
7908
7997
|
*
|
|
@@ -7914,7 +8003,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7914
8003
|
* @response `200` `UserLoanTask` Success
|
|
7915
8004
|
* @response `404` `ProblemDetails` Not Found
|
|
7916
8005
|
*/
|
|
7917
|
-
getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8006
|
+
getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7918
8007
|
/**
|
|
7919
8008
|
* @description Get the difference between the current loan tasks and the tasks generated by business rules
|
|
7920
8009
|
*
|
|
@@ -7926,7 +8015,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7926
8015
|
* @response `200` `(UserLoanTask)[]` Success
|
|
7927
8016
|
* @response `404` `ProblemDetails` Not Found
|
|
7928
8017
|
*/
|
|
7929
|
-
getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
8018
|
+
getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
7930
8019
|
/**
|
|
7931
8020
|
* No description
|
|
7932
8021
|
*
|
|
@@ -7938,7 +8027,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7938
8027
|
* @response `201` `UserLoanTask` Created
|
|
7939
8028
|
* @response `404` `ProblemDetails` Not Found
|
|
7940
8029
|
*/
|
|
7941
|
-
createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8030
|
+
createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7942
8031
|
/**
|
|
7943
8032
|
* No description
|
|
7944
8033
|
*
|
|
@@ -7950,7 +8039,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7950
8039
|
* @response `201` `(UserLoanTask)[]` Created
|
|
7951
8040
|
* @response `404` `ProblemDetails` Not Found
|
|
7952
8041
|
*/
|
|
7953
|
-
importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
8042
|
+
importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
7954
8043
|
/**
|
|
7955
8044
|
* No description
|
|
7956
8045
|
*
|
|
@@ -7962,7 +8051,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7962
8051
|
* @response `200` `UserLoanTask` Success
|
|
7963
8052
|
* @response `404` `ProblemDetails` Not Found
|
|
7964
8053
|
*/
|
|
7965
|
-
replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8054
|
+
replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7966
8055
|
/**
|
|
7967
8056
|
* No description
|
|
7968
8057
|
*
|
|
@@ -7974,7 +8063,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7974
8063
|
* @response `204` `void` No Content
|
|
7975
8064
|
* @response `404` `ProblemDetails` Not Found
|
|
7976
8065
|
*/
|
|
7977
|
-
deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8066
|
+
deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7978
8067
|
/**
|
|
7979
8068
|
* No description
|
|
7980
8069
|
*
|
|
@@ -7987,7 +8076,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7987
8076
|
* @response `404` `ProblemDetails` Not Found
|
|
7988
8077
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7989
8078
|
*/
|
|
7990
|
-
createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8079
|
+
createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7991
8080
|
/**
|
|
7992
8081
|
* No description
|
|
7993
8082
|
*
|
|
@@ -7998,7 +8087,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7998
8087
|
* @secure
|
|
7999
8088
|
* @response `200` `(UserLoanConsent)[]` Success
|
|
8000
8089
|
*/
|
|
8001
|
-
getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any>>;
|
|
8090
|
+
getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any, {}>>;
|
|
8002
8091
|
/**
|
|
8003
8092
|
* No description
|
|
8004
8093
|
*
|
|
@@ -8009,7 +8098,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8009
8098
|
* @secure
|
|
8010
8099
|
* @response `200` `LoanUser` Success
|
|
8011
8100
|
*/
|
|
8012
|
-
getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
8101
|
+
getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
8013
8102
|
/**
|
|
8014
8103
|
* No description
|
|
8015
8104
|
*
|
|
@@ -8020,7 +8109,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8020
8109
|
* @secure
|
|
8021
8110
|
* @response `201` `LoanUser` Created
|
|
8022
8111
|
*/
|
|
8023
|
-
addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
8112
|
+
addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
8024
8113
|
/**
|
|
8025
8114
|
* No description
|
|
8026
8115
|
*
|
|
@@ -8031,7 +8120,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8031
8120
|
* @secure
|
|
8032
8121
|
* @response `204` `LoanUser` No Content
|
|
8033
8122
|
*/
|
|
8034
|
-
removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
8123
|
+
removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
8035
8124
|
/**
|
|
8036
8125
|
* No description
|
|
8037
8126
|
*
|
|
@@ -8042,7 +8131,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8042
8131
|
* @secure
|
|
8043
8132
|
* @response `204` `void` No Content
|
|
8044
8133
|
*/
|
|
8045
|
-
sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8134
|
+
sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8046
8135
|
/**
|
|
8047
8136
|
* No description
|
|
8048
8137
|
*
|
|
@@ -8053,7 +8142,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8053
8142
|
* @secure
|
|
8054
8143
|
* @response `200` `(MilestoneConfiguration)[]` Success
|
|
8055
8144
|
*/
|
|
8056
|
-
getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any>>;
|
|
8145
|
+
getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any, {}>>;
|
|
8057
8146
|
/**
|
|
8058
8147
|
* No description
|
|
8059
8148
|
*
|
|
@@ -8065,7 +8154,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8065
8154
|
* @response `201` `MilestoneConfiguration` Created
|
|
8066
8155
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8067
8156
|
*/
|
|
8068
|
-
createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
8157
|
+
createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
8069
8158
|
/**
|
|
8070
8159
|
* No description
|
|
8071
8160
|
*
|
|
@@ -8077,7 +8166,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8077
8166
|
* @response `200` `MilestoneConfiguration` Success
|
|
8078
8167
|
* @response `404` `Error` Not Found
|
|
8079
8168
|
*/
|
|
8080
|
-
getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
8169
|
+
getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
8081
8170
|
/**
|
|
8082
8171
|
* No description
|
|
8083
8172
|
*
|
|
@@ -8090,7 +8179,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8090
8179
|
* @response `404` `Error` Not Found
|
|
8091
8180
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8092
8181
|
*/
|
|
8093
|
-
replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
8182
|
+
replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
8094
8183
|
/**
|
|
8095
8184
|
* No description
|
|
8096
8185
|
*
|
|
@@ -8102,7 +8191,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8102
8191
|
* @response `204` `void` No Content
|
|
8103
8192
|
* @response `404` `Error` Not Found
|
|
8104
8193
|
*/
|
|
8105
|
-
deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8194
|
+
deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8106
8195
|
/**
|
|
8107
8196
|
* No description
|
|
8108
8197
|
*
|
|
@@ -8114,7 +8203,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8114
8203
|
* @response `200` `MonthlyPaymentCalculator` Success
|
|
8115
8204
|
* @response `422` `ProblemDetails` Client Error
|
|
8116
8205
|
*/
|
|
8117
|
-
calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any>>;
|
|
8206
|
+
calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any, {}>>;
|
|
8118
8207
|
/**
|
|
8119
8208
|
* No description
|
|
8120
8209
|
*
|
|
@@ -8126,7 +8215,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8126
8215
|
* @response `200` `AffordabilityCalculator` Success
|
|
8127
8216
|
* @response `422` `ProblemDetails` Client Error
|
|
8128
8217
|
*/
|
|
8129
|
-
calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any>>;
|
|
8218
|
+
calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any, {}>>;
|
|
8130
8219
|
/**
|
|
8131
8220
|
* No description
|
|
8132
8221
|
*
|
|
@@ -8138,7 +8227,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8138
8227
|
* @response `200` `LoanComparisonCalculator` Success
|
|
8139
8228
|
* @response `422` `ProblemDetails` Client Error
|
|
8140
8229
|
*/
|
|
8141
|
-
calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any>>;
|
|
8230
|
+
calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any, {}>>;
|
|
8142
8231
|
/**
|
|
8143
8232
|
* No description
|
|
8144
8233
|
*
|
|
@@ -8150,7 +8239,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8150
8239
|
* @response `200` `RefinanceCalculator` Success
|
|
8151
8240
|
* @response `422` `ProblemDetails` Client Error
|
|
8152
8241
|
*/
|
|
8153
|
-
calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any>>;
|
|
8242
|
+
calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any, {}>>;
|
|
8154
8243
|
/**
|
|
8155
8244
|
* No description
|
|
8156
8245
|
*
|
|
@@ -8162,7 +8251,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8162
8251
|
* @response `200` `void` Success
|
|
8163
8252
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8164
8253
|
*/
|
|
8165
|
-
sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8254
|
+
sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8166
8255
|
/**
|
|
8167
8256
|
* No description
|
|
8168
8257
|
*
|
|
@@ -8174,7 +8263,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8174
8263
|
* @response `200` `void` Success
|
|
8175
8264
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8176
8265
|
*/
|
|
8177
|
-
sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8266
|
+
sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8178
8267
|
/**
|
|
8179
8268
|
* No description
|
|
8180
8269
|
*
|
|
@@ -8187,7 +8276,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8187
8276
|
*/
|
|
8188
8277
|
getNotificationTemplates: (query?: {
|
|
8189
8278
|
showAll?: boolean;
|
|
8190
|
-
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any>>;
|
|
8279
|
+
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any, {}>>;
|
|
8191
8280
|
/**
|
|
8192
8281
|
* No description
|
|
8193
8282
|
*
|
|
@@ -8199,7 +8288,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8199
8288
|
* @response `201` `NotificationTemplate` Created
|
|
8200
8289
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8201
8290
|
*/
|
|
8202
|
-
createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8291
|
+
createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8203
8292
|
/**
|
|
8204
8293
|
* No description
|
|
8205
8294
|
*
|
|
@@ -8217,7 +8306,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8217
8306
|
pageNumber?: number;
|
|
8218
8307
|
sortBy?: string;
|
|
8219
8308
|
sortDirection?: string;
|
|
8220
|
-
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBasePaginated, any>>;
|
|
8309
|
+
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBasePaginated, any, {}>>;
|
|
8221
8310
|
/**
|
|
8222
8311
|
* No description
|
|
8223
8312
|
*
|
|
@@ -8228,7 +8317,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8228
8317
|
* @secure
|
|
8229
8318
|
* @response `200` `NotificationTemplate` Success
|
|
8230
8319
|
*/
|
|
8231
|
-
getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8320
|
+
getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8232
8321
|
/**
|
|
8233
8322
|
* No description
|
|
8234
8323
|
*
|
|
@@ -8240,7 +8329,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8240
8329
|
* @response `200` `NotificationTemplate` Success
|
|
8241
8330
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8242
8331
|
*/
|
|
8243
|
-
replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8332
|
+
replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8244
8333
|
/**
|
|
8245
8334
|
* No description
|
|
8246
8335
|
*
|
|
@@ -8251,7 +8340,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8251
8340
|
* @secure
|
|
8252
8341
|
* @response `204` `void` No Content
|
|
8253
8342
|
*/
|
|
8254
|
-
deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8343
|
+
deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8255
8344
|
/**
|
|
8256
8345
|
* No description
|
|
8257
8346
|
*
|
|
@@ -8262,7 +8351,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8262
8351
|
* @secure
|
|
8263
8352
|
* @response `200` `NotificationTemplate` Success
|
|
8264
8353
|
*/
|
|
8265
|
-
restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8354
|
+
restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8266
8355
|
/**
|
|
8267
8356
|
* No description
|
|
8268
8357
|
*
|
|
@@ -8273,7 +8362,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8273
8362
|
* @secure
|
|
8274
8363
|
* @response `200` `(NotificationTemplateVersion)[]` Success
|
|
8275
8364
|
*/
|
|
8276
|
-
getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any>>;
|
|
8365
|
+
getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any, {}>>;
|
|
8277
8366
|
/**
|
|
8278
8367
|
* No description
|
|
8279
8368
|
*
|
|
@@ -8284,7 +8373,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8284
8373
|
* @secure
|
|
8285
8374
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8286
8375
|
*/
|
|
8287
|
-
createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8376
|
+
createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8288
8377
|
/**
|
|
8289
8378
|
* No description
|
|
8290
8379
|
*
|
|
@@ -8295,7 +8384,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8295
8384
|
* @secure
|
|
8296
8385
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8297
8386
|
*/
|
|
8298
|
-
getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8387
|
+
getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8299
8388
|
/**
|
|
8300
8389
|
* No description
|
|
8301
8390
|
*
|
|
@@ -8306,7 +8395,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8306
8395
|
* @secure
|
|
8307
8396
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8308
8397
|
*/
|
|
8309
|
-
replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8398
|
+
replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8310
8399
|
/**
|
|
8311
8400
|
* No description
|
|
8312
8401
|
*
|
|
@@ -8317,7 +8406,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8317
8406
|
* @secure
|
|
8318
8407
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8319
8408
|
*/
|
|
8320
|
-
deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8409
|
+
deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8321
8410
|
/**
|
|
8322
8411
|
* No description
|
|
8323
8412
|
*
|
|
@@ -8331,14 +8420,14 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8331
8420
|
getPartners: (query?: {
|
|
8332
8421
|
showAll?: boolean;
|
|
8333
8422
|
/** @default "Realtor" */
|
|
8334
|
-
role?:
|
|
8423
|
+
role?: GetPartnersParamsRoleEnum;
|
|
8335
8424
|
/** @format int32 */
|
|
8336
8425
|
pageSize?: number;
|
|
8337
8426
|
/** @format int32 */
|
|
8338
8427
|
pageNumber?: number;
|
|
8339
8428
|
sortBy?: string;
|
|
8340
8429
|
sortDirection?: string;
|
|
8341
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
8430
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
8342
8431
|
/**
|
|
8343
8432
|
* No description
|
|
8344
8433
|
*
|
|
@@ -8356,7 +8445,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8356
8445
|
pageNumber?: number;
|
|
8357
8446
|
sortBy?: string;
|
|
8358
8447
|
sortDirection?: string;
|
|
8359
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
8448
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
8360
8449
|
/**
|
|
8361
8450
|
* No description
|
|
8362
8451
|
*
|
|
@@ -8367,7 +8456,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8367
8456
|
* @secure
|
|
8368
8457
|
* @response `200` `BranchUser` Success
|
|
8369
8458
|
*/
|
|
8370
|
-
getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
|
|
8459
|
+
getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
|
|
8371
8460
|
/**
|
|
8372
8461
|
* No description
|
|
8373
8462
|
*
|
|
@@ -8379,7 +8468,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8379
8468
|
* @response `200` `SiteConfiguration` Success
|
|
8380
8469
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8381
8470
|
*/
|
|
8382
|
-
createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8471
|
+
createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8383
8472
|
/**
|
|
8384
8473
|
* No description
|
|
8385
8474
|
*
|
|
@@ -8390,7 +8479,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8390
8479
|
* @secure
|
|
8391
8480
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
8392
8481
|
*/
|
|
8393
|
-
getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
8482
|
+
getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
8394
8483
|
/**
|
|
8395
8484
|
* No description
|
|
8396
8485
|
*
|
|
@@ -8404,7 +8493,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8404
8493
|
*/
|
|
8405
8494
|
replacePartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
8406
8495
|
applyToChildren?: boolean;
|
|
8407
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8496
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8408
8497
|
/**
|
|
8409
8498
|
* No description
|
|
8410
8499
|
*
|
|
@@ -8415,7 +8504,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8415
8504
|
* @secure
|
|
8416
8505
|
* @response `200` `SiteConfiguration` Success
|
|
8417
8506
|
*/
|
|
8418
|
-
getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8507
|
+
getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8419
8508
|
/**
|
|
8420
8509
|
* No description
|
|
8421
8510
|
*
|
|
@@ -8428,7 +8517,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8428
8517
|
* @response `200` `SiteConfigurationByUrl` Success
|
|
8429
8518
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8430
8519
|
*/
|
|
8431
|
-
searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
|
|
8520
|
+
searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
|
|
8432
8521
|
/**
|
|
8433
8522
|
* No description
|
|
8434
8523
|
*
|
|
@@ -8442,7 +8531,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8442
8531
|
*/
|
|
8443
8532
|
getSiteConfigurationByUrl: (query?: {
|
|
8444
8533
|
url?: string;
|
|
8445
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
|
|
8534
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
|
|
8446
8535
|
/**
|
|
8447
8536
|
* No description
|
|
8448
8537
|
*
|
|
@@ -8455,7 +8544,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8455
8544
|
* @response `200` `SiteConfiguration` Success
|
|
8456
8545
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8457
8546
|
*/
|
|
8458
|
-
searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8547
|
+
searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8459
8548
|
/**
|
|
8460
8549
|
* No description
|
|
8461
8550
|
*
|
|
@@ -8467,7 +8556,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8467
8556
|
* @response `200` `SiteConfiguration` Success
|
|
8468
8557
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8469
8558
|
*/
|
|
8470
|
-
getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8559
|
+
getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8471
8560
|
/**
|
|
8472
8561
|
* No description
|
|
8473
8562
|
*
|
|
@@ -8486,7 +8575,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8486
8575
|
pageNumber?: number;
|
|
8487
8576
|
sortBy?: string;
|
|
8488
8577
|
sortDirection?: string;
|
|
8489
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any>>;
|
|
8578
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any, {}>>;
|
|
8490
8579
|
/**
|
|
8491
8580
|
* No description
|
|
8492
8581
|
*
|
|
@@ -8497,7 +8586,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8497
8586
|
* @secure
|
|
8498
8587
|
* @response `200` `(AdminAccessGetForms)[]` Success
|
|
8499
8588
|
*/
|
|
8500
|
-
getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
|
|
8589
|
+
getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
|
|
8501
8590
|
/**
|
|
8502
8591
|
* No description
|
|
8503
8592
|
*
|
|
@@ -8509,7 +8598,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8509
8598
|
* @response `200` `File` Success
|
|
8510
8599
|
* @response `404` `ProblemDetails` Not Found
|
|
8511
8600
|
*/
|
|
8512
|
-
getSamlMetadata: (sSoIntegration:
|
|
8601
|
+
getSamlMetadata: (sSoIntegration: GetSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
8513
8602
|
/**
|
|
8514
8603
|
* No description
|
|
8515
8604
|
*
|
|
@@ -8520,7 +8609,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8520
8609
|
* @secure
|
|
8521
8610
|
* @response `200` `File` Success
|
|
8522
8611
|
*/
|
|
8523
|
-
createOrReplaceSamlMetadata: (sSoIntegration:
|
|
8612
|
+
createOrReplaceSamlMetadata: (sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
8524
8613
|
/**
|
|
8525
8614
|
* No description
|
|
8526
8615
|
*
|
|
@@ -8531,7 +8620,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8531
8620
|
* @secure
|
|
8532
8621
|
* @response `200` `(SiteConfigurationForm)[]` Success
|
|
8533
8622
|
*/
|
|
8534
|
-
getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any>>;
|
|
8623
|
+
getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any, {}>>;
|
|
8535
8624
|
/**
|
|
8536
8625
|
* No description
|
|
8537
8626
|
*
|
|
@@ -8543,7 +8632,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8543
8632
|
* @response `200` `SiteConfigurationForm` Success
|
|
8544
8633
|
* @response `404` `ProblemDetails` Not Found
|
|
8545
8634
|
*/
|
|
8546
|
-
getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
|
|
8635
|
+
getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
|
|
8547
8636
|
/**
|
|
8548
8637
|
* No description
|
|
8549
8638
|
*
|
|
@@ -8556,7 +8645,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8556
8645
|
* @response `409` `ProblemDetails` Conflict
|
|
8557
8646
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8558
8647
|
*/
|
|
8559
|
-
createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
|
|
8648
|
+
createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
|
|
8560
8649
|
/**
|
|
8561
8650
|
* No description
|
|
8562
8651
|
*
|
|
@@ -8567,7 +8656,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8567
8656
|
* @secure
|
|
8568
8657
|
* @response `204` `void` No Content
|
|
8569
8658
|
*/
|
|
8570
|
-
deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8659
|
+
deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8571
8660
|
/**
|
|
8572
8661
|
* No description
|
|
8573
8662
|
*
|
|
@@ -8578,7 +8667,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8578
8667
|
* @secure
|
|
8579
8668
|
* @response `200` `GetForm` Success
|
|
8580
8669
|
*/
|
|
8581
|
-
getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
|
|
8670
|
+
getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
|
|
8582
8671
|
/**
|
|
8583
8672
|
* No description
|
|
8584
8673
|
*
|
|
@@ -8592,7 +8681,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8592
8681
|
getSurveysByUsers: (query?: {
|
|
8593
8682
|
/** @format int32 */
|
|
8594
8683
|
limit?: number;
|
|
8595
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
|
|
8684
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
|
|
8596
8685
|
/**
|
|
8597
8686
|
* No description
|
|
8598
8687
|
*
|
|
@@ -8604,7 +8693,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8604
8693
|
* @response `200` `(SocialSurveyRecord)[]` Success
|
|
8605
8694
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8606
8695
|
*/
|
|
8607
|
-
getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
|
|
8696
|
+
getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
|
|
8608
8697
|
/**
|
|
8609
8698
|
* No description
|
|
8610
8699
|
*
|
|
@@ -8623,7 +8712,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8623
8712
|
pageNumber?: number;
|
|
8624
8713
|
sortBy?: string;
|
|
8625
8714
|
sortDirection?: string;
|
|
8626
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
8715
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
8627
8716
|
/**
|
|
8628
8717
|
* No description
|
|
8629
8718
|
*
|
|
@@ -8634,7 +8723,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8634
8723
|
* @secure
|
|
8635
8724
|
* @response `201` `Task` Created
|
|
8636
8725
|
*/
|
|
8637
|
-
createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
8726
|
+
createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
8638
8727
|
/**
|
|
8639
8728
|
* No description
|
|
8640
8729
|
*
|
|
@@ -8646,7 +8735,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8646
8735
|
* @response `200` `Task` Success
|
|
8647
8736
|
* @response `404` `ProblemDetails` Not Found
|
|
8648
8737
|
*/
|
|
8649
|
-
getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
8738
|
+
getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
8650
8739
|
/**
|
|
8651
8740
|
* No description
|
|
8652
8741
|
*
|
|
@@ -8658,7 +8747,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8658
8747
|
* @response `200` `void` Success
|
|
8659
8748
|
* @response `404` `ProblemDetails` Not Found
|
|
8660
8749
|
*/
|
|
8661
|
-
replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8750
|
+
replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8662
8751
|
/**
|
|
8663
8752
|
* No description
|
|
8664
8753
|
*
|
|
@@ -8670,7 +8759,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8670
8759
|
* @response `204` `void` No Content
|
|
8671
8760
|
* @response `404` `ProblemDetails` Not Found
|
|
8672
8761
|
*/
|
|
8673
|
-
deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8762
|
+
deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8674
8763
|
/**
|
|
8675
8764
|
* No description
|
|
8676
8765
|
*
|
|
@@ -8688,7 +8777,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8688
8777
|
pageNumber?: number;
|
|
8689
8778
|
sortBy?: string;
|
|
8690
8779
|
sortDirection?: string;
|
|
8691
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any>>;
|
|
8780
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any, {}>>;
|
|
8692
8781
|
/**
|
|
8693
8782
|
* No description
|
|
8694
8783
|
*
|
|
@@ -8698,7 +8787,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8698
8787
|
* @secure
|
|
8699
8788
|
* @response `200` `void` Success
|
|
8700
8789
|
*/
|
|
8701
|
-
integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8790
|
+
integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8702
8791
|
/**
|
|
8703
8792
|
* No description
|
|
8704
8793
|
*
|
|
@@ -8715,7 +8804,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8715
8804
|
pageNumber: number;
|
|
8716
8805
|
sortBy?: string;
|
|
8717
8806
|
sortDirection?: string;
|
|
8718
|
-
}, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any>>;
|
|
8807
|
+
}, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any, {}>>;
|
|
8719
8808
|
/**
|
|
8720
8809
|
* No description
|
|
8721
8810
|
*
|
|
@@ -8726,7 +8815,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8726
8815
|
* @response `200` `EncompassCredentialsDetail` Success
|
|
8727
8816
|
* @response `204` `void` No Content
|
|
8728
8817
|
*/
|
|
8729
|
-
getEncompassCredentials: (params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any>>;
|
|
8818
|
+
getEncompassCredentials: (params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any, {}>>;
|
|
8730
8819
|
/**
|
|
8731
8820
|
* No description
|
|
8732
8821
|
*
|
|
@@ -8736,7 +8825,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8736
8825
|
* @secure
|
|
8737
8826
|
* @response `201` `LosCredentials` Created
|
|
8738
8827
|
*/
|
|
8739
|
-
createEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<LosCredentials, any>>;
|
|
8828
|
+
createEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<LosCredentials, any, {}>>;
|
|
8740
8829
|
/**
|
|
8741
8830
|
* No description
|
|
8742
8831
|
*
|
|
@@ -8746,7 +8835,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8746
8835
|
* @secure
|
|
8747
8836
|
* @response `200` `EncompassCredentialsDetail` Success
|
|
8748
8837
|
*/
|
|
8749
|
-
updateEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any>>;
|
|
8838
|
+
updateEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any, {}>>;
|
|
8750
8839
|
/**
|
|
8751
8840
|
* No description
|
|
8752
8841
|
*
|
|
@@ -8756,7 +8845,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8756
8845
|
* @secure
|
|
8757
8846
|
* @response `200` `(LosWebhook)[]` Success
|
|
8758
8847
|
*/
|
|
8759
|
-
getEncompassWebhooks: (params?: RequestParams) => Promise<AxiosResponse<LosWebhook[], any>>;
|
|
8848
|
+
getEncompassWebhooks: (params?: RequestParams) => Promise<AxiosResponse<LosWebhook[], any, {}>>;
|
|
8760
8849
|
/**
|
|
8761
8850
|
* No description
|
|
8762
8851
|
*
|
|
@@ -8766,7 +8855,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8766
8855
|
* @secure
|
|
8767
8856
|
* @response `201` `LosWebhook` Created
|
|
8768
8857
|
*/
|
|
8769
|
-
createEncompassWebhook: (data: CreateWebhookRequest, params?: RequestParams) => Promise<AxiosResponse<LosWebhook, any>>;
|
|
8858
|
+
createEncompassWebhook: (data: CreateWebhookRequest, params?: RequestParams) => Promise<AxiosResponse<LosWebhook, any, {}>>;
|
|
8770
8859
|
/**
|
|
8771
8860
|
* No description
|
|
8772
8861
|
*
|
|
@@ -8776,7 +8865,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8776
8865
|
* @secure
|
|
8777
8866
|
* @response `204` `void` No Content
|
|
8778
8867
|
*/
|
|
8779
|
-
deleteEncompassWebhook: (webhookId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8868
|
+
deleteEncompassWebhook: (webhookId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8780
8869
|
/**
|
|
8781
8870
|
* No description
|
|
8782
8871
|
*
|
|
@@ -8788,7 +8877,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8788
8877
|
* @response `200` `UsageReport` Success
|
|
8789
8878
|
* @response `404` `ProblemDetails` Not Found
|
|
8790
8879
|
*/
|
|
8791
|
-
getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any>>;
|
|
8880
|
+
getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any, {}>>;
|
|
8792
8881
|
/**
|
|
8793
8882
|
* No description
|
|
8794
8883
|
*
|
|
@@ -8805,7 +8894,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8805
8894
|
month?: number;
|
|
8806
8895
|
/** @format int32 */
|
|
8807
8896
|
year?: number;
|
|
8808
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any>>;
|
|
8897
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any, {}>>;
|
|
8809
8898
|
/**
|
|
8810
8899
|
* No description
|
|
8811
8900
|
*
|
|
@@ -8822,7 +8911,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8822
8911
|
month?: number;
|
|
8823
8912
|
/** @format int32 */
|
|
8824
8913
|
year?: number;
|
|
8825
|
-
}, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
8914
|
+
}, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
8826
8915
|
/**
|
|
8827
8916
|
* No description
|
|
8828
8917
|
*
|
|
@@ -8833,7 +8922,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8833
8922
|
* @secure
|
|
8834
8923
|
* @response `200` `UsageReportDashboard` Success
|
|
8835
8924
|
*/
|
|
8836
|
-
getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any>>;
|
|
8925
|
+
getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any, {}>>;
|
|
8837
8926
|
/**
|
|
8838
8927
|
* No description
|
|
8839
8928
|
*
|
|
@@ -8845,7 +8934,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8845
8934
|
* @response `200` `UsageReportExecution` Success
|
|
8846
8935
|
* @response `404` `ProblemDetails` Not Found
|
|
8847
8936
|
*/
|
|
8848
|
-
getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any>>;
|
|
8937
|
+
getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any, {}>>;
|
|
8849
8938
|
/**
|
|
8850
8939
|
* No description
|
|
8851
8940
|
*
|
|
@@ -8862,7 +8951,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8862
8951
|
month?: number;
|
|
8863
8952
|
/** @format int32 */
|
|
8864
8953
|
year?: number;
|
|
8865
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any>>;
|
|
8954
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any, {}>>;
|
|
8866
8955
|
/**
|
|
8867
8956
|
* No description
|
|
8868
8957
|
*
|
|
@@ -8874,7 +8963,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8874
8963
|
* @response `201` `UserDevice` Created
|
|
8875
8964
|
* @response `400` `ProblemDetails` Bad Request
|
|
8876
8965
|
*/
|
|
8877
|
-
createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any>>;
|
|
8966
|
+
createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any, {}>>;
|
|
8878
8967
|
/**
|
|
8879
8968
|
* No description
|
|
8880
8969
|
*
|
|
@@ -8886,7 +8975,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8886
8975
|
* @response `204` `void` No Content
|
|
8887
8976
|
* @response `404` `ProblemDetails` Not Found
|
|
8888
8977
|
*/
|
|
8889
|
-
deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8978
|
+
deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8890
8979
|
/**
|
|
8891
8980
|
* No description
|
|
8892
8981
|
*
|
|
@@ -8904,7 +8993,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8904
8993
|
pageNumber?: number;
|
|
8905
8994
|
sortBy?: string;
|
|
8906
8995
|
sortDirection?: string;
|
|
8907
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any>>;
|
|
8996
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any, {}>>;
|
|
8908
8997
|
/**
|
|
8909
8998
|
* No description
|
|
8910
8999
|
*
|
|
@@ -8915,7 +9004,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8915
9004
|
* @secure
|
|
8916
9005
|
* @response `200` `UserDraft` Success
|
|
8917
9006
|
*/
|
|
8918
|
-
getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
|
|
9007
|
+
getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
|
|
8919
9008
|
/**
|
|
8920
9009
|
* No description
|
|
8921
9010
|
*
|
|
@@ -8926,7 +9015,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8926
9015
|
* @secure
|
|
8927
9016
|
* @response `200` `UserDraft` Success
|
|
8928
9017
|
*/
|
|
8929
|
-
addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
|
|
9018
|
+
addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
|
|
8930
9019
|
/**
|
|
8931
9020
|
* No description
|
|
8932
9021
|
*
|
|
@@ -8937,7 +9026,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8937
9026
|
* @secure
|
|
8938
9027
|
* @response `204` `void` No Content
|
|
8939
9028
|
*/
|
|
8940
|
-
deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9029
|
+
deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8941
9030
|
/**
|
|
8942
9031
|
* No description
|
|
8943
9032
|
*
|
|
@@ -8948,7 +9037,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8948
9037
|
* @secure
|
|
8949
9038
|
* @response `200` `(UserGroupAccessScope)[]` Success
|
|
8950
9039
|
*/
|
|
8951
|
-
getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any>>;
|
|
9040
|
+
getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any, {}>>;
|
|
8952
9041
|
/**
|
|
8953
9042
|
* No description
|
|
8954
9043
|
*
|
|
@@ -8959,7 +9048,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8959
9048
|
* @secure
|
|
8960
9049
|
* @response `200` `UserGroupAccessScope` Success
|
|
8961
9050
|
*/
|
|
8962
|
-
createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any>>;
|
|
9051
|
+
createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any, {}>>;
|
|
8963
9052
|
/**
|
|
8964
9053
|
* No description
|
|
8965
9054
|
*
|
|
@@ -8970,7 +9059,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8970
9059
|
* @secure
|
|
8971
9060
|
* @response `204` `void` No Content
|
|
8972
9061
|
*/
|
|
8973
|
-
deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9062
|
+
deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8974
9063
|
/**
|
|
8975
9064
|
* No description
|
|
8976
9065
|
*
|
|
@@ -8981,7 +9070,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8981
9070
|
* @secure
|
|
8982
9071
|
* @response `200` `(UserGroupMember)[]` Success
|
|
8983
9072
|
*/
|
|
8984
|
-
getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any>>;
|
|
9073
|
+
getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any, {}>>;
|
|
8985
9074
|
/**
|
|
8986
9075
|
* No description
|
|
8987
9076
|
*
|
|
@@ -8995,7 +9084,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8995
9084
|
createUserGroupMember: (groupId: string, data: CreateGroupMemberRequest, query?: {
|
|
8996
9085
|
/** @format uuid */
|
|
8997
9086
|
userId?: string;
|
|
8998
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any>>;
|
|
9087
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any, {}>>;
|
|
8999
9088
|
/**
|
|
9000
9089
|
* No description
|
|
9001
9090
|
*
|
|
@@ -9006,7 +9095,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9006
9095
|
* @secure
|
|
9007
9096
|
* @response `204` `void` No Content
|
|
9008
9097
|
*/
|
|
9009
|
-
deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9098
|
+
deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9010
9099
|
/**
|
|
9011
9100
|
* No description
|
|
9012
9101
|
*
|
|
@@ -9025,7 +9114,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9025
9114
|
pageNumber?: number;
|
|
9026
9115
|
sortBy?: string;
|
|
9027
9116
|
sortDirection?: string;
|
|
9028
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any>>;
|
|
9117
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any, {}>>;
|
|
9029
9118
|
/**
|
|
9030
9119
|
* No description
|
|
9031
9120
|
*
|
|
@@ -9036,7 +9125,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9036
9125
|
* @secure
|
|
9037
9126
|
* @response `200` `UserGroup` Success
|
|
9038
9127
|
*/
|
|
9039
|
-
getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
9128
|
+
getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
9040
9129
|
/**
|
|
9041
9130
|
* No description
|
|
9042
9131
|
*
|
|
@@ -9047,7 +9136,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9047
9136
|
* @secure
|
|
9048
9137
|
* @response `200` `UserGroup` Success
|
|
9049
9138
|
*/
|
|
9050
|
-
updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
9139
|
+
updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
9051
9140
|
/**
|
|
9052
9141
|
* No description
|
|
9053
9142
|
*
|
|
@@ -9058,7 +9147,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9058
9147
|
* @secure
|
|
9059
9148
|
* @response `204` `void` No Content
|
|
9060
9149
|
*/
|
|
9061
|
-
deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9150
|
+
deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9062
9151
|
/**
|
|
9063
9152
|
* No description
|
|
9064
9153
|
*
|
|
@@ -9069,7 +9158,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9069
9158
|
* @secure
|
|
9070
9159
|
* @response `201` `UserGroup` Created
|
|
9071
9160
|
*/
|
|
9072
|
-
createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
9161
|
+
createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
9073
9162
|
/**
|
|
9074
9163
|
* No description
|
|
9075
9164
|
*
|
|
@@ -9082,7 +9171,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9082
9171
|
* @response `404` `Error` Not Found
|
|
9083
9172
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9084
9173
|
*/
|
|
9085
|
-
requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9174
|
+
requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9086
9175
|
/**
|
|
9087
9176
|
* No description
|
|
9088
9177
|
*
|
|
@@ -9095,7 +9184,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9095
9184
|
* @response `404` `Error` Not Found
|
|
9096
9185
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9097
9186
|
*/
|
|
9098
|
-
allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9187
|
+
allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9099
9188
|
/**
|
|
9100
9189
|
* No description
|
|
9101
9190
|
*
|
|
@@ -9108,7 +9197,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9108
9197
|
* @response `404` `Error` Not Found
|
|
9109
9198
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9110
9199
|
*/
|
|
9111
|
-
allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9200
|
+
allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9112
9201
|
/**
|
|
9113
9202
|
* No description
|
|
9114
9203
|
*
|
|
@@ -9120,7 +9209,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9120
9209
|
* @response `204` `void` No Content
|
|
9121
9210
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9122
9211
|
*/
|
|
9123
|
-
beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9212
|
+
beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9124
9213
|
/**
|
|
9125
9214
|
* No description
|
|
9126
9215
|
*
|
|
@@ -9132,7 +9221,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9132
9221
|
* @response `204` `void` No Content
|
|
9133
9222
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9134
9223
|
*/
|
|
9135
|
-
stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9224
|
+
stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9136
9225
|
/**
|
|
9137
9226
|
* No description
|
|
9138
9227
|
*
|
|
@@ -9145,7 +9234,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9145
9234
|
* @response `404` `Error` Not Found
|
|
9146
9235
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9147
9236
|
*/
|
|
9148
|
-
forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9237
|
+
forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9149
9238
|
/**
|
|
9150
9239
|
* No description
|
|
9151
9240
|
*
|
|
@@ -9157,7 +9246,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9157
9246
|
* @response `204` `void` No Content
|
|
9158
9247
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9159
9248
|
*/
|
|
9160
|
-
extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9249
|
+
extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9161
9250
|
/**
|
|
9162
9251
|
* No description
|
|
9163
9252
|
*
|
|
@@ -9169,7 +9258,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9169
9258
|
* @response `204` `void` No Content
|
|
9170
9259
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9171
9260
|
*/
|
|
9172
|
-
inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9261
|
+
inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9173
9262
|
/**
|
|
9174
9263
|
* No description
|
|
9175
9264
|
*
|
|
@@ -9182,7 +9271,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9182
9271
|
* @response `401` `UnprocessableEntity` Unauthorized
|
|
9183
9272
|
* @response `404` `UnprocessableEntity` Not Found
|
|
9184
9273
|
*/
|
|
9185
|
-
resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9274
|
+
resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9186
9275
|
/**
|
|
9187
9276
|
* No description
|
|
9188
9277
|
*
|
|
@@ -9194,7 +9283,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9194
9283
|
* @response `200` `Invite` Success
|
|
9195
9284
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9196
9285
|
*/
|
|
9197
|
-
verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any>>;
|
|
9286
|
+
verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any, {}>>;
|
|
9198
9287
|
/**
|
|
9199
9288
|
* No description
|
|
9200
9289
|
*
|
|
@@ -9205,7 +9294,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9205
9294
|
* @secure
|
|
9206
9295
|
* @response `200` `(UserRelation)[]` Success
|
|
9207
9296
|
*/
|
|
9208
|
-
getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any>>;
|
|
9297
|
+
getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any, {}>>;
|
|
9209
9298
|
/**
|
|
9210
9299
|
* No description
|
|
9211
9300
|
*
|
|
@@ -9216,7 +9305,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9216
9305
|
* @secure
|
|
9217
9306
|
* @response `204` `void` No Content
|
|
9218
9307
|
*/
|
|
9219
|
-
createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9308
|
+
createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9220
9309
|
/**
|
|
9221
9310
|
* No description
|
|
9222
9311
|
*
|
|
@@ -9227,7 +9316,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9227
9316
|
* @secure
|
|
9228
9317
|
* @response `200` `UserRelation` Success
|
|
9229
9318
|
*/
|
|
9230
|
-
getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any>>;
|
|
9319
|
+
getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any, {}>>;
|
|
9231
9320
|
/**
|
|
9232
9321
|
* No description
|
|
9233
9322
|
*
|
|
@@ -9238,7 +9327,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9238
9327
|
* @secure
|
|
9239
9328
|
* @response `204` `void` No Content
|
|
9240
9329
|
*/
|
|
9241
|
-
deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9330
|
+
deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9242
9331
|
/**
|
|
9243
9332
|
* No description
|
|
9244
9333
|
*
|
|
@@ -9256,7 +9345,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9256
9345
|
pageNumber?: number;
|
|
9257
9346
|
sortBy?: string;
|
|
9258
9347
|
sortDirection?: string;
|
|
9259
|
-
}, params?: RequestParams) => Promise<AxiosResponse<User[], any>>;
|
|
9348
|
+
}, params?: RequestParams) => Promise<AxiosResponse<User[], any, {}>>;
|
|
9260
9349
|
/**
|
|
9261
9350
|
* No description
|
|
9262
9351
|
*
|
|
@@ -9268,7 +9357,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9268
9357
|
* @response `200` `DetailedUser` Success
|
|
9269
9358
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9270
9359
|
*/
|
|
9271
|
-
createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9360
|
+
createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
9272
9361
|
/**
|
|
9273
9362
|
* No description
|
|
9274
9363
|
*
|
|
@@ -9286,7 +9375,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9286
9375
|
pageNumber?: number;
|
|
9287
9376
|
sortBy?: string;
|
|
9288
9377
|
sortDirection?: string;
|
|
9289
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any>>;
|
|
9378
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any, {}>>;
|
|
9290
9379
|
/**
|
|
9291
9380
|
* No description
|
|
9292
9381
|
*
|
|
@@ -9297,7 +9386,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9297
9386
|
* @secure
|
|
9298
9387
|
* @response `200` `AdminAccessUser` Success
|
|
9299
9388
|
*/
|
|
9300
|
-
getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any>>;
|
|
9389
|
+
getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any, {}>>;
|
|
9301
9390
|
/**
|
|
9302
9391
|
* No description
|
|
9303
9392
|
*
|
|
@@ -9309,7 +9398,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9309
9398
|
* @response `200` `User` Success
|
|
9310
9399
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9311
9400
|
*/
|
|
9312
|
-
signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any>>;
|
|
9401
|
+
signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any, {}>>;
|
|
9313
9402
|
/**
|
|
9314
9403
|
* No description
|
|
9315
9404
|
*
|
|
@@ -9321,7 +9410,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9321
9410
|
* @response `200` `DetailedUser` Success
|
|
9322
9411
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9323
9412
|
*/
|
|
9324
|
-
replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9413
|
+
replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
9325
9414
|
/**
|
|
9326
9415
|
* No description
|
|
9327
9416
|
*
|
|
@@ -9335,7 +9424,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9335
9424
|
deleteUser: (id: string, query?: {
|
|
9336
9425
|
/** @default false */
|
|
9337
9426
|
permanent?: boolean;
|
|
9338
|
-
}, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9427
|
+
}, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9339
9428
|
/**
|
|
9340
9429
|
* No description
|
|
9341
9430
|
*
|
|
@@ -9346,7 +9435,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9346
9435
|
* @secure
|
|
9347
9436
|
* @response `204` `void` No Content
|
|
9348
9437
|
*/
|
|
9349
|
-
restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9438
|
+
restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9350
9439
|
/**
|
|
9351
9440
|
* No description
|
|
9352
9441
|
*
|
|
@@ -9358,7 +9447,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9358
9447
|
* @response `204` `void` No Content
|
|
9359
9448
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9360
9449
|
*/
|
|
9361
|
-
changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9450
|
+
changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9362
9451
|
/**
|
|
9363
9452
|
* No description
|
|
9364
9453
|
*
|
|
@@ -9370,7 +9459,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9370
9459
|
* @response `204` `void` No Content
|
|
9371
9460
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9372
9461
|
*/
|
|
9373
|
-
verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9462
|
+
verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9374
9463
|
/**
|
|
9375
9464
|
* No description
|
|
9376
9465
|
*
|
|
@@ -9382,7 +9471,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9382
9471
|
* @response `204` `void` No Content
|
|
9383
9472
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9384
9473
|
*/
|
|
9385
|
-
overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9474
|
+
overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9386
9475
|
/**
|
|
9387
9476
|
* No description
|
|
9388
9477
|
*
|
|
@@ -9394,7 +9483,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9394
9483
|
* @response `204` `void` No Content
|
|
9395
9484
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9396
9485
|
*/
|
|
9397
|
-
forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9486
|
+
forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9398
9487
|
/**
|
|
9399
9488
|
* No description
|
|
9400
9489
|
*
|
|
@@ -9406,7 +9495,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9406
9495
|
* @response `204` `void` No Content
|
|
9407
9496
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9408
9497
|
*/
|
|
9409
|
-
sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9498
|
+
sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9410
9499
|
/**
|
|
9411
9500
|
* No description
|
|
9412
9501
|
*
|
|
@@ -9418,7 +9507,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9418
9507
|
* @response `204` `void` No Content
|
|
9419
9508
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9420
9509
|
*/
|
|
9421
|
-
verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9510
|
+
verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9422
9511
|
/**
|
|
9423
9512
|
* No description
|
|
9424
9513
|
*
|
|
@@ -9430,7 +9519,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9430
9519
|
* @response `200` `ImpersonatedDetailedUser` Success
|
|
9431
9520
|
* @response `401` `ProblemDetails` Unauthorized
|
|
9432
9521
|
*/
|
|
9433
|
-
getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any>>;
|
|
9522
|
+
getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any, {}>>;
|
|
9434
9523
|
/**
|
|
9435
9524
|
* No description
|
|
9436
9525
|
*
|
|
@@ -9441,7 +9530,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9441
9530
|
* @secure
|
|
9442
9531
|
* @response `200` `DetailedUser` Success
|
|
9443
9532
|
*/
|
|
9444
|
-
replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9533
|
+
replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
9445
9534
|
/**
|
|
9446
9535
|
* @description Update the phone number If changed will send a verification code to the new number
|
|
9447
9536
|
*
|
|
@@ -9452,7 +9541,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9452
9541
|
* @secure
|
|
9453
9542
|
* @response `204` `DetailedUser` No Content
|
|
9454
9543
|
*/
|
|
9455
|
-
updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9544
|
+
updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
9456
9545
|
/**
|
|
9457
9546
|
* No description
|
|
9458
9547
|
*
|
|
@@ -9463,7 +9552,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9463
9552
|
* @secure
|
|
9464
9553
|
* @response `200` `(UserRelationship)[]` Success
|
|
9465
9554
|
*/
|
|
9466
|
-
getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any>>;
|
|
9555
|
+
getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any, {}>>;
|
|
9467
9556
|
/**
|
|
9468
9557
|
* No description
|
|
9469
9558
|
*
|
|
@@ -9474,7 +9563,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9474
9563
|
* @secure
|
|
9475
9564
|
* @response `200` `(UserRelationshipProspect)[]` Success
|
|
9476
9565
|
*/
|
|
9477
|
-
getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any>>;
|
|
9566
|
+
getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any, {}>>;
|
|
9478
9567
|
/**
|
|
9479
9568
|
* No description
|
|
9480
9569
|
*
|
|
@@ -9485,7 +9574,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9485
9574
|
* @secure
|
|
9486
9575
|
* @response `204` `void` No Content
|
|
9487
9576
|
*/
|
|
9488
|
-
deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9577
|
+
deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9489
9578
|
/**
|
|
9490
9579
|
* No description
|
|
9491
9580
|
*
|
|
@@ -9496,7 +9585,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9496
9585
|
* @secure
|
|
9497
9586
|
* @response `204` `void` No Content
|
|
9498
9587
|
*/
|
|
9499
|
-
deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9588
|
+
deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9500
9589
|
/**
|
|
9501
9590
|
* No description
|
|
9502
9591
|
*
|
|
@@ -9507,7 +9596,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9507
9596
|
* @secure
|
|
9508
9597
|
* @response `200` `GetForm` Success
|
|
9509
9598
|
*/
|
|
9510
|
-
getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
|
|
9599
|
+
getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
|
|
9511
9600
|
};
|
|
9512
9601
|
sso: {
|
|
9513
9602
|
/**
|
|
@@ -9519,6 +9608,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9519
9608
|
* @secure
|
|
9520
9609
|
* @response `200` `void` Success
|
|
9521
9610
|
*/
|
|
9522
|
-
logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9611
|
+
logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9523
9612
|
};
|
|
9524
9613
|
}
|